Formatting (#130)

This commit is contained in:
Ian Bassi
2026-01-19 09:58:12 -03:00
committed by GitHub
parent c288bda724
commit 405ea406a3
31 changed files with 82 additions and 85 deletions

View File

@@ -70,7 +70,7 @@ New-Item -ItemType Directory -Force -Path docs | Out-Null
Write-Host "Preparing documentation structure..."
$dirsToCopy = @('images', 'calibration', 'developer-reference', 'general-settings',
'material_settings', 'print_prepare', 'print_settings', 'printer_settings')
'material_settings', 'print_prepare', 'print_settings', 'printer_settings')
foreach ($dir in $dirsToCopy) {
if (Test-Path $dir) {
@@ -109,7 +109,7 @@ if ($DownloadSvg) {
Write-Host "Downloading SVG icons from OrcaSlicer main repo..."
$iconUrls = Select-String -Path docs\*.md -Pattern 'https://github.com/OrcaSlicer/OrcaSlicer/blob/main/resources/images/[^?)"]*' -AllMatches |
ForEach-Object { $_.Matches.Value } | Sort-Object -Unique
ForEach-Object { $_.Matches.Value } | Sort-Object -Unique
foreach ($url in $iconUrls) {
$filename = [System.IO.Path]::GetFileName($url)
@@ -133,7 +133,8 @@ if ($DownloadSvg) {
}
}
}
} else {
}
else {
Write-Host "Skipping SVG icon download (use --download-svg or -d to enable)"
}
@@ -144,7 +145,7 @@ Get-ChildItem -Path docs -Filter *.md -Recurse | ForEach-Object {
$docsFull = (Get-Item -Path docs -Force).FullName
# Calculate relative path from docs to current file (as string)
$relPathFromDocs = $mdFile.Substring($docsFull.Length).TrimStart('\','/')
$relPathFromDocs = $mdFile.Substring($docsFull.Length).TrimStart('\', '/')
# Count how many directory levels deep we are (number of \ or /)
$depth = ($relPathFromDocs -split '[\\/]').Count - 1 # -1 because file itself doesn't count as level
@@ -155,11 +156,11 @@ Get-ChildItem -Path docs -Filter *.md -Recurse | ForEach-Object {
# Replace GitHub wiki image URLs
$content = $content -replace 'https://github.com/OrcaSlicer/OrcaSlicer_WIKI/blob/main/images/([^?)"]*)\?raw=true',
"${prefix}images/`$1"
"${prefix}images/`$1"
# Replace OrcaSlicer repo icon URLs
$content = $content -replace 'https://github.com/OrcaSlicer/OrcaSlicer/blob/main/resources/images/([^?)"]*)\?raw=true',
"${prefix}images/orcaslicer-icons/`$1"
"${prefix}images/orcaslicer-icons/`$1"
Set-Content -Path $mdFile -Value $content -NoNewline
}
@@ -174,7 +175,7 @@ Get-ChildItem -Path wiki -Filter *.html -Recurse | Where-Object { $_.Name -ne 'i
$wikiFull = (Get-Item -Path wiki -Force).FullName
# Calculate relative path from wiki/ to the current HTML file
$relPath = $htmlFile.Substring($wikiFull.Length).TrimStart('\','/')
$relPath = $htmlFile.Substring($wikiFull.Length).TrimStart('\', '/')
# Normalize path separators to forward slashes for URLs
$relPath = $relPath -replace '\\', '/'
@@ -234,7 +235,8 @@ New-Item -ItemType Directory -Path "wiki\assets\javascripts" -Force | Out-Null
if (Test-Path "web_extras\extra.css") {
Copy-Item "web_extras\extra.css" "wiki\assets\stylesheets\extra.css" -Force
Write-Host "Copied extra.css"
} else {
}
else {
Write-Host "Warning: web_extras\extra.css not found - skipping" -ForegroundColor Yellow
}
@@ -242,28 +244,32 @@ if (Test-Path "web_extras\extra.css") {
if (Test-Path "web_extras\OrcaSlicer.ico") {
Copy-Item "web_extras\OrcaSlicer.ico" "wiki\assets\images\OrcaSlicer.ico" -Force
Write-Host "Copied OrcaSlicer.ico"
} else {
}
else {
Write-Host "Warning: web_extras\OrcaSlicer.ico not found - skipping" -ForegroundColor Yellow
}
if (Test-Path "web_extras\OrcaSlicer.png") {
Copy-Item "web_extras\OrcaSlicer.png" "wiki\assets\images\OrcaSlicer.png" -Force
Write-Host "Copied OrcaSlicer.png"
} else {
}
else {
Write-Host "Warning: web_extras\OrcaSlicer.png not found - skipping" -ForegroundColor Yellow
}
if (Test-Path "web_extras\icon-theme.js") {
Copy-Item "web_extras\icon-theme.js" "wiki\assets\javascripts\icon-theme.js" -Force
Write-Host "Copied icon-theme.js"
} else {
}
else {
Write-Host "Warning: web_extras\icon-theme.js not found - skipping" -ForegroundColor Yellow
}
if (Test-Path "web_extras\katex.js") {
Copy-Item "web_extras\katex.js" "wiki\assets\javascripts\katex.js" -Force
Write-Host "Copied katex.js"
} else {
}
else {
Write-Host "Warning: web_extras\katex.js not found - skipping" -ForegroundColor Yellow
}
@@ -271,7 +277,8 @@ if (Test-Path "web_extras") {
New-Item -ItemType Directory -Path "wiki\web_extras" -Force | Out-Null
Copy-Item -Path "web_extras\*" -Destination "wiki\web_extras" -Recurse -Force -ErrorAction SilentlyContinue
Write-Host "Copied web_extras directory"
} else {
}
else {
Write-Host "Warning: web_extras directory not found - skipping" -ForegroundColor Yellow
}

View File

@@ -34,7 +34,7 @@ def folder_to_title(name: str) -> str:
"""Convert a folder name to a readable title."""
# Replace separators with spaces
title = name.replace('_', ' ').replace('-', ' ')
# Title case, preserving certain patterns
words = title.split()
result = []
@@ -74,11 +74,11 @@ def extract_title_from_md(filepath: Path) -> Optional[str]:
def filename_to_title(filename: str) -> str:
"""Convert a filename to a readable title."""
name = filename
# Remove common prefixes (settings files often have category prefixes)
# This regex removes patterns like "printer_basic_information_", "quality_settings_", etc.
name = re.sub(r'^[a-z]+_(?:[a-z]+_)*(?=\w)', '', name)
return folder_to_title(name)
@@ -115,65 +115,65 @@ def get_sort_key(path: Path) -> tuple:
def scan_folder(folder: Path, base_path: Path) -> list:
"""Recursively scan a folder and build nav structure."""
nav_items = []
try:
items = list(folder.iterdir())
except PermissionError:
return nav_items
# Separate and sort files and folders
md_files = sorted(
[f for f in items if f.is_file() and f.suffix == '.md'],
key=get_sort_key
)
subfolders = sorted(
[d for d in items if d.is_dir()
and not d.name.startswith('.')
[d for d in items if d.is_dir()
and not d.name.startswith('.')
and d.name.lower() not in EXCLUDED_FOLDERS],
key=get_sort_key
)
# Process markdown files
for md_file in md_files:
title = get_file_title(md_file)
rel_path = md_file.relative_to(base_path)
nav_items.append((title, str(rel_path).replace('\\', '/')))
# Process subfolders recursively
for subfolder in subfolders:
sub_items = scan_folder(subfolder, base_path)
if sub_items:
folder_title = get_display_name(subfolder.name)
nav_items.append((folder_title, sub_items))
return nav_items
def generate_nav(base_path: Path) -> list:
"""Generate the complete navigation structure by scanning all folders."""
nav = []
# Check for Home.md -> becomes index.md
if (base_path / 'Home.md').exists():
nav.append(("Home", "index.md"))
# Scan all top-level folders that contain markdown files
top_level_folders = sorted(
[d for d in base_path.iterdir()
if d.is_dir()
[d for d in base_path.iterdir()
if d.is_dir()
and not d.name.startswith('.')
and d.name.lower() not in EXCLUDED_FOLDERS
and any(d.rglob('*.md'))], # Only include if has .md files
key=get_sort_key
)
# Build nav from each folder
for folder in top_level_folders:
items = scan_folder(folder, base_path)
if items:
section_title = get_display_name(folder.name)
nav.append((section_title, items))
return nav
@@ -192,14 +192,14 @@ def nav_to_yaml(nav: list, indent: int = 2) -> str:
"""Convert nav structure to YAML string."""
lines = []
base_indent = " " * indent
def format_item(item, level):
prefix = base_indent * level + "- "
title, value = item
# Escape title to handle special characters
escaped_title = escape_yaml_string(title)
if isinstance(value, list):
lines.append(f"{prefix}{escaped_title}:")
for sub_item in value:
@@ -208,50 +208,40 @@ def nav_to_yaml(nav: list, indent: int = 2) -> str:
# Escape path value
escaped_value = escape_yaml_string(value)
lines.append(f"{prefix}{escaped_title}: {escaped_value}")
for item in nav:
format_item(item, 0)
return '\n'.join(lines)
def update_mkdocs_yml(mkdocs_path: Path, nav_yaml: str) -> None:
"""Update the nav section in mkdocs.yml."""
content = mkdocs_path.read_text(encoding='utf-8')
# Find and replace the nav section
# Match nav: followed by lines starting with - or whitespace until next top-level key or EOF
nav_pattern = re.compile(
r'^nav:\s*\n((?:[ \t-].*\n)*)',
re.MULTILINE
)
match = nav_pattern.search(content)
if match:
new_content = content[:match.start()] + f"nav:\n{nav_yaml}\n" + content[match.end():]
else:
new_content = content.rstrip() + f"\n\nnav:\n{nav_yaml}\n"
# Validate YAML before writing (basic check - try importing yaml if available)
try:
import yaml
class _MkDocsSafeLoader(yaml.SafeLoader):
"""SafeLoader that tolerates mkdocs Python tags."""
# Allow !!python/name:... tags used by MkDocs/pymdownx without executing code
_MkDocsSafeLoader.add_constructor(
'tag:yaml.org,2002:python/name',
lambda loader, node: loader.construct_scalar(node)
)
yaml.load(new_content, Loader=_MkDocsSafeLoader)
yaml.safe_load(new_content)
except ImportError:
# yaml module not available, skip validation
pass
except yaml.YAMLError as e:
raise ValueError(f"Generated YAML is invalid: {e}") from e
mkdocs_path.write_text(new_content, encoding='utf-8')
print(f"✅ Updated {mkdocs_path}")
@@ -280,7 +270,7 @@ def count_items(nav: list) -> int:
def main():
import argparse
parser = argparse.ArgumentParser(
description='Generate mkdocs.yml navigation from folder structure (fully dynamic)'
)
@@ -289,23 +279,23 @@ def main():
help='Update mkdocs.yml directly (default: preview only)'
)
args = parser.parse_args()
script_dir = Path(__file__).parent
mkdocs_path = script_dir / 'mkdocs.yml'
if not mkdocs_path.exists():
print(f"❌ Error: {mkdocs_path} not found")
return 1
print(f"📂 Scanning: {script_dir}\n")
nav = generate_nav(script_dir)
nav_yaml = nav_to_yaml(nav)
print("📋 Navigation Structure:\n")
print_nav_tree(nav)
print(f"\n📊 Total pages: {count_items(nav)}")
print(f"📁 Total sections: {len(nav) - 1}") # -1 for Home
if args.update:
print()
update_mkdocs_yml(mkdocs_path, nav_yaml)
@@ -315,7 +305,7 @@ def main():
print("nav:")
print(nav_yaml)
print("=" * 60)
return 0

View File

@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="803px" height="143px" viewBox="-0.5 -0.5 803 143"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="fhMGX1kBES0GxHB0cy2X-14"/><g data-cell-id="fhMGX1kBES0GxHB0cy2X-15"/><g data-cell-id="fhMGX1kBES0GxHB0cy2X-9"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-1"><g><rect x="260" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 131px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="200" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-2"><g><rect x="520" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 261px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="330" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-3"><g><rect x="0" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#fa6800" style="fill: light-dark(rgb(250, 104, 0), rgb(233, 107, 18)); stroke: light-dark(rgb(199, 53, 0), rgb(255, 145, 100));" stroke="#c73500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Outer wall</div></div></div></foreignObject><text x="70" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Outer wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-4"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-5"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-7"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-8"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-9"/></g></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="803px" height="143px" viewBox="-0.5 -0.5 803 143"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="fhMGX1kBES0GxHB0cy2X-14"/><g data-cell-id="fhMGX1kBES0GxHB0cy2X-15"/><g data-cell-id="fhMGX1kBES0GxHB0cy2X-9"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-1"><g><rect x="260" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 131px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="200" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-2"><g><rect x="520" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 261px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="330" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-3"><g><rect x="0" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#fa6800" style="fill: light-dark(rgb(250, 104, 0), rgb(233, 107, 18)); stroke: light-dark(rgb(199, 53, 0), rgb(255, 145, 100));" stroke="#c73500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Outer wall</div></div></div></foreignObject><text x="70" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Outer wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-4"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-5"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-7"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-8"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-9"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="822px" height="143px" viewBox="-0.5 -0.5 822 143"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="fhMGX1kBES0GxHB0cy2X-14"><g><rect x="280" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 141px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="210" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="fhMGX1kBES0GxHB0cy2X-15"><g><rect x="540" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 271px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="340" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="fhMGX1kBES0GxHB0cy2X-9"><g><rect x="0" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#fa6800" style="fill: light-dark(rgb(250, 104, 0), rgb(233, 107, 18)); stroke: light-dark(rgb(199, 53, 0), rgb(255, 145, 100));" stroke="#c73500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Outer wall</div></div></div></foreignObject><text x="70" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Outer wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-2"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-3"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-4"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-5"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-7"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-8"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-9"/></g></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="822px" height="143px" viewBox="-0.5 -0.5 822 143"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="fhMGX1kBES0GxHB0cy2X-14"><g><rect x="280" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 141px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="210" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="fhMGX1kBES0GxHB0cy2X-15"><g><rect x="540" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#e3c800" style="fill: light-dark(rgb(227, 200, 0), rgb(103, 80, 0)); stroke: light-dark(rgb(176, 149, 0), rgb(141, 118, 0));" stroke="#b09500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 271px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Inner wall</div></div></div></foreignObject><text x="340" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Inner wall</text></switch></g></g></g><g data-cell-id="fhMGX1kBES0GxHB0cy2X-9"><g><rect x="0" y="0" width="280" height="140" rx="51.8" ry="51.8" fill-opacity="0.75" fill="#fa6800" style="fill: light-dark(rgb(250, 104, 0), rgb(233, 107, 18)); stroke: light-dark(rgb(199, 53, 0), rgb(255, 145, 100));" stroke="#c73500" stroke-opacity="0.75" stroke-width="2" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)scale(2)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 35px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ededed); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Outer wall</div></div></div></foreignObject><text x="70" y="39" fill="#000000" font-family="&quot;Helvetica&quot;" font-size="12px" text-anchor="middle">Outer wall</text></switch></g></g></g><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-2"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-3"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-4"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-1"/><g data-cell-id="JIVyJF1suF0Iw4lcCjqO-5"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-6"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-7"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-8"/><g data-cell-id="iafkVJ-x-7XXIqqUWIqP-9"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="407px" height="317px" viewBox="-0.5 -0.5 407 317"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="S3ItyMhgztYiZC9E-VA5-10"><g><path d="M 141.5 8 L 316.5 8 L 404 158 L 404 158 L 316.5 308 L 141.5 308 L 54 158 L 54 158 Z" fill="#009688" style="fill: light-dark(rgb(0, 150, 136), rgb(36, 165, 153)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-20"><g><ellipse cx="229" cy="158" rx="150" ry="150" fill="transparent" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-opacity="0.5" stroke-dasharray="3 3" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-21"><g><ellipse cx="141.5" cy="8.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-22"><g><ellipse cx="316.5" cy="8.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-23"><g><ellipse cx="141.5" cy="307.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-24"><g><ellipse cx="316.5" cy="307.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-25"><g><ellipse cx="54.5" cy="158" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-26"><g><ellipse cx="403.5" cy="158" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-27"><g><path d="M 137 8.73 L 4 8" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-28"><g><path d="M 137 307.86 L 4 307" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-29"><g><path d="M 14 300.63 L 14 14.37" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 14 305.88 L 10.5 298.88 L 14 300.63 L 17.5 298.88 Z" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 14 9.12 L 17.5 16.12 L 14 14.37 L 10.5 16.12 Z" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)rotate(-90 14 154.83333333333326)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-end; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 155px; margin-left: 14px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: nowrap; "><font face="Verdana">6,00mm</font></div></div></div></foreignObject><text x="14" y="155" fill="light-dark(#000000, #ffffff)" font-family="&quot;Helvetica&quot;" font-size="11px" text-anchor="middle">6,00mm</text></switch></g></g></g></g></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="407px" height="317px" viewBox="-0.5 -0.5 407 317"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="S3ItyMhgztYiZC9E-VA5-10"><g><path d="M 141.5 8 L 316.5 8 L 404 158 L 404 158 L 316.5 308 L 141.5 308 L 54 158 L 54 158 Z" fill="#009688" style="fill: light-dark(rgb(0, 150, 136), rgb(36, 165, 153)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-20"><g><ellipse cx="229" cy="158" rx="150" ry="150" fill="transparent" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-opacity="0.5" stroke-dasharray="3 3" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-21"><g><ellipse cx="141.5" cy="8.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-22"><g><ellipse cx="316.5" cy="8.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-23"><g><ellipse cx="141.5" cy="307.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-24"><g><ellipse cx="316.5" cy="307.5" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-25"><g><ellipse cx="54.5" cy="158" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-26"><g><ellipse cx="403.5" cy="158" rx="2.5" ry="2.5" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" pointer-events="all"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-27"><g><path d="M 137 8.73 L 4 8" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-28"><g><path d="M 137 307.86 L 4 307" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/></g></g><g data-cell-id="S3ItyMhgztYiZC9E-VA5-29"><g><path d="M 14 300.63 L 14 14.37" fill="none" stroke="#000000" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 14 305.88 L 10.5 298.88 L 14 300.63 L 17.5 298.88 Z" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 14 9.12 L 17.5 16.12 L 14 14.37 L 10.5 16.12 Z" fill="#000000" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)rotate(-90 14 154.83333333333326)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-end; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 155px; margin-left: 14px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: nowrap; "><font face="Verdana">6,00mm</font></div></div></div></foreignObject><text x="14" y="155" fill="light-dark(#000000, #ffffff)" font-family="&quot;Helvetica&quot;" font-size="11px" text-anchor="middle">6,00mm</text></switch></g></g></g></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M4,1h5v16h-5c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ba0000;"/><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M4,1h5v16h-5c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ba0000;"/><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h13v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ed2c06;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h13v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ed2c06;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h21v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ef5222;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h21v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ef5222;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h29v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#f93;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h29v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#f93;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h37v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ffc000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h37v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ffc000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h45v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#e2c729;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h45v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#e2c729;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h53v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#b5bc17;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h53v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#b5bc17;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h61v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#5e9c20;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h61v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#5e9c20;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:#228b22;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:#228b22;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M4,1h5v16h-5c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#228b22;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M4,1h5v16h-5c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#228b22;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h13v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#5e9c20;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h13v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#5e9c20;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h21v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#b5bc17;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h21v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#b5bc17;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h29v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#e2c729;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h29v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#e2c729;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h37v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ffc000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h37v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ffc000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h45v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#f93;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h45v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#f93;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h53v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ef5222;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h53v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ef5222;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h61v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ed2c06;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><path d="M4,1h61v16H4c-1.66,0-3-1.34-3-3V4c0-1.66,1.34-3,3-3Z" style="fill:#ed2c06;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:#ba0000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="73" height="18" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 73 18"><defs><linearGradient id="b" x1="36.5" y1="17" x2="36.5" y2="1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d6e71" stop-opacity=".2"/><stop offset=".5" stop-color="#fff" stop-opacity=".15"/><stop offset="1" stop-color="#6d6e71" stop-opacity=".2"/></linearGradient></defs><g style="isolation:isolate;"><g id="a"><path d="M69,1c1.65,0,3,1.35,3,3v10c0,1.65-1.35,3-3,3H4c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h65M69,0H4C1.79,0,0,1.79,0,4v10c0,2.21,1.79,4,4,4h65c2.21,0,4-1.79,4-4V4c0-2.21-1.79-4-4-4h0Z" style="fill:#939598;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:#ba0000;"/><rect x="1" y="1" width="71" height="16" rx="3" ry="3" style="fill:url(#b); mix-blend-mode:hard-light;"/><g style="opacity:.5;"><rect x="8" y="1" width="1" height="16" style="fill:#414042;"/><rect x="16" y="1" width="1" height="16" style="fill:#414042;"/><rect x="24" y="1" width="1" height="16" style="fill:#414042;"/><rect x="32" y="1" width="1" height="16" style="fill:#414042;"/><rect x="40" y="1" width="1" height="16" style="fill:#414042;"/><rect x="48" y="1" width="1" height="16" style="fill:#414042;"/><rect x="56" y="1" width="1" height="16" style="fill:#414042;"/><rect x="64" y="1" width="1" height="16" style="fill:#414042;"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -51,7 +51,7 @@ $$
\frac{\text{Perimeter Length}}{2\pi} \leq \text{Threshold}
$$
For example, if the threshold is set to 5 mm, then the perimeter length must be less than or equal to 31.4 mm (2 * π * 5 mm) to be considered a small perimeter.
For example, if the threshold is set to 5 mm, then the perimeter length must be less than or equal to 31.4 mm `(2 * π * 5 mm)` to be considered a small perimeter.
- A Circle with a diameter of 10 mm will have a perimeter length of approximately 31.4 mm, which is equal to the threshold, so it will be considered a small perimeter.
- A Cube of 10mm x 10mm will have a perimeter length of 40 mm, which is greater than the threshold, so it will not be considered a small perimeter.