addedd images
@ -47,3 +47,5 @@ def main():
|
||||
print(json.dumps(graph, sort_keys=True, indent=2, cls=json_encoder))
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
|
||||
|
@ -22,20 +22,35 @@ def main():
|
||||
graph[tokens[1]] = set()
|
||||
graph[tokens[1]].add(tokens[2])
|
||||
|
||||
import svg
|
||||
canvas = svg.SVG(
|
||||
width=40,
|
||||
height=40,
|
||||
elements=[
|
||||
svg.Circle(
|
||||
cx=20, cy=20, r=18,
|
||||
stroke="black",
|
||||
fill="yellow",
|
||||
stroke_width=2,
|
||||
),
|
||||
],
|
||||
)
|
||||
print(canvas)
|
||||
for (k, v) in graph.items():
|
||||
# svg base data
|
||||
color_circle_up="yellow"
|
||||
color_circle_down="yellow"
|
||||
color_rectangle="white"
|
||||
color_number="black"
|
||||
|
||||
if 'bus' in v:
|
||||
color_circle_down="green"
|
||||
if 'underground' in v:
|
||||
color_rectangle="red"
|
||||
color_number="white"
|
||||
|
||||
with open(f"../data/{k}.svg", "w") as f:
|
||||
f.write("<svg height=\"64\" width=\"64\" xmlns=\"http://www.w3.org/2000/svg\">\n")
|
||||
f.write(f"<circle cx=\"32\" cy=\"32\" r=\"30\" fill=\"{ color_circle_up }\" stroke=\"black\" stroke-width=\"2\"/>\n")
|
||||
f.write(f"<path d=\"M2,32 a1,1 0 0,0 60,0 Z\" fill=\"{ color_circle_down }\" stroke=\"black\" stroke-width=\"2\"/>\n")
|
||||
f.write(f"<rect x=\"15\" y=\"20\" width=\"35\" height=\"20\" stroke=\"black\" fill=\"{ color_rectangle }\" stroke-width=\"2\" />\n")
|
||||
f.write(f"<text x=\"50%\" y=\"50%\" fill=\"{ color_number }\" dominant-baseline=\"middle\" text-anchor=\"middle\">{ k }</text>\n")
|
||||
f.write('</svg>')
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
|
||||
'''
|
||||
<svg height="64" width="64">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">9</text>
|
||||
</svg>
|
||||
'''
|
6
data/1.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">1</text>
|
||||
</svg>
|
After Width: | Height: | Size: 411 B |
6
data/10.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">10</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/100.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">100</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/101.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">101</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/102.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">102</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/103.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">103</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/104.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">104</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/105.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">105</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/106.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">106</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/107.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">107</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/108.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">108</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/109.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">109</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/11.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">11</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/110.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">110</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/111.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">111</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/112.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">112</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/113.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">113</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/114.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">114</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/115.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">115</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/116.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">116</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/117.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">117</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/118.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">118</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/119.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">119</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/12.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">12</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/120.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">120</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/121.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">121</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/122.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">122</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/123.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">123</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/124.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">124</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/125.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">125</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/126.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">126</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/127.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">127</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/128.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">128</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/129.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">129</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/13.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">13</text>
|
||||
</svg>
|
After Width: | Height: | Size: 412 B |
6
data/130.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">130</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/131.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">131</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/132.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">132</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/133.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">133</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/134.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">134</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/135.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">135</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/136.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">136</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/137.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">137</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/138.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">138</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/139.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">139</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/14.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">14</text>
|
||||
</svg>
|
After Width: | Height: | Size: 414 B |
6
data/140.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">140</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/141.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">141</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/142.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">142</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/143.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">143</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/144.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">144</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/145.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">145</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/146.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">146</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/147.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">147</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/148.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">148</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/149.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">149</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/15.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">15</text>
|
||||
</svg>
|
After Width: | Height: | Size: 414 B |
6
data/150.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">150</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/151.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">151</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/152.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">152</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/153.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">153</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/154.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">154</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/155.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">155</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/156.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">156</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/157.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">157</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/158.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">158</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/159.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">159</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/16.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">16</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/160.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">160</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/161.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">161</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/162.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">162</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/163.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">163</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/164.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">164</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/165.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">165</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/166.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">166</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/167.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">167</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/168.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">168</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/169.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">169</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/17.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">17</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/170.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">170</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/171.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">171</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/172.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">172</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/173.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">173</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/174.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">174</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/175.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">175</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/176.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">176</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/177.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">177</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/178.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">178</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/179.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">179</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/18.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">18</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/180.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">180</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/181.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">181</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/182.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">182</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/183.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">183</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/184.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">184</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
6
data/185.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="red" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="white" dominant-baseline="middle" text-anchor="middle">185</text>
|
||||
</svg>
|
After Width: | Height: | Size: 413 B |
6
data/186.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">186</text>
|
||||
</svg>
|
After Width: | Height: | Size: 416 B |
6
data/187.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg height="64" width="64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="32" r="30" fill="yellow" stroke="black" stroke-width="2"/>
|
||||
<path d="M2,32 a1,1 0 0,0 60,0 Z" fill="green" stroke="black" stroke-width="2"/>
|
||||
<rect x="15" y="20" width="35" height="20" stroke="black" fill="white" stroke-width="2" />
|
||||
<text x="50%" y="50%" fill="black" dominant-baseline="middle" text-anchor="middle">187</text>
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |