Start generating icons automatically. Only generate the outer rectangle for now.
|
@ -0,0 +1 @@
|
|||
*~
|
|
@ -0,0 +1,40 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import os
|
||||
|
||||
MAX_ROWS = 5
|
||||
MAX_COLS = 5
|
||||
ICON_NAME_PREFIX = "workspace"
|
||||
|
||||
WORKSPACE_WIDTH = 50
|
||||
WORKSPACE_HEIGHT = 50
|
||||
STROKE_COLOR = "#bebebe"
|
||||
STROKE_WIDTH = 5
|
||||
BORDER_RADIUS = 10
|
||||
|
||||
with open("workspace_icon_template.data") as f:
|
||||
TEMPLATE = f.read()
|
||||
|
||||
def generate_icons(n_rows, n_cols):
|
||||
for i in range(1, n_rows * n_cols + 1):
|
||||
filename = f"{ICON_NAME_PREFIX}_{n_rows}x{n_cols}_{i}.svg"
|
||||
width = n_cols * WORKSPACE_WIDTH
|
||||
height = n_rows * WORKSPACE_HEIGHT
|
||||
data = TEMPLATE
|
||||
data = data.replace("{{WIDTH}}", str(width))
|
||||
data = data.replace("{{HEIGHT}}", str(height))
|
||||
data = data.replace("{{STROKE_COLOR}}", STROKE_COLOR)
|
||||
data = data.replace("{{STROKE_WIDTH}}", str(STROKE_WIDTH))
|
||||
data = data.replace("{{BORDER_RADIUS}}", str(BORDER_RADIUS))
|
||||
data = data.replace("{{RECTANGLE_X}}", str(STROKE_WIDTH / 2))
|
||||
data = data.replace("{{RECTANGLE_Y}}", str(STROKE_WIDTH / 2))
|
||||
data = data.replace("{{RECTANGLE_WIDTH}}", str(width - STROKE_WIDTH))
|
||||
data = data.replace("{{RECTANGLE_HEIGHT}}", str(height - STROKE_WIDTH))
|
||||
data += "</svg>"
|
||||
with open(filename, "w") as f:
|
||||
f.write(data)
|
||||
|
||||
if __name__ == "__main__":
|
||||
for N_ROWS in range(MAX_ROWS + 1):
|
||||
for N_COLS in range(MAX_COLS + 1):
|
||||
generate_icons(N_ROWS, N_COLS)
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 50 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 259 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 100 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 261 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 100 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 261 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 150 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 150 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 150 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 200 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 200 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 200 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 200 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 250 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 250 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 250 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 250 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="50mm"
|
||||
viewBox="0 0 250 50">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="45"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 50 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 261 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 50 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 261 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 263 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 263 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 263 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 263 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 150 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 200 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="100mm"
|
||||
viewBox="0 0 250 100">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="95"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 50 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 50 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 50 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 100 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="150mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 150 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="145"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="200mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 200 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="195"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="250mm"
|
||||
height="150mm"
|
||||
viewBox="0 0 250 150">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="245"
|
||||
height="145"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 265 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 50 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 50 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 50 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="50mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 50 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="45"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 100 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 100 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 100 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="100mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 100 200">
|
||||
<rect
|
||||
style="fill:none;stroke:#bebebe;stroke-width:5"
|
||||
width="95"
|
||||
height="195"
|
||||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
After Width: | Height: | Size: 264 B |