phantom_svg 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/Guardfile +1 -3
- data/lib/phantom/parser/raster.rb +4 -2
- data/phantom_svg.gemspec +1 -1
- data/spec/images/compiled.svg +437 -0
- data/spec/images/plain.svg +121 -0
- data/spec/images/test_frames/0.svg +138 -0
- data/spec/images/test_frames/1.svg +128 -0
- data/spec/images/test_frames/10.svg +128 -0
- data/spec/images/test_frames/11.svg +128 -0
- data/spec/images/test_frames/2.svg +128 -0
- data/spec/images/test_frames/3.svg +128 -0
- data/spec/images/test_frames/4.svg +128 -0
- data/spec/images/test_frames/5.svg +128 -0
- data/spec/images/test_frames/6.svg +128 -0
- data/spec/images/test_frames/7.svg +128 -0
- data/spec/images/test_frames/8.svg +128 -0
- data/spec/images/test_frames/9.svg +128 -0
- data/spec/images/{stuck_out_tongue → test_frames}/loops_test.json +1 -1
- data/spec/images/{stuck_out_tongue → test_frames}/loops_test.xml +0 -0
- data/spec/images/{stuck_out_tongue → test_frames}/skip_first_test.json +2 -2
- data/spec/images/{stuck_out_tongue → test_frames}/skip_first_test.xml +1 -1
- data/spec/images/{stuck_out_tongue → test_frames}/test1.json +1 -1
- data/spec/images/{stuck_out_tongue → test_frames}/test1.xml +0 -0
- data/spec/images/{stuck_out_tongue → test_frames}/test2.json +1 -1
- data/spec/images/{stuck_out_tongue → test_frames}/test2.xml +0 -0
- data/spec/phantom/svg_spec.rb +16 -16
- metadata +46 -44
- data/spec/images/ninja.svg +0 -63
- data/spec/images/stuck_out_tongue/0.svg +0 -103
- data/spec/images/stuck_out_tongue/1.svg +0 -103
- data/spec/images/stuck_out_tongue/10.svg +0 -103
- data/spec/images/stuck_out_tongue/11.svg +0 -103
- data/spec/images/stuck_out_tongue/2.svg +0 -103
- data/spec/images/stuck_out_tongue/3.svg +0 -103
- data/spec/images/stuck_out_tongue/4.svg +0 -103
- data/spec/images/stuck_out_tongue/5.svg +0 -103
- data/spec/images/stuck_out_tongue/6.svg +0 -103
- data/spec/images/stuck_out_tongue/7.svg +0 -103
- data/spec/images/stuck_out_tongue/8.svg +0 -103
- data/spec/images/stuck_out_tongue/9.svg +0 -103
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83b2989f948845f7d83da71c019ec9797badc74f
|
4
|
+
data.tar.gz: d808e2f5115912c81d87e171fdb20fb5d386df7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab25f3be99ae749af2c4dd001e95d3ea2ac8d44564edfea46ad36806ac3442cc2c5b56aa142d0eab91355ad79bb108d0c60e648129627cf9eb1d1c4fb9e24c3
|
7
|
+
data.tar.gz: aa79742a536b34f8fa45180636867c33a305af669591814cf6736543d442666a01174ae94fcb22004523775fccbe4f7180e162b2a1016378fa3ad6a05724063d
|
data/.rubocop.yml
CHANGED
data/Guardfile
CHANGED
@@ -3,10 +3,8 @@ guard :rubocop do
|
|
3
3
|
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
|
4
4
|
end
|
5
5
|
|
6
|
-
guard :rspec do
|
6
|
+
guard :rspec, cmd: 'bundle exec rspec' do
|
7
7
|
watch(%r{^spec/.+_spec\.rb$})
|
8
8
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
9
9
|
watch('spec/spec_helper.rb') { "spec" }
|
10
|
-
|
11
|
-
watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
|
12
10
|
end
|
@@ -99,9 +99,11 @@ module Phantom
|
|
99
99
|
def convert_to_png(path, frame)
|
100
100
|
handle = RSVG::Handle.new_from_file("#{path}.svg")
|
101
101
|
|
102
|
-
|
102
|
+
w = @width.to_i
|
103
|
+
h = @height.to_i
|
104
|
+
surface = Cairo::ImageSurface.new(Cairo::FORMAT_ARGB32, w, h)
|
103
105
|
context = Cairo::Context.new(surface)
|
104
|
-
context.scale(
|
106
|
+
context.scale(w / handle.dimensions.width, h / handle.dimensions.height)
|
105
107
|
context.render_rsvg_handle(handle)
|
106
108
|
|
107
109
|
surface.write_to_png("#{path}.png")
|
data/phantom_svg.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
3
3
|
s.name = 'phantom_svg'
|
4
|
-
s.version = '1.0.
|
4
|
+
s.version = '1.0.3'
|
5
5
|
s.license = 'LGPL-3.0'
|
6
6
|
s.summary = 'Hight end SVG manipulation tools for Ruby'
|
7
7
|
s.description = 'Hight end SVG manipulation tools for Ruby.\n' \
|
@@ -0,0 +1,437 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<!-- Generated by phantom_svg. -->
|
3
|
+
<svg id='phantom_svg' width='64px' height='64px' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'>
|
4
|
+
<defs>
|
5
|
+
<!-- Images. -->
|
6
|
+
<svg id='frame0' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
7
|
+
<defs id='defs2987'>
|
8
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
9
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
10
|
+
</marker>
|
11
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
12
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
13
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
14
|
+
</linearGradient>
|
15
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
16
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
17
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
18
|
+
</linearGradient>
|
19
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
20
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
21
|
+
</defs>
|
22
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.2727273' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
23
|
+
<metadata id='metadata2990'>
|
24
|
+
<rdf:RDF>
|
25
|
+
<cc:Work rdf:about=''>
|
26
|
+
<dc:format>
|
27
|
+
image/svg+xml
|
28
|
+
</dc:format>
|
29
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
30
|
+
<dc:title/>
|
31
|
+
</cc:Work>
|
32
|
+
</rdf:RDF>
|
33
|
+
</metadata>
|
34
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
35
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);stroke:url(#radialGradient3781);stroke-width:1.00024381999999989;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(1.632315,0,0,1.6711074,-1.3941512,10.128274)'/>
|
36
|
+
<path sodipodi:type='arc' style='color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.65199995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate' id='path4246' sodipodi:cx='30.454546' sodipodi:cy='19.454546' sodipodi:rx='30.454546' sodipodi:ry='11.272727' d='m 60.909092,19.454546 a 30.454546,11.272727 0 1 1 -60.909092,0 30.454546,11.272727 0 1 1 60.909092,0 z' transform='translate(1.6363636,0)'/>
|
37
|
+
</g>
|
38
|
+
</svg>
|
39
|
+
<svg id='frame1' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
40
|
+
<defs id='defs2987'>
|
41
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
42
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
43
|
+
</marker>
|
44
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
45
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
46
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
47
|
+
</linearGradient>
|
48
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
49
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
50
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
51
|
+
</linearGradient>
|
52
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
53
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
54
|
+
</defs>
|
55
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
56
|
+
<metadata id='metadata2990'>
|
57
|
+
<rdf:RDF>
|
58
|
+
<cc:Work rdf:about=''>
|
59
|
+
<dc:format>
|
60
|
+
image/svg+xml
|
61
|
+
</dc:format>
|
62
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
63
|
+
<dc:title/>
|
64
|
+
</cc:Work>
|
65
|
+
</rdf:RDF>
|
66
|
+
</metadata>
|
67
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
68
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);stroke:url(#radialGradient3781);stroke-width:1.00024381999999989;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(1.632315,0,0,1.6711074,-1.3941512,10.128274)'/>
|
69
|
+
</g>
|
70
|
+
</svg>
|
71
|
+
<svg id='frame2' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
72
|
+
<defs id='defs2987'>
|
73
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
74
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
75
|
+
</marker>
|
76
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
77
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
78
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
79
|
+
</linearGradient>
|
80
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
81
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
82
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
83
|
+
</linearGradient>
|
84
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
85
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
86
|
+
</defs>
|
87
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
88
|
+
<metadata id='metadata2990'>
|
89
|
+
<rdf:RDF>
|
90
|
+
<cc:Work rdf:about=''>
|
91
|
+
<dc:format>
|
92
|
+
image/svg+xml
|
93
|
+
</dc:format>
|
94
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
95
|
+
<dc:title/>
|
96
|
+
</cc:Work>
|
97
|
+
</rdf:RDF>
|
98
|
+
</metadata>
|
99
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
100
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(1.3842816,-0.86499516,0.885552,1.4171794,-8.1449735,31.220621)'/>
|
101
|
+
</g>
|
102
|
+
</svg>
|
103
|
+
<svg id='frame3' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
104
|
+
<defs id='defs2987'>
|
105
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
106
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
107
|
+
</marker>
|
108
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
109
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
110
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
111
|
+
</linearGradient>
|
112
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
113
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
114
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
115
|
+
</linearGradient>
|
116
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
117
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
118
|
+
</defs>
|
119
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
120
|
+
<metadata id='metadata2990'>
|
121
|
+
<rdf:RDF>
|
122
|
+
<cc:Work rdf:about=''>
|
123
|
+
<dc:format>
|
124
|
+
image/svg+xml
|
125
|
+
</dc:format>
|
126
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
127
|
+
<dc:title/>
|
128
|
+
</cc:Work>
|
129
|
+
</rdf:RDF>
|
130
|
+
</metadata>
|
131
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
132
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(0.71555978,-1.467115,1.5019814,0.73256523,-2.9565128,53.906236)'/>
|
133
|
+
</g>
|
134
|
+
</svg>
|
135
|
+
<svg id='frame4' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
136
|
+
<defs id='defs2987'>
|
137
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
138
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
139
|
+
</marker>
|
140
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
141
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
142
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
143
|
+
</linearGradient>
|
144
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
145
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
146
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
147
|
+
</linearGradient>
|
148
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
149
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
150
|
+
</defs>
|
151
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
152
|
+
<metadata id='metadata2990'>
|
153
|
+
<rdf:RDF>
|
154
|
+
<cc:Work rdf:about=''>
|
155
|
+
<dc:format>
|
156
|
+
image/svg+xml
|
157
|
+
</dc:format>
|
158
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
159
|
+
<dc:title/>
|
160
|
+
</cc:Work>
|
161
|
+
</rdf:RDF>
|
162
|
+
</metadata>
|
163
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
164
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-0.17062339,-1.623373,1.6619529,-0.17467833,12.958606,70.860369)'/>
|
165
|
+
</g>
|
166
|
+
</svg>
|
167
|
+
<svg id='frame5' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
168
|
+
<defs id='defs2987'>
|
169
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
170
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
171
|
+
</marker>
|
172
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
173
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
174
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
175
|
+
</linearGradient>
|
176
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
177
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
178
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
179
|
+
</linearGradient>
|
180
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
181
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
182
|
+
</defs>
|
183
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
184
|
+
<metadata id='metadata2990'>
|
185
|
+
<rdf:RDF>
|
186
|
+
<cc:Work rdf:about=''>
|
187
|
+
<dc:format>
|
188
|
+
image/svg+xml
|
189
|
+
</dc:format>
|
190
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
191
|
+
<dc:title/>
|
192
|
+
</cc:Work>
|
193
|
+
</rdf:RDF>
|
194
|
+
</metadata>
|
195
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
196
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-1.0049535,-1.2862818,1.3168506,-1.0288365,34.853384,75.469381)'/>
|
197
|
+
</g>
|
198
|
+
</svg>
|
199
|
+
<svg id='frame6' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
200
|
+
<defs id='defs2987'>
|
201
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
202
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
203
|
+
</marker>
|
204
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
205
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
206
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
207
|
+
</linearGradient>
|
208
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
209
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
210
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
211
|
+
</linearGradient>
|
212
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
213
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
214
|
+
</defs>
|
215
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
216
|
+
<metadata id='metadata2990'>
|
217
|
+
<rdf:RDF>
|
218
|
+
<cc:Work rdf:about=''>
|
219
|
+
<dc:format>
|
220
|
+
image/svg+xml
|
221
|
+
</dc:format>
|
222
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
223
|
+
<dc:title/>
|
224
|
+
</cc:Work>
|
225
|
+
</rdf:RDF>
|
226
|
+
</metadata>
|
227
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
228
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-1.5338744,-0.55828461,0.57155236,-1.5703273,57.089001,68.041399)'/>
|
229
|
+
</g>
|
230
|
+
</svg>
|
231
|
+
<svg id='frame7' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
232
|
+
<defs id='defs2987'>
|
233
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
234
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
235
|
+
</marker>
|
236
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
237
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
238
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
239
|
+
</linearGradient>
|
240
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
241
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
242
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
243
|
+
</linearGradient>
|
244
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
245
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
246
|
+
</defs>
|
247
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
248
|
+
<metadata id='metadata2990'>
|
249
|
+
<rdf:RDF>
|
250
|
+
<cc:Work rdf:about=''>
|
251
|
+
<dc:format>
|
252
|
+
image/svg+xml
|
253
|
+
</dc:format>
|
254
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
255
|
+
<dc:title/>
|
256
|
+
</cc:Work>
|
257
|
+
</rdf:RDF>
|
258
|
+
</metadata>
|
259
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
260
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-1.596645,0.33937739,-0.3474428,-1.6345897,72.047901,50.592159)'/>
|
261
|
+
</g>
|
262
|
+
</svg>
|
263
|
+
<svg id='frame8' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
264
|
+
<defs id='defs2987'>
|
265
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
266
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
267
|
+
</marker>
|
268
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
269
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
270
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
271
|
+
</linearGradient>
|
272
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
273
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
274
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
275
|
+
</linearGradient>
|
276
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
277
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
278
|
+
</defs>
|
279
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
280
|
+
<metadata id='metadata2990'>
|
281
|
+
<rdf:RDF>
|
282
|
+
<cc:Work rdf:about=''>
|
283
|
+
<dc:format>
|
284
|
+
image/svg+xml
|
285
|
+
</dc:format>
|
286
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
287
|
+
<dc:title/>
|
288
|
+
</cc:Work>
|
289
|
+
</rdf:RDF>
|
290
|
+
</metadata>
|
291
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
292
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-1.1741891,1.1339013,-1.1608488,-1.2020941,74.442988,28.121856)'/>
|
293
|
+
</g>
|
294
|
+
</svg>
|
295
|
+
<svg id='frame9' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
296
|
+
<defs id='defs2987'>
|
297
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
298
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
299
|
+
</marker>
|
300
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
301
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
302
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
303
|
+
</linearGradient>
|
304
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
305
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
306
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
307
|
+
</linearGradient>
|
308
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
309
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
310
|
+
</defs>
|
311
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
312
|
+
<metadata id='metadata2990'>
|
313
|
+
<rdf:RDF>
|
314
|
+
<cc:Work rdf:about=''>
|
315
|
+
<dc:format>
|
316
|
+
image/svg+xml
|
317
|
+
</dc:format>
|
318
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
319
|
+
<dc:title/>
|
320
|
+
</cc:Work>
|
321
|
+
</rdf:RDF>
|
322
|
+
</metadata>
|
323
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
324
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(-0.39489269,1.5838283,-1.6214684,-0.40427747,64.841842,6.5878521)'/>
|
325
|
+
</g>
|
326
|
+
</svg>
|
327
|
+
<svg id='frame10' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
328
|
+
<defs id='defs2987'>
|
329
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
330
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
331
|
+
</marker>
|
332
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
333
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
334
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
335
|
+
</linearGradient>
|
336
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
337
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
338
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
339
|
+
</linearGradient>
|
340
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
341
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
342
|
+
</defs>
|
343
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
344
|
+
<metadata id='metadata2990'>
|
345
|
+
<rdf:RDF>
|
346
|
+
<cc:Work rdf:about=''>
|
347
|
+
<dc:format>
|
348
|
+
image/svg+xml
|
349
|
+
</dc:format>
|
350
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
351
|
+
<dc:title/>
|
352
|
+
</cc:Work>
|
353
|
+
</rdf:RDF>
|
354
|
+
</metadata>
|
355
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
356
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(0.50441313,1.5524238,-1.5893176,0.5164006,46.056531,-6.1230106)'/>
|
357
|
+
</g>
|
358
|
+
</svg>
|
359
|
+
<svg id='frame11' width='64px' height='64px' viewBox='0 0 64 64' 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'>
|
360
|
+
<defs id='defs2987'>
|
361
|
+
<marker inkscape:stockid='Arrow1Lstart' orient='auto' refY='0.0' refX='0.0' id='Arrow1Lstart' style='overflow:visible'>
|
362
|
+
<path id='path3787' d='M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z ' style='fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt' transform='scale(0.8) translate(12.5,0)'/>
|
363
|
+
</marker>
|
364
|
+
<linearGradient inkscape:collect='always' id='linearGradient3771'>
|
365
|
+
<stop style='stop-color:#000000;stop-opacity:1;' offset='0' id='stop3773'/>
|
366
|
+
<stop style='stop-color:#000000;stop-opacity:0;' offset='1' id='stop3775'/>
|
367
|
+
</linearGradient>
|
368
|
+
<linearGradient inkscape:collect='always' id='linearGradient3763'>
|
369
|
+
<stop style='stop-color:#008080;stop-opacity:1;' offset='0' id='stop3765'/>
|
370
|
+
<stop style='stop-color:#008080;stop-opacity:0;' offset='1' id='stop3767'/>
|
371
|
+
</linearGradient>
|
372
|
+
<linearGradient inkscape:collect='always' xlink:href='#linearGradient3763' id='linearGradient3769' x1='1.6449966' y1='13.354995' x2='39.282725' y2='13.354995' gradientUnits='userSpaceOnUse'/>
|
373
|
+
<radialGradient inkscape:collect='always' xlink:href='#linearGradient3771' id='radialGradient3781' cx='20.463861' cy='13.354995' fx='20.463861' fy='13.354995' r='18.818865' gradientTransform='matrix(1,0,0,0.90774142,0,1.2321129)' gradientUnits='userSpaceOnUse'/>
|
374
|
+
</defs>
|
375
|
+
<sodipodi:namedview id='base' pagecolor='#ffffff' bordercolor='#666666' borderopacity='1.0' inkscape:pageopacity='0.0' inkscape:pageshadow='2' inkscape:zoom='5.5' inkscape:cx='-4.4545455' inkscape:cy='32' inkscape:current-layer='layer1' showgrid='true' inkscape:document-units='px' inkscape:grid-bbox='true' inkscape:window-width='1366' inkscape:window-height='715' inkscape:window-x='0' inkscape:window-y='27' inkscape:window-maximized='1'/>
|
376
|
+
<metadata id='metadata2990'>
|
377
|
+
<rdf:RDF>
|
378
|
+
<cc:Work rdf:about=''>
|
379
|
+
<dc:format>
|
380
|
+
image/svg+xml
|
381
|
+
</dc:format>
|
382
|
+
<dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
|
383
|
+
<dc:title/>
|
384
|
+
</cc:Work>
|
385
|
+
</rdf:RDF>
|
386
|
+
</metadata>
|
387
|
+
<g id='layer1' inkscape:label='Layer 1' inkscape:groupmode='layer'>
|
388
|
+
<path sodipodi:type='spiral' style='fill:url(#linearGradient3769);fill-opacity:1;stroke:url(#radialGradient3781);stroke-width:1.00024378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart)' id='path2993' sodipodi:cx='18.727272' sodipodi:cy='15.090909' sodipodi:expansion='1' sodipodi:revolution='3' sodipodi:radius='20.959623' sodipodi:argument='-18.082561' sodipodi:t0='0' d='m 18.727272,15.090909 c 0.756635,0.729285 -0.609765,1.379732 -1.21212,1.257577 -1.632345,-0.331034 -1.932014,-2.408544 -1.303034,-3.681817 1.125098,-2.277587 4.1497,-2.59765 6.151514,-1.348491 2.937743,1.833192 3.282497,5.91429 1.393948,8.621211 -2.517139,3.607901 -7.687172,3.975497 -11.090909,1.439404 C 8.3834171,18.187379 7.9939626,11.914792 11.181811,7.8181883 15.042722,2.8566527 22.424864,2.4458299 27.212113,6.2878708 32.85372,10.815583 33.285651,19.31136 28.787887,24.78787 23.595041,31.110717 13.983037,31.563609 7.818191,26.409101 0.81330178,20.552222 0.33953751,9.8222402 6.1515031,2.9697079 12.67165,-4.7177977 24.520848,-5.2123787 32.060593,1.2575632 40.431139,8.4404251 40.946501,21.409749 33.818195,29.63635' transform='matrix(1.2504259,1.0492318,-1.0741671,1.2801426,23.244087,-6.2564708)'/>
|
389
|
+
</g>
|
390
|
+
</svg>
|
391
|
+
<!-- Animation. -->
|
392
|
+
<symbol id='animation'>
|
393
|
+
<use xlink:href='#frame0' visibility='hidden'>
|
394
|
+
<set id='frame0_anim' attributeName='visibility' to='visible' begin='0s;frame11_anim.end' dur='1.0s'/>
|
395
|
+
</use>
|
396
|
+
<use xlink:href='#frame1' visibility='hidden'>
|
397
|
+
<set id='frame1_anim' attributeName='visibility' to='visible' begin='frame0_anim.end' dur='0.1s'/>
|
398
|
+
</use>
|
399
|
+
<use xlink:href='#frame2' visibility='hidden'>
|
400
|
+
<set id='frame2_anim' attributeName='visibility' to='visible' begin='frame1_anim.end' dur='0.1s'/>
|
401
|
+
</use>
|
402
|
+
<use xlink:href='#frame3' visibility='hidden'>
|
403
|
+
<set id='frame3_anim' attributeName='visibility' to='visible' begin='frame2_anim.end' dur='0.1s'/>
|
404
|
+
</use>
|
405
|
+
<use xlink:href='#frame4' visibility='hidden'>
|
406
|
+
<set id='frame4_anim' attributeName='visibility' to='visible' begin='frame3_anim.end' dur='0.1s'/>
|
407
|
+
</use>
|
408
|
+
<use xlink:href='#frame5' visibility='hidden'>
|
409
|
+
<set id='frame5_anim' attributeName='visibility' to='visible' begin='frame4_anim.end' dur='0.1s'/>
|
410
|
+
</use>
|
411
|
+
<use xlink:href='#frame6' visibility='hidden'>
|
412
|
+
<set id='frame6_anim' attributeName='visibility' to='visible' begin='frame5_anim.end' dur='0.1s'/>
|
413
|
+
</use>
|
414
|
+
<use xlink:href='#frame7' visibility='hidden'>
|
415
|
+
<set id='frame7_anim' attributeName='visibility' to='visible' begin='frame6_anim.end' dur='0.1s'/>
|
416
|
+
</use>
|
417
|
+
<use xlink:href='#frame8' visibility='hidden'>
|
418
|
+
<set id='frame8_anim' attributeName='visibility' to='visible' begin='frame7_anim.end' dur='0.1s'/>
|
419
|
+
</use>
|
420
|
+
<use xlink:href='#frame9' visibility='hidden'>
|
421
|
+
<set id='frame9_anim' attributeName='visibility' to='visible' begin='frame8_anim.end' dur='0.1s'/>
|
422
|
+
</use>
|
423
|
+
<use xlink:href='#frame10' visibility='hidden'>
|
424
|
+
<set id='frame10_anim' attributeName='visibility' to='visible' begin='frame9_anim.end' dur='0.1s'/>
|
425
|
+
</use>
|
426
|
+
<use xlink:href='#frame11' visibility='hidden'>
|
427
|
+
<set id='frame11_anim' attributeName='visibility' to='visible' begin='frame10_anim.end' dur='2.0s'/>
|
428
|
+
</use>
|
429
|
+
</symbol>
|
430
|
+
</defs>
|
431
|
+
<!-- Main control. -->
|
432
|
+
<animate id='controller' begin='0s' dur='4.000000000000001s' repeatCount='indefinite'/>
|
433
|
+
<use xlink:href='#frame0'>
|
434
|
+
<set attributeName='xlink:href' to='#animation' begin='controller.begin'/>
|
435
|
+
<set attributeName='xlink:href' to='#frame11' begin='controller.end'/>
|
436
|
+
</use>
|
437
|
+
</svg>
|