Add support for showing playing cards
|
@ -8,8 +8,11 @@ find_package(Qt6 6.5 REQUIRED COMPONENTS Quick)
|
|||
|
||||
qt_standard_project_setup(REQUIRES 6.5)
|
||||
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
qt_add_executable(appSolitare
|
||||
main.cpp
|
||||
images.qrc
|
||||
)
|
||||
|
||||
qt_add_qml_module(appSolitare
|
||||
|
@ -18,6 +21,7 @@ qt_add_qml_module(appSolitare
|
|||
QML_FILES
|
||||
Main.qml
|
||||
QML_FILES ScoreBar.qml
|
||||
QML_FILES PlayingCard.qml
|
||||
)
|
||||
|
||||
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
|
||||
|
|
3
LICENSE-THIRD-PARTY.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
The set of playing card SVG images located in the /img/playing_cards/ directory was sourced from the following website:
|
||||
<https://www.tekeye.uk/playing_cards/svg-playing-cards>
|
||||
These images are licensed under the public domain, and the resources were created by <dan@tekeye.uk>.
|
5
Main.qml
|
@ -16,4 +16,9 @@ ApplicationWindow {
|
|||
time: 500
|
||||
moves: 64
|
||||
}
|
||||
|
||||
PlayingCard {
|
||||
color: "clubs"
|
||||
value: "ace"
|
||||
}
|
||||
}
|
||||
|
|
20
PlayingCard.qml
Normal file
|
@ -0,0 +1,20 @@
|
|||
import QtQuick
|
||||
|
||||
Item {
|
||||
id: playingCard
|
||||
width: 100
|
||||
height: width * 1.4 // Maintian the aspect ratio of a playing card
|
||||
|
||||
// Annoyingly, there is no easy way to make this type-safe, QML does have enums
|
||||
// but they only act as ints, and since we need the string names for the img paths
|
||||
// anyways, typing these as simple strings is the easiest way to do this.
|
||||
required property string color
|
||||
required property string value
|
||||
|
||||
Image {
|
||||
id: cardImage
|
||||
anchors.fill: parent
|
||||
source: "qrc:/img/playing_cards/fronts/" + playingCard.color + "_" + playingCard.value + ".svg"
|
||||
fillMode: Image.PreserveAspectFit
|
||||
}
|
||||
}
|
23
generate_images_qrc.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
QRC="images.qrc"
|
||||
IMG_DIR="img"
|
||||
|
||||
cat <<EOF >"$QRC"
|
||||
<!DOCTYPE RCC>
|
||||
<RCC version="1.0">
|
||||
<qresource>
|
||||
EOF
|
||||
|
||||
find "$IMG_DIR" -type f | while IFS= read -r file; do
|
||||
printf " <file>%s</file>\n" "$file" >>"$QRC"
|
||||
done
|
||||
|
||||
cat <<EOF >>"$QRC"
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
<!-- vi: ft=xml
|
||||
-->
|
||||
EOF
|
74
images.qrc
Normal file
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE RCC>
|
||||
<RCC version="1.0">
|
||||
<qresource>
|
||||
<file>img/playing_cards/backs/abstract.svg</file>
|
||||
<file>img/playing_cards/backs/abstract_clouds.svg</file>
|
||||
<file>img/playing_cards/backs/abstract_scene.svg</file>
|
||||
<file>img/playing_cards/backs/astronaut.svg</file>
|
||||
<file>img/playing_cards/backs/blue.svg</file>
|
||||
<file>img/playing_cards/backs/blue2.svg</file>
|
||||
<file>img/playing_cards/backs/cars.svg</file>
|
||||
<file>img/playing_cards/backs/castle.svg</file>
|
||||
<file>img/playing_cards/backs/fish.svg</file>
|
||||
<file>img/playing_cards/backs/frog.svg</file>
|
||||
<file>img/playing_cards/backs/red.svg</file>
|
||||
<file>img/playing_cards/backs/red2.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_10.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_2.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_3.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_4.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_5.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_6.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_7.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_8.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_9.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_ace.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_jack.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_king.svg</file>
|
||||
<file>img/playing_cards/fronts/clubs_queen.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_10.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_2.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_3.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_4.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_5.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_6.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_7.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_8.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_9.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_ace.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_jack.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_king.svg</file>
|
||||
<file>img/playing_cards/fronts/diamonds_queen.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_10.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_2.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_3.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_4.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_5.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_6.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_7.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_8.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_9.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_ace.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_jack.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_king.svg</file>
|
||||
<file>img/playing_cards/fronts/hearts_queen.svg</file>
|
||||
<file>img/playing_cards/fronts/joker_black.svg</file>
|
||||
<file>img/playing_cards/fronts/joker_red.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_10.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_2.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_3.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_4.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_5.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_6.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_7.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_8.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_9.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_ace.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_jack.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_king.svg</file>
|
||||
<file>img/playing_cards/fronts/spades_queen.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
<!-- vi: ft=xml
|
||||
-->
|
2692
img/playing_cards/backs/abstract.svg
Normal file
After Width: | Height: | Size: 170 KiB |
2929
img/playing_cards/backs/abstract_clouds.svg
Normal file
After Width: | Height: | Size: 158 KiB |
245
img/playing_cards/backs/abstract_scene.svg
Normal file
|
@ -0,0 +1,245 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="abstract_scene.svg"
|
||||
inkscape:export-filename="E:\DAN\OneDrive\projects\Playing_Cards\backs\png-096-dpi\abstract_scene.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title2666">Abstract Scene</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2639">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect2641"
|
||||
width="743.24408"
|
||||
height="1055.244"
|
||||
x="-2.9470446"
|
||||
y="-1.5972888"
|
||||
ry="28.41267"
|
||||
rx="28.421436" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.7013101"
|
||||
inkscape:cx="100.22857"
|
||||
inkscape:cy="160.43119"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1057"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Abstract Scene</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-08</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>dORDY</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>abstract; scene; landscape; colors;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An abstract scene.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-1.5833879e-6,-719.36218)">
|
||||
<g
|
||||
id="g2664"
|
||||
transform="matrix(0.31483601,0,0,0.31556682,0.92783735,719.86623)"
|
||||
style="stroke-width:3.17257667">
|
||||
<g
|
||||
clip-path="url(#clipPath2639)"
|
||||
id="g2631"
|
||||
style="stroke-width:3.17257667">
|
||||
<rect
|
||||
style="fill:#b4d9ed;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
id="rect3129"
|
||||
width="756.11133"
|
||||
height="544.68127"
|
||||
x="-11.015009"
|
||||
y="-37.755955" />
|
||||
<path
|
||||
style="fill:#437a9f;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 761.7804,944.15759 -29.552288,493.95162 c 268.780748,9.9572 520.987918,-12.38148 789.513538,3.7054 z"
|
||||
id="path3091"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#a493a4;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M -27.693935,473.57748 763.62848,1060.8699 391.13245,1057.1646 Z"
|
||||
id="path3093"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#267834;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M -25.840721,462.46154 411.5178,1057.1646 -20.281078,1059.0173 Z"
|
||||
id="path3095"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#6ea221;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="m -20.281078,473.57748 446.624598,589.14502 -83.39464,-5.5579 -359.523531,-572.47116 281.688541,568.76586 -66.71571,1.8526 z"
|
||||
id="path3097"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#f7d042;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 758.06883,1068.2805 V 944.15246 L -27.693935,477.2828 Z"
|
||||
id="path3099"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#f3eee7;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 752.50919,820.02441 -25.840721,479.13546 750.65598,842.25631 Z"
|
||||
id="path3103"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#f8f3d1;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 752.50919,951.56308 -31.400363,477.2828 752.50919,910.80462 Z"
|
||||
id="path3101"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#f3eee7;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 746.94954,881.16211 -23.987507,482.84078 748.80277,870.04616 Z"
|
||||
id="path3105"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#bfb08e;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="m 244.72853,410.58713 122.31214,-61.1377 283.54175,83.36959 -83.39464,61.13769 H 278.08639 Z"
|
||||
id="path3125"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#b9a375;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="m 265.11389,449.49295 68.56893,-35.20049 3.70641,14.82125 38.9175,-18.52658 16.67893,38.90582 20.38535,-40.75847 27.79822,40.75847 61.15606,-25.93722 5.55965,22.23189 66.71569,24.08455 v 29.64252 L 291.0589,495.80936 Z"
|
||||
id="path3127"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#a58240;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M -23.987507,199.38419 239.16889,332.77553 307.73781,503.22001 -18.427865,495.80936 Z"
|
||||
id="path3115"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#b79f6f;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 756.21563,497.66203 H 502.32529 l 244.62425,-125.9807 1.85323,122.27538 z"
|
||||
id="path3121"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#f70000;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 70.679487,571.78666 546.8349,1018.3384 c 25.48362,-2.4509 28.15567,-22.55077 22.51224,-49.08424 z"
|
||||
id="path3113"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="-231.76668"
|
||||
inkscape:transform-center-y="208.86763" />
|
||||
<path
|
||||
inkscape:transform-center-y="202.92062"
|
||||
inkscape:transform-center-x="-198.76573"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3111"
|
||||
d="M 70.625232,571.72798 478.77408,1005.5398 c 21.96363,-2.5085 24.35673,-22.14436 19.61579,-48.02366 z"
|
||||
style="fill:#f8eef2;fill-opacity:1;stroke:none;stroke-width:3.3735013" />
|
||||
<path
|
||||
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M 70.560356,571.65779 410.46037,981.84622 c 18.40567,-2.47976 20.49701,-21.1389 16.64131,-45.69588 z"
|
||||
id="path3107"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="-165.62647"
|
||||
inkscape:transform-center-y="191.88053" />
|
||||
<path
|
||||
style="fill:#5c772e;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="M -12.868222,208.64748 235.46247,329.07021 248.43496,358.71273 176.15961,351.30209 152.06782,319.80692 42.728201,292.01706 -16.574651,253.11125 Z"
|
||||
id="path3117"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#58762c;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="m -11.102332,495.80936 1.8647639,-83.36957 50.3486531,-11.11595 20.51242,37.05315 7.459049,-85.22224 24.241942,66.69567 9.323834,-1.85267 1.86475,-42.61111 20.51243,62.99035 41.02481,-5.55797 3.72954,-22.23189 26.10672,31.49518 18.64764,-7.41062 v -64.84302 l 26.10671,75.95895 63.47778,55.75432 z"
|
||||
id="path3119"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccccccccc" />
|
||||
<path
|
||||
style="fill:#a3833d;fill-opacity:1;stroke:none;stroke-width:3.3735013"
|
||||
d="m 499.55033,499.44679 121.38066,-62.92246 -9.26607,22.23189 74.12857,-29.64251 -20.38535,44.46377 h 11.11927 l 12.9725,-18.52657 1.85321,20.37923 31.50465,-38.90581 9.26607,11.11596 14.8257,-24.08456 1.85323,74.1063 z"
|
||||
id="path3123"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#d45500;stroke-width:16.86750603;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -9.5788679,498.81144 323.7860279,4.97553 v -7.04113 h 211.51918 l -7.6223,4.69409 h 240.10285"
|
||||
id="path3901"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
3075
img/playing_cards/backs/astronaut.svg
Normal file
After Width: | Height: | Size: 276 KiB |
821
img/playing_cards/backs/blue.svg
Normal file
|
@ -0,0 +1,821 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="png-096-dpi\blue.png"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="blue.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 187.18163 266.90807"
|
||||
height="333"
|
||||
width="234"><title
|
||||
id="title2207">Blue Card Back</title><metadata
|
||||
id="metadata448"><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>Blue Card Back</dc:title><cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /><dc:date>2021-03-14</dc:date><dc:creator><cc:Agent><dc:title>Daniel S. Fowler</dc:title></cc:Agent></dc:creator><dc:rights><cc:Agent><dc:title>Public Domain</dc:title></cc:Agent></dc:rights><dc:publisher><cc:Agent><dc:title>https://tekeye.uk</dc:title></cc:Agent></dc:publisher><dc:language>en-GB</dc:language><dc:subject><rdf:Bag><rdf:li>blue; back; playing; card;</rdf:li></rdf:Bag></dc:subject><dc:source>https://tekeye.uk/playing_cards/svg-playing-cards</dc:source><dc:description>A playing card back pattern in blue. </dc:description></cc:Work><cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata><defs
|
||||
id="defs446" /><sodipodi:namedview
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
showborder="false"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-x="55"
|
||||
inkscape:cy="151.61509"
|
||||
inkscape:cx="206.01093"
|
||||
inkscape:zoom="2.0153513"
|
||||
height="303px"
|
||||
width="209px"
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
objecttolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
guidetolerance="10.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1768"
|
||||
inkscape:window-height="1003"
|
||||
inkscape:snap-global="false" />
|
||||
|
||||
<g
|
||||
id="g1282"><rect
|
||||
rx="7.1489577"
|
||||
ry="7.1702428"
|
||||
y="0.3029395"
|
||||
x="0.11524342"
|
||||
height="266.30219"
|
||||
width="186.95114"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.605879;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4"
|
||||
d="m 177.50262,250.03282 c 0,3.84926 -3.10704,7.00535 -6.9171,7.00535 H 16.691981 c -3.80072,0 -6.9077635,-3.15609 -6.9077635,-7.00535 V 17.077945 c 0,-3.854737 3.1070435,-7.006349 6.9077635,-7.006349 H 170.58552 c 3.81006,0 6.9171,3.151612 6.9171,7.006349 z"
|
||||
id="path5"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 17.126574,11.521168 c -3.235356,0 -5.840946,2.566007 -5.840946,5.754967 V 249.71911 c 0,3.18795 2.60559,5.75347 5.840946,5.75347 H 170.24039 c 3.23684,0 5.84046,-2.56552 5.84046,-5.75347 V 17.276135 c 0,-3.18896 -2.60362,-5.754967 -5.84046,-5.754967 z"
|
||||
id="path7"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:2.849;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 17.126574,11.521168 c -3.235356,0 -5.840946,2.566007 -5.840946,5.754967 V 249.71911 c 0,3.18795 2.60559,5.75347 5.840946,5.75347 H 170.24039 c 3.23684,0 5.84046,-2.56552 5.84046,-5.75347 V 17.276135 c 0,-3.18896 -2.60362,-5.754967 -5.84046,-5.754967 z"
|
||||
id="path9"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.779895,17.167081 c -0.815107,0 -1.470438,0.646356 -1.470438,1.448576 V 248.37958 c 0,0.80172 0.655331,1.44808 1.470438,1.44808 H 168.21492 c 0.8151,0 1.47191,-0.64636 1.47191,-1.44808 V 18.615657 c 0,-0.80222 -0.65681,-1.448576 -1.47191,-1.448576 z"
|
||||
id="path11"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 48.353595,47.464684 c -0.395395,0 -0.713592,0.31073 -0.713592,0.698643 V 219.56541 c 0,0.38841 0.318197,0.69914 0.713592,0.69914 h 89.389855 c 0.39687,0 0.71358,-0.31073 0.71358,-0.69914 V 48.163327 c 0,-0.387913 -0.31671,-0.698642 -0.71358,-0.698642 H 48.353595 Z"
|
||||
id="path15"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 62.407308,53.543327 c -4.651225,0 -8.396884,3.690408 -8.396884,8.273168 V 205.17824 c 0,4.58326 3.745659,8.27318 8.396884,8.27318 h 60.316952 c 4.65172,0 8.39689,-3.68992 8.39689,-8.27318 V 61.816495 c 0,-4.58276 -3.74517,-8.273168 -8.39689,-8.273168 z"
|
||||
id="path19"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 63.36657,60.133876 c -1.578829,0 -2.850527,1.241423 -2.850527,2.783119 V 204.07674 c 0,1.5427 1.271698,2.78363 2.850527,2.78363 h 58.6142 c 1.58081,0 2.854,-1.24093 2.854,-2.78363 V 62.916995 c 0,-1.541696 -1.27319,-2.783119 -2.854,-2.783119 z"
|
||||
id="path23"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.64089;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 49.035603,46.907461 c -0.394158,0 -0.71136,0.311257 -0.71136,0.699829 v 171.693 c 0,0.38907 0.317202,0.70033 0.71136,0.70033 h 89.110427 c 0.39562,0 0.71135,-0.31126 0.71135,-0.70033 v -171.693 c 0,-0.388572 -0.31573,-0.699828 -0.71135,-0.699828 H 49.035603 Z"
|
||||
id="path17"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:2.06341;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 63.328346,53.364122 c -4.667262,0 -8.425837,3.696672 -8.425837,8.28721 V 205.2564 c 0,4.59104 3.758575,8.28723 8.425837,8.28723 h 60.524934 c 4.66775,0 8.42583,-3.69619 8.42583,-8.28723 V 61.651332 c 0,-4.590538 -3.75808,-8.28721 -8.42583,-8.28721 z"
|
||||
id="path21"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.79684;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 64.450754,59.962851 c -1.569727,0 -2.834093,1.24353 -2.834093,2.787843 V 204.15003 c 0,1.54532 1.264366,2.78836 2.834093,2.78836 h 58.276276 c 1.5717,0 2.83754,-1.24304 2.83754,-2.78836 V 62.750694 c 0,-1.544313 -1.26584,-2.787843 -2.83754,-2.787843 z"
|
||||
id="path25"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#17067a;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.906241,18.825798 h 6.708167 l -6.643764,6.529797 -0.0644,-6.529797 z"
|
||||
id="path27"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#17067a;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 167.98681,18.910451 h -6.70768 l 6.64279,6.529798 0.0648,-6.529798 z"
|
||||
id="path31"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#17067a;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 168.10775,248.37559 h -6.70866 l 6.64474,-6.52829 0.0639,6.52829 z"
|
||||
id="path35"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#17067a;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.900834,248.34173 h 6.708165 l -6.64278,-6.52929 z"
|
||||
id="path39"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><g
|
||||
id="g3528"
|
||||
transform="translate(0.09268624,-0.04333163)"><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:2.6754;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 18.779895,17.167081 c -0.815107,0 -1.470438,0.646356 -1.470438,1.448576 V 248.37958 c 0,0.80172 0.655331,1.44808 1.470438,1.44808 H 168.21492 c 0.8151,0 1.47191,-0.64636 1.47191,-1.44808 V 18.615657 c 0,-0.80222 -0.65681,-1.448576 -1.47191,-1.448576 z"
|
||||
id="path13"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 18.906241,18.827655 h 6.708216 l -6.643813,6.52975 -0.0644,-6.52975 z"
|
||||
id="path29"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 168.1159,18.82748 h -6.71659 l 6.65162,6.530391 0.0649,-6.530391 z"
|
||||
id="path33"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 168.10775,248.37559 h -6.70866 l 6.64474,-6.52829 0.0639,6.52829 z"
|
||||
id="path37"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 18.900834,248.34173 h 6.708165 l -6.64278,-6.52929 z"
|
||||
id="path41"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /></g><g
|
||||
id="g2896"
|
||||
transform="matrix(1,0,0,1.0032121,0.31152432,-0.96485834)"
|
||||
style="stroke-width:0.998398"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path43" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path45" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path47" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path49" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path55" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path57" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path59" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path61" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path63" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path65" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path67" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path69" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path75" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path77" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path51" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path53" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path83" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path85" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path87" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path89" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path95" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path97" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path99" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path101" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path103" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path105" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path107" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path109" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path111" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path113" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path115" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path117" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path91" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path93" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path71" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path73" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path119" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path121" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path123" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path125" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path127" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path129" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path131" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path133" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path135" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path143" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path145" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path79" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path81" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path137" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path139" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path141" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path147" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path149" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path151" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path153" /></g><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4"
|
||||
d="m 177.3984,249.83065 c 0,3.84926 -3.10705,7.00635 -6.9181,7.00635 H 16.586774 c -3.80072,0 -6.9077634,-3.15709 -6.9077634,-7.00635 V 16.875772 c 0,-3.854239 3.1070434,-7.0058511 6.9077634,-7.0058511 H 170.4803 c 3.81105,0 6.9181,3.1516121 6.9181,7.0058511 z"
|
||||
id="path443"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><g
|
||||
id="g2896-5"
|
||||
transform="matrix(1,0,0,1.0032121,121.19924,-0.96485834)"
|
||||
style="stroke-width:0.998398"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path43-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path45-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path47-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path49-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path55-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path57-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path59-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path61-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path63-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path65-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path67-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path69-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path75-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path77-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path51-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path53-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path83-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path85-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path87-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path89-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path95-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path97-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path99-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path101-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path103-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path105-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path107-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path109-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path111-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path113-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path115-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path117-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path91-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path93-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path71-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path73-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path119-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path121-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path123-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path125-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path127-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path129-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path131-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path133-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path135-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path143-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path145-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path79-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path81-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path137-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path139-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path141-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path147-6" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path149-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path151-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path153-2" /></g><g
|
||||
id="g3368"
|
||||
transform="translate(39.85149,-56.955244)"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 62.744523,280.32665 H 56.46901 l 11.734742,22.58162 h 6.429877 z"
|
||||
id="path43-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 62.744523,280.32665 H 56.46901 l 11.734742,22.58162 h 6.429877 z"
|
||||
id="path45-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 50.876895,280.44169 h -6.275503 l 11.736739,22.58113 h 6.428382 z"
|
||||
id="path47-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 50.876895,280.44169 h -6.275503 l 11.736739,22.58113 h 6.428382 z"
|
||||
id="path49-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 74.775002,280.49184 h -6.275513 l 11.737241,22.58112 h 6.42788 z"
|
||||
id="path55-15" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 74.775002,280.49184 h -6.275513 l 11.737241,22.58112 h 6.42788 z"
|
||||
id="path57-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 68.241714,280.38417 h 6.27452 l -11.735736,22.58211 h -6.429386 z"
|
||||
id="path59-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 68.241714,280.38417 h 6.27452 l -11.735736,22.58211 h -6.429386 z"
|
||||
id="path61-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 86.64263,280.37729 h -6.275513 l 11.735244,22.58112 h 6.429867 z"
|
||||
id="path63-76" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 86.64263,280.37729 h -6.275513 l 11.735244,22.58112 h 6.429867 z"
|
||||
id="path65-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 80.336649,280.26422 h 6.275012 l -11.736739,22.58161 h -6.427389 z"
|
||||
id="path67-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 80.336649,280.26422 h 6.275012 l -11.736739,22.58161 h -6.427389 z"
|
||||
id="path69-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 38.901381,280.47266 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path75-00" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 38.901381,280.47266 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path77-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 56.438041,280.21456 h 6.275513 L 50.977818,302.7952 h -6.429376 z"
|
||||
id="path51-12" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 56.438041,280.21456 h 6.275513 L 50.977818,302.7952 h -6.429376 z"
|
||||
id="path53-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 110.67562,280.35811 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path87-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 110.67562,280.35811 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path89-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 98.699083,280.39007 h -6.275012 l 11.736239,22.58162 h 6.42838 z"
|
||||
id="path115-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 98.699083,280.39007 h -6.275012 l 11.736239,22.58162 h 6.42838 z"
|
||||
id="path117-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 116.23575,280.13098 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path91-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 116.23575,280.13098 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path93-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 92.139821,280.43481 h 6.275011 l -11.736738,22.58112 h -6.427871 z"
|
||||
id="path71-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 92.139821,280.43481 h 6.275011 l -11.736738,22.58112 h -6.427871 z"
|
||||
id="path73-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 104.26072,280.16245 h 6.27552 l -11.736736,22.58113 h -6.428382 z"
|
||||
id="path119-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 104.26072,280.16245 h 6.27552 l -11.736736,22.58113 h -6.428382 z"
|
||||
id="path121-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 3.1106661,280.32665 H -3.1658401 L 8.571902,302.90827 h 6.430369 z"
|
||||
id="path123-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 3.1106661,280.32665 H -3.1658401 L 8.571902,302.90827 h 6.430369 z"
|
||||
id="path125-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m -8.7569518,280.44169 h -6.2745202 l 11.735746,22.58113 h 6.4283825 z"
|
||||
id="path127-22" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m -8.7569518,280.44169 h -6.2745202 l 11.735746,22.58113 h 6.4283825 z"
|
||||
id="path129-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M -3.1968093,280.21456 H 3.0807001 L -8.6560387,302.7952 h -6.4303793 z"
|
||||
id="path131-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M -3.1968093,280.21456 H 3.0807001 L -8.6560387,302.7952 h -6.4303793 z"
|
||||
id="path133-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 15.142149,280.49184 H 8.8676389 l 11.7357361,22.58112 h 6.428372 z"
|
||||
id="path135-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 27.00778,280.37729 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path143-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 27.00778,280.37729 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path145-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 44.46351,280.24504 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path79-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 44.46351,280.24504 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path81-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 15.142149,280.49184 H 8.8676389 l 11.7357361,22.58112 h 6.428372 z"
|
||||
id="path137-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 8.6078571,280.38417 H 14.884373 L 3.1466413,302.96628 h -6.4293857 z"
|
||||
id="path139-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 8.6078571,280.38417 H 14.884373 L 3.1466413,302.96628 h -6.4293857 z"
|
||||
id="path141-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 20.702291,280.26422 h 6.275513 L 15.242069,302.84583 H 8.8136761 Z"
|
||||
id="path147-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 20.702291,280.26422 h 6.275513 L 15.242069,302.84583 H 8.8136761 Z"
|
||||
id="path149-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 32.505964,280.43481 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path151-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 32.505964,280.43481 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path153-3" /></g><g
|
||||
id="g3368-7"
|
||||
transform="matrix(0.99999898,0,0,1,39.851875,-259.34089)"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 62.744523,280.32665 H 56.46901 l 11.734742,22.58162 h 6.429877 z"
|
||||
id="path43-9-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 62.744523,280.32665 H 56.46901 l 11.734742,22.58162 h 6.429877 z"
|
||||
id="path45-4-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 50.876895,280.44169 h -6.275503 l 11.736739,22.58113 h 6.428382 z"
|
||||
id="path47-3-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 50.876895,280.44169 h -6.275503 l 11.736739,22.58113 h 6.428382 z"
|
||||
id="path49-5-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 74.775002,280.49184 h -6.275513 l 11.737241,22.58112 h 6.42788 z"
|
||||
id="path55-15-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 74.775002,280.49184 h -6.275513 l 11.737241,22.58112 h 6.42788 z"
|
||||
id="path57-0-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 68.241714,280.38417 h 6.27452 l -11.735736,22.58211 h -6.429386 z"
|
||||
id="path59-2-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 68.241714,280.38417 h 6.27452 l -11.735736,22.58211 h -6.429386 z"
|
||||
id="path61-3-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 86.64263,280.37729 h -6.275513 l 11.735244,22.58112 h 6.429867 z"
|
||||
id="path63-76-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 86.64263,280.37729 h -6.275513 l 11.735244,22.58112 h 6.429867 z"
|
||||
id="path65-2-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 80.336649,280.26422 h 6.275012 l -11.736739,22.58161 h -6.427389 z"
|
||||
id="path67-2-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 80.336649,280.26422 h 6.275012 l -11.736739,22.58161 h -6.427389 z"
|
||||
id="path69-2-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 38.901381,280.47266 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path75-00-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 38.901381,280.47266 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path77-2-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 56.438041,280.21456 h 6.275513 L 50.977818,302.7952 h -6.429376 z"
|
||||
id="path51-12-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 56.438041,280.21456 h 6.275513 L 50.977818,302.7952 h -6.429376 z"
|
||||
id="path53-2-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 110.67562,280.35811 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path87-0-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 110.67562,280.35811 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path89-9-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 98.699083,280.39007 h -6.275012 l 11.736239,22.58162 h 6.42838 z"
|
||||
id="path115-0-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 98.699083,280.39007 h -6.275012 l 11.736239,22.58162 h 6.42838 z"
|
||||
id="path117-1-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 116.23575,280.13098 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path91-3-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 116.23575,280.13098 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path93-3-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 92.139821,280.43481 h 6.275011 l -11.736738,22.58112 h -6.427871 z"
|
||||
id="path71-3-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 92.139821,280.43481 h 6.275011 l -11.736738,22.58112 h -6.427871 z"
|
||||
id="path73-2-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 104.26072,280.16245 h 6.27552 l -11.736736,22.58113 h -6.428382 z"
|
||||
id="path119-5-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 104.26072,280.16245 h 6.27552 l -11.736736,22.58113 h -6.428382 z"
|
||||
id="path121-2-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 3.1106661,280.32665 H -3.1658401 L 8.571902,302.90827 h 6.430369 z"
|
||||
id="path123-2-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 3.1106661,280.32665 H -3.1658401 L 8.571902,302.90827 h 6.430369 z"
|
||||
id="path125-0-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m -8.7569518,280.44169 h -6.2745202 l 11.735746,22.58113 h 6.4283825 z"
|
||||
id="path127-22-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m -8.7569518,280.44169 h -6.2745202 l 11.735746,22.58113 h 6.4283825 z"
|
||||
id="path129-1-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M -3.1968093,280.21456 H 3.0807001 L -8.6560387,302.7952 h -6.4303793 z"
|
||||
id="path131-9-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M -3.1968093,280.21456 H 3.0807001 L -8.6560387,302.7952 h -6.4303793 z"
|
||||
id="path133-2-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 15.142149,280.49184 H 8.8676389 l 11.7357361,22.58112 h 6.428372 z"
|
||||
id="path135-4-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 27.00778,280.37729 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path143-7-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 27.00778,280.37729 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path145-7-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 44.46351,280.24504 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path79-7-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 44.46351,280.24504 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path81-9-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 15.142149,280.49184 H 8.8676389 l 11.7357361,22.58112 h 6.428372 z"
|
||||
id="path137-1-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 8.6078571,280.38417 H 14.884373 L 3.1466413,302.96628 h -6.4293857 z"
|
||||
id="path139-1-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 8.6078571,280.38417 H 14.884373 L 3.1466413,302.96628 h -6.4293857 z"
|
||||
id="path141-5-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 20.702291,280.26422 h 6.275513 L 15.242069,302.84583 H 8.8136761 Z"
|
||||
id="path147-4-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 20.702291,280.26422 h 6.275513 L 15.242069,302.84583 H 8.8136761 Z"
|
||||
id="path149-1-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 32.505964,280.43481 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path151-3-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#17067a;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 32.505964,280.43481 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path153-3-6" /></g></g></svg>
|
After Width: | Height: | Size: 62 KiB |
813
img/playing_cards/backs/blue2.svg
Normal file
|
@ -0,0 +1,813 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="png-096-dpi\blue2.png"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="blue2.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 187.18163 266.90807"
|
||||
height="333"
|
||||
width="234"><title
|
||||
id="title2207">Another Blue Card Back</title><metadata
|
||||
id="metadata448"><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>Another Blue Card Back</dc:title><cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /><dc:date>2020-03-13</dc:date><dc:creator><cc:Agent><dc:title>Daniel S. Fowler</dc:title></cc:Agent></dc:creator><dc:rights><cc:Agent><dc:title>Public Domain</dc:title></cc:Agent></dc:rights><dc:publisher><cc:Agent><dc:title>https://tekeye.uk</dc:title></cc:Agent></dc:publisher><dc:language>en-GB</dc:language><dc:subject><rdf:Bag><rdf:li>blue; back; playing; card;</rdf:li></rdf:Bag></dc:subject><dc:description>A blue patterned playing card back.</dc:description><dc:source>https://tekeye.uk/playing_cards/svg-playing-cards</dc:source></cc:Work><cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata><defs
|
||||
id="defs446" /><sodipodi:namedview
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
showborder="false"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-y="13"
|
||||
inkscape:window-x="29"
|
||||
inkscape:cy="167.03131"
|
||||
inkscape:cx="125.46966"
|
||||
inkscape:zoom="0.9983453"
|
||||
height="303px"
|
||||
width="209px"
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
objecttolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
guidetolerance="10.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1620"
|
||||
inkscape:window-height="1003"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-global="false" />
|
||||
|
||||
<g
|
||||
id="g1569"><rect
|
||||
rx="7.1489577"
|
||||
ry="7.1702428"
|
||||
y="0.3029395"
|
||||
x="0.11524342"
|
||||
height="266.30219"
|
||||
width="186.95114"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.605879;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
|
||||
style="fill:#ffffff;fill-rule:nonzero;stroke:#313390;stroke-width:1.28645;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 177.50319,250.02759 c 0,3.85241 -3.10901,7.01109 -6.92147,7.01109 H 16.590573 c -3.803119,0 -6.9121236,-3.15868 -6.9121236,-7.01109 V 16.881484 c 0,-3.857394 3.1090046,-7.0120851 6.9121236,-7.0120851 H 170.58172 c 3.81246,0 6.92147,3.1546911 6.92147,7.0120851 z"
|
||||
id="path5-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 37.267911,42.899959 c 34.739679,0 69.479849,0 104.219039,0 0.81858,0 8.69242,-0.379759 8.69242,0.30002 0,3.814534 0,7.628571 0,11.443106 0,18.934623 0,37.869248 0,56.803875 0,36.74343 0,73.48735 0,110.23128 0,0.26114 0.17512,1.45325 -0.14364,1.45325 -1.55746,0 -3.11393,0 -4.67039,0 -8.0844,0 -16.16782,0 -24.25122,0 -21.936194,0 -43.8714,0 -65.807098,0 -5.785109,0 -11.570218,0 -17.354835,0 -1.47235,0 -0.684276,-4.14645 -0.684276,-5.33257 0,-16.53797 0,-33.07592 0,-49.61388 0,-39.89562 0,-79.79075 0,-119.686377 0,-1.8664 0,-3.732303 0,-5.598704"
|
||||
id="path7-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 71.54419,107.68874 c 4.504614,0 44.35743,-0.32095 44.35743,0.31696 0,17.10311 0,34.20622 0,51.31033 0,0.51431 -44.35743,0.0618 -44.35743,0.19137 0,-17.00742 0,-34.01484 0,-51.02226 0,-0.26564 0,-0.53127 0,-0.7964"
|
||||
id="path9-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 93.723395,102.97664 c -4.368349,5.10481 -8.737189,10.20913 -13.106028,15.31395 -2.945683,3.44225 -5.891367,6.884 -8.837541,10.32626 -0.683784,0.79889 -4.268487,3.87733 -4.268487,4.9872 0,1.02066 3.297907,3.8534 3.925611,4.58701 3.060303,3.57631 6.120606,7.15063 9.180417,10.72695 4.368839,5.10432 8.737679,10.20863 13.106028,15.31395 4.368347,-5.10532 8.736695,-10.20963 13.106025,-15.31395 2.94568,-3.44276 5.89137,-6.88451 8.83705,-10.32626 0.68378,-0.79938 4.26897,-3.87733 4.26897,-4.9877 0,-1.02067 -3.29789,-3.85291 -3.9256,-4.58651 -3.05981,-3.57582 -6.12061,-7.15114 -9.18042,-10.72695 -4.36933,-5.10482 -8.737678,-10.20914 -13.106025,-15.31395"
|
||||
id="path11-8" /><path
|
||||
style="fill:#313390;fill-opacity:1;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 73.732733,109.95848 c 0,0 4.101988,-0.0538 9.035904,-0.11295 5.019963,-0.0602 11.043998,-0.12371 15.060186,-0.14522 4.720097,-0.0253 13.816267,0.0861 13.816267,0.0861 2.32289,0 2.24059,0.45853 2.24059,2.81881 v 31.05502 11.72798 c 0,2.14199 -1.22688,1.68334 -3.25167,1.68983 l -26.840097,0.0861 h -8.562934 c -1.588937,0 -1.670363,-1.0416 -1.670363,-2.56063 v -42.23531"
|
||||
id="path13-0"
|
||||
sodipodi:nodetypes="csssscsscssc" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 93.723395,105.33294 c -3.95611,4.62239 -7.911728,9.24479 -11.867837,13.86718 -2.820241,3.29523 -5.640482,6.59046 -8.460723,9.88569 -0.618848,0.72364 -3.86707,3.51303 -3.86707,4.51824 0,0.917 2.961917,3.46069 3.52567,4.11954 2.780886,3.24938 5.561773,6.49876 8.342659,9.74815 4.1091,4.8013 8.2182,9.60261 12.327301,14.40392 3.956108,-4.6229 7.912215,-9.24479 11.867345,-13.86669 2.82073,-3.29522 5.64146,-6.59046 8.46121,-9.88568 0.61885,-0.72365 3.86658,-3.51353 3.86658,-4.51924 0,-0.91651 -2.96142,-3.46069 -3.52517,-4.11904 -2.78138,-3.24938 -5.56178,-6.49876 -8.34217,-9.74814 -4.1096,-4.80132 -8.219187,-9.60262 -12.327795,-14.40393"
|
||||
id="path15-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 77.592975,114.75664 c 8.756373,0 17.512746,0 26.269115,0 1.09307,0 5.99074,-0.74806 5.99074,0.60403 0,3.99693 0,7.99337 0,11.98982 0,1.75825 0.0216,25.10197 -0.0197,25.10197 -8.93346,0 -17.865948,0 -26.799417,0 -1.066506,0 -5.440757,0.73759 -5.440757,-0.60502 0,-3.99595 0,-7.99289 0,-11.98982 0,-8.36666 0,-16.73382 0,-25.10098"
|
||||
id="path17-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 93.723395,110.04454 c -3.360381,3.92667 -6.720763,7.85334 -10.081144,11.78001 -2.252552,2.63189 -4.505105,5.26379 -6.757656,7.8957 -0.53227,0.62196 -3.323979,3.01962 -3.323979,3.8838 0,0.77547 2.50393,2.92644 2.980119,3.48262 2.367171,2.76596 4.734344,5.53192 7.101516,8.29689 3.360381,3.92716 6.720762,7.85433 10.081144,11.7805 3.360872,-3.92617 6.720765,-7.85334 10.080655,-11.7805 2.25304,-2.63141 4.50608,-5.2628 6.75716,-7.8952 0.53325,-0.62197 3.32447,-3.02014 3.32447,-3.88431 0,-0.77447 -2.50393,-2.92544 -2.98012,-3.48212 -2.36717,-2.76596 -4.73434,-5.53142 -7.10151,-8.29738 -3.35989,-3.92667 -6.719783,-7.85334 -10.080655,-11.78001"
|
||||
id="path19-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.6094,117.11245 c 8.601415,0 17.203321,0 25.80424,0 3.10606,0 2.42326,0.27859 2.42326,3.43029 0,5.2922 0,10.5844 0,15.87611 0,4.33085 0,8.66169 0,12.99155 0,1.52302 -5.27842,0.68576 -6.51022,0.68576 -5.453547,0 -10.908079,0 -16.362118,0 -1.90279,0 -5.355162,1.12531 -5.355162,-1.19411 0,-10.59636 0,-21.19274 0,-31.7896"
|
||||
id="path21-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 93.723395,112.40034 c -2.947159,3.44425 -5.89481,6.88849 -8.842462,10.33273 -2.127109,2.48538 -4.254219,4.97126 -6.381822,7.45664 -0.467334,0.54621 -2.922069,2.65482 -2.922069,3.41434 0,0.67081 2.168432,2.53372 2.580178,3.01514 2.087756,2.43903 4.175019,4.87807 6.262282,7.3171 3.101626,3.62415 6.202759,7.24831 9.303893,10.87147 2.94765,-3.44375 5.895301,-6.88849 8.842955,-10.33224 2.12711,-2.48488 4.25422,-4.97076 6.38133,-7.45662 0.46733,-0.54622 2.92207,-2.65533 2.92207,-3.41485 0,-0.66981 -2.16843,-2.53372 -2.57969,-3.01465 -2.08775,-2.43953 -4.17551,-4.87856 -6.26327,-7.31758 -3.101129,-3.62367 -6.202262,-7.24732 -9.303395,-10.87148"
|
||||
id="path23-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 93.723395,114.75664 c -2.612155,3.05252 -5.224308,6.10505 -7.836954,9.15708 -1.836871,2.14698 -3.674234,4.29346 -5.511596,6.43995 -0.445198,0.5203 -2.78187,2.52774 -2.78187,3.25038 0,0.63293 2.046434,2.39119 2.435551,2.8457 1.800467,2.10412 3.600935,4.20725 5.401403,6.31237 2.764652,3.22945 5.529304,6.45989 8.293466,9.69034 2.612153,-3.05303 5.224308,-6.10506 7.837445,-9.15808 1.83589,-2.14599 3.67374,-4.29297 5.51061,-6.43895 0.44569,-0.5213 2.78138,-2.52774 2.78138,-3.25138 0,-0.63194 -2.04643,-2.39118 -2.43407,-2.84521 -1.80047,-2.10412 -3.60192,-4.20774 -5.40239,-6.31187 -2.763671,-3.22994 -5.528324,-6.45989 -8.292975,-9.69033"
|
||||
id="path25-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 81.625334,119.46824 c 8.030282,0 16.061056,0 24.091336,0 0.21055,0 0.10429,23.12543 0.10429,25.33122 0,0.44654 0.31484,2.59153 0,2.94039 -0.35222,0.38973 -3.28413,0 -3.78,0 -5.36598,0 -10.732455,0 -16.098439,0 -1.403971,0 -2.808435,0 -4.212406,0 -0.235635,0 -0.104781,-2.24067 -0.104781,-2.50182 0,-5.27277 0,-10.54554 0,-15.81781 0,-3.31716 0,-6.63482 0,-9.95198"
|
||||
id="path27-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.9979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 93.592993,119.46824 c -2.016426,2.35631 -3.901958,4.7121 -5.918383,7.06791 -1.386262,1.6197 -2.772524,3.23942 -4.158785,4.85962 -0.30057,0.35135 -1.890491,1.71888 -1.890491,2.20828 0,0.4904 1.589921,1.85792 1.890491,2.20878 1.386261,1.61971 2.772523,3.23941 4.158785,4.85913 2.016425,2.35629 4.032359,4.7116 6.048785,7.06789 2.016917,-2.35629 4.031866,-4.7116 6.048784,-7.06789 1.386261,-1.61972 2.772521,-3.23942 4.157801,-4.85913 0.30106,-0.35086 1.89098,-1.71838 1.89098,-2.20878 0,-0.4894 -1.58992,-1.85693 -1.89098,-2.20828 -1.38528,-1.6202 -2.77154,-3.23992 -4.157801,-4.85962 -2.016918,-2.35581 -4.162268,-4.7116 -6.179185,-7.06791"
|
||||
id="path29-2"
|
||||
sodipodi:nodetypes="cccscccccsccc" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 123.96732,105.33294 c -1.34396,0 -2.68791,0 -4.03188,0 1.34397,1.57036 2.68792,3.14123 4.03188,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path31-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 123.96732,112.40034 c -1.34396,-1.57037 -2.68791,-3.14123 -4.03188,-4.7116 0,1.52651 0,3.05302 0,4.58003 0,0.2766 3.51239,0.13157 4.03188,0.13157"
|
||||
id="path33-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 63.479474,105.33294 c 1.343955,0 2.68791,0 4.031866,0 -1.343956,1.57036 -2.687911,3.14123 -4.031866,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path35-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 63.479474,112.40034 c 1.343955,-1.57037 2.68791,-3.14123 4.031866,-4.7116 0,1.52651 0,3.05302 0,4.58003 0,0.2766 -3.511896,0.13157 -4.031866,0.13157"
|
||||
id="path37-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 67.51134,154.80776 c -1.343956,0 -2.687911,0 -4.031867,0 1.343956,1.57087 2.687911,3.14173 4.031867,4.7116 0,-1.56987 0,-3.14073 0,-4.7116"
|
||||
id="path39-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 67.51134,161.87566 c -1.343956,-1.57086 -2.687911,-3.14173 -4.031867,-4.7116 0,1.52601 0,3.05302 0,4.58003 0,0.2771 3.512388,0.13157 4.031867,0.13157"
|
||||
id="path41-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 119.93544,154.80776 c 1.34397,0 2.68792,0 4.03188,0 -1.34396,1.57087 -2.68791,3.14173 -4.03188,4.7116 0,-1.56987 0,-3.14073 0,-4.7116"
|
||||
id="path43-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 119.93544,161.87566 c 1.34397,-1.57086 2.68792,-3.14173 4.03188,-4.7116 0,1.52601 0,3.05302 0,4.58003 0,0.2771 -3.51239,0.13157 -4.03188,0.13157"
|
||||
id="path45-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 67.51134,138.31665 c -1.343956,0 -2.687911,0 -4.031867,0 1.343956,1.57086 2.687911,3.14074 4.031867,4.7116 0,-1.57086 0,-3.14074 0,-4.7116"
|
||||
id="path47-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 67.51134,145.38356 c -1.343956,-1.56988 -2.687911,-3.14074 -4.031867,-4.7116 0,1.527 0,3.05302 0,4.58002 0,0.2771 3.512388,0.13158 4.031867,0.13158"
|
||||
id="path49-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 63.479474,121.82455 c 1.343955,0 2.68791,0 4.031866,0 -1.343956,1.57036 -2.687911,3.14123 -4.031866,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path51-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 63.479474,128.89245 c 1.343955,-1.57087 2.68791,-3.14124 4.031866,-4.71211 0,1.52652 0,3.05353 0,4.58004 0,0.27659 -3.511896,0.13207 -4.031866,0.13207"
|
||||
id="path53-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 123.96732,121.82455 c -1.34396,0 -2.68791,0 -4.03188,0 1.34397,1.57036 2.68792,3.14123 4.03188,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path55-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 123.96732,128.89245 c -1.34396,-1.57087 -2.68791,-3.14124 -4.03188,-4.71211 0,1.52652 0,3.05353 0,4.58004 0,0.27659 3.51239,0.13207 4.03188,0.13207"
|
||||
id="path57-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 119.93544,138.31665 c 1.34397,0 2.68792,0 4.03188,0 -1.34396,1.57086 -2.68791,3.14074 -4.03188,4.7116 0,-1.57086 0,-3.14074 0,-4.7116"
|
||||
id="path59-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 119.93544,145.38356 c 1.34397,-1.56988 2.68792,-3.14074 4.03188,-4.7116 0,1.527 0,3.05302 0,4.58002 0,0.2771 -3.51239,0.13158 -4.03188,0.13158"
|
||||
id="path61-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.659577,34.948444 c -0.823984,-2.066248 -1.695686,-4.170871 -2.260914,-6.329815 -0.509641,-1.945642 -0.915484,-6.69562 1.639606,-7.629568 2.451292,-0.895075 3.342179,3.398395 3.310203,5.085382 -0.04821,2.534218 -1.237206,5.123257 -2.132521,7.452646 -0.182014,0.474449 -0.367964,0.950394 -0.556374,1.421355"
|
||||
id="path63-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.646787,34.995291 c -2.026264,-0.864176 -4.28226,-1.710909 -6.07584,-3.023122 -1.591889,-1.165191 -4.127302,-4.618407 -2.648065,-6.730505 1.493011,-2.132032 4.60841,0.311482 5.614901,1.751776 1.443818,2.064752 2.122191,4.889023 2.880256,7.271736 0.07723,0.242707 0.15299,0.488404 0.228748,0.730114"
|
||||
id="path65-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.653182,34.995291 c 2.026264,-0.864674 4.281768,-1.710909 6.075841,-3.023122 1.591888,-1.164693 4.126809,-4.618905 2.648065,-6.730505 -1.493012,-2.132531 -4.608903,0.311482 -5.615393,1.751776 -1.471858,2.105619 -2.161054,5.000658 -2.930926,7.43271 -0.05952,0.188883 -0.119047,0.381255 -0.177587,0.569141"
|
||||
id="path67-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 74.461342,35.278365 c -1.639606,-0.492889 -3.670297,-0.329921 -4.71811,1.20905 -0.558343,0.820319 -0.685261,3.998931 1.092086,3.380952 0.309916,-0.107649 0.563261,-1.501095 0.941064,-1.822047 0.720188,-0.612 2.069062,-0.593061 2.943716,-0.66383 1.176699,-0.0942 2.398655,0.0329 3.555186,-0.129078 0.0015,-0.0069 0.0034,-0.01345 0.0069,-0.01993 -1.096023,-0.86019 -2.493108,-1.538971 -3.820829,-1.955112"
|
||||
id="path69-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 84.757951,35.278365 c 1.639606,-0.493387 3.670297,-0.329921 4.717619,1.20905 0.558341,0.820319 0.685751,3.99943 -1.092087,3.380952 -0.309916,-0.107649 -0.562769,-1.500597 -0.940572,-1.822047 -0.719695,-0.612 -2.069063,-0.593061 -2.943716,-0.66383 -1.177191,-0.0942 -2.398655,0.0329 -3.555678,-0.129078 -0.0015,-0.0069 -0.0034,-0.01345 -0.0069,-0.01993 1.096515,-0.86019 2.493108,-1.538971 3.821321,-1.955112"
|
||||
id="path71-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 78.265445,39.856405 c 0.23957,2.075717 3.792296,1.066515 2.093167,-1.790149 -1.193426,-2.00744 -1.87721,-0.129079 -2.093167,1.790149"
|
||||
id="path73-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.88707,34.948444 c -0.82447,-2.06575 -1.69617,-4.171369 -2.26091,-6.329815 -0.50964,-1.945642 -0.91499,-6.695121 1.63911,-7.629568 2.45179,-0.896071 3.34316,3.398893 3.3107,5.085382 -0.0483,2.534717 -1.23672,5.123257 -2.13203,7.452646 -0.183,0.474449 -0.36797,0.949895 -0.55687,1.421355"
|
||||
id="path75-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.87428,34.995291 c -2.02577,-0.864176 -4.28275,-1.710909 -6.07535,-3.023122 -1.59188,-1.165191 -4.127297,-4.618905 -2.648552,-6.730505 1.493502,-2.131534 4.608412,0.310984 5.615882,1.751776 1.44333,2.064752 2.12121,4.889521 2.87878,7.271736 0.0777,0.242707 0.15349,0.488404 0.22924,0.730114"
|
||||
id="path77-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.88117,34.995291 c 2.02577,-0.864674 4.28177,-1.710909 6.07534,-3.023122 1.59288,-1.165191 4.12731,-4.618407 2.64758,-6.730505 -1.49252,-2.132032 -4.6084,0.311482 -5.6149,1.751776 -1.47284,2.105619 -2.15958,5.000658 -2.92994,7.43271 -0.06,0.189381 -0.11905,0.380756 -0.17808,0.569141"
|
||||
id="path79-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 102.68835,35.278365 c -1.63912,-0.493387 -3.66981,-0.329423 -4.716639,1.20905 -0.558834,0.820818 -0.686736,3.99943 1.092087,3.380952 0.308933,-0.107649 0.562769,-1.501095 0.940572,-1.822047 0.7192,-0.612 2.06906,-0.593061 2.94372,-0.66383 1.1767,-0.0942 2.39865,0.0329 3.55469,-0.129078 9.8e-4,-0.0069 0.004,-0.01345 0.007,-0.01993 -1.09701,-0.86019 -2.49212,-1.538971 -3.82132,-1.955112"
|
||||
id="path81-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 112.98545,35.278365 c 1.63911,-0.493387 3.67078,-0.329423 4.7186,1.20905 0.55785,0.820319 0.68477,3.998931 -1.09208,3.380952 -0.31091,-0.107649 -0.56376,-1.501095 -0.94156,-1.822047 -0.71921,-0.612 -2.06906,-0.593061 -2.94372,-0.66383 -1.1767,-0.09469 -2.39866,0.0329 -3.55568,-0.129078 -9.8e-4,-0.0069 -0.003,-0.01345 -0.007,-0.01993 1.09702,-0.859691 2.49312,-1.538971 3.82133,-1.955112"
|
||||
id="path83-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 106.49294,39.856405 c 0.24006,2.075717 3.79279,1.066515 2.09366,-1.790149 -1.19343,-2.00794 -1.87819,-0.128581 -2.09366,1.790149"
|
||||
id="path85-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 136.11507,34.948444 c -0.8235,-2.066746 -1.69619,-4.170871 -2.26191,-6.329815 -0.50865,-1.945642 -0.91499,-6.69562 1.64108,-7.629568 2.4508,-0.895573 3.3412,3.398893 3.30972,5.085382 -0.0492,2.534717 -1.2377,5.122759 -2.13302,7.452646 -0.18102,0.474449 -0.36796,0.950394 -0.55587,1.421355"
|
||||
id="path87-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 136.10227,34.995291 c -2.02676,-0.864674 -4.28177,-1.710909 -6.07633,-3.023122 -1.59189,-1.165191 -4.12632,-4.618905 -2.64757,-6.730505 1.49252,-2.132032 4.60841,0.311482 5.61489,1.751776 1.47186,2.105619 2.16056,5.00016 2.92995,7.43271 0.0609,0.189381 0.12003,0.380756 0.17906,0.569141"
|
||||
id="path89-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 136.10817,34.995291 c 2.02676,-0.864176 4.28276,-1.710909 6.07634,-3.023122 1.59189,-1.165191 4.12631,-4.618905 2.64856,-6.730505 -1.49351,-2.132032 -4.6094,0.311482 -5.61589,1.751776 -1.47186,2.105619 -2.16056,5.000658 -2.92995,7.43271 -0.06,0.188883 -0.12003,0.381255 -0.17906,0.569141"
|
||||
id="path91-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 130.91732,35.278365 c -1.6401,-0.493387 -3.67079,-0.329423 -4.71861,1.20905 -0.55883,0.820818 -0.68574,3.998931 1.0921,3.380952 0.30991,-0.107649 0.56276,-1.501095 0.94056,-1.822047 0.72019,-0.612 2.07005,-0.593061 2.94371,-0.66383 1.17769,-0.0942 2.39866,0.0329 3.55569,-0.129078 0.002,-0.0069 0.004,-0.01345 0.007,-0.01993 -1.09701,-0.86019 -2.49213,-1.538971 -3.82034,-1.955112"
|
||||
id="path93-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 141.21246,35.278365 c 1.64107,-0.492889 3.67177,-0.329921 4.71859,1.20905 0.55884,0.820319 0.68674,3.998433 -1.09209,3.380952 -0.30893,-0.107649 -0.56276,-1.500597 -0.94057,-1.822047 -0.72018,-0.612 -2.06906,-0.593061 -2.94371,-0.66383 -1.1767,-0.0942 -2.39865,0.0329 -3.55568,-0.129078 -0.002,-0.0069 -0.004,-0.01345 -0.006,-0.01993 1.09602,-0.86019 2.49212,-1.538971 3.81935,-1.955112"
|
||||
id="path95-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 134.72093,39.856405 c 0.24006,2.076714 3.79181,1.065518 2.09366,-1.790149 -1.19442,-2.00794 -1.87721,-0.128581 -2.09366,1.790149"
|
||||
id="path97-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.432082,34.948444 c -0.824477,-2.06575 -1.696179,-4.171369 -2.261407,-6.329815 -0.509641,-1.945642 -0.914992,-6.69562 1.639606,-7.629568 2.451784,-0.896071 3.342179,3.398893 3.310204,5.085382 -0.04821,2.534717 -1.237207,5.122759 -2.132522,7.452646 -0.182014,0.474449 -0.367964,0.949895 -0.555881,1.421355"
|
||||
id="path99-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.418799,34.995291 c -2.026756,-0.864674 -4.281768,-1.710909 -6.07584,-3.023122 -1.591889,-1.165191 -4.12681,-4.618407 -2.648065,-6.730505 1.493011,-2.132032 4.608902,0.311482 5.615393,1.751776 1.443326,2.064752 2.12219,4.889521 2.879764,7.271736 0.07723,0.242707 0.152991,0.488404 0.228748,0.730114"
|
||||
id="path101-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.425195,34.995291 c 2.026263,-0.864176 4.282259,-1.710909 6.07584,-3.023122 1.591889,-1.165191 4.127301,-4.618407 2.648064,-6.730505 -1.493502,-2.132032 -4.608409,0.311482 -5.615392,1.751776 -1.443326,2.064752 -2.121699,4.889521 -2.879764,7.271736 -0.07723,0.242707 -0.152991,0.487906 -0.228748,0.730114"
|
||||
id="path103-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 46.233354,35.278365 c -1.639606,-0.493387 -3.670297,-0.329423 -4.717619,1.20905 -0.558341,0.820319 -0.685752,3.99943 1.092088,3.380952 0.309424,-0.107649 0.562768,-1.501095 0.940571,-1.822047 0.719696,-0.612 2.069062,-0.593061 2.943716,-0.66383 1.177191,-0.0942 2.399148,0.0329 3.555677,-0.129078 9.85e-4,-0.0069 0.0034,-0.01345 0.0069,-0.01993 -1.096514,-0.859691 -2.493106,-1.539469 -3.821321,-1.955112"
|
||||
id="path105-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 56.529471,35.278365 c 1.640099,-0.492889 3.67079,-0.329921 4.718603,1.20905 0.558342,0.820319 0.685752,3.998931 -1.092087,3.380952 -0.309917,-0.107649 -0.563262,-1.501095 -0.941065,-1.822047 -0.719694,-0.612 -2.069061,-0.593061 -2.943715,-0.66383 -1.176698,-0.0942 -2.398655,0.0329 -3.555185,-0.129078 -0.0015,-0.0069 -0.0039,-0.01345 -0.0069,-0.01993 1.096514,-0.86019 2.492615,-1.538473 3.820336,-1.955112"
|
||||
id="path107-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 50.037457,39.856405 c 0.240063,2.075717 3.792296,1.066515 2.093658,-1.790149 -1.193424,-2.00744 -1.8777,-0.128581 -2.093658,1.790149"
|
||||
id="path109-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.407709,231.08251 c -0.823985,2.06624 -1.696179,4.17136 -2.261408,6.32931 -0.509148,1.94464 -0.915483,6.69711 1.640099,7.63006 2.451785,0.89508 3.341687,-3.39889 3.309712,-5.08538 -0.04821,-2.53571 -1.237698,-5.12325 -2.132029,-7.45264 -0.182507,-0.47445 -0.367965,-0.9499 -0.556374,-1.42135"
|
||||
id="path111-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.394426,231.03566 c -2.026755,0.86318 -4.281768,1.71041 -6.075348,3.02312 -1.59238,1.16519 -4.127302,4.6179 -2.648557,6.73 1.493503,2.13204 4.608902,-0.31098 5.615393,-1.75127 1.443818,-2.06526 2.121699,-4.89003 2.879765,-7.27224 0.07723,-0.2422 0.15299,-0.48841 0.228747,-0.72961"
|
||||
id="path113-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 79.401313,231.03566 c 2.026756,0.86318 4.281768,1.71041 6.075349,3.02312 1.592381,1.16519 4.126809,4.6179 2.648065,6.73 -1.493011,2.13204 -4.60841,-0.31098 -5.615393,-1.75127 -1.471858,-2.10612 -2.160561,-5.00066 -2.929942,-7.43272 -0.06001,-0.18937 -0.119047,-0.38075 -0.178079,-0.56913"
|
||||
id="path115-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 74.208981,230.75258 c -1.639606,0.49239 -3.670298,0.32893 -4.717618,-1.21004 -0.558343,-0.81933 -0.685752,-3.99893 1.092086,-3.38095 0.309425,0.10764 0.563261,1.50109 0.940573,1.82204 0.720187,0.612 2.069062,0.59405 2.944207,0.66383 1.176699,0.0947 2.39964,-0.0318 3.555186,0.12958 9.83e-4,0.008 0.0034,0.014 0.0069,0.0199 -1.096023,0.86019 -2.493107,1.53897 -3.821321,1.95561"
|
||||
id="path117-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 84.505591,230.75258 c 1.639605,0.49239 3.670788,0.32893 4.71811,-1.21004 0.558341,-0.81933 0.685752,-3.99794 -1.092087,-3.38095 -0.309424,0.10764 -0.563261,1.50109 -0.941064,1.82204 -0.720187,0.612 -2.06857,0.59405 -2.943715,0.66383 -1.1767,0.0947 -2.39964,-0.0318 -3.555186,0.12958 -0.0015,0.007 -0.0039,0.014 -0.0069,0.0199 1.095531,0.86019 2.493107,1.53897 3.820829,1.95561"
|
||||
id="path119-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 78.013084,226.17454 c 0.239571,-2.07622 3.792297,-1.06751 2.093659,1.78915 -1.193425,2.00844 -1.876225,0.13058 -2.093659,-1.78915"
|
||||
id="path121-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.6352,231.08251 c -0.82447,2.06624 -1.69617,4.17136 -2.26091,6.32931 -0.50964,1.94464 -0.91499,6.69611 1.63911,7.63006 2.45179,0.89508 3.34316,-3.39889 3.3107,-5.08538 -0.0482,-2.53372 -1.23671,-5.12524 -2.13203,-7.45264 -0.183,-0.47445 -0.36796,-0.9499 -0.55687,-1.42135"
|
||||
id="path123-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.62241,231.03566 c -2.02675,0.86318 -4.28275,1.71041 -6.07534,3.02312 -1.591893,1.16519 -4.127306,4.6179 -2.64856,6.73 1.4935,2.13204 4.60841,-0.31098 5.61588,-1.75127 1.47186,-2.10612 2.15958,-5.00066 2.92994,-7.43272 0.059,-0.18838 0.11905,-0.38175 0.17808,-0.56913"
|
||||
id="path125-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 107.6293,231.03566 c 2.02676,0.86318 4.28177,1.71041 6.07535,3.02312 1.59287,1.16519 4.1273,4.6179 2.64757,6.73 -1.4935,2.13204 -4.6084,-0.31098 -5.6149,-1.75127 -1.47186,-2.10612 -2.16056,-5.00066 -2.93092,-7.43272 -0.059,-0.18838 -0.11807,-0.38175 -0.1771,-0.56913"
|
||||
id="path127-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 102.43648,230.75258 c -1.63912,0.49239 -3.669809,0.32893 -4.717622,-1.21004 -0.55785,-0.81933 -0.685752,-3.99893 1.092087,-3.38095 0.309917,0.10764 0.563754,1.50109 0.941557,1.82204 0.720188,0.612 2.068078,0.59405 2.943718,0.66383 1.17571,0.0947 2.39964,-0.0318 3.55469,0.12958 9.8e-4,0.007 0.004,0.014 0.007,0.0199 -1.09602,0.86019 -2.4931,1.53897 -3.82132,1.95561"
|
||||
id="path129-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 112.73358,230.75258 c 1.63911,0.49239 3.66981,0.32893 4.7186,-1.21004 0.55687,-0.81933 0.68477,-3.99794 -1.09208,-3.38095 -0.31091,0.10764 -0.56376,1.50109 -0.94156,1.82204 -0.72019,0.612 -2.06906,0.59405 -2.94471,0.66383 -1.17571,0.0947 -2.39865,-0.0318 -3.55469,0.12958 -9.8e-4,0.008 -0.003,0.014 -0.007,0.0199 1.09602,0.86019 2.49312,1.53897 3.82133,1.95561"
|
||||
id="path131-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 106.24009,226.17454 c 0.24104,-2.07622 3.79279,-1.06751 2.09464,1.78915 -1.19342,2.00844 -1.87622,0.13058 -2.09464,-1.78915"
|
||||
id="path133-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 135.8632,231.08251 c -0.82448,2.06624 -1.69619,4.17136 -2.2619,6.32931 -0.50866,1.94464 -0.915,6.69711 1.64107,7.63006 2.45179,0.89508 3.3412,-3.39889 3.30972,-5.08538 -0.0483,-2.53372 -1.23573,-5.12524 -2.13302,-7.45264 -0.18201,-0.47445 -0.36796,-0.9499 -0.55587,-1.42135"
|
||||
id="path135-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 135.8504,231.03566 c -2.02675,0.86318 -4.28275,1.71041 -6.07633,3.02312 -1.59189,1.16519 -4.12631,4.6179 -2.64856,6.73 1.49351,2.13204 4.6094,-0.31098 5.61589,-1.75127 1.44431,-2.06526 2.12219,-4.89003 2.88075,-7.27224 0.0768,-0.2422 0.15151,-0.48841 0.22825,-0.72961"
|
||||
id="path137-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 135.85631,231.03566 c 2.02675,0.86318 4.28275,1.71041 6.07633,3.02312 1.59189,1.16519 4.12631,4.6179 2.64757,6.73 -1.49252,2.13204 -4.60841,-0.31098 -5.6149,-1.75127 -1.44431,-2.06526 -2.12121,-4.89003 -2.88075,-7.27224 -0.0768,-0.2422 -0.1525,-0.48841 -0.22825,-0.72961"
|
||||
id="path139-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 130.66447,230.75258 c -1.6401,0.49239 -3.6708,0.32893 -4.71763,-1.21004 -0.55883,-0.81933 -0.68673,-3.99794 1.0921,-3.38095 0.30893,0.10764 0.56276,1.50109 0.94057,1.82204 0.72018,0.612 2.06906,0.59405 2.94371,0.66383 1.1767,0.0947 2.40063,-0.0318 3.55568,0.12958 9.8e-4,0.008 0.004,0.014 0.007,0.0199 -1.09701,0.86019 -2.49213,1.53897 -3.82132,1.95561"
|
||||
id="path141-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 140.96059,230.75258 c 1.64009,0.49239 3.67177,0.32893 4.7186,-1.21004 0.55883,-0.81933 0.68574,-3.99794 -1.0921,-3.38095 -0.30893,0.10764 -0.56276,1.50109 -0.94057,1.82204 -0.72018,0.612 -2.06807,0.59405 -2.94371,0.66383 -1.1767,0.0947 -2.39964,-0.0318 -3.55568,0.12958 -0.002,0.008 -0.004,0.014 -0.007,0.0199 1.09505,0.86019 2.49311,1.53897 3.82035,1.95561"
|
||||
id="path143-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 134.46906,226.17454 c 0.23908,-2.07622 3.79181,-1.06751 2.09366,1.78915 -1.19441,2.00844 -1.87721,0.13058 -2.09366,-1.78915"
|
||||
id="path145-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.180213,231.08251 c -0.824969,2.06524 -1.69667,4.17136 -2.2619,6.32931 -0.509148,1.94464 -0.914991,6.69711 1.640099,7.63006 2.451293,0.89508 3.342671,-3.39889 3.310204,-5.08538 -0.04821,-2.53571 -1.237699,-5.12325 -2.132522,-7.45264 -0.182014,-0.47445 -0.367964,-0.9499 -0.555881,-1.42135"
|
||||
id="path147-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.166931,231.03566 c -2.027248,0.86318 -4.28226,1.71041 -6.075841,3.02312 -1.592381,1.16519 -4.126809,4.6179 -2.648557,6.73 1.493503,2.13204 4.608902,-0.31197 5.615886,-1.75127 1.443325,-2.06526 2.121206,-4.89003 2.879763,-7.27224 0.07723,-0.24121 0.152992,-0.48841 0.228749,-0.72961"
|
||||
id="path149-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 51.173326,231.03566 c 2.026755,0.86318 4.281768,1.7114 6.075348,3.02312 1.592382,1.1642 4.127302,4.6179 2.648557,6.73 -1.493503,2.13204 -4.60841,-0.31098 -5.615393,-1.75127 -1.471858,-2.10612 -2.160561,-5.00066 -2.930434,-7.43272 -0.06001,-0.18838 -0.119047,-0.38175 -0.178078,-0.56913"
|
||||
id="path151-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 45.981485,230.75258 c -1.640097,0.49239 -3.670789,0.32893 -4.71811,-1.21004 -0.558342,-0.81933 -0.685752,-3.99893 1.092086,-3.38095 0.309425,0.10764 0.563754,1.50109 0.941064,1.82204 0.720188,0.612 2.068571,0.59405 2.943716,0.66383 1.176699,0.0947 2.39964,-0.0318 3.555186,0.12958 0.0015,0.008 0.0039,0.014 0.0069,0.0199 -1.096023,0.86019 -2.492615,1.53897 -3.820829,1.95561"
|
||||
id="path153-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 56.277602,230.75258 c 1.640099,0.49239 3.67079,0.32993 4.718603,-1.21004 0.55785,-0.81933 0.685261,-3.99893 -1.092579,-3.38095 -0.309425,0.10764 -0.563261,1.50109 -0.940572,1.82204 -0.720187,0.612 -2.06857,0.59405 -2.943716,0.66383 -1.176698,0.0947 -2.399639,-0.0318 -3.555677,0.12958 -9.84e-4,0.008 -0.0034,0.014 -0.0069,0.0199 1.096021,0.86019 2.493106,1.53897 3.820828,1.95561"
|
||||
id="path155-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 49.785096,226.17454 c 0.240554,-2.07622 3.791805,-1.06751 2.094151,1.78915 -1.193917,2.00944 -1.875733,0.13058 -2.094151,-1.78915"
|
||||
id="path157-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.04771,232.48492 c 1.9205,1.0416 3.99743,2.3244 6.12258,2.88058 1.93427,0.50635 5.5962,0.018 5.94842,-2.57159 0.34042,-2.49883 -3.14933,-3.62117 -5.03147,-3.39989 -2.34749,0.2761 -4.80911,1.87687 -6.86539,2.99222 -0.057,0.0309 -0.11707,0.0668 -0.17414,0.0987"
|
||||
id="path159-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.01131,232.49987 c 0.82644,2.65233 3.39039,12.77924 8.00667,10.38606 2.2491,-1.16519 0.43979,-5.02259 -0.7379,-6.3343 -1.66174,-1.84796 -4.41754,-2.81879 -6.645,-3.78364 -0.20661,-0.0907 -0.41716,-0.17941 -0.62377,-0.26812"
|
||||
id="path161-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,232.49189 c 0.82842,-2.65432 3.39236,-12.78521 8.01061,-10.38606 2.24714,1.1672 0.44077,5.01263 -0.7379,6.32634 -1.66272,1.84995 -4.41852,2.82476 -6.64697,3.79359 -0.20858,0.0897 -0.41912,0.17743 -0.62574,0.26613"
|
||||
id="path163-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,238.55907 c 0.37386,1.70643 0.45159,4.26606 -1.03503,5.51199 -0.96714,0.81134 -3.4691,0.54422 -2.89354,-1.27583 0.10725,-0.3369 1.27016,-0.68975 1.55942,-1.1024 0.59819,-0.85521 0.51162,-2.45199 0.56769,-3.43676 0.0778,-1.37551 -0.0462,-2.79388 0.11118,-4.15444 0.006,-0.002 0.0118,-0.004 0.0167,-0.008 0.77627,1.33763 1.33314,2.95036 1.67356,4.46541"
|
||||
id="path165-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,226.52738 c 0.37485,-1.7084 0.45454,-4.26705 -1.03503,-5.51297 -0.96714,-0.80936 -3.47205,-0.54622 -2.89354,1.27583 0.10626,0.3349 1.27214,0.68775 1.55942,1.1004 0.59819,0.85421 0.51162,2.45398 0.56769,3.43876 0.0778,1.37651 -0.0462,2.79387 0.11118,4.15443 0.006,0.002 0.0118,0.005 0.0167,0.008 0.77431,-1.33565 1.33707,-2.95037 1.67356,-4.46442"
|
||||
id="path167-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,234.1136 c -1.84178,-0.45053 -1.05469,-4.48535 1.53188,-2.44601 1.55549,1.226 0.38272,2.11509 -1.53188,2.44601"
|
||||
id="path169-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.05066,199.50071 c 1.9205,1.04358 3.99842,2.32441 6.12356,2.88258 1.93034,0.50634 5.59719,0.018 5.94449,-2.5726 0.33452,-2.49684 -3.14836,-3.62016 -5.03147,-3.39988 -2.34552,0.27311 -4.80911,1.87587 -6.86145,2.99222 -0.058,0.0309 -0.11806,0.0667 -0.17513,0.0977"
|
||||
id="path171-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,199.51666 c 0.83038,2.65333 3.39236,12.78023 8.01061,10.38606 2.24813,-1.16619 0.44077,-5.0196 -0.7379,-6.33032 -1.66469,-1.84895 -4.41951,-2.82078 -6.64697,-3.78861 -0.20858,-0.0907 -0.41912,-0.17943 -0.62574,-0.26713"
|
||||
id="path173-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.01131,199.50868 c 0.82644,-2.65532 3.38842,-12.78023 8.00667,-10.38606 2.2491,1.16619 0.44077,5.01861 -0.7379,6.32932 -1.66272,1.84996 -4.41754,2.82177 -6.645,3.78962 -0.20661,0.0897 -0.41716,0.17841 -0.62377,0.26712"
|
||||
id="path175-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,205.57087 c 0.37485,1.7124 0.45454,4.26308 -1.03503,5.51299 -0.96517,0.81035 -3.47303,0.55518 -2.89354,-1.27185 0.10626,-0.33391 1.27214,-0.68775 1.55942,-1.09941 0.59819,-0.8552 0.51162,-2.45397 0.56769,-3.43975 0.0778,-1.37651 -0.0462,-2.79388 0.11118,-4.15443 0.006,-0.002 0.0118,-0.005 0.0167,-0.008 0.77431,1.33364 1.33608,2.94738 1.67356,4.46043"
|
||||
id="path177-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,193.54417 c 0.37386,-1.70642 0.45159,-4.26605 -1.03503,-5.51298 -0.96615,-0.81035 -3.475,-0.54522 -2.89354,1.27583 0.10725,0.33391 1.27115,0.68676 1.55942,1.09941 0.59819,0.8562 0.51162,2.45398 0.56769,3.43975 0.0778,1.37651 -0.0462,2.79388 0.11118,4.15443 0.006,0.002 0.0118,0.005 0.0167,0.008 0.77627,-1.33663 1.33314,-2.95036 1.67356,-4.46442"
|
||||
id="path179-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,201.13038 c -1.84178,-0.44953 -1.05273,-4.49032 1.53188,-2.45099 1.55745,1.22998 0.38272,2.11908 -1.53188,2.45099"
|
||||
id="path181-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.04771,166.5165 c 1.91854,1.04558 4.00137,2.32739 6.12651,2.88257 1.93428,0.50635 5.59227,0.018 5.94449,-2.57159 0.33944,-2.49784 -3.14836,-3.62515 -5.03147,-3.40487 -2.34847,0.27609 -4.8101,1.88085 -6.86539,2.9962 -0.057,0.0318 -0.11609,0.0667 -0.17414,0.0977"
|
||||
id="path183-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,166.53244 c 0.83038,2.65532 3.39236,12.78123 8.01061,10.38606 2.24813,-1.16519 0.44077,-5.0186 -0.7379,-6.32931 -1.66469,-1.84996 -4.41951,-2.82178 -6.64697,-3.78962 -0.20858,-0.0897 -0.41912,-0.17841 -0.62574,-0.26713"
|
||||
id="path185-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,166.52447 c 0.83038,-2.65333 3.39236,-12.78024 8.01061,-10.38606 2.24813,1.16619 0.44077,5.0196 -0.7379,6.33032 -1.66469,1.84895 -4.41951,2.82177 -6.64697,3.78861 -0.20858,0.0907 -0.41912,0.17942 -0.62574,0.26713"
|
||||
id="path187-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,172.59164 c 0.37386,1.70743 0.45159,4.26606 -1.03503,5.51299 -0.96714,0.81134 -3.47205,0.54521 -2.89354,-1.27583 0.10626,-0.3349 1.27214,-0.68776 1.55942,-1.1004 0.59819,-0.85521 0.51162,-2.45399 0.56769,-3.43877 0.0778,-1.36952 -0.0659,-2.81679 0.12102,-4.15841 0.79102,1.30175 1.34296,2.95933 1.68044,4.46042"
|
||||
id="path189-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,160.55996 c 0.37386,-1.70643 0.45159,-4.26606 -1.03503,-5.51198 -0.96714,-0.81235 -3.47205,-0.54622 -2.89354,1.27583 0.10626,0.3349 1.27214,0.68775 1.55942,1.09941 0.59819,0.8552 0.51162,2.45397 0.56769,3.43975 0.0778,1.36953 -0.0659,2.8168 0.12102,4.15841 0.79102,-1.30175 1.34296,-2.96033 1.68044,-4.46142"
|
||||
id="path191-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,168.14717 c -1.84277,-0.44954 -1.05273,-4.48236 1.53188,-2.45099 1.55942,1.22698 0.37879,2.11508 -1.53188,2.45099"
|
||||
id="path193-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.04771,100.55007 c 1.91951,1.04309 3.99941,2.32689 6.12258,2.88208 1.93427,0.50585 5.5962,0.0174 5.94842,-2.5721 0.34042,-2.498831 -3.14933,-3.621661 -5.03147,-3.400384 -2.34847,0.276596 -4.80911,1.877364 -6.86539,2.992224 -0.057,0.0319 -0.11707,0.0668 -0.17414,0.0982"
|
||||
id="path195-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.01131,100.56601 c 0.82644,2.65333 3.39039,12.77874 8.00667,10.38557 2.2491,-1.16569 0.43979,-5.02259 -0.7379,-6.33381 -1.66076,-1.84746 -4.41754,-2.81928 -6.645,-3.78463 -0.20661,-0.0902 -0.41716,-0.17941 -0.62377,-0.26713"
|
||||
id="path197-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,100.55804 c 0.82842,-2.654824 3.39334,-12.785717 8.01061,-10.386059 2.24714,1.167186 0.44077,5.013117 -0.7379,6.325828 -1.66272,1.850452 -4.41951,2.824269 -6.64697,3.793101 -0.20858,0.0902 -0.41912,0.17842 -0.62574,0.26713"
|
||||
id="path199-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,106.62422 c 0.37386,1.70692 0.45159,4.26705 -1.03503,5.51348 -1.02519,0.86069 -3.43762,0.49987 -2.86992,-1.32318 0.0856,-0.2731 1.33116,-0.76599 1.59975,-1.19011 0.56179,-0.88909 0.4634,-2.49185 0.51456,-3.49458 0.065,-1.30174 -0.0816,-2.70316 0.11708,-3.97002 0.77627,1.33713 1.33313,2.95035 1.67356,4.46441"
|
||||
id="path201-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,94.593531 c 0.37485,-1.708417 0.45454,-4.266058 -1.03503,-5.512984 -0.96615,-0.809853 -3.47303,-0.546714 -2.89354,1.275831 0.10626,0.334906 1.27214,0.687752 1.55942,1.099906 0.59819,0.854706 0.51162,2.454479 0.56769,3.439261 0.0778,1.376501 -0.0462,2.793869 0.11118,4.154423 0.006,0.002 0.0118,0.0045 0.0167,0.008 0.77528,-1.335635 1.33707,-2.950358 1.67356,-4.464411"
|
||||
id="path203-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,102.17974 c -1.84178,-0.45053 -1.05469,-4.484844 1.53188,-2.446504 1.55549,1.226494 0.38272,2.114594 -1.53188,2.446504"
|
||||
id="path205-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.05066,67.566851 c 1.9205,1.044088 3.99842,2.323407 6.12356,2.882081 1.93133,0.507343 5.59719,0.01794 5.94449,-2.572094 0.33452,-2.497838 -3.14836,-3.62017 -5.03147,-3.400388 -2.34552,0.273606 -4.80911,1.877365 -6.86145,2.991723 -0.058,0.0319 -0.11806,0.06728 -0.17513,0.09868"
|
||||
id="path207-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,67.582301 c 0.83038,2.654325 3.39236,12.780734 8.01061,10.386059 2.24813,-1.165192 0.44077,-5.019098 -0.7379,-6.329814 -1.66469,-1.849457 -4.41951,-2.820783 -6.64697,-3.789119 -0.20858,-0.09021 -0.41912,-0.178915 -0.62574,-0.267126"
|
||||
id="path209-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.01131,67.574327 c 0.82644,-2.654825 3.38842,-12.780236 8.00667,-10.385562 2.2491,1.165193 0.43979,5.0186 -0.7379,6.329317 -1.66272,1.849456 -4.41656,2.821778 -6.645,3.789616 -0.20661,0.08971 -0.41716,0.178417 -0.62377,0.266629"
|
||||
id="path211-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,73.637015 c 0.37485,1.712404 0.45454,4.263567 -1.03503,5.512984 -0.96517,0.810352 -3.47402,0.555186 -2.89354,-1.271844 0.10626,-0.334905 1.27214,-0.687752 1.55942,-1.099906 0.59819,-0.854706 0.51162,-2.454479 0.56769,-3.439261 0.0778,-1.376501 -0.0462,-2.793869 0.11118,-4.154423 0.006,-0.002 0.0118,-0.0045 0.0167,-0.008 0.77431,1.33414 1.33608,2.947867 1.67356,4.460424"
|
||||
id="path213-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,61.609818 c 0.37485,-1.706922 0.45159,-4.266059 -1.03503,-5.512486 -0.96615,-0.810352 -3.4691,-0.549206 -2.89354,1.271844 0.10725,0.337896 1.27016,0.689247 1.55942,1.103394 0.59819,0.856202 0.51162,2.453981 0.56769,3.439759 0.0778,1.376502 -0.0462,2.793871 0.11118,4.154424 0.006,0.002 0.0118,0.0045 0.0167,0.008 0.77627,-1.336632 1.33314,-2.950359 1.67356,-4.46491"
|
||||
id="path215-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,69.196027 c -1.84178,-0.448035 -1.05371,-4.489827 1.53188,-2.449993 1.55745,1.228983 0.38272,2.118576 -1.53188,2.449993"
|
||||
id="path217-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.04771,34.583138 c 1.91755,1.045583 4.00137,2.326895 6.12651,2.882081 1.93428,0.505847 5.59227,0.01694 5.94449,-2.571596 0.33944,-2.498336 -3.14836,-3.625652 -5.03147,-3.404873 -2.34847,0.275599 -4.8101,1.880853 -6.86539,2.996208 -0.057,0.0319 -0.11609,0.06678 -0.17414,0.09818"
|
||||
id="path219-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,34.598587 c 0.83038,2.654327 3.39236,12.781233 8.01061,10.38606 2.24813,-1.165193 0.44077,-5.019099 -0.7379,-6.329815 -1.66469,-1.849456 -4.41951,-2.820782 -6.64697,-3.789118 -0.20858,-0.08971 -0.41912,-0.178417 -0.62574,-0.267127"
|
||||
id="path221-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,34.591111 c 0.83038,-2.654325 3.39236,-12.780733 8.01061,-10.386059 2.24813,1.165192 0.44077,5.019098 -0.7379,6.329814 -1.66469,1.849457 -4.41951,2.820783 -6.64697,3.789119 -0.20858,0.09021 -0.41912,0.178915 -0.62574,0.267126"
|
||||
id="path223-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,40.657786 c 0.37386,1.706424 0.45159,4.26606 -1.03503,5.512984 -0.96714,0.811349 -3.47205,0.545219 -2.89354,-1.276328 0.10626,-0.334408 1.27214,-0.687753 1.55942,-1.099407 0.59819,-0.855206 0.51162,-2.45448 0.56769,-3.43976 0.0778,-1.369524 -0.0659,-2.817293 0.12102,-4.157912 0.79102,1.300749 1.34296,2.959827 1.68044,4.460423"
|
||||
id="path225-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,28.626602 c 0.37386,-1.706921 0.45159,-4.266058 -1.03503,-5.512984 -0.96714,-0.811349 -3.47205,-0.545716 -2.89354,1.27633 0.10626,0.334407 1.27214,0.687253 1.55942,1.099407 0.59819,0.855206 0.51162,2.453981 0.56769,3.439759 0.0778,1.369525 -0.0659,2.816795 0.12102,4.157913 0.79102,-1.301746 1.34296,-2.959828 1.68044,-4.460425"
|
||||
id="path227-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,36.212812 c -1.84277,-0.449033 -1.05273,-4.481854 1.53188,-2.450492 1.55942,1.225994 0.37879,2.115088 -1.53188,2.450492"
|
||||
id="path229-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.04771,133.53329 c 1.91755,1.04557 4.00137,2.32739 6.12651,2.88258 1.93428,0.50534 5.59227,0.0169 5.94449,-2.5726 0.33944,-2.49883 -3.14836,-3.62116 -5.03147,-3.39989 -2.34847,0.2766 -4.80911,1.87687 -6.86539,2.99222 -0.057,0.0309 -0.11609,0.0668 -0.17414,0.0977"
|
||||
id="path231-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,133.54923 c 0.83038,2.65433 3.39236,12.78123 8.01061,10.38606 2.24813,-1.16519 0.44077,-5.0186 -0.7379,-6.33032 -1.66469,-1.84895 -4.41951,-2.82078 -6.64697,-3.78861 -0.20858,-0.0907 -0.41912,-0.17842 -0.62574,-0.26713"
|
||||
id="path233-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 157.00737,133.54126 c 0.83038,-2.65383 3.39236,-12.78074 8.01061,-10.38556 2.24813,1.16519 0.44077,5.0186 -0.7379,6.32931 -1.66469,1.84946 -4.41951,2.82178 -6.64697,3.79012 -0.20858,0.0897 -0.41912,0.17741 -0.62574,0.26613"
|
||||
id="path235-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,139.60842 c 0.37386,1.70643 0.45159,4.26607 -1.03503,5.512 -0.96812,0.81334 -3.4691,0.54621 -2.89354,-1.27583 0.10626,-0.33491 1.27115,-0.69175 1.55942,-1.1024 0.59819,-0.8562 0.51162,-2.45498 0.56769,-3.44076 0.0778,-1.37451 -0.0462,-2.79088 0.11118,-4.15043 0.006,-0.002 0.0118,-0.004 0.0167,-0.008 0.77627,1.33763 1.33314,2.95037 1.67356,4.46541"
|
||||
id="path237-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 156.76535,127.57675 c 0.37386,-1.70792 0.45257,-4.26506 -1.03503,-5.51299 -0.96714,-0.81135 -3.47205,-0.54572 -2.89354,1.27633 0.10626,0.33441 1.27214,0.68826 1.55942,1.09991 0.59819,0.85521 0.51162,2.45397 0.56769,3.43926 0.0778,1.36952 -0.0659,2.81679 0.12102,4.1584 0.78905,-1.30273 1.34296,-2.95982 1.68044,-4.46091"
|
||||
id="path239-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 152.8476,135.15897 c -1.83786,-0.43757 -1.05568,-4.48634 1.53188,-2.44202 1.55155,1.22599 0.37879,2.11708 -1.53188,2.44202"
|
||||
id="path241-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.399078,232.48492 c -1.920007,1.0416 -3.997924,2.3244 -6.122575,2.88058 -1.934273,0.50635 -5.595715,0.018 -5.947938,-2.57159 -0.340416,-2.49883 3.148359,-3.62117 5.030487,-3.39989 2.348479,0.2761 4.810102,1.87687 6.86539,2.99222 0.05805,0.0309 0.118063,0.0668 0.174636,0.0987"
|
||||
id="path243-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.435973,232.49987 c -0.826445,2.65233 -3.390882,12.77825 -8.007655,10.38606 -2.248616,-1.16519 -0.439294,-5.02259 0.738881,-6.3343 1.661743,-1.84796 4.417049,-2.81879 6.64402,-3.78364 0.207596,-0.0907 0.417158,-0.17941 0.624754,-0.26812"
|
||||
id="path245-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,232.49189 c -0.827921,-2.65532 -3.392849,-12.78422 -8.011098,-10.38606 -2.246649,1.1672 -0.44077,5.01263 0.738881,6.32634 1.663219,1.84895 4.41754,2.82476 6.646972,3.79359 0.207104,0.0897 0.418142,0.17743 0.625245,0.26613"
|
||||
id="path247-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,238.55907 c -0.37436,1.70643 -0.451593,4.26606 1.035023,5.51199 0.967628,0.81134 3.46959,0.54422 2.893047,-1.27583 -0.10675,-0.3369 -1.269675,-0.68875 -1.55893,-1.1024 -0.598188,-0.85521 -0.5121,-2.45199 -0.56818,-3.43676 -0.07773,-1.37551 0.04674,-2.79388 -0.110685,-4.15444 -0.0059,-0.002 -0.01181,-0.004 -0.01722,-0.008 -0.774792,1.33763 -1.33215,2.95036 -1.673058,4.46541"
|
||||
id="path249-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,226.52738 c -0.375836,-1.7084 -0.454053,-4.26705 1.035023,-5.51297 0.967628,-0.80936 3.472049,-0.54622 2.893047,1.27583 -0.106258,0.3349 -1.270659,0.68775 -1.55893,1.1004 -0.598188,0.85421 -0.5121,2.45398 -0.56818,3.43876 -0.07773,1.37551 0.04674,2.79486 -0.110685,4.15443 -0.0059,0.002 -0.01181,0.005 -0.01722,0.008 -0.7743,-1.33565 -1.336578,-2.95037 -1.673058,-4.46442"
|
||||
id="path251-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,234.1136 c 1.842281,-0.45153 1.053224,-4.48434 -1.532366,-2.44601 -1.555978,1.226 -0.382722,2.11509 1.532366,2.44601"
|
||||
id="path253-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.395634,199.50071 c -1.921483,1.04358 -3.99694,2.32441 -6.122574,2.88258 -1.931813,0.50634 -5.597192,0.018 -5.944495,-2.5726 -0.335005,-2.49684 3.147867,-3.62016 5.030487,-3.39988 2.346511,0.27311 4.809611,1.87687 6.861947,2.99222 0.05854,0.0309 0.117571,0.0667 0.174635,0.0977"
|
||||
id="path255-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,199.51666 c -0.83038,2.65432 -3.391865,12.78023 -8.011098,10.38606 -2.24714,-1.16519 -0.44077,-5.0196 0.738881,-6.33032 1.664202,-1.84895 4.418033,-2.82078 6.646972,-3.78861 0.207104,-0.0907 0.418142,-0.17943 0.625245,-0.26713"
|
||||
id="path257-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.435973,199.50868 c -0.827428,-2.65532 -3.388914,-12.78023 -8.007655,-10.38606 -2.247633,1.1652 -0.439786,5.01761 0.738881,6.32932 1.662235,1.84896 4.416065,2.82277 6.64402,3.78962 0.207104,0.0897 0.41765,0.17841 0.624754,0.26712"
|
||||
id="path259-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,205.57087 c -0.375344,1.7124 -0.454053,4.26407 1.035023,5.51299 0.965661,0.81035 3.473525,0.55518 2.893047,-1.27185 -0.106258,-0.3349 -1.270659,-0.68775 -1.55893,-1.09941 -0.598188,-0.8552 -0.5121,-2.45397 -0.56818,-3.43975 -0.07773,-1.37651 0.04674,-2.79388 -0.110685,-4.15443 -0.0059,-0.002 -0.01181,-0.005 -0.01722,-0.008 -0.773317,1.33464 -1.335593,2.94738 -1.673058,4.46043"
|
||||
id="path261-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,193.54417 c -0.37436,-1.70742 -0.451593,-4.26605 1.035023,-5.51298 0.966645,-0.81035 3.475001,-0.54522 2.893047,1.27583 -0.10675,0.33391 -1.270659,0.68676 -1.55893,1.09941 -0.598681,0.8562 -0.5121,2.45398 -0.56818,3.43975 -0.07773,1.37651 0.04674,2.79388 -0.110685,4.15443 -0.0059,0.002 -0.01181,0.005 -0.01722,0.008 -0.774792,-1.33763 -1.33215,-2.94936 -1.673058,-4.46442"
|
||||
id="path263-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,201.13038 c 1.842774,-0.44953 1.051748,-4.49032 -1.532366,-2.45099 -1.557946,1.22998 -0.38223,2.11908 1.532366,2.45099"
|
||||
id="path265-0" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.399078,166.5165 c -1.91804,1.04558 -4.001859,2.32739 -6.126018,2.88257 -1.934273,0.50635 -5.592764,0.018 -5.944495,-2.57159 -0.339432,-2.49784 3.146883,-3.62515 5.030487,-3.40487 2.348971,0.27609 4.810594,1.88085 6.86539,2.9962 0.05805,0.0318 0.117571,0.0678 0.174636,0.0977"
|
||||
id="path267-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,166.53244 c -0.83038,2.65532 -3.391373,12.78024 -8.011098,10.38606 -2.24714,-1.16419 -0.44077,-5.0186 0.738881,-6.32931 1.663711,-1.84896 4.418525,-2.82078 6.646972,-3.78962 0.207104,-0.0897 0.418142,-0.17841 0.625245,-0.26713"
|
||||
id="path269-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,166.52447 c -0.83038,-2.65433 -3.391865,-12.77924 -8.011098,-10.38606 -2.247633,1.16519 -0.440278,5.0196 0.738881,6.33032 1.664202,1.84895 4.418525,2.82078 6.646972,3.78861 0.207104,0.0907 0.418142,0.17942 0.625245,0.26713"
|
||||
id="path271-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,172.59164 c -0.37436,1.70743 -0.451593,4.26606 1.035023,5.51299 0.967628,0.81134 3.472049,0.54521 2.893047,-1.27583 -0.106258,-0.3349 -1.270659,-0.68776 -1.55893,-1.1004 -0.598681,-0.85521 -0.5121,-2.45399 -0.56818,-3.43877 -0.07723,-1.36952 0.06739,-2.8178 -0.121015,-4.15841 -0.790533,1.30274 -1.341989,2.95933 -1.679945,4.46042"
|
||||
id="path273-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,160.55996 c -0.37436,-1.70643 -0.451593,-4.26606 1.035023,-5.51198 0.967628,-0.81135 3.471558,-0.54622 2.893047,1.27583 -0.106258,0.3349 -1.271151,0.68775 -1.55893,1.09941 -0.598681,0.8552 -0.5121,2.45397 -0.56818,3.43975 -0.07723,1.36953 0.06739,2.8178 -0.121015,4.15841 -0.791026,-1.30274 -1.341989,-2.96033 -1.679945,-4.46142"
|
||||
id="path275-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,168.14717 c 1.843265,-0.45053 1.051256,-4.48136 -1.532366,-2.45099 -1.560405,1.22698 -0.378294,2.11508 1.532366,2.45099"
|
||||
id="path277-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.399078,100.55007 c -1.918531,1.04309 -3.998908,2.32639 -6.122575,2.88208 -1.934273,0.50585 -5.595715,0.0174 -5.947938,-2.5721 -0.339924,-2.498831 3.148359,-3.621661 5.030487,-3.400384 2.348971,0.276596 4.80961,1.877364 6.86539,2.992224 0.05805,0.0314 0.117571,0.0673 0.174636,0.0982"
|
||||
id="path279-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.435973,100.56601 c -0.826937,2.65333 -3.390882,12.77824 -8.007655,10.38557 -2.248616,-1.1652 -0.439294,-5.02259 0.738881,-6.33381 1.661251,-1.84746 4.417049,-2.81978 6.64402,-3.78463 0.207104,-0.0902 0.41765,-0.17941 0.624754,-0.26713"
|
||||
id="path281-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,100.55804 c -0.827921,-2.655322 -3.39334,-12.784721 -8.011098,-10.386059 -2.246649,1.167186 -0.441262,5.013117 0.738881,6.325828 1.663219,1.850452 4.418033,2.824269 6.646972,3.793101 0.207104,0.0902 0.418633,0.17842 0.625245,0.26713"
|
||||
id="path283-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,106.62422 c -0.37436,1.70742 -0.451593,4.26655 1.035023,5.51348 1.026168,0.86019 3.438106,0.49987 2.869926,-1.32318 -0.0851,-0.2731 -1.331658,-0.76599 -1.59976,-1.19011 -0.562277,-0.88909 -0.463891,-2.49185 -0.514068,-3.49458 -0.06543,-1.30174 0.08166,-2.70416 -0.118063,-3.97002 -0.775284,1.33762 -1.33215,2.95035 -1.673058,4.46441"
|
||||
id="path285-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,94.593531 c -0.375344,-1.708417 -0.454053,-4.266557 1.035023,-5.512984 0.967137,-0.809355 3.472541,-0.546714 2.893047,1.275831 -0.106258,0.334906 -1.270659,0.687752 -1.55893,1.099906 -0.598188,0.854706 -0.5121,2.454479 -0.56818,3.439261 -0.07773,1.376501 0.04674,2.794367 -0.110685,4.154423 -0.0059,0.002 -0.01181,0.0045 -0.01722,0.008 -0.7743,-1.336134 -1.336578,-2.950358 -1.673058,-4.464411"
|
||||
id="path287-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,102.17974 c 1.842281,-0.45152 1.053224,-4.484345 -1.532366,-2.446504 -1.55647,1.226994 -0.38223,2.114594 1.532366,2.446504"
|
||||
id="path289-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.395634,67.566851 c -1.920499,1.04359 -3.997432,2.323407 -6.122574,2.882081 -1.931813,0.507343 -5.597192,0.01794 -5.944495,-2.572094 -0.335005,-2.497838 3.147867,-3.62017 5.030487,-3.400388 2.346511,0.273606 4.809118,1.877864 6.861947,2.991723 0.05854,0.0319 0.117571,0.06728 0.174635,0.09868"
|
||||
id="path291-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,67.582301 c -0.83038,2.654824 -3.391865,12.779737 -8.011098,10.386059 -2.24714,-1.164693 -0.440278,-5.019098 0.738881,-6.329814 1.664202,-1.848959 4.418033,-2.820783 6.646972,-3.789119 0.207104,-0.09021 0.418633,-0.178915 0.625245,-0.267126"
|
||||
id="path293-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.435973,67.574327 c -0.826937,-2.654825 -3.388914,-12.779738 -8.007655,-10.385562 -2.248125,1.164694 -0.439786,5.0186 0.738881,6.329317 1.662726,1.848957 4.416065,2.821778 6.64402,3.789616 0.207104,0.08971 0.41765,0.178417 0.624754,0.266629"
|
||||
id="path295-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,73.637015 c -0.375344,1.712404 -0.454053,4.264065 1.035023,5.512984 0.965661,0.809854 3.473525,0.555186 2.893047,-1.271844 -0.106258,-0.334905 -1.270659,-0.687752 -1.55893,-1.099906 -0.598188,-0.854706 -0.5121,-2.454479 -0.56818,-3.439261 -0.07773,-1.376501 0.04674,-2.794368 -0.110685,-4.154423 -0.0059,-0.002 -0.01181,-0.0045 -0.01722,-0.008 -0.773317,1.334639 -1.335593,2.947369 -1.673058,4.460424"
|
||||
id="path297-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,61.609818 c -0.37436,-1.707421 -0.451593,-4.266059 1.035023,-5.512486 0.966152,-0.810352 3.468606,-0.549206 2.893047,1.271844 -0.10675,0.337896 -1.269183,0.689247 -1.55893,1.103394 -0.598681,0.856202 -0.5121,2.453981 -0.56818,3.439759 -0.07773,1.376003 0.04674,2.793871 -0.110685,4.154424 -0.0063,0.002 -0.01181,0.0045 -0.01722,0.008 -0.774792,-1.337629 -1.33215,-2.950359 -1.673058,-4.46491"
|
||||
id="path299-2" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,69.196027 c 1.842281,-0.449032 1.05224,-4.489827 -1.532366,-2.449993 -1.557453,1.228983 -0.38223,2.118576 1.532366,2.449993"
|
||||
id="path301-7" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.399078,34.583138 c -1.91804,1.045583 -4.001859,2.326895 -6.126018,2.882081 -1.934273,0.505847 -5.592764,0.01694 -5.944495,-2.571596 -0.339432,-2.498336 3.146883,-3.625652 5.030487,-3.404873 2.348971,0.275599 4.810594,1.880853 6.86539,2.996208 0.05805,0.0319 0.117571,0.06678 0.174636,0.09818"
|
||||
id="path303-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,34.598587 c -0.83038,2.655323 -3.391865,12.780236 -8.011098,10.38606 -2.24714,-1.164694 -0.440278,-5.019099 0.738881,-6.329815 1.664202,-1.848958 4.418525,-2.820284 6.646972,-3.789118 0.207104,-0.08971 0.418633,-0.178417 0.625245,-0.267127"
|
||||
id="path305-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,34.591111 c -0.829888,-2.654824 -3.391865,-12.779737 -8.011098,-10.386059 -2.247633,1.164693 -0.440278,5.019098 0.738881,6.329814 1.664202,1.848959 4.418525,2.820783 6.646972,3.789119 0.207104,0.09021 0.418633,0.178915 0.625245,0.267126"
|
||||
id="path307-6" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,40.657786 c -0.37436,1.706922 -0.451593,4.26606 1.035023,5.512984 0.967628,0.811349 3.472049,0.545219 2.893047,-1.276328 -0.106258,-0.334906 -1.270659,-0.687753 -1.55893,-1.099407 -0.598681,-0.855206 -0.5121,-2.45448 -0.56818,-3.43976 -0.07723,-1.369026 0.06739,-2.817792 -0.121015,-4.157912 -0.791026,1.301746 -1.34248,2.959329 -1.679945,4.460423"
|
||||
id="path309-5" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,28.626602 c -0.37436,-1.707419 -0.451593,-4.266058 1.035023,-5.512984 0.967628,-0.811349 3.472049,-0.545716 2.893047,1.27633 -0.106258,0.334407 -1.270659,0.687253 -1.55893,1.099407 -0.598681,0.855206 -0.5121,2.453981 -0.56818,3.439759 -0.07723,1.369027 0.06739,2.817294 -0.121015,4.157913 -0.790533,-1.303242 -1.341989,-2.959329 -1.679945,-4.460425"
|
||||
id="path311-8" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,36.212812 c 1.842774,-0.450029 1.051748,-4.481355 -1.532366,-2.450492 -1.560405,1.226492 -0.378294,2.115587 1.532366,2.450492"
|
||||
id="path313-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.399078,133.53329 c -1.91804,1.04557 -4.002352,2.32739 -6.126018,2.88258 -1.934765,0.50534 -5.592764,0.0169 -5.944495,-2.5726 -0.339924,-2.49883 3.147867,-3.62116 5.030487,-3.39989 2.348971,0.2766 4.80961,1.87687 6.86539,2.99222 0.05805,0.0309 0.117571,0.0668 0.174636,0.0977"
|
||||
id="path315-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,133.54923 c -0.83038,2.65433 -3.391865,12.77924 -8.011098,10.38606 -2.24714,-1.16519 -0.440278,-5.0186 0.738881,-6.33032 1.664202,-1.84795 4.418525,-2.82078 6.646972,-3.78861 0.207104,-0.0907 0.418142,-0.17842 0.625245,-0.26713"
|
||||
id="path317-4" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.439416,133.54126 c -0.83038,-2.65483 -3.391865,-12.77974 -8.011098,-10.38556 -2.24714,1.16469 -0.440278,5.0186 0.738881,6.32931 1.664202,1.84896 4.418033,2.82128 6.646972,3.79012 0.207104,0.0897 0.418142,0.17741 0.625245,0.26613"
|
||||
id="path319-1" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,139.60842 c -0.37436,1.70743 -0.451593,4.26607 1.035023,5.512 0.968612,0.81334 3.469097,0.54621 2.893047,-1.27583 -0.106258,-0.33591 -1.270659,-0.69074 -1.55893,-1.1024 -0.598681,-0.8552 -0.5121,-2.45498 -0.56818,-3.44076 -0.07773,-1.37451 0.04674,-2.79088 -0.110685,-4.15043 -0.0059,-0.002 -0.01181,-0.004 -0.01722,-0.008 -0.774792,1.33763 -1.33215,2.95037 -1.673058,4.46541"
|
||||
id="path321-9" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 30.681446,127.57675 c -0.372884,-1.70842 -0.452577,-4.26506 1.035023,-5.51299 0.967628,-0.81135 3.472049,-0.54522 2.893047,1.27633 -0.106258,0.33441 -1.271151,0.68776 -1.55893,1.09991 -0.598681,0.85521 -0.5121,2.45397 -0.56818,3.43926 -0.07723,1.36902 0.06739,2.81779 -0.121015,4.1584 -0.789058,-1.30373 -1.341989,-2.95932 -1.679945,-4.46091"
|
||||
id="path323-3" /><path
|
||||
style="fill:#313390;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 34.599677,135.15897 c 1.837854,-0.43857 1.054208,-4.48634 -1.532366,-2.44202 -1.55155,1.22599 -0.378787,2.11708 1.532366,2.44202"
|
||||
id="path325-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 83.124248,159.22532 h 0.02705"
|
||||
id="path327-5" /><path
|
||||
style="fill:#313390;fill-opacity:1;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 85.658185,124.18034 c 1.660759,0 16.129925,-0.13904 16.129925,0.13706 v 9.99334 5.77214 c 0,0.44156 0,3.37566 0,3.37566 -1.02617,0.17071 -16.215984,-0.48573 -16.215984,0.0356 l 0.08606,-19.31377"
|
||||
id="path329-6"
|
||||
sodipodi:nodetypes="cscsccc" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 86.666151,127.71429 c 0.67247,-0.78543 1.344448,-1.57086 2.016426,-2.35579 0.335989,1.17765 0.671978,2.35579 1.007966,3.53395 -1.007966,-0.39272 -2.015933,-0.78544 -3.024392,-1.17816"
|
||||
id="path331-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 98.764704,125.3585 c 0.670994,0.78493 1.343956,1.57036 2.014946,2.35579 -1.007471,0.39272 -2.014946,0.78544 -3.024389,1.17816 0.336481,-1.17816 0.672962,-2.3563 1.009443,-3.53395"
|
||||
id="path333-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 98.827671,141.78332 c 0.671978,-0.78543 1.343959,-1.57087 2.016919,-2.3563 -1.009444,-0.39272 -2.016919,-0.78543 -3.024394,-1.17815 0.335497,1.17815 0.670994,2.3563 1.007475,3.53445"
|
||||
id="path335-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 88.682577,141.8501 c -0.671978,-0.78543 -1.343956,-1.56986 -2.016426,-2.3553 1.00846,-0.39272 2.016426,-0.78543 3.024392,-1.17815 -0.335988,1.17815 -0.671977,2.35531 -1.007966,3.53345"
|
||||
id="path337-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.997833;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 93.723395,124.18034 c -0.664599,2.32989 -1.329198,4.65928 -1.993797,6.98867 -0.247442,0.86716 -5.10772,2.06026 -6.071413,2.43504 0.963693,0.37578 5.823971,1.56788 6.071413,2.43604 0.664599,2.32839 1.329198,4.65877 1.993797,6.98816 0.66509,-2.32939 1.329197,-4.65977 1.993304,-6.98816 0.247933,-0.86816 5.108211,-2.06026 6.071411,-2.43604 -0.9632,-0.37478 -5.823478,-1.56788 -6.071411,-2.43504 -0.664107,-2.32939 -1.328214,-4.65878 -1.993304,-6.98867"
|
||||
id="path339-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.12212,127.71429 c -0.3286,1.53399 -0.65623,3.06798 -0.98484,4.60196 -0.11413,0.53476 -3.43762,1.10739 -4.05548,1.2878 0.61786,0.18141 3.94135,0.75353 4.05548,1.28779 0.32861,1.53399 0.65624,3.06798 0.98484,4.60296 0.32763,-1.53498 0.65624,-3.06897 0.98485,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28779 -0.61786,-0.18041 -3.94135,-0.75304 -4.05548,-1.2878 -0.32861,-1.53398 -0.65722,-3.06797 -0.98485,-4.60196"
|
||||
id="path341-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.1113,111.21472 c -0.32762,1.53399 -0.65624,3.06797 -0.98386,4.60245 -0.11412,0.53426 -3.43761,1.10689 -4.05646,1.28729 0.61885,0.18092 3.94234,0.75305 4.05646,1.2878 0.32762,1.53398 0.65624,3.06847 0.98386,4.60246 0.32861,-1.53399 0.65722,-3.06848 0.98584,-4.60246 0.11412,-0.53475 3.43761,-1.10688 4.05548,-1.2878 -0.61787,-0.1804 -3.94136,-0.75303 -4.05548,-1.28729 -0.32862,-1.53448 -0.65723,-3.06846 -0.98584,-4.60245"
|
||||
id="path343-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.13885,144.19444 c -0.32861,1.53399 -0.65623,3.06798 -0.98386,4.60197 -0.11512,0.53425 -3.43762,1.10738 -4.05646,1.28779 0.61787,0.1804 3.94134,0.75353 4.05646,1.28779 0.32763,1.53399 0.65525,3.06797 0.98386,4.60295 0.32862,-1.53498 0.65722,-3.06896 0.98484,-4.60295 0.11512,-0.53426 3.43861,-1.10739 4.05647,-1.28779 -0.61786,-0.18041 -3.94135,-0.75354 -4.05647,-1.28779 -0.32762,-1.53399 -0.65622,-3.06798 -0.98484,-4.60197"
|
||||
id="path345-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 129.00764,127.71429 c -0.32763,1.53399 -0.65624,3.06798 -0.98484,4.60196 -0.11413,0.53476 -3.43762,1.10739 -4.05548,1.2878 0.61786,0.18141 3.94135,0.75353 4.05548,1.28779 0.3286,1.53399 0.65721,3.06798 0.98484,4.60296 0.32861,-1.53498 0.65623,-3.06897 0.98485,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28779 -0.61786,-0.18041 -3.94135,-0.75304 -4.05548,-1.2878 -0.32862,-1.53398 -0.65624,-3.06797 -0.98485,-4.60196"
|
||||
id="path347-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.9978,111.21472 c -0.32762,1.53399 -0.65624,3.06797 -0.98485,4.60245 -0.11412,0.53426 -3.43761,1.10689 -4.05548,1.28729 0.61787,0.18092 3.94136,0.75305 4.05548,1.2878 0.32861,1.53398 0.65723,3.06847 0.98485,4.60246 0.32861,-1.53399 0.65624,-3.06848 0.98485,-4.60246 0.11412,-0.53475 3.43761,-1.10688 4.05548,-1.2878 -0.61787,-0.1804 -3.94136,-0.75303 -4.05548,-1.28729 -0.32861,-1.53448 -0.65624,-3.06846 -0.98485,-4.60245"
|
||||
id="path349-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 129.02437,144.19444 c -0.32763,1.53399 -0.65525,3.06798 -0.98386,4.60197 -0.11413,0.53425 -3.43762,1.10738 -4.05647,1.28779 0.61885,0.1804 3.94234,0.75353 4.05647,1.28779 0.32861,1.53399 0.65623,3.06797 0.98386,4.60295 0.32861,-1.53498 0.65721,-3.06896 0.98582,-4.60295 0.11414,-0.53426 3.43762,-1.10739 4.05549,-1.28779 -0.61787,-0.18041 -3.94135,-0.75354 -4.05549,-1.28779 -0.32861,-1.53399 -0.65721,-3.06798 -0.98582,-4.60197"
|
||||
id="path351-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,176.01147 c -0.32762,1.53399 -0.65525,3.06797 -0.983859,4.60296 -0.114128,0.53425 -3.437614,1.10638 -4.055479,1.28679 0.617865,0.18042 3.941351,0.75354 4.055479,1.28879 0.328609,1.53299 0.656239,3.06797 0.983859,4.60097 0.32861,-1.533 0.65722,-3.06798 0.98583,-4.60097 0.11413,-0.53525 3.43762,-1.10837 4.05548,-1.28879 -0.61786,-0.18041 -3.94135,-0.75254 -4.05548,-1.28679 -0.32861,-1.53499 -0.65722,-3.06897 -0.98583,-4.60296"
|
||||
id="path353-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,176.01147 c -0.328118,1.53399 -0.656235,3.06797 -0.984354,4.60296 -0.114619,0.53425 -3.438106,1.10638 -4.056463,1.28679 0.618357,0.18042 3.941844,0.75354 4.056463,1.28879 0.328119,1.53299 0.656236,3.06797 0.984354,4.60097 0.328611,-1.533 0.656728,-3.06798 0.984846,-4.60097 0.114621,-0.53525 3.438107,-1.10837 4.055972,-1.28879 -0.617865,-0.18041 -3.941352,-0.75254 -4.055972,-1.28679 -0.328118,-1.53499 -0.656235,-3.06897 -0.984846,-4.60296"
|
||||
id="path355-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8843,175.98356 c -0.32861,1.53498 -0.65722,3.06897 -0.98485,4.60296 -0.11413,0.53425 -3.43859,1.10639 -4.05646,1.28779 0.61787,0.18041 3.94233,0.75353 4.05646,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60196 0.32861,-1.53398 0.65624,-3.06797 0.98387,-4.60196 0.1151,-0.53426 3.4376,-1.10738 4.05645,-1.28779 -0.61885,-0.1814 -3.94135,-0.75354 -4.05645,-1.28779 -0.32763,-1.53399 -0.65526,-3.06798 -0.98387,-4.60296"
|
||||
id="path357-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.592496,176.02742 c -0.328118,1.53399 -0.656237,3.06797 -0.984354,4.60195 -0.114128,0.53526 -3.437615,1.10739 -4.055972,1.2878 0.618357,0.18041 3.941844,0.75254 4.055972,1.28779 0.328117,1.53399 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06797 0.985338,-4.60196 0.114128,-0.53525 3.437614,-1.10738 4.055479,-1.28779 -0.617865,-0.18041 -3.941351,-0.75254 -4.055479,-1.2878 -0.32861,-1.53398 -0.656729,-3.06796 -0.985338,-4.60195"
|
||||
id="path359-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.09163,176.00748 c -0.32861,1.53498 -0.65624,3.06797 -0.98386,4.60296 -0.11512,0.53426 -3.4386,1.10638 -4.05746,1.28779 0.61886,0.17941 3.94234,0.75254 4.05746,1.2878 0.32762,1.53298 0.65525,3.06797 0.98386,4.60096 0.32861,-1.53299 0.65624,-3.06798 0.98484,-4.60096 0.11413,-0.53526 3.43762,-1.10839 4.05647,-1.2878 -0.61885,-0.18141 -3.94234,-0.75353 -4.05647,-1.28779 -0.3286,-1.53499 -0.65623,-3.06798 -0.98484,-4.60296"
|
||||
id="path361-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.97714,176.00748 c -0.32762,1.53498 -0.65623,3.06797 -0.98386,4.60296 -0.11512,0.53426 -3.43762,1.10638 -4.05647,1.28779 0.61885,0.17941 3.94135,0.75254 4.05647,1.2878 0.32763,1.53298 0.65624,3.06797 0.98386,4.60096 0.32862,-1.53299 0.65722,-3.06798 0.98583,-4.60096 0.11413,-0.53526 3.43762,-1.10839 4.05548,-1.2878 -0.61786,-0.18141 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.65721,-3.06798 -0.98583,-4.60296"
|
||||
id="path363-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,192.50357 c -0.32762,1.53399 -0.65525,3.06798 -0.983859,4.60196 -0.114128,0.53426 -3.437614,1.10738 -4.055479,1.2878 0.617865,0.18041 3.941351,0.75254 4.055479,1.28779 0.328609,1.53399 0.656239,3.06797 0.983859,4.60196 0.32861,-1.53399 0.65722,-3.06797 0.98583,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05548,-1.28779 -0.61786,-0.18042 -3.94135,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.65722,-3.06797 -0.98583,-4.60196"
|
||||
id="path365-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,192.50357 c -0.328118,1.53399 -0.656235,3.06798 -0.984354,4.60196 -0.114619,0.53426 -3.438106,1.10738 -4.056463,1.2878 0.618357,0.18041 3.941844,0.75254 4.056463,1.28779 0.328119,1.53399 0.656236,3.06797 0.984354,4.60196 0.328611,-1.53399 0.656728,-3.06797 0.984846,-4.60196 0.114621,-0.53525 3.438107,-1.10738 4.055972,-1.28779 -0.617865,-0.18042 -3.941352,-0.75354 -4.055972,-1.2878 -0.328118,-1.53398 -0.656235,-3.06797 -0.984846,-4.60196"
|
||||
id="path367-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8843,192.47567 c -0.32861,1.53398 -0.65722,3.06797 -0.98485,4.60296 -0.11413,0.53424 -3.43859,1.10638 -4.05646,1.28778 0.61787,0.17942 3.94233,0.75255 4.05646,1.28779 0.32763,1.533 0.65624,3.06798 0.98485,4.60098 0.32861,-1.533 0.65624,-3.06798 0.98387,-4.60098 0.1151,-0.53524 3.4376,-1.10837 4.05645,-1.28779 -0.61885,-0.1814 -3.94135,-0.75354 -4.05645,-1.28778 -0.32763,-1.53499 -0.65526,-3.06898 -0.98387,-4.60296"
|
||||
id="path369-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.592496,192.51952 c -0.328118,1.53399 -0.656237,3.06798 -0.984354,4.60197 -0.114128,0.53425 -3.437615,1.10738 -4.055972,1.28779 0.618357,0.1804 3.941844,0.75253 4.055972,1.28779 0.328117,1.53398 0.656236,3.06797 0.984354,4.60195 0.32861,-1.53398 0.656728,-3.06797 0.985338,-4.60195 0.114128,-0.53526 3.437614,-1.10739 4.055479,-1.28779 -0.617865,-0.18041 -3.941351,-0.75354 -4.055479,-1.28779 -0.32861,-1.53399 -0.656729,-3.06798 -0.985338,-4.60197"
|
||||
id="path371-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.09163,192.49959 c -0.32861,1.53399 -0.65624,3.06797 -0.98386,4.60196 -0.11512,0.53525 -3.4386,1.10738 -4.05746,1.2878 0.61886,0.1804 3.94234,0.75353 4.05746,1.28778 0.32762,1.53399 0.65525,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65624,-3.06797 0.98484,-4.60196 0.11413,-0.53425 3.43762,-1.10738 4.05647,-1.28778 -0.61885,-0.18042 -3.94234,-0.75255 -4.05647,-1.2878 -0.3286,-1.53399 -0.65623,-3.06797 -0.98484,-4.60196"
|
||||
id="path373-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.97714,192.49959 c -0.32762,1.53399 -0.65623,3.06797 -0.98386,4.60196 -0.11512,0.53525 -3.43762,1.10738 -4.05647,1.2878 0.61885,0.1804 3.94135,0.75353 4.05647,1.28778 0.32763,1.53399 0.65624,3.06797 0.98386,4.60196 0.32862,-1.53399 0.65722,-3.06797 0.98583,-4.60196 0.11413,-0.53425 3.43762,-1.10738 4.05548,-1.28778 -0.61786,-0.18042 -3.94135,-0.75255 -4.05548,-1.2878 -0.32861,-1.53399 -0.65721,-3.06797 -0.98583,-4.60196"
|
||||
id="path375-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,208.99568 c -0.32762,1.53299 -0.65525,3.06798 -0.983859,4.60197 -0.114128,0.53424 -3.437614,1.10738 -4.055479,1.28679 0.617865,0.1814 3.941351,0.75353 4.055479,1.28779 0.328609,1.53498 0.656239,3.06798 0.983859,4.60295 0.32861,-1.53497 0.65722,-3.06797 0.98583,-4.60295 0.11413,-0.53426 3.43762,-1.10639 4.05548,-1.28779 -0.61786,-0.17941 -3.94135,-0.75255 -4.05548,-1.28679 -0.32861,-1.53399 -0.65722,-3.06898 -0.98583,-4.60197"
|
||||
id="path377-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,208.99568 c -0.328118,1.53299 -0.656235,3.06798 -0.984354,4.60197 -0.114619,0.53424 -3.438106,1.10738 -4.056463,1.28679 0.618357,0.1814 3.941844,0.75353 4.056463,1.28779 0.328119,1.53498 0.656236,3.06798 0.984354,4.60295 0.328611,-1.53497 0.656728,-3.06797 0.984846,-4.60295 0.114621,-0.53426 3.438107,-1.10639 4.055972,-1.28779 -0.617865,-0.17941 -3.941352,-0.75255 -4.055972,-1.28679 -0.328118,-1.53399 -0.656235,-3.06898 -0.984846,-4.60197"
|
||||
id="path379-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8843,208.96777 c -0.32861,1.53399 -0.65722,3.06797 -0.98485,4.60296 -0.11413,0.53426 -3.43859,1.10638 -4.05646,1.28679 0.61787,0.18042 3.94233,0.75255 4.05646,1.2878 0.32763,1.53398 0.65624,3.06797 0.98485,4.60196 0.32861,-1.53399 0.65624,-3.06798 0.98387,-4.60196 0.1151,-0.53525 3.4376,-1.10738 4.05645,-1.2878 -0.61885,-0.18041 -3.94135,-0.75253 -4.05645,-1.28679 -0.32763,-1.53499 -0.65526,-3.06897 -0.98387,-4.60296"
|
||||
id="path381-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.592496,209.01163 c -0.328118,1.53298 -0.656237,3.06797 -0.984354,4.60096 -0.114128,0.53425 -3.437615,1.10739 -4.055972,1.28779 0.618357,0.18141 3.941844,0.75354 4.055972,1.28779 0.328117,1.53499 0.656236,3.06798 0.984354,4.60297 0.32861,-1.53499 0.656728,-3.06798 0.985338,-4.60297 0.114128,-0.53425 3.437614,-1.10638 4.055479,-1.28779 -0.617865,-0.1804 -3.941351,-0.75354 -4.055479,-1.28779 -0.32861,-1.53299 -0.656729,-3.06798 -0.985338,-4.60096"
|
||||
id="path383-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.09163,208.99169 c -0.32861,1.53299 -0.65624,3.06798 -0.98386,4.60196 -0.11512,0.53426 -3.4386,1.10739 -4.05746,1.2878 0.61886,0.18041 3.94234,0.75253 4.05746,1.28679 0.32762,1.53499 0.65525,3.06798 0.98386,4.60296 0.32861,-1.53498 0.65624,-3.06797 0.98484,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05647,-1.28679 -0.61885,-0.18041 -3.94234,-0.75354 -4.05647,-1.2878 -0.3286,-1.53398 -0.65623,-3.06897 -0.98484,-4.60196"
|
||||
id="path385-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.97714,208.99169 c -0.32762,1.53299 -0.65623,3.06798 -0.98386,4.60196 -0.11512,0.53426 -3.43762,1.10739 -4.05647,1.2878 0.61885,0.18041 3.94135,0.75253 4.05647,1.28679 0.32763,1.53499 0.65624,3.06798 0.98386,4.60296 0.32862,-1.53498 0.65722,-3.06797 0.98583,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28679 -0.61786,-0.18041 -3.94135,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.65721,-3.06897 -0.98583,-4.60196"
|
||||
id="path387-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,160.69751 c -0.32762,1.53499 -0.65525,3.06797 -0.983859,4.60296 -0.114128,0.53426 -3.437614,1.10638 -4.055479,1.28779 0.617865,0.18042 3.941351,0.75254 4.055479,1.2878 0.328609,1.53298 0.656239,3.06797 0.983859,4.60096 0.32861,-1.53299 0.65722,-3.06798 0.98583,-4.60096 0.11413,-0.53526 3.43762,-1.10838 4.05548,-1.2878 -0.61786,-0.18141 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.65722,-3.06797 -0.98583,-4.60296"
|
||||
id="path389-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,160.69751 c -0.328118,1.53499 -0.656235,3.06797 -0.984354,4.60296 -0.114619,0.53426 -3.438106,1.10638 -4.056463,1.28779 0.618357,0.17942 3.941844,0.75254 4.056463,1.2878 0.328119,1.53298 0.656236,3.06797 0.984354,4.60096 0.328611,-1.53299 0.656728,-3.06798 0.984846,-4.60096 0.114621,-0.53526 3.438107,-1.10838 4.055972,-1.2878 -0.617865,-0.18141 -3.941352,-0.75353 -4.055972,-1.28779 -0.328118,-1.53499 -0.656235,-3.06797 -0.984846,-4.60296"
|
||||
id="path391-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8843,160.6706 c -0.32861,1.53399 -0.65722,3.06798 -0.98485,4.60197 -0.11413,0.53424 -3.43859,1.10738 -4.05646,1.28778 0.61787,0.18041 3.94233,0.75354 4.05646,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60196 0.32861,-1.53398 0.65624,-3.06797 0.98387,-4.60196 0.1151,-0.53425 3.4376,-1.10738 4.05645,-1.28779 -0.61885,-0.1804 -3.94135,-0.75354 -4.05645,-1.28778 -0.32763,-1.53399 -0.65526,-3.06798 -0.98387,-4.60197"
|
||||
id="path393-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.592496,160.71346 c -0.328118,1.53399 -0.656237,3.06798 -0.984354,4.60295 -0.114128,0.53426 -3.437615,1.10639 -4.055972,1.28681 0.618357,0.1804 3.941844,0.75353 4.055972,1.28878 0.328117,1.533 0.656236,3.06797 0.984354,4.60096 0.32861,-1.53299 0.656728,-3.06796 0.985338,-4.60096 0.114128,-0.53525 3.437614,-1.10838 4.055479,-1.28878 -0.617865,-0.18042 -3.941351,-0.75255 -4.055479,-1.28681 -0.32861,-1.53497 -0.656729,-3.06896 -0.985338,-4.60295"
|
||||
id="path395-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.09163,160.69353 c -0.32861,1.53497 -0.65624,3.06797 -0.98386,4.60295 -0.11512,0.53426 -3.4386,1.10639 -4.05746,1.28779 0.61886,0.18042 3.94234,0.75255 4.05746,1.2878 0.32762,1.53298 0.65525,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65624,-3.06898 0.98484,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05647,-1.2878 -0.61885,-0.1814 -3.94234,-0.75353 -4.05647,-1.28779 -0.3286,-1.53498 -0.65623,-3.06798 -0.98484,-4.60295"
|
||||
id="path397-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.97714,160.69353 c -0.32762,1.53497 -0.65623,3.06797 -0.98386,4.60295 -0.11512,0.53426 -3.43762,1.10639 -4.05647,1.28779 0.61885,0.18042 3.94135,0.75255 4.05647,1.2878 0.32763,1.53298 0.65624,3.06797 0.98386,4.60196 0.32862,-1.53399 0.65722,-3.06898 0.98583,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05548,-1.2878 -0.61786,-0.1814 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53498 -0.65721,-3.06798 -0.98583,-4.60295"
|
||||
id="path399-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,94.731082 c -0.328118,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114619,0.534753 -3.438106,1.107377 -4.056463,1.287797 0.618357,0.18041 3.941844,0.75303 4.056463,1.28779 0.328119,1.53398 0.656236,3.06797 0.984354,4.60196 0.328611,-1.53399 0.656728,-3.06798 0.984846,-4.60196 0.114621,-0.53476 3.438107,-1.10738 4.055972,-1.28779 -0.617865,-0.18042 -3.941352,-0.753044 -4.055972,-1.287797 -0.328118,-1.533987 -0.656235,-3.067974 -0.984846,-4.601961"
|
||||
id="path401-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.552158,94.731082 c -0.328118,1.533987 -0.656237,3.067974 -0.984354,4.601961 -0.114128,0.534753 -3.438107,1.107377 -4.056464,1.287797 0.618357,0.18041 3.942335,0.75303 4.056464,1.28779 0.328117,1.53398 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656727,-3.06798 0.984846,-4.60196 0.114619,-0.53476 3.438105,-1.10738 4.055971,-1.28779 -0.617866,-0.18042 -3.941352,-0.753044 -4.055971,-1.287797 -0.328119,-1.533987 -0.656237,-3.067974 -0.984846,-4.601961"
|
||||
id="path403-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8902,94.731082 c -0.32762,1.533987 -0.65525,3.067974 -0.98386,4.601961 -0.11412,0.534753 -3.43761,1.107377 -4.05646,1.287797 0.61885,0.18041 3.94234,0.75303 4.05646,1.28779 0.32861,1.53398 0.65624,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65723,-3.06798 0.98584,-4.60196 0.11412,-0.53476 3.43761,-1.10738 4.05547,-1.28779 -0.61786,-0.18042 -3.94135,-0.753044 -4.05547,-1.287797 -0.32861,-1.533987 -0.65723,-3.067974 -0.98584,-4.601961"
|
||||
id="path405-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77375,94.731082 c -0.32861,1.533987 -0.65722,3.067974 -0.984845,4.601961 -0.114129,0.534753 -3.437615,1.107377 -4.056465,1.287797 0.61885,0.18041 3.942336,0.75303 4.056465,1.28779 0.327625,1.53398 0.656235,3.06797 0.984845,4.60196 0.32861,-1.53399 0.65624,-3.06798 0.98485,-4.60196 0.11412,-0.53476 3.43761,-1.10738 4.05548,-1.28779 -0.61787,-0.18042 -3.94136,-0.753044 -4.05548,-1.287797 -0.32861,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path407-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.559537,78.227513 c -0.328119,1.533988 -0.656729,3.067975 -0.984846,4.601962 -0.114621,0.534752 -3.437615,1.107381 -4.055972,1.287792 0.618357,0.180908 3.941843,0.753039 4.055972,1.287791 0.328117,1.533987 0.656727,3.067974 0.984846,4.60246 0.328117,-1.534486 0.656236,-3.068473 0.984846,-4.60246 0.114127,-0.534752 3.437613,-1.106883 4.055479,-1.287791 -0.617866,-0.180411 -3.941352,-0.75304 -4.055479,-1.287792 -0.32861,-1.533987 -0.656729,-3.067974 -0.984846,-4.601962"
|
||||
id="path409-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,78.238976 c -0.328118,1.533987 -0.656235,3.068472 -0.984354,4.60246 -0.114619,0.534752 -3.438106,1.106883 -4.056463,1.287792 0.618357,0.180409 3.941844,0.753039 4.056463,1.287791 0.328119,1.533987 0.656236,3.067974 0.984354,4.601962 0.328611,-1.533988 0.656728,-3.067975 0.984846,-4.601962 0.114621,-0.534752 3.438107,-1.107381 4.055972,-1.287791 -0.617865,-0.180909 -3.941352,-0.75304 -4.055972,-1.287792 -0.328118,-1.533988 -0.656235,-3.068473 -0.984846,-4.60246"
|
||||
id="path411-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,78.238976 c -0.32762,1.533987 -0.65525,3.068472 -0.983859,4.60246 -0.114128,0.534752 -3.437614,1.106883 -4.055479,1.287792 0.617865,0.180409 3.941351,0.753039 4.055479,1.287791 0.328609,1.533987 0.656239,3.067974 0.983859,4.601962 0.32861,-1.533988 0.65722,-3.067975 0.98583,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.65722,-3.068473 -0.98583,-4.60246"
|
||||
id="path413-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.89414,78.238976 c -0.32861,1.533987 -0.65723,3.068472 -0.98485,4.60246 -0.11412,0.534752 -3.43761,1.106883 -4.05646,1.287792 0.61885,0.180409 3.94234,0.753039 4.05646,1.287791 0.32762,1.533987 0.65624,3.067974 0.98485,4.601962 0.32861,-1.533988 0.65624,-3.067975 0.98485,-4.601962 0.11412,-0.534752 3.43761,-1.107381 4.05645,-1.287791 -0.61884,-0.180909 -3.94233,-0.75304 -4.05645,-1.287792 -0.32861,-1.533988 -0.65624,-3.068473 -0.98485,-4.60246"
|
||||
id="path415-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.10835,94.711147 c -0.32762,1.533987 -0.65624,3.067974 -0.98485,4.60246 -0.11412,0.534752 -3.43761,1.106883 -4.05547,1.287293 0.61786,0.18091 3.94135,0.75354 4.05547,1.28779 0.32861,1.53399 0.65723,3.06798 0.98485,4.60246 0.32763,-1.53448 0.65624,-3.06847 0.98485,-4.60246 0.11413,-0.53425 3.43761,-1.10688 4.05548,-1.28779 -0.61787,-0.18041 -3.94135,-0.752541 -4.05548,-1.287293 -0.32861,-1.534486 -0.65722,-3.068473 -0.98485,-4.60246"
|
||||
id="path417-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.12212,78.238976 c -0.3286,1.533987 -0.65623,3.068472 -0.98484,4.60246 -0.11413,0.534752 -3.43762,1.106883 -4.05548,1.287792 0.61786,0.180409 3.94135,0.753039 4.05548,1.287791 0.32861,1.533987 0.65624,3.067974 0.98484,4.601962 0.32763,-1.533988 0.65624,-3.067975 0.98485,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.65722,-3.068473 -0.98485,-4.60246"
|
||||
id="path419-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.99485,94.711147 c -0.32861,1.533987 -0.65722,3.067974 -0.98485,4.60246 -0.11413,0.534752 -3.43761,1.106883 -4.05645,1.287293 0.61884,0.18091 3.94232,0.75354 4.05645,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60246 0.32861,-1.53448 0.65624,-3.06847 0.98386,-4.60246 0.11511,-0.53425 3.4386,-1.10688 4.05646,-1.28779 -0.61786,-0.18041 -3.94135,-0.752541 -4.05646,-1.287293 -0.32762,-1.534486 -0.65525,-3.068473 -0.98386,-4.60246"
|
||||
id="path421-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 129.00764,78.238976 c -0.32763,1.533987 -0.65624,3.068472 -0.98484,4.60246 -0.11413,0.534752 -3.43762,1.106883 -4.05548,1.287792 0.61786,0.180409 3.94135,0.753039 4.05548,1.287791 0.3286,1.533987 0.65721,3.067974 0.98484,4.601962 0.32861,-1.533988 0.65623,-3.067975 0.98485,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32862,-1.533988 -0.65624,-3.068473 -0.98485,-4.60246"
|
||||
id="path423-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,61.747369 c -0.328118,1.533986 -0.656235,3.067974 -0.984354,4.602459 -0.114619,0.534255 -3.438106,1.106883 -4.056463,1.287792 0.618357,0.180411 3.941844,0.752541 4.056463,1.287293 0.328119,1.533987 0.656236,3.068473 0.984354,4.60246 0.328611,-1.533987 0.656728,-3.068473 0.984846,-4.60246 0.114621,-0.534752 3.438107,-1.106882 4.055972,-1.287293 -0.617865,-0.180909 -3.941352,-0.753537 -4.055972,-1.287792 -0.328118,-1.534485 -0.656235,-3.068473 -0.984846,-4.602459"
|
||||
id="path425-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.552158,61.747369 c -0.328118,1.533986 -0.656237,3.067974 -0.984354,4.602459 -0.114128,0.534255 -3.438107,1.106883 -4.056464,1.287792 0.618357,0.180411 3.942335,0.752541 4.056464,1.287293 0.328117,1.533987 0.656236,3.068473 0.984354,4.60246 0.32861,-1.533987 0.656727,-3.068473 0.984846,-4.60246 0.114619,-0.534752 3.438105,-1.106882 4.055971,-1.287293 -0.617866,-0.180909 -3.941352,-0.753537 -4.055971,-1.287792 -0.328119,-1.534485 -0.656237,-3.068473 -0.984846,-4.602459"
|
||||
id="path427-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.8902,61.747369 c -0.32762,1.533986 -0.65525,3.067974 -0.98386,4.602459 -0.11412,0.534255 -3.43761,1.106883 -4.05646,1.287792 0.61885,0.180411 3.94234,0.752541 4.05646,1.287293 0.32861,1.533987 0.65624,3.068473 0.98386,4.60246 0.32861,-1.533987 0.65723,-3.068473 0.98584,-4.60246 0.11412,-0.534752 3.43761,-1.106882 4.05547,-1.287293 -0.61786,-0.180909 -3.94135,-0.753537 -4.05547,-1.287792 -0.32861,-1.534485 -0.65723,-3.068473 -0.98584,-4.602459"
|
||||
id="path429-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77375,61.747369 c -0.32861,1.533986 -0.65722,3.067974 -0.984845,4.602459 -0.114129,0.534255 -3.437615,1.106883 -4.056465,1.287792 0.61885,0.180411 3.942336,0.752541 4.056465,1.287293 0.327625,1.533987 0.656235,3.068473 0.984845,4.60246 0.32861,-1.533987 0.65624,-3.068473 0.98485,-4.60246 0.11412,-0.534752 3.43761,-1.106882 4.05548,-1.287293 -0.61787,-0.180909 -3.94136,-0.753537 -4.05548,-1.287792 -0.32861,-1.534485 -0.65624,-3.068473 -0.98485,-4.602459"
|
||||
id="path431-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 72.559537,45.2438 c -0.328119,1.533987 -0.656729,3.067975 -0.984846,4.601961 -0.114129,0.534753 -3.437615,1.107381 -4.055972,1.287792 0.618357,0.180909 3.941351,0.753537 4.055972,1.287792 0.328117,1.533987 0.656727,3.067974 0.984846,4.601961 0.328117,-1.533987 0.656236,-3.067974 0.984846,-4.601961 0.114127,-0.534255 3.437613,-1.106883 4.055479,-1.287792 -0.617866,-0.180411 -3.941352,-0.753039 -4.055479,-1.287792 -0.32861,-1.533986 -0.656729,-3.067974 -0.984846,-4.601961"
|
||||
id="path433-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 86.666151,45.255761 c -0.328118,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114619,0.534753 -3.438106,1.107382 -4.056463,1.287792 0.618357,0.180411 3.941844,0.753039 4.056463,1.287792 0.328119,1.533987 0.656236,3.067974 0.984354,4.601961 0.328611,-1.533987 0.656728,-3.067974 0.984846,-4.601961 0.114621,-0.534753 3.438107,-1.107381 4.055972,-1.287792 -0.617865,-0.18041 -3.941352,-0.753039 -4.055972,-1.287792 -0.328118,-1.533987 -0.656235,-3.067974 -0.984846,-4.601961"
|
||||
id="path435-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 100.77965,45.255761 c -0.32762,1.533987 -0.65525,3.067974 -0.983859,4.601961 -0.114128,0.534753 -3.437614,1.107382 -4.055479,1.287792 0.617865,0.180411 3.941351,0.753039 4.055479,1.287792 0.328609,1.533987 0.656239,3.067974 0.983859,4.601961 0.32861,-1.533987 0.65722,-3.067974 0.98583,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067974 -0.98583,-4.601961"
|
||||
id="path437-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 114.89414,45.255761 c -0.32861,1.533987 -0.65723,3.067974 -0.98485,4.601961 -0.11412,0.534753 -3.43761,1.107382 -4.05646,1.287792 0.61885,0.180411 3.94234,0.753039 4.05646,1.287792 0.32762,1.533987 0.65624,3.067974 0.98485,4.601961 0.32861,-1.533987 0.65624,-3.067974 0.98485,-4.601961 0.11412,-0.534753 3.43761,-1.107381 4.05645,-1.287792 -0.61884,-0.18041 -3.94233,-0.753039 -4.05645,-1.287792 -0.32861,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path439-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.10835,61.727932 c -0.32762,1.533988 -0.65624,3.067974 -0.98485,4.601961 -0.11412,0.534753 -3.43761,1.107382 -4.05547,1.287792 0.61786,0.18041 3.94135,0.75304 4.05547,1.287791 0.32861,1.533988 0.65723,3.067975 0.98485,4.601963 0.32763,-1.533988 0.65624,-3.067975 0.98485,-4.601963 0.11413,-0.534751 3.43761,-1.10738 4.05548,-1.287791 -0.61787,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067973 -0.98485,-4.601961"
|
||||
id="path441-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 143.12212,45.255761 c -0.3286,1.533987 -0.65623,3.067974 -0.98484,4.601961 -0.11413,0.534753 -3.43762,1.107382 -4.05548,1.287792 0.61786,0.180411 3.94135,0.753039 4.05548,1.287792 0.32861,1.533987 0.65624,3.067974 0.98484,4.601961 0.32763,-1.533987 0.65624,-3.067974 0.98485,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067974 -0.98485,-4.601961"
|
||||
id="path443-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 128.99485,61.727932 c -0.32861,1.533988 -0.65722,3.067974 -0.98485,4.601961 -0.11413,0.534753 -3.43761,1.107382 -4.05645,1.287792 0.61884,0.18041 3.94232,0.75304 4.05645,1.287791 0.32763,1.533988 0.65624,3.067975 0.98485,4.601963 0.32861,-1.533988 0.65624,-3.067975 0.98386,-4.601963 0.11511,-0.534751 3.4386,-1.10738 4.05646,-1.287791 -0.61786,-0.18041 -3.94135,-0.753039 -4.05646,-1.287792 -0.32762,-1.533987 -0.65525,-3.067973 -0.98386,-4.601961"
|
||||
id="path445" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 129.00764,45.255761 c -0.32763,1.533987 -0.65624,3.067974 -0.98484,4.601961 -0.11413,0.534753 -3.43762,1.107382 -4.05548,1.287792 0.61786,0.180411 3.94135,0.753039 4.05548,1.287792 0.3286,1.533987 0.65721,3.067974 0.98484,4.601961 0.32861,-1.533987 0.65623,-3.067974 0.98485,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32862,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path447" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.314331,144.22136 c -0.328118,1.53498 -0.656236,3.06797 -0.984354,4.60295 -0.114128,0.53426 -3.437614,1.10639 -4.055971,1.28779 0.618357,0.18042 3.941843,0.75255 4.055971,1.2878 0.328118,1.53298 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06898 0.984846,-4.60196 0.11462,-0.53525 3.438106,-1.10738 4.055971,-1.2878 -0.617865,-0.1814 -3.941351,-0.75353 -4.055971,-1.28779 -0.328118,-1.53498 -0.656236,-3.06797 -0.984846,-4.60295"
|
||||
id="path449" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.341388,127.73822 c -0.328119,1.53398 -0.656237,3.06797 -0.984355,4.60196 -0.114127,0.53426 -3.437614,1.10639 -4.055971,1.28779 0.618356,0.18041 3.941844,0.75354 4.055971,1.2878 0.328118,1.53398 0.656236,3.06797 0.984355,4.60196 0.32861,-1.53399 0.656727,-3.06798 0.985337,-4.60196 0.114128,-0.53426 3.437614,-1.10739 4.05548,-1.2878 -0.617866,-0.1814 -3.941352,-0.75353 -4.05548,-1.28779 -0.32861,-1.53399 -0.656728,-3.06798 -0.985337,-4.60196"
|
||||
id="path451" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.358113,111.2187 c -0.328118,1.53399 -0.656236,3.06847 -0.984354,4.60246 -0.11462,0.53426 -3.437614,1.10688 -4.055971,1.28779 0.618357,0.18042 3.941351,0.75304 4.055971,1.2878 0.328118,1.53398 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06798 0.985338,-4.60196 0.114128,-0.53476 3.437614,-1.10738 4.055479,-1.2878 -0.617865,-0.18091 -3.941351,-0.75353 -4.055479,-1.28779 -0.32861,-1.53399 -0.656728,-3.06847 -0.985338,-4.60246"
|
||||
id="path453" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,176.01147 c -0.328117,1.53399 -0.656235,3.06797 -0.984354,4.60296 -0.114128,0.53425 -3.438105,1.10638 -4.056463,1.28679 0.618358,0.18042 3.942335,0.75354 4.056463,1.28879 0.328119,1.53299 0.656237,3.06797 0.984354,4.60097 0.328119,-1.533 0.656236,-3.06798 0.984846,-4.60097 0.114129,-0.53525 3.437615,-1.10837 4.05548,-1.28879 -0.617865,-0.18041 -3.941351,-0.75254 -4.05548,-1.28679 -0.32861,-1.53499 -0.656727,-3.06897 -0.984846,-4.60296"
|
||||
id="path455" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,192.50357 c -0.328117,1.53399 -0.656235,3.06798 -0.984354,4.60196 -0.114128,0.53426 -3.438105,1.10738 -4.056463,1.2878 0.618358,0.18041 3.942335,0.75254 4.056463,1.28779 0.328119,1.53399 0.656237,3.06797 0.984354,4.60196 0.328119,-1.53399 0.656236,-3.06797 0.984846,-4.60196 0.114129,-0.53525 3.437615,-1.10738 4.05548,-1.28779 -0.617865,-0.18042 -3.941351,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.656727,-3.06797 -0.984846,-4.60196"
|
||||
id="path457" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,208.99568 c -0.328117,1.53299 -0.656235,3.06798 -0.984354,4.60197 -0.114128,0.53424 -3.438105,1.10738 -4.056463,1.28679 0.618358,0.1814 3.942335,0.75353 4.056463,1.28779 0.328119,1.53498 0.656237,3.06798 0.984354,4.60295 0.328119,-1.53497 0.656236,-3.06797 0.984846,-4.60295 0.114129,-0.53426 3.437615,-1.10639 4.05548,-1.28779 -0.617865,-0.17941 -3.941351,-0.75255 -4.05548,-1.28679 -0.32861,-1.53399 -0.656727,-3.06898 -0.984846,-4.60197"
|
||||
id="path459" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,160.69751 c -0.328117,1.53499 -0.656235,3.06797 -0.984354,4.60296 -0.114128,0.53426 -3.438105,1.10638 -4.056463,1.28779 0.618358,0.17942 3.942335,0.75254 4.056463,1.2878 0.328119,1.53298 0.656237,3.06797 0.984354,4.60096 0.328119,-1.53299 0.656236,-3.06798 0.984846,-4.60096 0.114129,-0.53526 3.437615,-1.10738 4.05548,-1.2878 -0.617865,-0.18141 -3.941351,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.656727,-3.06797 -0.984846,-4.60296"
|
||||
id="path461" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.334992,94.727094 c -0.328117,1.533988 -0.656727,3.067975 -0.984846,4.601963 -0.114128,0.534751 -3.437614,1.107383 -4.055971,1.287793 0.618357,0.18041 3.941351,0.75354 4.055971,1.28779 0.328119,1.53399 0.656729,3.06797 0.984846,4.60196 0.328119,-1.53399 0.656236,-3.06797 0.984846,-4.60196 0.114129,-0.53425 3.437615,-1.10738 4.055972,-1.28779 -0.618357,-0.18041 -3.941844,-0.753042 -4.055972,-1.287793 -0.32861,-1.533988 -0.656727,-3.067975 -0.984846,-4.601963"
|
||||
id="path463" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,78.238976 c -0.328117,1.533987 -0.656235,3.068472 -0.984354,4.60246 -0.114128,0.534752 -3.438105,1.106883 -4.056463,1.287792 0.618358,0.180409 3.942335,0.753039 4.056463,1.287791 0.328119,1.533987 0.656237,3.067974 0.984354,4.601962 0.328119,-1.533988 0.656236,-3.067975 0.984846,-4.601962 0.114129,-0.534752 3.437615,-1.107381 4.05548,-1.287791 -0.617865,-0.180909 -3.941351,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.656727,-3.068473 -0.984846,-4.60246"
|
||||
id="path465" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.334992,61.743382 c -0.328117,1.534485 -0.656727,3.068472 -0.984846,4.602459 -0.114128,0.534254 -3.437614,1.106884 -4.055971,1.287792 0.618357,0.18041 3.941843,0.753039 4.055971,1.287791 0.328119,1.533988 0.656729,3.067975 0.984846,4.601962 0.328119,-1.533987 0.656236,-3.067974 0.984846,-4.601962 0.114129,-0.534752 3.437615,-1.10738 4.055972,-1.287791 -0.618357,-0.180908 -3.941844,-0.753538 -4.055972,-1.287792 -0.32861,-1.533987 -0.656727,-3.067975 -0.984846,-4.602459"
|
||||
id="path467" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 44.324661,45.255761 c -0.328117,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114128,0.534753 -3.438105,1.107382 -4.056463,1.287792 0.618358,0.180411 3.942335,0.753039 4.056463,1.287792 0.328119,1.533987 0.656237,3.067974 0.984354,4.601961 0.328119,-1.533987 0.656236,-3.067974 0.984846,-4.601961 0.114129,-0.534753 3.437615,-1.107381 4.05548,-1.287792 -0.617865,-0.18041 -3.941351,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.656727,-3.067974 -0.984846,-4.601961"
|
||||
id="path469" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.428325,144.22136 c -0.328118,1.53498 -0.656236,3.06797 -0.984354,4.60295 -0.11462,0.53426 -3.438106,1.10639 -4.056463,1.28779 0.618357,0.18042 3.941843,0.75255 4.056463,1.2878 0.328118,1.53298 0.656236,3.06797 0.984354,4.60196 0.328118,-1.53399 0.656236,-3.06898 0.984846,-4.60196 0.114128,-0.53525 3.438106,-1.10738 4.055972,-1.2878 -0.617866,-0.1814 -3.941844,-0.75353 -4.055972,-1.28779 -0.32861,-1.53498 -0.656728,-3.06797 -0.984846,-4.60295"
|
||||
id="path471" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.455381,127.73822 c -0.328117,1.53398 -0.656236,3.06797 -0.984354,4.60196 -0.11462,0.53426 -3.437614,1.10639 -4.055972,1.28779 0.618358,0.18041 3.941352,0.75354 4.055972,1.2878 0.328118,1.53398 0.656237,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656729,-3.06798 0.984846,-4.60196 0.11462,-0.53426 3.438107,-1.10739 4.055972,-1.2878 -0.617865,-0.1814 -3.941352,-0.75353 -4.055972,-1.28779 -0.328117,-1.53399 -0.656236,-3.06798 -0.984846,-4.60196"
|
||||
id="path473" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.472107,111.2187 c -0.328118,1.53399 -0.656237,3.06847 -0.984354,4.60246 -0.11462,0.53426 -3.438107,1.10688 -4.056463,1.28779 0.618356,0.18042 3.941843,0.75304 4.056463,1.2878 0.328117,1.53398 0.656236,3.06797 0.984354,4.60196 0.328118,-1.53399 0.656728,-3.06798 0.984846,-4.60196 0.11462,-0.53476 3.437614,-1.10738 4.055972,-1.2878 -0.618358,-0.18091 -3.941352,-0.75353 -4.055972,-1.28779 -0.328118,-1.53399 -0.656728,-3.06847 -0.984846,-4.60246"
|
||||
id="path475" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,176.01147 c -0.328118,1.53399 -0.656728,3.06797 -0.984847,4.60296 -0.114128,0.53425 -3.437614,1.10638 -4.055972,1.28679 0.618358,0.18042 3.941353,0.75354 4.055972,1.28879 0.328119,1.53299 0.656729,3.06797 0.984847,4.60097 0.328117,-1.533 0.656236,-3.06798 0.984353,-4.60097 0.114621,-0.53525 3.438107,-1.10837 4.056465,-1.28879 -0.618358,-0.18041 -3.941844,-0.75254 -4.056465,-1.28679 -0.328117,-1.53499 -0.656236,-3.06897 -0.984353,-4.60296"
|
||||
id="path477" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,192.50357 c -0.328118,1.53399 -0.656728,3.06798 -0.984847,4.60196 -0.114128,0.53426 -3.437614,1.10738 -4.055972,1.2878 0.618358,0.18041 3.941844,0.75254 4.055972,1.28779 0.328119,1.53399 0.656729,3.06797 0.984847,4.60196 0.328117,-1.53399 0.656236,-3.06797 0.984353,-4.60196 0.114621,-0.53525 3.438107,-1.10738 4.056465,-1.28779 -0.618358,-0.18042 -3.941844,-0.75354 -4.056465,-1.2878 -0.328117,-1.53398 -0.656236,-3.06797 -0.984353,-4.60196"
|
||||
id="path479" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,208.99568 c -0.328118,1.53299 -0.656728,3.06798 -0.984847,4.60197 -0.114128,0.53424 -3.437614,1.10738 -4.055972,1.28679 0.618358,0.1814 3.941844,0.75353 4.055972,1.28779 0.328119,1.53498 0.656729,3.06798 0.984847,4.60295 0.328117,-1.53497 0.656236,-3.06797 0.984353,-4.60295 0.114621,-0.53426 3.438107,-1.10639 4.056465,-1.28779 -0.618358,-0.17941 -3.941844,-0.75255 -4.056465,-1.28679 -0.328117,-1.53399 -0.656236,-3.06898 -0.984353,-4.60197"
|
||||
id="path481" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,160.69751 c -0.328118,1.53499 -0.656728,3.06797 -0.984847,4.60296 -0.114128,0.53426 -3.437614,1.10638 -4.055972,1.28779 0.618358,0.18042 3.941844,0.75254 4.055972,1.2878 0.328119,1.53298 0.656729,3.06797 0.984847,4.60096 0.328117,-1.53299 0.656236,-3.06798 0.984353,-4.60096 0.114621,-0.53526 3.438107,-1.10838 4.056465,-1.2878 -0.618358,-0.18141 -3.941844,-0.75353 -4.056465,-1.28779 -0.328117,-1.53499 -0.656236,-3.06797 -0.984353,-4.60296"
|
||||
id="path483" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.448494,94.727094 c -0.328117,1.533988 -0.656236,3.067975 -0.984354,4.601963 -0.114128,0.534751 -3.437614,1.107383 -4.055972,1.287793 0.618358,0.18041 3.941844,0.75354 4.055972,1.28779 0.328118,1.53399 0.656237,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656729,-3.06797 0.984846,-4.60196 0.11462,-0.53425 3.438106,-1.10738 4.055972,-1.28779 -0.617866,-0.18041 -3.941352,-0.753042 -4.055972,-1.287793 -0.328117,-1.533988 -0.656236,-3.067975 -0.984846,-4.601963"
|
||||
id="path485" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,78.238976 c -0.328118,1.533987 -0.656728,3.068472 -0.984847,4.60246 -0.114128,0.534752 -3.437614,1.106883 -4.055972,1.287792 0.618358,0.180409 3.941844,0.753039 4.055972,1.287791 0.328119,1.533987 0.656729,3.067974 0.984847,4.601962 0.328117,-1.533988 0.656236,-3.067975 0.984353,-4.601962 0.114621,-0.534752 3.438107,-1.107381 4.056465,-1.287791 -0.618358,-0.180909 -3.941844,-0.75304 -4.056465,-1.287792 -0.328117,-1.533988 -0.656236,-3.068473 -0.984353,-4.60246"
|
||||
id="path487" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.448494,61.743382 c -0.328117,1.534485 -0.656236,3.068472 -0.984354,4.602459 -0.114128,0.534254 -3.437614,1.106884 -4.055972,1.287792 0.618358,0.18041 3.941844,0.753039 4.055972,1.287791 0.328118,1.533988 0.656237,3.067975 0.984354,4.601962 0.32861,-1.533987 0.656729,-3.067974 0.984846,-4.601962 0.11462,-0.534752 3.438106,-1.10738 4.055972,-1.287791 -0.617866,-0.180908 -3.941352,-0.753538 -4.055972,-1.287792 -0.328117,-1.533987 -0.656236,-3.067975 -0.984846,-4.602459"
|
||||
id="path489" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#313390;stroke-width:0.0268082;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 58.438656,45.255761 c -0.328118,1.533987 -0.656728,3.067974 -0.984847,4.601961 -0.114128,0.534753 -3.437614,1.107382 -4.055972,1.287792 0.618358,0.180411 3.941844,0.753039 4.055972,1.287792 0.328119,1.533987 0.656729,3.067974 0.984847,4.601961 0.328117,-1.533987 0.656236,-3.067974 0.984353,-4.601961 0.114621,-0.534753 3.438107,-1.107381 4.056465,-1.287792 -0.618358,-0.18041 -3.941844,-0.753039 -4.056465,-1.287792 -0.328117,-1.533987 -0.656236,-3.067974 -0.984353,-4.601961"
|
||||
id="path491" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#313390;stroke-width:1.28645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 17.861231,16.395074 c -2.370124,0 -1.512197,6.55159 -1.512197,7.860314 0,5.982948 0,11.965896 0,17.948845 0,19.785843 0,39.572183 0,59.358027 0,42.41588 0,84.83129 0,127.24668 0,5.27276 0,10.54553 0,15.81631 0,1.78815 -0.670993,5.5997 1.938701,5.5997 13.437096,0 26.873702,0 40.310798,0 36.67346,0 73.345937,0 110.018417,0 2.76858,0 2.22844,-2.99721 2.22844,-5.01761 0,-5.05049 0,-10.10098 0,-15.15248 0,-18.71285 0,-37.42769 0,-56.14153 0,-43.44005 0,-86.880591 0,-130.321133 0,-6.187779 0,-12.376554 0,-18.564833 0,-2.085185 0.47127,-4.815762 0,-6.865065 0,-3.039567 -8.52024,-1.767225 -10.19969,-1.767225 -8.03029,0 -16.05958,0 -24.08889,0 -38.63626,0 -77.273017,0 -115.909282,0 -0.928766,0 -1.857532,0 -2.786297,0"
|
||||
id="path493" /></g></svg>
|
After Width: | Height: | Size: 122 KiB |
6177
img/playing_cards/backs/cars.svg
Normal file
After Width: | Height: | Size: 392 KiB |
3948
img/playing_cards/backs/castle.svg
Normal file
After Width: | Height: | Size: 216 KiB |
737
img/playing_cards/backs/fish.svg
Normal file
|
@ -0,0 +1,737 @@
|
|||
<?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"
|
||||
id="svg2"
|
||||
sodipodi:docname="fish.svg"
|
||||
viewBox="0 0 234.00001 333.00001"
|
||||
sodipodi:version="0.32"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
width="234"
|
||||
height="333"
|
||||
inkscape:export-filename="E:\DAN\OneDrive\projects\Playing_Cards\backs\png-096-dpi\fish.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title1939">Copperband butterfly fish</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3295"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3297"
|
||||
style="stop-color:#ffffff"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3299"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter3252"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3254"
|
||||
stdDeviation="1.3015147"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3293"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3295"
|
||||
stdDeviation="0.78138093"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3320"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3322"
|
||||
stdDeviation="0.60509095"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3374"
|
||||
height="1.1852"
|
||||
width="1.3408999"
|
||||
y="-0.092591003"
|
||||
x="-0.17046"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3376"
|
||||
stdDeviation="1.5568902"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3276"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3278"
|
||||
stdDeviation="0.91191203"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3291"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3293"
|
||||
stdDeviation="0.53222411"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3450"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3452"
|
||||
stdDeviation="1.1077024"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3476"
|
||||
height="1.4282"
|
||||
width="1.1667"
|
||||
y="-0.21408001"
|
||||
x="-0.083365001"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3478"
|
||||
stdDeviation="0.38457079"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3237"
|
||||
height="1.0269001"
|
||||
width="1.2207"
|
||||
y="-0.013464"
|
||||
x="-0.11035"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3239"
|
||||
stdDeviation="0.812919"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3241"
|
||||
height="1.0265"
|
||||
width="1.2509"
|
||||
y="-0.013269"
|
||||
x="-0.12544"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3243"
|
||||
stdDeviation="0.34422165"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3247"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3249"
|
||||
stdDeviation="0.63214285"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3253"
|
||||
height="1.0257"
|
||||
width="1.3687"
|
||||
y="-0.012836"
|
||||
x="-0.18433"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3255"
|
||||
stdDeviation="0.34710874"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3385"
|
||||
height="1.109"
|
||||
width="1.4166"
|
||||
y="-0.054503001"
|
||||
x="-0.20829999"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3387"
|
||||
stdDeviation="0.95862966"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3413"
|
||||
height="1.0662"
|
||||
width="1.5285"
|
||||
y="-0.033087"
|
||||
x="-0.26424"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3415"
|
||||
stdDeviation="0.483004"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3477"
|
||||
height="1.3521"
|
||||
width="1.4275"
|
||||
y="-0.17603"
|
||||
x="-0.21374001"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3479"
|
||||
stdDeviation="0.30480282"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3483"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3485"
|
||||
stdDeviation="0.3586042"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3489"
|
||||
height="1.0254"
|
||||
width="1.4238"
|
||||
y="-0.01272"
|
||||
x="-0.21190999"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3491"
|
||||
stdDeviation="0.96370909"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3495"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3497"
|
||||
stdDeviation="0.42300135"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3501"
|
||||
height="1.0266"
|
||||
width="1.2423"
|
||||
y="-0.013319"
|
||||
x="-0.12114"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3503"
|
||||
stdDeviation="1.0707617"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3507"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3509"
|
||||
stdDeviation="0.73488597"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3577"
|
||||
height="1.1963"
|
||||
width="3.1633999"
|
||||
y="-0.098168001"
|
||||
x="-1.0817"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3579"
|
||||
stdDeviation="1.0800137"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3279"
|
||||
height="1.3041"
|
||||
width="1.1228"
|
||||
y="-0.15205"
|
||||
x="-0.061388001"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3281"
|
||||
stdDeviation="0.37910928"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3283"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3285"
|
||||
stdDeviation="0.085171336"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3294"
|
||||
height="1.1509"
|
||||
width="1.5855"
|
||||
y="-0.075467996"
|
||||
x="-0.29273999"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3296"
|
||||
stdDeviation="0.71469474"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3984"
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur3986"
|
||||
stdDeviation="4.3652882"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
id="radialGradient3267"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="280.97"
|
||||
cx="149.64999"
|
||||
gradientTransform="matrix(0.74729,-1.5779575,-0.791,-0.37460448,-19.608364,635.6093)"
|
||||
r="56.070999"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3208"
|
||||
style="stop-color:#000000"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3210"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3269"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="320.89999"
|
||||
cx="213.7"
|
||||
gradientTransform="matrix(-1.0591,-0.62553,-0.36045,0.61028,155.55334,255.33)"
|
||||
r="79.726997"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3222"
|
||||
style="stop-color:#000000;stop-opacity:.41298"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3224"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3271"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="305.79001"
|
||||
cx="205.71001"
|
||||
gradientTransform="matrix(0.96791,0.17792,-0.1111,0.60438,40.572,84.896)"
|
||||
r="35.676998"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2402"
|
||||
style="stop-color:#ffffff"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop2404"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="radialGradient3273"
|
||||
xlink:href="#linearGradient3295"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="258.91"
|
||||
cx="136.53"
|
||||
gradientTransform="matrix(2.0736,1.8562,-0.78579,0.87781,60.101,-217.82)"
|
||||
r="17.93"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
id="radialGradient3275"
|
||||
xlink:href="#linearGradient3295"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="243.14999"
|
||||
cx="130.31"
|
||||
gradientTransform="matrix(-0.65031,-0.82653,-0.69371,0.54581,147.37334,220.04)"
|
||||
r="11.495"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3277"
|
||||
y2="91.162003"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="331.03"
|
||||
gradientTransform="translate(4.0406,-5.0508)"
|
||||
y1="4.2886"
|
||||
x1="350.51999"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3978"
|
||||
style="stop-color:#000000"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3980"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
fit-margin-left="0"
|
||||
inkscape:zoom="1.979899"
|
||||
borderopacity="1.0"
|
||||
inkscape:current-layer="layer3"
|
||||
inkscape:cx="134.43532"
|
||||
inkscape:cy="140.00771"
|
||||
borderlayer="false"
|
||||
inkscape:window-maximized="1"
|
||||
showgrid="false"
|
||||
fit-margin-right="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
bordercolor="#666666"
|
||||
inkscape:window-x="-8"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:window-y="-8"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
pagecolor="#ffffff"
|
||||
gridtolerance="10000"
|
||||
showguides="true"
|
||||
inkscape:window-height="1057"
|
||||
showborder="false"
|
||||
fit-margin-top="0" />
|
||||
<g
|
||||
id="layer3"
|
||||
inkscape:label="main"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(2.6585009,-113.50969)">
|
||||
<g
|
||||
id="g3610"
|
||||
transform="matrix(0.31382064,0,0,0.31484931,-82.531213,223.08638)"
|
||||
style="stroke-width:3.18132377">
|
||||
<rect
|
||||
rx="28.421436"
|
||||
ry="28.41267"
|
||||
y="-346.8266"
|
||||
x="255.71947"
|
||||
height="1055.244"
|
||||
width="743.24408"
|
||||
id="rect4266"
|
||||
style="fill:#0066ff;fill-opacity:1;stroke:#0066ff;stroke-width:2.40477991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<flowRoot
|
||||
transform="matrix(-1,0,0,1,297.86334,-281.31)"
|
||||
xml:space="preserve"
|
||||
style="line-height:0.01%;font-family:'Bitstream Vera Sans';fill:#000000;stroke-width:3.18132377"
|
||||
id="flowRoot3031">
|
||||
<flowRegion
|
||||
id="flowRegion3033"
|
||||
style="stroke-width:3.18132377">
|
||||
<rect
|
||||
height="115"
|
||||
width="245.71001"
|
||||
x="-202.86"
|
||||
y="32.200001"
|
||||
id="rect3035"
|
||||
style="stroke-width:3.18132377" />
|
||||
</flowRegion>
|
||||
<flowPara
|
||||
style="font-size:40px;line-height:1.25;stroke-width:3.18132377"
|
||||
id="flowPara3037" />
|
||||
</flowRoot> <g
|
||||
style="stroke-width:2.52970886"
|
||||
transform="matrix(1.2545842,-0.06188151,0.06173567,1.257548,870.63558,-117.36533)"
|
||||
id="g3572">
|
||||
<path
|
||||
id="path2383"
|
||||
style="fill:#ececec;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3450)"
|
||||
d="m 228.1,548.74 c 42.996,-6.3615 69.86,-19.019 87.646,-35.67 10.376,-26.188 21.543,-32.025 32.32,-56.797 22.944,-74.088 19.996,-168.09 254,-196.21 39.213,-4.7116 13.736,53.4 24.821,210.63 18.48,-11.94 24.674,-45.996 34.305,-73.864 -19.741,90.024 -27.809,90.01 22.11,177.57 -16.871,-20.21 -19.428,-42.011 -51.749,-60.505 7.3191,94.306 32.336,171.47 13.816,174.37 -91.11,14.27 -72.53,-36.89 -145.8,-42.96 -65.15,-5.39 -82.53,-11.34 -114.25,-39.71 -80.15,-17.11 -17.88,-53.29 -155.5,-44.29 6.3621,-7.1613 20.922,-3.4045 20.049,-9.0163 -0.8727,-5.6144 -15.587,3.1741 -21.773,-3.5444 z"
|
||||
sodipodi:nodetypes="cccsccccssccsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-1,0,0,1,252.36334,-259.8)" />
|
||||
<path
|
||||
id="path2385"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3320)"
|
||||
d="m 440.68,636.51 c 8.8078,-1.8125 9.2424,-0.25304 10.912,-5.2118 17.497,4.2232 31.612,7.9862 59.085,8.1818 38.812,3.3297 48.275,36.095 98.481,65.376 -63.624,-29.551 -136.94,17.88 -168.48,-68.346 z"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-1,0,0,1,252.36334,-259.8)" />
|
||||
<path
|
||||
id="path3283"
|
||||
style="fill:#fdb000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3293)"
|
||||
d="m 440.21,635.9 c 6.0913,-0.38913 10.443,-1.6612 9.849,-6.0609 14.431,24.531 60.811,40.266 102.03,61.872 -34.422,-1.0337 -87.973,11.256 -111.87,-55.811 z m 55.053,4.0406 c 47.055,-6.3508 60.097,25.542 92.682,51.013 -50.636,-18.553 -61.918,-45.523 -92.682,-51.013 z"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-1,0,0,1,252.36334,-259.8)" />
|
||||
<path
|
||||
id="path3324"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3374)"
|
||||
d="m 579.66,366.53 c -5.5104,-4.3229 -4.7205,-5.6129 -5.8354,-8.0752 -1.2656,-2.7953 -3.3094,-4.6105 -4.5218,-10.496 -1.6206,-7.8674 6.3445,-23.88 14.264,-20.597 16.976,7.0375 1.6035,43.491 -3.9069,39.168 z"
|
||||
sodipodi:nodetypes="csssz"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-1,0,0,1,252.36334,-259.8)" />
|
||||
<path
|
||||
id="path3510"
|
||||
sodipodi:nodetypes="csscccssc"
|
||||
style="fill:#000000;stroke-width:2.52970886;filter:url(#filter3241)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 123.87,264.51 c -0.0713,0.85034 -0.90133,1.7996 -0.9906,3.0222 -0.0538,0.73713 0.21337,1.654 0.18059,2.0763 -0.53268,6.8613 -0.48913,8.3943 1.4154,16.338 0.46399,12.183 0.24524,20.561 4.3051,40.664 -3.4498,-11.648 -5.0365,-24.129 -6.0143,-35.995 -0.48602,-8.0652 -2.0363,-13.149 -0.0766,-21.065 0.12439,-0.50243 -0.11919,-1.3975 -0.0322,-2.1317 0.13823,-1.1674 1.0877,-2.0905 1.2126,-2.9088 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3227"
|
||||
sodipodi:nodetypes="cccsssscccssssccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3237)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 143.52,252.07 -7.658,-5.829 5.5585,-2.4514 c 0,0 -2.7756,-9.3073 -2.8339,-13.859 -0.0599,-4.6729 3.6743,-9.4294 3.9207,-14.096 0.23184,-4.392 -3.7563,-11.072 -3.5815,-15.466 0.2031,-5.1058 2.7158,-11.606 3.2957,-16.683 1.0068,-8.8149 -0.74104,-20.453 -0.54841,-29.547 2.2,-14.28 11.869,-46.972 11.869,-46.972 0,0 -8.4426,33.292 -10.354,47.477 0.0772,9.3625 2.5651,21.243 1.5586,30.305 -0.51594,4.6448 -3.2259,10.495 -3.2957,15.168 -0.0774,5.1823 2.8453,10.604 2.4921,15.775 -0.30304,4.4364 -2.0791,10.358 -2.3262,14.798 -0.26373,4.7385 2.5814,14.617 2.5814,14.617 l -3.283,0.75762 2.6046,6.0075 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3245"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3247)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 124.64,251.13 -2.5,-3.2143 3.5714,-10.357 4.2976,-32.643 -0.0963,-6.5447 1.3194,-7.3086 6.2651,-51.003 -5.353,51.042 -1.2253,7.6573 0.21596,6.5309 -3.6377,31.913 -3.9286,10.357 1.0714,3.5714 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3251"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3253)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 141.42,261.46 -4.2931,4.7982 c 3.932,2.6096 2.0108,5.2191 0.75761,7.8287 -3.8421,15.131 0.11028,34.908 0.25254,52.275 0.37354,-17.691 -0.31054,-33.795 1.2627,-53.286 2.2607,-2.5236 2.2008,-4.7158 -0.25254,-6.566 l 2.2728,-5.0508 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3257"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3385)"
|
||||
d="m 197.89,258.84 c 9.4799,-5.2861 -0.92585,-5.0054 -3.1609,-14.075 -2.2042,-8.9444 2.0185,-23.738 -0.80354,-27.92 -8.8706,11.48 -2.9028,45.824 3.9645,41.995 z"
|
||||
sodipodi:nodetypes="cscs"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-0.63417,0,0,0.66498,-47.396664,89.005)" />
|
||||
<path
|
||||
id="path3259"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3413)"
|
||||
d="m 193.93,214.43 c -3.6999,1.0722 -4.3974,-19.786 -0.12606,-32.535 0.3291,6.4491 -2.7781,14.431 -1.7138,21.88 0.86101,6.0265 2.9389,10.336 1.8399,10.655 z"
|
||||
sodipodi:nodetypes="ccss"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-1.0305,-0.037137,-0.046205,0.60666,39.208336,107.68)" />
|
||||
<path
|
||||
id="path3261"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3477)"
|
||||
d="m 193.51,184.07 c -2.7011,-1.4897 -2.897,-1.3194 0.46175,-4.1557 0.97496,2.1429 1.6244,2.518 -0.46175,4.1557 z"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(-0.52038,0,0,0.69616,-68.771664,80.327)" />
|
||||
<path
|
||||
id="path3481"
|
||||
sodipodi:nodetypes="csccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3483)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 207.59,315.25 c -1.8922,1.9599 -4.2149,3.1242 -4.4844,6.5074 -0.69882,8.7735 13.659,33.017 22.415,44.632 -8.1377,-14.428 -19.322,-29.117 -19.772,-44.29 l 1.8417,-6.8492 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3487"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3489)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 185.36,310.71 c -4.558,-11.077 -9.4438,-25.362 -9.3985,-37.935 -9.5572,-35.093 1.3031,-101.07 3.8426,-146.92 -1.4166,48.689 -10.112,111.14 -1.8192,146.19 0.11569,11.92 3.861,26.744 7.375,38.664 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3493"
|
||||
sodipodi:nodetypes="cscsc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3495)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 187.38,318.03 c 1.8869,22.804 6.0957,22.442 10.721,31.507 5.3385,10.464 1.887,11.698 18.068,24.304 -15.012,-13.492 -12.746,-16.779 -17.043,-25.191 -5.2218,-10.222 -8.7063,-8.6719 -11.747,-30.62 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3499"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3501)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 301.03,348.08 c -24.959,-64.467 -3.405,-118.57 -21.213,-192.94 19.64,74.035 -0.0922,124.89 21.213,192.94 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3505"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3507)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 4.5457,288.99 c 30.8,-5.59 62.08,-10.01 85.042,-34.54 8.017,-17.72 19.612,-36.64 32.132,-55.87 l 7.0711,-22.728 -6.566,23.044 c -11.85,18.52 -23.526,37.05 -32.074,55.74 -25.397,25.36 -55.64,29.25 -85.61,34.35 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3511"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3577)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 401.79,209.19 c 6.116,-1.9744 4.8344,24.996 2.2728,33.84 0.45807,-14.993 1.1849,-29.418 -2.2728,-33.84 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3161"
|
||||
sodipodi:nodetypes="csscssscccccssscssscssscccscssccsscccsccccccsscccccccscsssccssscssscccccccc"
|
||||
style="fill:#fd9400;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3252)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 356.19,3.9688 c 0,9.9e-6 -27.766,2.0751 -39.281,5 -8.0224,2.0377 -20.601,8.4552 -28.562,10.719 -5.6598,1.6091 -10.806,1.1699 -16.438,2.875 -22.785,4.1387 -52.239,18.911 -61.781,25 -10.785,6.8828 -20.266,10.485 -27.5,22.125 -11.388,18.325 0.20441,32.544 -1.9688,60.312 -1.7058,21.796 -7.4954,51.693 -6.5938,78.25 0.55542,34.206 -6.7642,68.149 12.844,106.44 0.0693,10.766 9.1446,38.103 21.438,53.562 9.4211,9.4879 18.417,10.746 22.125,5 -13.421,-17.994 -24.418,-34.445 -24.531,-56.094 4.6819,-4.3078 3.8984,-10.54 -4.75,-17.469 1e-5,-1e-5 -8.0524,-56.001 -7.8438,-91.438 0.1591,-27.021 -1.5656,-54.318 1.5938,-74.969 4.2084,-27.507 0.13305,-55.503 -1.5938,-65.344 5.3979,-5.4364 11.889,-11.628 15,-13.25 5.9515,-3.1026 15.333,-3.5804 21.406,-6.4375 6.9912,-3.289 14.403,-11.086 21.438,-14.281 9.0787,-4.1243 21.543,-6.245 32.469,-8.8125 -3.3952,1.9942 -6.7193,4.4163 -11.719,6.6875 -8.9119,4.0485 -8.0705,12.606 -13.469,22.875 -14.615,27.8 2.9629,87.6 4.875,146.41 2.0845,64.107 6.2405,121.82 24.625,177.12 5.6123,12.097 10.019,15.119 13.906,14.25 39.639,17.774 37.923,49.209 115.28,36.125 3.963,-1.9041 7.7313,-8.7981 5.9688,-8.4375 -72.624,14.859 -76.346,-12.744 -113.34,-35.688 -9.8591,-47.145 -20.695,-65.482 -19.312,-88.375 1.6861,-27.925 -3.5625,-96.437 -3.5625,-96.438 -17.031,-109.26 -34.181,-165.05 30,-185 l -14.75,4.4375 c 3.3665,-1.3992 6.7625,-2.8122 9.75,-3.7188 6.5167,-1.9775 15.562,-3.2999 22.156,-5 6.6981,-1.7269 22.125,-6.4375 22.125,-6.4375 z m 13.219,2.625 c -18.058,0.15833 -41.473,7.4505 -53.938,8.8125 -1.8876,3.5462 19.392,4.3542 18.062,8.1562 -6.317,18.067 -6.6503,38.905 -3.8438,61.156 17.272,33.471 8.8161,68.847 32.219,145.69 9.7619,58.81 -20.457,106.19 17.156,174.28 -1.8778,14.394 -8.94,4.5852 -14.312,5 5.834,6.0338 40,16.523 53.594,0.0313 6.0071,-15.294 -11.684,-104.08 -17.875,-160.03 -8.5397,44.689 9.1305,143.28 -5,141.44 -14.1305,-1.84 -12.85,-161.44 -12.85,-161.44 -4.25,-32.84 -30.2,-77.48 -21.28,-117.85 12.06,-21.217 20.63,-26.464 26.91,-43.465 9.0416,23.31 -0.95031,120.31 8.1562,137.06 -2.99,-54.51 -3.73,-105.61 -2.91,-154.41 l -0.875,-34.188 c -3.4728,-7.8625 -12.384,-10.345 -23.219,-10.25 z m -15.844,56.5 c 0.23334,-0.01079 0.45308,-0.01137 0.6875,0 8.9668,0.43485 14.873,15.745 13.531,25.75 -2.9826,11.612 -12.119,25.966 -20.625,23.781 -4.3713,-1.1228 -5.3708,-8.0635 -7.1562,-12.781 -1.6889,-4.4625 -4.3248,-10.137 -2.875,-15.781 2.5282,-9.8426 9.2039,-20.634 16.438,-20.969 z m -191.66,30.156 c -6.1992,3.7746 -21.439,32.376 -22.844,42.875 -2.7297,20.407 -6.7065,43.201 -9.6656,67.155 -3.0122,24.384 -4.6946,43.716 -6.7719,64.282 -1.7448,17.275 5.8861,59.864 5.8861,59.864 0.90094,9.2454 8.2431,10.085 10.291,4.2812 1.5152,-4.2932 -2.5176,-40.05 0.25999,-56.302 5.1068,-29.88 2.3028,-83.473 4.375,-122.97 1.36,-25.95 18.47,-59.18 18.47,-59.18 z m -32.88,75.75 c -4.5,11.22 -3.91,22.1 -9.03,30.09 -18.23,30.19 -29.064,45.36 -31.188,51.82 -2.697,15.59 -66.954,39.92 -81.31,37.39 7.449,4.35 72.426,-16.24 82.592,-36.3 5.1786,-9.7298 15.941,-26.17 30.625,-51.75 5.9945,-8.3848 5.2186,-20.529 8.3125,-31.25 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path2398"
|
||||
style="opacity:0.3;fill:url(#radialGradient3267);stroke-width:2.38826442"
|
||||
d="m -176.45236,280.06081 c 1.43,25.18814 18.47,47.8539 51.79,47.8539 33.316996,0 72.499996,-31.954 72.499996,-64.28501 0,-32.33102 -27.04,-58.57089 -60.356996,-58.57089 -33.317,0 -63.929,42.66831 -63.929,74.99933 z"
|
||||
sodipodi:nodetypes="csssc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3218"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="opacity:0.70845002;fill:url(#radialGradient3269);fill-rule:evenodd;stroke-width:2.52970886"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -134.30666,344.34 c -159.78,128.58 -242.01,-121.97 -35,-100.71 -4.8259,66.549 -18.056,47.522 35,100.71 z" />
|
||||
<path
|
||||
id="path3228"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:url(#radialGradient3271);fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3276)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 204.02,319.79 c 74.552,56.183 83.129,-72.797 -5.4464,-36.875 1.7511,29.758 19.72,22.065 5.4464,36.875 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<ellipse
|
||||
id="path3285"
|
||||
style="opacity:0.41300001;fill:url(#radialGradient3273);stroke-width:2.52970886;filter:url(#filter3291)"
|
||||
cx="132.32999"
|
||||
cy="256.79041"
|
||||
rx="17.930208"
|
||||
ry="18.309013"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3454"
|
||||
style="fill:#d58400;stroke-width:2.16921926"
|
||||
d="m -118.06194,257.46912 c 0,5.66788 4.52001,10.26795 10.0892,10.26795 5.56926,0 10.892569,-4.65713 10.089194,-10.26795 -0.652556,-4.55916 -5.345324,-8.63184 -10.089194,-10.26795 -5.26499,-1.81575 -10.0892,4.59998 -10.0892,10.26795 z"
|
||||
sodipodi:nodetypes="csssc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3317"
|
||||
sodipodi:nodetypes="csssc"
|
||||
style="fill:#000000;stroke-width:2.52970886"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -116.52666,257.36 c 0,4.5654 3.8184,8.2706 8.5232,8.2706 4.7048,0 9.482296,-3.8071 8.523196,-8.2706 -0.752016,-3.4997 -3.920796,-6.7311 -8.523196,-8.2706 -4.4618,-1.4925 -8.5232,3.7052 -8.5232,8.2706 z" />
|
||||
<path
|
||||
id="path3456"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#ff3e00;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3279)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 123.57,263.27 c 3.499,6.7992 9.6084,8.0426 14.821,2.5 -5.7014,3.4783 -10.547,2.1095 -14.821,-2.5 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3466"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#ffdd00;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3476)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 129.11,265.24 c 3.1261,1.0169 9.477,0.86066 10.893,-4.8214 -2.9483,2.4962 -6.9998,4.2148 -10.893,4.8214 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path2471"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3283)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.78,263.1 c 7.8493,-2.4114 10.433,-7.8603 0.50508,-11.617 4.018,3.496 1.6882,8.7661 -0.50508,11.617 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3247"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:url(#radialGradient3275);fill-rule:evenodd;stroke-width:2.52970886"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -94.176664,248.33 c -2.9602,-22.232 -24.643996,-21.861 -21.717996,-5.3033 7.0438,-4.7994 13.259,-2.5626 21.717996,5.3033 z" />
|
||||
<path
|
||||
id="path3287"
|
||||
sodipodi:nodetypes="ccc"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke-width:2.52970886;filter:url(#filter3294)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 121.22,268.79 c -9.4323,-11.94 -4.5377,-17.368 0.50507,-22.728 -4.9152,5.4664 -7.5978,11.925 -0.50507,22.728 z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
<path
|
||||
id="path3206"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:0.49046003;fill:url(#linearGradient3277);stroke-width:2.52970886;filter:url(#filter3984)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 192.94,63.22 C 256.6,26.489 329.95,-1.307 382.85,7.662 c 22.35,6.707 8.03,68.424 11.11,104.05 C 337.98,78.209 256.79,70.485 192.94,63.222 Z"
|
||||
transform="matrix(-1,0,0,1,24.263336,0)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata1825">
|
||||
<rdf:RDF>
|
||||
<cc:Work>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:publisher>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/">
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:title>Copperband butterfly fish</dc:title>
|
||||
<dc:date>2020-05-08</dc:date>
|
||||
<dc:description>A copperband butterfly fish.</dc:description>
|
||||
<dc:source></dc:source>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>beak; coralfish; chelmon; rostratus; copperband; butterfly; fish; reef; blue;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>bravebug</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:language>en-GB</dc:language>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
1947
img/playing_cards/backs/frog.svg
Normal file
After Width: | Height: | Size: 98 KiB |
804
img/playing_cards/backs/red.svg
Normal file
|
@ -0,0 +1,804 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="blue3.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 187.18163 266.90807"
|
||||
height="333"
|
||||
width="234"><defs
|
||||
id="defs228" /><title
|
||||
id="title2207">Red Card Back</title><metadata
|
||||
id="metadata448"><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>Red Card Back</dc:title><cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /><dc:date>2021-03-14</dc:date><dc:creator><cc:Agent><dc:title>Daniel S. Fowler</dc:title></cc:Agent></dc:creator><dc:rights><cc:Agent><dc:title>Public Domain</dc:title></cc:Agent></dc:rights><dc:publisher><cc:Agent><dc:title>https://tekeye.uk</dc:title></cc:Agent></dc:publisher><dc:language>en-GB</dc:language><dc:subject><rdf:Bag><rdf:li>blue; back; playing; card;</rdf:li></rdf:Bag></dc:subject><dc:description>Playing card back, red patterned design.</dc:description><dc:identifier>https://tekeye.uk/playing_cards/svg-playing-cards</dc:identifier></cc:Work><cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
showborder="false"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-x="55"
|
||||
inkscape:cy="170.26867"
|
||||
inkscape:cx="139.16817"
|
||||
inkscape:zoom="1.6328077"
|
||||
height="303px"
|
||||
width="209px"
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
objecttolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
guidetolerance="10.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1772"
|
||||
inkscape:window-height="1003"
|
||||
inkscape:snap-global="false" />
|
||||
<rect
|
||||
rx="7.1489577"
|
||||
ry="7.1702428"
|
||||
y="0.3029395"
|
||||
x="0.11524342"
|
||||
height="266.30219"
|
||||
width="186.95114"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.605879;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 17.126574,11.521168 c -3.235356,0 -5.840946,2.566007 -5.840946,5.754967 V 249.71911 c 0,3.18795 2.60559,5.75347 5.840946,5.75347 H 170.24039 c 3.23684,0 5.84046,-2.56552 5.84046,-5.75347 V 17.276135 c 0,-3.18896 -2.60362,-5.754967 -5.84046,-5.754967 z"
|
||||
id="path7"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:2.849;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 17.126574,11.521168 c -4.020717,0 -5.840946,2.566007 -5.840946,5.754967 V 249.71911 c 0,3.18795 2.60559,5.75347 5.840946,5.75347 H 170.24039 c 3.23684,0 5.84046,-2.56552 5.84046,-5.75347 V 17.276135 c 0,-3.18896 -2.60362,-5.754967 -5.84046,-5.754967 z"
|
||||
id="path9"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
sodipodi:nodetypes="sssssssss" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.779895,17.167081 c -0.815107,0 -1.470438,0.646356 -1.470438,1.448576 V 248.37958 c 0,0.80172 0.655331,1.44808 1.470438,1.44808 H 168.21492 c 0.8151,0 1.47191,-0.64636 1.47191,-1.44808 V 18.615657 c 0,-0.80222 -0.65681,-1.448576 -1.47191,-1.448576 z"
|
||||
id="path11"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 48.353595,47.464684 c -0.395395,0 -0.713592,0.31073 -0.713592,0.698643 V 219.56541 c 0,0.38841 0.318197,0.69914 0.713592,0.69914 h 89.389855 c 0.39687,0 0.71358,-0.31073 0.71358,-0.69914 V 48.163327 c 0,-0.387913 -0.31671,-0.698642 -0.71358,-0.698642 H 48.353595 Z"
|
||||
id="path15"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 62.407308,53.543327 c -4.651225,0 -8.396884,3.690408 -8.396884,8.273168 V 205.17824 c 0,4.58326 3.745659,8.27318 8.396884,8.27318 h 60.316952 c 4.65172,0 8.39689,-3.68992 8.39689,-8.27318 V 61.816495 c 0,-4.58276 -3.74517,-8.273168 -8.39689,-8.273168 z"
|
||||
id="path19"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 63.36657,60.133876 c -1.578829,0 -2.850527,1.241423 -2.850527,2.783119 V 204.07674 c 0,1.5427 1.271698,2.78363 2.850527,2.78363 h 58.6142 c 1.58081,0 2.854,-1.24093 2.854,-2.78363 V 62.916995 c 0,-1.541696 -1.27319,-2.783119 -2.854,-2.783119 z"
|
||||
id="path23"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.64089;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 49.035603,46.907461 c -0.394158,0 -0.71136,0.311257 -0.71136,0.699829 v 171.693 c 0,0.38907 0.317202,0.70033 0.71136,0.70033 h 89.110427 c 0.39562,0 0.71135,-0.31126 0.71135,-0.70033 v -171.693 c 0,-0.388572 -0.31573,-0.699828 -0.71135,-0.699828 H 49.035603 Z"
|
||||
id="path17"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:2.06341;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 63.328346,53.364122 c -4.667262,0 -8.425837,3.696672 -8.425837,8.28721 V 205.2564 c 0,4.59104 3.758575,8.28723 8.425837,8.28723 h 60.524934 c 4.66775,0 8.42583,-3.69619 8.42583,-8.28723 V 61.651332 c 0,-4.590538 -3.75808,-8.28721 -8.42583,-8.28721 z"
|
||||
id="path21"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.79684;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 64.450754,59.962851 c -1.569727,0 -2.834093,1.24353 -2.834093,2.787843 V 204.15003 c 0,1.54532 1.264366,2.78836 2.834093,2.78836 h 58.276276 c 1.5717,0 2.83754,-1.24304 2.83754,-2.78836 V 62.750694 c 0,-1.544313 -1.26584,-2.787843 -2.83754,-2.787843 z"
|
||||
id="path25"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.906241,18.825798 h 6.708167 l -6.643764,6.529797 -0.0644,-6.529797 z"
|
||||
id="path27"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 167.98681,18.910451 h -6.70768 l 6.64279,6.529798 0.0648,-6.529798 z"
|
||||
id="path31"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 168.10775,248.37559 h -6.70866 l 6.64474,-6.52829 0.0639,6.52829 z"
|
||||
id="path35"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 18.900834,248.34173 h 6.708165 l -6.64278,-6.52929 z"
|
||||
id="path39"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:2.6754;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 18.872581,17.123749 c -0.815107,0 -1.470438,0.646356 -1.470438,1.448576 V 248.33625 c 0,0.80172 0.655331,1.44808 1.470438,1.44808 H 168.30761 c 0.8151,0 1.47191,-0.64636 1.47191,-1.44808 V 18.572325 c 0,-0.80222 -0.65681,-1.448576 -1.47191,-1.448576 z"
|
||||
id="path13"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||
d="m 18.998927,18.784323 h 6.708216 l -6.643813,6.52975 -0.0644,-6.52975 z"
|
||||
id="path29"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="M 168.20859,18.784148 H 161.492 l 6.65162,6.530391 0.0649,-6.530391 z"
|
||||
id="path33"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 168.20044,248.33226 h -6.70866 l 6.64474,-6.52829 0.0639,6.52829 z"
|
||||
id="path37"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><path
|
||||
style="fill:#ff0000;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.863326;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10"
|
||||
d="m 18.99352,248.2984 h 6.708165 l -6.64278,-6.52929 z"
|
||||
id="path41"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" /><g
|
||||
id="g2896"
|
||||
transform="matrix(1,0,0,1.0032121,0.31152432,-0.96485834)"
|
||||
style="stroke-width:0.998398"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path43" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path45" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path47" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path49" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path55" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path57" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path59" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path61" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path63" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path65" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path67" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path69" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path75" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path77" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path51" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path53" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path83" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path85" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path87" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path89" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path95" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path97" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path99" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path101" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path103" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path105" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path107" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path109" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path111" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path113" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path115" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path117" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path91" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path93" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path71" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path73" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path119" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path121" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path123" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path125" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path127" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path129" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path131" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path133" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path135" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path143" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path145" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path79" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path81" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path137" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path139" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path141" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path147" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path149" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path151" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path153" /></g><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4"
|
||||
d="m 177.3984,249.83065 c 0,3.84926 -3.10705,7.00635 -6.9181,7.00635 H 16.586774 c -3.80072,0 -6.9077634,-3.15709 -6.9077634,-7.00635 V 16.875772 c 0,-3.854239 3.1070434,-7.0058511 6.9077634,-7.0058511 H 170.4803 c 3.81105,0 6.9181,3.1516121 6.9181,7.0058511 z"
|
||||
id="path443"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" />
|
||||
<g
|
||||
id="g2896-5"
|
||||
transform="matrix(1,0,0,1.0032121,121.19924,-0.96485834)"
|
||||
style="stroke-width:0.998398"
|
||||
inkscape:export-filename="png-096-dpi\red2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path43-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,142.83718 v 6.25542 l 22.581618,-11.69717 v -6.40929 z"
|
||||
id="path45-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path47-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,154.66681 v 6.25541 l 22.581128,-11.69916 v -6.4078 z"
|
||||
id="path49-3" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path55-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,130.84522 v 6.25542 l 22.581126,-11.69966 v -6.4073 z"
|
||||
id="path57-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path59-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,137.35759 v -6.25443 l 22.582109,11.69816 v 6.4088 z"
|
||||
id="path61-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path63-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,119.01559 v 6.25542 l 22.581127,-11.69767 v -6.40928 z"
|
||||
id="path65-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path67-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,125.30138 v -6.25492 l 22.581617,11.69916 v 6.40681 z"
|
||||
id="path69-0" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path75-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.620972,166.60398 v 6.25443 l 22.581126,-11.69717 v -6.40879 z"
|
||||
id="path77-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path51-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,149.12347 v -6.25542 l 22.580635,11.69816 v 6.40879 z"
|
||||
id="path53-4" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path83-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.391876,83.231423 v 6.254921 l 22.581127,-11.69866 v -6.407796 z"
|
||||
id="path85-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path87-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.506424,95.059554 v 6.256916 L 44.088533,89.617309 v -6.409291 z"
|
||||
id="path89-3" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path95-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.557553,71.23747 v 6.256913 L 44.138679,65.794727 v -6.408792 z"
|
||||
id="path97-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path99-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.448904,77.751831 v -6.254922 l 22.58211,11.697665 v 6.408792 z"
|
||||
id="path101-0" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path103-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.442022,59.409339 v 6.254922 L 44.022657,53.9656 v -6.407797 z"
|
||||
id="path105-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path107-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 21.329932,65.695134 V 59.440212 L 43.91155,71.137379 v 6.409291 z"
|
||||
id="path109-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path111-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.499049,53.929747 v -6.254424 l 22.58211,11.697166 v 6.408793 z"
|
||||
id="path113-7" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path115-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53838,106.99774 v 6.25492 L 44.119997,101.554 v -6.4078 z"
|
||||
id="path117-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path91-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.279295,89.517219 v -6.25542 l 22.58211,11.697664 v 6.409287 z"
|
||||
id="path93-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path71-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,113.536 v -6.25492 l 22.581127,11.69916 v 6.40729 z"
|
||||
id="path73-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path119-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.310758,101.45391 v -6.255424 l 22.581128,11.699154 v 6.4078 z"
|
||||
id="path121-0" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path123-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.47496,202.2801 v 6.25641 l 22.581618,-11.70016 v -6.40978 z"
|
||||
id="path125-4" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path127-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.589999,214.10972 v 6.25443 l 22.581128,-11.69817 v -6.4078 z"
|
||||
id="path129-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path131-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.36287,208.56738 v -6.25741 l 22.580635,11.69916 v 6.40979 z"
|
||||
id="path133-1" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path135-3" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path143-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.525597,178.4595 v 6.25443 l 22.581127,-11.70015 v -6.40581 z"
|
||||
id="path145-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path79-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.393351,161.05966 v -6.25442 l 22.581127,11.69816 v 6.40979 z"
|
||||
id="path81-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.640145,190.28714 v 6.25442 L 44.221271,184.8434 v -6.40779 z"
|
||||
id="path137-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path139-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.53248,196.80051 v -6.25642 l 22.582109,11.70015 v 6.4088 z"
|
||||
id="path141-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path147-6" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.412525,184.7448 v -6.25542 l 22.581617,11.69816 v 6.40781 z"
|
||||
id="path149-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.3143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path151-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 21.583117,172.97892 v -6.25542 l 22.581127,11.69816 v 6.40879 z"
|
||||
id="path153-2" /></g><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="M 102.59601,223.37141 H 96.3205 l 11.73474,22.58162 h 6.42988 z"
|
||||
id="path43-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 102.59601,223.37141 H 96.3205 l 11.73474,22.58162 h 6.42988 z"
|
||||
id="path45-4" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 90.728385,223.48645 h -6.275503 l 11.736739,22.58113 H 102.618 Z"
|
||||
id="path47-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 90.728385,223.48645 h -6.275503 l 11.736739,22.58113 H 102.618 Z"
|
||||
id="path49-5" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 114.62649,223.5366 h -6.27551 l 11.73724,22.58112 h 6.42788 z"
|
||||
id="path55-15" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 114.62649,223.5366 h -6.27551 l 11.73724,22.58112 h 6.42788 z"
|
||||
id="path57-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 108.0932,223.42893 h 6.27452 l -11.73573,22.58211 h -6.429388 z"
|
||||
id="path59-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 108.0932,223.42893 h 6.27452 l -11.73573,22.58211 h -6.429388 z"
|
||||
id="path61-3" /><path
|
||||
style="fill:#cc2027;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 126.49412,223.42205 h -6.27551 l 11.73524,22.58112 h 6.42987 z"
|
||||
id="path63-76" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 126.49412,223.42205 h -6.27551 l 11.73524,22.58112 h 6.42987 z"
|
||||
id="path65-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 120.18814,223.30898 h 6.27501 l -11.73674,22.58161 h -6.42739 z"
|
||||
id="path67-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 120.18814,223.30898 h 6.27501 l -11.73674,22.58161 h -6.42739 z"
|
||||
id="path69-2" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 78.752871,223.51742 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path75-00" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 78.752871,223.51742 h -6.274519 l 11.734742,22.58113 h 6.429376 z"
|
||||
id="path77-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 96.289531,223.25932 h 6.275509 l -11.735732,22.58064 h -6.429376 z"
|
||||
id="path51-12" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 96.289531,223.25932 h 6.275509 l -11.735732,22.58064 h -6.429376 z"
|
||||
id="path53-2" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 150.52711,223.40287 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path87-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 150.52711,223.40287 h -6.27702 l 11.73674,22.58211 h 6.42988 z"
|
||||
id="path89-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 138.55057,223.43483 h -6.27501 l 11.73624,22.58162 h 6.42838 z"
|
||||
id="path115-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 138.55057,223.43483 h -6.27501 l 11.73624,22.58162 h 6.42838 z"
|
||||
id="path117-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 156.08724,223.17574 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path91-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 156.08724,223.17574 h 6.27552 l -11.73524,22.58211 h -6.42988 z"
|
||||
id="path93-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 131.99131,223.47957 h 6.27501 l -11.73674,22.58112 h -6.42787 z"
|
||||
id="path71-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 131.99131,223.47957 h 6.27501 l -11.73674,22.58112 h -6.42787 z"
|
||||
id="path73-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 144.11221,223.20721 h 6.27552 l -11.73674,22.58113 h -6.42838 z"
|
||||
id="path119-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 144.11221,223.20721 h 6.27552 l -11.73674,22.58113 h -6.42838 z"
|
||||
id="path121-2" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="M 42.962156,223.37141 H 36.68565 l 11.737742,22.58162 h 6.430369 z"
|
||||
id="path123-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 42.962156,223.37141 H 36.68565 l 11.737742,22.58162 h 6.430369 z"
|
||||
id="path125-0" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 31.094538,223.48645 h -6.27452 l 11.735746,22.58113 h 6.428382 z"
|
||||
id="path127-22" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 31.094538,223.48645 h -6.27452 l 11.735746,22.58113 h 6.428382 z"
|
||||
id="path129-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 36.654681,223.25932 H 42.93219 L 31.195451,245.83996 H 24.765072 Z"
|
||||
id="path131-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 36.654681,223.25932 H 42.93219 L 31.195451,245.83996 H 24.765072 Z"
|
||||
id="path133-2" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 54.993639,223.5366 h -6.27451 l 11.735736,22.58112 h 6.428372 z"
|
||||
id="path135-4" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;fill-opacity:1"
|
||||
d="m 66.85927,223.42205 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path143-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 66.85927,223.42205 h -6.27452 l 11.737732,22.58112 h 6.426387 z"
|
||||
id="path145-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 84.315,223.2898 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path79-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 84.315,223.2898 h 6.27451 l -11.735736,22.58113 h -6.430378 z"
|
||||
id="path81-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 54.993639,223.5366 h -6.27451 l 11.735736,22.58112 h 6.428372 z"
|
||||
id="path137-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 48.459347,223.42893 h 6.276516 l -11.737732,22.58211 h -6.429385 z"
|
||||
id="path139-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 48.459347,223.42893 h 6.276516 l -11.737732,22.58211 h -6.429385 z"
|
||||
id="path141-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 60.553781,223.30898 h 6.275513 l -11.735735,22.58161 h -6.428393 z"
|
||||
id="path147-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 60.553781,223.30898 h 6.275513 l -11.735735,22.58161 h -6.428393 z"
|
||||
id="path149-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 72.357454,223.47957 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path151-3" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 72.357454,223.47957 h 6.275513 l -11.735735,22.58112 h -6.429376 z"
|
||||
id="path153-3" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 102.59633,20.98576 h -6.275503 l 11.734733,22.58162 h 6.42987 z"
|
||||
id="path43-9-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 102.59633,20.98576 h -6.275503 l 11.734733,22.58162 h 6.42987 z"
|
||||
id="path45-4-2" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 90.728718,21.1008 h -6.275496 l 11.736727,22.58113 h 6.428371 z"
|
||||
id="path47-3-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 90.728718,21.1008 h -6.275496 l 11.736727,22.58113 h 6.428371 z"
|
||||
id="path49-5-0" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 114.6268,21.15095 h -6.27551 l 11.73723,22.58112 h 6.42788 z"
|
||||
id="path55-15-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 114.6268,21.15095 h -6.27551 l 11.73723,22.58112 h 6.42788 z"
|
||||
id="path57-0-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 108.09352,21.04328 h 6.27451 l -11.73572,22.58211 h -6.42938 z"
|
||||
id="path59-2-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 108.09352,21.04328 h 6.27451 l -11.73572,22.58211 h -6.42938 z"
|
||||
id="path61-3-1" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 126.49442,21.0364 h -6.27551 l 11.73523,22.58112 h 6.42986 z"
|
||||
id="path63-76-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 126.49442,21.0364 h -6.27551 l 11.73523,22.58112 h 6.42986 z"
|
||||
id="path65-2-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 120.18844,20.92333 h 6.27501 l -11.73673,22.58161 h -6.42738 z"
|
||||
id="path67-2-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 120.18844,20.92333 h 6.27501 l -11.73673,22.58161 h -6.42738 z"
|
||||
id="path69-2-4" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 78.753216,21.13177 h -6.274512 l 11.73473,22.58113 h 6.429369 z"
|
||||
id="path75-00-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 78.753216,21.13177 h -6.274512 l 11.73473,22.58113 h 6.429369 z"
|
||||
id="path77-2-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 96.289858,20.87367 h 6.275512 L 90.829641,43.45431 h -6.429369 z"
|
||||
id="path51-12-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 96.289858,20.87367 h 6.275512 L 90.829641,43.45431 h -6.429369 z"
|
||||
id="path53-2-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 150.52738,21.01722 h -6.27701 l 11.73673,22.58211 h 6.42987 z"
|
||||
id="path87-0-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 150.52738,21.01722 h -6.27701 l 11.73673,22.58211 h 6.42987 z"
|
||||
id="path89-9-8" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 138.55086,21.04918 h -6.27501 l 11.73623,22.58162 h 6.42837 z"
|
||||
id="path115-0-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 138.55086,21.04918 h -6.27501 l 11.73623,22.58162 h 6.42837 z"
|
||||
id="path117-1-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 156.08751,20.79009 h 6.27551 L 150.62779,43.3722 h -6.42987 z"
|
||||
id="path91-3-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 156.08751,20.79009 h 6.27551 L 150.62779,43.3722 h -6.42987 z"
|
||||
id="path93-3-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 131.9916,21.09392 h 6.27501 l -11.73673,22.58112 h -6.42786 z"
|
||||
id="path71-3-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 131.9916,21.09392 h 6.27501 l -11.73673,22.58112 h -6.42786 z"
|
||||
id="path73-2-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="M 144.11249,20.82156 H 150.388 L 138.65128,43.40269 H 132.2229 Z"
|
||||
id="path119-5-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="M 144.11249,20.82156 H 150.388 L 138.65128,43.40269 H 132.2229 Z"
|
||||
id="path121-2-7" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 42.962538,20.98576 h -6.2765 l 11.73773,22.58162 h 6.430363 z"
|
||||
id="path123-2-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 42.962538,20.98576 h -6.2765 l 11.73773,22.58162 h 6.430363 z"
|
||||
id="path125-0-9" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 31.094932,21.1008 h -6.274514 l 11.735734,22.58113 h 6.428376 z"
|
||||
id="path127-22-0" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 31.094932,21.1008 h -6.274514 l 11.735734,22.58113 h 6.428376 z"
|
||||
id="path129-1-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 36.655069,20.87367 h 6.277503 L 31.195845,43.45431 h -6.430373 z"
|
||||
id="path131-9-2" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 36.655069,20.87367 h 6.277503 L 31.195845,43.45431 h -6.430373 z"
|
||||
id="path133-2-8" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 54.994009,21.15095 h -6.274504 l 11.735724,22.58112 h 6.428365 z"
|
||||
id="path135-4-6" /><path
|
||||
style="fill:#cc2020;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 66.859627,21.0364 h -6.274513 l 11.73772,22.58112 h 6.42638 z"
|
||||
id="path143-7-4" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 66.859627,21.0364 h -6.274513 l 11.73772,22.58112 h 6.42638 z"
|
||||
id="path145-7-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 84.31534,20.90415 h 6.274503 L 78.854119,43.48528 h -6.430371 z"
|
||||
id="path79-7-1" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 84.31534,20.90415 h 6.274503 L 78.854119,43.48528 h -6.430371 z"
|
||||
id="path81-9-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 54.994009,21.15095 h -6.274504 l 11.735724,22.58112 h 6.428365 z"
|
||||
id="path137-1-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 48.459723,21.04328 h 6.27651 l -11.73772,22.58211 h -6.429379 z"
|
||||
id="path139-1-8" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 48.459723,21.04328 h 6.27651 l -11.73772,22.58211 h -6.429379 z"
|
||||
id="path141-5-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 60.554145,20.92333 h 6.275506 L 55.093928,43.50494 h -6.428386 z"
|
||||
id="path147-4-5" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 60.554145,20.92333 h 6.275506 L 55.093928,43.50494 h -6.428386 z"
|
||||
id="path149-1-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.31641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
|
||||
d="m 72.357806,21.09392 h 6.275506 L 66.897589,43.67504 H 60.46822 Z"
|
||||
id="path151-3-7" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.31633;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
|
||||
d="m 72.357806,21.09392 h 6.275506 L 66.897589,43.67504 H 60.46822 Z"
|
||||
id="path153-3-6" /></svg>
|
After Width: | Height: | Size: 59 KiB |
808
img/playing_cards/backs/red2.svg
Normal file
|
@ -0,0 +1,808 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="E:\DAN\OneDrive\projects\Playing_Cards\backs\png-096-dpi\red.png"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="red.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 187.18163 266.90807"
|
||||
height="333"
|
||||
width="234"><title
|
||||
id="title2207">Red Card Back</title><metadata
|
||||
id="metadata448"><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>Red Card Back</dc:title><cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /><dc:date>2020-05-08</dc:date><dc:creator><cc:Agent><dc:title>Daniel S. Fowler</dc:title></cc:Agent></dc:creator><dc:rights><cc:Agent><dc:title>Public Domain</dc:title></cc:Agent></dc:rights><dc:publisher><cc:Agent><dc:title>https://tekeye.uk</dc:title></cc:Agent></dc:publisher><dc:language>en-GB</dc:language><dc:subject><rdf:Bag><rdf:li>red; back; playing; card;</rdf:li></rdf:Bag></dc:subject><dc:description>A red pattered playing card back.</dc:description></cc:Work><cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /></cc:License></rdf:RDF></metadata><defs
|
||||
id="defs446" /><sodipodi:namedview
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
showborder="false"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-y="13"
|
||||
inkscape:window-x="29"
|
||||
inkscape:cy="180.62968"
|
||||
inkscape:cx="160.55725"
|
||||
inkscape:zoom="1.7562495"
|
||||
height="303px"
|
||||
width="209px"
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
objecttolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
guidetolerance="10.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1620"
|
||||
inkscape:window-height="1003" />
|
||||
|
||||
<g
|
||||
id="g4969"><rect
|
||||
rx="7.1489577"
|
||||
ry="7.1702428"
|
||||
y="0.3029395"
|
||||
x="0.11524342"
|
||||
height="266.30219"
|
||||
width="186.95114"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.605879;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
|
||||
style="fill:#ffffff;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.28644881;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 177.50319,250.02759 c 0,3.85241 -3.10901,7.01109 -6.92147,7.01109 H 16.590573 c -3.803119,0 -6.9121236,-3.15868 -6.9121236,-7.01109 V 16.881484 c 0,-3.857394 3.1090046,-7.0120851 6.9121236,-7.0120851 H 170.58172 c 3.81246,0 6.92147,3.1546911 6.92147,7.0120851 z"
|
||||
id="path5-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 37.267911,42.899959 c 34.739679,0 69.479849,0 104.219039,0 0.81858,0 8.69242,-0.379759 8.69242,0.30002 0,3.814534 0,7.628571 0,11.443106 0,18.934623 0,37.869248 0,56.803875 0,36.74343 0,73.48735 0,110.23128 0,0.26114 0.17512,1.45325 -0.14364,1.45325 -1.55746,0 -3.11393,0 -4.67039,0 -8.0844,0 -16.16782,0 -24.25122,0 -21.936194,0 -43.8714,0 -65.807098,0 -5.785109,0 -11.570218,0 -17.354835,0 -1.47235,0 -0.684276,-4.14645 -0.684276,-5.33257 0,-16.53797 0,-33.07592 0,-49.61388 0,-39.89562 0,-79.79075 0,-119.686377 0,-1.8664 0,-3.732303 0,-5.598704"
|
||||
id="path7-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 71.54419,107.68874 c 4.504614,0 44.35743,-0.32095 44.35743,0.31696 0,17.10311 0,34.20622 0,51.31033 0,0.51431 -44.35743,0.0618 -44.35743,0.19137 0,-17.00742 0,-34.01484 0,-51.02226 0,-0.26564 0,-0.53127 0,-0.7964"
|
||||
id="path9-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 93.723395,102.97664 c -4.368349,5.10481 -8.737189,10.20913 -13.106028,15.31395 -2.945683,3.44225 -5.891367,6.884 -8.837541,10.32626 -0.683784,0.79889 -4.268487,3.87733 -4.268487,4.9872 0,1.02066 3.297907,3.8534 3.925611,4.58701 3.060303,3.57631 6.120606,7.15063 9.180417,10.72695 4.368839,5.10432 8.737679,10.20863 13.106028,15.31395 4.368347,-5.10532 8.736695,-10.20963 13.106025,-15.31395 2.94568,-3.44276 5.89137,-6.88451 8.83705,-10.32626 0.68378,-0.79938 4.26897,-3.87733 4.26897,-4.9877 0,-1.02067 -3.29789,-3.85291 -3.9256,-4.58651 -3.05981,-3.57582 -6.12061,-7.15114 -9.18042,-10.72695 -4.36933,-5.10482 -8.737678,-10.20914 -13.106025,-15.31395"
|
||||
id="path11-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 73.560616,110.04454 c 8.347579,0 16.695156,0 25.042735,0 4.490349,0 8.980689,0 13.472029,0 2.32289,0 1.8103,0.20035 1.8103,2.56063 0,10.35167 0,20.70284 0,31.05502 0,4.05275 0,8.10551 0,12.15827 0,2.14199 -1.22687,1.3456 -3.25167,1.3456 -8.80359,0 -17.606698,0 -26.409804,0 -3.227068,0 -6.454628,0 -9.681696,0 -1.588937,0 -0.981894,-1.0416 -0.981894,-2.56063 0,-14.85346 0,-29.70593 0,-44.55889"
|
||||
id="path13-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 93.723395,105.33294 c -3.95611,4.62239 -7.911728,9.24479 -11.867837,13.86718 -2.820241,3.29523 -5.640482,6.59046 -8.460723,9.88569 -0.618848,0.72364 -3.86707,3.51303 -3.86707,4.51824 0,0.917 2.961917,3.46069 3.52567,4.11954 2.780886,3.24938 5.561773,6.49876 8.342659,9.74815 4.1091,4.8013 8.2182,9.60261 12.327301,14.40392 3.956108,-4.6229 7.912215,-9.24479 11.867345,-13.86669 2.82073,-3.29522 5.64146,-6.59046 8.46121,-9.88568 0.61885,-0.72365 3.86658,-3.51353 3.86658,-4.51924 0,-0.91651 -2.96142,-3.46069 -3.52517,-4.11904 -2.78138,-3.24938 -5.56178,-6.49876 -8.34217,-9.74814 -4.1096,-4.80132 -8.219187,-9.60262 -12.327795,-14.40393"
|
||||
id="path15-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 77.592975,114.75664 c 8.756373,0 17.512746,0 26.269115,0 1.09307,0 5.99074,-0.74806 5.99074,0.60403 0,3.99693 0,7.99337 0,11.98982 0,1.75825 0.0216,25.10197 -0.0197,25.10197 -8.93346,0 -17.865948,0 -26.799417,0 -1.066506,0 -5.440757,0.73759 -5.440757,-0.60502 0,-3.99595 0,-7.99289 0,-11.98982 0,-8.36666 0,-16.73382 0,-25.10098"
|
||||
id="path17-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 93.723395,110.04454 c -3.360381,3.92667 -6.720763,7.85334 -10.081144,11.78001 -2.252552,2.63189 -4.505105,5.26379 -6.757656,7.8957 -0.53227,0.62196 -3.323979,3.01962 -3.323979,3.8838 0,0.77547 2.50393,2.92644 2.980119,3.48262 2.367171,2.76596 4.734344,5.53192 7.101516,8.29689 3.360381,3.92716 6.720762,7.85433 10.081144,11.7805 3.360872,-3.92617 6.720765,-7.85334 10.080655,-11.7805 2.25304,-2.63141 4.50608,-5.2628 6.75716,-7.8952 0.53325,-0.62197 3.32447,-3.02014 3.32447,-3.88431 0,-0.77447 -2.50393,-2.92544 -2.98012,-3.48212 -2.36717,-2.76596 -4.73434,-5.53142 -7.10151,-8.29738 -3.35989,-3.92667 -6.719783,-7.85334 -10.080655,-11.78001"
|
||||
id="path19-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 79.6094,117.11245 c 8.601415,0 17.203321,0 25.80424,0 3.10606,0 2.42326,0.27859 2.42326,3.43029 0,5.2922 0,10.5844 0,15.87611 0,4.33085 0,8.66169 0,12.99155 0,1.52302 -5.27842,0.68576 -6.51022,0.68576 -5.453547,0 -10.908079,0 -16.362118,0 -1.90279,0 -5.355162,1.12531 -5.355162,-1.19411 0,-10.59636 0,-21.19274 0,-31.7896"
|
||||
id="path21-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 93.723395,112.40034 c -2.947159,3.44425 -5.89481,6.88849 -8.842462,10.33273 -2.127109,2.48538 -4.254219,4.97126 -6.381822,7.45664 -0.467334,0.54621 -2.922069,2.65482 -2.922069,3.41434 0,0.67081 2.168432,2.53372 2.580178,3.01514 2.087756,2.43903 4.175019,4.87807 6.262282,7.3171 3.101626,3.62415 6.202759,7.24831 9.303893,10.87147 2.94765,-3.44375 5.895301,-6.88849 8.842955,-10.33224 2.12711,-2.48488 4.25422,-4.97076 6.38133,-7.45662 0.46733,-0.54622 2.92207,-2.65533 2.92207,-3.41485 0,-0.66981 -2.16843,-2.53372 -2.57969,-3.01465 -2.08775,-2.43953 -4.17551,-4.87856 -6.26327,-7.31758 -3.101129,-3.62367 -6.202262,-7.24732 -9.303395,-10.87148"
|
||||
id="path23-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 93.723395,114.75664 c -2.612155,3.05252 -5.224308,6.10505 -7.836954,9.15708 -1.836871,2.14698 -3.674234,4.29346 -5.511596,6.43995 -0.445198,0.5203 -2.78187,2.52774 -2.78187,3.25038 0,0.63293 2.046434,2.39119 2.435551,2.8457 1.800467,2.10412 3.600935,4.20725 5.401403,6.31237 2.764652,3.22945 5.529304,6.45989 8.293466,9.69034 2.612153,-3.05303 5.224308,-6.10506 7.837445,-9.15808 1.83589,-2.14599 3.67374,-4.29297 5.51061,-6.43895 0.44569,-0.5213 2.78138,-2.52774 2.78138,-3.25138 0,-0.63194 -2.04643,-2.39118 -2.43407,-2.84521 -1.80047,-2.10412 -3.60192,-4.20774 -5.40239,-6.31187 -2.763671,-3.22994 -5.528324,-6.45989 -8.292975,-9.69033"
|
||||
id="path25-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 81.625334,119.46824 c 8.030282,0 16.061056,0 24.091336,0 0.21055,0 0.10429,23.12543 0.10429,25.33122 0,0.44654 0.31484,2.59153 0,2.94039 -0.35222,0.38973 -3.28413,0 -3.78,0 -5.36598,0 -10.732455,0 -16.098439,0 -1.403971,0 -2.808435,0 -4.212406,0 -0.235635,0 -0.104781,-2.24067 -0.104781,-2.50182 0,-5.27277 0,-10.54554 0,-15.81781 0,-3.31716 0,-6.63482 0,-9.95198"
|
||||
id="path27-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 93.723395,119.46824 c -2.016426,2.35631 -4.03236,4.7121 -6.048785,7.06791 -1.386262,1.6197 -2.772524,3.23942 -4.158785,4.85962 -0.30057,0.35135 -1.890491,1.71888 -1.890491,2.20828 0,0.4904 1.589921,1.85792 1.890491,2.20878 1.386261,1.61971 2.772523,3.23941 4.158785,4.85913 2.016425,2.35629 4.032359,4.7116 6.048785,7.06789 2.016917,-2.35629 4.031866,-4.7116 6.048784,-7.06789 1.386261,-1.61972 2.772521,-3.23942 4.157801,-4.85913 0.30106,-0.35086 1.89098,-1.71838 1.89098,-2.20878 0,-0.4894 -1.58992,-1.85693 -1.89098,-2.20828 -1.38528,-1.6202 -2.77154,-3.23992 -4.157801,-4.85962 -2.016918,-2.35581 -4.031867,-4.7116 -6.048784,-7.06791"
|
||||
id="path29-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 123.96732,105.33294 c -1.34396,0 -2.68791,0 -4.03188,0 1.34397,1.57036 2.68792,3.14123 4.03188,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path31-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 123.96732,112.40034 c -1.34396,-1.57037 -2.68791,-3.14123 -4.03188,-4.7116 0,1.52651 0,3.05302 0,4.58003 0,0.2766 3.51239,0.13157 4.03188,0.13157"
|
||||
id="path33-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 63.479474,105.33294 c 1.343955,0 2.68791,0 4.031866,0 -1.343956,1.57036 -2.687911,3.14123 -4.031866,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path35-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 63.479474,112.40034 c 1.343955,-1.57037 2.68791,-3.14123 4.031866,-4.7116 0,1.52651 0,3.05302 0,4.58003 0,0.2766 -3.511896,0.13157 -4.031866,0.13157"
|
||||
id="path37-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 67.51134,154.80776 c -1.343956,0 -2.687911,0 -4.031867,0 1.343956,1.57087 2.687911,3.14173 4.031867,4.7116 0,-1.56987 0,-3.14073 0,-4.7116"
|
||||
id="path39-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 67.51134,161.87566 c -1.343956,-1.57086 -2.687911,-3.14173 -4.031867,-4.7116 0,1.52601 0,3.05302 0,4.58003 0,0.2771 3.512388,0.13157 4.031867,0.13157"
|
||||
id="path41-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 119.93544,154.80776 c 1.34397,0 2.68792,0 4.03188,0 -1.34396,1.57087 -2.68791,3.14173 -4.03188,4.7116 0,-1.56987 0,-3.14073 0,-4.7116"
|
||||
id="path43-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 119.93544,161.87566 c 1.34397,-1.57086 2.68792,-3.14173 4.03188,-4.7116 0,1.52601 0,3.05302 0,4.58003 0,0.2771 -3.51239,0.13157 -4.03188,0.13157"
|
||||
id="path45-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 67.51134,138.31665 c -1.343956,0 -2.687911,0 -4.031867,0 1.343956,1.57086 2.687911,3.14074 4.031867,4.7116 0,-1.57086 0,-3.14074 0,-4.7116"
|
||||
id="path47-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 67.51134,145.38356 c -1.343956,-1.56988 -2.687911,-3.14074 -4.031867,-4.7116 0,1.527 0,3.05302 0,4.58002 0,0.2771 3.512388,0.13158 4.031867,0.13158"
|
||||
id="path49-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 63.479474,121.82455 c 1.343955,0 2.68791,0 4.031866,0 -1.343956,1.57036 -2.687911,3.14123 -4.031866,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path51-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 63.479474,128.89245 c 1.343955,-1.57087 2.68791,-3.14124 4.031866,-4.71211 0,1.52652 0,3.05353 0,4.58004 0,0.27659 -3.511896,0.13207 -4.031866,0.13207"
|
||||
id="path53-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 123.96732,121.82455 c -1.34396,0 -2.68791,0 -4.03188,0 1.34397,1.57036 2.68792,3.14123 4.03188,4.7116 0,-1.57037 0,-3.14124 0,-4.7116"
|
||||
id="path55-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 123.96732,128.89245 c -1.34396,-1.57087 -2.68791,-3.14124 -4.03188,-4.71211 0,1.52652 0,3.05353 0,4.58004 0,0.27659 3.51239,0.13207 4.03188,0.13207"
|
||||
id="path57-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 119.93544,138.31665 c 1.34397,0 2.68792,0 4.03188,0 -1.34396,1.57086 -2.68791,3.14074 -4.03188,4.7116 0,-1.57086 0,-3.14074 0,-4.7116"
|
||||
id="path59-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 119.93544,145.38356 c 1.34397,-1.56988 2.68792,-3.14074 4.03188,-4.7116 0,1.527 0,3.05302 0,4.58002 0,0.2771 -3.51239,0.13158 -4.03188,0.13158"
|
||||
id="path61-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.659577,34.948444 c -0.823984,-2.066248 -1.695686,-4.170871 -2.260914,-6.329815 -0.509641,-1.945642 -0.915484,-6.69562 1.639606,-7.629568 2.451292,-0.895075 3.342179,3.398395 3.310203,5.085382 -0.04821,2.534218 -1.237206,5.123257 -2.132521,7.452646 -0.182014,0.474449 -0.367964,0.950394 -0.556374,1.421355"
|
||||
id="path63-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.646787,34.995291 c -2.026264,-0.864176 -4.28226,-1.710909 -6.07584,-3.023122 -1.591889,-1.165191 -4.127302,-4.618407 -2.648065,-6.730505 1.493011,-2.132032 4.60841,0.311482 5.614901,1.751776 1.443818,2.064752 2.122191,4.889023 2.880256,7.271736 0.07723,0.242707 0.15299,0.488404 0.228748,0.730114"
|
||||
id="path65-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.653182,34.995291 c 2.026264,-0.864674 4.281768,-1.710909 6.075841,-3.023122 1.591888,-1.164693 4.126809,-4.618905 2.648065,-6.730505 -1.493012,-2.132531 -4.608903,0.311482 -5.615393,1.751776 -1.471858,2.105619 -2.161054,5.000658 -2.930926,7.43271 -0.05952,0.188883 -0.119047,0.381255 -0.177587,0.569141"
|
||||
id="path67-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 74.461342,35.278365 c -1.639606,-0.492889 -3.670297,-0.329921 -4.71811,1.20905 -0.558343,0.820319 -0.685261,3.998931 1.092086,3.380952 0.309916,-0.107649 0.563261,-1.501095 0.941064,-1.822047 0.720188,-0.612 2.069062,-0.593061 2.943716,-0.66383 1.176699,-0.0942 2.398655,0.0329 3.555186,-0.129078 0.0015,-0.0069 0.0034,-0.01345 0.0069,-0.01993 -1.096023,-0.86019 -2.493108,-1.538971 -3.820829,-1.955112"
|
||||
id="path69-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 84.757951,35.278365 c 1.639606,-0.493387 3.670297,-0.329921 4.717619,1.20905 0.558341,0.820319 0.685751,3.99943 -1.092087,3.380952 -0.309916,-0.107649 -0.562769,-1.500597 -0.940572,-1.822047 -0.719695,-0.612 -2.069063,-0.593061 -2.943716,-0.66383 -1.177191,-0.0942 -2.398655,0.0329 -3.555678,-0.129078 -0.0015,-0.0069 -0.0034,-0.01345 -0.0069,-0.01993 1.096515,-0.86019 2.493108,-1.538971 3.821321,-1.955112"
|
||||
id="path71-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 78.265445,39.856405 c 0.23957,2.075717 3.792296,1.066515 2.093167,-1.790149 -1.193426,-2.00744 -1.87721,-0.129079 -2.093167,1.790149"
|
||||
id="path73-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.88707,34.948444 c -0.82447,-2.06575 -1.69617,-4.171369 -2.26091,-6.329815 -0.50964,-1.945642 -0.91499,-6.695121 1.63911,-7.629568 2.45179,-0.896071 3.34316,3.398893 3.3107,5.085382 -0.0483,2.534717 -1.23672,5.123257 -2.13203,7.452646 -0.183,0.474449 -0.36797,0.949895 -0.55687,1.421355"
|
||||
id="path75-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.87428,34.995291 c -2.02577,-0.864176 -4.28275,-1.710909 -6.07535,-3.023122 -1.59188,-1.165191 -4.127297,-4.618905 -2.648552,-6.730505 1.493502,-2.131534 4.608412,0.310984 5.615882,1.751776 1.44333,2.064752 2.12121,4.889521 2.87878,7.271736 0.0777,0.242707 0.15349,0.488404 0.22924,0.730114"
|
||||
id="path77-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.88117,34.995291 c 2.02577,-0.864674 4.28177,-1.710909 6.07534,-3.023122 1.59288,-1.165191 4.12731,-4.618407 2.64758,-6.730505 -1.49252,-2.132032 -4.6084,0.311482 -5.6149,1.751776 -1.47284,2.105619 -2.15958,5.000658 -2.92994,7.43271 -0.06,0.189381 -0.11905,0.380756 -0.17808,0.569141"
|
||||
id="path79-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 102.68835,35.278365 c -1.63912,-0.493387 -3.66981,-0.329423 -4.716639,1.20905 -0.558834,0.820818 -0.686736,3.99943 1.092087,3.380952 0.308933,-0.107649 0.562769,-1.501095 0.940572,-1.822047 0.7192,-0.612 2.06906,-0.593061 2.94372,-0.66383 1.1767,-0.0942 2.39865,0.0329 3.55469,-0.129078 9.8e-4,-0.0069 0.004,-0.01345 0.007,-0.01993 -1.09701,-0.86019 -2.49212,-1.538971 -3.82132,-1.955112"
|
||||
id="path81-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 112.98545,35.278365 c 1.63911,-0.493387 3.67078,-0.329423 4.7186,1.20905 0.55785,0.820319 0.68477,3.998931 -1.09208,3.380952 -0.31091,-0.107649 -0.56376,-1.501095 -0.94156,-1.822047 -0.71921,-0.612 -2.06906,-0.593061 -2.94372,-0.66383 -1.1767,-0.09469 -2.39866,0.0329 -3.55568,-0.129078 -9.8e-4,-0.0069 -0.003,-0.01345 -0.007,-0.01993 1.09702,-0.859691 2.49312,-1.538971 3.82133,-1.955112"
|
||||
id="path83-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 106.49294,39.856405 c 0.24006,2.075717 3.79279,1.066515 2.09366,-1.790149 -1.19343,-2.00794 -1.87819,-0.128581 -2.09366,1.790149"
|
||||
id="path85-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 136.11507,34.948444 c -0.8235,-2.066746 -1.69619,-4.170871 -2.26191,-6.329815 -0.50865,-1.945642 -0.91499,-6.69562 1.64108,-7.629568 2.4508,-0.895573 3.3412,3.398893 3.30972,5.085382 -0.0492,2.534717 -1.2377,5.122759 -2.13302,7.452646 -0.18102,0.474449 -0.36796,0.950394 -0.55587,1.421355"
|
||||
id="path87-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 136.10227,34.995291 c -2.02676,-0.864674 -4.28177,-1.710909 -6.07633,-3.023122 -1.59189,-1.165191 -4.12632,-4.618905 -2.64757,-6.730505 1.49252,-2.132032 4.60841,0.311482 5.61489,1.751776 1.47186,2.105619 2.16056,5.00016 2.92995,7.43271 0.0609,0.189381 0.12003,0.380756 0.17906,0.569141"
|
||||
id="path89-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 136.10817,34.995291 c 2.02676,-0.864176 4.28276,-1.710909 6.07634,-3.023122 1.59189,-1.165191 4.12631,-4.618905 2.64856,-6.730505 -1.49351,-2.132032 -4.6094,0.311482 -5.61589,1.751776 -1.47186,2.105619 -2.16056,5.000658 -2.92995,7.43271 -0.06,0.188883 -0.12003,0.381255 -0.17906,0.569141"
|
||||
id="path91-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 130.91732,35.278365 c -1.6401,-0.493387 -3.67079,-0.329423 -4.71861,1.20905 -0.55883,0.820818 -0.68574,3.998931 1.0921,3.380952 0.30991,-0.107649 0.56276,-1.501095 0.94056,-1.822047 0.72019,-0.612 2.07005,-0.593061 2.94371,-0.66383 1.17769,-0.0942 2.39866,0.0329 3.55569,-0.129078 0.002,-0.0069 0.004,-0.01345 0.007,-0.01993 -1.09701,-0.86019 -2.49213,-1.538971 -3.82034,-1.955112"
|
||||
id="path93-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 141.21246,35.278365 c 1.64107,-0.492889 3.67177,-0.329921 4.71859,1.20905 0.55884,0.820319 0.68674,3.998433 -1.09209,3.380952 -0.30893,-0.107649 -0.56276,-1.500597 -0.94057,-1.822047 -0.72018,-0.612 -2.06906,-0.593061 -2.94371,-0.66383 -1.1767,-0.0942 -2.39865,0.0329 -3.55568,-0.129078 -0.002,-0.0069 -0.004,-0.01345 -0.006,-0.01993 1.09602,-0.86019 2.49212,-1.538971 3.81935,-1.955112"
|
||||
id="path95-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 134.72093,39.856405 c 0.24006,2.076714 3.79181,1.065518 2.09366,-1.790149 -1.19442,-2.00794 -1.87721,-0.128581 -2.09366,1.790149"
|
||||
id="path97-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.432082,34.948444 c -0.824477,-2.06575 -1.696179,-4.171369 -2.261407,-6.329815 -0.509641,-1.945642 -0.914992,-6.69562 1.639606,-7.629568 2.451784,-0.896071 3.342179,3.398893 3.310204,5.085382 -0.04821,2.534717 -1.237207,5.122759 -2.132522,7.452646 -0.182014,0.474449 -0.367964,0.949895 -0.555881,1.421355"
|
||||
id="path99-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.418799,34.995291 c -2.026756,-0.864674 -4.281768,-1.710909 -6.07584,-3.023122 -1.591889,-1.165191 -4.12681,-4.618407 -2.648065,-6.730505 1.493011,-2.132032 4.608902,0.311482 5.615393,1.751776 1.443326,2.064752 2.12219,4.889521 2.879764,7.271736 0.07723,0.242707 0.152991,0.488404 0.228748,0.730114"
|
||||
id="path101-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.425195,34.995291 c 2.026263,-0.864176 4.282259,-1.710909 6.07584,-3.023122 1.591889,-1.165191 4.127301,-4.618407 2.648064,-6.730505 -1.493502,-2.132032 -4.608409,0.311482 -5.615392,1.751776 -1.443326,2.064752 -2.121699,4.889521 -2.879764,7.271736 -0.07723,0.242707 -0.152991,0.487906 -0.228748,0.730114"
|
||||
id="path103-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 46.233354,35.278365 c -1.639606,-0.493387 -3.670297,-0.329423 -4.717619,1.20905 -0.558341,0.820319 -0.685752,3.99943 1.092088,3.380952 0.309424,-0.107649 0.562768,-1.501095 0.940571,-1.822047 0.719696,-0.612 2.069062,-0.593061 2.943716,-0.66383 1.177191,-0.0942 2.399148,0.0329 3.555677,-0.129078 9.85e-4,-0.0069 0.0034,-0.01345 0.0069,-0.01993 -1.096514,-0.859691 -2.493106,-1.539469 -3.821321,-1.955112"
|
||||
id="path105-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 56.529471,35.278365 c 1.640099,-0.492889 3.67079,-0.329921 4.718603,1.20905 0.558342,0.820319 0.685752,3.998931 -1.092087,3.380952 -0.309917,-0.107649 -0.563262,-1.501095 -0.941065,-1.822047 -0.719694,-0.612 -2.069061,-0.593061 -2.943715,-0.66383 -1.176698,-0.0942 -2.398655,0.0329 -3.555185,-0.129078 -0.0015,-0.0069 -0.0039,-0.01345 -0.0069,-0.01993 1.096514,-0.86019 2.492615,-1.538473 3.820336,-1.955112"
|
||||
id="path107-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 50.037457,39.856405 c 0.240063,2.075717 3.792296,1.066515 2.093658,-1.790149 -1.193424,-2.00744 -1.8777,-0.128581 -2.093658,1.790149"
|
||||
id="path109-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.407709,231.08251 c -0.823985,2.06624 -1.696179,4.17136 -2.261408,6.32931 -0.509148,1.94464 -0.915483,6.69711 1.640099,7.63006 2.451785,0.89508 3.341687,-3.39889 3.309712,-5.08538 -0.04821,-2.53571 -1.237698,-5.12325 -2.132029,-7.45264 -0.182507,-0.47445 -0.367965,-0.9499 -0.556374,-1.42135"
|
||||
id="path111-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.394426,231.03566 c -2.026755,0.86318 -4.281768,1.71041 -6.075348,3.02312 -1.59238,1.16519 -4.127302,4.6179 -2.648557,6.73 1.493503,2.13204 4.608902,-0.31098 5.615393,-1.75127 1.443818,-2.06526 2.121699,-4.89003 2.879765,-7.27224 0.07723,-0.2422 0.15299,-0.48841 0.228747,-0.72961"
|
||||
id="path113-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 79.401313,231.03566 c 2.026756,0.86318 4.281768,1.71041 6.075349,3.02312 1.592381,1.16519 4.126809,4.6179 2.648065,6.73 -1.493011,2.13204 -4.60841,-0.31098 -5.615393,-1.75127 -1.471858,-2.10612 -2.160561,-5.00066 -2.929942,-7.43272 -0.06001,-0.18937 -0.119047,-0.38075 -0.178079,-0.56913"
|
||||
id="path115-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 74.208981,230.75258 c -1.639606,0.49239 -3.670298,0.32893 -4.717618,-1.21004 -0.558343,-0.81933 -0.685752,-3.99893 1.092086,-3.38095 0.309425,0.10764 0.563261,1.50109 0.940573,1.82204 0.720187,0.612 2.069062,0.59405 2.944207,0.66383 1.176699,0.0947 2.39964,-0.0318 3.555186,0.12958 9.83e-4,0.008 0.0034,0.014 0.0069,0.0199 -1.096023,0.86019 -2.493107,1.53897 -3.821321,1.95561"
|
||||
id="path117-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 84.505591,230.75258 c 1.639605,0.49239 3.670788,0.32893 4.71811,-1.21004 0.558341,-0.81933 0.685752,-3.99794 -1.092087,-3.38095 -0.309424,0.10764 -0.563261,1.50109 -0.941064,1.82204 -0.720187,0.612 -2.06857,0.59405 -2.943715,0.66383 -1.1767,0.0947 -2.39964,-0.0318 -3.555186,0.12958 -0.0015,0.007 -0.0039,0.014 -0.0069,0.0199 1.095531,0.86019 2.493107,1.53897 3.820829,1.95561"
|
||||
id="path119-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 78.013084,226.17454 c 0.239571,-2.07622 3.792297,-1.06751 2.093659,1.78915 -1.193425,2.00844 -1.876225,0.13058 -2.093659,-1.78915"
|
||||
id="path121-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.6352,231.08251 c -0.82447,2.06624 -1.69617,4.17136 -2.26091,6.32931 -0.50964,1.94464 -0.91499,6.69611 1.63911,7.63006 2.45179,0.89508 3.34316,-3.39889 3.3107,-5.08538 -0.0482,-2.53372 -1.23671,-5.12524 -2.13203,-7.45264 -0.183,-0.47445 -0.36796,-0.9499 -0.55687,-1.42135"
|
||||
id="path123-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.62241,231.03566 c -2.02675,0.86318 -4.28275,1.71041 -6.07534,3.02312 -1.591893,1.16519 -4.127306,4.6179 -2.64856,6.73 1.4935,2.13204 4.60841,-0.31098 5.61588,-1.75127 1.47186,-2.10612 2.15958,-5.00066 2.92994,-7.43272 0.059,-0.18838 0.11905,-0.38175 0.17808,-0.56913"
|
||||
id="path125-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 107.6293,231.03566 c 2.02676,0.86318 4.28177,1.71041 6.07535,3.02312 1.59287,1.16519 4.1273,4.6179 2.64757,6.73 -1.4935,2.13204 -4.6084,-0.31098 -5.6149,-1.75127 -1.47186,-2.10612 -2.16056,-5.00066 -2.93092,-7.43272 -0.059,-0.18838 -0.11807,-0.38175 -0.1771,-0.56913"
|
||||
id="path127-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 102.43648,230.75258 c -1.63912,0.49239 -3.669809,0.32893 -4.717622,-1.21004 -0.55785,-0.81933 -0.685752,-3.99893 1.092087,-3.38095 0.309917,0.10764 0.563754,1.50109 0.941557,1.82204 0.720188,0.612 2.068078,0.59405 2.943718,0.66383 1.17571,0.0947 2.39964,-0.0318 3.55469,0.12958 9.8e-4,0.007 0.004,0.014 0.007,0.0199 -1.09602,0.86019 -2.4931,1.53897 -3.82132,1.95561"
|
||||
id="path129-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 112.73358,230.75258 c 1.63911,0.49239 3.66981,0.32893 4.7186,-1.21004 0.55687,-0.81933 0.68477,-3.99794 -1.09208,-3.38095 -0.31091,0.10764 -0.56376,1.50109 -0.94156,1.82204 -0.72019,0.612 -2.06906,0.59405 -2.94471,0.66383 -1.17571,0.0947 -2.39865,-0.0318 -3.55469,0.12958 -9.8e-4,0.008 -0.003,0.014 -0.007,0.0199 1.09602,0.86019 2.49312,1.53897 3.82133,1.95561"
|
||||
id="path131-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 106.24009,226.17454 c 0.24104,-2.07622 3.79279,-1.06751 2.09464,1.78915 -1.19342,2.00844 -1.87622,0.13058 -2.09464,-1.78915"
|
||||
id="path133-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 135.8632,231.08251 c -0.82448,2.06624 -1.69619,4.17136 -2.2619,6.32931 -0.50866,1.94464 -0.915,6.69711 1.64107,7.63006 2.45179,0.89508 3.3412,-3.39889 3.30972,-5.08538 -0.0483,-2.53372 -1.23573,-5.12524 -2.13302,-7.45264 -0.18201,-0.47445 -0.36796,-0.9499 -0.55587,-1.42135"
|
||||
id="path135-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 135.8504,231.03566 c -2.02675,0.86318 -4.28275,1.71041 -6.07633,3.02312 -1.59189,1.16519 -4.12631,4.6179 -2.64856,6.73 1.49351,2.13204 4.6094,-0.31098 5.61589,-1.75127 1.44431,-2.06526 2.12219,-4.89003 2.88075,-7.27224 0.0768,-0.2422 0.15151,-0.48841 0.22825,-0.72961"
|
||||
id="path137-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 135.85631,231.03566 c 2.02675,0.86318 4.28275,1.71041 6.07633,3.02312 1.59189,1.16519 4.12631,4.6179 2.64757,6.73 -1.49252,2.13204 -4.60841,-0.31098 -5.6149,-1.75127 -1.44431,-2.06526 -2.12121,-4.89003 -2.88075,-7.27224 -0.0768,-0.2422 -0.1525,-0.48841 -0.22825,-0.72961"
|
||||
id="path139-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 130.66447,230.75258 c -1.6401,0.49239 -3.6708,0.32893 -4.71763,-1.21004 -0.55883,-0.81933 -0.68673,-3.99794 1.0921,-3.38095 0.30893,0.10764 0.56276,1.50109 0.94057,1.82204 0.72018,0.612 2.06906,0.59405 2.94371,0.66383 1.1767,0.0947 2.40063,-0.0318 3.55568,0.12958 9.8e-4,0.008 0.004,0.014 0.007,0.0199 -1.09701,0.86019 -2.49213,1.53897 -3.82132,1.95561"
|
||||
id="path141-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 140.96059,230.75258 c 1.64009,0.49239 3.67177,0.32893 4.7186,-1.21004 0.55883,-0.81933 0.68574,-3.99794 -1.0921,-3.38095 -0.30893,0.10764 -0.56276,1.50109 -0.94057,1.82204 -0.72018,0.612 -2.06807,0.59405 -2.94371,0.66383 -1.1767,0.0947 -2.39964,-0.0318 -3.55568,0.12958 -0.002,0.008 -0.004,0.014 -0.007,0.0199 1.09505,0.86019 2.49311,1.53897 3.82035,1.95561"
|
||||
id="path143-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 134.46906,226.17454 c 0.23908,-2.07622 3.79181,-1.06751 2.09366,1.78915 -1.19441,2.00844 -1.87721,0.13058 -2.09366,-1.78915"
|
||||
id="path145-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.180213,231.08251 c -0.824969,2.06524 -1.69667,4.17136 -2.2619,6.32931 -0.509148,1.94464 -0.914991,6.69711 1.640099,7.63006 2.451293,0.89508 3.342671,-3.39889 3.310204,-5.08538 -0.04821,-2.53571 -1.237699,-5.12325 -2.132522,-7.45264 -0.182014,-0.47445 -0.367964,-0.9499 -0.555881,-1.42135"
|
||||
id="path147-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.166931,231.03566 c -2.027248,0.86318 -4.28226,1.71041 -6.075841,3.02312 -1.592381,1.16519 -4.126809,4.6179 -2.648557,6.73 1.493503,2.13204 4.608902,-0.31197 5.615886,-1.75127 1.443325,-2.06526 2.121206,-4.89003 2.879763,-7.27224 0.07723,-0.24121 0.152992,-0.48841 0.228749,-0.72961"
|
||||
id="path149-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 51.173326,231.03566 c 2.026755,0.86318 4.281768,1.7114 6.075348,3.02312 1.592382,1.1642 4.127302,4.6179 2.648557,6.73 -1.493503,2.13204 -4.60841,-0.31098 -5.615393,-1.75127 -1.471858,-2.10612 -2.160561,-5.00066 -2.930434,-7.43272 -0.06001,-0.18838 -0.119047,-0.38175 -0.178078,-0.56913"
|
||||
id="path151-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 45.981485,230.75258 c -1.640097,0.49239 -3.670789,0.32893 -4.71811,-1.21004 -0.558342,-0.81933 -0.685752,-3.99893 1.092086,-3.38095 0.309425,0.10764 0.563754,1.50109 0.941064,1.82204 0.720188,0.612 2.068571,0.59405 2.943716,0.66383 1.176699,0.0947 2.39964,-0.0318 3.555186,0.12958 0.0015,0.008 0.0039,0.014 0.0069,0.0199 -1.096023,0.86019 -2.492615,1.53897 -3.820829,1.95561"
|
||||
id="path153-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 56.277602,230.75258 c 1.640099,0.49239 3.67079,0.32993 4.718603,-1.21004 0.55785,-0.81933 0.685261,-3.99893 -1.092579,-3.38095 -0.309425,0.10764 -0.563261,1.50109 -0.940572,1.82204 -0.720187,0.612 -2.06857,0.59405 -2.943716,0.66383 -1.176698,0.0947 -2.399639,-0.0318 -3.555677,0.12958 -9.84e-4,0.008 -0.0034,0.014 -0.0069,0.0199 1.096021,0.86019 2.493106,1.53897 3.820828,1.95561"
|
||||
id="path155-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 49.785096,226.17454 c 0.240554,-2.07622 3.791805,-1.06751 2.094151,1.78915 -1.193917,2.00944 -1.875733,0.13058 -2.094151,-1.78915"
|
||||
id="path157-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.04771,232.48492 c 1.9205,1.0416 3.99743,2.3244 6.12258,2.88058 1.93427,0.50635 5.5962,0.018 5.94842,-2.57159 0.34042,-2.49883 -3.14933,-3.62117 -5.03147,-3.39989 -2.34749,0.2761 -4.80911,1.87687 -6.86539,2.99222 -0.057,0.0309 -0.11707,0.0668 -0.17414,0.0987"
|
||||
id="path159-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.01131,232.49987 c 0.82644,2.65233 3.39039,12.77924 8.00667,10.38606 2.2491,-1.16519 0.43979,-5.02259 -0.7379,-6.3343 -1.66174,-1.84796 -4.41754,-2.81879 -6.645,-3.78364 -0.20661,-0.0907 -0.41716,-0.17941 -0.62377,-0.26812"
|
||||
id="path161-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,232.49189 c 0.82842,-2.65432 3.39236,-12.78521 8.01061,-10.38606 2.24714,1.1672 0.44077,5.01263 -0.7379,6.32634 -1.66272,1.84995 -4.41852,2.82476 -6.64697,3.79359 -0.20858,0.0897 -0.41912,0.17743 -0.62574,0.26613"
|
||||
id="path163-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,238.55907 c 0.37386,1.70643 0.45159,4.26606 -1.03503,5.51199 -0.96714,0.81134 -3.4691,0.54422 -2.89354,-1.27583 0.10725,-0.3369 1.27016,-0.68975 1.55942,-1.1024 0.59819,-0.85521 0.51162,-2.45199 0.56769,-3.43676 0.0778,-1.37551 -0.0462,-2.79388 0.11118,-4.15444 0.006,-0.002 0.0118,-0.004 0.0167,-0.008 0.77627,1.33763 1.33314,2.95036 1.67356,4.46541"
|
||||
id="path165-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,226.52738 c 0.37485,-1.7084 0.45454,-4.26705 -1.03503,-5.51297 -0.96714,-0.80936 -3.47205,-0.54622 -2.89354,1.27583 0.10626,0.3349 1.27214,0.68775 1.55942,1.1004 0.59819,0.85421 0.51162,2.45398 0.56769,3.43876 0.0778,1.37651 -0.0462,2.79387 0.11118,4.15443 0.006,0.002 0.0118,0.005 0.0167,0.008 0.77431,-1.33565 1.33707,-2.95037 1.67356,-4.46442"
|
||||
id="path167-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,234.1136 c -1.84178,-0.45053 -1.05469,-4.48535 1.53188,-2.44601 1.55549,1.226 0.38272,2.11509 -1.53188,2.44601"
|
||||
id="path169-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.05066,199.50071 c 1.9205,1.04358 3.99842,2.32441 6.12356,2.88258 1.93034,0.50634 5.59719,0.018 5.94449,-2.5726 0.33452,-2.49684 -3.14836,-3.62016 -5.03147,-3.39988 -2.34552,0.27311 -4.80911,1.87587 -6.86145,2.99222 -0.058,0.0309 -0.11806,0.0667 -0.17513,0.0977"
|
||||
id="path171-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,199.51666 c 0.83038,2.65333 3.39236,12.78023 8.01061,10.38606 2.24813,-1.16619 0.44077,-5.0196 -0.7379,-6.33032 -1.66469,-1.84895 -4.41951,-2.82078 -6.64697,-3.78861 -0.20858,-0.0907 -0.41912,-0.17943 -0.62574,-0.26713"
|
||||
id="path173-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.01131,199.50868 c 0.82644,-2.65532 3.38842,-12.78023 8.00667,-10.38606 2.2491,1.16619 0.44077,5.01861 -0.7379,6.32932 -1.66272,1.84996 -4.41754,2.82177 -6.645,3.78962 -0.20661,0.0897 -0.41716,0.17841 -0.62377,0.26712"
|
||||
id="path175-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,205.57087 c 0.37485,1.7124 0.45454,4.26308 -1.03503,5.51299 -0.96517,0.81035 -3.47303,0.55518 -2.89354,-1.27185 0.10626,-0.33391 1.27214,-0.68775 1.55942,-1.09941 0.59819,-0.8552 0.51162,-2.45397 0.56769,-3.43975 0.0778,-1.37651 -0.0462,-2.79388 0.11118,-4.15443 0.006,-0.002 0.0118,-0.005 0.0167,-0.008 0.77431,1.33364 1.33608,2.94738 1.67356,4.46043"
|
||||
id="path177-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,193.54417 c 0.37386,-1.70642 0.45159,-4.26605 -1.03503,-5.51298 -0.96615,-0.81035 -3.475,-0.54522 -2.89354,1.27583 0.10725,0.33391 1.27115,0.68676 1.55942,1.09941 0.59819,0.8562 0.51162,2.45398 0.56769,3.43975 0.0778,1.37651 -0.0462,2.79388 0.11118,4.15443 0.006,0.002 0.0118,0.005 0.0167,0.008 0.77627,-1.33663 1.33314,-2.95036 1.67356,-4.46442"
|
||||
id="path179-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,201.13038 c -1.84178,-0.44953 -1.05273,-4.49032 1.53188,-2.45099 1.55745,1.22998 0.38272,2.11908 -1.53188,2.45099"
|
||||
id="path181-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.04771,166.5165 c 1.91854,1.04558 4.00137,2.32739 6.12651,2.88257 1.93428,0.50635 5.59227,0.018 5.94449,-2.57159 0.33944,-2.49784 -3.14836,-3.62515 -5.03147,-3.40487 -2.34847,0.27609 -4.8101,1.88085 -6.86539,2.9962 -0.057,0.0318 -0.11609,0.0667 -0.17414,0.0977"
|
||||
id="path183-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,166.53244 c 0.83038,2.65532 3.39236,12.78123 8.01061,10.38606 2.24813,-1.16519 0.44077,-5.0186 -0.7379,-6.32931 -1.66469,-1.84996 -4.41951,-2.82178 -6.64697,-3.78962 -0.20858,-0.0897 -0.41912,-0.17841 -0.62574,-0.26713"
|
||||
id="path185-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,166.52447 c 0.83038,-2.65333 3.39236,-12.78024 8.01061,-10.38606 2.24813,1.16619 0.44077,5.0196 -0.7379,6.33032 -1.66469,1.84895 -4.41951,2.82177 -6.64697,3.78861 -0.20858,0.0907 -0.41912,0.17942 -0.62574,0.26713"
|
||||
id="path187-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,172.59164 c 0.37386,1.70743 0.45159,4.26606 -1.03503,5.51299 -0.96714,0.81134 -3.47205,0.54521 -2.89354,-1.27583 0.10626,-0.3349 1.27214,-0.68776 1.55942,-1.1004 0.59819,-0.85521 0.51162,-2.45399 0.56769,-3.43877 0.0778,-1.36952 -0.0659,-2.81679 0.12102,-4.15841 0.79102,1.30175 1.34296,2.95933 1.68044,4.46042"
|
||||
id="path189-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,160.55996 c 0.37386,-1.70643 0.45159,-4.26606 -1.03503,-5.51198 -0.96714,-0.81235 -3.47205,-0.54622 -2.89354,1.27583 0.10626,0.3349 1.27214,0.68775 1.55942,1.09941 0.59819,0.8552 0.51162,2.45397 0.56769,3.43975 0.0778,1.36953 -0.0659,2.8168 0.12102,4.15841 0.79102,-1.30175 1.34296,-2.96033 1.68044,-4.46142"
|
||||
id="path191-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,168.14717 c -1.84277,-0.44954 -1.05273,-4.48236 1.53188,-2.45099 1.55942,1.22698 0.37879,2.11508 -1.53188,2.45099"
|
||||
id="path193-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.04771,100.55007 c 1.91951,1.04309 3.99941,2.32689 6.12258,2.88208 1.93427,0.50585 5.5962,0.0174 5.94842,-2.5721 0.34042,-2.498831 -3.14933,-3.621661 -5.03147,-3.400384 -2.34847,0.276596 -4.80911,1.877364 -6.86539,2.992224 -0.057,0.0319 -0.11707,0.0668 -0.17414,0.0982"
|
||||
id="path195-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.01131,100.56601 c 0.82644,2.65333 3.39039,12.77874 8.00667,10.38557 2.2491,-1.16569 0.43979,-5.02259 -0.7379,-6.33381 -1.66076,-1.84746 -4.41754,-2.81928 -6.645,-3.78463 -0.20661,-0.0902 -0.41716,-0.17941 -0.62377,-0.26713"
|
||||
id="path197-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,100.55804 c 0.82842,-2.654824 3.39334,-12.785717 8.01061,-10.386059 2.24714,1.167186 0.44077,5.013117 -0.7379,6.325828 -1.66272,1.850452 -4.41951,2.824269 -6.64697,3.793101 -0.20858,0.0902 -0.41912,0.17842 -0.62574,0.26713"
|
||||
id="path199-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,106.62422 c 0.37386,1.70692 0.45159,4.26705 -1.03503,5.51348 -1.02519,0.86069 -3.43762,0.49987 -2.86992,-1.32318 0.0856,-0.2731 1.33116,-0.76599 1.59975,-1.19011 0.56179,-0.88909 0.4634,-2.49185 0.51456,-3.49458 0.065,-1.30174 -0.0816,-2.70316 0.11708,-3.97002 0.77627,1.33713 1.33313,2.95035 1.67356,4.46441"
|
||||
id="path201-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,94.593531 c 0.37485,-1.708417 0.45454,-4.266058 -1.03503,-5.512984 -0.96615,-0.809853 -3.47303,-0.546714 -2.89354,1.275831 0.10626,0.334906 1.27214,0.687752 1.55942,1.099906 0.59819,0.854706 0.51162,2.454479 0.56769,3.439261 0.0778,1.376501 -0.0462,2.793869 0.11118,4.154423 0.006,0.002 0.0118,0.0045 0.0167,0.008 0.77528,-1.335635 1.33707,-2.950358 1.67356,-4.464411"
|
||||
id="path203-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,102.17974 c -1.84178,-0.45053 -1.05469,-4.484844 1.53188,-2.446504 1.55549,1.226494 0.38272,2.114594 -1.53188,2.446504"
|
||||
id="path205-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.05066,67.566851 c 1.9205,1.044088 3.99842,2.323407 6.12356,2.882081 1.93133,0.507343 5.59719,0.01794 5.94449,-2.572094 0.33452,-2.497838 -3.14836,-3.62017 -5.03147,-3.400388 -2.34552,0.273606 -4.80911,1.877365 -6.86145,2.991723 -0.058,0.0319 -0.11806,0.06728 -0.17513,0.09868"
|
||||
id="path207-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,67.582301 c 0.83038,2.654325 3.39236,12.780734 8.01061,10.386059 2.24813,-1.165192 0.44077,-5.019098 -0.7379,-6.329814 -1.66469,-1.849457 -4.41951,-2.820783 -6.64697,-3.789119 -0.20858,-0.09021 -0.41912,-0.178915 -0.62574,-0.267126"
|
||||
id="path209-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.01131,67.574327 c 0.82644,-2.654825 3.38842,-12.780236 8.00667,-10.385562 2.2491,1.165193 0.43979,5.0186 -0.7379,6.329317 -1.66272,1.849456 -4.41656,2.821778 -6.645,3.789616 -0.20661,0.08971 -0.41716,0.178417 -0.62377,0.266629"
|
||||
id="path211-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,73.637015 c 0.37485,1.712404 0.45454,4.263567 -1.03503,5.512984 -0.96517,0.810352 -3.47402,0.555186 -2.89354,-1.271844 0.10626,-0.334905 1.27214,-0.687752 1.55942,-1.099906 0.59819,-0.854706 0.51162,-2.454479 0.56769,-3.439261 0.0778,-1.376501 -0.0462,-2.793869 0.11118,-4.154423 0.006,-0.002 0.0118,-0.0045 0.0167,-0.008 0.77431,1.33414 1.33608,2.947867 1.67356,4.460424"
|
||||
id="path213-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,61.609818 c 0.37485,-1.706922 0.45159,-4.266059 -1.03503,-5.512486 -0.96615,-0.810352 -3.4691,-0.549206 -2.89354,1.271844 0.10725,0.337896 1.27016,0.689247 1.55942,1.103394 0.59819,0.856202 0.51162,2.453981 0.56769,3.439759 0.0778,1.376502 -0.0462,2.793871 0.11118,4.154424 0.006,0.002 0.0118,0.0045 0.0167,0.008 0.77627,-1.336632 1.33314,-2.950359 1.67356,-4.46491"
|
||||
id="path215-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,69.196027 c -1.84178,-0.448035 -1.05371,-4.489827 1.53188,-2.449993 1.55745,1.228983 0.38272,2.118576 -1.53188,2.449993"
|
||||
id="path217-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.04771,34.583138 c 1.91755,1.045583 4.00137,2.326895 6.12651,2.882081 1.93428,0.505847 5.59227,0.01694 5.94449,-2.571596 0.33944,-2.498336 -3.14836,-3.625652 -5.03147,-3.404873 -2.34847,0.275599 -4.8101,1.880853 -6.86539,2.996208 -0.057,0.0319 -0.11609,0.06678 -0.17414,0.09818"
|
||||
id="path219-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,34.598587 c 0.83038,2.654327 3.39236,12.781233 8.01061,10.38606 2.24813,-1.165193 0.44077,-5.019099 -0.7379,-6.329815 -1.66469,-1.849456 -4.41951,-2.820782 -6.64697,-3.789118 -0.20858,-0.08971 -0.41912,-0.178417 -0.62574,-0.267127"
|
||||
id="path221-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,34.591111 c 0.83038,-2.654325 3.39236,-12.780733 8.01061,-10.386059 2.24813,1.165192 0.44077,5.019098 -0.7379,6.329814 -1.66469,1.849457 -4.41951,2.820783 -6.64697,3.789119 -0.20858,0.09021 -0.41912,0.178915 -0.62574,0.267126"
|
||||
id="path223-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,40.657786 c 0.37386,1.706424 0.45159,4.26606 -1.03503,5.512984 -0.96714,0.811349 -3.47205,0.545219 -2.89354,-1.276328 0.10626,-0.334408 1.27214,-0.687753 1.55942,-1.099407 0.59819,-0.855206 0.51162,-2.45448 0.56769,-3.43976 0.0778,-1.369524 -0.0659,-2.817293 0.12102,-4.157912 0.79102,1.300749 1.34296,2.959827 1.68044,4.460423"
|
||||
id="path225-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,28.626602 c 0.37386,-1.706921 0.45159,-4.266058 -1.03503,-5.512984 -0.96714,-0.811349 -3.47205,-0.545716 -2.89354,1.27633 0.10626,0.334407 1.27214,0.687253 1.55942,1.099407 0.59819,0.855206 0.51162,2.453981 0.56769,3.439759 0.0778,1.369525 -0.0659,2.816795 0.12102,4.157913 0.79102,-1.301746 1.34296,-2.959828 1.68044,-4.460425"
|
||||
id="path227-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,36.212812 c -1.84277,-0.449033 -1.05273,-4.481854 1.53188,-2.450492 1.55942,1.225994 0.37879,2.115088 -1.53188,2.450492"
|
||||
id="path229-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.04771,133.53329 c 1.91755,1.04557 4.00137,2.32739 6.12651,2.88258 1.93428,0.50534 5.59227,0.0169 5.94449,-2.5726 0.33944,-2.49883 -3.14836,-3.62116 -5.03147,-3.39989 -2.34847,0.2766 -4.80911,1.87687 -6.86539,2.99222 -0.057,0.0309 -0.11609,0.0668 -0.17414,0.0977"
|
||||
id="path231-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,133.54923 c 0.83038,2.65433 3.39236,12.78123 8.01061,10.38606 2.24813,-1.16519 0.44077,-5.0186 -0.7379,-6.33032 -1.66469,-1.84895 -4.41951,-2.82078 -6.64697,-3.78861 -0.20858,-0.0907 -0.41912,-0.17842 -0.62574,-0.26713"
|
||||
id="path233-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 157.00737,133.54126 c 0.83038,-2.65383 3.39236,-12.78074 8.01061,-10.38556 2.24813,1.16519 0.44077,5.0186 -0.7379,6.32931 -1.66469,1.84946 -4.41951,2.82178 -6.64697,3.79012 -0.20858,0.0897 -0.41912,0.17741 -0.62574,0.26613"
|
||||
id="path235-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,139.60842 c 0.37386,1.70643 0.45159,4.26607 -1.03503,5.512 -0.96812,0.81334 -3.4691,0.54621 -2.89354,-1.27583 0.10626,-0.33491 1.27115,-0.69175 1.55942,-1.1024 0.59819,-0.8562 0.51162,-2.45498 0.56769,-3.44076 0.0778,-1.37451 -0.0462,-2.79088 0.11118,-4.15043 0.006,-0.002 0.0118,-0.004 0.0167,-0.008 0.77627,1.33763 1.33314,2.95037 1.67356,4.46541"
|
||||
id="path237-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 156.76535,127.57675 c 0.37386,-1.70792 0.45257,-4.26506 -1.03503,-5.51299 -0.96714,-0.81135 -3.47205,-0.54572 -2.89354,1.27633 0.10626,0.33441 1.27214,0.68826 1.55942,1.09991 0.59819,0.85521 0.51162,2.45397 0.56769,3.43926 0.0778,1.36952 -0.0659,2.81679 0.12102,4.1584 0.78905,-1.30273 1.34296,-2.95982 1.68044,-4.46091"
|
||||
id="path239-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 152.8476,135.15897 c -1.83786,-0.43757 -1.05568,-4.48634 1.53188,-2.44202 1.55155,1.22599 0.37879,2.11708 -1.53188,2.44202"
|
||||
id="path241-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.399078,232.48492 c -1.920007,1.0416 -3.997924,2.3244 -6.122575,2.88058 -1.934273,0.50635 -5.595715,0.018 -5.947938,-2.57159 -0.340416,-2.49883 3.148359,-3.62117 5.030487,-3.39989 2.348479,0.2761 4.810102,1.87687 6.86539,2.99222 0.05805,0.0309 0.118063,0.0668 0.174636,0.0987"
|
||||
id="path243-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.435973,232.49987 c -0.826445,2.65233 -3.390882,12.77825 -8.007655,10.38606 -2.248616,-1.16519 -0.439294,-5.02259 0.738881,-6.3343 1.661743,-1.84796 4.417049,-2.81879 6.64402,-3.78364 0.207596,-0.0907 0.417158,-0.17941 0.624754,-0.26812"
|
||||
id="path245-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,232.49189 c -0.827921,-2.65532 -3.392849,-12.78422 -8.011098,-10.38606 -2.246649,1.1672 -0.44077,5.01263 0.738881,6.32634 1.663219,1.84895 4.41754,2.82476 6.646972,3.79359 0.207104,0.0897 0.418142,0.17743 0.625245,0.26613"
|
||||
id="path247-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,238.55907 c -0.37436,1.70643 -0.451593,4.26606 1.035023,5.51199 0.967628,0.81134 3.46959,0.54422 2.893047,-1.27583 -0.10675,-0.3369 -1.269675,-0.68875 -1.55893,-1.1024 -0.598188,-0.85521 -0.5121,-2.45199 -0.56818,-3.43676 -0.07773,-1.37551 0.04674,-2.79388 -0.110685,-4.15444 -0.0059,-0.002 -0.01181,-0.004 -0.01722,-0.008 -0.774792,1.33763 -1.33215,2.95036 -1.673058,4.46541"
|
||||
id="path249-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,226.52738 c -0.375836,-1.7084 -0.454053,-4.26705 1.035023,-5.51297 0.967628,-0.80936 3.472049,-0.54622 2.893047,1.27583 -0.106258,0.3349 -1.270659,0.68775 -1.55893,1.1004 -0.598188,0.85421 -0.5121,2.45398 -0.56818,3.43876 -0.07773,1.37551 0.04674,2.79486 -0.110685,4.15443 -0.0059,0.002 -0.01181,0.005 -0.01722,0.008 -0.7743,-1.33565 -1.336578,-2.95037 -1.673058,-4.46442"
|
||||
id="path251-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,234.1136 c 1.842281,-0.45153 1.053224,-4.48434 -1.532366,-2.44601 -1.555978,1.226 -0.382722,2.11509 1.532366,2.44601"
|
||||
id="path253-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.395634,199.50071 c -1.921483,1.04358 -3.99694,2.32441 -6.122574,2.88258 -1.931813,0.50634 -5.597192,0.018 -5.944495,-2.5726 -0.335005,-2.49684 3.147867,-3.62016 5.030487,-3.39988 2.346511,0.27311 4.809611,1.87687 6.861947,2.99222 0.05854,0.0309 0.117571,0.0667 0.174635,0.0977"
|
||||
id="path255-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,199.51666 c -0.83038,2.65432 -3.391865,12.78023 -8.011098,10.38606 -2.24714,-1.16519 -0.44077,-5.0196 0.738881,-6.33032 1.664202,-1.84895 4.418033,-2.82078 6.646972,-3.78861 0.207104,-0.0907 0.418142,-0.17943 0.625245,-0.26713"
|
||||
id="path257-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.435973,199.50868 c -0.827428,-2.65532 -3.388914,-12.78023 -8.007655,-10.38606 -2.247633,1.1652 -0.439786,5.01761 0.738881,6.32932 1.662235,1.84896 4.416065,2.82277 6.64402,3.78962 0.207104,0.0897 0.41765,0.17841 0.624754,0.26712"
|
||||
id="path259-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,205.57087 c -0.375344,1.7124 -0.454053,4.26407 1.035023,5.51299 0.965661,0.81035 3.473525,0.55518 2.893047,-1.27185 -0.106258,-0.3349 -1.270659,-0.68775 -1.55893,-1.09941 -0.598188,-0.8552 -0.5121,-2.45397 -0.56818,-3.43975 -0.07773,-1.37651 0.04674,-2.79388 -0.110685,-4.15443 -0.0059,-0.002 -0.01181,-0.005 -0.01722,-0.008 -0.773317,1.33464 -1.335593,2.94738 -1.673058,4.46043"
|
||||
id="path261-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,193.54417 c -0.37436,-1.70742 -0.451593,-4.26605 1.035023,-5.51298 0.966645,-0.81035 3.475001,-0.54522 2.893047,1.27583 -0.10675,0.33391 -1.270659,0.68676 -1.55893,1.09941 -0.598681,0.8562 -0.5121,2.45398 -0.56818,3.43975 -0.07773,1.37651 0.04674,2.79388 -0.110685,4.15443 -0.0059,0.002 -0.01181,0.005 -0.01722,0.008 -0.774792,-1.33763 -1.33215,-2.94936 -1.673058,-4.46442"
|
||||
id="path263-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,201.13038 c 1.842774,-0.44953 1.051748,-4.49032 -1.532366,-2.45099 -1.557946,1.22998 -0.38223,2.11908 1.532366,2.45099"
|
||||
id="path265-0" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.399078,166.5165 c -1.91804,1.04558 -4.001859,2.32739 -6.126018,2.88257 -1.934273,0.50635 -5.592764,0.018 -5.944495,-2.57159 -0.339432,-2.49784 3.146883,-3.62515 5.030487,-3.40487 2.348971,0.27609 4.810594,1.88085 6.86539,2.9962 0.05805,0.0318 0.117571,0.0678 0.174636,0.0977"
|
||||
id="path267-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,166.53244 c -0.83038,2.65532 -3.391373,12.78024 -8.011098,10.38606 -2.24714,-1.16419 -0.44077,-5.0186 0.738881,-6.32931 1.663711,-1.84896 4.418525,-2.82078 6.646972,-3.78962 0.207104,-0.0897 0.418142,-0.17841 0.625245,-0.26713"
|
||||
id="path269-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,166.52447 c -0.83038,-2.65433 -3.391865,-12.77924 -8.011098,-10.38606 -2.247633,1.16519 -0.440278,5.0196 0.738881,6.33032 1.664202,1.84895 4.418525,2.82078 6.646972,3.78861 0.207104,0.0907 0.418142,0.17942 0.625245,0.26713"
|
||||
id="path271-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,172.59164 c -0.37436,1.70743 -0.451593,4.26606 1.035023,5.51299 0.967628,0.81134 3.472049,0.54521 2.893047,-1.27583 -0.106258,-0.3349 -1.270659,-0.68776 -1.55893,-1.1004 -0.598681,-0.85521 -0.5121,-2.45399 -0.56818,-3.43877 -0.07723,-1.36952 0.06739,-2.8178 -0.121015,-4.15841 -0.790533,1.30274 -1.341989,2.95933 -1.679945,4.46042"
|
||||
id="path273-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,160.55996 c -0.37436,-1.70643 -0.451593,-4.26606 1.035023,-5.51198 0.967628,-0.81135 3.471558,-0.54622 2.893047,1.27583 -0.106258,0.3349 -1.271151,0.68775 -1.55893,1.09941 -0.598681,0.8552 -0.5121,2.45397 -0.56818,3.43975 -0.07723,1.36953 0.06739,2.8178 -0.121015,4.15841 -0.791026,-1.30274 -1.341989,-2.96033 -1.679945,-4.46142"
|
||||
id="path275-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,168.14717 c 1.843265,-0.45053 1.051256,-4.48136 -1.532366,-2.45099 -1.560405,1.22698 -0.378294,2.11508 1.532366,2.45099"
|
||||
id="path277-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.399078,100.55007 c -1.918531,1.04309 -3.998908,2.32639 -6.122575,2.88208 -1.934273,0.50585 -5.595715,0.0174 -5.947938,-2.5721 -0.339924,-2.498831 3.148359,-3.621661 5.030487,-3.400384 2.348971,0.276596 4.80961,1.877364 6.86539,2.992224 0.05805,0.0314 0.117571,0.0673 0.174636,0.0982"
|
||||
id="path279-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.435973,100.56601 c -0.826937,2.65333 -3.390882,12.77824 -8.007655,10.38557 -2.248616,-1.1652 -0.439294,-5.02259 0.738881,-6.33381 1.661251,-1.84746 4.417049,-2.81978 6.64402,-3.78463 0.207104,-0.0902 0.41765,-0.17941 0.624754,-0.26713"
|
||||
id="path281-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,100.55804 c -0.827921,-2.655322 -3.39334,-12.784721 -8.011098,-10.386059 -2.246649,1.167186 -0.441262,5.013117 0.738881,6.325828 1.663219,1.850452 4.418033,2.824269 6.646972,3.793101 0.207104,0.0902 0.418633,0.17842 0.625245,0.26713"
|
||||
id="path283-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,106.62422 c -0.37436,1.70742 -0.451593,4.26655 1.035023,5.51348 1.026168,0.86019 3.438106,0.49987 2.869926,-1.32318 -0.0851,-0.2731 -1.331658,-0.76599 -1.59976,-1.19011 -0.562277,-0.88909 -0.463891,-2.49185 -0.514068,-3.49458 -0.06543,-1.30174 0.08166,-2.70416 -0.118063,-3.97002 -0.775284,1.33762 -1.33215,2.95035 -1.673058,4.46441"
|
||||
id="path285-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,94.593531 c -0.375344,-1.708417 -0.454053,-4.266557 1.035023,-5.512984 0.967137,-0.809355 3.472541,-0.546714 2.893047,1.275831 -0.106258,0.334906 -1.270659,0.687752 -1.55893,1.099906 -0.598188,0.854706 -0.5121,2.454479 -0.56818,3.439261 -0.07773,1.376501 0.04674,2.794367 -0.110685,4.154423 -0.0059,0.002 -0.01181,0.0045 -0.01722,0.008 -0.7743,-1.336134 -1.336578,-2.950358 -1.673058,-4.464411"
|
||||
id="path287-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,102.17974 c 1.842281,-0.45152 1.053224,-4.484345 -1.532366,-2.446504 -1.55647,1.226994 -0.38223,2.114594 1.532366,2.446504"
|
||||
id="path289-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.395634,67.566851 c -1.920499,1.04359 -3.997432,2.323407 -6.122574,2.882081 -1.931813,0.507343 -5.597192,0.01794 -5.944495,-2.572094 -0.335005,-2.497838 3.147867,-3.62017 5.030487,-3.400388 2.346511,0.273606 4.809118,1.877864 6.861947,2.991723 0.05854,0.0319 0.117571,0.06728 0.174635,0.09868"
|
||||
id="path291-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,67.582301 c -0.83038,2.654824 -3.391865,12.779737 -8.011098,10.386059 -2.24714,-1.164693 -0.440278,-5.019098 0.738881,-6.329814 1.664202,-1.848959 4.418033,-2.820783 6.646972,-3.789119 0.207104,-0.09021 0.418633,-0.178915 0.625245,-0.267126"
|
||||
id="path293-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.435973,67.574327 c -0.826937,-2.654825 -3.388914,-12.779738 -8.007655,-10.385562 -2.248125,1.164694 -0.439786,5.0186 0.738881,6.329317 1.662726,1.848957 4.416065,2.821778 6.64402,3.789616 0.207104,0.08971 0.41765,0.178417 0.624754,0.266629"
|
||||
id="path295-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,73.637015 c -0.375344,1.712404 -0.454053,4.264065 1.035023,5.512984 0.965661,0.809854 3.473525,0.555186 2.893047,-1.271844 -0.106258,-0.334905 -1.270659,-0.687752 -1.55893,-1.099906 -0.598188,-0.854706 -0.5121,-2.454479 -0.56818,-3.439261 -0.07773,-1.376501 0.04674,-2.794368 -0.110685,-4.154423 -0.0059,-0.002 -0.01181,-0.0045 -0.01722,-0.008 -0.773317,1.334639 -1.335593,2.947369 -1.673058,4.460424"
|
||||
id="path297-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,61.609818 c -0.37436,-1.707421 -0.451593,-4.266059 1.035023,-5.512486 0.966152,-0.810352 3.468606,-0.549206 2.893047,1.271844 -0.10675,0.337896 -1.269183,0.689247 -1.55893,1.103394 -0.598681,0.856202 -0.5121,2.453981 -0.56818,3.439759 -0.07773,1.376003 0.04674,2.793871 -0.110685,4.154424 -0.0063,0.002 -0.01181,0.0045 -0.01722,0.008 -0.774792,-1.337629 -1.33215,-2.950359 -1.673058,-4.46491"
|
||||
id="path299-2" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,69.196027 c 1.842281,-0.449032 1.05224,-4.489827 -1.532366,-2.449993 -1.557453,1.228983 -0.38223,2.118576 1.532366,2.449993"
|
||||
id="path301-7" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.399078,34.583138 c -1.91804,1.045583 -4.001859,2.326895 -6.126018,2.882081 -1.934273,0.505847 -5.592764,0.01694 -5.944495,-2.571596 -0.339432,-2.498336 3.146883,-3.625652 5.030487,-3.404873 2.348971,0.275599 4.810594,1.880853 6.86539,2.996208 0.05805,0.0319 0.117571,0.06678 0.174636,0.09818"
|
||||
id="path303-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,34.598587 c -0.83038,2.655323 -3.391865,12.780236 -8.011098,10.38606 -2.24714,-1.164694 -0.440278,-5.019099 0.738881,-6.329815 1.664202,-1.848958 4.418525,-2.820284 6.646972,-3.789118 0.207104,-0.08971 0.418633,-0.178417 0.625245,-0.267127"
|
||||
id="path305-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,34.591111 c -0.829888,-2.654824 -3.391865,-12.779737 -8.011098,-10.386059 -2.247633,1.164693 -0.440278,5.019098 0.738881,6.329814 1.664202,1.848959 4.418525,2.820783 6.646972,3.789119 0.207104,0.09021 0.418633,0.178915 0.625245,0.267126"
|
||||
id="path307-6" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,40.657786 c -0.37436,1.706922 -0.451593,4.26606 1.035023,5.512984 0.967628,0.811349 3.472049,0.545219 2.893047,-1.276328 -0.106258,-0.334906 -1.270659,-0.687753 -1.55893,-1.099407 -0.598681,-0.855206 -0.5121,-2.45448 -0.56818,-3.43976 -0.07723,-1.369026 0.06739,-2.817792 -0.121015,-4.157912 -0.791026,1.301746 -1.34248,2.959329 -1.679945,4.460423"
|
||||
id="path309-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,28.626602 c -0.37436,-1.707419 -0.451593,-4.266058 1.035023,-5.512984 0.967628,-0.811349 3.472049,-0.545716 2.893047,1.27633 -0.106258,0.334407 -1.270659,0.687253 -1.55893,1.099407 -0.598681,0.855206 -0.5121,2.453981 -0.56818,3.439759 -0.07723,1.369027 0.06739,2.817294 -0.121015,4.157913 -0.790533,-1.303242 -1.341989,-2.959329 -1.679945,-4.460425"
|
||||
id="path311-8" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,36.212812 c 1.842774,-0.450029 1.051748,-4.481355 -1.532366,-2.450492 -1.560405,1.226492 -0.378294,2.115587 1.532366,2.450492"
|
||||
id="path313-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.399078,133.53329 c -1.91804,1.04557 -4.002352,2.32739 -6.126018,2.88258 -1.934765,0.50534 -5.592764,0.0169 -5.944495,-2.5726 -0.339924,-2.49883 3.147867,-3.62116 5.030487,-3.39989 2.348971,0.2766 4.80961,1.87687 6.86539,2.99222 0.05805,0.0309 0.117571,0.0668 0.174636,0.0977"
|
||||
id="path315-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,133.54923 c -0.83038,2.65433 -3.391865,12.77924 -8.011098,10.38606 -2.24714,-1.16519 -0.440278,-5.0186 0.738881,-6.33032 1.664202,-1.84795 4.418525,-2.82078 6.646972,-3.78861 0.207104,-0.0907 0.418142,-0.17842 0.625245,-0.26713"
|
||||
id="path317-4" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.439416,133.54126 c -0.83038,-2.65483 -3.391865,-12.77974 -8.011098,-10.38556 -2.24714,1.16469 -0.440278,5.0186 0.738881,6.32931 1.664202,1.84896 4.418033,2.82128 6.646972,3.79012 0.207104,0.0897 0.418142,0.17741 0.625245,0.26613"
|
||||
id="path319-1" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,139.60842 c -0.37436,1.70743 -0.451593,4.26607 1.035023,5.512 0.968612,0.81334 3.469097,0.54621 2.893047,-1.27583 -0.106258,-0.33591 -1.270659,-0.69074 -1.55893,-1.1024 -0.598681,-0.8552 -0.5121,-2.45498 -0.56818,-3.44076 -0.07773,-1.37451 0.04674,-2.79088 -0.110685,-4.15043 -0.0059,-0.002 -0.01181,-0.004 -0.01722,-0.008 -0.774792,1.33763 -1.33215,2.95037 -1.673058,4.46541"
|
||||
id="path321-9" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 30.681446,127.57675 c -0.372884,-1.70842 -0.452577,-4.26506 1.035023,-5.51299 0.967628,-0.81135 3.472049,-0.54522 2.893047,1.27633 -0.106258,0.33441 -1.271151,0.68776 -1.55893,1.09991 -0.598681,0.85521 -0.5121,2.45397 -0.56818,3.43926 -0.07723,1.36902 0.06739,2.81779 -0.121015,4.1584 -0.789058,-1.30373 -1.341989,-2.95932 -1.679945,-4.46091"
|
||||
id="path323-3" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 34.599677,135.15897 c 1.837854,-0.43857 1.054208,-4.48634 -1.532366,-2.44202 -1.55155,1.22599 -0.378787,2.11708 1.532366,2.44202"
|
||||
id="path325-9" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 83.124248,159.22532 h 0.02705"
|
||||
id="path327-5" /><path
|
||||
style="fill:#fb0f0c;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 85.658185,124.18034 c 1.660759,0 16.129925,-0.13904 16.129925,0.13706 0,3.33111 0,6.66222 0,9.99334 0,1.92371 0,3.84842 0,5.77214 0,0.44156 0.31385,2.60449 0,2.94537 -1.02617,1.11735 -16.129925,-0.65785 -16.129925,-0.13655 0,-6.23762 0,-12.47424 0,-18.71136"
|
||||
id="path329-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 86.666151,127.71429 c 0.67247,-0.78543 1.344448,-1.57086 2.016426,-2.35579 0.335989,1.17765 0.671978,2.35579 1.007966,3.53395 -1.007966,-0.39272 -2.015933,-0.78544 -3.024392,-1.17816"
|
||||
id="path331-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 98.764704,125.3585 c 0.670994,0.78493 1.343956,1.57036 2.014946,2.35579 -1.007471,0.39272 -2.014946,0.78544 -3.024389,1.17816 0.336481,-1.17816 0.672962,-2.3563 1.009443,-3.53395"
|
||||
id="path333-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 98.827671,141.78332 c 0.671978,-0.78543 1.343959,-1.57087 2.016919,-2.3563 -1.009444,-0.39272 -2.016919,-0.78543 -3.024394,-1.17815 0.335497,1.17815 0.670994,2.3563 1.007475,3.53445"
|
||||
id="path335-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 88.682577,141.8501 c -0.671978,-0.78543 -1.343956,-1.56986 -2.016426,-2.3553 1.00846,-0.39272 2.016426,-0.78543 3.024392,-1.17815 -0.335988,1.17815 -0.671977,2.35531 -1.007966,3.53345"
|
||||
id="path337-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.997833;stroke-miterlimit:4"
|
||||
d="m 93.723395,124.18034 c -0.664599,2.32989 -1.329198,4.65928 -1.993797,6.98867 -0.247442,0.86716 -5.10772,2.06026 -6.071413,2.43504 0.963693,0.37578 5.823971,1.56788 6.071413,2.43604 0.664599,2.32839 1.329198,4.65877 1.993797,6.98816 0.66509,-2.32939 1.329197,-4.65977 1.993304,-6.98816 0.247933,-0.86816 5.108211,-2.06026 6.071411,-2.43604 -0.9632,-0.37478 -5.823478,-1.56788 -6.071411,-2.43504 -0.664107,-2.32939 -1.328214,-4.65878 -1.993304,-6.98867"
|
||||
id="path339-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.12212,127.71429 c -0.3286,1.53399 -0.65623,3.06798 -0.98484,4.60196 -0.11413,0.53476 -3.43762,1.10739 -4.05548,1.2878 0.61786,0.18141 3.94135,0.75353 4.05548,1.28779 0.32861,1.53399 0.65624,3.06798 0.98484,4.60296 0.32763,-1.53498 0.65624,-3.06897 0.98485,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28779 -0.61786,-0.18041 -3.94135,-0.75304 -4.05548,-1.2878 -0.32861,-1.53398 -0.65722,-3.06797 -0.98485,-4.60196"
|
||||
id="path341-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.1113,111.21472 c -0.32762,1.53399 -0.65624,3.06797 -0.98386,4.60245 -0.11412,0.53426 -3.43761,1.10689 -4.05646,1.28729 0.61885,0.18092 3.94234,0.75305 4.05646,1.2878 0.32762,1.53398 0.65624,3.06847 0.98386,4.60246 0.32861,-1.53399 0.65722,-3.06848 0.98584,-4.60246 0.11412,-0.53475 3.43761,-1.10688 4.05548,-1.2878 -0.61787,-0.1804 -3.94136,-0.75303 -4.05548,-1.28729 -0.32862,-1.53448 -0.65723,-3.06846 -0.98584,-4.60245"
|
||||
id="path343-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.13885,144.19444 c -0.32861,1.53399 -0.65623,3.06798 -0.98386,4.60197 -0.11512,0.53425 -3.43762,1.10738 -4.05646,1.28779 0.61787,0.1804 3.94134,0.75353 4.05646,1.28779 0.32763,1.53399 0.65525,3.06797 0.98386,4.60295 0.32862,-1.53498 0.65722,-3.06896 0.98484,-4.60295 0.11512,-0.53426 3.43861,-1.10739 4.05647,-1.28779 -0.61786,-0.18041 -3.94135,-0.75354 -4.05647,-1.28779 -0.32762,-1.53399 -0.65622,-3.06798 -0.98484,-4.60197"
|
||||
id="path345-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 129.00764,127.71429 c -0.32763,1.53399 -0.65624,3.06798 -0.98484,4.60196 -0.11413,0.53476 -3.43762,1.10739 -4.05548,1.2878 0.61786,0.18141 3.94135,0.75353 4.05548,1.28779 0.3286,1.53399 0.65721,3.06798 0.98484,4.60296 0.32861,-1.53498 0.65623,-3.06897 0.98485,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28779 -0.61786,-0.18041 -3.94135,-0.75304 -4.05548,-1.2878 -0.32862,-1.53398 -0.65624,-3.06797 -0.98485,-4.60196"
|
||||
id="path347-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.9978,111.21472 c -0.32762,1.53399 -0.65624,3.06797 -0.98485,4.60245 -0.11412,0.53426 -3.43761,1.10689 -4.05548,1.28729 0.61787,0.18092 3.94136,0.75305 4.05548,1.2878 0.32861,1.53398 0.65723,3.06847 0.98485,4.60246 0.32861,-1.53399 0.65624,-3.06848 0.98485,-4.60246 0.11412,-0.53475 3.43761,-1.10688 4.05548,-1.2878 -0.61787,-0.1804 -3.94136,-0.75303 -4.05548,-1.28729 -0.32861,-1.53448 -0.65624,-3.06846 -0.98485,-4.60245"
|
||||
id="path349-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 129.02437,144.19444 c -0.32763,1.53399 -0.65525,3.06798 -0.98386,4.60197 -0.11413,0.53425 -3.43762,1.10738 -4.05647,1.28779 0.61885,0.1804 3.94234,0.75353 4.05647,1.28779 0.32861,1.53399 0.65623,3.06797 0.98386,4.60295 0.32861,-1.53498 0.65721,-3.06896 0.98582,-4.60295 0.11414,-0.53426 3.43762,-1.10739 4.05549,-1.28779 -0.61787,-0.18041 -3.94135,-0.75354 -4.05549,-1.28779 -0.32861,-1.53399 -0.65721,-3.06798 -0.98582,-4.60197"
|
||||
id="path351-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,176.01147 c -0.32762,1.53399 -0.65525,3.06797 -0.983859,4.60296 -0.114128,0.53425 -3.437614,1.10638 -4.055479,1.28679 0.617865,0.18042 3.941351,0.75354 4.055479,1.28879 0.328609,1.53299 0.656239,3.06797 0.983859,4.60097 0.32861,-1.533 0.65722,-3.06798 0.98583,-4.60097 0.11413,-0.53525 3.43762,-1.10837 4.05548,-1.28879 -0.61786,-0.18041 -3.94135,-0.75254 -4.05548,-1.28679 -0.32861,-1.53499 -0.65722,-3.06897 -0.98583,-4.60296"
|
||||
id="path353-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,176.01147 c -0.328118,1.53399 -0.656235,3.06797 -0.984354,4.60296 -0.114619,0.53425 -3.438106,1.10638 -4.056463,1.28679 0.618357,0.18042 3.941844,0.75354 4.056463,1.28879 0.328119,1.53299 0.656236,3.06797 0.984354,4.60097 0.328611,-1.533 0.656728,-3.06798 0.984846,-4.60097 0.114621,-0.53525 3.438107,-1.10837 4.055972,-1.28879 -0.617865,-0.18041 -3.941352,-0.75254 -4.055972,-1.28679 -0.328118,-1.53499 -0.656235,-3.06897 -0.984846,-4.60296"
|
||||
id="path355-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8843,175.98356 c -0.32861,1.53498 -0.65722,3.06897 -0.98485,4.60296 -0.11413,0.53425 -3.43859,1.10639 -4.05646,1.28779 0.61787,0.18041 3.94233,0.75353 4.05646,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60196 0.32861,-1.53398 0.65624,-3.06797 0.98387,-4.60196 0.1151,-0.53426 3.4376,-1.10738 4.05645,-1.28779 -0.61885,-0.1814 -3.94135,-0.75354 -4.05645,-1.28779 -0.32763,-1.53399 -0.65526,-3.06798 -0.98387,-4.60296"
|
||||
id="path357-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.592496,176.02742 c -0.328118,1.53399 -0.656237,3.06797 -0.984354,4.60195 -0.114128,0.53526 -3.437615,1.10739 -4.055972,1.2878 0.618357,0.18041 3.941844,0.75254 4.055972,1.28779 0.328117,1.53399 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06797 0.985338,-4.60196 0.114128,-0.53525 3.437614,-1.10738 4.055479,-1.28779 -0.617865,-0.18041 -3.941351,-0.75254 -4.055479,-1.2878 -0.32861,-1.53398 -0.656729,-3.06796 -0.985338,-4.60195"
|
||||
id="path359-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.09163,176.00748 c -0.32861,1.53498 -0.65624,3.06797 -0.98386,4.60296 -0.11512,0.53426 -3.4386,1.10638 -4.05746,1.28779 0.61886,0.17941 3.94234,0.75254 4.05746,1.2878 0.32762,1.53298 0.65525,3.06797 0.98386,4.60096 0.32861,-1.53299 0.65624,-3.06798 0.98484,-4.60096 0.11413,-0.53526 3.43762,-1.10839 4.05647,-1.2878 -0.61885,-0.18141 -3.94234,-0.75353 -4.05647,-1.28779 -0.3286,-1.53499 -0.65623,-3.06798 -0.98484,-4.60296"
|
||||
id="path361-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.97714,176.00748 c -0.32762,1.53498 -0.65623,3.06797 -0.98386,4.60296 -0.11512,0.53426 -3.43762,1.10638 -4.05647,1.28779 0.61885,0.17941 3.94135,0.75254 4.05647,1.2878 0.32763,1.53298 0.65624,3.06797 0.98386,4.60096 0.32862,-1.53299 0.65722,-3.06798 0.98583,-4.60096 0.11413,-0.53526 3.43762,-1.10839 4.05548,-1.2878 -0.61786,-0.18141 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.65721,-3.06798 -0.98583,-4.60296"
|
||||
id="path363-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,192.50357 c -0.32762,1.53399 -0.65525,3.06798 -0.983859,4.60196 -0.114128,0.53426 -3.437614,1.10738 -4.055479,1.2878 0.617865,0.18041 3.941351,0.75254 4.055479,1.28779 0.328609,1.53399 0.656239,3.06797 0.983859,4.60196 0.32861,-1.53399 0.65722,-3.06797 0.98583,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05548,-1.28779 -0.61786,-0.18042 -3.94135,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.65722,-3.06797 -0.98583,-4.60196"
|
||||
id="path365-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,192.50357 c -0.328118,1.53399 -0.656235,3.06798 -0.984354,4.60196 -0.114619,0.53426 -3.438106,1.10738 -4.056463,1.2878 0.618357,0.18041 3.941844,0.75254 4.056463,1.28779 0.328119,1.53399 0.656236,3.06797 0.984354,4.60196 0.328611,-1.53399 0.656728,-3.06797 0.984846,-4.60196 0.114621,-0.53525 3.438107,-1.10738 4.055972,-1.28779 -0.617865,-0.18042 -3.941352,-0.75354 -4.055972,-1.2878 -0.328118,-1.53398 -0.656235,-3.06797 -0.984846,-4.60196"
|
||||
id="path367-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8843,192.47567 c -0.32861,1.53398 -0.65722,3.06797 -0.98485,4.60296 -0.11413,0.53424 -3.43859,1.10638 -4.05646,1.28778 0.61787,0.17942 3.94233,0.75255 4.05646,1.28779 0.32763,1.533 0.65624,3.06798 0.98485,4.60098 0.32861,-1.533 0.65624,-3.06798 0.98387,-4.60098 0.1151,-0.53524 3.4376,-1.10837 4.05645,-1.28779 -0.61885,-0.1814 -3.94135,-0.75354 -4.05645,-1.28778 -0.32763,-1.53499 -0.65526,-3.06898 -0.98387,-4.60296"
|
||||
id="path369-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.592496,192.51952 c -0.328118,1.53399 -0.656237,3.06798 -0.984354,4.60197 -0.114128,0.53425 -3.437615,1.10738 -4.055972,1.28779 0.618357,0.1804 3.941844,0.75253 4.055972,1.28779 0.328117,1.53398 0.656236,3.06797 0.984354,4.60195 0.32861,-1.53398 0.656728,-3.06797 0.985338,-4.60195 0.114128,-0.53526 3.437614,-1.10739 4.055479,-1.28779 -0.617865,-0.18041 -3.941351,-0.75354 -4.055479,-1.28779 -0.32861,-1.53399 -0.656729,-3.06798 -0.985338,-4.60197"
|
||||
id="path371-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.09163,192.49959 c -0.32861,1.53399 -0.65624,3.06797 -0.98386,4.60196 -0.11512,0.53525 -3.4386,1.10738 -4.05746,1.2878 0.61886,0.1804 3.94234,0.75353 4.05746,1.28778 0.32762,1.53399 0.65525,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65624,-3.06797 0.98484,-4.60196 0.11413,-0.53425 3.43762,-1.10738 4.05647,-1.28778 -0.61885,-0.18042 -3.94234,-0.75255 -4.05647,-1.2878 -0.3286,-1.53399 -0.65623,-3.06797 -0.98484,-4.60196"
|
||||
id="path373-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.97714,192.49959 c -0.32762,1.53399 -0.65623,3.06797 -0.98386,4.60196 -0.11512,0.53525 -3.43762,1.10738 -4.05647,1.2878 0.61885,0.1804 3.94135,0.75353 4.05647,1.28778 0.32763,1.53399 0.65624,3.06797 0.98386,4.60196 0.32862,-1.53399 0.65722,-3.06797 0.98583,-4.60196 0.11413,-0.53425 3.43762,-1.10738 4.05548,-1.28778 -0.61786,-0.18042 -3.94135,-0.75255 -4.05548,-1.2878 -0.32861,-1.53399 -0.65721,-3.06797 -0.98583,-4.60196"
|
||||
id="path375-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,208.99568 c -0.32762,1.53299 -0.65525,3.06798 -0.983859,4.60197 -0.114128,0.53424 -3.437614,1.10738 -4.055479,1.28679 0.617865,0.1814 3.941351,0.75353 4.055479,1.28779 0.328609,1.53498 0.656239,3.06798 0.983859,4.60295 0.32861,-1.53497 0.65722,-3.06797 0.98583,-4.60295 0.11413,-0.53426 3.43762,-1.10639 4.05548,-1.28779 -0.61786,-0.17941 -3.94135,-0.75255 -4.05548,-1.28679 -0.32861,-1.53399 -0.65722,-3.06898 -0.98583,-4.60197"
|
||||
id="path377-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,208.99568 c -0.328118,1.53299 -0.656235,3.06798 -0.984354,4.60197 -0.114619,0.53424 -3.438106,1.10738 -4.056463,1.28679 0.618357,0.1814 3.941844,0.75353 4.056463,1.28779 0.328119,1.53498 0.656236,3.06798 0.984354,4.60295 0.328611,-1.53497 0.656728,-3.06797 0.984846,-4.60295 0.114621,-0.53426 3.438107,-1.10639 4.055972,-1.28779 -0.617865,-0.17941 -3.941352,-0.75255 -4.055972,-1.28679 -0.328118,-1.53399 -0.656235,-3.06898 -0.984846,-4.60197"
|
||||
id="path379-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8843,208.96777 c -0.32861,1.53399 -0.65722,3.06797 -0.98485,4.60296 -0.11413,0.53426 -3.43859,1.10638 -4.05646,1.28679 0.61787,0.18042 3.94233,0.75255 4.05646,1.2878 0.32763,1.53398 0.65624,3.06797 0.98485,4.60196 0.32861,-1.53399 0.65624,-3.06798 0.98387,-4.60196 0.1151,-0.53525 3.4376,-1.10738 4.05645,-1.2878 -0.61885,-0.18041 -3.94135,-0.75253 -4.05645,-1.28679 -0.32763,-1.53499 -0.65526,-3.06897 -0.98387,-4.60296"
|
||||
id="path381-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.592496,209.01163 c -0.328118,1.53298 -0.656237,3.06797 -0.984354,4.60096 -0.114128,0.53425 -3.437615,1.10739 -4.055972,1.28779 0.618357,0.18141 3.941844,0.75354 4.055972,1.28779 0.328117,1.53499 0.656236,3.06798 0.984354,4.60297 0.32861,-1.53499 0.656728,-3.06798 0.985338,-4.60297 0.114128,-0.53425 3.437614,-1.10638 4.055479,-1.28779 -0.617865,-0.1804 -3.941351,-0.75354 -4.055479,-1.28779 -0.32861,-1.53299 -0.656729,-3.06798 -0.985338,-4.60096"
|
||||
id="path383-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.09163,208.99169 c -0.32861,1.53299 -0.65624,3.06798 -0.98386,4.60196 -0.11512,0.53426 -3.4386,1.10739 -4.05746,1.2878 0.61886,0.18041 3.94234,0.75253 4.05746,1.28679 0.32762,1.53499 0.65525,3.06798 0.98386,4.60296 0.32861,-1.53498 0.65624,-3.06797 0.98484,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05647,-1.28679 -0.61885,-0.18041 -3.94234,-0.75354 -4.05647,-1.2878 -0.3286,-1.53398 -0.65623,-3.06897 -0.98484,-4.60196"
|
||||
id="path385-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.97714,208.99169 c -0.32762,1.53299 -0.65623,3.06798 -0.98386,4.60196 -0.11512,0.53426 -3.43762,1.10739 -4.05647,1.2878 0.61885,0.18041 3.94135,0.75253 4.05647,1.28679 0.32763,1.53499 0.65624,3.06798 0.98386,4.60296 0.32862,-1.53498 0.65722,-3.06797 0.98583,-4.60296 0.11413,-0.53426 3.43762,-1.10638 4.05548,-1.28679 -0.61786,-0.18041 -3.94135,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.65721,-3.06897 -0.98583,-4.60196"
|
||||
id="path387-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,160.69751 c -0.32762,1.53499 -0.65525,3.06797 -0.983859,4.60296 -0.114128,0.53426 -3.437614,1.10638 -4.055479,1.28779 0.617865,0.18042 3.941351,0.75254 4.055479,1.2878 0.328609,1.53298 0.656239,3.06797 0.983859,4.60096 0.32861,-1.53299 0.65722,-3.06798 0.98583,-4.60096 0.11413,-0.53526 3.43762,-1.10838 4.05548,-1.2878 -0.61786,-0.18141 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.65722,-3.06797 -0.98583,-4.60296"
|
||||
id="path389-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,160.69751 c -0.328118,1.53499 -0.656235,3.06797 -0.984354,4.60296 -0.114619,0.53426 -3.438106,1.10638 -4.056463,1.28779 0.618357,0.17942 3.941844,0.75254 4.056463,1.2878 0.328119,1.53298 0.656236,3.06797 0.984354,4.60096 0.328611,-1.53299 0.656728,-3.06798 0.984846,-4.60096 0.114621,-0.53526 3.438107,-1.10838 4.055972,-1.2878 -0.617865,-0.18141 -3.941352,-0.75353 -4.055972,-1.28779 -0.328118,-1.53499 -0.656235,-3.06797 -0.984846,-4.60296"
|
||||
id="path391-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8843,160.6706 c -0.32861,1.53399 -0.65722,3.06798 -0.98485,4.60197 -0.11413,0.53424 -3.43859,1.10738 -4.05646,1.28778 0.61787,0.18041 3.94233,0.75354 4.05646,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60196 0.32861,-1.53398 0.65624,-3.06797 0.98387,-4.60196 0.1151,-0.53425 3.4376,-1.10738 4.05645,-1.28779 -0.61885,-0.1804 -3.94135,-0.75354 -4.05645,-1.28778 -0.32763,-1.53399 -0.65526,-3.06798 -0.98387,-4.60197"
|
||||
id="path393-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.592496,160.71346 c -0.328118,1.53399 -0.656237,3.06798 -0.984354,4.60295 -0.114128,0.53426 -3.437615,1.10639 -4.055972,1.28681 0.618357,0.1804 3.941844,0.75353 4.055972,1.28878 0.328117,1.533 0.656236,3.06797 0.984354,4.60096 0.32861,-1.53299 0.656728,-3.06796 0.985338,-4.60096 0.114128,-0.53525 3.437614,-1.10838 4.055479,-1.28878 -0.617865,-0.18042 -3.941351,-0.75255 -4.055479,-1.28681 -0.32861,-1.53497 -0.656729,-3.06896 -0.985338,-4.60295"
|
||||
id="path395-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.09163,160.69353 c -0.32861,1.53497 -0.65624,3.06797 -0.98386,4.60295 -0.11512,0.53426 -3.4386,1.10639 -4.05746,1.28779 0.61886,0.18042 3.94234,0.75255 4.05746,1.2878 0.32762,1.53298 0.65525,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65624,-3.06898 0.98484,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05647,-1.2878 -0.61885,-0.1814 -3.94234,-0.75353 -4.05647,-1.28779 -0.3286,-1.53498 -0.65623,-3.06798 -0.98484,-4.60295"
|
||||
id="path397-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.97714,160.69353 c -0.32762,1.53497 -0.65623,3.06797 -0.98386,4.60295 -0.11512,0.53426 -3.43762,1.10639 -4.05647,1.28779 0.61885,0.18042 3.94135,0.75255 4.05647,1.2878 0.32763,1.53298 0.65624,3.06797 0.98386,4.60196 0.32862,-1.53399 0.65722,-3.06898 0.98583,-4.60196 0.11413,-0.53525 3.43762,-1.10738 4.05548,-1.2878 -0.61786,-0.1814 -3.94135,-0.75353 -4.05548,-1.28779 -0.32861,-1.53498 -0.65721,-3.06798 -0.98583,-4.60295"
|
||||
id="path399-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,94.731082 c -0.328118,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114619,0.534753 -3.438106,1.107377 -4.056463,1.287797 0.618357,0.18041 3.941844,0.75303 4.056463,1.28779 0.328119,1.53398 0.656236,3.06797 0.984354,4.60196 0.328611,-1.53399 0.656728,-3.06798 0.984846,-4.60196 0.114621,-0.53476 3.438107,-1.10738 4.055972,-1.28779 -0.617865,-0.18042 -3.941352,-0.753044 -4.055972,-1.287797 -0.328118,-1.533987 -0.656235,-3.067974 -0.984846,-4.601961"
|
||||
id="path401-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.552158,94.731082 c -0.328118,1.533987 -0.656237,3.067974 -0.984354,4.601961 -0.114128,0.534753 -3.438107,1.107377 -4.056464,1.287797 0.618357,0.18041 3.942335,0.75303 4.056464,1.28779 0.328117,1.53398 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656727,-3.06798 0.984846,-4.60196 0.114619,-0.53476 3.438105,-1.10738 4.055971,-1.28779 -0.617866,-0.18042 -3.941352,-0.753044 -4.055971,-1.287797 -0.328119,-1.533987 -0.656237,-3.067974 -0.984846,-4.601961"
|
||||
id="path403-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8902,94.731082 c -0.32762,1.533987 -0.65525,3.067974 -0.98386,4.601961 -0.11412,0.534753 -3.43761,1.107377 -4.05646,1.287797 0.61885,0.18041 3.94234,0.75303 4.05646,1.28779 0.32861,1.53398 0.65624,3.06797 0.98386,4.60196 0.32861,-1.53399 0.65723,-3.06798 0.98584,-4.60196 0.11412,-0.53476 3.43761,-1.10738 4.05547,-1.28779 -0.61786,-0.18042 -3.94135,-0.753044 -4.05547,-1.287797 -0.32861,-1.533987 -0.65723,-3.067974 -0.98584,-4.601961"
|
||||
id="path405-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77375,94.731082 c -0.32861,1.533987 -0.65722,3.067974 -0.984845,4.601961 -0.114129,0.534753 -3.437615,1.107377 -4.056465,1.287797 0.61885,0.18041 3.942336,0.75303 4.056465,1.28779 0.327625,1.53398 0.656235,3.06797 0.984845,4.60196 0.32861,-1.53399 0.65624,-3.06798 0.98485,-4.60196 0.11412,-0.53476 3.43761,-1.10738 4.05548,-1.28779 -0.61787,-0.18042 -3.94136,-0.753044 -4.05548,-1.287797 -0.32861,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path407-7" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.559537,78.227513 c -0.328119,1.533988 -0.656729,3.067975 -0.984846,4.601962 -0.114621,0.534752 -3.437615,1.107381 -4.055972,1.287792 0.618357,0.180908 3.941843,0.753039 4.055972,1.287791 0.328117,1.533987 0.656727,3.067974 0.984846,4.60246 0.328117,-1.534486 0.656236,-3.068473 0.984846,-4.60246 0.114127,-0.534752 3.437613,-1.106883 4.055479,-1.287791 -0.617866,-0.180411 -3.941352,-0.75304 -4.055479,-1.287792 -0.32861,-1.533987 -0.656729,-3.067974 -0.984846,-4.601962"
|
||||
id="path409-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,78.238976 c -0.328118,1.533987 -0.656235,3.068472 -0.984354,4.60246 -0.114619,0.534752 -3.438106,1.106883 -4.056463,1.287792 0.618357,0.180409 3.941844,0.753039 4.056463,1.287791 0.328119,1.533987 0.656236,3.067974 0.984354,4.601962 0.328611,-1.533988 0.656728,-3.067975 0.984846,-4.601962 0.114621,-0.534752 3.438107,-1.107381 4.055972,-1.287791 -0.617865,-0.180909 -3.941352,-0.75304 -4.055972,-1.287792 -0.328118,-1.533988 -0.656235,-3.068473 -0.984846,-4.60246"
|
||||
id="path411-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,78.238976 c -0.32762,1.533987 -0.65525,3.068472 -0.983859,4.60246 -0.114128,0.534752 -3.437614,1.106883 -4.055479,1.287792 0.617865,0.180409 3.941351,0.753039 4.055479,1.287791 0.328609,1.533987 0.656239,3.067974 0.983859,4.601962 0.32861,-1.533988 0.65722,-3.067975 0.98583,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.65722,-3.068473 -0.98583,-4.60246"
|
||||
id="path413-9" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.89414,78.238976 c -0.32861,1.533987 -0.65723,3.068472 -0.98485,4.60246 -0.11412,0.534752 -3.43761,1.106883 -4.05646,1.287792 0.61885,0.180409 3.94234,0.753039 4.05646,1.287791 0.32762,1.533987 0.65624,3.067974 0.98485,4.601962 0.32861,-1.533988 0.65624,-3.067975 0.98485,-4.601962 0.11412,-0.534752 3.43761,-1.107381 4.05645,-1.287791 -0.61884,-0.180909 -3.94233,-0.75304 -4.05645,-1.287792 -0.32861,-1.533988 -0.65624,-3.068473 -0.98485,-4.60246"
|
||||
id="path415-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.10835,94.711147 c -0.32762,1.533987 -0.65624,3.067974 -0.98485,4.60246 -0.11412,0.534752 -3.43761,1.106883 -4.05547,1.287293 0.61786,0.18091 3.94135,0.75354 4.05547,1.28779 0.32861,1.53399 0.65723,3.06798 0.98485,4.60246 0.32763,-1.53448 0.65624,-3.06847 0.98485,-4.60246 0.11413,-0.53425 3.43761,-1.10688 4.05548,-1.28779 -0.61787,-0.18041 -3.94135,-0.752541 -4.05548,-1.287293 -0.32861,-1.534486 -0.65722,-3.068473 -0.98485,-4.60246"
|
||||
id="path417-3" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.12212,78.238976 c -0.3286,1.533987 -0.65623,3.068472 -0.98484,4.60246 -0.11413,0.534752 -3.43762,1.106883 -4.05548,1.287792 0.61786,0.180409 3.94135,0.753039 4.05548,1.287791 0.32861,1.533987 0.65624,3.067974 0.98484,4.601962 0.32763,-1.533988 0.65624,-3.067975 0.98485,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.65722,-3.068473 -0.98485,-4.60246"
|
||||
id="path419-0" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.99485,94.711147 c -0.32861,1.533987 -0.65722,3.067974 -0.98485,4.60246 -0.11413,0.534752 -3.43761,1.106883 -4.05645,1.287293 0.61884,0.18091 3.94232,0.75354 4.05645,1.28779 0.32763,1.53399 0.65624,3.06798 0.98485,4.60246 0.32861,-1.53448 0.65624,-3.06847 0.98386,-4.60246 0.11511,-0.53425 3.4386,-1.10688 4.05646,-1.28779 -0.61786,-0.18041 -3.94135,-0.752541 -4.05646,-1.287293 -0.32762,-1.534486 -0.65525,-3.068473 -0.98386,-4.60246"
|
||||
id="path421-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 129.00764,78.238976 c -0.32763,1.533987 -0.65624,3.068472 -0.98484,4.60246 -0.11413,0.534752 -3.43762,1.106883 -4.05548,1.287792 0.61786,0.180409 3.94135,0.753039 4.05548,1.287791 0.3286,1.533987 0.65721,3.067974 0.98484,4.601962 0.32861,-1.533988 0.65623,-3.067975 0.98485,-4.601962 0.11413,-0.534752 3.43762,-1.107381 4.05548,-1.287791 -0.61786,-0.180909 -3.94135,-0.75304 -4.05548,-1.287792 -0.32862,-1.533988 -0.65624,-3.068473 -0.98485,-4.60246"
|
||||
id="path423-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,61.747369 c -0.328118,1.533986 -0.656235,3.067974 -0.984354,4.602459 -0.114619,0.534255 -3.438106,1.106883 -4.056463,1.287792 0.618357,0.180411 3.941844,0.752541 4.056463,1.287293 0.328119,1.533987 0.656236,3.068473 0.984354,4.60246 0.328611,-1.533987 0.656728,-3.068473 0.984846,-4.60246 0.114621,-0.534752 3.438107,-1.106882 4.055972,-1.287293 -0.617865,-0.180909 -3.941352,-0.753537 -4.055972,-1.287792 -0.328118,-1.534485 -0.656235,-3.068473 -0.984846,-4.602459"
|
||||
id="path425-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.552158,61.747369 c -0.328118,1.533986 -0.656237,3.067974 -0.984354,4.602459 -0.114128,0.534255 -3.438107,1.106883 -4.056464,1.287792 0.618357,0.180411 3.942335,0.752541 4.056464,1.287293 0.328117,1.533987 0.656236,3.068473 0.984354,4.60246 0.32861,-1.533987 0.656727,-3.068473 0.984846,-4.60246 0.114619,-0.534752 3.438105,-1.106882 4.055971,-1.287293 -0.617866,-0.180909 -3.941352,-0.753537 -4.055971,-1.287792 -0.328119,-1.534485 -0.656237,-3.068473 -0.984846,-4.602459"
|
||||
id="path427-8" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.8902,61.747369 c -0.32762,1.533986 -0.65525,3.067974 -0.98386,4.602459 -0.11412,0.534255 -3.43761,1.106883 -4.05646,1.287792 0.61885,0.180411 3.94234,0.752541 4.05646,1.287293 0.32861,1.533987 0.65624,3.068473 0.98386,4.60246 0.32861,-1.533987 0.65723,-3.068473 0.98584,-4.60246 0.11412,-0.534752 3.43761,-1.106882 4.05547,-1.287293 -0.61786,-0.180909 -3.94135,-0.753537 -4.05547,-1.287792 -0.32861,-1.534485 -0.65723,-3.068473 -0.98584,-4.602459"
|
||||
id="path429-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77375,61.747369 c -0.32861,1.533986 -0.65722,3.067974 -0.984845,4.602459 -0.114129,0.534255 -3.437615,1.106883 -4.056465,1.287792 0.61885,0.180411 3.942336,0.752541 4.056465,1.287293 0.327625,1.533987 0.656235,3.068473 0.984845,4.60246 0.32861,-1.533987 0.65624,-3.068473 0.98485,-4.60246 0.11412,-0.534752 3.43761,-1.106882 4.05548,-1.287293 -0.61787,-0.180909 -3.94136,-0.753537 -4.05548,-1.287792 -0.32861,-1.534485 -0.65624,-3.068473 -0.98485,-4.602459"
|
||||
id="path431-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 72.559537,45.2438 c -0.328119,1.533987 -0.656729,3.067975 -0.984846,4.601961 -0.114129,0.534753 -3.437615,1.107381 -4.055972,1.287792 0.618357,0.180909 3.941351,0.753537 4.055972,1.287792 0.328117,1.533987 0.656727,3.067974 0.984846,4.601961 0.328117,-1.533987 0.656236,-3.067974 0.984846,-4.601961 0.114127,-0.534255 3.437613,-1.106883 4.055479,-1.287792 -0.617866,-0.180411 -3.941352,-0.753039 -4.055479,-1.287792 -0.32861,-1.533986 -0.656729,-3.067974 -0.984846,-4.601961"
|
||||
id="path433-4" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 86.666151,45.255761 c -0.328118,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114619,0.534753 -3.438106,1.107382 -4.056463,1.287792 0.618357,0.180411 3.941844,0.753039 4.056463,1.287792 0.328119,1.533987 0.656236,3.067974 0.984354,4.601961 0.328611,-1.533987 0.656728,-3.067974 0.984846,-4.601961 0.114621,-0.534753 3.438107,-1.107381 4.055972,-1.287792 -0.617865,-0.18041 -3.941352,-0.753039 -4.055972,-1.287792 -0.328118,-1.533987 -0.656235,-3.067974 -0.984846,-4.601961"
|
||||
id="path435-2" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 100.77965,45.255761 c -0.32762,1.533987 -0.65525,3.067974 -0.983859,4.601961 -0.114128,0.534753 -3.437614,1.107382 -4.055479,1.287792 0.617865,0.180411 3.941351,0.753039 4.055479,1.287792 0.328609,1.533987 0.656239,3.067974 0.983859,4.601961 0.32861,-1.533987 0.65722,-3.067974 0.98583,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067974 -0.98583,-4.601961"
|
||||
id="path437-5" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 114.89414,45.255761 c -0.32861,1.533987 -0.65723,3.067974 -0.98485,4.601961 -0.11412,0.534753 -3.43761,1.107382 -4.05646,1.287792 0.61885,0.180411 3.94234,0.753039 4.05646,1.287792 0.32762,1.533987 0.65624,3.067974 0.98485,4.601961 0.32861,-1.533987 0.65624,-3.067974 0.98485,-4.601961 0.11412,-0.534753 3.43761,-1.107381 4.05645,-1.287792 -0.61884,-0.18041 -3.94233,-0.753039 -4.05645,-1.287792 -0.32861,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path439-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.10835,61.727932 c -0.32762,1.533988 -0.65624,3.067974 -0.98485,4.601961 -0.11412,0.534753 -3.43761,1.107382 -4.05547,1.287792 0.61786,0.18041 3.94135,0.75304 4.05547,1.287791 0.32861,1.533988 0.65723,3.067975 0.98485,4.601963 0.32763,-1.533988 0.65624,-3.067975 0.98485,-4.601963 0.11413,-0.534751 3.43761,-1.10738 4.05548,-1.287791 -0.61787,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067973 -0.98485,-4.601961"
|
||||
id="path441-1" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 143.12212,45.255761 c -0.3286,1.533987 -0.65623,3.067974 -0.98484,4.601961 -0.11413,0.534753 -3.43762,1.107382 -4.05548,1.287792 0.61786,0.180411 3.94135,0.753039 4.05548,1.287792 0.32861,1.533987 0.65624,3.067974 0.98484,4.601961 0.32763,-1.533987 0.65624,-3.067974 0.98485,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.65722,-3.067974 -0.98485,-4.601961"
|
||||
id="path443-6" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 128.99485,61.727932 c -0.32861,1.533988 -0.65722,3.067974 -0.98485,4.601961 -0.11413,0.534753 -3.43761,1.107382 -4.05645,1.287792 0.61884,0.18041 3.94232,0.75304 4.05645,1.287791 0.32763,1.533988 0.65624,3.067975 0.98485,4.601963 0.32861,-1.533988 0.65624,-3.067975 0.98386,-4.601963 0.11511,-0.534751 3.4386,-1.10738 4.05646,-1.287791 -0.61786,-0.18041 -3.94135,-0.753039 -4.05646,-1.287792 -0.32762,-1.533987 -0.65525,-3.067973 -0.98386,-4.601961"
|
||||
id="path445" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 129.00764,45.255761 c -0.32763,1.533987 -0.65624,3.067974 -0.98484,4.601961 -0.11413,0.534753 -3.43762,1.107382 -4.05548,1.287792 0.61786,0.180411 3.94135,0.753039 4.05548,1.287792 0.3286,1.533987 0.65721,3.067974 0.98484,4.601961 0.32861,-1.533987 0.65623,-3.067974 0.98485,-4.601961 0.11413,-0.534753 3.43762,-1.107381 4.05548,-1.287792 -0.61786,-0.18041 -3.94135,-0.753039 -4.05548,-1.287792 -0.32862,-1.533987 -0.65624,-3.067974 -0.98485,-4.601961"
|
||||
id="path447" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.314331,144.22136 c -0.328118,1.53498 -0.656236,3.06797 -0.984354,4.60295 -0.114128,0.53426 -3.437614,1.10639 -4.055971,1.28779 0.618357,0.18042 3.941843,0.75255 4.055971,1.2878 0.328118,1.53298 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06898 0.984846,-4.60196 0.11462,-0.53525 3.438106,-1.10738 4.055971,-1.2878 -0.617865,-0.1814 -3.941351,-0.75353 -4.055971,-1.28779 -0.328118,-1.53498 -0.656236,-3.06797 -0.984846,-4.60295"
|
||||
id="path449" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.341388,127.73822 c -0.328119,1.53398 -0.656237,3.06797 -0.984355,4.60196 -0.114127,0.53426 -3.437614,1.10639 -4.055971,1.28779 0.618356,0.18041 3.941844,0.75354 4.055971,1.2878 0.328118,1.53398 0.656236,3.06797 0.984355,4.60196 0.32861,-1.53399 0.656727,-3.06798 0.985337,-4.60196 0.114128,-0.53426 3.437614,-1.10739 4.05548,-1.2878 -0.617866,-0.1814 -3.941352,-0.75353 -4.05548,-1.28779 -0.32861,-1.53399 -0.656728,-3.06798 -0.985337,-4.60196"
|
||||
id="path451" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.358113,111.2187 c -0.328118,1.53399 -0.656236,3.06847 -0.984354,4.60246 -0.11462,0.53426 -3.437614,1.10688 -4.055971,1.28779 0.618357,0.18042 3.941351,0.75304 4.055971,1.2878 0.328118,1.53398 0.656236,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656728,-3.06798 0.985338,-4.60196 0.114128,-0.53476 3.437614,-1.10738 4.055479,-1.2878 -0.617865,-0.18091 -3.941351,-0.75353 -4.055479,-1.28779 -0.32861,-1.53399 -0.656728,-3.06847 -0.985338,-4.60246"
|
||||
id="path453" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,176.01147 c -0.328117,1.53399 -0.656235,3.06797 -0.984354,4.60296 -0.114128,0.53425 -3.438105,1.10638 -4.056463,1.28679 0.618358,0.18042 3.942335,0.75354 4.056463,1.28879 0.328119,1.53299 0.656237,3.06797 0.984354,4.60097 0.328119,-1.533 0.656236,-3.06798 0.984846,-4.60097 0.114129,-0.53525 3.437615,-1.10837 4.05548,-1.28879 -0.617865,-0.18041 -3.941351,-0.75254 -4.05548,-1.28679 -0.32861,-1.53499 -0.656727,-3.06897 -0.984846,-4.60296"
|
||||
id="path455" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,192.50357 c -0.328117,1.53399 -0.656235,3.06798 -0.984354,4.60196 -0.114128,0.53426 -3.438105,1.10738 -4.056463,1.2878 0.618358,0.18041 3.942335,0.75254 4.056463,1.28779 0.328119,1.53399 0.656237,3.06797 0.984354,4.60196 0.328119,-1.53399 0.656236,-3.06797 0.984846,-4.60196 0.114129,-0.53525 3.437615,-1.10738 4.05548,-1.28779 -0.617865,-0.18042 -3.941351,-0.75354 -4.05548,-1.2878 -0.32861,-1.53398 -0.656727,-3.06797 -0.984846,-4.60196"
|
||||
id="path457" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,208.99568 c -0.328117,1.53299 -0.656235,3.06798 -0.984354,4.60197 -0.114128,0.53424 -3.438105,1.10738 -4.056463,1.28679 0.618358,0.1814 3.942335,0.75353 4.056463,1.28779 0.328119,1.53498 0.656237,3.06798 0.984354,4.60295 0.328119,-1.53497 0.656236,-3.06797 0.984846,-4.60295 0.114129,-0.53426 3.437615,-1.10639 4.05548,-1.28779 -0.617865,-0.17941 -3.941351,-0.75255 -4.05548,-1.28679 -0.32861,-1.53399 -0.656727,-3.06898 -0.984846,-4.60197"
|
||||
id="path459" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,160.69751 c -0.328117,1.53499 -0.656235,3.06797 -0.984354,4.60296 -0.114128,0.53426 -3.438105,1.10638 -4.056463,1.28779 0.618358,0.17942 3.942335,0.75254 4.056463,1.2878 0.328119,1.53298 0.656237,3.06797 0.984354,4.60096 0.328119,-1.53299 0.656236,-3.06798 0.984846,-4.60096 0.114129,-0.53526 3.437615,-1.10738 4.05548,-1.2878 -0.617865,-0.18141 -3.941351,-0.75353 -4.05548,-1.28779 -0.32861,-1.53499 -0.656727,-3.06797 -0.984846,-4.60296"
|
||||
id="path461" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.334992,94.727094 c -0.328117,1.533988 -0.656727,3.067975 -0.984846,4.601963 -0.114128,0.534751 -3.437614,1.107383 -4.055971,1.287793 0.618357,0.18041 3.941351,0.75354 4.055971,1.28779 0.328119,1.53399 0.656729,3.06797 0.984846,4.60196 0.328119,-1.53399 0.656236,-3.06797 0.984846,-4.60196 0.114129,-0.53425 3.437615,-1.10738 4.055972,-1.28779 -0.618357,-0.18041 -3.941844,-0.753042 -4.055972,-1.287793 -0.32861,-1.533988 -0.656727,-3.067975 -0.984846,-4.601963"
|
||||
id="path463" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,78.238976 c -0.328117,1.533987 -0.656235,3.068472 -0.984354,4.60246 -0.114128,0.534752 -3.438105,1.106883 -4.056463,1.287792 0.618358,0.180409 3.942335,0.753039 4.056463,1.287791 0.328119,1.533987 0.656237,3.067974 0.984354,4.601962 0.328119,-1.533988 0.656236,-3.067975 0.984846,-4.601962 0.114129,-0.534752 3.437615,-1.107381 4.05548,-1.287791 -0.617865,-0.180909 -3.941351,-0.75304 -4.05548,-1.287792 -0.32861,-1.533988 -0.656727,-3.068473 -0.984846,-4.60246"
|
||||
id="path465" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.334992,61.743382 c -0.328117,1.534485 -0.656727,3.068472 -0.984846,4.602459 -0.114128,0.534254 -3.437614,1.106884 -4.055971,1.287792 0.618357,0.18041 3.941843,0.753039 4.055971,1.287791 0.328119,1.533988 0.656729,3.067975 0.984846,4.601962 0.328119,-1.533987 0.656236,-3.067974 0.984846,-4.601962 0.114129,-0.534752 3.437615,-1.10738 4.055972,-1.287791 -0.618357,-0.180908 -3.941844,-0.753538 -4.055972,-1.287792 -0.32861,-1.533987 -0.656727,-3.067975 -0.984846,-4.602459"
|
||||
id="path467" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 44.324661,45.255761 c -0.328117,1.533987 -0.656235,3.067974 -0.984354,4.601961 -0.114128,0.534753 -3.438105,1.107382 -4.056463,1.287792 0.618358,0.180411 3.942335,0.753039 4.056463,1.287792 0.328119,1.533987 0.656237,3.067974 0.984354,4.601961 0.328119,-1.533987 0.656236,-3.067974 0.984846,-4.601961 0.114129,-0.534753 3.437615,-1.107381 4.05548,-1.287792 -0.617865,-0.18041 -3.941351,-0.753039 -4.05548,-1.287792 -0.32861,-1.533987 -0.656727,-3.067974 -0.984846,-4.601961"
|
||||
id="path469" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.428325,144.22136 c -0.328118,1.53498 -0.656236,3.06797 -0.984354,4.60295 -0.11462,0.53426 -3.438106,1.10639 -4.056463,1.28779 0.618357,0.18042 3.941843,0.75255 4.056463,1.2878 0.328118,1.53298 0.656236,3.06797 0.984354,4.60196 0.328118,-1.53399 0.656236,-3.06898 0.984846,-4.60196 0.114128,-0.53525 3.438106,-1.10738 4.055972,-1.2878 -0.617866,-0.1814 -3.941844,-0.75353 -4.055972,-1.28779 -0.32861,-1.53498 -0.656728,-3.06797 -0.984846,-4.60295"
|
||||
id="path471" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.455381,127.73822 c -0.328117,1.53398 -0.656236,3.06797 -0.984354,4.60196 -0.11462,0.53426 -3.437614,1.10639 -4.055972,1.28779 0.618358,0.18041 3.941352,0.75354 4.055972,1.2878 0.328118,1.53398 0.656237,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656729,-3.06798 0.984846,-4.60196 0.11462,-0.53426 3.438107,-1.10739 4.055972,-1.2878 -0.617865,-0.1814 -3.941352,-0.75353 -4.055972,-1.28779 -0.328117,-1.53399 -0.656236,-3.06798 -0.984846,-4.60196"
|
||||
id="path473" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.472107,111.2187 c -0.328118,1.53399 -0.656237,3.06847 -0.984354,4.60246 -0.11462,0.53426 -3.438107,1.10688 -4.056463,1.28779 0.618356,0.18042 3.941843,0.75304 4.056463,1.2878 0.328117,1.53398 0.656236,3.06797 0.984354,4.60196 0.328118,-1.53399 0.656728,-3.06798 0.984846,-4.60196 0.11462,-0.53476 3.437614,-1.10738 4.055972,-1.2878 -0.618358,-0.18091 -3.941352,-0.75353 -4.055972,-1.28779 -0.328118,-1.53399 -0.656728,-3.06847 -0.984846,-4.60246"
|
||||
id="path475" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,176.01147 c -0.328118,1.53399 -0.656728,3.06797 -0.984847,4.60296 -0.114128,0.53425 -3.437614,1.10638 -4.055972,1.28679 0.618358,0.18042 3.941353,0.75354 4.055972,1.28879 0.328119,1.53299 0.656729,3.06797 0.984847,4.60097 0.328117,-1.533 0.656236,-3.06798 0.984353,-4.60097 0.114621,-0.53525 3.438107,-1.10837 4.056465,-1.28879 -0.618358,-0.18041 -3.941844,-0.75254 -4.056465,-1.28679 -0.328117,-1.53499 -0.656236,-3.06897 -0.984353,-4.60296"
|
||||
id="path477" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,192.50357 c -0.328118,1.53399 -0.656728,3.06798 -0.984847,4.60196 -0.114128,0.53426 -3.437614,1.10738 -4.055972,1.2878 0.618358,0.18041 3.941844,0.75254 4.055972,1.28779 0.328119,1.53399 0.656729,3.06797 0.984847,4.60196 0.328117,-1.53399 0.656236,-3.06797 0.984353,-4.60196 0.114621,-0.53525 3.438107,-1.10738 4.056465,-1.28779 -0.618358,-0.18042 -3.941844,-0.75354 -4.056465,-1.2878 -0.328117,-1.53398 -0.656236,-3.06797 -0.984353,-4.60196"
|
||||
id="path479" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,208.99568 c -0.328118,1.53299 -0.656728,3.06798 -0.984847,4.60197 -0.114128,0.53424 -3.437614,1.10738 -4.055972,1.28679 0.618358,0.1814 3.941844,0.75353 4.055972,1.28779 0.328119,1.53498 0.656729,3.06798 0.984847,4.60295 0.328117,-1.53497 0.656236,-3.06797 0.984353,-4.60295 0.114621,-0.53426 3.438107,-1.10639 4.056465,-1.28779 -0.618358,-0.17941 -3.941844,-0.75255 -4.056465,-1.28679 -0.328117,-1.53399 -0.656236,-3.06898 -0.984353,-4.60197"
|
||||
id="path481" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,160.69751 c -0.328118,1.53499 -0.656728,3.06797 -0.984847,4.60296 -0.114128,0.53426 -3.437614,1.10638 -4.055972,1.28779 0.618358,0.18042 3.941844,0.75254 4.055972,1.2878 0.328119,1.53298 0.656729,3.06797 0.984847,4.60096 0.328117,-1.53299 0.656236,-3.06798 0.984353,-4.60096 0.114621,-0.53526 3.438107,-1.10838 4.056465,-1.2878 -0.618358,-0.18141 -3.941844,-0.75353 -4.056465,-1.28779 -0.328117,-1.53499 -0.656236,-3.06797 -0.984353,-4.60296"
|
||||
id="path483" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.448494,94.727094 c -0.328117,1.533988 -0.656236,3.067975 -0.984354,4.601963 -0.114128,0.534751 -3.437614,1.107383 -4.055972,1.287793 0.618358,0.18041 3.941844,0.75354 4.055972,1.28779 0.328118,1.53399 0.656237,3.06797 0.984354,4.60196 0.32861,-1.53399 0.656729,-3.06797 0.984846,-4.60196 0.11462,-0.53425 3.438106,-1.10738 4.055972,-1.28779 -0.617866,-0.18041 -3.941352,-0.753042 -4.055972,-1.287793 -0.328117,-1.533988 -0.656236,-3.067975 -0.984846,-4.601963"
|
||||
id="path485" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,78.238976 c -0.328118,1.533987 -0.656728,3.068472 -0.984847,4.60246 -0.114128,0.534752 -3.437614,1.106883 -4.055972,1.287792 0.618358,0.180409 3.941844,0.753039 4.055972,1.287791 0.328119,1.533987 0.656729,3.067974 0.984847,4.601962 0.328117,-1.533988 0.656236,-3.067975 0.984353,-4.601962 0.114621,-0.534752 3.438107,-1.107381 4.056465,-1.287791 -0.618358,-0.180909 -3.941844,-0.75304 -4.056465,-1.287792 -0.328117,-1.533988 -0.656236,-3.068473 -0.984353,-4.60246"
|
||||
id="path487" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.448494,61.743382 c -0.328117,1.534485 -0.656236,3.068472 -0.984354,4.602459 -0.114128,0.534254 -3.437614,1.106884 -4.055972,1.287792 0.618358,0.18041 3.941844,0.753039 4.055972,1.287791 0.328118,1.533988 0.656237,3.067975 0.984354,4.601962 0.32861,-1.533987 0.656729,-3.067974 0.984846,-4.601962 0.11462,-0.534752 3.438106,-1.10738 4.055972,-1.287791 -0.617866,-0.180908 -3.941352,-0.753538 -4.055972,-1.287792 -0.328117,-1.533987 -0.656236,-3.067975 -0.984846,-4.602459"
|
||||
id="path489" /><path
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.0268082;stroke-miterlimit:10"
|
||||
d="m 58.438656,45.255761 c -0.328118,1.533987 -0.656728,3.067974 -0.984847,4.601961 -0.114128,0.534753 -3.437614,1.107382 -4.055972,1.287792 0.618358,0.180411 3.941844,0.753039 4.055972,1.287792 0.328119,1.533987 0.656729,3.067974 0.984847,4.601961 0.328117,-1.533987 0.656236,-3.067974 0.984353,-4.601961 0.114621,-0.534753 3.438107,-1.107381 4.056465,-1.287792 -0.618358,-0.18041 -3.941844,-0.753039 -4.056465,-1.287792 -0.328117,-1.533987 -0.656236,-3.067974 -0.984353,-4.601961"
|
||||
id="path491" /><path
|
||||
style="fill:none;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.28644881;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
d="m 17.861231,16.395074 c -2.370124,0 -1.512197,6.55159 -1.512197,7.860314 0,5.982948 0,11.965896 0,17.948845 0,19.785843 0,39.572183 0,59.358027 0,42.41588 0,84.83129 0,127.24668 0,5.27276 0,10.54553 0,15.81631 0,1.78815 -0.670993,5.5997 1.938701,5.5997 13.437096,0 26.873702,0 40.310798,0 36.67346,0 73.345937,0 110.018417,0 2.76858,0 2.22844,-2.99721 2.22844,-5.01761 0,-5.05049 0,-10.10098 0,-15.15248 0,-18.71285 0,-37.42769 0,-56.14153 0,-43.44005 0,-86.880591 0,-130.321133 0,-6.187779 0,-12.376554 0,-18.564833 0,-2.085185 0.47127,-4.815762 0,-6.865065 0,-3.039567 -8.52024,-1.767225 -10.19969,-1.767225 -8.03029,0 -16.05958,0 -24.08889,0 -38.63626,0 -77.273017,0 -115.909282,0 -0.928766,0 -1.857532,0 -2.786297,0"
|
||||
id="path493" /></g></svg>
|
After Width: | Height: | Size: 116 KiB |
434
img/playing_cards/fronts/clubs_10.svg
Normal file
|
@ -0,0 +1,434 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_10.svg">
|
||||
<title
|
||||
id="title911">Ten of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="137.14394"
|
||||
inkscape:cy="184.73771"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="34"
|
||||
inkscape:window-y="17"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ten of Clubs Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ten; clubs; playing; card; black; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A ten of clubs playing card in black and white.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g987">
|
||||
<rect
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.756;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-79.730734,833.65959)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3216-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.72184749,1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path923"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m 23.835468,544.63039 q 0,0.35364 -0.127311,0.62241 -0.339497,0.11317 -0.735576,0.11317 H 12.533063 q -0.933616,0 -0.933616,-0.9902 0,-0.16975 0.02829,-0.53754 0.02829,-0.38193 0.02829,-0.57997 0,-0.93362 0.82045,-0.93362 h 3.522276 v -13.07061 h -4.300289 q -0.905324,0 -0.905324,-0.9902 0,-0.21219 0.04244,-0.67899 0.05658,-0.48096 0.05658,-0.72143 0,-0.48096 0.905324,-0.48096 0.254622,0 0.961907,0.0566 0.707284,0.0424 1.103364,0.0424 2.26331,0 2.744263,-1.57017 h 2.701827 v 17.41334 q 0.947761,0 2.036979,-0.0566 1.103363,-0.0707 1.315549,-0.0707 0.82045,0 1.018489,0.43852 0.155603,0.38193 0.155603,1.99454 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.69918843,1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path920"
|
||||
style="font-size:27.6592865px;line-height:1.25;stroke-width:1"
|
||||
d="m 38.072906,518.57679 q 0,9.66994 -6.685228,9.66994 -6.779766,0 -6.779766,-9.72396 0,-10.08862 6.914822,-10.08862 6.550172,0 6.550172,10.14264 z m -3.511432,-0.28362 q 0,-6.92832 -3.227818,-6.92832 -1.890771,0 -2.687596,2.74161 -0.499704,1.72871 -0.499704,4.30826 0,6.92833 3.1873,6.92833 1.904277,0 2.714608,-2.72811 0.51321,-1.75572 0.51321,-4.32177 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.01882914,0,0,0.01889089,-28.914567,764.98044)"
|
||||
id="g5492-7-8"
|
||||
style="stroke-width:3.18132639">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3216-7-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.72184749,-1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path936"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m -300.33276,-734.2844 q 0,0.35364 -0.12731,0.62241 -0.3395,0.11316 -0.73558,0.11316 h -10.43951 q -0.93362,0 -0.93362,-0.9902 0,-0.16974 0.0283,-0.53753 0.0283,-0.38194 0.0283,-0.57998 0,-0.93361 0.82045,-0.93361 h 3.52228 v -13.07062 h -4.30029 q -0.90532,0 -0.90532,-0.9902 0,-0.21218 0.0424,-0.67899 0.0566,-0.48095 0.0566,-0.72143 0,-0.48095 0.90532,-0.48095 0.25462,0 0.96191,0.0566 0.70728,0.0424 1.10336,0.0424 2.26331,0 2.74426,-1.57017 h 2.70183 v 17.41334 q 0.94776,0 2.03698,-0.0566 1.10336,-0.0707 1.31555,-0.0707 0.82045,0 1.01849,0.43851 0.1556,0.38194 0.1556,1.99455 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.69918843,-1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path933"
|
||||
style="font-size:27.6592865px;line-height:1.25;stroke-width:1"
|
||||
d="m -296.60082,-720.19238 q 0,9.66995 -6.68523,9.66995 -6.77977,0 -6.77977,-9.72397 0,-10.08862 6.91482,-10.08862 6.55018,0 6.55018,10.14264 z m -3.51144,-0.28361 q 0,-6.92833 -3.22781,-6.92833 -1.89078,0 -2.6876,2.74162 -0.4997,1.7287 -0.4997,4.30826 0,6.92832 3.1873,6.92832 1.90427,0 2.7146,-2.72811 0.51321,-1.75572 0.51321,-4.32176 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.01882914,0,0,-0.01889089,170.6743,1006.7439)"
|
||||
id="g5492-7-8-8"
|
||||
style="stroke-width:3.18132639">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,-79.730734,1004.813)"
|
||||
id="g5492-7-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-5"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-79.730734,766.91128)"
|
||||
id="g5492-7-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-21.360405,800.28544)"
|
||||
id="g5492-7-15">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,37.009925,766.91128)"
|
||||
id="g5492-7-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-1"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,37.009925,833.65959)"
|
||||
id="g5492-7-2">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-3"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-22"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,-79.730734,938.06473)"
|
||||
id="g5492-7-4-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-5-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,-21.360405,971.43888)"
|
||||
id="g5492-7-4-5">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-5-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-6"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,37.009925,1004.813)"
|
||||
id="g5492-7-4-18">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-5-9"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_10.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,37.009925,938.06473)"
|
||||
id="g5492-7-4-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-5-95"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
225
img/playing_cards/fronts/clubs_2.svg
Normal file
|
@ -0,0 +1,225 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_2.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title899">Two of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.3513514"
|
||||
inkscape:cx="-25.046024"
|
||||
inkscape:cy="166.49994"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="68"
|
||||
inkscape:window-y="15"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Two of Clubs Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>playing; card; two; clubs; black; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A two of clubs playing card</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36217)">
|
||||
<g
|
||||
id="g857">
|
||||
<rect
|
||||
rx="8.9191828"
|
||||
ry="8.9457407"
|
||||
y="719.74023"
|
||||
x="0.37795272"
|
||||
height="332.24399"
|
||||
width="233.244"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75599998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-21.360397,766.91137)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882923,0,0,-0.01889088,171.24288,1006.7439)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-21.360394,1004.813)"
|
||||
id="g5492-7-5-2-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51-2-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.98105478,1.0193111)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path901"
|
||||
style="font-size:39.34608078px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.999707,735.55243 -0.710843,5.64831 H 7.9414487 q 0.422663,-4.86062 3.9192383,-8.58774 l 6.224673,-5.3025 q 3.24682,-2.80494 3.24682,-5.6291 0,-1.88277 -1.075869,-2.99706 -1.056658,-1.13351 -2.920217,-1.13351 -2.151739,0 -3.208396,1.15272 -0.691631,0.76848 -1.056658,2.36307 -0.365027,1.69065 -0.576358,1.95962 -0.307392,0.0961 -0.710843,0.0961 H 9.3631333 q -0.422663,0 -0.7300543,-0.17291 -0.1344836,-0.40345 -0.1344836,-0.90296 0,-4.0153 2.6320376,-6.37837 2.516766,-2.26701 6.551276,-2.26701 3.746331,0 6.128613,1.99804 2.535978,2.11332 2.535978,5.80201 0,3.63106 -2.804945,6.64734 -0.97981,1.07587 -5.571467,4.59165 -3.342879,2.59362 -4.111358,4.66851 h 8.952771 l 0.153695,-1.72908 q 0.211332,-0.92217 1.133506,-0.92217 h 1.921195 q 1.114293,0 0.97981,1.09508 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.98105488,-1.019311)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path904"
|
||||
style="font-size:39.34608078px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.51897,-1002.6063 -0.71085,5.64829 h -18.34741 q 0.42266,-4.86059 3.91924,-8.58779 l 6.22467,-5.3025 q 3.24682,-2.8049 3.24682,-5.6291 0,-1.8827 -1.07587,-2.997 -1.05666,-1.1335 -2.92022,-1.1335 -2.15174,0 -3.20839,1.1527 -0.69163,0.7685 -1.05666,2.3631 -0.36503,1.6906 -0.57636,1.9596 -0.30739,0.096 -0.71084,0.096 h -2.42071 q -0.42266,0 -0.73005,-0.1729 -0.13449,-0.4034 -0.13449,-0.9029 0,-4.0153 2.63204,-6.3784 2.51677,-2.267 6.55128,-2.267 3.74633,0 6.12861,1.998 2.53598,2.1134 2.53598,5.802 0,3.6311 -2.80495,6.6474 -0.97981,1.0759 -5.57146,4.5916 -3.34288,2.5937 -4.11136,4.6685 h 8.95277 l 0.1537,-1.729 q 0.21133,-0.9222 1.1335,-0.9222 h 1.9212 q 1.11429,0 0.97981,1.0951 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
246
img/playing_cards/fronts/clubs_3.svg
Normal file
|
@ -0,0 +1,246 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_3.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_3.png"
|
||||
inkscape:export-xdpi="95.999992"
|
||||
inkscape:export-ydpi="95.999992">
|
||||
<title
|
||||
id="title908">Three of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.0958338"
|
||||
inkscape:cx="-149.13312"
|
||||
inkscape:cy="163.89272"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="83"
|
||||
inkscape:window-y="14"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="4.7266483e-05"
|
||||
originy="6.7423658e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Three of Clubs Playing Card</dc:title>
|
||||
<dc:date>2020-05-04</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>three; clubs; playing; card; black; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A three of clubs playing card in black and white.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(4.7266483e-5,-719.36225)">
|
||||
<g
|
||||
id="g884">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457426"
|
||||
y="719.74017"
|
||||
x="0.37790549"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07364902,0,0,0.07382326,-248.82772,933.67508)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07364902,0,0,0.07382326,-248.82769,933.67508)" />
|
||||
<g
|
||||
transform="matrix(0.07364902,0,0,0.07382326,-248.82772,933.67508)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.05661282,0,0,0.05676099,-21.667623,766.72594)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.01887094,0,0,0.01892033,-29.238556,764.79208)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.01887104,0,0,-0.01892033,171.36332,1006.9323)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.05661282,0,0,0.05676099,-21.66762,867.00445)"
|
||||
id="g5492-7-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4124-6-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.05661282,0,0,-0.05676099,-21.66762,1004.9984)"
|
||||
id="g5492-7-5-2-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="rect4124-6-51-2-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77913785px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31492817"
|
||||
transform="scale(1.0095881,0.99050296)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path902"
|
||||
style="font-size:40.00067139px;line-height:1.25;stroke-width:0.31492817"
|
||||
d="m 26.16853,754.46685 q 0,3.98444 -2.793015,6.13292 -2.519574,1.95315 -6.601673,1.95315 -9.2970315,0 -9.2970315,-8.78921 0,-0.41016 0.136721,-0.78126 0.2929737,-0.17578 0.6640737,-0.17578 H 10.81671 q 0.3711,0 0.683606,0.17578 0.09766,0.27344 0.156252,0.64454 0.332037,2.42192 1.367211,3.51569 1.152363,1.21095 3.535215,1.21095 1.953158,0 3.183647,-1.0547 1.289084,-1.13283 1.289084,-3.04693 0,-4.06256 -4.433668,-4.7657 -0.546884,-0.0781 -0.820326,-0.23438 -0.156253,-0.31251 -0.156253,-3.16412 0,-0.3711 0.175785,-0.70313 1.464868,-0.4297 2.929736,-0.87892 1.542995,-0.70314 1.542995,-2.94927 0,-3.3985 -3.984442,-3.3985 -1.835968,0 -2.871142,0.89846 -0.546884,0.48829 -1.132831,1.66018 -0.429695,0.89845 -0.85939,0.89845 H 8.9026157 q -0.9570473,0 -0.9570473,-0.85939 0,-3.26177 2.5586366,-5.15633 2.304726,-1.69925 5.664158,-1.69925 3.867252,0 6.308699,1.62112 2.871142,1.89456 2.871142,5.58603 0,4.4532 -4.394605,6.05479 5.214931,2.20707 5.214931,7.30481 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77913785px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31492817"
|
||||
transform="scale(-1.0095881,-0.99050296)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path905"
|
||||
style="font-size:40.00067139px;line-height:1.25;stroke-width:0.31492817"
|
||||
d="m -205.60907,-1034.245 q 0,3.9844 -2.79301,6.1329 -2.51958,1.9532 -6.60168,1.9532 -9.29703,0 -9.29703,-8.7892 0,-0.4102 0.13672,-0.7813 0.29298,-0.1758 0.66408,-0.1758 h 2.5391 q 0.3711,0 0.68361,0.1758 0.0976,0.2734 0.15625,0.6445 0.33204,2.422 1.36721,3.5157 1.15236,1.211 3.53521,1.211 1.95316,0 3.18365,-1.0547 1.28909,-1.1329 1.28909,-3.0469 0,-4.0626 -4.43367,-4.7658 -0.54689,-0.078 -0.82033,-0.2343 -0.15625,-0.3125 -0.15625,-3.1641 0,-0.3711 0.17578,-0.7032 1.46487,-0.4297 2.92974,-0.8789 1.54299,-0.7031 1.54299,-2.9493 0,-3.3985 -3.98444,-3.3985 -1.83597,0 -2.87114,0.8985 -0.54688,0.4883 -1.13283,1.6602 -0.4297,0.8984 -0.85939,0.8984 h -2.51957 q -0.95705,0 -0.95705,-0.8594 0,-3.2617 2.55864,-5.1563 2.30472,-1.6993 5.66415,-1.6993 3.86726,0 6.3087,1.6212 2.87114,1.8945 2.87114,5.586 0,4.4532 -4.3946,6.0548 5.21493,2.2071 5.21493,7.3048 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
269
img/playing_cards/fronts/clubs_4.svg
Normal file
|
@ -0,0 +1,269 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="E:\DAN\OneDrive\projects\Playing_Cards\fronts\png-096-dpi\clubs_4.png"
|
||||
sodipodi:docname="clubs_4.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="333"
|
||||
width="234">
|
||||
<title
|
||||
id="title907">Four of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
inkscape:document-rotation="0"
|
||||
showborder="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="12"
|
||||
inkscape:window-x="291"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="82.806953"
|
||||
inkscape:cx="140.42518"
|
||||
inkscape:zoom="0.5479169"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
originy="-723.00006"
|
||||
originx="4.7266483e-05"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid3767"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Four of Clubs Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-04</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>four; clubs; playing; card; white; black;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A four of clubs playing card in black and white.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(4.7266483e-5,-719.36223)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_4.png"
|
||||
id="g4650">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.756;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4266"
|
||||
width="233.244"
|
||||
height="332.24399"
|
||||
x="0.37795272"
|
||||
y="719.74023"
|
||||
ry="8.9457407"
|
||||
rx="8.9191828" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
id="g4233"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)"
|
||||
id="g4211"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
clip-path="none" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
id="g4227"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)" />
|
||||
<g
|
||||
id="g5492-7"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730704,766.91137)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-8-1"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-9-7"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-8-8-4"
|
||||
transform="matrix(0.01882923,0,0,-0.01889088,171.24288,1006.7439)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-9-8-8"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-1"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,766.91137)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-1"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-52"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-5-2-6"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,1004.813)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-51-2-8"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-5-2-7"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,1004.813)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-51-2-6"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-7-1-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="4"
|
||||
transform="scale(0.93672704,1.0675469)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="text3755-5">
|
||||
<path
|
||||
d="m 28.418233,706.77175 q 0,0.38656 -0.14726,0.75471 -0.331335,0.18408 -0.699485,0.18408 H 15.75388 q -1.362155,0 -1.362155,-1.38057 0,-0.22089 0.03682,-0.77311 0.03682,-0.55223 0.03682,-0.84675 0,-0.64426 0.276113,-0.82833 0.202482,-0.12885 0.901967,-0.12885 h 4.601872 v -2.83476 H 9.9187053 q -1.6014516,0 -1.6014516,-1.49101 0,-0.2577 0.055222,-0.93878 0.055222,-0.69948 0.055222,-1.10445 0,-0.62585 0.7178922,-1.56463 L 19.78512,681.8296 q 0.497002,-0.66267 1.251709,-0.66267 h 2.429789 q 0.865152,0 0.865152,0.95719 v 15.02052 q 0.66267,0 1.509414,-0.0368 0.865152,-0.0368 1.10445,-0.0368 0.994004,0 1.233302,0.497 0.239297,0.47859 0.239297,2.39297 0,0.34974 -0.05522,0.53382 -0.110445,0.42337 -0.846744,0.42337 H 24.33177 v 2.83476 q 0.681077,0 1.546229,-0.0368 0.865152,-0.0368 1.086042,-0.0368 1.049227,0 1.270117,0.53381 0.184075,0.44178 0.184075,2.55864 z m -8.099296,-19.69601 q -1.012412,1.54623 -7.473441,10.0689 h 7.399811 q 0,-0.9756 -0.03682,-3.35017 -0.05522,-2.15367 -0.03682,-3.36857 0.01841,-1.84075 0.14726,-3.35016 z"
|
||||
style="font-size:37.6985px;line-height:1.25;stroke-width:1"
|
||||
id="path4618" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="4"
|
||||
transform="scale(-0.93672704,-1.0675469)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="text3755-2-28">
|
||||
<path
|
||||
d="m -221.38766,-952.85044 q 0,0.38656 -0.14726,0.75471 -0.33133,0.18407 -0.69948,0.18407 h -11.81761 q -1.36216,0 -1.36216,-1.38056 0,-0.22089 0.0368,-0.77311 0.0368,-0.55223 0.0368,-0.84675 0,-0.64426 0.27612,-0.82833 0.20248,-0.12886 0.90196,-0.12886 h 4.60188 v -2.83475 h -10.32661 q -1.60145,0 -1.60145,-1.49101 0,-0.2577 0.0552,-0.93878 0.0552,-0.69948 0.0552,-1.10445 0,-0.62585 0.71789,-1.56464 l 10.63953,-13.98969 q 0.497,-0.66267 1.25171,-0.66267 h 2.42979 q 0.86515,0 0.86515,0.95719 v 15.02051 q 0.66267,0 1.50941,-0.0368 0.86516,-0.0368 1.10445,-0.0368 0.99401,0 1.2333,0.49701 0.2393,0.47859 0.2393,2.39297 0,0.34974 -0.0552,0.53382 -0.11045,0.42337 -0.84675,0.42337 h -3.18449 v 2.83475 q 0.68108,0 1.54623,-0.0368 0.86515,-0.0368 1.08604,-0.0368 1.04923,0 1.27012,0.53382 0.18407,0.44178 0.18407,2.55864 z m -8.09929,-19.69601 q -1.01242,1.54623 -7.47344,10.06889 h 7.39981 q 0,-0.97559 -0.0368,-3.35016 -0.0552,-2.15368 -0.0368,-3.36857 0.0184,-1.84075 0.14726,-3.35016 z"
|
||||
style="font-size:37.6985px;line-height:1.25;stroke-width:1"
|
||||
id="path4621" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
284
img/playing_cards/fronts/clubs_5.svg
Normal file
|
@ -0,0 +1,284 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_5.png"
|
||||
sodipodi:docname="clubs_5.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="333"
|
||||
width="234">
|
||||
<title
|
||||
id="title908">Five of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
inkscape:document-rotation="0"
|
||||
showborder="false"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="74"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-width="1336"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="177.73029"
|
||||
inkscape:cx="134.86315"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
originy="-723.00006"
|
||||
originx="4.7266483e-05"
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid3767"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Five of Clubs Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-04</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>five; clubs; playing; card; white; black</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A five of clubs playing card</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(4.7266483e-5,-719.36223)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
id="g945">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.756;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4266"
|
||||
width="233.244"
|
||||
height="332.24399"
|
||||
x="0.37795272"
|
||||
y="719.74023"
|
||||
ry="8.9457407"
|
||||
rx="8.9191828" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
id="g4233"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)"
|
||||
id="g4211"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
clip-path="none" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
id="g4227"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)" />
|
||||
<g
|
||||
id="g5492-7"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730704,766.91137)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-8-1"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-9-7"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-8-8-4"
|
||||
transform="matrix(0.01882923,0,0,-0.01889088,171.24288,1006.7439)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-9-8-8"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-5"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-21.360397,867.03379)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-51"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-1"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,766.91137)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-1"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-52"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-5-2-6"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,1004.813)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-51-2-8"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5492-7-5-2-7"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,1004.813)"
|
||||
style="stroke-width:3.18133">
|
||||
<rect
|
||||
y="536.54938"
|
||||
x="2406.7065"
|
||||
height="295.68549"
|
||||
width="85.256371"
|
||||
id="rect4124-6-51-2-6"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133" />
|
||||
<path
|
||||
sodipodi:nodetypes="ssscssscssscs"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18133"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
id="path3979-1-6-1-7-1-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="5"
|
||||
transform="scale(0.99509926,1.0049249)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="text3755-5">
|
||||
<path
|
||||
d="m 26.751228,742.30191 q 0,4.36508 -2.65023,6.93736 -2.630743,2.57228 -6.995827,2.57228 -4.189702,0 -6.625575,-2.04613 -2.6502299,-2.18254 -2.6502299,-6.2943 0,-0.66255 1.0522972,-0.66255 h 2.5527947 q 0.409227,0 0.759993,0.11692 0.116921,0.19487 0.155895,0.50666 0.331279,2.20203 1.266654,3.15689 1.052298,1.07179 3.23484,1.07179 2.182542,0 3.527144,-1.53948 1.266654,-1.46152 1.266654,-3.66355 0,-5.43687 -4.501493,-5.43687 -1.636907,0 -3.293301,1.13025 h -3.215352 q -0.448201,0 -0.8574275,-0.11692 -0.1948698,-0.19487 -0.1948698,-0.4482 0,-2.76716 0.2923048,-6.97635 0.2533305,-3.50765 0.5066615,-6.99582 h 14.615238 q 0.506662,0 0.915888,0.15589 0.175383,0.38974 0.175383,2.72818 0,0.38974 -0.03897,0.64307 -0.136409,0.62359 -1.130245,0.62359 H 14.338019 q 0.05846,1.05229 -0.175383,3.21535 -0.233844,2.14357 -0.175383,3.19586 2.00716,-1.24716 4.189702,-1.24716 4.014318,0 6.352757,2.72817 2.221516,2.57229 2.221516,6.64507 z"
|
||||
style="font-size:39.9093px;line-height:1.25;stroke-width:1"
|
||||
id="path910" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="5"
|
||||
transform="scale(-0.99509926,-1.0049249)"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="text3755-2-28">
|
||||
<path
|
||||
d="m -208.40111,-1020.7397 q 0,4.3651 -2.65023,6.9373 -2.63075,2.5723 -6.99583,2.5723 -4.1897,0 -6.62558,-2.0461 -2.65023,-2.1825 -2.65023,-6.2943 0,-0.6626 1.0523,-0.6626 h 2.5528 q 0.40922,0 0.75999,0.117 0.11692,0.1948 0.1559,0.5066 0.33127,2.2021 1.26665,3.1569 1.0523,1.0718 3.23484,1.0718 2.18254,0 3.52714,-1.5395 1.26666,-1.4615 1.26666,-3.6635 0,-5.4369 -4.5015,-5.4369 -1.6369,0 -3.2933,1.1303 h -3.21535 q -0.4482,0 -0.85743,-0.117 -0.19487,-0.1948 -0.19487,-0.4482 0,-2.7671 0.29231,-6.9763 0.25333,-3.5077 0.50666,-6.9958 h 14.61524 q 0.50666,0 0.91589,0.1559 0.17538,0.3897 0.17538,2.7281 0,0.3898 -0.039,0.6431 -0.13641,0.6236 -1.13025,0.6236 h -10.58143 q 0.0585,1.0523 -0.17539,3.2153 -0.23384,2.1436 -0.17538,3.1959 2.00716,-1.2472 4.1897,-1.2472 4.01432,0 6.35276,2.7282 2.22152,2.5723 2.22152,6.6451 z"
|
||||
style="font-size:39.9093px;line-height:1.25;stroke-width:1"
|
||||
id="path913" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
303
img/playing_cards/fronts/clubs_6.svg
Normal file
|
@ -0,0 +1,303 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_6.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_6.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title911">Six of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="140.00196"
|
||||
inkscape:cy="166.48682"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="124"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="4.7266483e-05"
|
||||
originy="5.2403288e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Six of Clubs Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-04</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>six; clubs; playing; card; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A six of clubs playing card in black and white.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(4.7266483e-5,-719.36223)">
|
||||
<g
|
||||
id="g951">
|
||||
<rect
|
||||
rx="8.9191828"
|
||||
ry="8.9457407"
|
||||
y="719.74023"
|
||||
x="0.37795272"
|
||||
height="332.24399"
|
||||
width="233.244"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75599998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,867.03379)"
|
||||
id="g5492-7-1-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-1-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52-3"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730704,766.91137)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882923,0,0,-0.01889088,171.24288,1006.7439)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,766.91137)"
|
||||
id="g5492-7-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-1"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730701,867.03379)"
|
||||
id="g5492-7-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,1004.813)"
|
||||
id="g5492-7-5-2-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51-2-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,1004.813)"
|
||||
id="g5492-7-5-2-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51-2-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.99029278,1.0098024)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path913"
|
||||
style="font-size:39.17510986px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.881067,738.99857 q 0,4.24652 -2.467573,6.7141 -2.448444,2.46757 -6.694965,2.46757 -9.8511625,0 -9.8511625,-13.61947 0,-6.00634 2.1232603,-9.7364 2.6397292,-4.7056 8.1869862,-4.7056 3.213583,0 5.336843,1.31986 2.544087,1.56854 2.544087,4.59084 0,0.66949 -0.937295,0.66949 h -2.831014 q -0.554726,0 -0.937295,-0.63124 -0.554726,-0.93729 -0.87991,-1.20509 -0.784267,-0.63124 -2.295416,-0.63124 -2.544087,0 -3.959594,2.37193 -1.109451,1.91285 -1.243351,4.70561 2.238032,-1.77895 5.355972,-1.77895 3.959594,0 6.312396,2.79275 2.238031,2.63973 2.238031,6.67584 z m -4.992531,-0.11477 q 0,-2.18065 -1.090323,-3.59615 -1.205093,-1.56854 -3.328354,-1.56854 -2.104132,0 -3.290097,1.56854 -1.071194,1.4155 -1.071194,3.59615 0,2.085 1.12858,3.53877 1.224222,1.58766 3.25184,1.58766 2.065875,0 3.290097,-1.56853 1.109451,-1.43464 1.109451,-3.5579 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.99029278,-1.0098024)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path916"
|
||||
style="font-size:39.17510986px;line-height:1.25;stroke-width:1"
|
||||
d="m -209.41262,-1015.5274 q 0,4.2466 -2.46757,6.7141 -2.44844,2.4676 -6.69496,2.4676 -9.85117,0 -9.85117,-13.6195 0,-6.0063 2.12326,-9.7364 2.63973,-4.7056 8.18699,-4.7056 3.21358,0 5.33684,1.3199 2.54409,1.5685 2.54409,4.5908 0,0.6695 -0.9373,0.6695 h -2.83101 q -0.55473,0 -0.9373,-0.6312 -0.55472,-0.9373 -0.8799,-1.2051 -0.78427,-0.6312 -2.29542,-0.6312 -2.54409,0 -3.95959,2.3719 -1.10946,1.9128 -1.24336,4.7056 2.23804,-1.779 5.35598,-1.779 3.95959,0 6.31239,2.7928 2.23803,2.6397 2.23803,6.6758 z m -4.99253,-0.1147 q 0,-2.1807 -1.09032,-3.5962 -1.20509,-1.5685 -3.32835,-1.5685 -2.10414,0 -3.2901,1.5685 -1.0712,1.4155 -1.0712,3.5962 0,2.085 1.12858,3.5387 1.22423,1.5877 3.25184,1.5877 2.06588,0 3.2901,-1.5685 1.10945,-1.4347 1.10945,-3.5579 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
321
img/playing_cards/fronts/clubs_7.svg
Normal file
|
@ -0,0 +1,321 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_7.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_7.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title914">Seven of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.0958338"
|
||||
inkscape:cx="202.57081"
|
||||
inkscape:cy="129.98493"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="131"
|
||||
inkscape:window-y="35"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="4.7266483e-05"
|
||||
originy="5.2403288e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Seven of Clubs Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-04</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>seven; clubs; playing; card; white; black;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A seven of clubs playing card, in black and white.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(4.7266483e-5,-719.36223)">
|
||||
<g
|
||||
id="g957">
|
||||
<rect
|
||||
rx="8.9191828"
|
||||
ry="8.9457407"
|
||||
y="719.74023"
|
||||
x="0.37795272"
|
||||
height="332.24399"
|
||||
width="233.244"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75599998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,867.03379)"
|
||||
id="g5492-7-1-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-1-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52-3"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730704,766.91137)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(1.0298762,0.97099054)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path916"
|
||||
style="font-size:41.88299561px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 25.847893,752.97256 -7.709907,24.17271 q -0.30676,0.94073 -1.554252,0.94073 h -3.026701 q -0.940731,0 -0.940731,-0.59307 0,-0.57262 3.865179,-11.57509 2.249575,-6.33971 4.478699,-12.65897 h -9.059652 q -0.06135,0.89983 -0.368112,2.61769 -0.28631,0.18405 -0.613521,0.18405 H 8.5466164 q -0.9816327,0 -0.9816327,-0.71577 0,-0.34766 0.5930697,-6.44196 H 25.847893 Z" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882923,0,0,-0.01889088,171.24288,1006.7439)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2-9"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-1.0298761,-0.97099055)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path919"
|
||||
style="font-size:41.88299561px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -201.36378,-1071.6841 -7.70991,24.1727 q -0.30676,0.9407 -1.55425,0.9407 h -3.0267 q -0.94073,0 -0.94073,-0.593 0,-0.5727 3.86518,-11.5751 2.24957,-6.3397 4.47869,-12.659 h -9.05965 q -0.0614,0.8998 -0.36811,2.6177 -0.28631,0.184 -0.61352,0.184 h -2.37228 q -0.98163,0 -0.98163,-0.7157 0,-0.3477 0.59307,-6.442 h 17.68984 z" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-21.360397,816.97258)"
|
||||
id="g5492-7-5">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,766.91137)"
|
||||
id="g5492-7-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-1"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730701,867.03379)"
|
||||
id="g5492-7-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,1004.813)"
|
||||
id="g5492-7-5-2-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51-2-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,1004.813)"
|
||||
id="g5492-7-5-2-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-51-2-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
342
img/playing_cards/fronts/clubs_8.svg
Normal file
|
@ -0,0 +1,342 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_8.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_8.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title917">EIght of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="179.80631"
|
||||
inkscape:cy="166.34987"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="121"
|
||||
inkscape:window-y="6"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
units="px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="-1.1869252e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>EIght of Clubs Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eight; clubs; playing; card; black; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An eight of clubs playing card in black and white.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g963">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.756;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,-21.360405,954.75181)"
|
||||
id="g5492-7-5-2">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-51-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,37.009925,867.03374)"
|
||||
id="g5492-7-1-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-1-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52-3"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-79.730737,766.91128)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.01882914,0,0,0.01889089,-28.914567,764.98044)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
transform="matrix(0.30682028,0,0,0.32203235,0.25934401,720.76647)"
|
||||
aria-label="8">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path919"
|
||||
style="font-size:122.84210205px;line-height:1.25;stroke-width:3.18132639"
|
||||
d="m 85.916101,82.168962 q 0,13.015984 -9.237151,19.793898 -8.097501,5.93816 -21.533356,5.93816 -13.315892,0 -21.413394,-6.35804 -8.877261,-7.01783 -8.877261,-19.973833 0,-13.6158 14.335577,-20.03382 -11.036595,-7.017835 -11.036595,-20.033819 0,-11.456466 8.997224,-17.034745 7.377724,-4.558593 19.434005,-4.558593 10.976613,0 18.05443,5.338353 7.797594,5.998149 7.797594,16.674855 0,12.236225 -10.976614,19.553968 14.455541,6.118112 14.455541,20.693616 z M 67.261856,44.200675 q 0,-11.216539 -11.996299,-11.216539 -5.458316,0 -8.697317,2.939093 -3.239001,2.879112 -3.239001,8.277446 0,5.21839 3.418945,8.277447 3.239001,2.999074 8.517373,2.999074 5.158408,0 8.577353,-3.059056 3.418946,-3.059056 3.418946,-8.217465 z m 2.81913,37.428453 q 0,-6.238075 -4.258686,-9.836965 -4.01876,-3.418945 -10.376799,-3.418945 -6.238075,0 -10.256835,3.478926 -4.318668,3.658872 -4.318668,9.776984 0,6.41802 4.198705,9.956928 3.898797,3.298983 10.43678,3.298983 6.478001,0 10.376798,-3.358964 4.198705,-3.538908 4.198705,-9.896947 z" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.01882924,0,0,-0.01889089,171.24295,1006.7439)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
transform="matrix(-0.30759262,0,0,-0.32122375,0.25934401,720.76647)"
|
||||
aria-label="8">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path922"
|
||||
style="font-size:123.15132141px;line-height:1.25;stroke-width:3.18132639"
|
||||
d="m -673.35988,-945.54133 q 0,13.04875 -9.2604,19.84372 -8.11788,5.95312 -21.58756,5.95312 -13.34941,0 -21.46729,-6.37405 -8.89961,-7.0355 -8.89961,-20.02411 0,-13.65008 14.37166,-20.08425 -11.06438,-7.0355 -11.06438,-20.08425 0,-11.4853 9.01988,-17.07765 7.39629,-4.57 19.48292,-4.57 11.00424,0 18.09988,5.3517 7.81722,6.0133 7.81722,16.71688 0,12.26702 -11.00424,19.60319 14.49192,6.13351 14.49192,20.7457 z m -18.7012,-38.06386 q 0,-11.24477 -12.02649,-11.24477 -5.47206,0 -8.71921,2.94649 -3.24716,2.88636 -3.24716,8.29828 0,5.23153 3.42755,8.29828 3.24716,3.00663 8.53882,3.00663 5.17139,0 8.59894,-3.06676 3.42755,-3.06676 3.42755,-8.23815 z m 2.82623,37.52267 q 0,-6.25378 -4.26941,-9.86173 -4.02887,-3.42755 -10.40292,-3.42755 -6.25377,0 -10.28265,3.48768 -4.32954,3.66809 -4.32954,9.8016 0,6.43417 4.20927,9.98199 3.90862,3.30729 10.46306,3.30729 6.4943,0 10.40292,-3.36742 4.20927,-3.54782 4.20927,-9.92186 z" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-21.360405,816.97251)"
|
||||
id="g5492-7-5">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-51"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,37.009925,766.91128)"
|
||||
id="g5492-7-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-1"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-52"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-79.730734,867.03374)"
|
||||
id="g5492-7-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,-79.730734,1004.813)"
|
||||
id="g5492-7-5-2-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-51-2-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,-0.05667266,37.009925,1004.813)"
|
||||
id="g5492-7-5-2-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-51-2-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
357
img/playing_cards/fronts/clubs_9.svg
Normal file
|
@ -0,0 +1,357 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_9.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_9.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title902">Nine of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="100.63786"
|
||||
inkscape:cy="184.87464"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="1015"
|
||||
inkscape:window-x="34"
|
||||
inkscape:window-y="17"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="4.7236681e-05"
|
||||
originy="5.2403288e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Nine of Clubs Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>nine; clubs; playing; card; blak; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A nine of clubs playing card in black and white.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(4.7236681e-5,-719.36223)">
|
||||
<g
|
||||
id="g951">
|
||||
<rect
|
||||
rx="8.9191828"
|
||||
ry="8.9457407"
|
||||
y="719.74023"
|
||||
x="0.37795275"
|
||||
height="332.24399"
|
||||
width="233.244"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75599998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01718,933.60066)" />
|
||||
<g
|
||||
transform="matrix(0.07348585,0,0,0.07370835,-248.01721,933.60066)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132734;stroke-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730701,833.65965)"
|
||||
id="g5492-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882913,0,0,0.01889088,-28.914555,764.98052)"
|
||||
id="g5492-7-8">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.01882913,0,0,-0.01889088,170.67423,1006.7439)"
|
||||
id="g5492-7-8-8">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-9-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,1004.813)"
|
||||
id="g5492-7-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-5"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-79.730701,766.91137)"
|
||||
id="g5492-7-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,-21.360397,867.03379)"
|
||||
id="g5492-7-15">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-2"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-7"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,766.91137)"
|
||||
id="g5492-7-6">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-1"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,0.05667264,37.00991,833.65965)"
|
||||
id="g5492-7-2">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-3"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-22"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,-79.730701,938.06476)"
|
||||
id="g5492-7-4-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-5-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,1004.813)"
|
||||
id="g5492-7-4-18">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-5-9"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-2"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:3.18132734"
|
||||
transform="matrix(0.05648739,0,0,-0.05667264,37.00991,938.06476)"
|
||||
id="g5492-7-4-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
id="rect4124-6-5-95"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-5-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132734"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99079135,1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path904"
|
||||
style="font-size:39.19482803px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.867541,734.10763 q 0,5.99023 -2.124329,9.74129 -2.660196,4.70798 -8.191107,4.70798 -3.234339,0 -5.33953,-1.28226 -2.545367,-1.56932 -2.545367,-4.63142 0,-0.66983 0.9377668,-0.66983 h 2.8324392 q 0.555004,0 0.937766,0.63156 0.574143,0.93776 0.880353,1.2057 0.784662,0.63155 2.296572,0.63155 2.545367,0 3.961587,-2.37312 1.110009,-1.91381 1.243976,-4.70797 -2.239158,1.77984 -5.358668,1.77984 -3.961586,0 -6.315573,-2.79416 -2.2200192,-2.62192 -2.2200192,-6.66006 0,-4.24866 2.4305382,-6.71747 2.430539,-2.48796 6.660059,-2.48796 9.913536,0 9.913536,13.62633 z m -5.224701,-4.30607 q 0,-2.08606 -1.129148,-3.54055 -1.243977,-1.6076 -3.253477,-1.6076 -2.066915,0 -3.291753,1.56932 -1.11001,1.43536 -1.11001,3.57883 0,2.18174 1.090871,3.59796 1.186563,1.55019 3.310892,1.55019 2.105191,0 3.291753,-1.56933 1.090872,-1.41622 1.090872,-3.57882 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201033px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99079135,-1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path907"
|
||||
style="font-size:39.19482803px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -209.30721,-1021.3016 q 0,5.9902 -2.12433,9.7413 -2.6602,4.708 -8.19111,4.708 -3.23434,0 -5.33953,-1.2823 -2.54537,-1.5693 -2.54537,-4.6314 0,-0.6699 0.93777,-0.6699 h 2.83244 q 0.555,0 0.93777,0.6316 0.57414,0.9378 0.88035,1.2057 0.78466,0.6316 2.29657,0.6316 2.54537,0 3.96159,-2.3732 1.11001,-1.9138 1.24397,-4.7079 -2.23915,1.7798 -5.35866,1.7798 -3.96159,0 -6.31558,-2.7942 -2.22002,-2.6219 -2.22002,-6.66 0,-4.2487 2.43054,-6.7175 2.43054,-2.4879 6.66006,-2.4879 9.91354,0 9.91354,13.6263 z m -5.22471,-4.3061 q 0,-2.086 -1.12914,-3.5405 -1.24398,-1.6076 -3.25348,-1.6076 -2.06691,0 -3.29175,1.5693 -1.11001,1.4353 -1.11001,3.5788 0,2.1818 1.09087,3.598 1.18656,1.5502 3.31089,1.5502 2.10519,0 3.29175,-1.5694 1.09087,-1.4162 1.09087,-3.5788 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
231
img/playing_cards/fronts/clubs_ace.svg
Normal file
|
@ -0,0 +1,231 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="clubs_ace.svg">
|
||||
<title
|
||||
id="title896">Ace of Clubs Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="120.10775"
|
||||
inkscape:cy="167.56128"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="117"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ace of Clubs Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ace; clubs; playing; card;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An ace of clubs playing card in black and white.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g921">
|
||||
<rect
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.01882914,0,0,0.01889089,-28.914567,764.98044)"
|
||||
id="g5492-7-8-1">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9-7"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-4"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.01882924,0,0,-0.01889089,171.24295,1006.7439)"
|
||||
id="g5492-7-8-8-4">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-9-8-8"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-2-2-8"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\clubs_ace.png"
|
||||
style="stroke-width:3.18132639"
|
||||
transform="matrix(0.05648742,0,0,0.05667266,-21.360402,867.03374)"
|
||||
id="g5492-7-7">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
id="rect4124-6-6"
|
||||
width="85.256371"
|
||||
height="295.68549"
|
||||
x="2406.7065"
|
||||
y="536.54938" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979-1-6-1-1"
|
||||
d="m 2917.8563,395.12877 c 67.135,120.80453 23.601,273.14486 -97.235,340.26188 -120.8361,67.11691 -273.2161,23.5947 -340.3501,-97.20972 -17.88,-32.17311 -28.44,-67.89332 -30.889,-104.57183 -9.342,137.92083 -128.747,242.09126 -266.6621,232.71366 -137.914,-9.37771 -242.111,-128.75233 -232.731,-266.63076 9.38,-137.87843 128.786,-242.04886 266.7,-232.67126 36.206,2.4619 71.4431,12.76531 103.7251,30.22171 -118.1921,-70.88592 -156.8751,-224.529044 -85.9451,-343.145874 70.9301,-118.616826 224.6131,-157.289636 343.2611,-86.378126 118.647,70.911526 157.3301,224.554657 86.4,343.17148 -21.341,35.68961 -51.243,65.49972 -86.812,86.88252 121.024,-66.97031 273.4041,-23.4481 340.5381,97.35632 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
sodipodi:nodetypes="ssscssscssscs" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.83054504,1.2040286)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path898"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="M 32.051408,627.48846 H 27.39565 l -1.839905,-4.84774 h -9.5995 l -1.919901,4.84774 H 9.3805865 l 9.0715285,-23.53477 h 4.543764 z m -8.175575,-9.21552 -3.119838,-8.07958 -3.135837,8.07958 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.8305451,-1.2040285)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path901"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="m -249.69128,-844.00842 h -4.65575 l -1.83991,-4.84775 h -9.5995 l -1.9199,4.84775 h -4.65576 l 9.07153,-23.53478 h 4.54376 z m -8.17557,-9.21552 -3.11984,-8.07958 -3.13584,8.07958 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
261
img/playing_cards/fronts/clubs_jack.svg
Normal file
After Width: | Height: | Size: 126 KiB |
263
img/playing_cards/fronts/clubs_king.svg
Normal file
After Width: | Height: | Size: 115 KiB |
265
img/playing_cards/fronts/clubs_queen.svg
Normal file
After Width: | Height: | Size: 120 KiB |
269
img/playing_cards/fronts/diamonds_10.svg
Normal file
|
@ -0,0 +1,269 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_10.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_10.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title935">Ten of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="4.3439772"
|
||||
inkscape:cy="171.40706"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="433"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ten of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>Ten; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A ten of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g933">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1"
|
||||
d="M 58.629676,947.57285 86.87338,919.23632 58.629676,890.89979 30.385965,919.23632 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 58.629672,880.82455 86.87338,852.48801 58.629672,824.15148 30.385965,852.48801 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1-4"
|
||||
d="M 175.37033,947.57284 203.61404,919.2363 175.37033,890.89978 147.12662,919.2363 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7-8"
|
||||
d="M 175.37033,880.82454 203.61404,852.488 175.37033,824.15146 147.12662,852.488 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40-8"
|
||||
d="M 117,980.947 145.24371,952.61047 117,924.27393 88.756294,952.61047 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40-8-2"
|
||||
d="M 117,847.4504 145.24371,819.11386 117,790.77732 88.756294,819.11386 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3216-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.72184748,1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m 23.835468,544.63039 q 0,0.35364 -0.127311,0.62241 -0.339497,0.11317 -0.735576,0.11317 H 12.533063 q -0.933616,0 -0.933616,-0.9902 0,-0.16975 0.02829,-0.53754 0.02829,-0.38193 0.02829,-0.57997 0,-0.93362 0.82045,-0.93362 h 3.522276 v -13.07061 h -4.300289 q -0.905324,0 -0.905324,-0.9902 0,-0.21219 0.04244,-0.67899 0.05658,-0.48096 0.05658,-0.72143 0,-0.48096 0.905324,-0.48096 0.254622,0 0.961907,0.0566 0.707284,0.0424 1.103364,0.0424 2.26331,0 2.744263,-1.57017 h 2.701827 v 17.41334 q 0.947761,0 2.036979,-0.0566 1.103363,-0.0707 1.315549,-0.0707 0.82045,0 1.018489,0.43852 0.155603,0.38193 0.155603,1.99454 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.69918846,1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path897"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m 38.072907,518.57679 q 0,9.66994 -6.685228,9.66994 -6.779767,0 -6.779767,-9.72396 0,-10.08862 6.914822,-10.08862 6.550173,0 6.550173,10.14264 z m -3.511433,-0.28362 q 0,-6.92833 -3.227817,-6.92833 -1.890772,0 -2.687597,2.74162 -0.499704,1.72871 -0.499704,4.30826 0,6.92833 3.187301,6.92833 1.904277,0 2.714608,-2.72811 0.513209,-1.75572 0.513209,-4.32177 z" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3216-7-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.72184748,-1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path906"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m -300.33276,-734.2844 q 0,0.35364 -0.12731,0.62241 -0.3395,0.11316 -0.73558,0.11316 h -10.43951 q -0.93362,0 -0.93362,-0.9902 0,-0.16974 0.0283,-0.53753 0.0283,-0.38194 0.0283,-0.57998 0,-0.93361 0.82045,-0.93361 h 3.52228 v -13.07062 h -4.30029 q -0.90532,0 -0.90532,-0.9902 0,-0.21218 0.0424,-0.67899 0.0566,-0.48095 0.0566,-0.72143 0,-0.48095 0.90532,-0.48095 0.25462,0 0.96191,0.0566 0.70728,0.0424 1.10336,0.0424 2.26331,0 2.74426,-1.57017 h 2.70183 v 17.41334 q 0.94776,0 2.03698,-0.0566 1.10336,-0.0707 1.31555,-0.0707 0.82045,0 1.01849,0.43851 0.1556,0.38194 0.1556,1.99455 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.69918846,-1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path903"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m -296.60082,-720.19244 q 0,9.66995 -6.68523,9.66995 -6.77977,0 -6.77977,-9.72397 0,-10.08862 6.91482,-10.08862 6.55018,0 6.55018,10.14264 z m -3.51144,-0.28361 q 0,-6.92833 -3.22781,-6.92833 -1.89078,0 -2.6876,2.74162 -0.4997,1.7287 -0.4997,4.30826 0,6.92832 3.1873,6.92832 1.90427,0 2.7146,-2.72811 0.51321,-1.75572 0.51321,-4.32176 z" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
185
img/playing_cards/fronts/diamonds_2.svg
Normal file
|
@ -0,0 +1,185 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_2.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title888">Two of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="114.81358"
|
||||
inkscape:cy="191.22405"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="598"
|
||||
inkscape:window-y="28"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Two of Diamonds Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>two; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A two of diamonds playing card.</dc:description>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g908">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 117,814.07624 145.24371,785.73971 117,757.40317 88.756294,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 117,1014.3212 145.24371,985.98462 117,957.64809 88.756294,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.98105485,1.019311)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path890"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.999715,735.55243 -0.710843,5.64831 H 7.9414512 q 0.4226631,-4.86062 3.9192398,-8.58774 l 6.224675,-5.3025 q 3.246821,-2.80495 3.246821,-5.62911 0,-1.88277 -1.07587,-2.99706 -1.056658,-1.13351 -2.920218,-1.13351 -2.151739,0 -3.208397,1.15272 -0.691631,0.76848 -1.056658,2.36307 -0.365027,1.69065 -0.576359,1.95962 -0.307391,0.0961 -0.710842,0.0961 H 9.3631362 q -0.4226631,0 -0.7300545,-0.17291 -0.1344837,-0.40345 -0.1344837,-0.90296 0,-4.0153 2.632038,-6.37837 2.516767,-2.26701 6.551278,-2.26701 3.746332,0 6.128615,1.99804 2.535979,2.11332 2.535979,5.80202 0,3.63106 -2.804946,6.64733 -0.97981,1.07587 -5.571468,4.59166 -3.342881,2.59362 -4.111359,4.66851 h 8.952773 l 0.153695,-1.72908 q 0.211332,-0.92217 1.133506,-0.92217 h 1.921196 q 1.114293,0 0.97981,1.09508 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.98105494,-1.0193109)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path893"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.51903,-1002.6064 -0.71084,5.64833 h -18.34742 q 0.42266,-4.86063 3.91924,-8.58773 l 6.22467,-5.3025 q 3.24682,-2.805 3.24682,-5.6291 0,-1.8828 -1.07587,-2.9971 -1.05665,-1.1335 -2.92021,-1.1335 -2.15174,0 -3.2084,1.1527 -0.69163,0.7685 -1.05666,2.3631 -0.36503,1.6907 -0.57636,1.9596 -0.30739,0.096 -0.71084,0.096 h -2.42071 q -0.42266,0 -0.73005,-0.1729 -0.13449,-0.4035 -0.13449,-0.903 0,-4.0153 2.63204,-6.3784 2.51677,-2.267 6.55128,-2.267 3.74633,0 6.12862,1.9981 2.53597,2.1133 2.53597,5.802 0,3.631 -2.80494,6.6473 -0.97981,1.0759 -5.57147,4.5917 -3.34288,2.5936 -4.11136,4.6685 h 8.95277 l 0.1537,-1.7291 q 0.21133,-0.9222 1.13351,-0.9222 h 1.92119 q 1.11429,0 0.97981,1.0951 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.2 KiB |
157
img/playing_cards/fronts/diamonds_3.svg
Normal file
|
@ -0,0 +1,157 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_3.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_3.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="107.93904"
|
||||
inkscape:cy="173.28676"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="532"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g911">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 117,814.07624 145.24371,785.73971 117,757.40317 88.756294,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 117,1014.3212 145.24371,985.98462 117,957.64809 88.756294,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 117,914.1987 145.24371,885.86217 117,857.52563 88.756294,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0092549,0.99083001)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path892"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.376029,754.4354 q 0,3.97693 -2.787749,6.12135 -2.514823,1.94948 -6.589225,1.94948 -9.2794998,0 -9.2794998,-8.77264 0,-0.40939 0.1364633,-0.77979 0.2924212,-0.17545 0.6628214,-0.17545 h 2.5343171 q 0.3704,0 0.682316,0.17545 0.09747,0.27293 0.155958,0.64333 0.331411,2.41735 1.364633,3.50905 1.15019,1.20868 3.528549,1.20868 1.949475,0 3.177644,-1.05272 1.286653,-1.13069 1.286653,-3.04118 0,-4.05491 -4.425308,-4.75672 -0.545853,-0.078 -0.818779,-0.23394 -0.155958,-0.31191 -0.155958,-3.15814 0,-0.3704 0.175453,-0.70182 1.462106,-0.42888 2.924212,-0.87726 1.540085,-0.70181 1.540085,-2.94371 0,-3.39208 -3.976929,-3.39208 -1.832506,0 -2.865727,0.89676 -0.545853,0.48737 -1.130696,1.65705 -0.428884,0.89676 -0.857769,0.89676 H 9.1426718 q -0.9552426,0 -0.9552426,-0.85777 0,-3.25562 2.5538118,-5.14661 2.30038,-1.69605 5.653477,-1.69605 3.85996,0 6.296803,1.61807 2.865728,1.89099 2.865728,5.57549 0,4.44481 -4.386318,6.04338 5.205098,2.2029 5.205098,7.29103 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0092549,-0.99083001)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path895"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:1"
|
||||
d="m -205.47817,-1033.6859 q 0,3.9769 -2.78775,6.1213 -2.51482,1.9495 -6.58923,1.9495 -9.2795,0 -9.2795,-8.7726 0,-0.4094 0.13647,-0.7798 0.29242,-0.1755 0.66282,-0.1755 h 2.53432 q 0.3704,0 0.68231,0.1755 0.0975,0.2729 0.15596,0.6433 0.33141,2.4173 1.36463,3.509 1.15019,1.2087 3.52855,1.2087 1.94948,0 3.17765,-1.0527 1.28665,-1.1307 1.28665,-3.0412 0,-4.0549 -4.42531,-4.7567 -0.54585,-0.078 -0.81878,-0.2339 -0.15596,-0.3119 -0.15596,-3.1582 0,-0.3704 0.17546,-0.7018 1.4621,-0.4289 2.92421,-0.8773 1.54008,-0.7018 1.54008,-2.9437 0,-3.392 -3.97692,-3.392 -1.83251,0 -2.86573,0.8967 -0.54585,0.4874 -1.1307,1.6571 -0.42888,0.8967 -0.85777,0.8967 h -2.51482 q -0.95524,0 -0.95524,-0.8577 0,-3.2557 2.55381,-5.1467 2.30038,-1.696 5.65348,-1.696 3.85996,0 6.2968,1.6181 2.86573,1.8909 2.86573,5.5755 0,4.4448 -4.38632,6.0433 5.2051,2.2029 5.2051,7.2911 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.7 KiB |
190
img/playing_cards/fronts/diamonds_4.svg
Normal file
|
@ -0,0 +1,190 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_4.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_4.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title890">Four of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="79.965437"
|
||||
inkscape:cy="169.61814"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="510"
|
||||
inkscape:window-y="8"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Four of Diamonds Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>Four; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A four of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g912">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-5"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.9367271,1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path892"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m 28.418244,706.77169 q 0,0.38656 -0.14726,0.75471 -0.331335,0.18407 -0.699485,0.18407 H 15.753885 q -1.362154,0 -1.362154,-1.38056 0,-0.22089 0.03682,-0.77311 0.03681,-0.55223 0.03681,-0.84675 0,-0.64426 0.276112,-0.82834 0.202483,-0.12885 0.901967,-0.12885 h 4.601875 v -2.83475 H 9.9187087 q -1.6014522,0 -1.6014522,-1.49101 0,-0.2577 0.055223,-0.93878 0.055222,-0.69949 0.055222,-1.10445 0,-0.62586 0.7178924,-1.56464 l 10.6395332,-13.9897 q 0.497003,-0.66267 1.25171,-0.66267 h 2.42979 q 0.865152,0 0.865152,0.95719 v 15.02052 q 0.66267,0 1.509415,-0.0368 0.865153,-0.0368 1.10445,-0.0368 0.994005,0 1.233302,0.497 0.239298,0.4786 0.239298,2.39298 0,0.34974 -0.05522,0.53382 -0.110445,0.42337 -0.846745,0.42337 h -3.184497 v 2.83475 q 0.681078,0 1.54623,-0.0368 0.865153,-0.0368 1.086042,-0.0368 1.049228,0 1.270118,0.53382 0.184075,0.44178 0.184075,2.55864 z m -8.099299,-19.69602 q -1.012413,1.54623 -7.473444,10.0689 h 7.399814 q 0,-0.9756 -0.03682,-3.35016 -0.05522,-2.15368 -0.03682,-3.36858 0.01841,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-28"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.9367271,-1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path895"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m -221.38771,-952.85044 q 0,0.38656 -0.14726,0.75471 -0.33134,0.18407 -0.69949,0.18407 h -11.81761 q -1.36215,0 -1.36215,-1.38056 0,-0.22089 0.0368,-0.77311 0.0368,-0.55223 0.0368,-0.84675 0,-0.64426 0.27611,-0.82834 0.20248,-0.12885 0.90197,-0.12885 h 4.60187 v -2.83475 h -10.32661 q -1.60145,0 -1.60145,-1.49101 0,-0.25771 0.0552,-0.93878 0.0552,-0.69949 0.0552,-1.10445 0,-0.62586 0.71789,-1.56464 l 10.63953,-13.9897 q 0.49701,-0.66267 1.25171,-0.66267 h 2.42979 q 0.86515,0 0.86515,0.95719 v 15.02052 q 0.66267,0 1.50942,-0.0368 0.86515,-0.0368 1.10445,-0.0368 0.994,0 1.2333,0.497 0.2393,0.4786 0.2393,2.39298 0,0.34974 -0.0552,0.53381 -0.11045,0.42338 -0.84675,0.42338 h -3.1845 v 2.83475 q 0.68108,0 1.54623,-0.0368 0.86516,-0.0368 1.08605,-0.0368 1.04922,0 1.27011,0.53382 0.18408,0.44178 0.18408,2.55864 z m -8.0993,-19.69602 q -1.01241,1.54623 -7.47344,10.0689 h 7.39981 q 0,-0.9756 -0.0368,-3.35017 -0.0552,-2.15367 -0.0368,-3.36857 0.0184,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
209
img/playing_cards/fronts/diamonds_5.svg
Normal file
|
@ -0,0 +1,209 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_5.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_5.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title885">Five of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="110.37278"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="398"
|
||||
inkscape:window-y="9"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Five of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>Five; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A five of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g914">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1-4"
|
||||
d="M 117,914.1987 145.24371,885.86217 117,857.52564 88.756294,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99509933,1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path893"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.751238,742.30184 q 0,4.36509 -2.650231,6.93737 -2.630744,2.57228 -6.99583,2.57228 -4.189703,0 -6.625577,-2.04613 -2.6502312,-2.18254 -2.6502312,-6.2943 0,-0.66256 1.0522976,-0.66256 h 2.5527956 q 0.409227,0 0.759993,0.11692 0.116922,0.19487 0.155896,0.50667 0.331279,2.20203 1.266654,3.15689 1.052298,1.07178 3.234841,1.07178 2.182543,0 3.527145,-1.53947 1.266655,-1.46152 1.266655,-3.66355 0,-5.43687 -4.501495,-5.43687 -1.636907,0 -3.293302,1.13024 h -3.215353 q -0.448201,0 -0.857428,-0.11692 -0.1948699,-0.19487 -0.1948699,-0.4482 0,-2.76715 0.2923048,-6.97634 0.2533311,-3.50766 0.5066621,-6.99583 h 14.615243 q 0.506662,0 0.915889,0.15589 0.175383,0.38974 0.175383,2.72818 0,0.38974 -0.03897,0.64307 -0.136409,0.62359 -1.130245,0.62359 H 14.338024 q 0.05846,1.05229 -0.175383,3.21535 -0.233844,2.14357 -0.175383,3.19587 2.00716,-1.24717 4.189703,-1.24717 4.014321,0 6.35276,2.72818 2.221517,2.57228 2.221517,6.64506 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99509933,-1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path896"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -208.40118,-1020.7398 q 0,4.3651 -2.65023,6.9374 -2.63075,2.5723 -6.99583,2.5723 -4.18971,0 -6.62558,-2.0462 -2.65023,-2.1825 -2.65023,-6.2943 0,-0.6625 1.0523,-0.6625 h 2.55279 q 0.40923,0 0.76,0.1169 0.11692,0.1949 0.15589,0.5067 0.33128,2.202 1.26666,3.1569 1.05229,1.0717 3.23484,1.0717 2.18254,0 3.52714,-1.5394 1.26666,-1.4616 1.26666,-3.6636 0,-5.4369 -4.5015,-5.4369 -1.63691,0 -3.2933,1.1303 h -3.21535 q -0.4482,0 -0.85743,-0.1169 -0.19487,-0.1949 -0.19487,-0.4482 0,-2.7672 0.2923,-6.9764 0.25333,-3.5076 0.50667,-6.9958 h 14.61524 q 0.50666,0 0.91589,0.1559 0.17538,0.3897 0.17538,2.7282 0,0.3897 -0.039,0.643 -0.13641,0.6236 -1.13025,0.6236 h -10.58144 q 0.0585,1.0523 -0.17538,3.2154 -0.23384,2.1435 -0.17538,3.1958 2.00716,-1.2471 4.1897,-1.2471 4.01432,0 6.35276,2.7282 2.22152,2.5722 2.22152,6.645 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.8 KiB |
217
img/playing_cards/fronts/diamonds_6.svg
Normal file
|
@ -0,0 +1,217 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_6.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_6.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title889">Six of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="93.336589"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="442"
|
||||
inkscape:window-y="18"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Six of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>six; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A six of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g919">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 58.629672,914.1987 86.87338,885.86217 58.629672,857.52563 30.385965,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7-8"
|
||||
d="m 175.37033,914.1987 28.24371,-28.33653 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99029285,1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path897"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.881078,738.99851 q 0,4.24652 -2.467574,6.71409 -2.448446,2.46758 -6.694968,2.46758 -9.8511667,0 -9.8511667,-13.61948 0,-6.00634 2.1232612,-9.7364 2.6397305,-4.7056 8.1869895,-4.7056 3.213584,0 5.336845,1.31986 2.544088,1.56854 2.544088,4.59084 0,0.6695 -0.937296,0.6695 h -2.831014 q -0.554726,0 -0.937296,-0.63124 -0.554726,-0.9373 -0.87991,-1.2051 -0.784268,-0.63124 -2.295417,-0.63124 -2.544088,0 -3.959596,2.37193 -1.109451,1.91285 -1.243351,4.70561 2.238032,-1.77895 5.355974,-1.77895 3.959596,0 6.312398,2.79276 2.238033,2.63973 2.238033,6.67584 z m -4.992534,-0.11477 q 0,-2.18065 -1.090323,-3.59616 -1.205094,-1.56853 -3.328355,-1.56853 -2.104133,0 -3.290099,1.56853 -1.071194,1.41551 -1.071194,3.59616 0,2.085 1.12858,3.53876 1.224223,1.58767 3.251841,1.58767 2.065876,0 3.290099,-1.56854 1.109451,-1.43463 1.109451,-3.55789 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99029285,-1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -209.41268,-1015.5274 q 0,4.2466 -2.46758,6.7141 -2.44844,2.4676 -6.69497,2.4676 -9.85116,0 -9.85116,-13.6195 0,-6.0063 2.12326,-9.7364 2.63973,-4.7056 8.18699,-4.7056 3.21358,0 5.33684,1.3199 2.54409,1.5685 2.54409,4.5908 0,0.6695 -0.93729,0.6695 h -2.83102 q -0.55473,0 -0.9373,-0.6312 -0.55472,-0.9373 -0.87991,-1.2051 -0.78426,-0.6313 -2.29541,-0.6313 -2.54409,0 -3.9596,2.372 -1.10945,1.9128 -1.24335,4.7056 2.23803,-1.779 5.35598,-1.779 3.95959,0 6.31239,2.7928 2.23804,2.6397 2.23804,6.6758 z m -4.99254,-0.1147 q 0,-2.1807 -1.09032,-3.5962 -1.2051,-1.5685 -3.32836,-1.5685 -2.10413,0 -3.29009,1.5685 -1.0712,1.4155 -1.0712,3.5962 0,2.085 1.12858,3.5387 1.22422,1.5877 3.25184,1.5877 2.06588,0 3.2901,-1.5685 1.10945,-1.4347 1.10945,-3.5579 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
227
img/playing_cards/fronts/diamonds_7.svg
Normal file
|
@ -0,0 +1,227 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_7.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_7.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title918">Seven of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="115.24026"
|
||||
inkscape:cy="166.80162"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="424"
|
||||
inkscape:window-y="21"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="1.0333214e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Seven of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>seven; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A seven of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g916">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 58.629672,914.1987 86.87338,885.86217 58.629672,857.52563 30.385965,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1-4"
|
||||
d="M 117,864.13747 145.24371,835.80094 117,807.46441 88.756294,835.80094 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7-8"
|
||||
d="m 175.37033,914.1987 28.24371,-28.33653 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-8"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0298762,0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path893"
|
||||
style="font-size:41.88301086px;line-height:1.25;stroke-width:1"
|
||||
d="m 25.847902,752.97249 -7.70991,24.17272 q -0.30676,0.94073 -1.554252,0.94073 h -3.026702 q -0.940732,0 -0.940732,-0.59307 0,-0.57262 3.865181,-11.57509 2.249575,-6.33972 4.478701,-12.65898 h -9.059656 q -0.06135,0.89983 -0.368112,2.61769 -0.28631,0.18406 -0.613521,0.18406 H 8.5466193 q -0.981633,0 -0.981633,-0.71578 0,-0.34766 0.59307,-6.44197 H 25.847902 Z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-4"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0298762,-0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path896"
|
||||
style="font-size:41.88301086px;line-height:1.25;stroke-width:1"
|
||||
d="m -201.36388,-1071.6841 -7.70991,24.1727 q -0.30676,0.9407 -1.55425,0.9407 h -3.02671 q -0.94073,0 -0.94073,-0.593 0,-0.5727 3.86518,-11.5751 2.24958,-6.3398 4.4787,-12.659 h -9.05965 q -0.0614,0.8998 -0.36811,2.6177 -0.28631,0.184 -0.61352,0.184 h -2.37228 q -0.98164,0 -0.98164,-0.7157 0,-0.3477 0.59307,-6.442 h 17.68985 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.6 KiB |
233
img/playing_cards/fronts/diamonds_8.svg
Normal file
|
@ -0,0 +1,233 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_8.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_8.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title888">Eight of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="50.415385"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="249"
|
||||
inkscape:window-y="9"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Eight of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eight; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A eight of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g920">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1"
|
||||
d="M 117,964.25993 145.24371,935.92339 117,907.58687 88.756294,935.92339 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 58.629672,914.1987 86.87338,885.86217 58.629672,857.52563 30.385965,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1-4"
|
||||
d="M 117,864.13747 145.24371,835.80094 117,807.46441 88.756294,835.80094 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7-8"
|
||||
d="m 175.37033,914.1987 28.24371,-28.33653 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.97854983,1.0219204)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path896"
|
||||
style="font-size:38.71057892px;line-height:1.25;stroke-width:1"
|
||||
d="m 27.203661,731.19934 q 0,4.10166 -2.910854,6.23754 -2.551723,1.87127 -6.785692,1.87127 -4.196166,0 -6.747889,-2.00358 -2.7974443,-2.21149 -2.7974443,-6.29425 0,-4.29067 4.5174943,-6.31315 -3.4779036,-2.21149 -3.4779036,-6.31315 0,-3.61021 2.8352476,-5.36807 2.324903,-1.43652 6.124134,-1.43652 3.459002,0 5.689397,1.68224 2.457215,1.89017 2.457215,5.25466 0,3.85594 -3.459002,6.16194 4.555297,1.92797 4.555297,6.52107 z M 21.325248,719.2346 q 0,-3.53461 -3.78033,-3.53461 -1.72005,0 -2.740739,0.92618 -1.020689,0.90728 -1.020689,2.60843 0,1.64444 1.077394,2.60842 1.020689,0.94509 2.684034,0.94509 1.625542,0 2.702936,-0.96399 1.077394,-0.96398 1.077394,-2.58952 z m 0.888378,11.79463 q 0,-1.96578 -1.342017,-3.09988 -1.266411,-1.07739 -3.269986,-1.07739 -1.965771,0 -3.232182,1.0963 -1.360919,1.153 -1.360919,3.08097 0,2.02247 1.323116,3.13767 1.228607,1.03959 3.288887,1.03959 2.041378,0 3.269985,-1.05849 1.323116,-1.1152 1.323116,-3.11877 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.97854983,-1.0219204)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path899"
|
||||
style="font-size:38.71057892px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.92571,-1002.5212 q 0,4.10168 -2.91086,6.23756 -2.55172,1.87127 -6.78569,1.87127 -4.19617,0 -6.74789,-2.00358 -2.79744,-2.21149 -2.79744,-6.29425 0,-4.2907 4.51749,-6.3131 -3.4779,-2.2115 -3.4779,-6.3132 0,-3.6102 2.83525,-5.3681 2.3249,-1.4365 6.12413,-1.4365 3.459,0 5.6894,1.6823 2.45721,1.8901 2.45721,5.2546 0,3.8559 -3.459,6.162 4.5553,1.9279 4.5553,6.521 z m -5.87842,-11.9647 q 0,-3.5346 -3.78033,-3.5346 -1.72005,0 -2.74074,0.9261 -1.02068,0.9073 -1.02068,2.6085 0,1.6444 1.07739,2.6084 1.02069,0.9451 2.68403,0.9451 1.62555,0 2.70294,-0.964 1.07739,-0.964 1.07739,-2.5895 z m 0.88838,11.7946 q 0,-1.9658 -1.34202,-3.0999 -1.26641,-1.0774 -3.26998,-1.0774 -1.96577,0 -3.23218,1.0963 -1.36092,1.153 -1.36092,3.081 0,2.0225 1.32311,3.13768 1.22861,1.03959 3.28889,1.03959 2.04138,0 3.26999,-1.05849 1.32311,-1.11518 1.32311,-3.11878 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
243
img/playing_cards/fronts/diamonds_9.svg
Normal file
|
@ -0,0 +1,243 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_9.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_9.png"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-ydpi="95.969437">
|
||||
<title
|
||||
id="title889">Nine of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="54.396724"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="589"
|
||||
inkscape:window-y="30"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Nine of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>nine; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A nine of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g922">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1"
|
||||
d="M 58.629672,814.07624 86.87338,785.73971 58.629672,757.40317 30.385965,785.73971 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4"
|
||||
d="M 58.629676,1014.3212 86.87338,985.98462 58.629676,957.64809 30.385965,985.98462 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1"
|
||||
d="M 58.629676,947.57285 86.87338,919.23632 58.629676,890.89979 30.385965,919.23632 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 58.629672,880.82455 86.87338,852.48801 58.629672,824.15148 30.385965,852.48801 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40"
|
||||
d="M 175.37033,814.07623 203.61404,785.7397 175.37033,757.40316 147.12662,785.7397 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-9"
|
||||
d="m 175.37033,1014.3212 28.24371,-28.33659 -28.24371,-28.33654 -28.24371,28.33654 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-1-4"
|
||||
d="M 175.37033,947.57284 203.61404,919.2363 175.37033,890.89978 147.12662,919.2363 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7-8"
|
||||
d="M 175.37033,880.82454 203.61404,852.488 175.37033,824.15146 147.12662,852.488 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-40-8-2"
|
||||
d="M 117,914.1987 145.24371,885.86217 117,857.52563 88.756294,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.99079139,1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path897"
|
||||
style="font-size:39.19484329px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.867551,734.10756 q 0,5.99023 -2.12433,9.7413 -2.660197,4.70797 -8.19111,4.70797 -3.23434,0 -5.339532,-1.28225 -2.5453681,-1.56932 -2.5453681,-4.63142 0,-0.66983 0.9377672,-0.66983 h 2.8324399 q 0.555005,0 0.937767,0.63155 0.574143,0.93777 0.880353,1.2057 0.784663,0.63156 2.296573,0.63156 2.545368,0 3.961588,-2.37312 1.11001,-1.91381 1.243977,-4.70798 -2.239158,1.77985 -5.35867,1.77985 -3.961588,0 -6.315575,-2.79417 -2.2200206,-2.62192 -2.2200206,-6.66006 0,-4.24866 2.4305396,-6.71747 2.43054,-2.48796 6.660061,-2.48796 9.91354,0 9.91354,13.62633 z m -5.224704,-4.30607 q 0,-2.08605 -1.129148,-3.54055 -1.243977,-1.6076 -3.253478,-1.6076 -2.066916,0 -3.291754,1.56932 -1.110011,1.43536 -1.110011,3.57883 0,2.18174 1.090872,3.59796 1.186563,1.55019 3.310893,1.55019 2.105192,0 3.291754,-1.56932 1.090872,-1.41622 1.090872,-3.57883 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.99079139,-1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:39.19484329px;line-height:1.25;stroke-width:1"
|
||||
d="m -209.3073,-1021.3016 q 0,5.9902 -2.12433,9.7413 -2.66019,4.708 -8.19111,4.708 -3.23434,0 -5.33953,-1.2823 -2.54537,-1.5693 -2.54537,-4.6314 0,-0.6699 0.93777,-0.6699 h 2.83244 q 0.555,0 0.93777,0.6316 0.57414,0.9378 0.88035,1.2057 0.78466,0.6316 2.29657,0.6316 2.54537,0 3.96159,-2.3732 1.11001,-1.9138 1.24398,-4.7079 -2.23916,1.7798 -5.35867,1.7798 -3.96159,0 -6.31558,-2.7942 -2.22002,-2.6219 -2.22002,-6.66 0,-4.2487 2.43054,-6.7175 2.43054,-2.4879 6.66006,-2.4879 9.91354,0 9.91354,13.6263 z m -5.2247,-4.3061 q 0,-2.086 -1.12915,-3.5405 -1.24398,-1.6076 -3.25348,-1.6076 -2.06691,0 -3.29175,1.5693 -1.11001,1.4353 -1.11001,3.5788 0,2.1818 1.09087,3.598 1.18656,1.5502 3.31089,1.5502 2.10519,0 3.29176,-1.5694 1.09087,-1.4162 1.09087,-3.5788 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
177
img/playing_cards/fronts/diamonds_ace.svg
Normal file
|
@ -0,0 +1,177 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="diamonds_ace.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\diamonds_ace.png"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-ydpi="95.969437">
|
||||
<title
|
||||
id="title887">Ace of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="117.40577"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="486"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ace of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ace; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An ace of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g906">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="95.969437"
|
||||
inkscape:export-xdpi="95.969437"
|
||||
inkscape:export-filename="D:\DAN\Documents\Projects\Playing Cards\test.png"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-7"
|
||||
d="M 117,914.1987 145.24371,885.86217 117,857.52563 88.756294,885.86217 Z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3"
|
||||
d="m 17.205569,780.7021 9.414569,-9.44551 -9.414569,-9.44552 -9.4145688,9.44552 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4884-1-4-5-3-5"
|
||||
d="m 216.79443,991.02224 9.41457,9.44556 -9.41457,9.4455 -9.41457,-9.4455 z"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.83054504,1.2040286)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path889"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="M 32.051408,627.48846 H 27.39565 l -1.839905,-4.84774 h -9.5995 l -1.919901,4.84774 H 9.3805865 l 9.0715285,-23.53477 h 4.543764 z m -8.175575,-9.21552 -3.119838,-8.07958 -3.135837,8.07958 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.8305451,-1.2040285)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path892"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="m -249.69128,-844.00842 h -4.65575 l -1.83991,-4.84775 h -9.5995 l -1.9199,4.84775 h -4.65576 l 9.07153,-23.53478 h 4.54376 z m -8.17557,-9.21552 -3.11984,-8.07958 -3.13584,8.07958 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
217
img/playing_cards/fronts/diamonds_jack.svg
Normal file
After Width: | Height: | Size: 120 KiB |
226
img/playing_cards/fronts/diamonds_king.svg
Normal file
After Width: | Height: | Size: 95 KiB |
225
img/playing_cards/fronts/diamonds_queen.svg
Normal file
After Width: | Height: | Size: 97 KiB |
255
img/playing_cards/fronts/hearts_10.svg
Normal file
|
@ -0,0 +1,255 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_10.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_10.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title897">Ten of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="32.54102"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="448"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ten of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ten; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A ten of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g935">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
id="text3216-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.72184748,1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path902"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m 23.835468,544.63039 q 0,0.35364 -0.127311,0.62241 -0.339497,0.11317 -0.735576,0.11317 H 12.533063 q -0.933616,0 -0.933616,-0.9902 0,-0.16975 0.02829,-0.53754 0.02829,-0.38193 0.02829,-0.57997 0,-0.93362 0.82045,-0.93362 h 3.522276 v -13.07061 h -4.300289 q -0.905324,0 -0.905324,-0.9902 0,-0.21219 0.04244,-0.67899 0.05658,-0.48096 0.05658,-0.72143 0,-0.48096 0.905324,-0.48096 0.254622,0 0.961907,0.0566 0.707284,0.0424 1.103364,0.0424 2.26331,0 2.744263,-1.57017 h 2.701827 v 17.41334 q 0.947761,0 2.036979,-0.0566 1.103363,-0.0707 1.315549,-0.0707 0.82045,0 1.018489,0.43852 0.155603,0.38193 0.155603,1.99454 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.69918846,1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path899"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m 38.072907,518.57679 q 0,9.66994 -6.685228,9.66994 -6.779767,0 -6.779767,-9.72396 0,-10.08862 6.914822,-10.08862 6.550173,0 6.550173,10.14264 z m -3.511433,-0.28362 q 0,-6.92833 -3.227817,-6.92833 -1.890772,0 -2.687597,2.74162 -0.499704,1.72871 -0.499704,4.30826 0,6.92833 3.187301,6.92833 1.904277,0 2.714608,-2.72811 0.513209,-1.75572 0.513209,-4.32177 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3216-7-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.72184748,-1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path908"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m -300.33276,-734.2844 q 0,0.35364 -0.12731,0.62241 -0.3395,0.11316 -0.73558,0.11316 h -10.43951 q -0.93362,0 -0.93362,-0.9902 0,-0.16974 0.0283,-0.53753 0.0283,-0.38194 0.0283,-0.57998 0,-0.93361 0.82045,-0.93361 h 3.52228 v -13.07062 h -4.30029 q -0.90532,0 -0.90532,-0.9902 0,-0.21218 0.0424,-0.67899 0.0566,-0.48095 0.0566,-0.72143 0,-0.48095 0.90532,-0.48095 0.25462,0 0.96191,0.0566 0.70728,0.0424 1.10336,0.0424 2.26331,0 2.74426,-1.57017 h 2.70183 v 17.41334 q 0.94776,0 2.03698,-0.0566 1.10336,-0.0707 1.31555,-0.0707 0.82045,0 1.01849,0.43851 0.1556,0.38194 0.1556,1.99455 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.69918846,-1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path905"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m -296.60082,-720.19244 q 0,9.66995 -6.68523,9.66995 -6.77977,0 -6.77977,-9.72397 0,-10.08862 6.91482,-10.08862 6.55018,0 6.55018,10.14264 z m -3.51144,-0.28361 q 0,-6.92833 -3.22781,-6.92833 -1.89078,0 -2.6876,2.74162 -0.4997,1.7287 -0.4997,4.30826 0,6.92832 3.1873,6.92832 1.90427,0 2.7146,-2.72811 0.51321,-1.75572 0.51321,-4.32176 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71813 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15665 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.2581 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.8049 0.969951,-2.57293 2.496492,-4.92115 4.456323,-6.8049 2.214432,-2.12847 5.052234,-3.67828 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00801 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853399,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99527 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 58.597133,880.82455 c -2.653214,-5.6959 -6.07814,-11.01839 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88505 -8.43128,-8.65508 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.2581 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.8049 0.969951,-2.57293 2.496492,-4.92115 4.456323,-6.8049 2.214432,-2.12847 5.052234,-3.67828 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853399,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.5911 -8.431311,8.65508 -4.069228,4.75108 -7.494154,10.07357 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.513382"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07624 c -2.65321,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.7741 0.0799,-7.82001 1.94474,-11.21026 1.09215,-1.98547 2.48953,-3.81145 4.21076,-5.26296 2.5574,-2.15665 5.89412,-3.44611 9.20312,-3.16466 3.03456,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00801 9.20311,3.16466 1.72127,1.45151 3.11861,3.27749 4.21076,5.26296 1.8649,3.39025 2.8534,7.43616 1.94477,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86782,2.54316 -4.19117,4.69517 -6.47396,6.85891 -2.9224,2.77004 -5.80706,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49415,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9"
|
||||
d="m 116.96746,847.4504 c -2.65321,-5.6959 -6.07814,-11.01839 -10.14737,-15.76948 -2.62425,-3.06398 -5.50887,-5.88504 -8.431277,-8.65508 -2.282813,-2.16374 -4.606141,-4.31574 -6.473991,-6.8589 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.85339,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69516 -6.47396,6.8589 -2.9224,2.77004 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75109 -7.49415,10.07358 -10.14736,15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8"
|
||||
d="m 175.33779,880.82455 c -2.65321,-5.6959 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.43128,-8.65508 -2.28281,-2.16375 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48953,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89412,-3.44611 9.20312,-3.16466 3.03456,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20311,3.16466 1.72127,1.45151 3.11861,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94477,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86782,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06923,4.75108 -7.49415,10.07357 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64807 c -2.653214,5.69589 -6.07814,11.01839 -10.147368,15.76947 -2.624249,3.06398 -5.508873,5.88505 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77003 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75108 -7.494154,-10.07358 -10.147368,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3-5"
|
||||
d="m 58.597133,890.89976 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.8589 -1.261866,1.71813 -2.314885,3.62963 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.82001 1.944736,11.21027 1.092153,1.98547 2.489526,3.81145 4.21076,5.26296 2.557405,2.15665 5.894117,3.44611 9.203118,3.16466 3.034567,-0.2581 5.872369,-1.80791 8.086801,-3.93638 1.959831,-1.88374 3.486372,-4.23197 4.456324,-6.8049 0.969951,2.57293 2.496492,4.92116 4.456323,6.8049 2.214432,2.12847 5.052234,3.67828 8.08677,3.93638 3.309001,0.28145 6.645713,-1.00801 9.203118,-3.16466 1.721265,-1.45151 3.118607,-3.27749 4.21076,-5.26296 1.8649,-3.39026 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08377 -1.554722,-3.99527 -2.816588,-5.7134 -1.867819,-2.54315 -4.191178,-4.69516 -6.47396,-6.8589 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.513389"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64807 c -2.65321,5.69589 -6.07814,11.01839 -10.14737,15.76947 -2.62425,3.06398 -5.50887,5.88505 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77003 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75108 -7.49415,-10.07358 -10.14737,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9-2"
|
||||
d="m 116.96746,924.27392 c -2.65321,5.69589 -6.07814,11.01838 -10.14737,15.76947 -2.62425,3.06398 -5.50887,5.88505 -8.431277,8.65508 -2.282813,2.16374 -4.606141,4.31575 -6.473991,6.85891 -1.261866,1.71812 -2.314886,3.62962 -2.816557,5.7134 -0.908631,3.77411 0.07987,7.82001 1.944736,11.21026 1.092153,1.98547 2.489526,3.81146 4.210761,5.26296 2.557404,2.15665 5.894118,3.44611 9.203118,3.16466 3.03457,-0.2581 5.87237,-1.8079 8.0868,-3.93638 1.95983,-1.88374 3.48637,-4.23196 4.45632,-6.8049 0.96996,2.57294 2.4965,4.92116 4.45633,6.8049 2.21443,2.12848 5.05223,3.67828 8.08677,3.93638 3.309,0.28145 6.64571,-1.00801 9.20312,-3.16466 1.72126,-1.4515 3.1186,-3.27749 4.21076,-5.26296 1.8649,-3.39025 2.85339,-7.43615 1.94476,-11.21026 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86781,-2.54316 -4.19117,-4.69517 -6.47396,-6.85891 -2.9224,-2.77003 -5.80706,-5.5911 -8.43131,-8.65508 -4.06922,-4.75109 -7.49415,-10.07358 -10.14736,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8-8"
|
||||
d="m 175.33779,890.89976 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16374 -4.60614,4.31575 -6.47399,6.8589 -1.26187,1.71813 -2.31489,3.62963 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.82001 1.94474,11.21027 1.09215,1.98547 2.48953,3.81145 4.21076,5.26296 2.5574,2.15665 5.89412,3.44611 9.20312,3.16466 3.03456,-0.2581 5.87237,-1.80791 8.0868,-3.93638 1.95983,-1.88374 3.48637,-4.23197 4.45632,-6.8049 0.96995,2.57293 2.4965,4.92116 4.45633,6.8049 2.21443,2.12847 5.05223,3.67828 8.08677,3.93638 3.309,0.28145 6.64571,-1.00801 9.20311,-3.16466 1.72127,-1.45151 3.11861,-3.27749 4.21076,-5.26296 1.8649,-3.39026 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08377 -1.55472,-3.99527 -2.81659,-5.7134 -1.86782,-2.54315 -4.19117,-4.69516 -6.47396,-6.8589 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194721,780.70209 c -0.884405,-1.89863 -2.026047,-3.67279 -3.382454,-5.25649 -0.874748,-1.02132 -1.83629,-1.96168 -2.810428,-2.88502 -0.760935,-0.72125 -1.5353778,-1.43859 -2.1579946,-2.28631 -0.4206242,-0.5727 -0.7716307,-1.20987 -0.9388523,-1.90447 -0.3028792,-1.25803 0.026612,-2.60666 0.6482433,-3.73675 0.364052,-0.66182 0.8298441,-1.27049 1.4035868,-1.75432 0.8524708,-0.71888 1.9647078,-1.1487 3.0677058,-1.05489 1.011523,0.086 1.957455,0.60264 2.695602,1.31213 0.653276,0.62792 1.162121,1.41066 1.48544,2.2683 0.323318,-0.85764 0.832163,-1.64038 1.48544,-2.2683 0.738146,-0.70949 1.684078,-1.22609 2.695592,-1.31213 1.102998,-0.0938 2.215235,0.33601 3.067703,1.05489 0.573755,0.48383 1.039537,1.0925 1.403586,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73675 -0.167221,0.6946 -0.518241,1.33177 -0.938861,1.90447 -0.622608,0.84772 -1.39706,1.56506 -2.157986,2.28631 -0.974135,0.92334 -1.935689,1.8637 -2.810437,2.88502 -1.356411,1.5837 -2.498053,3.35786 -3.382457,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
183
img/playing_cards/fronts/hearts_2.svg
Normal file
|
@ -0,0 +1,183 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_2.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title899">Two of Diamonds Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="113.01881"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="460"
|
||||
inkscape:window-y="33"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Two of Diamonds Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>two; diamonds; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A two of diamonds playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g913">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 116.96746,814.07624 c -2.65321,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.431277,-8.65507 -2.282813,-2.16375 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.59109 -8.43131,8.65507 -4.06922,4.75109 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 116.96746,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.431277,8.65508 -2.282813,2.16374 -4.606141,4.31575 -6.473991,6.85891 -1.261866,1.71812 -2.314886,3.62962 -2.816557,5.7134 -0.908631,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.210761,5.263 2.557404,2.1566 5.894118,3.4461 9.203118,3.1646 3.03457,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96996,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20312,-3.1646 1.72126,-1.4516 3.1186,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.85339,-7.43616 1.94476,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86781,-2.54316 -4.19117,-4.69517 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06922,-4.75109 -7.49415,-10.07358 -10.14736,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.98105485,1.019311)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path893"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.999715,735.55243 -0.710843,5.64831 H 7.9414512 q 0.4226631,-4.86062 3.9192398,-8.58774 l 6.224675,-5.3025 q 3.246821,-2.80495 3.246821,-5.62911 0,-1.88277 -1.07587,-2.99706 -1.056658,-1.13351 -2.920218,-1.13351 -2.151739,0 -3.208397,1.15272 -0.691631,0.76848 -1.056658,2.36307 -0.365027,1.69065 -0.576359,1.95962 -0.307391,0.0961 -0.710842,0.0961 H 9.3631362 q -0.4226631,0 -0.7300545,-0.17291 -0.1344837,-0.40345 -0.1344837,-0.90296 0,-4.0153 2.632038,-6.37837 2.516767,-2.26701 6.551278,-2.26701 3.746332,0 6.128615,1.99804 2.535979,2.11332 2.535979,5.80202 0,3.63106 -2.804946,6.64733 -0.97981,1.07587 -5.571468,4.59166 -3.342881,2.59362 -4.111359,4.66851 h 8.952773 l 0.153695,-1.72908 q 0.211332,-0.92217 1.133506,-0.92217 h 1.921196 q 1.114293,0 0.97981,1.09508 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.98105494,-1.0193109)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path896"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.51903,-1002.6064 -0.71084,5.64833 h -18.34742 q 0.42266,-4.86063 3.91924,-8.58773 l 6.22467,-5.3025 q 3.24682,-2.805 3.24682,-5.6291 0,-1.8828 -1.07587,-2.9971 -1.05665,-1.1335 -2.92021,-1.1335 -2.15174,0 -3.2084,1.1527 -0.69163,0.7685 -1.05666,2.3631 -0.36503,1.6907 -0.57636,1.9596 -0.30739,0.096 -0.71084,0.096 h -2.42071 q -0.42266,0 -0.73005,-0.1729 -0.13449,-0.4035 -0.13449,-0.903 0,-4.0153 2.63204,-6.3784 2.51677,-2.267 6.55128,-2.267 3.74633,0 6.12862,1.9981 2.53597,2.1133 2.53597,5.802 0,3.631 -2.80494,6.6473 -0.97981,1.0759 -5.57147,4.5917 -3.34288,2.5936 -4.11136,4.6685 h 8.95277 l 0.1537,-1.7291 q 0.21133,-0.9222 1.13351,-0.9222 h 1.92119 q 1.11429,0 0.97981,1.0951 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
178
img/playing_cards/fronts/hearts_3.svg
Normal file
|
@ -0,0 +1,178 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_3.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_3.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title915">Three of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="156.74936"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="436"
|
||||
inkscape:window-y="30"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Three of Hearts Playing Card</dc:title>
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>three; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A three of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g913">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 116.96746,814.07624 c -2.65321,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.431277,-8.65507 -2.282813,-2.16375 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.59109 -8.43131,8.65507 -4.06922,4.75109 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 116.96746,914.1987 c -2.65321,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16375 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75108 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 116.96746,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.431277,8.65508 -2.282813,2.16374 -4.606141,4.31575 -6.473991,6.85891 -1.261866,1.71812 -2.314886,3.62962 -2.816557,5.7134 -0.908631,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.210761,5.263 2.557404,2.1566 5.894118,3.4461 9.203118,3.1646 3.03457,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96996,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20312,-3.1646 1.72126,-1.4516 3.1186,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.85339,-7.43616 1.94476,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86781,-2.54316 -4.19117,-4.69517 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06922,-4.75109 -7.49415,-10.07358 -10.14736,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(1.0092549,0.99082998)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path894"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.376029,754.4354 q 0,3.97693 -2.787749,6.12135 -2.514823,1.94948 -6.589225,1.94948 -9.2794998,0 -9.2794998,-8.77264 0,-0.40939 0.1364633,-0.77979 0.2924212,-0.17545 0.6628214,-0.17545 h 2.5343171 q 0.3704,0 0.682316,0.17545 0.09747,0.27293 0.155958,0.64333 0.331411,2.41735 1.364633,3.50905 1.15019,1.20868 3.528549,1.20868 1.949475,0 3.177644,-1.05272 1.286653,-1.13069 1.286653,-3.04118 0,-4.05491 -4.425308,-4.75672 -0.545853,-0.078 -0.818779,-0.23394 -0.155958,-0.31191 -0.155958,-3.15814 0,-0.3704 0.175453,-0.70182 1.462106,-0.42888 2.924212,-0.87726 1.540085,-0.70181 1.540085,-2.94371 0,-3.39208 -3.976929,-3.39208 -1.832506,0 -2.865727,0.89676 -0.545853,0.48737 -1.130696,1.65705 -0.428884,0.89676 -0.857769,0.89676 H 9.1426718 q -0.9552426,0 -0.9552426,-0.85777 0,-3.25562 2.5538118,-5.14661 2.30038,-1.69605 5.653477,-1.69605 3.85996,0 6.296803,1.61807 2.865728,1.89099 2.865728,5.57549 0,4.44481 -4.386318,6.04338 5.205098,2.2029 5.205098,7.29103 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0092549,-0.99082997)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path897"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:1"
|
||||
d="m -205.4782,-1033.6861 q 0,3.977 -2.78775,6.1214 -2.51482,1.9495 -6.58923,1.9495 -9.2795,0 -9.2795,-8.7727 0,-0.4094 0.13647,-0.7798 0.29242,-0.1754 0.66282,-0.1754 h 2.53432 q 0.3704,0 0.68231,0.1754 0.0975,0.273 0.15596,0.6434 0.33141,2.4173 1.36463,3.509 1.15019,1.2087 3.52855,1.2087 1.94948,0 3.17765,-1.0527 1.28665,-1.1307 1.28665,-3.0412 0,-4.0549 -4.42531,-4.7567 -0.54585,-0.078 -0.81878,-0.234 -0.15596,-0.3119 -0.15596,-3.1581 0,-0.3704 0.17546,-0.7018 1.4621,-0.4289 2.92421,-0.8773 1.54008,-0.7018 1.54008,-2.9437 0,-3.3921 -3.97692,-3.3921 -1.83251,0 -2.86573,0.8968 -0.54586,0.4874 -1.1307,1.657 -0.42888,0.8968 -0.85777,0.8968 h -2.51482 q -0.95524,0 -0.95524,-0.8578 0,-3.2556 2.55381,-5.1466 2.30038,-1.696 5.65348,-1.696 3.85996,0 6.2968,1.618 2.86573,1.891 2.86573,5.5755 0,4.4448 -4.38632,6.0434 5.2051,2.2029 5.2051,7.291 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
199
img/playing_cards/fronts/hearts_4.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_4.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_4.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title898">Four of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.0958338"
|
||||
inkscape:cx="155.65762"
|
||||
inkscape:cy="202.98865"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="493"
|
||||
inkscape:window-y="33"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Four of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>four; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A four of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g920">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.51338"
|
||||
inkscape:transform-center-x="78.569003"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07624 c -2.65322,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31574 -6.47399,-6.8589 -1.26187,-1.71813 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.49649,-4.92115 4.45632,-6.8049 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99527 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.8589 -2.92241,2.77004 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49416,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64806 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.513392"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-5"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.9367271,1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m 28.418244,706.77169 q 0,0.38656 -0.14726,0.75471 -0.331335,0.18407 -0.699485,0.18407 H 15.753885 q -1.362154,0 -1.362154,-1.38056 0,-0.22089 0.03682,-0.77311 0.03681,-0.55223 0.03681,-0.84675 0,-0.64426 0.276112,-0.82834 0.202483,-0.12885 0.901967,-0.12885 h 4.601875 v -2.83475 H 9.9187087 q -1.6014522,0 -1.6014522,-1.49101 0,-0.2577 0.055223,-0.93878 0.055222,-0.69949 0.055222,-1.10445 0,-0.62586 0.7178924,-1.56464 l 10.6395332,-13.9897 q 0.497003,-0.66267 1.25171,-0.66267 h 2.42979 q 0.865152,0 0.865152,0.95719 v 15.02052 q 0.66267,0 1.509415,-0.0368 0.865153,-0.0368 1.10445,-0.0368 0.994005,0 1.233302,0.497 0.239298,0.4786 0.239298,2.39298 0,0.34974 -0.05522,0.53382 -0.110445,0.42337 -0.846745,0.42337 h -3.184497 v 2.83475 q 0.681078,0 1.54623,-0.0368 0.865153,-0.0368 1.086042,-0.0368 1.049228,0 1.270118,0.53382 0.184075,0.44178 0.184075,2.55864 z m -8.099299,-19.69602 q -1.012413,1.54623 -7.473444,10.0689 h 7.399814 q 0,-0.9756 -0.03682,-3.35016 -0.05522,-2.15368 -0.03682,-3.36858 0.01841,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-28"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.9367271,-1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path903"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m -221.38774,-952.85044 q 0,0.38656 -0.14726,0.75471 -0.33134,0.18407 -0.69949,0.18407 h -11.81761 q -1.36215,0 -1.36215,-1.38056 0,-0.22089 0.0368,-0.77311 0.0368,-0.55223 0.0368,-0.84675 0,-0.64426 0.27611,-0.82834 0.20248,-0.12885 0.90197,-0.12885 h 4.60187 v -2.83475 h -10.32661 q -1.60145,0 -1.60145,-1.49101 0,-0.25771 0.0552,-0.93878 0.0552,-0.69949 0.0552,-1.10445 0,-0.62586 0.71789,-1.56464 l 10.63953,-13.9897 q 0.497,-0.66267 1.25171,-0.66267 h 2.42979 q 0.86515,0 0.86515,0.95719 v 15.02052 q 0.66267,0 1.50942,-0.0368 0.86515,-0.0368 1.10445,-0.0368 0.994,0 1.2333,0.497 0.2393,0.4786 0.2393,2.39298 0,0.34974 -0.0552,0.53381 -0.11045,0.42338 -0.84675,0.42338 h -3.1845 v 2.83475 q 0.68108,0 1.54623,-0.0368 0.86516,-0.0368 1.08605,-0.0368 1.04922,0 1.27011,0.53382 0.18408,0.44178 0.18408,2.55864 z m -8.0993,-19.69602 q -1.01241,1.54623 -7.47344,10.0689 h 7.39981 q 0,-0.9756 -0.0368,-3.35017 -0.0552,-2.15367 -0.0368,-3.36857 0.0184,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
205
img/playing_cards/fronts/hearts_5.svg
Normal file
|
@ -0,0 +1,205 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_5.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_5.png"
|
||||
inkscape:export-xdpi="96.000008"
|
||||
inkscape:export-ydpi="96.000008">
|
||||
<title
|
||||
id="title896">Five of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="34.926791"
|
||||
inkscape:cy="162.57698"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="507"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="-8.6386128e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Five of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>five; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A five of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.3621)">
|
||||
<g
|
||||
id="g919">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457426"
|
||||
y="719.74005"
|
||||
x="0.37795275"
|
||||
height="332.24408"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60063)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132615;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132615;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60063)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60063)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132615;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70206 c -0.884404,-1.89863 -2.026046,-3.67278 -3.382435,-5.25648 -0.87477,-1.02135 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43859 -2.1580074,-2.28629 -0.4206116,-0.57272 -0.7716181,-1.20987 -0.9388522,-1.90446 -0.3028667,-1.25806 0.026675,-2.60669 0.6482558,-3.73679 0.3640614,-0.66181 0.8298315,-1.27048 1.4035868,-1.7543 0.852458,-0.71887 1.964695,-1.14871 3.067706,-1.05488 1.011533,0.086 1.957446,0.60263 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26832 0.323328,-0.85766 0.832154,-1.64038 1.485431,-2.26832 0.738165,-0.70947 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0939 2.215223,0.33601 3.06769,1.05488 0.573755,0.48382 1.039538,1.09249 1.403587,1.7543 0.621635,1.1301 0.951135,2.47873 0.648256,3.73679 -0.167222,0.69459 -0.518241,1.33174 -0.938862,1.90446 -0.622607,0.8477 -1.397059,1.56506 -2.157985,2.28629 -0.974135,0.92336 -1.935695,1.86369 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25648"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201152px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99509934,1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path898"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.751238,742.3019 q 0,4.36509 -2.650231,6.93737 -2.630744,2.57228 -6.99583,2.57228 -4.189703,0 -6.625577,-2.04613 -2.6502312,-2.18254 -2.6502312,-6.2943 0,-0.66256 1.0522976,-0.66256 h 2.5527956 q 0.409227,0 0.759993,0.11693 0.116922,0.19487 0.155896,0.50666 0.331279,2.20203 1.266654,3.15689 1.052298,1.07178 3.234841,1.07178 2.182543,0 3.527145,-1.53947 1.266655,-1.46152 1.266655,-3.66355 0,-5.43687 -4.501495,-5.43687 -1.636907,0 -3.293302,1.13024 h -3.215353 q -0.448201,0 -0.857428,-0.11692 -0.1948699,-0.19487 -0.1948699,-0.4482 0,-2.76715 0.2923048,-6.97634 0.2533311,-3.50766 0.5066621,-6.99583 h 14.615243 q 0.506662,0 0.915889,0.15589 0.175383,0.38974 0.175383,2.72818 0,0.38974 -0.03897,0.64307 -0.136409,0.62359 -1.130245,0.62359 H 14.338024 q 0.05846,1.05229 -0.175383,3.21535 -0.233844,2.14357 -0.175383,3.19587 2.00716,-1.24717 4.189703,-1.24717 4.014321,0 6.35276,2.72818 2.221517,2.57228 2.221517,6.64506 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201152px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99509934,-1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path901"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -208.40118,-1020.7398 q 0,4.3651 -2.65023,6.9374 -2.63075,2.5723 -6.99583,2.5723 -4.18971,0 -6.62558,-2.0462 -2.65023,-2.1825 -2.65023,-6.2943 0,-0.6625 1.0523,-0.6625 h 2.55279 q 0.40923,0 0.76,0.1169 0.11692,0.1949 0.15589,0.5067 0.33128,2.202 1.26666,3.1569 1.05229,1.0717 3.23484,1.0717 2.18254,0 3.52714,-1.5394 1.26666,-1.4616 1.26666,-3.6636 0,-5.4369 -4.5015,-5.4369 -1.63691,0 -3.2933,1.1303 h -3.21535 q -0.4482,0 -0.85743,-0.1169 -0.19487,-0.1949 -0.19487,-0.4482 0,-2.7672 0.2923,-6.9764 0.25333,-3.5076 0.50667,-6.9958 h 14.61524 q 0.50666,0 0.91589,0.1559 0.17538,0.3897 0.17538,2.7282 0,0.3897 -0.039,0.643 -0.13641,0.6236 -1.13025,0.6236 h -10.58144 q 0.0585,1.0523 -0.17538,3.2154 -0.23384,2.1435 -0.17538,3.1958 2.00716,-1.2471 4.1897,-1.2471 4.01432,0 6.35276,2.7282 2.22152,2.5722 2.22152,6.645 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02219 c -0.88441,1.89865 -2.02605,3.6728 -3.38244,5.2565 -0.87477,1.02133 -1.83631,1.96161 -2.81044,2.88508 -0.76095,0.72119 -1.53539,1.43853 -2.158,2.28623 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.2581 0.0267,2.6066 0.64826,3.7367 0.36406,0.6618 0.82983,1.2705 1.40359,1.7544 0.85245,0.7188 1.96469,1.1487 3.0677,1.0548 1.01153,-0.086 1.95745,-0.6025 2.69561,-1.3121 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2682 0.32333,0.8576 0.83216,1.6403 1.48543,2.2682 0.73817,0.7096 1.68408,1.2261 2.69561,1.3121 1.10298,0.094 2.21522,-0.336 3.06771,-1.0548 0.57376,-0.4839 1.03953,-1.0926 1.40359,-1.7544 0.62161,-1.1301 0.95112,-2.4786 0.64825,-3.7367 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56504 -2.15798,-2.28623 -0.97412,-0.92347 -1.93569,-1.86375 -2.81043,-2.88508 -1.35642,-1.5837 -2.49807,-3.35785 -3.38247,-5.2565"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07622 c -2.653214,-5.6959 -6.07814,-11.01839 -10.147368,-15.76948 -2.624249,-3.06397 -5.508873,-5.88505 -8.43128,-8.65507 -2.282814,-2.16374 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.7741 0.07987,-7.82001 1.944736,-11.21026 1.092153,-1.98547 2.489526,-3.81146 4.21076,-5.26297 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16465 3.034567,0.25809 5.872369,1.80791 8.086801,3.93638 1.959831,1.88374 3.486372,4.23196 4.456324,6.8049 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.8049 2.214432,-2.12847 5.052234,-3.67829 8.08677,-3.93638 3.309001,-0.28146 6.645713,1.00801 9.203118,3.16465 1.721265,1.45151 3.118607,3.2775 4.21076,5.26297 1.8649,3.39025 2.853402,7.43616 1.944767,11.21026 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69517 -6.47396,6.85891 -2.922407,2.77002 -5.807063,5.5911 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.513355"
|
||||
inkscape:transform-center-x="78.569003"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07622 c -2.65322,-5.6959 -6.07814,-11.01839 -10.14737,-15.76948 -2.62425,-3.06397 -5.50887,-5.88505 -8.43128,-8.65507 -2.28281,-2.16374 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.7741 0.0799,-7.82001 1.94474,-11.21026 1.09215,-1.98547 2.48952,-3.81146 4.21076,-5.26297 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16465 3.03457,0.25809 5.87237,1.80791 8.08681,3.93638 1.95983,1.88374 3.48637,4.23196 4.45632,6.8049 0.96995,-2.57294 2.49649,-4.92116 4.45632,-6.8049 2.21443,-2.12847 5.05223,-3.67829 8.08677,-3.93638 3.309,-0.28146 6.64571,1.00801 9.20312,3.16465 1.72126,1.45151 3.1186,3.2775 4.21076,5.26297 1.8649,3.39025 2.8534,7.43616 1.94476,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69517 -6.47396,6.85891 -2.92241,2.77002 -5.80707,5.5911 -8.43131,8.65507 -4.06923,4.75109 -7.49416,10.07358 -10.14737,15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9"
|
||||
d="m 116.96746,914.19868 c -2.65321,-5.6959 -6.07814,-11.01839 -10.14737,-15.76948 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16373 -4.606141,-4.31575 -6.473991,-6.8589 -1.261866,-1.71813 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98546 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23196 4.45632,6.8049 0.96996,-2.57294 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.2775 4.21076,5.26296 1.8649,3.39026 2.85339,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99527 -2.81659,5.7134 -1.86781,2.54315 -4.19117,4.69517 -6.47396,6.8589 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75109 -7.49415,10.07358 -10.14736,15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64803 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06397 -5.508873,5.88504 -8.43128,8.65502 -2.282814,2.16373 -4.606141,4.31579 -6.473992,6.859 -1.261866,1.71803 -2.314885,3.62963 -2.816556,5.71332 -0.908632,3.77421 0.07987,7.82005 1.944736,11.21025 1.092153,1.9855 2.489526,3.8115 4.21076,5.2631 2.557405,2.1566 5.894117,3.446 9.203118,3.1645 3.034567,-0.258 5.872369,-1.8078 8.086801,-3.9363 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9363 3.309001,0.2815 6.645713,-1.0079 9.203118,-3.1645 1.721265,-1.4516 3.118607,-3.2776 4.21076,-5.2631 1.8649,-3.3902 2.853399,-7.43604 1.944767,-11.21025 -0.501671,-2.08369 -1.554722,-3.99529 -2.816588,-5.71332 -1.867819,-2.54321 -4.191178,-4.69527 -6.47396,-6.859 -2.922407,-2.76998 -5.807063,-5.59105 -8.431311,-8.65502 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.51346"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64803 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06397 -5.50887,5.88504 -8.43128,8.65502 -2.28281,2.16388 -4.60614,4.31579 -6.47399,6.859 -1.26187,1.71803 -2.31489,3.62963 -2.81656,5.71332 -0.90863,3.77421 0.0799,7.82005 1.94474,11.21025 1.09215,1.9855 2.48953,3.8115 4.21076,5.2631 2.5574,2.1566 5.89412,3.446 9.20312,3.1645 3.03456,-0.258 5.87237,-1.8078 8.0868,-3.9363 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9363 3.309,0.2815 6.64571,-1.0079 9.20311,-3.1645 1.72127,-1.4516 3.11861,-3.2776 4.21076,-5.2631 1.8649,-3.3902 2.8534,-7.43604 1.94477,-11.21025 -0.50167,-2.08369 -1.55472,-3.99529 -2.81659,-5.71332 -1.86782,-2.54321 -4.19117,-4.69512 -6.47396,-6.859 -2.9224,-2.76998 -5.80706,-5.59105 -8.43131,-8.65502 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
208
img/playing_cards/fronts/hearts_6.svg
Normal file
|
@ -0,0 +1,208 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_6.svg"
|
||||
inkscape:export-filename="hearts_6.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title897">Six of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="107.42168"
|
||||
inkscape:cy="181.60634"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="446"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Six of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2024-11-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>six; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A six of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4266"
|
||||
width="233.24409"
|
||||
height="332.24411"
|
||||
x="0.37795275"
|
||||
y="719.74011"
|
||||
ry="8.9457436"
|
||||
rx="8.9191856" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4233"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)"
|
||||
id="g4211"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
clip-path="none" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4227"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
id="path3940-9-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
id="path3940-9-6-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
id="path3940-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 58.597133,914.1987 c -2.653214,-5.69589 -6.07814,-11.01839 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88505 -8.43128,-8.65508 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.5911 -8.431311,8.65508 -4.069228,4.75108 -7.494154,10.07358 -10.147368,15.76947"
|
||||
id="path3940-9-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 175.33779,814.07624 c -2.65322,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31574 -6.47399,-6.8589 -1.26187,-1.71813 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.49649,-4.92115 4.45632,-6.8049 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99527 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.8589 -2.92241,2.77004 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49416,10.07358 -10.14737,15.76947"
|
||||
id="path3940-9-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:transform-center-x="78.569003"
|
||||
inkscape:transform-center-y="71.51338" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 175.33779,914.1987 c -2.65322,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.43128,-8.65508 -2.28281,-2.16375 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96995,-2.57294 2.49649,-4.92116 4.45632,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.85891 -2.92241,2.77003 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75108 -7.49416,10.07358 -10.14737,15.76947"
|
||||
id="path3940-9-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 58.597133,957.64806 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
id="path3940-9-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
d="m 175.33779,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
id="path3940-9-1-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
inkscape:transform-center-y="-71.513392" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99029285,1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path897"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.881078,738.99851 q 0,4.24652 -2.467574,6.71409 -2.448446,2.46758 -6.694968,2.46758 -9.8511667,0 -9.8511667,-13.61948 0,-6.00634 2.1232612,-9.7364 2.6397305,-4.7056 8.1869895,-4.7056 3.213584,0 5.336845,1.31986 2.544088,1.56854 2.544088,4.59084 0,0.6695 -0.937296,0.6695 h -2.831014 q -0.554726,0 -0.937296,-0.63124 -0.554726,-0.9373 -0.87991,-1.2051 -0.784268,-0.63124 -2.295417,-0.63124 -2.544088,0 -3.959596,2.37193 -1.109451,1.91285 -1.243351,4.70561 2.238032,-1.77895 5.355974,-1.77895 3.959596,0 6.312398,2.79276 2.238033,2.63973 2.238033,6.67584 z m -4.992534,-0.11477 q 0,-2.18065 -1.090323,-3.59616 -1.205094,-1.56853 -3.328355,-1.56853 -2.104133,0 -3.290099,1.56853 -1.071194,1.41551 -1.071194,3.59616 0,2.085 1.12858,3.53876 1.224223,1.58767 3.251841,1.58767 2.065876,0 3.290099,-1.56854 1.109451,-1.43463 1.109451,-3.55789 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99029285,-1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -209.41268,-1015.5274 q 0,4.2466 -2.46758,6.7141 -2.44844,2.4676 -6.69497,2.4676 -9.85116,0 -9.85116,-13.6195 0,-6.0063 2.12326,-9.7364 2.63973,-4.7056 8.18699,-4.7056 3.21358,0 5.33684,1.3199 2.54409,1.5685 2.54409,4.5908 0,0.6695 -0.93729,0.6695 h -2.83102 q -0.55473,0 -0.9373,-0.6312 -0.55472,-0.9373 -0.87991,-1.2051 -0.78426,-0.6313 -2.29541,-0.6313 -2.54409,0 -3.9596,2.372 -1.10945,1.9128 -1.24335,4.7056 2.23803,-1.779 5.35598,-1.779 3.95959,0 6.31239,2.7928 2.23804,2.6397 2.23804,6.6758 z m -4.99254,-0.1147 q 0,-2.1807 -1.09032,-3.5962 -1.2051,-1.5685 -3.32836,-1.5685 -2.10413,0 -3.29009,1.5685 -1.0712,1.4155 -1.0712,3.5962 0,2.085 1.12858,3.5387 1.22422,1.5877 3.25184,1.5877 2.06588,0 3.2901,-1.5685 1.10945,-1.4347 1.10945,-3.5579 z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
217
img/playing_cards/fronts/hearts_7.svg
Normal file
|
@ -0,0 +1,217 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_7.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_7.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title901">Seven of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="35.037042"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="436"
|
||||
inkscape:window-y="28"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Seven of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>seven; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A seven of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g926">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0298762,0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path903"
|
||||
style="font-size:41.88301086px;line-height:1.25;stroke-width:1"
|
||||
d="m 25.847903,752.97249 -7.70991,24.17272 q -0.30676,0.94073 -1.554252,0.94073 h -3.026702 q -0.940732,0 -0.940732,-0.59307 0,-0.57262 3.86518,-11.57509 2.249576,-6.33972 4.478701,-12.65898 h -9.059655 q -0.06135,0.89983 -0.368113,2.61769 -0.286309,0.18406 -0.61352,0.18406 H 8.5466198 q -0.981633,0 -0.981633,-0.71578 0,-0.34766 0.5930699,-6.44197 H 25.847903 Z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0298762,-0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path906"
|
||||
style="font-size:41.88301086px;line-height:1.25;stroke-width:1"
|
||||
d="m -201.36388,-1071.6842 -7.70991,24.1727 q -0.30676,0.9407 -1.55425,0.9407 h -3.02671 q -0.94073,0 -0.94073,-0.5931 0,-0.5726 3.86518,-11.5751 2.24958,-6.3397 4.4787,-12.6589 h -9.05965 q -0.0614,0.8998 -0.36811,2.6177 -0.28631,0.184 -0.61352,0.184 h -2.37228 q -0.98164,0 -0.98164,-0.7158 0,-0.3476 0.59307,-6.4419 h 17.68985 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 58.597133,914.1987 c -2.653214,-5.69589 -6.07814,-11.01839 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88505 -8.43128,-8.65508 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.5911 -8.431311,8.65508 -4.069228,4.75108 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.51338"
|
||||
inkscape:transform-center-x="78.569003"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07624 c -2.65322,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31574 -6.47399,-6.8589 -1.26187,-1.71813 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.49649,-4.92115 4.45632,-6.8049 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99527 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.8589 -2.92241,2.77004 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49416,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9"
|
||||
d="m 116.96746,869.80478 c -2.65321,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16374 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.7741 0.07987,-7.82001 1.944736,-11.21026 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15665 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96996,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00801 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39025 2.85339,7.43616 1.94476,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69517 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75108 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8"
|
||||
d="m 175.33779,914.1987 c -2.65322,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.43128,-8.65508 -2.28281,-2.16375 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96995,-2.57294 2.49649,-4.92116 4.45632,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.85891 -2.92241,2.77003 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75108 -7.49416,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64806 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.513392"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
223
img/playing_cards/fronts/hearts_8.svg
Normal file
|
@ -0,0 +1,223 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_8.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_8.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title925">Eight of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="127.40897"
|
||||
inkscape:cy="179.01224"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="410"
|
||||
inkscape:window-y="61"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Eight of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eight; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A eight of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g923">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.97854983,1.0219204)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path899"
|
||||
style="font-size:38.71057892px;line-height:1.25;stroke-width:1"
|
||||
d="m 27.203661,731.19934 q 0,4.10166 -2.910854,6.23754 -2.551723,1.87127 -6.785692,1.87127 -4.196166,0 -6.747889,-2.00358 -2.7974443,-2.21149 -2.7974443,-6.29425 0,-4.29067 4.5174943,-6.31315 -3.4779036,-2.21149 -3.4779036,-6.31315 0,-3.61021 2.8352476,-5.36807 2.324903,-1.43652 6.124134,-1.43652 3.459002,0 5.689397,1.68224 2.457215,1.89017 2.457215,5.25466 0,3.85594 -3.459002,6.16194 4.555297,1.92797 4.555297,6.52107 z M 21.325248,719.2346 q 0,-3.53461 -3.78033,-3.53461 -1.72005,0 -2.740739,0.92618 -1.020689,0.90728 -1.020689,2.60843 0,1.64444 1.077394,2.60842 1.020689,0.94509 2.684034,0.94509 1.625542,0 2.702936,-0.96399 1.077394,-0.96398 1.077394,-2.58952 z m 0.888378,11.79463 q 0,-1.96578 -1.342017,-3.09988 -1.266411,-1.07739 -3.269986,-1.07739 -1.965771,0 -3.232182,1.0963 -1.360919,1.153 -1.360919,3.08097 0,2.02247 1.323116,3.13767 1.228607,1.03959 3.288887,1.03959 2.041378,0 3.269985,-1.05849 1.323116,-1.1152 1.323116,-3.11877 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.97854983,-1.0219204)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path902"
|
||||
style="font-size:38.71057892px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.92571,-1002.5212 q 0,4.10168 -2.91086,6.23756 -2.55172,1.87127 -6.78569,1.87127 -4.19617,0 -6.74789,-2.00358 -2.79744,-2.21149 -2.79744,-6.29425 0,-4.2907 4.51749,-6.3131 -3.4779,-2.2115 -3.4779,-6.3132 0,-3.6102 2.83525,-5.3681 2.3249,-1.4365 6.12413,-1.4365 3.459,0 5.6894,1.6823 2.45721,1.8901 2.45721,5.2546 0,3.8559 -3.459,6.162 4.5553,1.9279 4.5553,6.521 z m -5.87842,-11.9647 q 0,-3.5346 -3.78033,-3.5346 -1.72005,0 -2.74074,0.9261 -1.02068,0.9073 -1.02068,2.6085 0,1.6444 1.07739,2.6084 1.02069,0.9451 2.68403,0.9451 1.62555,0 2.70294,-0.964 1.07739,-0.964 1.07739,-2.5895 z m 0.88838,11.7946 q 0,-1.9658 -1.34202,-3.0999 -1.26641,-1.0774 -3.26998,-1.0774 -1.96577,0 -3.23218,1.0963 -1.36092,1.153 -1.36092,3.081 0,2.0225 1.32311,3.13768 1.22861,1.03959 3.28889,1.03959 2.04138,0 3.26999,-1.05849 1.32311,-1.11518 1.32311,-3.11878 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 58.597133,914.1987 c -2.653214,-5.69589 -6.07814,-11.01839 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88505 -8.43128,-8.65508 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.25811 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.80491 0.969951,-2.57294 2.496492,-4.92116 4.456323,-6.80491 2.214432,-2.12847 5.052234,-3.67827 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853402,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.5911 -8.431311,8.65508 -4.069228,4.75108 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.51338"
|
||||
inkscape:transform-center-x="78.569003"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07624 c -2.65322,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31574 -6.47399,-6.8589 -1.26187,-1.71813 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.49649,-4.92115 4.45632,-6.8049 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99527 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.8589 -2.92241,2.77004 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49416,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9"
|
||||
d="m 116.96746,869.80478 c -2.65321,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16374 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.7741 0.07987,-7.82001 1.944736,-11.21026 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15665 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96996,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00801 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39025 2.85339,7.43616 1.94476,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69517 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75108 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8"
|
||||
d="m 175.33779,914.1987 c -2.65322,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.43128,-8.65508 -2.28281,-2.16375 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48952,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89411,-3.44611 9.20311,-3.16466 3.03457,0.25811 5.87237,1.80791 8.08681,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96995,-2.57294 2.49649,-4.92116 4.45632,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81658,5.7134 -1.86782,2.54316 -4.19118,4.69516 -6.47396,6.85891 -2.92241,2.77003 -5.80707,5.5911 -8.43131,8.65508 -4.06923,4.75108 -7.49416,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64806 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.513392"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64806 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8-8"
|
||||
d="m 116.96746,907.58684 c -2.65321,5.69589 -6.07814,11.01839 -10.14737,15.76947 -2.62425,3.06398 -5.50887,5.88505 -8.431277,8.65508 -2.282813,2.16375 -4.606141,4.31575 -6.473991,6.85891 -1.261866,1.71812 -2.314886,3.62962 -2.816557,5.7134 -0.908631,3.77411 0.07987,7.82001 1.944736,11.21027 1.092153,1.98547 2.489526,3.81145 4.210761,5.26296 2.557404,2.15664 5.894118,3.44611 9.203118,3.16466 3.03457,-0.25811 5.87237,-1.80791 8.0868,-3.93638 1.95983,-1.88375 3.48637,-4.23197 4.45632,-6.80491 0.96996,2.57294 2.4965,4.92116 4.45633,6.80491 2.21443,2.12847 5.05223,3.67827 8.08677,3.93638 3.309,0.28145 6.64571,-1.00802 9.20312,-3.16466 1.72126,-1.45151 3.1186,-3.27749 4.21076,-5.26296 1.8649,-3.39026 2.85339,-7.43616 1.94476,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86781,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77003 -5.80706,-5.5911 -8.43131,-8.65508 -4.06922,-4.75108 -7.49415,-10.07358 -10.14736,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
229
img/playing_cards/fronts/hearts_9.svg
Normal file
|
@ -0,0 +1,229 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_9.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_9.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title893">Nine of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="107.43024"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="444"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Nine of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>nine; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A nine of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g920">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9"
|
||||
d="m 58.597133,814.07624 c -2.653214,-5.69589 -6.07814,-11.01838 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88504 -8.43128,-8.65507 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71813 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15665 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.2581 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.8049 0.969951,-2.57293 2.496492,-4.92115 4.456323,-6.8049 2.214432,-2.12847 5.052234,-3.67828 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00801 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853399,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99527 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.59109 -8.431311,8.65507 -4.069228,4.75109 -7.494154,10.07358 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 58.597133,880.82455 c -2.653214,-5.6959 -6.07814,-11.01839 -10.147368,-15.76947 -2.624249,-3.06398 -5.508873,-5.88505 -8.43128,-8.65508 -2.282814,-2.16375 -4.606141,-4.31575 -6.473992,-6.85891 -1.261866,-1.71812 -2.314885,-3.62962 -2.816556,-5.7134 -0.908632,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.21076,-5.26296 2.557405,-2.15664 5.894117,-3.44611 9.203118,-3.16466 3.034567,0.2581 5.872369,1.80791 8.086801,3.93638 1.959831,1.88375 3.486372,4.23197 4.456324,6.8049 0.969951,-2.57293 2.496492,-4.92115 4.456323,-6.8049 2.214432,-2.12847 5.052234,-3.67828 8.08677,-3.93638 3.309001,-0.28145 6.645713,1.00802 9.203118,3.16466 1.721265,1.45151 3.118607,3.27749 4.21076,5.26296 1.8649,3.39026 2.853399,7.43616 1.944767,11.21027 -0.501671,2.08378 -1.554722,3.99528 -2.816588,5.7134 -1.867819,2.54316 -4.191178,4.69516 -6.47396,6.85891 -2.922407,2.77003 -5.807063,5.5911 -8.431311,8.65508 -4.069228,4.75108 -7.494154,10.07357 -10.147368,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="71.513382"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1"
|
||||
d="m 175.33779,814.07624 c -2.65321,-5.69589 -6.07814,-11.01838 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88504 -8.43128,-8.65508 -2.28281,-2.16374 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.7741 0.0799,-7.82001 1.94474,-11.21026 1.09215,-1.98547 2.48953,-3.81145 4.21076,-5.26296 2.5574,-2.15665 5.89412,-3.44611 9.20312,-3.16466 3.03456,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00801 9.20311,3.16466 1.72127,1.45151 3.11861,3.27749 4.21076,5.26296 1.8649,3.39025 2.8534,7.43616 1.94477,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86782,2.54316 -4.19117,4.69517 -6.47396,6.85891 -2.9224,2.77004 -5.80706,5.5911 -8.43131,8.65508 -4.06923,4.75109 -7.49415,10.07358 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-9"
|
||||
d="m 116.96746,914.1987 c -2.65321,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16374 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21026 1.092153,-1.98547 2.489526,-3.81146 4.210761,-5.26297 2.557404,-2.15664 5.894118,-3.4461 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93639 1.95983,1.88374 3.48637,4.23196 4.45632,6.8049 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.8049 2.21443,-2.12848 5.05223,-3.67828 8.08677,-3.93639 3.309,-0.28144 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.2775 4.21076,5.26297 1.8649,3.39025 2.85339,7.43615 1.94476,11.21026 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69517 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75108 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8"
|
||||
d="m 175.33779,880.82455 c -2.65321,-5.6959 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.43128,-8.65508 -2.28281,-2.16375 -4.60614,-4.31575 -6.47399,-6.85891 -1.26187,-1.71812 -2.31489,-3.62962 -2.81656,-5.7134 -0.90863,-3.77411 0.0799,-7.82001 1.94474,-11.21027 1.09215,-1.98547 2.48953,-3.81145 4.21076,-5.26296 2.5574,-2.15664 5.89412,-3.44611 9.20312,-3.16466 3.03456,0.2581 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.8049 0.96995,-2.57293 2.4965,-4.92115 4.45633,-6.8049 2.21443,-2.12847 5.05223,-3.67828 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20311,3.16466 1.72127,1.45151 3.11861,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94477,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86782,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06923,4.75108 -7.49415,10.07357 -10.14737,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6"
|
||||
d="m 58.597133,957.64807 c -2.653214,5.69589 -6.07814,11.01839 -10.147368,15.76947 -2.624249,3.06398 -5.508873,5.88505 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.85891 -1.261866,1.71812 -2.314885,3.62962 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.81997 1.944736,11.21027 1.092153,1.9855 2.489526,3.8114 4.21076,5.263 2.557405,2.1566 5.894117,3.4461 9.203118,3.1646 3.034567,-0.2581 5.872369,-1.8079 8.086801,-3.9364 1.959831,-1.8837 3.486372,-4.2319 4.456324,-6.8049 0.969951,2.573 2.496492,4.9212 4.456323,6.8049 2.214432,2.1285 5.052234,3.6783 8.08677,3.9364 3.309001,0.2815 6.645713,-1.008 9.203118,-3.1646 1.721265,-1.4516 3.118607,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08378 -1.554722,-3.99528 -2.816588,-5.7134 -1.867819,-2.54316 -4.191178,-4.69517 -6.47396,-6.85891 -2.922407,-2.77003 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75108 -7.494154,-10.07358 -10.147368,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3-5"
|
||||
d="m 58.597133,890.89976 c -2.653214,5.6959 -6.07814,11.01839 -10.147368,15.76948 -2.624249,3.06398 -5.508873,5.88504 -8.43128,8.65508 -2.282814,2.16374 -4.606141,4.31575 -6.473992,6.8589 -1.261866,1.71813 -2.314885,3.62963 -2.816556,5.7134 -0.908632,3.77411 0.07987,7.82001 1.944736,11.21027 1.092153,1.98547 2.489526,3.81145 4.21076,5.26296 2.557405,2.15665 5.894117,3.44611 9.203118,3.16466 3.034567,-0.2581 5.872369,-1.80791 8.086801,-3.93638 1.959831,-1.88374 3.486372,-4.23197 4.456324,-6.8049 0.969951,2.57293 2.496492,4.92116 4.456323,6.8049 2.214432,2.12847 5.052234,3.67828 8.08677,3.93638 3.309001,0.28145 6.645713,-1.00801 9.203118,-3.16466 1.721265,-1.45151 3.118607,-3.27749 4.21076,-5.26296 1.8649,-3.39026 2.853399,-7.43616 1.944767,-11.21027 -0.501671,-2.08377 -1.554722,-3.99527 -2.816588,-5.7134 -1.867819,-2.54315 -4.191178,-4.69516 -6.47396,-6.8589 -2.922407,-2.77004 -5.807063,-5.5911 -8.431311,-8.65508 -4.069228,-4.75109 -7.494154,-10.07358 -10.147368,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
inkscape:transform-center-y="-71.513389"
|
||||
inkscape:transform-center-x="78.569004"
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-1-0"
|
||||
d="m 175.33779,957.64807 c -2.65321,5.69589 -6.07814,11.01839 -10.14737,15.76947 -2.62425,3.06398 -5.50887,5.88505 -8.43128,8.65508 -2.28281,2.16375 -4.60614,4.31575 -6.47399,6.85891 -1.26187,1.71812 -2.31489,3.62962 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.81997 1.94474,11.21027 1.09215,1.9855 2.48953,3.8114 4.21076,5.263 2.5574,2.1566 5.89412,3.4461 9.20312,3.1646 3.03456,-0.2581 5.87237,-1.8079 8.0868,-3.9364 1.95983,-1.8837 3.48637,-4.2319 4.45632,-6.8049 0.96995,2.573 2.4965,4.9212 4.45633,6.8049 2.21443,2.1285 5.05223,3.6783 8.08677,3.9364 3.309,0.2815 6.64571,-1.008 9.20311,-3.1646 1.72127,-1.4516 3.11861,-3.2775 4.21076,-5.263 1.8649,-3.3903 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08378 -1.55472,-3.99528 -2.81659,-5.7134 -1.86782,-2.54316 -4.19117,-4.69516 -6.47396,-6.85891 -2.9224,-2.77003 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75108 -7.49415,-10.07358 -10.14737,-15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-8-8"
|
||||
d="m 175.33779,890.89976 c -2.65321,5.6959 -6.07814,11.01839 -10.14737,15.76948 -2.62425,3.06398 -5.50887,5.88504 -8.43128,8.65508 -2.28281,2.16374 -4.60614,4.31575 -6.47399,6.8589 -1.26187,1.71813 -2.31489,3.62963 -2.81656,5.7134 -0.90863,3.77411 0.0799,7.82001 1.94474,11.21027 1.09215,1.98547 2.48953,3.81145 4.21076,5.26296 2.5574,2.15665 5.89412,3.44611 9.20312,3.16466 3.03456,-0.2581 5.87237,-1.80791 8.0868,-3.93638 1.95983,-1.88374 3.48637,-4.23197 4.45632,-6.8049 0.96995,2.57293 2.4965,4.92116 4.45633,6.8049 2.21443,2.12847 5.05223,3.67828 8.08677,3.93638 3.309,0.28145 6.64571,-1.00801 9.20311,-3.16466 1.72127,-1.45151 3.11861,-3.27749 4.21076,-5.26296 1.8649,-3.39026 2.8534,-7.43616 1.94477,-11.21027 -0.50167,-2.08377 -1.55472,-3.99527 -2.81659,-5.7134 -1.86782,-2.54315 -4.19117,-4.69516 -6.47396,-6.8589 -2.9224,-2.77004 -5.80706,-5.5911 -8.43131,-8.65508 -4.06923,-4.75109 -7.49415,-10.07358 -10.14737,-15.76948"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194721,780.70209 c -0.884405,-1.89863 -2.026047,-3.67279 -3.382454,-5.25649 -0.874748,-1.02132 -1.83629,-1.96168 -2.810428,-2.88502 -0.760935,-0.72125 -1.5353778,-1.43859 -2.1579946,-2.28631 -0.4206242,-0.5727 -0.7716307,-1.20987 -0.9388523,-1.90447 -0.3028792,-1.25803 0.026612,-2.60666 0.6482433,-3.73675 0.364052,-0.66182 0.8298441,-1.27049 1.4035868,-1.75432 0.8524708,-0.71888 1.9647078,-1.1487 3.0677058,-1.05489 1.011523,0.086 1.957455,0.60264 2.695602,1.31213 0.653276,0.62792 1.162121,1.41066 1.48544,2.2683 0.323318,-0.85764 0.832163,-1.64038 1.48544,-2.2683 0.738146,-0.70949 1.684078,-1.22609 2.695592,-1.31213 1.102998,-0.0938 2.215235,0.33601 3.067703,1.05489 0.573755,0.48383 1.039537,1.0925 1.403586,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73675 -0.167221,0.6946 -0.518241,1.33177 -0.938861,1.90447 -0.622608,0.84772 -1.39706,1.56506 -2.157986,2.28631 -0.974135,0.92334 -1.935689,1.8637 -2.810437,2.88502 -1.356411,1.5837 -2.498053,3.35786 -3.382457,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.99079139,1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path895"
|
||||
style="font-size:39.19484329px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.867551,734.10756 q 0,5.99023 -2.12433,9.7413 -2.660197,4.70797 -8.19111,4.70797 -3.23434,0 -5.339532,-1.28225 -2.5453681,-1.56932 -2.5453681,-4.63142 0,-0.66983 0.9377672,-0.66983 h 2.8324399 q 0.555005,0 0.937767,0.63155 0.574143,0.93777 0.880353,1.2057 0.784663,0.63156 2.296573,0.63156 2.545368,0 3.961588,-2.37312 1.11001,-1.91381 1.243977,-4.70798 -2.239158,1.77985 -5.35867,1.77985 -3.961588,0 -6.315575,-2.79417 -2.2200206,-2.62192 -2.2200206,-6.66006 0,-4.24866 2.4305396,-6.71747 2.43054,-2.48796 6.660061,-2.48796 9.91354,0 9.91354,13.62633 z m -5.224704,-4.30607 q 0,-2.08605 -1.129148,-3.54055 -1.243977,-1.6076 -3.253478,-1.6076 -2.066916,0 -3.291754,1.56932 -1.110011,1.43536 -1.110011,3.57883 0,2.18174 1.090872,3.59796 1.186563,1.55019 3.310893,1.55019 2.105192,0 3.291754,-1.56932 1.090872,-1.41622 1.090872,-3.57883 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.99079138,-1.0092942)"
|
||||
aria-label="9">
|
||||
<path
|
||||
id="path898"
|
||||
style="font-size:39.19484329px;line-height:1.25;stroke-width:1"
|
||||
d="m -209.30728,-1021.3016 q 0,5.9902 -2.12433,9.7413 -2.6602,4.708 -8.19111,4.708 -3.23434,0 -5.33953,-1.2823 -2.54537,-1.5693 -2.54537,-4.6314 0,-0.6699 0.93777,-0.6699 h 2.83244 q 0.555,0 0.93776,0.6316 0.57415,0.9378 0.88036,1.2057 0.78466,0.6316 2.29657,0.6316 2.54537,0 3.96159,-2.3732 1.11001,-1.9138 1.24397,-4.7079 -2.23916,1.7798 -5.35867,1.7798 -3.96158,0 -6.31557,-2.7942 -2.22002,-2.6219 -2.22002,-6.66 0,-4.2487 2.43054,-6.7175 2.43054,-2.4879 6.66006,-2.4879 9.91354,0 9.91354,13.6263 z m -5.22471,-4.3061 q 0,-2.086 -1.12914,-3.5405 -1.24398,-1.6076 -3.25348,-1.6076 -2.06692,0 -3.29176,1.5693 -1.11001,1.4353 -1.11001,3.5788 0,2.1818 1.09088,3.598 1.18656,1.5502 3.31089,1.5502 2.10519,0 3.29175,-1.5694 1.09087,-1.4162 1.09087,-3.5788 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
177
img/playing_cards/fronts/hearts_ace.svg
Normal file
|
@ -0,0 +1,177 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="hearts_ace.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\hearts_ace.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title914">Ace of Hearts Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="37.360533"
|
||||
inkscape:cy="153.96129"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="425"
|
||||
inkscape:window-y="14"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="-1.0184364e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ace of Hearts Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ace; hearts; playing; card; white; red;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An ace of hearts playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g912">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-0"
|
||||
d="m 17.194709,780.70209 c -0.884404,-1.89864 -2.026046,-3.67279 -3.382435,-5.25649 -0.87477,-1.02134 -1.836311,-1.96168 -2.810437,-2.88504 -0.760948,-0.72123 -1.5353906,-1.43858 -2.1580074,-2.28628 -0.4206116,-0.57272 -0.7716181,-1.20988 -0.9388522,-1.90447 -0.3028667,-1.25805 0.026675,-2.60668 0.6482558,-3.73677 0.3640614,-0.66182 0.8298315,-1.27049 1.4035868,-1.75432 0.852458,-0.71887 1.964695,-1.1487 3.067706,-1.05487 1.011533,0.086 1.957446,0.60262 2.695611,1.3121 0.653277,0.62794 1.162103,1.41066 1.48543,2.26831 0.323328,-0.85765 0.832154,-1.64037 1.485431,-2.26831 0.738165,-0.70948 1.684078,-1.22609 2.695611,-1.3121 1.102986,-0.0938 2.215223,0.336 3.06769,1.05487 0.573755,0.48383 1.039538,1.0925 1.403587,1.75432 0.621635,1.13009 0.951135,2.47872 0.648256,3.73677 -0.167222,0.69459 -0.518241,1.33175 -0.938862,1.90447 -0.622607,0.8477 -1.397059,1.56505 -2.157985,2.28628 -0.974135,0.92336 -1.935695,1.8637 -2.810434,2.88504 -1.35642,1.5837 -2.498062,3.35785 -3.382467,5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-6-6"
|
||||
d="m 216.78358,991.02223 c -0.88441,1.89861 -2.02605,3.67279 -3.38244,5.25649 -0.87477,1.02131 -1.83631,1.96168 -2.81044,2.88501 -0.76095,0.72126 -1.53539,1.43857 -2.158,2.28627 -0.42062,0.5728 -0.77162,1.2099 -0.93886,1.9045 -0.30286,1.258 0.0267,2.6067 0.64826,3.7368 0.36406,0.6618 0.82983,1.2704 1.40359,1.7543 0.85245,0.7189 1.96469,1.1487 3.0677,1.0549 1.01153,-0.086 1.95745,-0.6027 2.69561,-1.3122 0.65328,-0.6279 1.16211,-1.4106 1.48543,-2.2683 0.32333,0.8577 0.83216,1.6404 1.48543,2.2683 0.73817,0.7095 1.68408,1.2261 2.69561,1.3122 1.10298,0.094 2.21522,-0.336 3.06771,-1.0549 0.57376,-0.4839 1.03953,-1.0925 1.40359,-1.7543 0.62161,-1.1301 0.95112,-2.4788 0.64825,-3.7368 -0.16723,-0.6946 -0.51824,-1.3317 -0.93888,-1.9045 -0.62259,-0.8477 -1.39706,-1.56501 -2.15798,-2.28627 -0.97412,-0.92333 -1.93569,-1.8637 -2.81043,-2.88501 -1.35642,-1.5837 -2.49807,-3.35788 -3.38247,-5.25649"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssscssssssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3940-9-3"
|
||||
d="m 116.96746,914.1987 c -2.65321,-5.69589 -6.07814,-11.01839 -10.14737,-15.76947 -2.62425,-3.06398 -5.50887,-5.88505 -8.431277,-8.65508 -2.282813,-2.16375 -4.606141,-4.31575 -6.473991,-6.85891 -1.261866,-1.71812 -2.314886,-3.62962 -2.816557,-5.7134 -0.908631,-3.77411 0.07987,-7.82001 1.944736,-11.21027 1.092153,-1.98547 2.489526,-3.81145 4.210761,-5.26296 2.557404,-2.15664 5.894118,-3.44611 9.203118,-3.16466 3.03457,0.25811 5.87237,1.80791 8.0868,3.93638 1.95983,1.88375 3.48637,4.23197 4.45632,6.80491 0.96996,-2.57294 2.4965,-4.92116 4.45633,-6.80491 2.21443,-2.12847 5.05223,-3.67827 8.08677,-3.93638 3.309,-0.28145 6.64571,1.00802 9.20312,3.16466 1.72126,1.45151 3.1186,3.27749 4.21076,5.26296 1.8649,3.39026 2.8534,7.43616 1.94476,11.21027 -0.50167,2.08378 -1.55472,3.99528 -2.81659,5.7134 -1.86781,2.54316 -4.19117,4.69516 -6.47396,6.85891 -2.9224,2.77003 -5.80706,5.5911 -8.43131,8.65508 -4.06922,4.75108 -7.49415,10.07358 -10.14736,15.76947"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.83054504,1.2040286)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path895"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="M 32.051408,627.48846 H 27.39565 l -1.839905,-4.84774 h -9.5995 l -1.919901,4.84774 H 9.3805865 l 9.0715285,-23.53477 h 4.543764 z m -8.175575,-9.21552 -3.119838,-8.07958 -3.135837,8.07958 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.8305451,-1.2040285)"
|
||||
aria-label="A">
|
||||
<path
|
||||
id="path898"
|
||||
style="font-size:32.76629639px;line-height:1.25;stroke-width:1"
|
||||
d="m -249.69128,-844.00842 h -4.65575 l -1.83991,-4.84775 h -9.5995 l -1.9199,4.84775 h -4.65576 l 9.07153,-23.53478 h 4.54376 z m -8.17557,-9.21552 -3.11984,-8.07958 -3.13584,8.07958 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
228
img/playing_cards/fronts/hearts_jack.svg
Normal file
After Width: | Height: | Size: 117 KiB |
215
img/playing_cards/fronts/hearts_king.svg
Normal file
After Width: | Height: | Size: 126 KiB |
234
img/playing_cards/fronts/hearts_queen.svg
Normal file
After Width: | Height: | Size: 114 KiB |
1034
img/playing_cards/fronts/joker_black.svg
Normal file
After Width: | Height: | Size: 81 KiB |
898
img/playing_cards/fronts/joker_red.svg
Normal file
|
@ -0,0 +1,898 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234.00009"
|
||||
height="333.00012"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="joker_red.svg"
|
||||
inkscape:export-filename="E:\DAN\OneDrive\projects\Playing_Cards\fronts\png-096-dpi\joker_red.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title1406">Red Joker Playing Card</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<filter
|
||||
id="filter4594-85"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4596-7"
|
||||
stdDeviation="0.93967823" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4594-8-6"
|
||||
style="color-interpolation-filters:sRGB">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4596-1-1"
|
||||
stdDeviation="0.93967823" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="88.906285"
|
||||
inkscape:cy="170.17717"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="448"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:snap-to-guides="false"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="4.7236681e-05"
|
||||
originy="5.2403288e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Red Joker Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>red; joker; playing; card;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A red joker playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(4.7236681e-5,-719.36211)">
|
||||
<g
|
||||
id="g11669">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.756;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348586,0,0,0.07370835,-248.01734,933.60069)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348586,0,0,0.07370835,-248.01731,933.60069)" />
|
||||
<g
|
||||
transform="matrix(0.07348586,0,0,0.07370835,-248.01734,933.60069)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18133;stroke-opacity:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.1356171,0.88057847)"
|
||||
aria-label="J">
|
||||
<path
|
||||
id="path1771"
|
||||
style="font-size:43.7026px;line-height:1.25;fill:#ff0000;stroke-width:1"
|
||||
d="m 23.441015,846.62242 q 0,3.88373 -0.405444,5.63354 -0.704192,3.0515 -2.987482,4.5239 -1.813829,1.19499 -4.353189,1.19499 -5.185417,0 -8.8344132,-4.54524 l 4.3105102,-4.0331 q 2.411326,2.73141 4.374528,2.73141 1.344368,0 1.728473,-1.66445 0.170713,-0.72553 0.170713,-2.71008 V 825.7954 h 5.996304 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3995-4"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.81968001,1.2199883)"
|
||||
aria-label="O">
|
||||
<path
|
||||
id="path1774"
|
||||
style="font-weight:bold;font-size:30.7888px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m 32.762523,636.12238 q 0,4.82579 -3.292357,8.19331 -3.292356,3.35249 -8.118139,3.35249 -4.885918,0 -8.223375,-3.36752 -3.3374572,-3.36753 -3.3374572,-8.25344 0,-3.15706 1.5183932,-5.818 1.518392,-2.66095 4.239472,-4.23948 2.67598,-1.54846 5.7729,-1.54846 4.810749,0 8.148206,3.44269 3.292357,3.41263 3.292357,8.23841 z m -4.209406,-0.0301 q 0,-3.12699 -2.059602,-5.30686 -2.104703,-2.22497 -5.216656,-2.22497 -3.187122,0 -5.23169,2.20993 -2.014501,2.14981 -2.014501,5.35196 0,3.6682 2.630878,5.80297 2.044569,1.66873 4.690481,1.66873 3.081886,0 5.171555,-2.22497 2.029535,-2.16484 2.029535,-5.27679 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3999-9"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.95622314,1.045781)"
|
||||
aria-label="K">
|
||||
<path
|
||||
id="path1777"
|
||||
style="font-weight:bold;font-size:37.7245px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="M 27.838832,788.6748 H 21.723338 L 13.360585,776.64644 V 788.6748 H 8.147679 v -27.09605 h 5.212906 v 9.3206 l 7.349644,-9.3206 h 6.207595 l -9.467963,12.08362 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text4003-8"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.1032918,0.90637857)"
|
||||
aria-label="E">
|
||||
<path
|
||||
id="path1780"
|
||||
style="font-weight:bold;font-size:43.5266px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="M 24.127924,948.18518 H 7.0615949 V 916.92171 H 24.127924 v 5.82338 H 12.969988 v 5.65335 h 11.157936 v 5.71711 H 12.969988 v 8.225 h 11.157936 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text4007-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0181043,0.98221762)"
|
||||
aria-label="R">
|
||||
<path
|
||||
id="path1783"
|
||||
style="font-weight:bold;font-size:40.1658px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m 26.146769,910.23437 h -6.001335 l -6.491641,-12.2184 h -0.509918 v 12.2184 H 7.652457 v -28.84955 h 5.824826 q 3.843993,0 5.648316,0.4903 2.922219,0.76488 4.432359,3.19679 1.235569,1.98084 1.235569,4.68732 0,5.68754 -5.471806,7.64876 z m -6.668151,-20.53398 q 0,-1.98083 -1.804323,-2.64764 -0.823712,-0.29419 -3.02028,-0.29419 h -1.51014 v 5.90328 h 1.725875 q 2.176955,0 3.137953,-0.43147 1.470915,-0.66682 1.470915,-2.52998 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-0-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.1356166,-0.88057892)"
|
||||
aria-label="J">
|
||||
<path
|
||||
id="path1798"
|
||||
style="font-size:43.7026px;line-height:1.25;fill:#ff0000;stroke-width:1"
|
||||
d="m -182.61433,-1165.3776 q 0,3.8837 -0.40544,5.6336 -0.7042,3.0515 -2.98748,4.5239 -1.81383,1.195 -4.35319,1.195 -5.18541,0 -8.83441,-4.5453 l 4.31051,-4.0331 q 2.41132,2.7314 4.37452,2.7314 1.34437,0 1.72848,-1.6644 0.17071,-0.7256 0.17071,-2.7101 v -21.958 h 5.9963 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3995-4-1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.81968001,-1.2199883)"
|
||||
aria-label="O">
|
||||
<path
|
||||
id="path1795"
|
||||
style="font-weight:bold;font-size:30.7888px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m -253.00104,-816.12463 q 0,4.82579 -3.29235,8.19331 -3.29236,3.35249 -8.11814,3.35249 -4.88592,0 -8.22338,-3.36752 -3.33745,-3.36753 -3.33745,-8.25344 0,-3.15706 1.51839,-5.818 1.51839,-2.66095 4.23947,-4.23948 2.67598,-1.54846 5.7729,-1.54846 4.81075,0 8.14821,3.4427 3.29235,3.41262 3.29235,8.2384 z m -4.2094,-0.0301 q 0,-3.12699 -2.0596,-5.30686 -2.10471,-2.22497 -5.21666,-2.22497 -3.18712,0 -5.23169,2.20994 -2.0145,2.1498 -2.0145,5.35195 0,3.6682 2.63088,5.80297 2.04457,1.66873 4.69048,1.66873 3.08188,0 5.17155,-2.22497 2.02954,-2.16484 2.02954,-5.27679 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3999-9-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.95622269,-1.0457815)"
|
||||
aria-label="K">
|
||||
<path
|
||||
id="path1792"
|
||||
style="font-weight:bold;font-size:37.7245px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m -216.87404,-905.48865 h -6.11549 l -8.36275,-12.02836 v 12.02836 h -5.2129 v -27.09604 h 5.2129 v 9.32059 l 7.34964,-9.32059 h 6.20759 l -9.46796,12.08362 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text4003-8-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.1032911,-0.90637907)"
|
||||
aria-label="E">
|
||||
<path
|
||||
id="path1789"
|
||||
style="font-weight:bold;font-size:43.5266px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m -187.96477,-1006.5432 h -17.06632 v -31.2635 h 17.06632 v 5.8234 h -11.15793 v 5.6534 h 11.15793 v 5.7171 h -11.15793 v 8.225 h 11.15793 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text4007-2-1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0181038,-0.98221809)"
|
||||
aria-label="R">
|
||||
<path
|
||||
id="path1786"
|
||||
style="font-weight:bold;font-size:40.1658px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';fill:#ff0000;stroke-width:1"
|
||||
d="m -203.69227,-893.56549 h -6.00133 l -6.49164,-12.2184 h -0.50991 v 12.2184 h -5.49142 v -28.84954 h 5.82482 q 3.84399,0 5.64832,0.4903 2.92221,0.76488 4.43235,3.19679 1.23557,1.98083 1.23557,4.68732 0,5.68753 -5.4718,7.64875 z m -6.66814,-20.53397 q 0,-1.98083 -1.80433,-2.64765 -0.82371,-0.29418 -3.02027,-0.29418 h -1.51014 v 5.90327 h 1.72587 q 2.17695,0 3.13795,-0.43147 1.47092,-0.66681 1.47092,-2.52997 z" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 164.77006,822.39168 c -1.25964,-0.8637 -1.00255,-2.81514 -0.97441,-4.26995 0.0172,-0.88899 0.19311,-1.83145 0.696,-2.58777 0.2249,-0.33825 0.55611,-0.69295 0.97441,-0.77635 0.80392,-0.16028 1.78503,0.10653 2.3664,0.64694 0.58141,0.54043 0.67164,1.43569 0.696,2.19961 0.0184,0.57517 -0.31976,1.11386 -0.41759,1.68208 -0.16202,0.94079 0.44639,2.17287 -0.2784,2.84655 -0.72481,0.67371 -2.23755,0.82435 -3.06241,0.25878 z"
|
||||
id="path15686-8" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 129.06393,880.38348 -2.2911,-6.21835 -6.02339,0.45667 2.06301,4.18735 z"
|
||||
id="path3384-9" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 81.462246,993.42167 c 0.582266,1.41221 1.451786,2.27605 0.909824,5.83396 -0.823997,1.66767 -5.319868,4.28627 -5.389244,6.19407 0.314839,1.7806 -1.165314,3.5887 7.941798,5.2344 l 23.233736,3.2607 c 11.06496,-0.3944 8.80122,-1.753 11.03651,-4.5598 0.73462,-2.3144 0.57049,-7.6447 -0.32983,-8.8149 -1.94491,-4.1812 -4.77771,-4.03375 -5.11719,-2.63049 -1.43674,2.47669 -0.73033,1.12796 -0.89965,4.33629 1.31034,-2.71199 3.56122,-2.47296 2.4762,-3.4265 1.96487,0.3637 2.09201,2.5387 0.62148,5.7557 -1.4431,3.0957 -6.07055,1.8262 -7.9227,2.2993 l -6.47863,-2.0253 -8.296095,-5.03551 c -2.08098,-3.84209 -0.264373,-4.6797 0.34217,-6.45021 z"
|
||||
id="path3958-2" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 93.813816,993.45066 c -2.126503,0.50054 -3.810782,-0.007 -5.939197,0.48949 l -1.275304,2.72366 z m -12.576851,-0.14289 c 2.044888,1.56836 1.544005,0.68495 3.356671,2.41521 l 2.577655,-2.51509 c -1.996714,0.077 -3.951411,0.70096 -5.93452,0.0999 z"
|
||||
id="path3249-7" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 133.90478,987.78081 c 0.68391,1.32265 1.59876,2.09375 1.37909,5.57456 -0.65414,1.67364 -4.77771,4.53878 -4.68183,6.38863 0.45685,1.6987 -0.81982,3.5567 8.1285,4.4746 l 22.7477,1.4355 c 10.66663,-1.1995 8.36118,-2.346 10.2831,-5.2257 0.51238,-2.29246 -0.10248,-7.43488 -1.07329,-8.50002 -3.3953,-2.94628 -5.77004,-3.8323 -5.97817,-2.45013 -1.17751,2.50136 -0.95367,0.23262 -0.84286,3.34792 1.03509,-2.71953 1.19076,-1.4405 1.88777,-2.51168 1.93127,0.20645 3.60246,2.51223 2.45566,5.73216 -1.13062,3.10044 -5.71431,2.2149 -7.46512,2.80941 l -6.43848,-1.47966 -8.45395,-4.25619 c -2.34122,-3.56175 -0.65612,-4.50617 -0.22109,-6.26327 z"
|
||||
id="path3958-5-9" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 145.22347,986.93306 c -1.29974,0.15698 -3.00545,0.48948 -4.11199,0.53332 l -0.87295,4.33444 z m -11.17565,0.85551 c 1.9478,2.72243 4.17279,4.07576 5.46681,4.01019 l -1.93942,-4.30111 c 0,0 -2.68722,0.55195 -3.52751,0.29095 z"
|
||||
id="path3249-2-5" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccscccccccccscccccccc"
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 110.29297,903.35993 -16.139279,1.8595 c -1.467417,16.84468 -4.115111,31.44534 -3.475278,44.33708 l 0.424763,3.56917 -1.131948,1.79138 c 0,0 -3.709485,4.77897 -4.625701,7.95046 -2.494051,8.6341 -0.95063,25.53458 -0.82766,32.45795 1.209628,1.45264 1.651814,2.32047 1.651814,2.32047 0.719694,-2.25453 2.270365,-3.21323 2.270365,-3.21323 0,0 2.29122,-22.67929 6.255428,-35.23957 2.078631,-6.58597 -0.343001,0.98831 3.410171,-6.10899 0.362367,-0.91164 -0.496462,-2.55566 -0.496462,-2.55566 6.362087,-15.73644 8.543497,-31.40755 12.683557,-47.16971 z m 20.03184,2.13103 -14.79343,0.84236 c 3.95335,16.51971 3.69385,19.9698 10.14239,35.17839 l 5.01079,8.89966 -0.14677,2.80999 c 0,0 0.36247,9.60975 0.54314,12.77545 0.52602,9.21775 5.93179,21.73379 5.93179,21.73379 0,0 1.52814,2.16965 2.57344,4.58551 0.98755,-1.64752 0.9103,-2.19084 2.10195,-3.48132 -1.9971,-8.70076 -4.66116,-19.92742 -4.82564,-36.33047 0,0 1.32153,-2.50401 0.68785,-4.03012 -0.21108,-0.5084 -1.35099,-1.92561 -1.35099,-1.92561 -1.62648,-14.45103 -3.03754,-24.90963 -5.8745,-41.05835 z"
|
||||
id="path3239-4" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 110.23061,903.5918 -1.90543,0.0279 -14.172543,1.86525 c -0.190805,2.50278 -0.377675,5.00323 -0.559775,7.48673 l 14.812918,-0.99804 c 0.58733,-2.79224 1.18484,-5.59013 1.82451,-8.38194 z m 20.09303,2.20345 -14.79343,0.96253 c 0.44351,2.11766 0.91247,4.22503 1.40205,6.31472 3.20373,0.51438 6.88515,0.97391 9.41588,0.8249 1.38245,-0.0814 3.3875,-0.59589 5.01975,-1.07683 -0.33756,-2.32026 -0.68154,-4.66413 -1.0446,-7.02554 z"
|
||||
id="path4269-3" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 89.058715,869.60897 c 0,0 2.809486,10.5249 4.663117,15.02309 0.478474,1.161 1.438496,2.47669 1.438496,2.47669 0,0 -1.020241,3.64247 -2.255749,5.02859 -4.234379,4.75035 -12.557363,15.32488 -11.54905,15.65239 0,0 2.857545,-0.32815 4.789402,0.52938 2.217943,0.98459 3.377875,-0.12126 5.720151,0.57111 2.898974,0.85693 5.499548,-0.17928 8.246598,-0.3221 3.68719,-0.1917 8.36975,-0.68274 12.06002,-0.55959 4.90828,0.16377 9.02924,2.18388 13.57854,1.77359 3.78588,-0.34145 9.25257,-2.69138 9.25257,-2.69138 l -0.58753,-2.06814 c 2.81838,-0.35563 3.52537,-1.03908 4.93713,-1.9777 -6.08926,-6.9509 -10.19034,-12.09507 -16.48033,-18.01851 0,0 0.90842,-2.81224 1.23274,-4.24749 1.296,-5.73433 2.83783,-17.37907 2.83783,-17.37907 z"
|
||||
id="path3231-1" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 92.995316,879.45602 c 0.933637,3.30188 -0.192556,2.26515 0.733844,4.59058 0.133207,0.33434 0.289153,0.66035 0.465924,0.98666 3.194062,0.0839 10.136546,0.11404 13.901656,-1.00756 4.39885,-1.31048 13.40432,-6.26654 13.40432,-6.26654 0.88265,1.11017 1.53488,1.95593 2.47818,2.73464 0.0348,-0.14254 0.0756,-0.31746 0.10286,-0.44239 0.58102,-2.65925 0.37496,-2.33648 0.89361,-5.81693 -21.10368,-0.78172 -31.830332,5.19923 -31.980001,5.22133 z"
|
||||
id="path4275-2" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.0942,852.3241 -0.91586,21.48273 c -1.76687,0.0562 -4.48734,-1.22853 -8.98364,-2.51683 -5.13122,-1.47025 -3.39132,-10.60243 -4.46745,-12.63053 z"
|
||||
id="path3225-3" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 151.37392,827.16667 c 4.57893,-0.81215 11.09381,1.84402 12.74952,5.15031 1.67614,3.34688 1.52647,8.56455 -0.63449,11.68495 -3.29934,4.76412 -18.48838,13.3446 -24.6174,14.64378 -4.82408,1.02274 -3.27563,-12.69031 -1.54197,-18.07575 0.94416,-2.93307 4.68144,-4.46777 7.02196,-6.70165 2.34072,-2.23388 3.65137,-6.10386 7.02196,-6.70164 z"
|
||||
id="path3223-3" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#131f67;stroke-width:2.39093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 113.34481,824.52919 c 0,0 10.15058,-3.36687 14.81526,-1.34101 6.33598,2.75163 11.41419,11.23425 12.62128,17.69425 0.9299,4.97751 -12.19021,10.70061 -12.19021,10.70061 z"
|
||||
id="path3207-4" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 157.71536,827.54345 c -2.01761,0.33063 -5.46018,4.62753 -5.46018,4.62753 0,0 0.95733,5.10938 3.0905,6.27632 2.06161,1.12802 5.06847,0.57086 7.15526,-0.51648 2.22609,-1.15995 3.8162,-3.99099 3.8369,-6.28501 0.0267,-2.95238 -5.02326,-4.69239 -8.62233,-4.10258 z"
|
||||
id="path3227-1" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#131f67;stroke-width:0.756;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 95.236448,821.48595 c -6.569442,1.97575 -11.954789,4.27612 -16.482271,6.82411 l 5.572433,30.01683 c -8.021699,2.68102 4.442902,15.60855 3.435599,23.58655 8.499159,2.20193 12.221391,2.0961 18.208531,0.0546 5.03885,-2.33945 9.69105,-4.97605 14.77901,-7.34652 3.96037,1.71776 5.24542,4.42791 8.31441,5.7615 l 1.12057,-14.8894 c 0,0 -0.17687,-14.17461 -0.85943,-21.22695 -0.42383,-4.379 0.27218,-9.20435 -2.00587,-13.0573 -1.65513,-2.79949 -5.12343,-4.62536 -7.83422,-6.22958 -2.16085,-1.27849 -6.97558,-3.06346 -6.97558,-3.06346 z"
|
||||
id="path3199-1" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.39093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 114.45953,830.21353 -3.56044,-0.37979 -0.40489,-2.96585 c -0.59664,-2.94691 -1.02293,-0.40338 0.38651,-0.64597 l 0.77925,-2.08788 3.93192,1.93746 z"
|
||||
id="path3197-3" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 118.86384,823.02931 -3.65784,6.73317 -1.83032,0.63353 2.30326,-7.15523 z"
|
||||
id="path3195-8" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 90.278673,791.82815 c 0.26208,4.44059 -1.800508,11.9842 3.840912,12.91601 0,0 1.413981,8.98588 4.327532,11.62191 4.396133,3.97686 7.788233,5.91511 11.981683,9.41266 2.38504,1.98923 4.4277,2.61378 6.80681,2.26019 1.63852,-0.24351 4.386,-1.35421 3.93193,-2.83768 -1.61171,-5.26408 -5.63948,-9.96153 -5.82345,-15.40023 -0.10112,-2.99006 1.61288,-5.08112 1.60364,-8.07256 -0.004,-1.1582 -0.0457,-2.74492 -0.0166,-3.90295 0.0432,-1.72109 1.8253,-3.16906 1.78706,-4.89019 -0.0715,-3.21989 -5.58062,-6.0738 -5.58062,-6.0738 l -11.63089,0.49435 z"
|
||||
id="path3115-7" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 95.310503,816.33781 c -4.640121,0.96837 -6.123945,4.02686 -8.936861,7.66026 3.391385,-1.94888 5.152659,-2.99595 9.049892,-1.73949 0.379395,-3.2012 0.0797,-3.10577 -0.112736,-5.92055 z"
|
||||
id="path3082-5-4-4" />
|
||||
<path
|
||||
sodipodi:nodetypes="cscccsccccccc"
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 91.451857,803.51636 c -0.248359,-1.95217 -0.465494,6.0151 -3.647395,8.63772 -0.961272,0.79233 -3.240018,1.9121 -3.462221,3.35847 3.987268,-1.90761 6.141874,-2.52147 6.459142,-3.15116 -1.129764,1.71138 -4.530209,3.78086 -3.312356,5.60462 0,0 3.508835,-3.19076 3.162259,-1.95125 -0.358601,1.28254 1.260671,4.228 1.260671,4.228 1.016149,-1.28685 0.288333,-5.11091 0.971536,-4.46603 0.940534,0.8875 0.650475,4.48733 1.941874,4.63514 2.118087,-0.80424 1.824908,-3.49784 3.207161,-4.32284 0,0 -3.918281,-7.16321 -3.433029,-10.41404 0.145415,-0.97434 -3.03231,-1.25178 -3.147683,-2.15859 z"
|
||||
id="path3123-2" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 101.92087,788.5929 -5.754448,0.0653 -5.898663,5.43399 -0.218911,4.13337 c 0,0 0.910056,-3.12019 2.026649,-2.68297 1.104313,0.43239 3.125816,9.28948 3.125816,9.28948 0,0 1.390165,0.59767 1.016733,-0.55786 -0.468884,-1.4509 -0.433843,-4.25147 -0.433843,-4.25147 0,0 0.153555,-1.24077 0.253488,-3.13874 0.119166,-2.26359 0.413889,-6.77338 0.413889,-6.77338 l 1.20885,1.44724 2.035687,-0.97409 1.776853,0.81103 z m 14.4446,0.40996 1.42033,3.91854 0.31789,-0.63963 1.20655,2.82445 -0.7913,-4.76846 z"
|
||||
id="path3119-7" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 102.47434,795.80102 -0.57147,0.99054 c 2.64087,-0.60712 5.49253,-1.82724 7.8007,-1.629 l 0.25978,-1.69487 c -2.57672,0.35191 -3.31477,0.14566 -6.30792,1.69291 z"
|
||||
id="path3126-7" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 112.67832,793.40121 -0.49188,1.93934 c 1.25437,-0.1197 2.38831,-0.38142 4.92152,1.00608 l -0.16733,-0.76638 c -1.17264,-1.3783 -2.4587,-2.20711 -4.26205,-2.17904 z"
|
||||
id="path3128-9" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 107.95829,797.37916 c -1.19353,0.22121 -2.73523,0.47272 -3.60885,1.49347 -0.19956,0.23316 -0.35972,1.19918 -0.35972,1.19918 0,0 1.6094,0.097 2.40978,0.0326 0.57973,-0.0466 1.71608,-0.35621 1.71608,-0.35621 0,0 0.39441,-0.85555 0.21534,-1.47605 -0.0598,-0.20711 -0.14648,-0.93492 -0.37265,-0.89297 z"
|
||||
id="path3130-3" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 111.60257,795.52858 c 0,0 -1.05816,1.21813 -1.24993,2.22801 -0.46892,2.46941 1.06705,7.57513 1.06705,7.57513 0,0 1.3892,1.21737 1.81045,2.12592 0.15689,0.33838 -0.27765,0.90362 -0.67401,0.91076 -1.50663,0.0271 -3.73455,-0.25492 -3.73455,-0.25492 0,0 0.98095,1.13042 1.68319,1.35145 0.93979,0.29584 2.21155,0.42885 2.97139,-0.16422 0.77629,-0.6059 0.56796,-1.15962 0.61489,-2.10082 0.0334,-0.66998 -1.81142,-4.04968 -2.24106,-6.4042 0.44001,-0.10775 1.51442,-0.35326 2.05764,-0.82233 l -2.18735,-1.42797 z"
|
||||
id="path3138-1" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 111.21281,798.00157 c -0.25753,0.51297 -0.21978,1.62314 -0.21978,1.62314 0,0 1.20702,0.26717 1.9377,0.38758 0.3466,0.0571 1.47299,0.27286 1.47299,0.27286 0,0 -0.0528,-0.52115 -0.22017,-0.8341 -0.46495,-0.86928 -1.34515,-1.8946 -2.26206,-2.01803 -0.41868,-0.0564 -0.57673,0.30574 -0.70871,0.56858 z"
|
||||
id="path3132-9" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 110.4177,812.75114 c -1.36394,-0.2539 -4.95817,-1.88496 -5.65078,-0.76371 -0.90277,1.46137 1.57713,4.59746 2.71212,5.91149 1.11352,1.28914 3.02573,2.15262 4.75393,1.76265 0.76593,-0.1728 1.5414,-0.84291 1.65731,-1.56756 0.18416,-1.15136 -0.59392,-1.96665 -0.82411,-3.11084 -0.19621,-0.97539 0.82006,-2.20765 0.22902,-3.03396 -0.40204,-0.5621 -2.87781,0.80207 -2.87781,0.80207 z"
|
||||
id="path3134-8" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 107.72443,817.21455 c 0.002,0.8874 2.2724,2.48224 3.89112,2.25689 0.87934,-0.1224 1.73039,-0.28687 1.67282,-1.57861 -0.0162,-0.36475 0.74718,-0.58252 -0.45446,-1.07991 0,0 -0.80276,0.42352 -0.95531,0.83153 0.23041,0.267 -0.47484,0.29498 -0.93668,0.36272 -1.61092,0.2526 -3.21749,-0.79262 -3.21749,-0.79262 z"
|
||||
id="path3136-6" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 91.31544,797.62407 c 0.279164,-0.14087 0.691478,-0.002 0.929974,0.19326 0.905299,0.74008 1.233441,3.16047 1.233441,3.16047 l -0.668676,0.49685 c 0,0 -0.373486,-2.59447 -1.319659,-2.61961 -0.30705,-0.008 -0.709209,0.6047 -0.552642,0.53456 0.156599,-0.0702 -0.166349,-1.49112 0.377525,-1.76555 z"
|
||||
id="path3159-5" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:0.941176;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 86.14719,826.77902 c -2.131687,-0.73824 -6.55736,-0.98826 -8.57633,-0.0138 -2.231197,1.07698 -3.443357,3.6863 -3.942056,5.97706 -1.459233,6.70201 2.927388,13.45292 3.311148,20.28173 0.543173,9.66627 -1.443643,29.00714 -1.443643,29.00714 1.514305,3.96889 3.326312,5.52565 5.17137,6.8154 l 0.792345,-8.47252 0.458597,-22.27469 2.605249,-4.87063 12.754975,7.02046 4.695075,-2.10328 -4.503702,-3.10667 -0.189471,-1.94449 -2.291023,-1.15527 c 0,0 3.429558,-11.14477 1.458762,-15.92447 -2.053892,-4.98149 -4.923088,-7.37333 -10.301418,-9.23586 z"
|
||||
id="path3201-0" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 112.30024,831.25848 2.19893,18.4716 -0.87958,-18.4716 z"
|
||||
id="path4302-2" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 115.34429,834.36537 c -2.44038,0.0124 -4.90204,0.34696 -7.23126,0.9754 -2.47125,0.66676 -6.57256,0.86123 -6.90074,3.23351 -0.061,0.44051 0.6166,0.794 1.08287,0.89105 2.59173,0.53953 5.03573,-1.65693 7.6526,-2.0786 2.71422,-0.43736 5.48941,-0.53956 8.24308,-0.46091 1.92792,0.0551 4.28934,1.82819 5.74315,0.65002 0.3907,-0.31657 0.33053,-1.04321 0.0224,-1.43061 -1.27827,-1.60701 -4.04807,-1.49093 -6.18904,-1.67555 -0.80497,-0.0694 -1.60944,-0.10845 -2.42292,-0.10432 z m 1.00227,6.04119 c -1.65033,-0.0379 -3.321,0.19233 -4.89736,0.61343 -2.20637,0.58952 -5.44381,0.91533 -6.10758,2.95807 -0.12084,0.37182 0.20828,0.8916 0.59969,1.0276 1.76715,0.61408 3.47797,-1.42703 5.31987,-1.80609 2.03425,-0.41866 4.14239,-0.60684 6.22334,-0.50609 1.78698,0.0865 3.76175,1.83276 5.27699,0.94779 0.36185,-0.21136 0.51604,-0.80236 0.32601,-1.1582 -0.8173,-1.53053 -3.29092,-1.68382 -5.10745,-1.94713 -0.54013,-0.0783 -1.08346,-0.11678 -1.63357,-0.12941 z"
|
||||
id="path3378-6" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.756006;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="279.34872"
|
||||
y="785.841"
|
||||
width="2.0363748"
|
||||
height="68.489738"
|
||||
transform="matrix(0.98893403,0.14835591,-0.17107023,0.98525884,0,0)"
|
||||
rx="0.27058026"
|
||||
ry="2.1503823"
|
||||
id="rect10679-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 119.80317,855.62095 c 0,0 4.25543,-2.13346 6.42095,-3.57251 1.00196,-0.66586 2.77624,-1.27063 3.32159,-2.29283 0.5993,-1.12328 -0.11266,-2.12556 0.53164,-3.22735 0.42585,-0.72824 1.7222,-1.44199 2.54246,-1.9534 1.30141,-0.81142 3.86141,-1.54115 3.86141,-1.54115 0,0 0.41252,1.66889 0.0663,2.51488 -0.25442,0.62161 -1.99695,1.24004 -1.63256,1.81522 0.94217,1.48713 3.97909,0.40837 5.56815,-0.48718 1.02382,-0.57705 1.93517,-2.79905 1.93517,-2.79905 0,0 -3.37768,0.0825 -3.253,-0.66828 0.13759,-0.8286 2.52776,-1.44333 2.52776,-1.44333 0,0 3.50374,0.92561 3.97402,2.15903 0.37355,0.97971 -0.43454,1.80207 -0.44616,2.83768 -0.0109,0.97112 0.83967,1.63697 0.7729,2.50045 -0.10269,1.3282 -1.11971,2.45423 -1.76781,3.64247 -0.7591,1.39177 -1.12212,3.14895 -2.47943,4.07576 -2.72721,1.86236 -6.56594,2.26964 -9.95414,2.01014 -1.77704,-0.13611 -3.22377,-1.57647 -4.98896,-1.3512 -1.91802,0.24482 -4.57464,2.7859 -4.57464,2.7859 z"
|
||||
id="path3209-2" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 113.17721,855.96512 c 0,0 2.66905,-1.39297 4.09796,-1.88652 0.78339,-0.27058 1.63093,-0.81345 2.42815,-0.58039 3.64077,1.06427 6.43146,5.24742 6.79005,8.77938 0.0709,0.69835 -0.54669,1.38167 -1.01982,1.92815 -1.44683,1.6711 -4.56334,3.51552 -4.56334,3.51552 z"
|
||||
id="path3205-4" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 81.918269,858.09901 8.317138,16.5679 c 0,0 6.373786,3.98591 9.608425,4.32031 8.506948,0.87964 15.771338,-2.84789 21.685988,-8.5986 0.9852,-0.95786 1.56069,-3.70152 1.56069,-3.70152 0.16444,-0.39001 -1.80815,-7.853 -4.76212,-9.52642 -2.11555,-1.19846 -4.3591,-2.5119 -4.3591,-2.5119 -4.49513,-2.4175 -11.7872,1.38746 -16.691186,5.59991 L 84.52313,853.22823 Z"
|
||||
id="path3203-8" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 156.87347,825.18132 c 0,0 0.15166,1.54785 0.62604,2.15482 0.99783,1.27672 4.15837,1.28273 4.15837,1.28273 0,0 -3.72823,0.3899 -4.64285,1.57252 -0.91083,1.17777 0.53686,3.30963 1.4751,4.10837 1.57347,1.33928 3.92296,0.72581 5.60829,-0.0264 2.94103,-1.31269 6.2666,-6.96757 6.2666,-6.96757 0,0 1.77918,-4.8844 1.2129,-7.24037 -0.42363,-1.76233 -2.69595,-2.76464 -4.45304,-3.53523 -2.13051,-0.93446 -5.93179,-0.38682 -5.93179,-0.38682 0,0 -0.39105,2.08549 0.28662,2.76344 0.80794,0.80827 3.50989,0.55851 3.50989,0.55851 2.83497,0.62799 2.34216,1.89626 2.70195,3.00052 0,0 -3.07309,-1.74442 -4.80656,-2.00694 -1.27424,-0.19292 -4.62374,0.3463 -4.62374,0.3463 0,0 0.55478,1.6898 1.06256,2.36514 0.64229,0.85424 2.62724,0.75096 2.62724,0.75096 l 2.17627,1.46031 c 0,0 -2.52858,-0.74588 -3.83647,-0.76733 -1.15701,-0.019 -3.41755,0.56702 -3.41755,0.56702 z"
|
||||
id="path3221-6" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 93.860587,885.64394 c -0.465337,0.57934 -0.604365,1.72388 -0.06332,4.04642 14.542033,0.65785 25.710673,-1.05984 30.838383,-3.12425 0.25653,-1.4764 0.45692,-2.93872 -0.714,-4.05692 -3.92725,1.57806 -16.49747,3.7968 -30.061205,3.13475 z"
|
||||
id="path3235-5" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 111.60647,884.36868 c 0.14197,1.76942 0.0696,3.99642 0.76686,5.64738 0.32319,0.7653 1.35602,1.43112 2.23396,1.33109 1.61993,-0.18456 3.73003,-0.36066 5.2996,-0.79559 0.73377,-0.20334 0.87837,-1.23099 0.96337,-1.93829 0.21338,-1.7758 -0.0248,-3.48951 -0.54722,-4.77716 -0.19027,-0.46902 -0.38988,-1.12154 -0.91361,-1.24099 -2.22796,-0.50807 -5.0521,-0.15122 -7.0087,0.7002 -0.42309,0.18415 -0.82907,0.64028 -0.7943,1.07332 z"
|
||||
id="path3233-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 77.954387,827.17754 c -1.878423,11.24367 4.510718,17.06278 6.569054,26.05193 0,0 -8.292585,-16.2922 -7.313112,-24.52633 0.153489,-1.29012 0.744058,-1.52553 0.744058,-1.52553 z"
|
||||
id="path3361-9" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 78.550722,827.69923 c -0.740666,-0.0123 -1.699364,0.23819 -2.220241,0.4708 -0.879616,0.39279 -1.123999,1.73765 -1.123999,1.73765 1.928311,-1.43025 3.820529,-0.7311 5.720154,-0.33403 0,0 -0.951722,-1.41507 -1.723529,-1.75826 -0.173774,-0.0773 -0.405548,-0.11212 -0.652423,-0.11614 z m -0.317554,4.30619 c -1.023596,0.0128 -2.097857,0.48709 -2.63686,1.27004 -0.178877,0.25982 -0.183493,1.09046 0.100874,0.93145 0.682706,-0.38175 2.639939,-0.97746 4.069121,-0.57101 0.639522,0.18188 0.641471,-0.72117 0.133056,-1.12502 -0.456102,-0.36232 -1.052047,-0.51314 -1.666156,-0.50546 z m 2.364338,5.07604 c -1.364909,0.002 -3.292052,0.87733 -4.098354,1.21451 -0.465531,0.19465 0.03641,1.42272 0.537211,1.33084 1.057347,-0.19394 3.342056,-1.12278 4.524363,-1.36971 0.418525,-0.0874 -0.0096,-1.01594 -0.425115,-1.1147 -0.167517,-0.0398 -0.342844,-0.0612 -0.537832,-0.0609 z m 1.381591,3.93593 c -1.04363,0.008 -1.85114,1.11444 -3.453531,1.81344 -0.57942,0.25275 0.308023,1.22041 0.308023,1.22041 0,0 1.748668,-0.55014 3.661505,-1.57814 0.590177,-0.31715 0.370121,-1.34496 -0.304659,-1.43499 -0.07206,-0.01 -0.141771,-0.0213 -0.211338,-0.0207 z m 1.56778,4.3319 c -1.365339,0.065 -3.173407,1.54165 -3.762454,1.88083 -0.287236,0.16539 -0.139782,0.90819 0.197065,0.93275 0.843991,0.0616 2.798572,-1.31634 4.312723,-1.37257 0.573185,-0.0213 -0.174257,-1.46829 -0.747137,-1.44101 z m 0.924281,4.87751 c -0.91138,0.0732 -1.9363,0.52091 -2.679537,1.53775 -0.286118,0.39145 0.426477,1.78761 0.306341,1.32772 -0.157735,-0.60394 1.322072,-1.21556 3.547774,-1.68697 0.507859,-0.10757 0.201791,-1.03822 -0.30942,-1.131 -0.262208,-0.0476 -0.561375,-0.0719 -0.865192,-0.0475 z"
|
||||
id="path3363-0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 81.918269,858.09901 -0.458593,22.27469 c 1.972509,-3.07588 5.423931,-4.33009 8.775888,-5.70715 z"
|
||||
id="path3386-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.39093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 91.549298,793.39542"
|
||||
id="path3009-6" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 71.329714,773.60883 c -2.451761,4.76701 -0.16767,10.57888 1.180395,16.18387 1.33326,-4.59602 2.889037,-9.53294 6.87385,-11.69183 -1.986891,-3.15747 -5.302329,-3.27174 -8.05444,-4.49204 z"
|
||||
id="path3082-1" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 96.206958,782.94334 c -0.719113,-7.55846 -0.480227,-15.04628 1.340431,-22.41707 l 1.962533,-0.92496 6.631028,6.27667 c -0.0119,5.20358 -1.16235,10.33216 0.38984,15.63935 z"
|
||||
id="path3084-8" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 130.52554,761.86667 c 0.60763,6.25132 0.65215,12.07151 4.22112,18.23226 -4.47447,-2.83673 -8.53579,-6.0988 -11.52138,-10.46004 1.40705,-3.47872 4.89932,-5.05214 7.30026,-7.77222 z"
|
||||
id="path3088-93" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.756;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 105.93543,781.87277 c 3.39576,-6.73534 5.96999,-13.66196 11.27153,-19.95313 5.0751,-0.79429 8.32104,-0.25629 13.3482,-0.17137 -5.20411,6.4792 -10.51735,11.58676 -12.3317,20.0995 z"
|
||||
id="path3086-4" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 89.900603,794.27651 c 9.256856,-5.1496 18.973237,-5.85353 28.953887,-3.99933 -0.15638,-1.79815 -0.42067,-3.6258 0.21352,-5.20792 -10.4316,-3.16642 -20.944267,-3.07563 -30.683648,4.23844 1.031309,1.58364 1.403844,3.25825 1.516175,4.96881 z"
|
||||
id="path3072-4" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 97.649079,761.166 c 1.538821,5.30429 5.178771,9.29565 10.407041,12.29396 0.0699,-4.32357 -0.51698,-8.52107 2.77235,-13.46053 -2.37163,-1.63408 -4.23322,-2.00995 -7.39419,-2.24809 l -5.887748,2.77489 z"
|
||||
id="path3090-6" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 88.688443,789.18633 c 9.618943,-3.90078 19.465517,-5.04236 30.053407,-4.12504 -0.24982,-1.23653 0.18462,-2.32228 0.90896,-3.34412 -11.2614,-1.37522 -22.644021,-1.10382 -32.84761,4.61594 1.212901,0.68383 1.525958,1.77903 1.885475,2.85297 z"
|
||||
id="path3074-06" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 161.2505,817.0479 2.39112,0.12939 0.35867,-0.90573 h -2.51066 z"
|
||||
id="path15561-1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 158.85347,822.17068 1.30219,-0.27541 0.0766,-1.23936 -1.68521,0.13771 z"
|
||||
id="path15563-8" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 157.19308,826.40223 1.11515,0.51757 0.23896,-1.16451 -0.15931,-0.64694 -1.27444,0.38816 z"
|
||||
id="path15565-4" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.39093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 112.88879,1001.5877 c 0.005,0.032 0.0278,0.3183 -0.10373,0.5173 -0.13442,0.2035 0.0832,0.1626 0.0832,0.1626 0.16398,0.029 0.10448,-0.3372 0.2895,-0.536 z"
|
||||
id="path4558-9" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 77.038444,1005.7432 c 2.570212,3.1185 32.534246,9.4449 38.155786,6.2908 1.98549,-1.0918 3.45119,-3.0588 4.36105,-4.6623 l -0.38422,2.0511 c -0.76425,0.6797 -0.96797,2.5224 -2.70106,3.4384 -1.40988,0.6228 -3.85669,0.8416 -8.43484,1.0727 -5.99494,-1.0454 -13.023133,-1.8313 -18.902309,-2.6303 -5.338183,-0.7254 -9.418608,-1.5259 -11.164351,-2.899 -0.764168,-0.6741 -1.058869,-1.4586 -0.929661,-2.6613 z"
|
||||
id="path4573-6" />
|
||||
<path
|
||||
style="opacity:0.13;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:12.394;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4594-85)"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.06684425,0,0,0.05564779,132.2288,956.64921)"
|
||||
d="m -287,898.27 c 52.987,-11.463 33.102,14.3 70.046,7.1308 33.82,-15.085 28.753,-17.592 27.788,-62.464 -5.0606,-48.954 -41.301,-18.35 -52.666,15.709 -15.58,32.766 -23.246,31.868 -45.169,39.625 z"
|
||||
id="path4586-3" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 108.00117,1006.9061 c -1.69391,0.116 -2.0431,1.2116 -2.20275,2.3145 -0.16032,0.6628 -0.53362,0.9081 -0.3464,0.3106 0.19093,-1.4 0.17321,-2.6017 2.17604,-2.7508 z"
|
||||
id="path4588-7" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 101.49993,1004.8737 c -2.201026,0.2735 -2.569974,1.6217 -2.668001,2.6337 0.0077,0.446 -0.218585,0.6901 -0.274052,-0.1526 0.173664,-1.8372 1.607853,-2.4052 2.537313,-2.6662 z"
|
||||
id="path4794-8" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 115.15117,1001.3512 c 0,1.1172 -0.97433,2.0228 -2.17618,2.0228 -1.20192,0 -2.17618,-0.9056 -2.17618,-2.0228 0,-1.1172 0.97433,-2.02285 2.17618,-2.02285 1.20192,0 2.17618,0.90575 2.17618,2.02285 z"
|
||||
id="path9399-3-8-8" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 130.40471,1000.211 c 2.77725,2.8258 32.56192,6.7281 37.7746,3.2626 1.84315,-1.2027 3.10348,-3.2133 3.85272,-4.83154 l -0.19781,2.01194 c -0.68707,0.7138 -0.72675,2.5109 -2.33873,3.5249 -1.32196,0.7065 -3.69066,1.099 -8.13824,1.661 -5.93998,-0.5677 -12.86567,-0.8082 -18.67195,-1.1461 -5.27154,-0.3068 -9.32234,-0.7792 -11.14409,-1.978 -0.80389,-0.5954 -1.15919,-1.3323 -1.13694,-2.505 z"
|
||||
id="path4573-2-2" />
|
||||
<path
|
||||
style="opacity:0.13;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:12.7727;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4594-8-6)"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.06464209,-0.00494236,0.00476212,0.05381822,180.31768,949.05923)"
|
||||
d="m -287,898.27 c 52.987,-11.463 33.102,14.3 70.046,7.1308 33.82,-15.085 28.753,-17.592 27.788,-62.464 -5.0606,-48.954 -41.301,-18.35 -52.666,15.709 -15.58,32.766 -23.246,31.868 -45.169,39.625 z"
|
||||
id="path4586-4-9" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.39093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 161.18424,999.45743 c -1.62819,0.23737 -1.8721,1.32277 -1.93213,2.40117 -0.0983,0.6528 -0.43836,0.9176 -0.30842,0.326 0.0648,-1.3681 -0.0551,-2.52888 1.86899,-2.82114 z"
|
||||
id="path4588-6-1" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 154.72588,997.96842 c -2.10514,0.42728 -2.34656,1.75837 -2.35475,2.74418 0.0455,0.4307 -0.15233,0.6836 -0.27809,-0.1273 0.0107,-1.78947 1.34909,-2.44482 2.22562,-2.76599 z"
|
||||
id="path4794-6-3" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 138.89373,816.86313 c -1.93875,1.68498 -0.795,3.99679 -1.0066,6.54912 1.36546,-1.76356 2.46689,-4.22285 4.75004,-4.59819 -0.8588,-1.26446 -2.58775,-1.06357 -3.74328,-1.95104 z"
|
||||
id="path3082-2-5" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 147.35547,817.92826 c -0.59742,2.98133 -0.64595,3.60697 0.26979,6.92953 -1.85581,-1.89615 -3.87962,-3.85368 -4.76095,-6.26508 1.21669,-1.43315 2.8814,0.28816 4.49123,-0.66434 z"
|
||||
id="path3088-9-9" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 135.26894,814.93212 c -2.29383,1.37902 -1.64452,2.93071 -2.38534,5.39813 1.73499,-1.53557 3.19769,-3.07755 5.56542,-3.12725 -0.15026,-1.63538 -2.20485,-1.24212 -3.18023,-2.27095 z"
|
||||
id="path3082-5-8" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 149.64728,816.81966 c 0.64342,0.84178 2.02964,1.22794 2.86339,4.24749 -2.18396,-2.31261 -2.87423,-1.61901 -6.21126,-2.73497 1.57675,-1.04151 2.04665,-0.91587 3.34787,-1.5126 z"
|
||||
id="path3082-5-5-4" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 146.67339,815.08791 c -3.88909,1.04963 -2.90763,1.4851 -6.37378,-0.84653 -0.0676,0.55673 -4.72509,0.41693 -5.17722,0.76389 4.2488,3.97795 10.67949,5.52746 14.50969,1.81098 -0.42009,-0.43848 -0.93138,0.0511 -2.95853,-1.72831 z"
|
||||
id="path3074-0-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 148.4507,810.18514 c -0.76947,4.43149 -3.30255,7.73779 -5.6577,7.38449 -2.35515,-0.35331 -3.64066,-4.23214 -2.87115,-8.66393 0.76946,-4.4315 3.30255,-7.7378 5.6577,-7.38449 2.35515,0.3533 3.64065,4.23213 2.87115,8.66393 z"
|
||||
id="path13374-7" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 143.92556,810.1825 c -0.43423,0.21535 -0.53619,0.29424 -0.80244,0.5647 -0.0976,0.10515 -0.28943,0.35634 -0.3607,0.53347 -0.0712,0.1771 -0.14689,0.43823 -0.17119,0.57887 -0.0823,0.47663 0.029,0.80005 0.20905,0.81638 0.16218,0.007 0.39163,-0.11704 0.75956,-0.42155"
|
||||
id="path584-7-6" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#131f67;stroke-width:0.377953;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 144.2023,810.2296 c 0.3393,0.33139 0.4094,0.43609 0.57061,0.77066 0.0571,0.12836 0.15413,0.42287 0.16184,0.61184 0.008,0.18893 -0.009,0.45891 -0.0334,0.59951 -0.0832,0.47649 -0.29832,0.75096 -0.47473,0.71379 -0.15629,-0.0409 -0.33213,-0.22562 -0.57833,-0.62224"
|
||||
id="path585-6-3" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.15877,808.54857 c -0.64354,-0.80425 -0.96918,-2.08132 -0.81877,-3.3851 0.16696,-1.43655 1.21964,-2.73 2.56904,-3.35495 1.50893,-0.68321 3.81702,-0.58854 5.21424,-0.31104 0.95406,0.14376 2.99969,0.9225 3.65979,1.55441 1.16165,1.0869 1.64823,2.45527 1.44731,3.9015 -0.17865,1.45623 -1.02473,2.45886 -1.94601,3.02567"
|
||||
id="path573-6-6" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.6031,811.48312 c 0.16866,0.66404 0.35659,1.31515 0.27351,1.95727 -0.21662,0.4954 -0.2833,1.10832 -0.2289,1.6127 0.0619,0.69028 0.61711,1.58118 1.26346,1.94739 0.66692,0.3455 1.09901,0.47369 1.8905,0.59241"
|
||||
id="path613-8-1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.24621,811.86715 c 0.14106,0.5288 0.17862,0.72737 0.25664,1.24515 0.0603,0.47656 0.0633,0.76252 0.037,1.42297"
|
||||
id="path611-1-5" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.90712,804.50179 c -0.35288,0.20507 -0.37951,0.58894 -0.42177,1.16139 -0.0305,0.43522 0.1905,0.90124 0.138,1.29515 -0.0353,0.84251 -0.44153,1.62933 -0.68252,2.2862 -0.21977,0.7632 -0.0961,1.46735 0.16817,1.77239 0.26488,0.30148 0.64564,0.467 1.04429,0.64879 0.3649,0.14978 0.53452,0.34048 0.78798,0.5834 0.28446,0.39026 0.31771,0.68277 0.25008,1.02648"
|
||||
id="path580-4-4" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 147.86217,812.72215 c -0.38484,0.58101 -0.78358,1.14412 -0.92203,1.77791 0.038,0.53358 -0.10619,1.13487 -0.32854,1.59773 -0.29237,0.63713 -1.1252,1.2961 -1.86267,1.45467 -0.73743,0.15861 -1.19092,0.15392 -1.98241,0.0352"
|
||||
id="path614-9-2" />
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(0.03988828,0.00598395,-0.0064377,0.03707679,133.83462,798.78847)"
|
||||
id="g637-0-0">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 236.52,349.73 c 14.718,9.027 40.161,10.419 62.956,10.009 25.394,-0.129 47.133,-1.963 61.409,-10.597"
|
||||
id="path588-9-9" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 241.67,373.28 c 16.238,10.204 35.334,13.708 57.326,12.878 22.842,-0.556 40.351,-2.478 56.001,-13.172"
|
||||
id="path608-5-7" />
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="g625-8-3">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 229.89,385.64 c 17.367,20.948 41.608,24.585 69.173,25.315 29.519,1.077 59.166,-10.645 66.819,-25.314"
|
||||
id="path609-9-7" />
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="g615-0-2">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 241.44,354.26 -0.416,41.212"
|
||||
id="path589-0-6" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 254.97,358.63 -0.208,44.126"
|
||||
id="path592-0-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 269.96,360.5 -0.416,46.208"
|
||||
id="path593-7-1" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 283.49,361.54 -0.209,46.832"
|
||||
id="path594-2-6" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 298.68,361.96 v 46.832"
|
||||
id="path595-5-5" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 313.25,361.75 0.208,46.832"
|
||||
id="path598-5-7" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(-0.41626,-3.0518e-5)"
|
||||
d="m 326.78,360.5 0.416,46"
|
||||
id="path599-2-5" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 341.56,358 0.208,44.126"
|
||||
id="path604-1-4" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:9.70242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 355.3,352.59 0.417,41.628"
|
||||
id="path606-4-1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 147.10603,812.86707 c -0.31288,0.46072 -0.41572,0.63821 -0.66501,1.10687 -0.21857,0.43471 -0.31814,0.70531 -0.51671,1.33989"
|
||||
id="path612-6-2" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;fill-rule:evenodd;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 140.99845,807.60661 c 0.5521,-0.007 1.08218,0.0145 1.6289,0.0385 0.73154,-0.0592 0.95628,0.73997 0.66516,1.27171 -0.33017,0.46253 -0.74928,0.84837 -1.21551,1.21128 -0.35981,0.2733 -0.73143,0.27051 -1.05848,0.1104 -0.26665,-0.1138 -0.49675,-0.31202 -0.70917,-0.72396 -0.0663,-0.33728 -0.14291,-0.51772 -0.22913,-0.9371 -0.0583,-0.38356 0.22598,-0.90196 0.91824,-0.97084 z"
|
||||
id="path586-7-0" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#131f67;stroke-width:0.377953;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 149.97857,805.9908 c 0.26556,0.29785 0.16092,0.66998 0.007,1.22577 -0.11837,0.42203 -0.48583,0.79979 -0.56932,1.18904 -0.25164,0.81004 -0.13232,1.67574 -0.12589,2.36967 -0.0497,0.7887 -0.4054,1.42097 -0.7595,1.63324 -0.35346,0.20871 -0.9431,0.26082 -1.21083,0.31047 -0.31088,0.0516 -0.64186,0.17983 -0.9481,0.33879 -0.37747,0.24346 -0.52996,0.53978 -0.58211,0.8858"
|
||||
id="path581-6-0" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;fill-rule:evenodd;stroke:#131f67;stroke-width:0.377953;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 147.86217,808.63552 c -0.52174,-0.16801 -1.03217,-0.30264 -1.55925,-0.43975 -0.67437,-0.27011 -1.15814,0.42279 -1.06179,1.01264 0.15687,0.53561 0.4241,1.02441 0.74382,1.50521 0.24905,0.36464 0.60277,0.47065 0.96739,0.41431 0.29163,-0.0301 0.57713,-0.15092 0.91821,-0.47985 0.17713,-0.30075 0.31086,-0.44964 0.53467,-0.82251 0.18517,-0.34702 0.0908,-0.92225 -0.54305,-1.19005 z"
|
||||
id="path587-8-1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 132.28336,793.26898 c -1.70754,1.42166 -1.50019,3.77434 -1.6713,5.94264 1.19891,-1.49165 2.38893,-2.9961 4.41016,-3.30227 -0.43649,-1.36576 -1.59476,-1.82257 -2.62471,-2.58349 z"
|
||||
id="path3082-0-4" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 142.76797,800.09271 c 0.71974,-2.7934 1.86903,-5.44522 3.72761,-7.86387 l 1.02858,-0.0934 2.16997,3.05067 c -0.72804,1.86173 -1.9678,3.55852 -1.99282,5.64666 z"
|
||||
id="path3084-9-6" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 162.20542,796.46728 c -0.6143,2.51252 -1.40006,4.98185 -0.71833,7.82003 -1.54089,-1.65161 -3.10298,-3.75441 -3.78491,-5.81947 1.09832,-1.18548 3.08127,-1.23193 4.50332,-2.00064 z"
|
||||
id="path3088-5-0" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 147.26193,800.70498 c 2.60736,-2.42488 4.1767,-3.85694 7.60465,-5.84084 2.08789,0.2713 5.08719,0.86783 7.4164,1.56745 -3.41096,2.07694 -7.15097,2.49256 -9.29193,5.88432 z"
|
||||
id="path3086-3-7" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 138.41822,803.90038 c 4.7629,-1.04477 9.06744,-0.10897 13.10888,1.96652 0.19803,-0.79737 0.35377,-1.62125 0.86165,-2.22425 -4.04223,-2.70044 -8.6005,-4.00294 -13.89191,-2.084 0.21192,0.81631 0.1256,1.58785 -0.0785,2.34173 z"
|
||||
id="path3072-1-1" />
|
||||
<path
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 146.55646,792.38716 c -0.0477,2.08306 0.99382,3.94208 2.85891,5.63144 0.61368,-1.5423 0.92533,-3.11671 3.01972,-4.50182 -0.80907,-0.8646 -1.56645,-1.21805 -2.90646,-1.67472 l -2.93023,0.30364 z"
|
||||
id="path3090-4-7" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4519-2)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 138.4611,800.13981 c -1.20242,-2.67765 -3.82461,-4.80024 -6.24815,-6.89754 1.12816,-1.10759 2.5046,-1.22396 4.08847,-1.60171 3.5841,2.42238 5.51163,5.35899 6.89139,8.46599 z"
|
||||
id="path3080-1-7" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
style="fill:#d40000;fill-opacity:1;stroke:#d40000;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 138.64429,801.54188 c 4.73483,-0.4587 9.16058,0.30456 13.60231,2.05252 0.0747,-0.56648 0.42289,-0.98044 0.88698,-1.32979 -4.66545,-2.03191 -9.62674,-3.36742 -14.88307,-2.19686 0.42336,0.45048 0.11176,0.90688 0.10853,1.41706 z"
|
||||
id="path3074-7-7" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 120.01754,821.80839 0.55681,-2.1507 -1.9488,-0.88993 1.39199,3.04067 z"
|
||||
id="path16597-7" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 165.71123,992.86697 c 0.17496,1.0944 -0.63766,2.11333 -1.81496,2.27595 -1.17739,0.16263 -2.27358,-0.59271 -2.44853,-1.68703 -0.17497,-1.0944 0.63766,-2.11333 1.81496,-2.27595 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68703 z"
|
||||
id="path9399-4-3" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 95.571644,821.75043 c -3.936209,2.75989 -0.05212,4.89997 -0.613447,8.1595 2.804265,-2.66428 2.715165,-3.64754 7.260883,-4.88766 -1.14208,-1.19328 -4.406652,-2.55378 -6.647395,-3.27181 z"
|
||||
id="path3082-5-2-3" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 102.30674,824.87337 c -3.599884,2.9444 -0.77306,6.13647 -1.2129,10.20101 2.54678,-2.98542 2.51747,-4.84817 6.72457,-5.77201 -1.54868,-2.07625 -4.09952,-3.45256 -5.51202,-4.429 z"
|
||||
id="path3082-5-81-5" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 121.42458,825.89141 c 1.26849,2.90944 2.37755,2.04715 3.99117,5.83649 -3.62405,-1.97271 -6.71756,-2.54614 -10.57269,-3.54439 1.65329,-1.04677 5.41574,-0.53989 6.58152,-2.29203 z"
|
||||
id="path3088-9-8-9" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 74.086929,789.90998 c 0.174961,1.0944 -0.637658,2.11333 -1.814962,2.27595 -1.177383,0.16263 -2.273578,-0.59272 -2.448529,-1.68704 -0.174963,-1.09439 0.637655,-2.11332 1.814963,-2.27594 1.17738,-0.16263 2.273577,0.59271 2.448528,1.68703 z"
|
||||
id="path9399-4-2-9" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 126.58792,832.06028 c 0.17496,1.0944 -0.63766,2.11333 -1.81496,2.27595 -1.17739,0.16263 -2.27358,-0.59272 -2.44853,-1.68704 -0.17496,-1.0944 0.63766,-2.11332 1.81496,-2.27595 1.17738,-0.16262 2.27358,0.59272 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-8" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 103.70497,834.77746 c 0.17496,1.09439 -0.63766,2.11332 -1.81496,2.27594 -1.17738,0.16263 -2.273578,-0.59271 -2.448529,-1.68703 -0.174963,-1.0944 0.637659,-2.11333 1.814959,-2.27595 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-9-1" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#000000;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 97.71822,830.37925 c 0.174963,1.0944 -0.637655,2.11333 -1.814963,2.27595 -1.17738,0.16263 -2.273578,-0.59271 -2.448529,-1.68703 -0.17496,-1.0944 0.637659,-2.11333 1.814963,-2.27596 1.177383,-0.16262 2.273581,0.59272 2.448529,1.68704 z"
|
||||
id="path9399-4-2-4-0-8" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 134.90155,821.322 c 0.17496,1.09439 -0.63766,2.11332 -1.81496,2.27594 -1.17738,0.16263 -2.27358,-0.59271 -2.44853,-1.68703 -0.17496,-1.0944 0.63766,-2.11333 1.81496,-2.27595 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-2-2" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 132.93715,799.84253 c 0.17496,1.0944 -0.63766,2.11333 -1.81496,2.27595 -1.17739,0.16263 -2.27358,-0.59271 -2.44853,-1.68704 -0.17496,-1.0944 0.63766,-2.11332 1.81496,-2.27595 1.17738,-0.16262 2.27358,0.59272 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-21-6" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 151.17024,798.93681 c 0.17496,1.09439 -0.63767,2.11332 -1.81497,2.27594 -1.17738,0.16263 -2.27358,-0.59271 -2.44853,-1.68703 -0.17496,-1.0944 0.63766,-2.11333 1.81496,-2.27595 1.17739,-0.16263 2.27358,0.59271 2.44854,1.68704 z"
|
||||
id="path9399-4-2-4-5-6" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 163.7011,804.88887 c 0.17496,1.0944 -0.63766,2.11333 -1.81497,2.27595 -1.17738,0.16263 -2.27358,-0.59272 -2.44853,-1.68704 -0.17496,-1.09439 0.63766,-2.11332 1.81496,-2.27595 1.17739,-0.16262 2.27358,0.59272 2.44854,1.68704 z"
|
||||
id="path9399-4-2-4-4-0" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 154.70928,822.0973 c 0.17496,1.0944 -0.63766,2.11332 -1.81497,2.27594 -1.17738,0.16263 -2.27357,-0.59271 -2.44853,-1.68703 -0.17496,-1.0944 0.63766,-2.11333 1.81497,-2.27595 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-44-3" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 149.37733,825.19488 c 0.17496,1.0944 -0.63766,2.11332 -1.81497,2.27595 -1.17738,0.16262 -2.27357,-0.59272 -2.44853,-1.68704 -0.17496,-1.0944 0.63766,-2.11333 1.81497,-2.27595 1.17738,-0.16263 2.27357,0.59272 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-25-8" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 139.92169,824.53189 c 0.17496,1.09439 -0.63766,2.11332 -1.81496,2.27594 -1.17738,0.16263 -2.27358,-0.59271 -2.44853,-1.68703 -0.17496,-1.0944 0.63766,-2.11333 1.81496,-2.27595 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68704 z"
|
||||
id="path9399-4-2-4-25-0-0" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 87.833848,823.65152 c 0.17496,1.0944 -0.637658,2.11333 -1.814963,2.27595 -1.177383,0.16263 -2.273577,-0.59271 -2.448528,-1.68704 -0.174964,-1.09439 0.637655,-2.11332 1.814962,-2.27594 1.17738,-0.16263 2.273578,0.59271 2.448529,1.68703 z"
|
||||
id="path9399-4-2-4-0-2-1" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 110.52582,774.22354 c 0.17496,1.09439 -0.63767,2.11332 -1.81497,2.27594 -1.17738,0.16263 -2.27358,-0.59271 -2.44853,-1.68703 -0.17496,-1.0944 0.63766,-2.11333 1.81496,-2.27595 1.17739,-0.16263 2.27358,0.59271 2.44854,1.68704 z"
|
||||
id="path9399-4-2-4-0-1-2" />
|
||||
<path
|
||||
style="fill:#e2cf00;fill-opacity:1;stroke:#131f67;stroke-width:0.755906;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.941176"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 136.41773,779.91671 c 0.17496,1.0944 -0.63766,2.11333 -1.81496,2.27595 -1.17739,0.16263 -2.27358,-0.59271 -2.44854,-1.68704 -0.17496,-1.09439 0.63767,-2.11332 1.81497,-2.27594 1.17738,-0.16263 2.27358,0.59271 2.44853,1.68703 z"
|
||||
id="path9399-4-2-4-0-27-5" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4452-1"
|
||||
d="m 109.61356,830.68686 -0.80406,-7.06153"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.566929;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 95.933222,816.29825 c -0.14875,0.40462 -0.70001,2.9181 -0.0607,5.04646 0,0 2.79825,1.4918 4.256398,2.26325 3.39556,1.79659 9.40409,6.28575 9.40409,6.28575 l 1.13449,-0.62899 -0.35516,-6.63331 -1.89705,0.53303 c -4.34479,-1.00596 -8.775118,-4.32624 -12.481898,-6.86609 z"
|
||||
id="path3188"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#131f67;stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94118" />
|
||||
<path
|
||||
d="m 109.84446,822.20946 -3.07441,-0.95809 c -4.00228,-2.49787 -3.27259,-1.83567 -5.4619,-3.28775 l -2.879057,-2.78607 -2.550033,-0.39913 -0.08998,1.12705 5.60905,4.15803 6.74764,3.04019 z"
|
||||
id="path15558"
|
||||
inkscape:connector-curvature="0"
|
||||
style="stroke:#131f67;stroke-width:0.755906;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:#131f67;fill-opacity:1;stroke:#131f67;stroke-width:0.756;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 96.809183,781.42854 c -4.52498,-6.25139 -9.03501,-7.85454 -16.11104,-13.50045 -4.91378,0.33493 -5.0947,2.97005 -8.99264,5.31341 5.20411,6.4792 12.61447,6.2633 14.75146,12.67892 z"
|
||||
id="path3086-4-2"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 76 KiB |
251
img/playing_cards/fronts/spades_10.svg
Normal file
|
@ -0,0 +1,251 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_10.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_10.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title884">Ten of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.7419355"
|
||||
inkscape:cx="74.193153"
|
||||
inkscape:cy="192.37034"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="374"
|
||||
inkscape:window-y="31"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ten of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ten; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A ten of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g922">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-2"
|
||||
d="m 45.70946,880.82455 c 0,-1.66823 -0.09238,-2.87306 -0.09238,-4.54129 3.448704,0 7.185441,0 10.634123,0 0,-3.96548 0,-4.24593 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06098 -4.879854,-2.6782 -6.226348,-8.91265 -5.242485,-14.03806 0.842118,-5.7826 4.056821,-10.91787 8.250581,-14.8729 5.457325,-5.8373 12.417214,-9.77786 19.683448,-12.94846 7.417061,3.22421 14.530402,7.29372 20.056936,13.28494 4.977887,4.67794 8.294558,11.28949 8.192665,18.21177 0.107966,4.99647 -2.987068,10.27644 -8.092155,11.36671 -5.711113,1.58158 -11.491417,1.30097 -17.354233,1.05698 0,3.96547 0,4.24592 0,8.2114 3.448679,0 6.609354,0 10.058061,0 0,1.66823 0.0924,2.87306 0.0924,4.54129 -7.896862,-0.0556 -17.335875,-0.0556 -25.865261,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3216-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.72184748,1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path889"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m 23.835468,544.63039 q 0,0.35364 -0.127311,0.62241 -0.339497,0.11317 -0.735576,0.11317 H 12.533063 q -0.933616,0 -0.933616,-0.9902 0,-0.16975 0.02829,-0.53754 0.02829,-0.38193 0.02829,-0.57997 0,-0.93362 0.82045,-0.93362 h 3.522276 v -13.07061 h -4.300289 q -0.905324,0 -0.905324,-0.9902 0,-0.21219 0.04244,-0.67899 0.05658,-0.48096 0.05658,-0.72143 0,-0.48096 0.905324,-0.48096 0.254622,0 0.961907,0.0566 0.707284,0.0424 1.103364,0.0424 2.26331,0 2.744263,-1.57017 h 2.701827 v 17.41334 q 0.947761,0 2.036979,-0.0566 1.103363,-0.0707 1.315549,-0.0707 0.82045,0 1.018489,0.43852 0.155603,0.38193 0.155603,1.99454 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.69918846,1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path886"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m 38.072907,518.57679 q 0,9.66994 -6.685228,9.66994 -6.779767,0 -6.779767,-9.72396 0,-10.08862 6.914822,-10.08862 6.550173,0 6.550173,10.14264 z m -3.511433,-0.28362 q 0,-6.92833 -3.227817,-6.92833 -1.890772,0 -2.687597,2.74162 -0.499704,1.72871 -0.499704,4.30826 0,6.92833 3.187301,6.92833 1.904277,0 2.714608,-2.72811 0.513209,-1.75572 0.513209,-4.32177 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3216-7-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.72184748,-1.3853342)"
|
||||
aria-label="1">
|
||||
<path
|
||||
id="path895"
|
||||
style="font-size:28.97036934px;line-height:1.25;stroke-width:1"
|
||||
d="m -300.33276,-734.2844 q 0,0.35364 -0.12731,0.62241 -0.3395,0.11316 -0.73558,0.11316 h -10.43951 q -0.93362,0 -0.93362,-0.9902 0,-0.16974 0.0283,-0.53753 0.0283,-0.38194 0.0283,-0.57998 0,-0.93361 0.82045,-0.93361 h 3.52228 v -13.07062 h -4.30029 q -0.90532,0 -0.90532,-0.9902 0,-0.21218 0.0424,-0.67899 0.0566,-0.48095 0.0566,-0.72143 0,-0.48095 0.90532,-0.48095 0.25462,0 0.96191,0.0566 0.70728,0.0424 1.10336,0.0424 2.26331,0 2.74426,-1.57017 h 2.70183 v 17.41334 q 0.94776,0 2.03698,-0.0566 1.10336,-0.0707 1.31555,-0.0707 0.82045,0 1.01849,0.43851 0.1556,0.38194 0.1556,1.99455 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3990-14-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.69918846,-1.4302296)"
|
||||
aria-label="0">
|
||||
<path
|
||||
id="path892"
|
||||
style="font-size:27.65928841px;line-height:1.25;stroke-width:1"
|
||||
d="m -296.60082,-720.19244 q 0,9.66995 -6.68523,9.66995 -6.77977,0 -6.77977,-9.72397 0,-10.08862 6.91482,-10.08862 6.55018,0 6.55018,10.14264 z m -3.51144,-0.28361 q 0,-6.92833 -3.22781,-6.92833 -1.89078,0 -2.6876,2.74162 -0.4997,1.7287 -0.4997,4.30826 0,6.92832 3.1873,6.92832 1.90427,0 2.7146,-2.72811 0.51321,-1.75572 0.51321,-4.32176 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-1-7"
|
||||
d="m 45.70946,890.89976 c 0,1.66821 -0.09238,2.87305 -0.09238,4.54128 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24592 0,8.2114 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67821 -6.226348,8.91266 -5.242485,14.03805 0.842118,5.7826 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.77787 19.683448,12.94848 7.417061,-3.22422 14.530399,-7.29373 20.056933,-13.28496 4.977887,-4.67792 8.294558,-11.2895 8.192664,-18.21177 0.107967,-4.99645 -2.987067,-10.27643 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.30096 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.448679,0 6.609354,0 10.058058,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54128 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3"
|
||||
d="m 162.45012,880.82455 c 0,-1.66823 -0.0924,-2.87306 -0.0924,-4.54129 3.44871,0 7.18544,0 10.63412,0 0,-3.96548 0,-4.24592 0,-8.2114 -6.73179,0.2169 -14.01738,0.71685 -20.3217,-2.06098 -4.87985,-2.6782 -6.22635,-8.91265 -5.24248,-14.03806 0.84212,-5.7826 4.05682,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22421 14.53039,7.29372 20.05693,13.28494 4.97789,4.67794 8.29456,11.28949 8.19266,18.21177 0.10797,4.99647 -2.98706,10.27644 -8.09215,11.36671 -5.71111,1.58158 -11.49142,1.30098 -17.35423,1.05698 0,3.96548 0,4.24592 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87306 0.0924,4.54129 -7.89685,-0.0556 -17.33587,-0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-1"
|
||||
d="m 162.45012,814.07624 c 0,-1.66822 -0.0924,-2.87306 -0.0924,-4.54129 3.44871,0 7.18544,0 10.63412,0 0,-3.96547 0,-4.24592 0,-8.2114 -6.73179,0.21691 -14.01738,0.71686 -20.3217,-2.06097 -4.87985,-2.6782 -6.22635,-8.91265 -5.24248,-14.03806 0.84212,-5.7826 4.05682,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22421 14.53039,7.29372 20.05693,13.28494 4.97789,4.67794 8.29456,11.28949 8.19266,18.21176 0.10797,4.99647 -2.98706,10.27644 -8.09215,11.36671 -5.71111,1.58158 -11.49142,1.30098 -17.35423,1.05698 0,3.96548 0,4.24593 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.54129 -7.89685,-0.0556 -17.33587,-0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66822 -0.09238,-2.87306 -0.09238,-4.54129 3.448704,0 7.185441,0 10.634123,0 0,-3.96547 0,-4.24592 0,-8.2114 -6.731793,0.21691 -14.01738,0.71686 -20.321702,-2.06097 -4.879854,-2.6782 -6.226348,-8.91265 -5.242485,-14.03806 0.842118,-5.7826 4.056821,-10.91787 8.250581,-14.8729 5.457325,-5.8373 12.417214,-9.77786 19.683448,-12.94846 7.417061,3.22421 14.530399,7.29372 20.056933,13.28493 4.977887,4.67795 8.294558,11.2895 8.192664,18.21177 0.107967,4.99647 -2.987067,10.27644 -8.092154,11.36671 -5.711113,1.58158 -11.491414,1.30098 -17.35423,1.05698 0,3.96548 0,4.24593 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.54129 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-34"
|
||||
d="m 104.07979,847.4504 c 0,-1.66823 -0.0924,-2.87306 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96547 0,-4.24592 0,-8.2114 -6.7318,0.21691 -14.01738,0.71686 -20.321707,-2.06097 -4.879853,-2.6782 -6.226347,-8.91265 -5.242483,-14.03806 0.842117,-5.7826 4.056819,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22421 14.5304,7.29372 20.05693,13.28494 4.97789,4.67794 8.29456,11.28949 8.19267,18.21177 0.10796,4.99647 -2.98707,10.27644 -8.09216,11.36671 -5.71111,1.58158 -11.49141,1.30097 -17.35423,1.05697 0,3.96548 0,4.24593 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33588,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55607 -0.03079,-0.95768 -0.03079,-1.51376 1.149566,0 2.395148,0 3.544708,0 0,-1.32183 0,-1.41531 0,-2.73713 -2.243931,0.0723 -4.67246,0.23895 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97088 -1.7474947,-4.67935 0.2807048,-1.92753 1.3522742,-3.63929 2.7501936,-4.95763 1.819108,-1.94577 4.139071,-3.25929 6.561151,-4.31616 2.472354,1.07474 4.843466,2.43124 6.685643,4.42831 1.659299,1.55932 2.764852,3.76317 2.730888,6.07059 0.03599,1.66549 -0.995685,3.42549 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43366 -5.784745,0.35233 0,1.32182 0,1.4153 0,2.73713 1.14956,0 2.203119,0 3.352688,0 0,0.55608 0.03079,0.95769 0.03079,1.51376 -2.632285,-0.0185 -5.778625,-0.0185 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-2-4"
|
||||
d="m 104.07979,924.27392 c 0,1.66823 -0.0924,2.87304 -0.0924,4.54127 3.44871,0 7.18544,0 10.63413,0 0,3.96548 0,4.24595 0,8.21143 -6.7318,-0.21693 -14.01738,-0.71688 -20.321707,2.06095 -4.879853,2.67821 -6.226347,8.91266 -5.242483,14.03808 0.842117,5.78261 4.056819,10.91785 8.25058,14.87291 5.45732,5.83729 12.41721,9.77784 19.68345,12.94844 7.41706,-3.22422 14.5304,-7.29373 20.05692,-13.28492 4.97789,-4.67796 8.29458,-11.2895 8.19268,-18.21177 0.10796,-4.99649 -2.98708,-10.27644 -8.09216,-11.36674 -5.71111,-1.58155 -11.49141,-1.30096 -17.35423,-1.05695 0,-3.96548 0,-4.24595 0,-8.21143 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87304 0.0924,-4.54127 -7.89686,0.0556 -17.33588,0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-2"
|
||||
d="m 162.45011,957.64807 c 0,1.66823 -0.0924,2.87307 -0.0924,4.54131 3.44868,0 7.18542,0 10.6341,0 0,3.96548 0,4.24591 0,8.21139 -6.73179,-0.2169 -14.01738,-0.71685 -20.32169,2.06098 -4.87985,2.67818 -6.22636,8.91263 -5.24247,14.03805 0.8421,5.78261 4.0568,10.91788 8.25058,14.8729 5.45731,5.8373 12.41719,9.7778 19.68346,12.9485 7.41705,-3.2242 14.53038,-7.2937 20.05692,-13.285 4.97789,-4.67793 8.29455,-11.28947 8.19265,-18.21174 0.10799,-4.99649 -2.98705,-10.27644 -8.09213,-11.3667 -5.71113,-1.58159 -11.49143,-1.301 -17.35425,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.44868,0 6.60937,0 10.05805,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.89688,0.0556 -17.3359,0.0556 -25.86528,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-34-7"
|
||||
d="m 162.45009,890.89973 c 0,1.66824 -0.0923,2.87308 -0.0923,4.54131 3.44868,0 7.18542,0 10.6341,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.32169,2.06098 -4.87986,2.67818 -6.22633,8.91266 -5.24248,14.03805 0.84211,5.7826 4.05681,10.91788 8.25059,14.8729 5.45731,5.8373 12.41719,9.77787 19.68345,12.94848 7.41704,-3.22422 14.53038,-7.29373 20.05692,-13.28496 4.97789,-4.67795 8.29455,-11.2895 8.19265,-18.21177 0.10799,-4.99645 -2.98705,-10.27643 -8.09213,-11.3667 -5.71113,-1.58159 -11.49143,-1.30099 -17.35426,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44869,0 6.60938,0 10.05809,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89688,0.0556 -17.3359,0.0556 -25.86528,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
183
img/playing_cards/fronts/spades_2.svg
Normal file
|
@ -0,0 +1,183 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_2.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_2.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title898">Two of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="45.699187"
|
||||
inkscape:cy="192.88327"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="196"
|
||||
inkscape:window-y="70"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Two of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>two; spades; playing; card; black; white;</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A two of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g918">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 104.07979,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.321707,-2.06095 -4.879853,-2.67821 -6.226347,-8.91266 -5.242483,-14.03808 0.842117,-5.78261 4.056819,-10.91785 8.25058,-14.87291 5.45732,-5.83729 12.41721,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19266,18.21177 0.10797,4.99649 -2.98706,10.27644 -8.09215,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33588,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 104.07979,957.64807 c 0,1.66823 -0.0924,2.87307 -0.0924,4.54131 3.44871,0 7.18544,0 10.63413,0 0,3.96548 0,4.24591 0,8.21139 -6.7318,-0.2169 -14.01738,-0.71685 -20.321707,2.06098 -4.879853,2.67818 -6.226347,8.91263 -5.242483,14.03805 0.842117,5.78261 4.056819,10.91788 8.25058,14.8729 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.5304,-7.2937 20.05693,-13.285 4.97789,-4.67793 8.29456,-11.28947 8.19266,-18.21174 0.10797,-4.99646 -2.98706,-10.27644 -8.09215,-11.3667 -5.71111,-1.58159 -11.49141,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.44868,0 6.60935,0 10.05806,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.89686,0.0556 -17.33588,0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.98105485,1.019311)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path900"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.999715,735.55243 -0.710843,5.64831 H 7.9414512 q 0.4226631,-4.86062 3.9192398,-8.58774 l 6.224675,-5.3025 q 3.246821,-2.80495 3.246821,-5.62911 0,-1.88277 -1.07587,-2.99706 -1.056658,-1.13351 -2.920218,-1.13351 -2.151739,0 -3.208397,1.15272 -0.691631,0.76848 -1.056658,2.36307 -0.365027,1.69065 -0.576359,1.95962 -0.307391,0.0961 -0.710842,0.0961 H 9.3631362 q -0.4226631,0 -0.7300545,-0.17291 -0.1344837,-0.40345 -0.1344837,-0.90296 0,-4.0153 2.632038,-6.37837 2.516767,-2.26701 6.551278,-2.26701 3.746332,0 6.128615,1.99804 2.535979,2.11332 2.535979,5.80202 0,3.63106 -2.804946,6.64733 -0.97981,1.07587 -5.571468,4.59166 -3.342881,2.59362 -4.111359,4.66851 h 8.952773 l 0.153695,-1.72908 q 0.211332,-0.92217 1.133506,-0.92217 h 1.921196 q 1.114293,0 0.97981,1.09508 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.98105494,-1.0193109)"
|
||||
aria-label="2">
|
||||
<path
|
||||
id="path903"
|
||||
style="font-size:39.34609222px;line-height:1.25;stroke-width:1"
|
||||
d="m -211.51904,-1002.6064 -0.71085,5.64833 h -18.34742 q 0.42267,-4.86063 3.91924,-8.58773 l 6.22468,-5.3025 q 3.24682,-2.805 3.24682,-5.6291 0,-1.8828 -1.07587,-2.9971 -1.05666,-1.1335 -2.92022,-1.1335 -2.15174,0 -3.2084,1.1527 -0.69163,0.7685 -1.05665,2.3631 -0.36503,1.6907 -0.57636,1.9596 -0.30739,0.096 -0.71085,0.096 h -2.4207 q -0.42267,0 -0.73006,-0.1729 -0.13448,-0.4035 -0.13448,-0.903 0,-4.0153 2.63204,-6.3784 2.51676,-2.267 6.55128,-2.267 3.74633,0 6.12861,1.9981 2.53598,2.1133 2.53598,5.802 0,3.631 -2.80495,6.6473 -0.97981,1.0759 -5.57146,4.5917 -3.34289,2.5936 -4.11136,4.6685 h 8.95277 l 0.15369,-1.7291 q 0.21134,-0.9222 1.13351,-0.9222 h 1.9212 q 1.11429,0 0.97981,1.0951 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
189
img/playing_cards/fronts/spades_3.svg
Normal file
|
@ -0,0 +1,189 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_3.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_3.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title896">Three of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="173.50725"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="428"
|
||||
inkscape:window-y="15"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Three of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>three; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A three of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g917">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 104.07979,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.321707,-2.06095 -4.879853,-2.67821 -6.226347,-8.91266 -5.242483,-14.03808 0.842117,-5.78261 4.056819,-10.91785 8.25058,-14.87291 5.45732,-5.83729 12.41721,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19266,18.21177 0.10797,4.99649 -2.98706,10.27644 -8.09215,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33588,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3"
|
||||
d="m 104.07979,914.1987 c 0,-1.66824 -0.0924,-2.87307 -0.0924,-4.54131 3.4487,0 7.18544,0 10.63412,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.73179,0.2169 -14.01738,0.71685 -20.321703,-2.06095 -4.879857,-2.67822 -6.226351,-8.91266 -5.242487,-14.03808 0.842117,-5.78261 4.056822,-10.91785 8.250583,-14.87291 5.457327,-5.8373 12.417217,-9.77784 19.683447,-12.94845 7.41706,3.22423 14.5304,7.29373 20.05693,13.28493 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36673 -5.71111,1.58156 -11.49141,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 104.07979,957.64807 c 0,1.66823 -0.0924,2.87307 -0.0924,4.54131 3.44871,0 7.18544,0 10.63413,0 0,3.96548 0,4.24591 0,8.21139 -6.7318,-0.2169 -14.01738,-0.71685 -20.321707,2.06098 -4.879853,2.67818 -6.226347,8.91263 -5.242483,14.03805 0.842117,5.78261 4.056819,10.91788 8.25058,14.8729 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.5304,-7.2937 20.05693,-13.285 4.97789,-4.67793 8.29456,-11.28947 8.19266,-18.21174 0.10797,-4.99646 -2.98706,-10.27644 -8.09215,-11.3667 -5.71111,-1.58159 -11.49141,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.44868,0 6.60935,0 10.05806,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.89686,0.0556 -17.33588,0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0092549,0.99083001)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path901"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:1"
|
||||
d="m 26.376029,754.4354 q 0,3.97693 -2.787749,6.12135 -2.514823,1.94948 -6.589225,1.94948 -9.2794998,0 -9.2794998,-8.77264 0,-0.40939 0.1364633,-0.77979 0.2924212,-0.17545 0.6628214,-0.17545 h 2.5343171 q 0.3704,0 0.682316,0.17545 0.09747,0.27293 0.155958,0.64333 0.331411,2.41735 1.364633,3.50905 1.15019,1.20868 3.528549,1.20868 1.949475,0 3.177644,-1.05272 1.286653,-1.13069 1.286653,-3.04118 0,-4.05491 -4.425308,-4.75672 -0.545853,-0.078 -0.818779,-0.23394 -0.155958,-0.31191 -0.155958,-3.15814 0,-0.3704 0.175453,-0.70182 1.462106,-0.42888 2.924212,-0.87726 1.540085,-0.70181 1.540085,-2.94371 0,-3.39208 -3.976929,-3.39208 -1.832506,0 -2.865727,0.89676 -0.545853,0.48737 -1.130696,1.65705 -0.428884,0.89676 -0.857769,0.89676 H 9.1426718 q -0.9552426,0 -0.9552426,-0.85777 0,-3.25562 2.5538118,-5.14661 2.30038,-1.69605 5.653477,-1.69605 3.85996,0 6.296803,1.61807 2.865728,1.89099 2.865728,5.57549 0,4.44481 -4.386318,6.04338 5.205098,2.2029 5.205098,7.29103 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0092549,-0.99083001)"
|
||||
aria-label="3">
|
||||
<path
|
||||
id="path898"
|
||||
style="font-size:39.92524338px;line-height:1.25;stroke-width:1"
|
||||
d="m -205.47817,-1033.6859 q 0,3.9769 -2.78775,6.1213 -2.51482,1.9495 -6.58923,1.9495 -9.2795,0 -9.2795,-8.7726 0,-0.4094 0.13647,-0.7798 0.29242,-0.1755 0.66282,-0.1755 h 2.53432 q 0.3704,0 0.68231,0.1755 0.0975,0.2729 0.15596,0.6433 0.33141,2.4173 1.36463,3.509 1.15019,1.2087 3.52855,1.2087 1.94948,0 3.17765,-1.0527 1.28665,-1.1307 1.28665,-3.0412 0,-4.0549 -4.42531,-4.7567 -0.54585,-0.078 -0.81878,-0.2339 -0.15596,-0.3119 -0.15596,-3.1582 0,-0.3704 0.17546,-0.7018 1.4621,-0.4289 2.92421,-0.8773 1.54008,-0.7018 1.54008,-2.9437 0,-3.392 -3.97692,-3.392 -1.83251,0 -2.86573,0.8967 -0.54585,0.4874 -1.1307,1.6571 -0.42888,0.8967 -0.85777,0.8967 h -2.51482 q -0.95524,0 -0.95524,-0.8577 0,-3.2557 2.55381,-5.1467 2.30038,-1.696 5.65348,-1.696 3.85996,0 6.2968,1.6181 2.86573,1.8909 2.86573,5.5755 0,4.4448 -4.38632,6.0433 5.2051,2.2029 5.2051,7.2911 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
195
img/playing_cards/fronts/spades_4.svg
Normal file
|
@ -0,0 +1,195 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_4.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_4.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title897">Four of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="109.9177"
|
||||
inkscape:cy="166.48677"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="445"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Four of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>four; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A four of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g919">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66823 -0.09238,-2.87307 -0.09238,-4.5413 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879854,-2.67821 -6.226348,-8.91266 -5.242485,-14.03808 0.842118,-5.78261 4.056821,-10.91785 8.250581,-14.87291 5.457325,-5.83729 12.417214,-9.77784 19.683448,-12.94844 7.417061,3.22422 14.530399,7.29373 20.056933,13.28492 4.977887,4.67796 8.294558,11.2895 8.192664,18.21177 0.107967,4.99649 -2.987067,10.27644 -8.092154,11.36674 -5.711113,1.58155 -11.491414,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5"
|
||||
d="m 162.45012,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67821 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.83729 12.41722,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2-3"
|
||||
d="m 162.45012,957.64807 c 0,1.66824 -0.0924,2.87308 -0.0924,4.54131 3.44871,0 7.18544,0 10.63412,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.3217,2.06098 -4.87985,2.67818 -6.22635,8.91263 -5.24248,14.03805 0.84212,5.78261 4.05682,10.91788 8.25058,14.87289 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.53039,-7.2937 20.05693,-13.285 4.97789,-4.67792 8.29456,-11.28946 8.19266,-18.21174 0.10797,-4.99645 -2.98706,-10.27643 -8.09215,-11.3667 -5.71111,-1.58159 -11.49142,-1.30099 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89685,0.0556 -17.33587,0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-5"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.9367271,1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path899"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m 28.418244,706.77169 q 0,0.38656 -0.14726,0.75471 -0.331335,0.18407 -0.699485,0.18407 H 15.753885 q -1.362154,0 -1.362154,-1.38056 0,-0.22089 0.03682,-0.77311 0.03681,-0.55223 0.03681,-0.84675 0,-0.64426 0.276112,-0.82834 0.202483,-0.12885 0.901967,-0.12885 h 4.601875 v -2.83475 H 9.9187087 q -1.6014522,0 -1.6014522,-1.49101 0,-0.2577 0.055223,-0.93878 0.055222,-0.69949 0.055222,-1.10445 0,-0.62586 0.7178924,-1.56464 l 10.6395332,-13.9897 q 0.497003,-0.66267 1.25171,-0.66267 h 2.42979 q 0.865152,0 0.865152,0.95719 v 15.02052 q 0.66267,0 1.509415,-0.0368 0.865153,-0.0368 1.10445,-0.0368 0.994005,0 1.233302,0.497 0.239298,0.4786 0.239298,2.39298 0,0.34974 -0.05522,0.53382 -0.110445,0.42337 -0.846745,0.42337 h -3.184497 v 2.83475 q 0.681078,0 1.54623,-0.0368 0.865153,-0.0368 1.086042,-0.0368 1.049228,0 1.270118,0.53382 0.184075,0.44178 0.184075,2.55864 z m -8.099299,-19.69602 q -1.012413,1.54623 -7.473444,10.0689 h 7.399814 q 0,-0.9756 -0.03682,-3.35016 -0.05522,-2.15368 -0.03682,-3.36858 0.01841,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-28"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-0.9367271,-1.0675468)"
|
||||
aria-label="4">
|
||||
<path
|
||||
id="path902"
|
||||
style="font-size:37.69855499px;line-height:1.25;stroke-width:1"
|
||||
d="m -221.38771,-952.85044 q 0,0.38656 -0.14726,0.75471 -0.33134,0.18407 -0.69949,0.18407 h -11.81761 q -1.36215,0 -1.36215,-1.38056 0,-0.22089 0.0368,-0.77311 0.0368,-0.55223 0.0368,-0.84675 0,-0.64426 0.27611,-0.82834 0.20248,-0.12885 0.90197,-0.12885 h 4.60187 v -2.83475 h -10.32661 q -1.60145,0 -1.60145,-1.49101 0,-0.25771 0.0552,-0.93878 0.0552,-0.69949 0.0552,-1.10445 0,-0.62586 0.71789,-1.56464 l 10.63953,-13.9897 q 0.49701,-0.66267 1.25171,-0.66267 h 2.42979 q 0.86515,0 0.86515,0.95719 v 15.02052 q 0.66267,0 1.50942,-0.0368 0.86515,-0.0368 1.10445,-0.0368 0.994,0 1.2333,0.497 0.2393,0.4786 0.2393,2.39298 0,0.34974 -0.0552,0.53381 -0.11045,0.42338 -0.84675,0.42338 h -3.1845 v 2.83475 q 0.68108,0 1.54623,-0.0368 0.86516,-0.0368 1.08605,-0.0368 1.04922,0 1.27011,0.53382 0.18408,0.44178 0.18408,2.55864 z m -8.0993,-19.69602 q -1.01241,1.54623 -7.47344,10.0689 h 7.39981 q 0,-0.9756 -0.0368,-3.35017 -0.0552,-2.15367 -0.0368,-3.36857 0.0184,-1.84075 0.14726,-3.35016 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
201
img/playing_cards/fronts/spades_5.svg
Normal file
|
@ -0,0 +1,201 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_5.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_5.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title901">Five of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="58.207957"
|
||||
inkscape:cy="171.45245"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="433"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Five of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>five; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A five of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g924">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66823 -0.09238,-2.87307 -0.09238,-4.5413 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879854,-2.67821 -6.226348,-8.91266 -5.242485,-14.03808 0.842118,-5.78261 4.056821,-10.91785 8.250581,-14.87291 5.457325,-5.83729 12.417214,-9.77784 19.683448,-12.94844 7.417061,3.22422 14.530399,7.29373 20.056933,13.28492 4.977887,4.67796 8.294558,11.2895 8.192664,18.21177 0.107967,4.99649 -2.987067,10.27644 -8.092154,11.36674 -5.711113,1.58155 -11.491414,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5"
|
||||
d="m 162.45012,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67821 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.83729 12.41722,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3-1"
|
||||
d="m 104.07979,914.1987 c 0,-1.66824 -0.0924,-2.87307 -0.0924,-4.54131 3.4487,0 7.18544,0 10.63412,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.73179,0.2169 -14.01738,0.71685 -20.321703,-2.06095 -4.879857,-2.67822 -6.226351,-8.91266 -5.242487,-14.03808 0.842117,-5.78261 4.056822,-10.91785 8.250583,-14.87291 5.457327,-5.8373 12.417217,-9.77784 19.683447,-12.94845 7.41706,3.22423 14.5304,7.29373 20.05693,13.28493 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36673 -5.71111,1.58156 -11.49141,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2-3"
|
||||
d="m 162.45012,957.64807 c 0,1.66824 -0.0924,2.87308 -0.0924,4.54131 3.44871,0 7.18544,0 10.63412,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.3217,2.06098 -4.87985,2.67818 -6.22635,8.91263 -5.24248,14.03805 0.84212,5.78261 4.05682,10.91788 8.25058,14.87289 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.53039,-7.2937 20.05693,-13.285 4.97789,-4.67792 8.29456,-11.28946 8.19266,-18.21174 0.10797,-4.99645 -2.98706,-10.27643 -8.09215,-11.3667 -5.71111,-1.58159 -11.49142,-1.30099 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89685,0.0556 -17.33587,0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<g
|
||||
id="text3755-5"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99509933,1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path903"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.751238,742.30184 q 0,4.36509 -2.650231,6.93737 -2.630744,2.57228 -6.99583,2.57228 -4.189703,0 -6.625577,-2.04613 -2.6502312,-2.18254 -2.6502312,-6.2943 0,-0.66256 1.0522976,-0.66256 h 2.5527956 q 0.409227,0 0.759993,0.11692 0.116922,0.19487 0.155896,0.50667 0.331279,2.20203 1.266654,3.15689 1.052298,1.07178 3.234841,1.07178 2.182543,0 3.527145,-1.53947 1.266655,-1.46152 1.266655,-3.66355 0,-5.43687 -4.501495,-5.43687 -1.636907,0 -3.293302,1.13024 h -3.215353 q -0.448201,0 -0.857428,-0.11692 -0.1948699,-0.19487 -0.1948699,-0.4482 0,-2.76715 0.2923048,-6.97634 0.2533311,-3.50766 0.5066621,-6.99583 h 14.615243 q 0.506662,0 0.915889,0.15589 0.175383,0.38974 0.175383,2.72818 0,0.38974 -0.03897,0.64307 -0.136409,0.62359 -1.130245,0.62359 H 14.338024 q 0.05846,1.05229 -0.175383,3.21535 -0.233844,2.14357 -0.175383,3.19587 2.00716,-1.24717 4.189703,-1.24717 4.014321,0 6.35276,2.72818 2.221517,2.57228 2.221517,6.64506 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-28"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99509933,-1.0049248)"
|
||||
aria-label="5">
|
||||
<path
|
||||
id="path906"
|
||||
style="font-size:39.90935898px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -208.40118,-1020.7398 q 0,4.3651 -2.65023,6.9374 -2.63075,2.5723 -6.99583,2.5723 -4.18971,0 -6.62558,-2.0462 -2.65023,-2.1825 -2.65023,-6.2943 0,-0.6625 1.0523,-0.6625 h 2.55279 q 0.40923,0 0.76,0.1169 0.11692,0.1949 0.15589,0.5067 0.33128,2.202 1.26666,3.1569 1.05229,1.0717 3.23484,1.0717 2.18254,0 3.52714,-1.5394 1.26666,-1.4616 1.26666,-3.6636 0,-5.4369 -4.5015,-5.4369 -1.63691,0 -3.2933,1.1303 h -3.21535 q -0.4482,0 -0.85743,-0.1169 -0.19487,-0.1949 -0.19487,-0.4482 0,-2.7672 0.2923,-6.9764 0.25333,-3.5076 0.50667,-6.9958 h 14.61524 q 0.50666,0 0.91589,0.1559 0.17538,0.3897 0.17538,2.7282 0,0.3897 -0.039,0.643 -0.13641,0.6236 -1.13025,0.6236 h -10.58144 q 0.0585,1.0523 -0.17538,3.2154 -0.23384,2.1435 -0.17538,3.1958 2.00716,-1.2471 4.1897,-1.2471 4.01432,0 6.35276,2.7282 2.22152,2.5722 2.22152,6.645 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
207
img/playing_cards/fronts/spades_6.svg
Normal file
|
@ -0,0 +1,207 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_6.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_6.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title899">Six of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="74.973393"
|
||||
inkscape:cy="163.89266"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="470"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Six of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>six; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A six of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g923">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(0.99029285,1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path901"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m 26.881078,738.99851 q 0,4.24652 -2.467574,6.71409 -2.448446,2.46758 -6.694968,2.46758 -9.8511667,0 -9.8511667,-13.61948 0,-6.00634 2.1232612,-9.7364 2.6397305,-4.7056 8.1869895,-4.7056 3.213584,0 5.336845,1.31986 2.544088,1.56854 2.544088,4.59084 0,0.6695 -0.937296,0.6695 h -2.831014 q -0.554726,0 -0.937296,-0.63124 -0.554726,-0.9373 -0.87991,-1.2051 -0.784268,-0.63124 -2.295417,-0.63124 -2.544088,0 -3.959596,2.37193 -1.109451,1.91285 -1.243351,4.70561 2.238032,-1.77895 5.355974,-1.77895 3.959596,0 6.312398,2.79276 2.238033,2.63973 2.238033,6.67584 z m -4.992534,-0.11477 q 0,-2.18065 -1.090323,-3.59616 -1.205094,-1.56853 -3.328355,-1.56853 -2.104133,0 -3.290099,1.56853 -1.071194,1.41551 -1.071194,3.59616 0,2.085 1.12858,3.53876 1.224223,1.58767 3.251841,1.58767 2.065876,0 3.290099,-1.56854 1.109451,-1.43463 1.109451,-3.55789 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.99029285,-1.0098023)"
|
||||
aria-label="6">
|
||||
<path
|
||||
id="path904"
|
||||
style="font-size:39.17512512px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -209.41267,-1015.5274 q 0,4.2466 -2.46757,6.7141 -2.44845,2.4676 -6.69497,2.4676 -9.85117,0 -9.85117,-13.6195 0,-6.0063 2.12326,-9.7364 2.63973,-4.7056 8.18699,-4.7056 3.21359,0 5.33685,1.3199 2.54409,1.5685 2.54409,4.5908 0,0.6695 -0.9373,0.6695 h -2.83101 q -0.55473,0 -0.9373,-0.6312 -0.55473,-0.9373 -0.87991,-1.2051 -0.78427,-0.6313 -2.29542,-0.6313 -2.54409,0 -3.95959,2.372 -1.10945,1.9128 -1.24335,4.7056 2.23803,-1.779 5.35597,-1.779 3.9596,0 6.3124,2.7928 2.23803,2.6397 2.23803,6.6758 z m -4.99253,-0.1147 q 0,-2.1807 -1.09033,-3.5962 -1.20509,-1.5685 -3.32835,-1.5685 -2.10413,0 -3.2901,1.5685 -1.07119,1.4155 -1.07119,3.5962 0,2.085 1.12858,3.5387 1.22422,1.5877 3.25184,1.5877 2.06587,0 3.2901,-1.5685 1.10945,-1.4347 1.10945,-3.5579 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66823 -0.09238,-2.87307 -0.09238,-4.5413 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879854,-2.67821 -6.226348,-8.91266 -5.242485,-14.03808 0.842118,-5.78261 4.056821,-10.91785 8.250581,-14.87291 5.457325,-5.83729 12.417214,-9.77784 19.683448,-12.94844 7.417061,3.22422 14.530399,7.29373 20.056933,13.28492 4.977887,4.67796 8.294558,11.2895 8.192664,18.21177 0.107967,4.99649 -2.987067,10.27644 -8.092154,11.36674 -5.711113,1.58155 -11.491414,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5"
|
||||
d="m 162.45012,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67821 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.83729 12.41722,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3"
|
||||
d="m 45.709463,914.1987 c 0,-1.66824 -0.09238,-2.87307 -0.09238,-4.54131 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879857,-2.67822 -6.226351,-8.91266 -5.242488,-14.03808 0.842118,-5.78261 4.056824,-10.91785 8.250584,-14.87291 5.457325,-5.8373 12.417214,-9.77784 19.683448,-12.94845 7.417061,3.22423 14.530399,7.29373 20.056933,13.28493 4.977887,4.67795 8.294558,11.2895 8.192665,18.21177 0.107966,4.99649 -2.987068,10.27644 -8.092155,11.36673 -5.711113,1.58156 -11.491414,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.448679,0 6.609354,0 10.058058,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.896859,-0.0556 -17.335872,-0.0556 -25.865258,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3-1"
|
||||
d="m 162.45012,914.1987 c 0,-1.66824 -0.0924,-2.87307 -0.0924,-4.54131 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67822 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.8373 12.41722,-9.77784 19.68345,-12.94845 7.41706,3.22423 14.5304,7.29373 20.05693,13.28493 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36673 -5.71111,1.58156 -11.49141,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2-3"
|
||||
d="m 162.45012,957.64807 c 0,1.66824 -0.0924,2.87308 -0.0924,4.54131 3.44871,0 7.18544,0 10.63412,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.3217,2.06098 -4.87985,2.67818 -6.22635,8.91263 -5.24248,14.03805 0.84212,5.78261 4.05682,10.91788 8.25058,14.87289 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.53039,-7.2937 20.05693,-13.285 4.97789,-4.67792 8.29456,-11.28946 8.19266,-18.21174 0.10797,-4.99645 -2.98706,-10.27643 -8.09215,-11.3667 -5.71111,-1.58159 -11.49142,-1.30099 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89685,0.0556 -17.33587,0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
213
img/playing_cards/fronts/spades_7.svg
Normal file
|
@ -0,0 +1,213 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_7.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_7.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title900">Seven of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="58.992202"
|
||||
inkscape:cy="160.76129"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="418"
|
||||
inkscape:window-y="17"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Seven of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>seven; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A seven of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g925">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(1.0298762,0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path902"
|
||||
style="font-size:41.88300705px;line-height:1.25;stroke-width:1"
|
||||
d="m 25.8479,752.97249 -7.709909,24.17272 q -0.30676,0.94073 -1.554252,0.94073 h -3.026702 q -0.940731,0 -0.940731,-0.59307 0,-0.57262 3.86518,-11.57509 2.249575,-6.33971 4.4787,-12.65898 h -9.059654 q -0.06135,0.89983 -0.368113,2.61769 -0.286309,0.18406 -0.61352,0.18406 h -2.37228 q -0.981633,0 -0.981633,-0.71578 0,-0.34766 0.5930699,-6.44196 H 25.8479 Z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(-1.0298762,-0.9709905)"
|
||||
aria-label="7">
|
||||
<path
|
||||
id="path905"
|
||||
style="font-size:41.88301086px;line-height:1.25;stroke-width:1"
|
||||
d="m -201.36388,-1071.6842 -7.70991,24.1727 q -0.30676,0.9407 -1.55425,0.9407 h -3.02671 q -0.94073,0 -0.94073,-0.5931 0,-0.5726 3.86518,-11.5751 2.24958,-6.3397 4.4787,-12.6589 h -9.05965 q -0.0614,0.8998 -0.36811,2.6177 -0.28631,0.184 -0.61352,0.184 h -2.37228 q -0.98164,0 -0.98164,-0.7158 0,-0.3476 0.59307,-6.4419 h 17.68985 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66823 -0.09238,-2.87307 -0.09238,-4.5413 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879854,-2.67821 -6.226348,-8.91266 -5.242485,-14.03808 0.842118,-5.78261 4.056821,-10.91785 8.250581,-14.87291 5.457325,-5.83729 12.417214,-9.77784 19.683448,-12.94844 7.417061,3.22422 14.530399,7.29373 20.056933,13.28492 4.977887,4.67796 8.294558,11.2895 8.192664,18.21177 0.107967,4.99649 -2.987067,10.27644 -8.092154,11.36674 -5.711113,1.58155 -11.491414,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5"
|
||||
d="m 162.45012,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67821 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.83729 12.41722,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4"
|
||||
d="m 104.07979,864.13747 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.54131 3.4487,0 7.18544,0 10.63412,0 0,-3.96544 0,-4.24591 0,-8.21139 -6.73179,0.2169 -14.01738,0.71685 -20.321703,-2.06095 -4.879857,-2.67821 -6.226351,-8.91266 -5.242487,-14.03808 0.842117,-5.78261 4.056822,-10.91785 8.250583,-14.87291 5.457327,-5.8373 12.417217,-9.77784 19.683447,-12.94845 7.41706,3.22423 14.5304,7.29374 20.05693,13.28493 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87308 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3"
|
||||
d="m 45.709463,914.1987 c 0,-1.66824 -0.09238,-2.87307 -0.09238,-4.54131 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879857,-2.67822 -6.226351,-8.91266 -5.242488,-14.03808 0.842118,-5.78261 4.056824,-10.91785 8.250584,-14.87291 5.457325,-5.8373 12.417214,-9.77784 19.683448,-12.94845 7.417061,3.22423 14.530399,7.29373 20.056933,13.28493 4.977887,4.67795 8.294558,11.2895 8.192665,18.21177 0.107966,4.99649 -2.987068,10.27644 -8.092155,11.36673 -5.711113,1.58156 -11.491414,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.448679,0 6.609354,0 10.058058,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.896859,-0.0556 -17.335872,-0.0556 -25.865258,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3-1"
|
||||
d="m 162.45012,914.1987 c 0,-1.66824 -0.0924,-2.87307 -0.0924,-4.54131 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67822 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.8373 12.41722,-9.77784 19.68345,-12.94845 7.41706,3.22423 14.5304,7.29373 20.05693,13.28493 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36673 -5.71111,1.58156 -11.49141,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2-3"
|
||||
d="m 162.45012,957.64807 c 0,1.66824 -0.0924,2.87308 -0.0924,4.54131 3.44871,0 7.18544,0 10.63412,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.3217,2.06098 -4.87985,2.67818 -6.22635,8.91263 -5.24248,14.03805 0.84212,5.78261 4.05682,10.91788 8.25058,14.87289 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.53039,-7.2937 20.05693,-13.285 4.97789,-4.67792 8.29456,-11.28946 8.19266,-18.21174 0.10797,-4.99645 -2.98706,-10.27643 -8.09215,-11.3667 -5.71111,-1.58159 -11.49142,-1.30099 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89685,0.0556 -17.33587,0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
219
img/playing_cards/fronts/spades_8.svg
Normal file
|
@ -0,0 +1,219 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_8.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_8.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title904">Eight of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1916676"
|
||||
inkscape:cx="52.509196"
|
||||
inkscape:cy="169.61814"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="413"
|
||||
inkscape:window-y="12"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Eight of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eight; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An eight of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g930">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4233"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
clip-path="none"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4211"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,933.60062)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,933.60062)"
|
||||
id="g4227"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
transform="scale(0.97609542,1.02449)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path906"
|
||||
style="font-size:38.61348724px;line-height:1.25;stroke-width:1"
|
||||
d="m 27.272073,729.3654 q 0,4.09137 -2.903553,6.2219 -2.545323,1.86657 -6.768673,1.86657 -4.185641,0 -6.730964,-1.99855 -2.7904278,-2.20595 -2.7904278,-6.27847 0,-4.27991 4.5061638,-6.29731 -3.4691805,-2.20595 -3.4691805,-6.29732 0,-3.60116 2.8281365,-5.3546 2.319072,-1.43293 6.108774,-1.43293 3.450326,0 5.675127,1.67803 2.451051,1.88543 2.451051,5.24148 0,3.84627 -3.450326,6.14648 4.543872,1.92314 4.543872,6.50472 z m -5.863669,-11.93474 q 0,-3.52574 -3.770848,-3.52574 -1.715736,0 -2.733865,0.92386 -1.018129,0.905 -1.018129,2.60188 0,1.64032 1.074691,2.60189 1.01813,0.94271 2.677303,0.94271 1.621465,0 2.696156,-0.96157 1.074692,-0.96156 1.074692,-2.58303 z m 0.88615,11.76505 q 0,-1.96084 -1.338652,-3.0921 -1.263234,-1.07469 -3.261783,-1.07469 -1.960842,0 -3.224076,1.09355 -1.357505,1.15011 -1.357505,3.07324 0,2.0174 1.319797,3.1298 1.225525,1.03699 3.280638,1.03699 2.036258,0 3.261784,-1.05584 1.319797,-1.1124 1.319797,-3.11095 z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.77201176px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
|
||||
transform="scale(-0.97855251,-1.0219176)"
|
||||
aria-label="8">
|
||||
<path
|
||||
id="path909"
|
||||
style="font-size:38.71068573px;line-height:1.25;stroke-width:0.99999994"
|
||||
d="m -211.92514,-1002.5239 q 0,4.10168 -2.91086,6.23757 -2.55173,1.87127 -6.78571,1.87127 -4.19618,0 -6.74791,-2.00358 -2.79745,-2.2115 -2.79745,-6.29426 0,-4.2907 4.51751,-6.3132 -3.47792,-2.2115 -3.47792,-6.3131 0,-3.6103 2.83526,-5.3681 2.32491,-1.4366 6.12415,-1.4366 3.45901,0 5.68941,1.6823 2.45722,1.8902 2.45722,5.2547 0,3.8559 -3.45901,6.1619 4.55531,1.928 4.55531,6.5211 z m -5.87843,-11.9648 q 0,-3.5346 -3.78034,-3.5346 -1.72005,0 -2.74074,0.9262 -1.02069,0.9073 -1.02069,2.6084 0,1.6445 1.07739,2.6085 1.02069,0.9451 2.68404,0.9451 1.62555,0 2.70295,-0.964 1.07739,-0.964 1.07739,-2.5896 z m 0.88838,11.7947 q 0,-1.9658 -1.34202,-3.0999 -1.26641,-1.0774 -3.26999,-1.0774 -1.96578,0 -3.23219,1.0963 -1.36092,1.153 -1.36092,3.081 0,2.0225 1.32311,3.13768 1.22862,1.03959 3.2889,1.03959 2.04138,0 3.27,-1.05849 1.32311,-1.11518 1.32311,-3.11878 z" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55605 -0.03079,-0.95768 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.3218 0,-1.41528 0,-2.73712 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.6393 2.7501936,-4.95764 1.819108,-1.94577 4.139071,-3.2593 6.561151,-4.31616 2.472354,1.07475 4.843466,2.43125 6.685643,4.42831 1.659299,1.55933 2.764852,3.76316 2.730888,6.0706 0.03599,1.6655 -0.995685,3.42548 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43365 -5.784745,0.35232 0,1.32184 0,1.41532 0,2.73712 1.14956,0 2.203119,0 3.352688,0 0,0.55609 0.03079,0.95772 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38"
|
||||
d="m 104.07979,907.58684 c 0,1.66824 -0.0924,2.87307 -0.0924,4.54131 3.44871,0 7.18544,0 10.63413,0 0,3.96548 0,4.24592 0,8.21139 -6.7318,-0.2169 -14.01738,-0.71685 -20.321707,2.06098 -4.879853,2.67819 -6.226347,8.91263 -5.242483,14.03805 0.842117,5.78261 4.056819,10.91789 8.25058,14.87291 5.45732,5.8373 12.41721,9.77787 19.68345,12.94845 7.41706,-3.2242 14.5304,-7.2937 20.05693,-13.28493 4.97789,-4.67795 8.29456,-11.2895 8.19266,-18.21177 0.10797,-4.99646 -2.98706,-10.27644 -8.09215,-11.3667 -5.71111,-1.58159 -11.49141,-1.30099 -17.35423,-1.05699 0,-3.96547 0,-4.24591 0,-8.21139 3.44868,0 6.60935,0 10.05806,0 0,-1.66824 0.0924,-2.87307 0.0924,-4.54131 -7.89686,0.0556 -17.33588,0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66823 -0.09238,-2.87307 -0.09238,-4.5413 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879854,-2.67821 -6.226348,-8.91266 -5.242485,-14.03808 0.842118,-5.78261 4.056821,-10.91785 8.250581,-14.87291 5.457325,-5.83729 12.417214,-9.77784 19.683448,-12.94844 7.417061,3.22422 14.530399,7.29373 20.056933,13.28492 4.977887,4.67796 8.294558,11.2895 8.192664,18.21177 0.107967,4.99649 -2.987067,10.27644 -8.092154,11.36674 -5.711113,1.58155 -11.491414,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5"
|
||||
d="m 162.45012,814.07624 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.5413 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67821 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.83729 12.41722,-9.77784 19.68345,-12.94844 7.41706,3.22422 14.5304,7.29373 20.05693,13.28492 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.5413 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4"
|
||||
d="m 104.07979,864.13747 c 0,-1.66823 -0.0924,-2.87307 -0.0924,-4.54131 3.4487,0 7.18544,0 10.63412,0 0,-3.96544 0,-4.24591 0,-8.21139 -6.73179,0.2169 -14.01738,0.71685 -20.321703,-2.06095 -4.879857,-2.67821 -6.226351,-8.91266 -5.242487,-14.03808 0.842117,-5.78261 4.056822,-10.91785 8.250583,-14.87291 5.457327,-5.8373 12.417217,-9.77784 19.683447,-12.94845 7.41706,3.22423 14.5304,7.29374 20.05693,13.28493 4.97789,4.67796 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36674 -5.71111,1.58155 -11.49141,1.30096 -17.35423,1.05695 0,3.96548 0,4.24595 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87308 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3"
|
||||
d="m 45.709463,914.1987 c 0,-1.66824 -0.09238,-2.87307 -0.09238,-4.54131 3.448704,0 7.185441,0 10.634123,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06095 -4.879857,-2.67822 -6.226351,-8.91266 -5.242488,-14.03808 0.842118,-5.78261 4.056824,-10.91785 8.250584,-14.87291 5.457325,-5.8373 12.417214,-9.77784 19.683448,-12.94845 7.417061,3.22423 14.530399,7.29373 20.056933,13.28493 4.977887,4.67795 8.294558,11.2895 8.192665,18.21177 0.107966,4.99649 -2.987068,10.27644 -8.092155,11.36673 -5.711113,1.58156 -11.491414,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.448679,0 6.609354,0 10.058058,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.896859,-0.0556 -17.335872,-0.0556 -25.865258,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-5-4-3-1"
|
||||
d="m 162.45012,914.1987 c 0,-1.66824 -0.0924,-2.87307 -0.0924,-4.54131 3.44871,0 7.18544,0 10.63413,0 0,-3.96545 0,-4.24592 0,-8.21139 -6.7318,0.2169 -14.01738,0.71685 -20.3217,-2.06095 -4.87986,-2.67822 -6.22636,-8.91266 -5.24249,-14.03808 0.84212,-5.78261 4.05682,-10.91785 8.25058,-14.87291 5.45733,-5.8373 12.41722,-9.77784 19.68345,-12.94845 7.41706,3.22423 14.5304,7.29373 20.05693,13.28493 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99649 -2.98707,10.27644 -8.09216,11.36673 -5.71111,1.58156 -11.49141,1.30097 -17.35423,1.05696 0,3.96547 0,4.24594 0,8.21139 3.44868,0 6.60936,0 10.05806,0 0,1.66824 0.0924,2.87307 0.0924,4.54131 -7.89686,-0.0556 -17.33587,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38-2-3"
|
||||
d="m 162.45012,957.64807 c 0,1.66824 -0.0924,2.87308 -0.0924,4.54131 3.44871,0 7.18544,0 10.63412,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.3217,2.06098 -4.87985,2.67818 -6.22635,8.91263 -5.24248,14.03805 0.84212,5.78261 4.05682,10.91788 8.25058,14.87289 5.45732,5.8373 12.41721,9.7779 19.68345,12.9485 7.41706,-3.2242 14.53039,-7.2937 20.05693,-13.285 4.97789,-4.67792 8.29456,-11.28946 8.19266,-18.21174 0.10797,-4.99645 -2.98706,-10.27643 -8.09215,-11.3667 -5.71111,-1.58159 -11.49142,-1.30099 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44868,0 6.60935,0 10.05806,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89685,0.0556 -17.33587,0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
202
img/playing_cards/fronts/spades_9.svg
Normal file
|
@ -0,0 +1,202 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_9.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_9.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<title
|
||||
id="title879">Nine of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.7419355"
|
||||
inkscape:cx="101.33742"
|
||||
inkscape:cy="147.52053"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="496"
|
||||
inkscape:window-y="18"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showborder="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="5.1666068e-06" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Nine of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>nine; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>A nine of spades playing card.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-719.36216)">
|
||||
<g
|
||||
id="g903">
|
||||
<rect
|
||||
rx="8.9191856"
|
||||
ry="8.9457436"
|
||||
y="719.74011"
|
||||
x="0.37795275"
|
||||
height="332.24411"
|
||||
width="233.24409"
|
||||
id="rect4266"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590551;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-2"
|
||||
d="m 45.70946,880.82455 c 0,-1.66823 -0.09238,-2.87306 -0.09238,-4.54129 3.448704,0 7.185441,0 10.634123,0 0,-3.96548 0,-4.24593 0,-8.2114 -6.731793,0.2169 -14.01738,0.71685 -20.321702,-2.06098 -4.879854,-2.6782 -6.226348,-8.91265 -5.242485,-14.03806 0.842118,-5.7826 4.056821,-10.91787 8.250581,-14.8729 5.457325,-5.8373 12.417214,-9.77786 19.683448,-12.94846 7.417061,3.22421 14.530402,7.29372 20.056936,13.28494 4.977887,4.67794 8.294558,11.28949 8.192665,18.21177 0.107966,4.99647 -2.987068,10.27644 -8.092155,11.36671 -5.711113,1.58158 -11.491417,1.30097 -17.354233,1.05698 0,3.96547 0,4.24592 0,8.2114 3.448679,0 6.609354,0 10.058061,0 0,1.66823 0.0924,2.87306 0.0924,4.54129 -7.896862,-0.0556 -17.335875,-0.0556 -25.865261,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-1-7"
|
||||
d="m 45.70946,890.89976 c 0,1.66821 -0.09238,2.87305 -0.09238,4.54128 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24592 0,8.2114 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67821 -6.226348,8.91266 -5.242485,14.03805 0.842118,5.7826 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.77787 19.683448,12.94848 7.417061,-3.22422 14.530399,-7.29373 20.056933,-13.28496 4.977887,-4.67792 8.294558,-11.2895 8.192664,-18.21177 0.107967,-4.99645 -2.987067,-10.27643 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.30096 -17.35423,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.448679,0 6.609354,0 10.058058,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54128 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3"
|
||||
d="m 162.45012,880.82455 c 0,-1.66823 -0.0924,-2.87306 -0.0924,-4.54129 3.44871,0 7.18544,0 10.63412,0 0,-3.96548 0,-4.24592 0,-8.2114 -6.73179,0.2169 -14.01738,0.71685 -20.3217,-2.06098 -4.87985,-2.6782 -6.22635,-8.91265 -5.24248,-14.03806 0.84212,-5.7826 4.05682,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22421 14.53039,7.29372 20.05693,13.28494 4.97789,4.67794 8.29456,11.28949 8.19266,18.21177 0.10797,4.99647 -2.98706,10.27644 -8.09215,11.36671 -5.71111,1.58158 -11.49142,1.30098 -17.35423,1.05698 0,3.96548 0,4.24592 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87306 0.0924,4.54129 -7.89685,-0.0556 -17.33587,-0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-1"
|
||||
d="m 162.45012,814.07624 c 0,-1.66822 -0.0924,-2.87306 -0.0924,-4.54129 3.44871,0 7.18544,0 10.63412,0 0,-3.96547 0,-4.24592 0,-8.2114 -6.73179,0.21691 -14.01738,0.71686 -20.3217,-2.06097 -4.87985,-2.6782 -6.22635,-8.91265 -5.24248,-14.03806 0.84212,-5.7826 4.05682,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22421 14.53039,7.29372 20.05693,13.28494 4.97789,4.67794 8.29456,11.28949 8.19266,18.21176 0.10797,4.99647 -2.98706,10.27644 -8.09215,11.36671 -5.71111,1.58158 -11.49142,1.30098 -17.35423,1.05698 0,3.96548 0,4.24593 0,8.2114 3.44868,0 6.60935,0 10.05806,0 0,1.66823 0.0924,2.87307 0.0924,4.54129 -7.89685,-0.0556 -17.33587,-0.0556 -25.86525,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3"
|
||||
d="m 45.70946,814.07624 c 0,-1.66822 -0.09238,-2.87306 -0.09238,-4.54129 3.448704,0 7.185441,0 10.634123,0 0,-3.96547 0,-4.24592 0,-8.2114 -6.731793,0.21691 -14.01738,0.71686 -20.321702,-2.06097 -4.879854,-2.6782 -6.226348,-8.91265 -5.242485,-14.03806 0.842118,-5.7826 4.056821,-10.91787 8.250581,-14.8729 5.457325,-5.8373 12.417214,-9.77786 19.683448,-12.94846 7.417061,3.22421 14.530399,7.29372 20.056933,13.28493 4.977887,4.67795 8.294558,11.2895 8.192664,18.21177 0.107967,4.99647 -2.987067,10.27644 -8.092154,11.36671 -5.711113,1.58158 -11.491414,1.30098 -17.35423,1.05698 0,3.96548 0,4.24593 0,8.2114 3.448679,0 6.609354,0 10.058058,0 0,1.66823 0.0924,2.87307 0.0924,4.54129 -7.896858,-0.0556 -17.335871,-0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-34"
|
||||
d="m 104.07979,914.1987 c 0,-1.66823 -0.0924,-2.87306 -0.0924,-4.54129 3.44871,0 7.18544,0 10.63413,0 0,-3.96548 0,-4.24593 0,-8.2114 -6.7318,0.2169 -14.01738,0.71685 -20.321707,-2.06097 -4.879853,-2.67821 -6.226347,-8.91265 -5.242483,-14.03807 0.842117,-5.7826 4.056819,-10.91787 8.25058,-14.8729 5.45732,-5.8373 12.41721,-9.77786 19.68345,-12.94846 7.41706,3.22422 14.5304,7.29372 20.05693,13.28494 4.97789,4.67795 8.29456,11.2895 8.19267,18.21177 0.10796,4.99647 -2.98707,10.27644 -8.09216,11.36671 -5.71111,1.58158 -11.49141,1.30098 -17.35423,1.05698 0,3.96547 0,4.24592 0,8.2114 3.44868,0 6.60936,0 10.05806,0 0,1.66823 0.0924,2.87306 0.0924,4.54129 -7.89686,-0.0556 -17.33588,-0.0556 -25.86526,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11"
|
||||
d="m 12.898825,780.70209 c 0,-0.55607 -0.03079,-0.95768 -0.03079,-1.51376 1.149566,0 2.395148,0 3.544708,0 0,-1.32183 0,-1.41531 0,-2.73713 -2.243931,0.0723 -4.67246,0.23895 -6.7739019,-0.687 -1.6266179,-0.89273 -2.075448,-2.97088 -1.7474947,-4.67935 0.2807048,-1.92753 1.3522742,-3.63929 2.7501936,-4.95763 1.819108,-1.94577 4.139071,-3.25929 6.561151,-4.31616 2.472354,1.07474 4.843466,2.43124 6.685643,4.42831 1.659299,1.55932 2.764852,3.76317 2.730888,6.07059 0.03599,1.66549 -0.995685,3.42549 -2.697384,3.78891 -1.903705,0.52719 -3.830472,0.43366 -5.784745,0.35233 0,1.32182 0,1.4153 0,2.73713 1.14956,0 2.203119,0 3.352688,0 0,0.55608 0.03079,0.95769 0.03079,1.51376 -2.632285,-0.0185 -5.778625,-0.0185 -8.621752,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-38"
|
||||
d="m 45.70946,957.64807 c 0,1.66823 -0.09238,2.87307 -0.09238,4.54131 3.448704,0 7.185441,0 10.634123,0 0,3.96548 0,4.24591 0,8.21139 -6.731793,-0.2169 -14.01738,-0.71685 -20.321702,2.06098 -4.879854,2.67818 -6.226348,8.91263 -5.242485,14.03805 0.842118,5.78261 4.056821,10.91788 8.250581,14.8729 5.457325,5.8373 12.417214,9.7779 19.683448,12.9485 7.417061,-3.2242 14.530399,-7.2937 20.056933,-13.285 4.977887,-4.67793 8.294558,-11.28947 8.192664,-18.21174 0.107967,-4.99646 -2.987067,-10.27644 -8.092154,-11.3667 -5.711113,-1.58159 -11.491414,-1.301 -17.35423,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.448679,0 6.609354,0 10.058058,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.896858,0.0556 -17.335871,0.0556 -25.865256,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-3-2"
|
||||
d="m 162.45011,957.64807 c 0,1.66823 -0.0924,2.87307 -0.0924,4.54131 3.44868,0 7.18542,0 10.6341,0 0,3.96548 0,4.24591 0,8.21139 -6.73179,-0.2169 -14.01738,-0.71685 -20.32169,2.06098 -4.87985,2.67818 -6.22636,8.91263 -5.24247,14.03805 0.8421,5.78261 4.0568,10.91788 8.25058,14.8729 5.45731,5.8373 12.41719,9.7778 19.68346,12.9485 7.41705,-3.2242 14.53038,-7.2937 20.05692,-13.285 4.97789,-4.67793 8.29455,-11.28947 8.19265,-18.21174 0.10799,-4.99649 -2.98705,-10.27644 -8.09213,-11.3667 -5.71113,-1.58159 -11.49143,-1.301 -17.35425,-1.05699 0,-3.96548 0,-4.24591 0,-8.21139 3.44868,0 6.60937,0 10.05805,0 0,-1.66824 0.0924,-2.87308 0.0924,-4.54131 -7.89688,0.0556 -17.3359,0.0556 -25.86528,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-34-7"
|
||||
d="m 162.45009,890.89973 c 0,1.66824 -0.0923,2.87308 -0.0923,4.54131 3.44868,0 7.18542,0 10.6341,0 0,3.96548 0,4.24592 0,8.2114 -6.73179,-0.2169 -14.01738,-0.71685 -20.32169,2.06098 -4.87986,2.67818 -6.22633,8.91266 -5.24248,14.03805 0.84211,5.7826 4.05681,10.91788 8.25059,14.8729 5.45731,5.8373 12.41719,9.77787 19.68345,12.94848 7.41704,-3.22422 14.53038,-7.29373 20.05692,-13.28496 4.97789,-4.67795 8.29455,-11.2895 8.19265,-18.21177 0.10799,-4.99645 -2.98705,-10.27643 -8.09213,-11.3667 -5.71113,-1.58159 -11.49143,-1.30099 -17.35426,-1.05698 0,-3.96548 0,-4.24592 0,-8.2114 3.44869,0 6.60938,0 10.05809,0 0,-1.66823 0.0924,-2.87307 0.0924,-4.54131 -7.89688,0.0556 -17.3359,0.0556 -25.86528,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2985-3-11-7"
|
||||
d="m 212.48766,991.02222 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.3218 0,1.41528 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.687 -1.62662,0.89273 -2.07544,2.97087 -1.7475,4.67939 0.28071,1.9275 1.35228,3.6392 2.75018,4.9576 1.81912,1.9458 4.13909,3.2593 6.56118,4.3161 2.47235,-1.0747 4.84345,-2.4312 6.68563,-4.4283 1.65931,-1.5593 2.76487,-3.7631 2.73088,-6.07056 0.036,-1.6655 -0.99569,-3.42548 -2.69737,-3.78891 -1.90372,-0.52719 -3.83047,-0.43365 -5.78475,-0.35232 0,-1.32184 0,-1.41532 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:1" />
|
||||
<path
|
||||
d="m 26.620138,740.9305 q 0,6.04591 -2.104768,9.83184 -2.6357,4.75173 -8.115681,4.75173 -3.204556,0 -5.290362,-1.29417 -2.5219291,-1.58391 -2.5219291,-4.67447 0,-0.67605 0.9291317,-0.67605 h 2.8063574 q 0.549894,0 0.929131,0.63742 0.568856,0.94648 0.872246,1.2169 0.777438,0.63743 2.275425,0.63743 2.521929,0 3.925107,-2.39517 1.099789,-1.9316 1.232522,-4.75174 -2.218538,1.79639 -5.309324,1.79639 -3.925107,0 -6.2574174,-2.82014 -2.1995773,-2.64628 -2.1995773,-6.72196 0,-4.28814 2.4081577,-6.7799 2.408158,-2.51108 6.598731,-2.51108 9.82225,0 9.82225,13.75297 z m -5.176592,-4.34609 q 0,-2.10544 -1.11875,-3.57346 -1.232521,-1.62254 -3.223518,-1.62254 -2.047882,0 -3.261441,1.58391 -1.09979,1.4487 -1.09979,3.61209 0,2.20202 1.080827,3.6314 1.175636,1.5646 3.280404,1.5646 2.085806,0 3.261442,-1.58391 1.080826,-1.42938 1.080826,-3.61209 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:39.19484329px;line-height:1.25;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="path881"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 207.37987,1030.7938 q 0,-6.0459 2.10477,-9.8319 2.63569,-4.7517 8.11568,-4.7517 3.20456,0 5.29036,1.2942 2.52193,1.5839 2.52193,4.6744 0,0.6762 -0.92913,0.6762 h -2.80636 q -0.54989,0 -0.92914,-0.6375 -0.56885,-0.9465 -0.87224,-1.2169 -0.77743,-0.6375 -2.27542,-0.6375 -2.52193,0 -3.92511,2.3953 -1.09979,1.9316 -1.23252,4.7516 2.21854,-1.7963 5.30932,-1.7963 3.92511,0 6.25742,2.8202 2.19958,2.6462 2.19958,6.7219 0,4.2882 -2.40816,6.7799 -2.40816,2.511 -6.59873,2.511 -9.82225,0 -9.82225,-13.7529 z m 5.17659,4.3461 q 0,2.1054 1.11875,3.5734 1.23253,1.6226 3.22352,1.6226 2.04788,0 3.26144,-1.5839 1.09979,-1.4487 1.09979,-3.6121 0,-2.2021 -1.08083,-3.6314 -1.17563,-1.5646 -3.2804,-1.5646 -2.0858,0 -3.26145,1.5839 -1.08082,1.4294 -1.08082,3.6121 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:39.19484329px;line-height:1.25;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="path884"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
483
img/playing_cards/fronts/spades_ace.svg
Normal file
|
@ -0,0 +1,483 @@
|
|||
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="234"
|
||||
height="333.00003"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="spades_ace.svg"
|
||||
inkscape:export-filename="C:\Users\fowle\OneDrive\Projects\Playing-Cards\fronts\png-096-dpi\spades_ace.png"
|
||||
inkscape:export-xdpi="95.999992"
|
||||
inkscape:export-ydpi="95.999992">
|
||||
<title
|
||||
id="title884">Ace of Spades Playing Card</title>
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.549743"
|
||||
inkscape:cx="120.6607"
|
||||
inkscape:cy="171.86237"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="svg2"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-width="1456"
|
||||
inkscape:window-height="976"
|
||||
inkscape:window-x="375"
|
||||
inkscape:window-y="21"
|
||||
inkscape:window-maximized="0"
|
||||
showborder="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3767"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="0"
|
||||
originy="-6.8515539e-05" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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>Ace of Spades Playing Card</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:date>2020-05-05</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Daniel S. Fowler</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Public Domain</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>https://tekeye.uk</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>ace; spades; playing; card; black; white</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>An ace of spades playing card in black and white with a phrase.</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="g1157">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.75590545;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.30000019;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4266"
|
||||
width="233.24409"
|
||||
height="332.24411"
|
||||
x="0.37795272"
|
||||
y="0.37795272"
|
||||
ry="8.9457436"
|
||||
rx="8.9191856" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4233"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,214.23848)" />
|
||||
<g
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01728,214.23848)"
|
||||
id="g4211"
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
clip-path="none" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:3.18132639;stroke-opacity:1"
|
||||
id="g4227"
|
||||
transform="matrix(0.07348588,0,0,0.07370838,-248.01731,214.23848)" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:1"
|
||||
d="m 12.898825,61.339964 c 0,-0.55606 -0.03079,-0.95769 -0.03079,-1.51377 1.149566,0 2.395148,0 3.544708,0 0,-1.32181 0,-1.41529 0,-2.73713 -2.243931,0.0723 -4.67246,0.23894 -6.7739019,-0.687 -1.6266179,-0.89273 -2.0754481,-2.97087 -1.7474947,-4.67934 0.2807048,-1.92755 1.3522742,-3.63929 2.7501936,-4.95763 1.819108,-1.94578 4.139071,-3.25931 6.561151,-4.31616 2.472354,1.07474 4.843466,2.43124 6.685643,4.4283 1.659299,1.55933 2.764852,3.76316 2.730888,6.07061 0.03599,1.66549 -0.995685,3.42547 -2.697384,3.78891 -1.903705,0.52718 -3.830472,0.43364 -5.784745,0.35231 0,1.32184 0,1.41532 0,2.73713 1.14956,0 2.203119,0 3.352688,0 0,0.55608 0.03079,0.95771 0.03079,1.51377 -2.632285,-0.0186 -5.778625,-0.0186 -8.621752,0 z"
|
||||
id="path2985-3-11"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccc" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:1"
|
||||
d="m 212.48766,271.66008 c 0,0.55606 -0.0308,0.95768 -0.0308,1.51377 1.14955,0 2.39513,0 3.54471,0 0,1.32181 0,1.41529 0,2.73712 -2.24393,-0.0723 -4.67248,-0.23894 -6.77391,0.68701 -1.62662,0.8927 -2.07544,2.9709 -1.7475,4.6793 0.28071,1.9276 1.35228,3.6393 2.75018,4.9577 1.81912,1.9457 4.13909,3.2593 6.56117,4.3161 2.47236,-1.0747 4.84346,-2.4312 6.68564,-4.4283 1.65931,-1.5593 2.76487,-3.7632 2.73088,-6.0706 0.036,-1.6655 -0.99569,-3.42546 -2.69737,-3.78889 -1.90372,-0.52718 -3.83047,-0.43364 -5.78475,-0.35232 0,-1.32183 0,-1.41531 0,-2.73712 1.14955,0 2.20314,0 3.35269,0 0,-0.55609 0.0307,-0.95771 0.0307,-1.51377 -2.63231,0.0186 -5.77863,0.0186 -8.62177,0 z"
|
||||
id="path2985-3-11-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccc" />
|
||||
<g
|
||||
id="text3755-0"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
transform="matrix(0.2610688,0,0,0.37846751,0.25934399,0.25896407)"
|
||||
aria-label="A">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path992"
|
||||
style="font-size:104.24028015px;line-height:1.25;stroke-width:3.18132639"
|
||||
d="M 100.97259,94.837608 H 86.161107 L 80.307771,79.41534 H 49.768626 L 43.660797,94.837608 H 28.849312 L 57.708804,19.965806 H 72.163999 Z M 74.96342,65.52003 65.038198,39.81625 55.062078,65.52003 Z" />
|
||||
</g>
|
||||
<g
|
||||
id="text3755-2-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:'Sans Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
transform="matrix(-0.26106882,0,0,-0.37846748,0.25934399,0.25896407)"
|
||||
aria-label="A">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path995"
|
||||
style="font-size:104.24028015px;line-height:1.25;stroke-width:3.18132639"
|
||||
d="m -793.35602,-783.65826 h -14.81148 l -5.85334,-15.42227 h -30.53914 l -6.10783,15.42227 h -14.81149 l 28.85949,-74.87181 h 14.4552 z m -26.00917,-29.31758 -9.92522,-25.70378 -9.97612,25.70378 z" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:4.72440958;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 49.302433,202.54838 C 34.749467,194.5632 30.733889,175.97497 33.668013,160.69336 36.179415,143.45233 45.766459,128.14132 58.273309,116.34926 74.548435,98.945134 95.304591,87.196204 116.97436,77.742934 c 22.11956,9.61311 43.33331,21.74651 59.81485,39.609536 14.84536,13.94747 24.73647,33.66005 24.43257,54.29908 0.32198,14.89714 -8.90815,30.63961 -24.13282,33.89023 -17.03202,4.7156 -34.27034,3.87891 -60.76413,3.83852 -26.493835,-0.0404 -48.22133,1.45029 -67.022397,-6.83192 z"
|
||||
id="path2985-1-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:1"
|
||||
d="m 81.784275,238.63909 c 0,-4.50585 0,-7.93133 0,-12.43718 9.29737,0 18.304265,0 27.601565,0 0,-10.71067 0,-11.39359 0,-22.10424 -18.148246,0.5858 -36.587357,2.03285 -53.583187,-5.47002 -13.155602,-7.2338 -16.785618,-24.07294 -14.13322,-37.91659 2.270267,-15.61871 10.936792,-29.48898 22.242751,-40.17145 14.712404,-15.76644 33.475584,-26.409826 53.064626,-34.973566 19.99566,8.70855 39.17253,19.700226 54.07151,35.882386 13.41989,12.63505 22.36132,30.49274 22.08662,49.18968 0.29106,13.49537 -8.05284,27.75652 -21.81565,30.70127 -15.3966,4.27186 -30.89943,3.51391 -46.705,2.85493 0,10.71065 0,11.29693 0,22.0076 9.2973,0 18.3042,0 27.60156,0 0,4.50585 0,7.93133 0,12.43718 -21.28916,-0.15017 -70.431575,0.0431 -70.431575,0 z"
|
||||
id="path2985-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccc" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke-width:0.61460602"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13374"
|
||||
d="m 137.06732,150.77115 c 0,22.41232 -8.96746,40.58251 -20.02912,40.58251 -11.06167,0 -20.02913,-18.16866 -20.02913,-40.58251 0,-22.41232 8.96746,-40.58251 20.02913,-40.58251 11.06166,0 20.02912,18.16866 20.02912,40.58251 z" />
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:0.75590551;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path584-7"
|
||||
d="m 116.34227,154.10012 c -1.81655,1.38255 -2.22067,1.84683 -3.2246,3.37672 -0.36326,0.59048 -1.04166,1.97042 -1.22714,2.89615 -0.18529,0.92559 -0.32412,2.26857 -0.32355,2.97984 0.002,2.41013 0.76871,3.92202 1.60578,3.86939 0.7479,-0.0859 1.69962,-0.86651 3.14184,-2.63946" />
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:0.75590551;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path585-6"
|
||||
d="m 117.64969,154.1375 c 1.81654,1.38256 2.22067,1.84684 3.22459,3.37673 0.36327,0.59048 1.04166,1.97042 1.22714,2.89615 0.18529,0.92559 0.32413,2.26857 0.32355,2.97984 -0.002,2.41013 -0.7687,3.92202 -1.60577,3.86939 -0.7479,-0.0859 -1.69962,-0.86651 -3.14184,-2.63946" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:1.13385832;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path573-6"
|
||||
d="m 93.222421,149.57039 c -3.583201,-3.4886 -6.088857,-9.54261 -6.436547,-16.07922 -0.379294,-7.20442 3.41367,-14.35822 9.091625,-18.4364 6.364711,-4.48342 17.005121,-5.72327 23.622701,-5.38879 4.48144,0.003 14.46441,2.329 17.98842,4.95566 6.18138,4.49866 9.49649,10.88341 9.72608,18.16088 0.33967,7.30997 -2.73642,12.87765 -6.50321,16.35245" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path613-8"
|
||||
d="m 97.592952,163.70888 c 1.299835,3.14837 2.677598,6.21881 2.807598,9.44512 -0.597822,2.60196 -0.415905,5.67237 0.234,8.11841 0.83201,3.3566 4.08146,7.33758 7.33134,8.66457 3.32747,1.20986 5.40727,1.52225 9.12467,1.52225" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path611-1"
|
||||
d="m 100.85433,164.71547 c 1.06602,2.50222 1.39575,3.86739 2.16446,6.36176 0.65497,2.30438 0.89571,3.71179 1.30038,6.98642"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:1.13385832;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path580-4"
|
||||
d="m 93.440804,129.07677 c -1.452332,1.27175 -1.26909,3.18347 -1.00755,6.03647 0.206458,2.16768 1.588335,4.30137 1.661031,6.28179 0.508086,4.17885 -0.726149,8.3577 -1.307134,11.77326 -0.399438,3.92432 0.726353,7.30364 2.178484,8.61193 1.452131,1.29013 3.3266,1.82435 5.296065,2.42572 1.78936,0.46842 2.71732,1.28299 4.07083,2.29293 1.61233,1.71333 1.99697,3.13026 1.96062,4.87456" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path614-9"
|
||||
d="m 136.39326,163.70888 c -1.29984,3.14837 -2.6776,6.21881 -2.8076,9.44512 0.59782,2.60196 0.4159,5.67237 -0.234,8.11841 -0.83201,3.3566 -4.12054,7.22053 -7.37042,8.54752 -3.24959,1.32705 -5.32912,1.63927 -9.0468,1.63927" />
|
||||
<path
|
||||
d="m 106.00556,171.5034 c 2.63187,1.61564 7.18157,1.38159 11.25776,1.30821 4.54095,-0.0231 8.42831,-0.35134 10.98114,-1.89664"
|
||||
id="path588-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
d="m 106.37103,175.39573 c 3.04218,1.91341 6.61981,2.57047 10.74,2.41483 4.27944,-0.10426 7.55974,-0.46466 10.49176,-2.46996"
|
||||
id="path608-5"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<g
|
||||
style="fill:none;stroke:#000000;stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g625-8"
|
||||
transform="matrix(0.18734948,0,0,0.18751616,61.094285,105.3997)">
|
||||
<path
|
||||
d="m 229.89,385.64 c 17.367,20.948 41.608,24.585 69.173,25.315 29.519,1.077 59.166,-10.645 66.819,-25.314"
|
||||
id="path609-9"
|
||||
inkscape:connector-curvature="0"
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<g
|
||||
id="g615-0"
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 240.70377,350.94695 241.024,395.472"
|
||||
id="path589-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 254.97,358.63 -0.208,44.126"
|
||||
id="path592-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 269.96,360.5 -0.416,46.208"
|
||||
id="path593-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 283.49,361.54 -0.209,46.832"
|
||||
id="path594-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 298.68,361.96 v 46.832"
|
||||
id="path595-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 313.25,359.17319 0.208,49.40881"
|
||||
id="path598-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
transform="translate(-0.41626,-3.0518e-5)"
|
||||
d="m 326.78,360.5 0.416,46"
|
||||
id="path599-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 341.56,358 0.208,44.126"
|
||||
id="path604-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="stroke-width:6.04941225;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 357.14058,350.01319 355.717,394.218"
|
||||
id="path606-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path612-6"
|
||||
d="m 133.12039,164.64645 c -1.06602,2.50221 -1.46472,3.79837 -2.23343,6.29273 -0.65497,2.30438 -0.89571,3.71179 -1.30038,6.98642"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:0.75590551;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path586-7"
|
||||
d="m 100.9003,143.57103 c 2.52172,-0.44236 4.96534,-0.7285 7.48709,-1.01466 3.3016,-0.83275 4.96562,2.94015 4.05559,5.77647 -1.14375,2.52396 -2.75553,4.73565 -4.60126,6.86936 -1.42986,1.61322 -3.13322,1.87422 -4.75759,1.32685 -1.31107,-0.36378 -2.52192,-1.17065 -3.821698,-3.04426 -0.571791,-1.61338 -1.065651,-2.44613 -1.793673,-4.44948 -0.571788,-1.84741 0.317547,-4.61284 3.431771,-5.46414 z" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:1.13385832;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path581-6"
|
||||
d="m 140.72643,128.96749 c 1.45234,1.27174 1.26912,3.18346 1.00758,6.03646 -0.20646,2.16769 -1.58833,4.30137 -1.66103,6.2818 -0.50809,4.17884 0.72615,8.35769 1.30714,11.77325 0.39941,3.92432 -0.72636,7.30364 -2.17852,8.61194 -1.45213,1.29012 -4.1099,1.98298 -5.29607,2.42571 -1.38208,0.48398 -2.79524,1.36099 -4.07083,2.37096 -1.5344,1.47913 -1.99696,3.05232 -1.96061,4.79662" />
|
||||
<path
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:0.75590551;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path587-8"
|
||||
d="m 133.1405,143.57103 c -2.52172,-0.44236 -4.96533,-0.7285 -7.48708,-1.01466 -3.3016,-0.83275 -4.96562,2.94015 -4.0556,5.77647 1.14375,2.52396 2.75553,4.73565 4.60127,6.86936 1.42986,1.61322 3.13322,1.87422 4.75758,1.32685 1.31108,-0.36378 2.52192,-1.17065 3.82171,-3.04426 0.57178,-1.61338 1.06565,-2.44613 1.79366,-4.44948 0.57179,-1.84741 -0.31754,-4.61284 -3.43177,-5.46414 z" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:4.72440958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 103.94196,207.51343 -0.14993,13.54254 H 76.542788 c 0,0 0,0 0,22.60321 H 158.29051 V 221.05597 H 130.2071 v -12.06894"
|
||||
id="path6163"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="rect6167"
|
||||
width="3.1465287"
|
||||
height="5.563611"
|
||||
x="106.19435"
|
||||
y="206.89267"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
id="rect6167-7"
|
||||
width="3.3070643"
|
||||
height="5.5695047"
|
||||
x="124.58437"
|
||||
y="206.76443"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<g
|
||||
transform="matrix(0.31381897,0,0,0.31485049,0.25934399,0.25896407)"
|
||||
id="text3070"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
aria-label="IS DUTY PAID">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path971"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 235.991,836.96625 h -6.51563 v -34.47656 h 6.51563 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path973"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 262.03006,828.06 q 0,4.45312 -3.09375,7.17187 -2.95313,2.60157 -7.47656,2.60157 -7.33594,0 -11.08594,-7.47657 l 5.50781,-3.32812 q 2.48438,4.57031 5.71875,4.57031 1.5,0 2.67188,-0.86719 1.3125,-0.9375 1.3125,-2.39062 0,-1.52344 -1.73438,-3.35156 -0.67969,-0.72657 -2.95312,-2.57813 -4.24219,-3.46875 -5.76563,-5.20312 -3.14062,-3.53907 -3.14062,-6.86719 0,-3.79688 2.88281,-6.30469 2.74219,-2.41406 6.58594,-2.41406 5.17968,0 9.96093,5.55469 l -4.85156,4.28906 q -2.55469,-3.5625 -5.20312,-3.5625 -1.07813,0 -1.94532,0.5625 -0.98437,0.65625 -0.98437,1.6875 0,0.86719 0.58594,1.64062 0.82031,1.07813 4.80468,4.42969 3.82032,3.21094 4.54688,3.96094 3.65625,3.72656 3.65625,7.875 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path975"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 311.69412,820.20844 q 0,8.15625 -4.96875,12.86718 -2.83594,2.64844 -6.75,3.44532 -2.29687,0.44531 -7.73437,0.44531 h -7.89844 v -34.47656 h 7.78125 q 6.46875,0 9.9375,1.33593 4.54687,1.75782 7.26562,6.58594 2.36719,4.19531 2.36719,9.79688 z m -6.63281,-0.16407 q 0,-11.22656 -11.95313,-11.22656 h -2.22656 v 21.72656 h 3.04688 q 3.82031,0 5.71875,-0.70312 2.625,-0.98438 4.125,-3.79688 1.28906,-2.4375 1.28906,-6 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path977"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 341.08475,823.04437 q 0,4.26563 -0.30469,5.90625 -0.53906,2.97657 -2.50781,5.20313 -3.25782,3.67969 -8.83594,3.67969 -3.375,0 -6.16406,-1.5 -3,-1.64063 -4.33594,-4.54688 -1.19531,-2.57812 -1.19531,-8.74219 v -20.55468 h 6.58593 v 22.3125 q 0,2.29687 0.28125,3.35156 0.44532,1.75781 1.89844,2.625 1.14844,0.72656 2.78906,0.72656 3.60938,0 4.73438,-2.83594 0.46875,-1.21875 0.46875,-4.6875 v -21.49218 h 6.58594 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path979"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 364.38162,808.95844 h -6.28125 v 28.00781 h -6.65625 v -28.00781 h -6.11719 v -6.46875 h 19.05469 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path981"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 393.23318,802.48969 -10.07812,19.54687 v 14.92969 h -6.60938 v -14.92969 l -10.125,-19.54687 h 7.05469 l 6.42188,12.375 6.375,-12.375 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path983"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 435.18631,812.4975 q 0,3.49219 -1.82813,5.92969 -1.82812,2.4375 -5.17968,3.39843 -1.875,0.53907 -6.91407,0.53907 v 14.60156 h -6.5625 v -34.47656 h 6.96094 q 4.52344,0 6.75,0.60937 3.5625,0.9375 5.34375,3.79688 1.42969,2.34375 1.42969,5.60156 z m -6.35156,0 q 0,-1.99219 -1.54688,-2.90625 -1.14844,-0.67969 -4.17187,-0.67969 h -1.85157 v 7.05469 h 2.08594 q 3.91406,0 4.94531,-1.52344 0.53907,-0.79687 0.53907,-1.94531 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path985"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 472.0535,836.96625 h -6.82032 l -2.69531,-7.10156 h -14.0625 l -2.8125,7.10156 h -6.82031 l 13.28906,-34.47656 h 6.65625 z m -11.97657,-13.5 -4.57031,-11.83594 -4.59375,11.83594 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path987"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 483.20975,836.96625 h -6.51563 v -34.47656 h 6.51563 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path989"
|
||||
style="font-weight:bold;font-size:48px;line-height:1.25;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 517.94412,820.20844 q 0,8.15625 -4.96875,12.86718 -2.83594,2.64844 -6.75,3.44532 -2.29687,0.44531 -7.73437,0.44531 h -7.89844 v -34.47656 h 7.78125 q 6.46875,0 9.9375,1.33593 4.54687,1.75782 7.26562,6.58594 2.36719,4.19531 2.36719,9.79688 z m -6.63281,-0.16407 q 0,-11.22656 -11.95313,-11.22656 h -2.22656 v 21.72656 h 3.04688 q 3.82031,0 5.71875,-0.70312 2.625,-0.98438 4.125,-3.79688 1.28906,-2.4375 1.28906,-6 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.31381897,0,0,0.31485049,0.25934399,0.25896407)"
|
||||
id="text3118"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48px;line-height:0%;font-family:'Levenim MT';-inkscape-font-specification:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.18132639"
|
||||
aria-label="LIVING A GOOD LIFE">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path940"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 183.83874,328.40484 -10.56499,12.18181 -26.04571,-22.58881 4.2997,-4.95771 21.31818,18.48873 6.26528,-7.2241 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path942"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 191.63731,320.61422 -4.59154,4.62289 -24.4614,-24.29555 4.59155,-4.62289 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path944"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 196.55235,270.69376 12.46987,34.45923 -4.8683,4.04287 -31.42018,-18.72197 5.19285,-4.3124 22.31879,13.30189 -8.88589,-24.45722 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path946"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 228.12364,290.98183 -5.33342,3.74274 -19.80419,-28.22105 5.33341,-3.74273 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path948"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 257.49379,271.92485 -5.31674,3.38843 -24.60733,-11.13734 12.1555,19.07305 -5.53415,3.52698 -18.52926,-29.07405 5.29698,-3.37582 24.66488,11.18403 -12.19328,-19.13234 5.53414,-3.52698 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path950"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 286.60595,237.23985 q 2.17676,3.69832 2.04887,8.6533 -0.23517,9.60506 -9.02166,14.39609 -4.60931,2.51332 -9.3174,2.54446 -4.89702,0.0274 -9.2194,-2.66117 -4.22513,-2.6081 -6.61503,-6.99106 -3.2763,-6.00856 -1.72845,-12.61874 1.8286,-7.85778 9.38046,-11.97559 7.79878,-4.25246 16.17455,-1.42493 l -1.86578,6.22295 q -6.06955,-1.97612 -11.19329,0.8177 -4.38295,2.38991 -5.83698,6.92009 -1.49332,4.605 0.88536,8.96738 2.45722,4.50642 7.28485,5.77157 4.74345,1.25765 9.27045,-1.21079 5.90567,-3.2202 5.5063,-9.72965 l -8.76592,4.77981 -2.95091,-5.41182 15.22717,-8.30295 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path952"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 342.51239,230.61861 -6.32263,2.55753 -5.16163,-5.57266 -13.03636,5.27326 0.0557,7.63801 -6.32264,2.55753 -0.6089,-36.94404 6.17054,-2.496 z m -16.16496,-8.02385 -8.67514,-9.25846 0.17978,12.69486 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path954"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 397.64245,208.19933 q -0.22093,4.28568 -3.05754,8.35038 -5.48804,7.88632 -15.46033,7.04386 -5.23136,-0.44195 -9.17764,-3.00983 -4.10187,-2.6751 -6.22789,-7.30017 -2.08917,-4.50436 -1.66893,-9.47883 0.57611,-6.81946 5.50966,-11.4832 5.85519,-5.55025 14.42622,-4.82616 8.85128,0.74776 14.28347,7.72198 l -4.98553,4.16542 q -3.9766,-4.9931 -9.79183,-5.48438 -4.97447,-0.42024 -8.68377,2.55933 -3.78331,3.02037 -4.20158,7.97148 -0.43208,5.1146 2.89978,8.83014 3.26575,3.66291 8.4037,4.09697 6.70268,0.56624 9.95568,-5.08623 l -9.94893,-0.84049 0.51889,-6.14219 17.28219,1.46001 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path956"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 439.3602,226.11474 q -2.73119,7.01019 -9.41971,10.0387 -6.68002,3.00667 -13.69021,0.27548 -7.09754,-2.76523 -10.03983,-9.54593 -2.94229,-6.78071 -0.17706,-13.87825 1.78676,-4.5861 5.49844,-7.59218 3.71168,-3.00609 8.55784,-3.75912 4.76363,-0.73488 9.26238,1.01784 6.98835,2.72269 9.8881,9.61258 2.85124,6.8207 0.12005,13.83088 z m -6.09778,-2.42602 q 1.76974,-4.54243 0.0116,-8.87467 -1.79816,-4.42328 -6.31875,-6.18452 -4.62978,-1.80378 -8.85056,0.24936 -4.14307,1.98279 -5.95535,6.63441 -2.07605,5.32862 0.53751,9.91866 2.02562,3.58122 5.86921,5.0787 4.47691,1.74422 8.77172,-0.30523 4.17341,-1.99612 5.93465,-6.51671 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path958"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 476.96978,244.31172 q -3.3147,6.75388 -10.23555,9.20543 -6.91052,2.43052 -13.6644,-0.88418 -6.83804,-3.35601 -9.19588,-10.3614 -2.35785,-7.0054 0.99816,-13.84344 2.1685,-4.41842 6.12128,-7.09958 3.95278,-2.68116 8.84529,-3.02133 4.80874,-0.32908 9.143,1.79811 6.73284,3.30438 9.03906,10.41497 2.26374,7.03754 -1.05096,13.79142 z m -5.87058,-2.93341 q 2.14784,-4.37634 0.76264,-8.84184 -1.41734,-4.55961 -5.77265,-6.69712 -4.4605,-2.18915 -8.8399,-0.50061 -4.29602,1.62503 -6.4955,6.10657 -2.51958,5.13379 -0.30388,9.92857 1.71525,3.73981 5.41831,5.55722 4.31323,2.11686 8.76608,0.43826 4.32738,-1.63574 6.4649,-5.99105 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path960"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 506.90054,262.36967 q -4.1703,7.0095 -10.84916,8.51755 -3.79136,0.82605 -7.56255,-0.49038 -2.20163,-0.79169 -6.87463,-3.57189 l -6.78792,-4.03849 17.62792,-29.6292 6.68721,3.97857 q 5.55926,3.30748 7.85724,6.22916 3.00882,3.83549 2.87669,9.37489 -0.11071,4.8158 -2.9748,9.62979 z m -5.61636,-3.53236 q 5.74016,-9.64812 -4.53237,-15.75977 l -1.91351,-1.13845 -11.10883,18.67184 2.61849,1.55787 q 3.28318,1.95333 5.27421,2.31974 2.75924,0.49619 5.48638,-1.15392 2.35412,-1.43569 4.17563,-4.49731 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path962"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 529.61909,299.10865 -12.89813,-9.67749 20.69125,-27.57726 5.24924,3.93851 -16.9356,22.57174 7.64889,5.73897 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path964"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 538.01454,306.2488 -4.97798,-4.20394 22.24458,-26.34031 4.97798,4.20394 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path966"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 566.7253,311.71657 -7.68633,-7.32427 -10.70347,11.23256 -4.70003,-4.47863 23.78368,-24.95937 12.38636,11.80291 -4.41396,4.63216 -7.68634,-7.32427 -4.31695,4.53035 7.68633,7.32427 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path968"
|
||||
style="font-weight:bold;-inkscape-font-specification:'Levenim MT Bold';stroke-width:3.18132639"
|
||||
d="m 572.87137,341.02166 -12.78974,-13.80676 25.29235,-23.42927 12.78973,13.80677 -4.71115,4.36411 -8.3619,-9.02684 -4.5736,4.2367 8.3619,9.02684 -4.62518,4.28449 -8.36191,-9.02684 -6.65407,6.16392 8.36191,9.02684 z" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:none;stroke-width:0.65088296px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 53.875233,108.47167 C 62.41185,97.808064 70.422992,92.552804 81.114626,85.881664 c 10.889,-6.65397 23.271694,-12.42423 36.261534,-15.96761 12.98982,3.54338 25.96066,9.39663 36.84967,16.0506 10.69162,6.67114 17.33761,12.03776 26.5043,22.507016"
|
||||
id="path3086-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
223
img/playing_cards/fronts/spades_jack.svg
Normal file
After Width: | Height: | Size: 125 KiB |
214
img/playing_cards/fronts/spades_king.svg
Normal file
After Width: | Height: | Size: 114 KiB |
226
img/playing_cards/fronts/spades_queen.svg
Normal file
After Width: | Height: | Size: 118 KiB |