Merge pull request #877 from ONLYOFFICE/feature/phone-input

Feature/phone input
This commit is contained in:
Alexey Safronov 2022-10-10 12:04:59 +03:00 committed by GitHub
commit 734a03019a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
261 changed files with 17432 additions and 15 deletions

View File

@ -278,10 +278,11 @@ export default inject(({ auth, loginStore }) => {
const { currentColorScheme } = loginStore;
return { currentColorScheme };
} else {
if (!auth) return;
const { settingsStore } = auth;
const { currentColorScheme } = settingsStore;
return {
currentColorScheme,
currentColorScheme: currentColorScheme || false,
};
}
})(observer(ColorTheme));

View File

@ -79,16 +79,19 @@ class ComboButton extends React.Component {
/>
</StyledIcon>
)}
<Text
noBorder={noBorder}
title={selectedOption.label}
as="div"
truncate={true}
fontWeight={600}
className="combo-button-label"
>
{selectedOption.label}
</Text>
{selectedOption.label && (
<Text
noBorder={noBorder}
title={selectedOption.label}
as="div"
truncate={true}
fontWeight={600}
className="combo-button-label"
>
{selectedOption.label}
</Text>
)}
<StyledArrowIcon
needDisplay={withOptions || withAdvancedOptions}
noBorder={noBorder}

View File

@ -38,7 +38,7 @@ const DropDownItem = (props) => {
isActive={isActive}
>
{icon && (
<IconWrapper>
<IconWrapper className="drop-down-icon">
{!withoutIcon ? (
icon.includes("https://") || icon.includes("http://") ? (
<img src={icon} />

View File

@ -0,0 +1,239 @@
import { useState, useEffect } from "react";
import { options } from "./options";
import { FixedSizeList as List } from "react-window";
import { StyledBox } from "./styled-input-phone";
import { InvalidFlag } from "./svg";
import PropTypes from "prop-types";
import CustomScrollbarsVirtualList from "../scrollbar/custom-scrollbars-virtual-list";
import Box from "@docspace/components/box";
import ComboBox from "@docspace/components/combobox";
import Label from "@docspace/components/label";
import TextInput from "@docspace/components/text-input";
import SearchInput from "@docspace/components/search-input";
import DropDown from "@docspace/components/drop-down";
import DropDownItem from "@docspace/components/drop-down-item";
import Text from "@docspace/components/text";
const InputPhone = ({
defaultCountry,
onChange,
scaled,
phonePlaceholderText,
searchPlaceholderText,
searchEmptyMessage,
errorMessage,
} = props) => {
const [country, setCountry] = useState(defaultCountry);
const [phoneValue, setPhoneValue] = useState(country.dialCode);
const [searchValue, setSearchValue] = useState("");
const [filteredOptions, setFilteredOptions] = useState([]);
const [isOpen, setIsOpen] = useState(false);
const [isValid, setIsValid] = useState(true);
const onInputChange = (e) => {
const str = e.target.value.replace(/\D/g, "");
const el = options.find(
(option) => option.dialCode && str.startsWith(option.dialCode)
);
const singleСode = ["1", "7"];
const invalidCode = singleСode.find((code) => code === str);
if (e.target.value === "" || !e.target.value.includes(invalidCode)) {
setIsValid(false);
setCountry((prev) => ({ ...prev, icon: InvalidFlag }));
}
setPhoneValue(e.target.value);
if (el) {
setIsValid(true);
setCountry({
locale: el.code,
mask: el.mask,
icon: el.flag,
});
}
onChange && onChange(e);
};
const onCountrySearch = (value) => {
setSearchValue(value);
};
const onClearSearch = () => {
setSearchValue("");
};
const getMask = (locale) => {
return options.find((option) => option.code === locale).mask;
};
const handleClick = () => {
setIsOpen(!isOpen);
};
useEffect(() => {
if (isOpen) {
setFilteredOptions(
options.filter(
(val) =>
val.name.toLowerCase().startsWith(searchValue.toLowerCase()) ||
val.dialCode.startsWith(searchValue.toLowerCase())
)
);
}
}, [isOpen, searchValue]);
const onCountryClick = (e) => {
const data = e.currentTarget.dataset.option;
const country = filteredOptions[data];
setIsOpen(!isOpen);
setCountry({
locale: country.code,
mask: country.mask,
icon: country.flag,
});
setIsValid(true);
setPhoneValue(country.dialCode);
};
const Row = ({ data, index, style }) => {
const country = data[index];
const prefix = "+";
return (
<DropDownItem
key={country.code}
style={style}
icon={country.flag}
fillIcon={false}
className="country-item"
data-option={index}
onClick={onCountryClick}
>
<Text className="country-name">{country.name}</Text>
<Text className="country-prefix">{prefix}</Text>
<Text className="country-dialcode">{country.dialCode}</Text>
</DropDownItem>
);
};
return (
<StyledBox
hasError={!isValid}
displayProp="flex"
alignItems="center"
scaled={scaled}
>
<ComboBox
options={[]}
noBorder={true}
opened={isOpen}
data="country"
toggleAction={handleClick}
displayType="toggle"
className="country-box"
fillIcon={true}
selectedOption={country}
/>
<Label text="+" className="prefix" />
<TextInput
type="tel"
className="input-phone"
placeholder={phonePlaceholderText}
mask={getMask(country.locale)}
withBorder={false}
tabIndex={1}
value={phoneValue}
onChange={onInputChange}
/>
<DropDown
open={isOpen}
clickOutsideAction={handleClick}
isDefaultMode={false}
className="drop-down"
manualWidth="100%"
>
<SearchInput
placeholder={searchPlaceholderText}
value={searchValue}
className="search-country_input"
scale={true}
onClearSearch={onClearSearch}
refreshTimeout={100}
onChange={onCountrySearch}
/>
<Box marginProp="6px 0 0">
{filteredOptions.length ? (
<List
itemData={filteredOptions}
height={108}
itemCount={filteredOptions.length}
itemSize={36}
outerElementType={CustomScrollbarsVirtualList}
width="auto"
>
{Row}
</List>
) : (
<Text
textAlign="center"
className="phone-input_empty-text"
fontSize="14px"
>
{searchEmptyMessage}
</Text>
)}
</Box>
</DropDown>
{!isValid && (
<Text
className="phone-input_error-text"
color="#f21c0e"
fontSize="11px"
lineHeight="14px"
>
{errorMessage}
</Text>
)}
</StyledBox>
);
};
InputPhone.propTypes = {
/** Default selected country Russia */
defaultCountry: PropTypes.object.isRequired,
/** Text displayed on the Input placeholder */
phonePlaceholderText: PropTypes.string,
/** Text displayed on the SearchInput placeholder */
searchPlaceholderText: PropTypes.string,
/** Indicates the input field has scaled */
scaled: PropTypes.bool,
/** Called when value is changed */
onChange: PropTypes.func,
/** Gets the country mask */
searchEmptyMessage: PropTypes.string,
/** Text is displayed when invalid country dial code */
errorMessage: PropTypes.string,
};
InputPhone.defaultProps = {
defaultCountry: {
locale: options[182].code, // default locale RU
dialCode: options[182].dialCode, // default dialCode +7
mask: options[182].mask, // default Russia mask
icon: options[182].flag, // default Russia flag
},
phonePlaceholderText: "",
searchPlaceholderText: "",
scaled: false,
searchEmptyMessage: "",
errorMessage: "",
};
InputPhone.displayName = "InputPhone";
export default InputPhone;

View File

@ -0,0 +1,42 @@
import { useState } from "react";
import { options } from "./options";
import InputPhone from "./index";
export default {
title: "Components/InputPhone",
component: InputPhone,
argTypes: {
onChange: { control: "onChange" },
},
};
const Template = ({ onChange, value, ...args }) => {
const [val, setValue] = useState(value);
return (
<div style={{ height: "300px" }}>
<InputPhone
{...args}
value={val}
onChange={(e) => {
setValue(e.target.value), onChange(e.target.value);
}}
/>
</div>
);
};
export const Default = Template.bind({});
Default.args = {
defaultCountry: {
locale: options[182].code, // default locale RU
dialCode: options[182].dialCode, // default dialCode +7
mask: options[182].mask, // default Russia mask
icon: options[182].flag, // default Russia flag
},
phonePlaceholderText: "7 XXX XXX-XX-XX",
searchPlaceholderText: "Search",
scaled: false,
searchEmptyMessage: "Nothing found",
errorMessage: "Сountry code is invalid",
};

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,182 @@
import Box from "@docspace/components/box";
import styled from "styled-components";
import Base from "../themes/base";
export const StyledBox = styled(Box)`
position: relative;
width: ${(props) => (props.scaled ? "100%" : props.theme.inputPhone.width)};
border: 1px solid
${(props) =>
props.hasError
? props.theme.inputPhone.errorBorderColor
: props.theme.inputPhone.inactiveBorderColor};
border-radius: 3px;
:focus-within {
border-color: ${(props) =>
props.hasError
? props.theme.inputPhone.errorBorderColor
: props.theme.inputPhone.activeBorderColor};
}
.country-box {
width: 57px;
height: 44px;
padding: 0;
background: ${(props) => props.theme.inputPhone.backgroundColor};
border-radius: 3px;
}
.input-phone {
height: ${(props) => props.theme.inputPhone.height};
padding-left: 20px;
margin-left: -8px;
border-left: 1px solid
${(props) => props.theme.inputPhone.inactiveBorderColor};
border-top-left-radius: 0;
border-bottom-left-radius: 0;
background: ${(props) => props.theme.inputPhone.backgroundColor};
}
.prefix {
position: relative;
top: 0;
left: 12px;
font-size: 14px;
font-weight: 400;
}
.combo-button {
width: 100%;
height: 100%;
border-right: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
cursor: pointer;
padding-left: 0;
.invalid-flag {
width: 26px;
height: 20px;
margin-left: 6px;
margin-top: 9px;
}
.forceColor {
display: flex;
align-items: center;
justify-content: center;
margin-right: 0;
width: 100%;
height: 100%;
svg {
path:last-child {
fill: none;
}
}
}
}
.combo-button_selected-icon {
height: 36px;
width: 36px;
margin-right: 6px;
}
.combo-buttons_arrow-icon {
cursor: pointer;
margin: 0;
position: absolute;
top: 20px;
right: 8px;
svg {
path {
fill: ${(props) => props.theme.inputPhone.placeholderColor};
}
}
}
.drop-down {
padding: 12px 16px;
box-sizing: border-box;
margin-top: 5px;
outline: 1px solid ${(props) => props.theme.inputPhone.inactiveBorderColor};
border-radius: 3px;
box-shadow: none;
}
.search-country_input {
.search-input-block {
font-weight: 400;
border-color: ${(props) => props.theme.inputPhone.inactiveBorderColor};
:focus-within {
border-color: ${(props) => props.theme.inputPhone.activeBorderColor};
}
::placeholder {
color: ${(props) => props.theme.inputPhone.placeholderColor};
}
}
}
.country-name {
margin-left: 10px;
color: ${(props) => props.theme.inputPhone.color};
}
.country-prefix {
margin-left: 5px;
color: ${(props) => props.theme.inputPhone.dialCodeColor};
}
.country-dialcode {
color: ${(props) => props.theme.inputPhone.dialCodeColor};
}
.country-item {
display: flex;
align-items: center;
max-width: 100%;
padding: 0;
height: 36px;
svg {
width: 36px !important;
height: 36px !important;
}
.drop-down-icon > div {
height: 36px;
}
.drop-down-icon {
width: 36px;
height: 36px;
margin-right: 0;
svg {
path:last-child {
fill: none;
}
}
}
}
.phone-input_empty-text {
padding: 30px 0;
word-break: break-all;
color: ${(props) => props.theme.inputPhone.placeholderColor};
}
.nav-thumb-vertical {
background: ${(props) => props.theme.inputPhone.placeholderColor};
cursor: pointer;
:hover {
background: ${(props) => props.theme.inputPhone.scrollBackground};
}
}
.phone-input_error-text {
position: absolute;
word-break: break-all;
top: 48px;
}
`;
StyledBox.defaultProps = { theme: Base };

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 408 KiB

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#0053A5"/>
<path d="M11.9998 6H8.92285V18H11.9998V6Z" fill="#FFCE00"/>
<path d="M20 10.2344H4V13.7638H20V10.2344Z" fill="#FFCE00"/>
<path d="M11.0765 6H9.8457V18H11.0765V6Z" fill="#D21034"/>
<path d="M20 11.293H4V12.7047H20V11.293Z" fill="#D21034"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 542 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M12 6H4V18H12V6Z" fill="#006233"/>
<path d="M14.244 10.5C13.8955 9.92808 13.3575 9.48109 12.7135 9.22836C12.0694 8.97564 11.3554 8.9313 10.682 9.10222C10.0087 9.27315 9.4137 9.64978 8.98934 10.1737C8.56498 10.6976 8.33496 11.3396 8.33496 12C8.33496 12.6604 8.56498 13.3024 8.98934 13.8263C9.4137 14.3502 10.0087 14.7269 10.682 14.8978C11.3554 15.0687 12.0694 15.0244 12.7135 14.7716C13.3575 14.5189 13.8955 14.0719 14.244 13.5C13.916 13.8882 13.4688 14.1702 12.9642 14.3072C12.4597 14.4441 11.9227 14.4292 11.4274 14.2646C10.9322 14.0999 10.5032 13.7935 10.1997 13.3879C9.89615 12.9822 9.73313 12.4972 9.73313 12C9.73313 11.5028 9.89615 11.0178 10.1997 10.6121C10.5032 10.2065 10.9322 9.90013 11.4274 9.73545C11.9227 9.57077 12.4597 9.55588 12.9642 9.69284C13.4688 9.8298 13.916 10.1118 14.244 10.5ZM14.3496 12L11.4996 11.12L13.2729 13.42V10.58L11.4996 12.88L14.3496 12Z" fill="#D21034"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,102 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#000066"/>
<path d="M4 12L20 6V18L4 12Z" fill="#BD1021"/>
<path d="M7 12L20 7V17" fill="white"/>
<path d="M16.7206 13.2039C16.7206 13.2039 16.6018 13.1067 16.7422 12.9501C16.6666 12.8853 16.7369 12.7611 16.7369 12.7611C16.7369 12.7611 16.6072 12.7125 16.7422 12.5127C16.645 12.4479 16.6882 12.302 16.6882 12.302C16.6882 12.302 16.3696 12.1832 16.6721 12.0698C16.4236 12.1778 16.1914 11.924 16.1914 11.924L15.8296 11.9348C15.7684 11.6342 15.2914 11.8952 15.646 11.033C15.5542 11.0168 15.4516 10.9898 15.349 11.0654C15.2464 11.141 14.9548 11.303 14.782 11.141C14.6091 10.979 14.8954 10.7468 14.9008 10.7414C14.9062 10.736 15.2842 10.5415 15.3382 10.4119C15.3328 10.3147 15.214 10.2391 15.322 10.0285C15.4462 9.8287 16.2076 9.63969 16.5533 9.57489C16.7207 9.49929 16.7963 9.35347 16.7963 9.35347L16.8341 9.49388C16.8341 9.49388 17.6009 9.26707 17.6387 9.15906C17.6765 9.05105 17.6549 9.25626 17.6549 9.25626C17.9573 9.22926 18.3408 8.97004 18.3948 9.08885C18.6486 9.04025 19.1346 8.82424 19.1346 8.82424C19.1346 8.82424 19.302 8.81884 19.1832 9.00245C19.2588 9.12125 19.1616 9.22387 19.1562 9.22387C19.1508 9.22387 19.1886 9.34267 19.0914 9.40748C19.1238 9.51008 19.032 9.59108 19.032 9.59108C19.032 9.59108 19.0752 9.71529 18.9024 9.78009C18.9186 9.8881 18.8052 9.9097 18.8052 9.9097C18.8052 9.9097 18.8214 10.0231 18.7458 10.0717C18.7458 10.1581 18.6594 10.2013 18.6594 10.2013C18.6594 10.2013 18.7134 10.2337 18.6378 10.2877C18.5622 10.3417 17.7791 10.8223 17.7791 10.817C17.7791 10.8116 18.3516 10.9196 18.3894 10.9412C18.4272 10.9628 18.8592 11.249 18.8592 11.249L18.4217 11.789C18.4217 11.789 17.9357 11.735 17.9141 11.762C17.8925 11.789 18.0167 11.7998 18.0437 11.843C18.0707 11.8862 18.1139 11.9888 18.2003 11.978C18.2867 11.9672 18.0383 12.1346 17.8763 12.1508C17.8763 12.2102 18.0815 12.2156 18.1355 12.1671C18.1895 12.1184 18.0059 12.3075 17.9843 12.3344C17.9627 12.3614 18.2273 12.2966 18.2273 12.2966C18.2273 12.2966 18.1841 12.4749 17.9519 12.5289C18.0437 12.6801 18.0059 12.7773 18.0005 12.7773C17.9951 12.7773 17.8493 12.6261 17.7089 12.653C17.7467 12.7989 17.8601 12.9339 17.8925 12.9555C17.9249 12.9771 17.6387 12.9717 17.6009 12.8907C17.5631 12.8097 17.5307 13.0851 17.6333 13.1715C17.5145 13.1769 17.4119 13.1067 17.4119 13.1067C17.4119 13.1067 17.3417 13.2687 17.3903 13.3497C17.4389 13.4307 17.2229 13.1877 17.2229 13.1877L16.8125 13.3605L16.7207 13.2039L16.7206 13.2039Z" fill="#9C3900" stroke="black" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M13.5488 12.8824C13.5585 12.8824 14.1451 12.8728 14.4143 12.7189C14.549 12.9305 14.7317 13.0747 14.7317 13.0747L14.8182 12.767C14.8182 12.767 15.0298 12.7766 15.049 12.8247C15.0202 12.8824 15.0106 12.9593 15.0106 12.9593C15.0106 12.9593 15.1548 12.969 15.1644 12.9882C15.1741 13.0074 15.126 13.1709 15.126 13.1709L15.7415 13.3152C15.7415 13.3152 15.7895 13.0747 15.8376 13.1036C15.8857 13.1324 16.0973 13.4306 16.3954 13.4498C16.6935 13.469 16.7128 13.1998 16.7128 13.1998L16.7801 13.2382C16.7801 13.2382 16.9051 12.969 16.9243 12.969C16.9436 12.969 16.9724 13.0074 17.1359 13.0074C17.184 13.0651 17.2032 13.1998 17.2032 13.1998C17.2032 13.1998 17.0205 13.3825 17.0782 13.5268C17.1359 13.671 17.1455 13.6325 17.1455 13.6325L18.4726 13.9499C18.4726 13.9499 18.5399 14.0557 18.4245 14.1134C18.4245 14.123 17.0878 13.8056 17.0878 13.8056C17.0878 13.8056 16.9628 13.9499 16.8666 13.921C16.7705 13.8922 16.8378 13.9787 16.8378 13.9787L18.2803 14.0941C18.2803 14.0941 18.3861 14.2288 18.3091 14.2672C18.213 14.2768 16.7512 14.1711 16.7512 14.1711C16.7512 14.1711 16.6647 14.3538 16.5685 14.1999C16.5012 14.3057 16.4243 14.1711 16.4243 14.1711C16.4243 14.1711 16.2992 14.2672 16.28 14.1614C16.1742 14.2384 16.1069 14.1134 16.1069 14.1134L15.4914 14.0749L15.453 14.1326C15.453 14.1326 15.5588 14.1614 15.3953 14.2288C15.2318 14.2961 16.3762 14.2672 16.405 14.2768C16.4339 14.2865 16.3281 14.373 16.3281 14.373C16.3281 14.373 16.9147 14.4115 17.0205 14.2865C17.1263 14.1614 16.982 14.4499 16.982 14.4499C16.982 14.4499 17.4436 14.4307 17.4436 14.4115C17.4436 14.3922 17.434 14.5557 17.1167 14.5365C17.309 14.6615 17.5494 14.7385 17.5494 14.7385C17.5494 14.7385 17.309 14.7962 17.0301 14.7288C17.0782 14.8539 17.2898 14.9693 17.2898 14.9693C17.2898 14.9693 17.1359 15.1039 16.7897 14.7769C16.8859 14.95 16.8089 15.0173 16.7993 14.9981C16.7897 14.9789 16.6262 14.7385 16.2415 14.6519C16.482 14.8058 16.3762 14.8731 16.3762 14.8731C16.3762 14.8731 16.2512 14.6519 16.0492 14.8731C15.9723 14.6711 15.6742 14.5557 15.3087 14.5365C15.1933 14.4019 15.126 14.4403 14.8567 14.3634C14.7029 14.1903 14.4817 13.998 14.4817 13.998C14.4817 13.998 14.4913 13.7383 14.7509 13.7672C14.7798 13.8537 14.7798 13.8249 14.7798 13.8249C14.7798 13.8249 15.0683 13.7191 15.1548 13.8633C15.2798 13.6421 15.4529 13.8303 15.4818 13.9072C15.5646 13.9193 15.9819 13.9306 15.9819 13.9306C15.9819 13.9306 15.9338 13.8441 15.9626 13.8537C15.9915 13.8633 16.2223 13.7672 16.2127 13.7383C16.203 13.7095 16.1934 13.6133 16.2319 13.6229C16.2704 13.6325 15.9049 13.5748 15.703 13.7287C15.6357 13.6614 15.6837 13.4787 15.6837 13.4787L15.0875 13.3537L15.0587 13.5075C15.0587 13.5075 14.8856 13.5364 14.8952 13.4979C14.9048 13.4594 14.8567 13.6325 14.8567 13.6325C14.8567 13.6325 14.6259 13.5748 14.6259 13.5652C14.6259 13.5556 14.6932 13.219 14.6932 13.2286C14.6932 13.2383 14.5009 13.2479 14.2316 13.4498C14.1547 13.2094 13.5488 12.8921 13.5488 12.8825L13.5488 12.8824Z" fill="#FFC221" stroke="black" stroke-width="0.01"/>
<path d="M14.2987 12.0964C14.2987 12.0964 13.8948 12.4426 14.2987 12.6445C14.3179 12.5099 14.3467 12.4906 14.3467 12.4906C14.3467 12.4906 14.6833 12.6157 14.8853 12.3175C14.7987 12.1925 14.6449 12.2406 14.6449 12.2406C14.6449 12.2406 14.3275 12.2406 14.2987 12.0964H14.2987Z" fill="#FFC221" stroke="black" stroke-width="0.01"/>
<path d="M14.6353 12.2468L14.3564 12.4872" stroke="black" stroke-width="0.01"/>
<path d="M14.3125 12.0997C14.3125 12.0997 14.3665 12.0457 14.3827 11.9809C14.3989 11.9161 14.3611 11.8459 14.4259 11.7865C14.4907 11.7271 15.344 11.3653 15.4142 11.2951C15.4844 11.2249 15.614 11.0737 15.6302 11.0413C15.6464 11.0089 15.695 11.2033 15.5492 11.2897C15.7058 11.2465 15.8084 11.1979 15.8732 11.2195C15.8084 11.3113 15.6356 11.4625 15.5546 11.4625C15.7436 11.3923 15.9164 11.3329 15.965 11.3707C16.0136 11.4085 15.7328 11.5975 15.6194 11.6083C15.8084 11.5597 16.0622 11.4841 16.0946 11.5651C15.992 11.5975 16.0244 11.6245 15.8138 11.7433C15.7868 11.7649 15.6518 11.7703 15.6518 11.7703C15.8138 11.7541 16.0352 11.6893 16.0568 11.8081C15.9272 11.8567 15.8786 11.9215 15.7706 11.9485C15.6626 11.9755 15.4142 12.0241 15.263 12.0835C15.1117 12.1429 14.8903 12.3157 14.8903 12.3157C14.8903 12.3157 14.4097 12.3319 14.4097 12.3265C14.4097 12.3211 14.3179 12.1051 14.3125 12.0997L14.3125 12.0997Z" fill="white" stroke="black" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M18.4323 11.7689L19.3666 11.9471C19.3666 11.9471 19.4692 11.8283 19.4152 11.7635C19.5556 11.7311 19.5178 11.5475 19.5178 11.5475C19.5178 11.5475 19.6798 11.4773 19.5448 11.3153C19.6366 11.2235 19.5232 11.1533 19.5232 11.1533C19.5232 11.1533 19.561 10.9913 19.4422 10.9751C19.4746 10.8455 19.237 10.8022 19.237 10.8022C19.237 10.8022 18.7456 10.9373 18.3999 10.9481C18.5134 11.0615 18.3567 11.1317 18.3567 11.1317C18.3567 11.1317 18.4486 11.1965 18.4215 11.2505C18.3946 11.3045 18.4377 11.3639 18.3189 11.4017C18.4755 11.4719 18.3027 11.5907 18.3027 11.5907C18.3027 11.5907 18.4755 11.7095 18.4324 11.7689L18.4323 11.7689Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.0108 12.9701L14.8857 13.5279" stroke="black" stroke-width="0.01"/>
<path d="M15.1264 13.1807L15.0879 13.3634" stroke="black" stroke-width="0.01"/>
<path d="M15.7413 13.3263L15.6836 13.4994" stroke="black" stroke-width="0.01"/>
<path d="M16.8092 14.4971C16.7996 14.4971 16.5015 14.5356 16.463 14.526C16.4246 14.5164 16.9342 14.6798 16.9342 14.7472" stroke="black" stroke-width="0.01"/>
<path d="M16.2707 14.5662C16.2707 14.5662 15.9726 14.3739 15.9245 14.3931C15.8764 14.4123 16.2226 14.3835 16.2515 14.3546" stroke="black" stroke-width="0.01"/>
<path d="M15.6548 14.3453C15.6548 14.3453 15.3471 14.3549 15.3182 14.3261C15.2894 14.2972 15.6163 14.5376 15.674 14.5184" stroke="black" stroke-width="0.01"/>
<path d="M15.0589 14.2092C15.0492 14.2092 14.8473 14.1323 14.7607 14.113C14.8377 14.19 14.8954 14.2958 15.0877 14.3342" stroke="black" stroke-width="0.01"/>
<path d="M15.1356 14.0824C15.126 14.0631 14.751 13.9477 14.751 13.89C14.8375 13.9189 14.9625 13.9573 15.0779 13.9285" stroke="black" stroke-width="0.01"/>
<path d="M17.1263 13.6422L17.0879 13.8153" stroke="black" stroke-width="0.01"/>
<path d="M15.4941 13.9148C15.4941 13.9148 15.5584 13.9857 15.5007 14.0722" stroke="black" stroke-width="0.01"/>
<path d="M16.847 13.9891L16.7412 13.9988" stroke="black" stroke-width="0.01"/>
<path d="M15.9814 13.9334L16.1738 13.9623" stroke="black" stroke-width="0.01"/>
<path d="M16.4998 13.4378C16.4998 13.4378 16.5052 13.6322 16.3432 13.6268C16.1812 13.6214 16.2352 13.6322 16.2352 13.6322" stroke="black" stroke-width="0.01"/>
<path d="M16.6234 13.4037C16.6234 13.4037 16.6882 13.4253 16.672 13.474C16.6558 13.5226 16.6882 13.663 16.4992 13.798C16.2994 13.8412 16.321 13.6306 16.321 13.6306" stroke="black" stroke-width="0.01"/>
<path d="M16.6934 13.4624C16.6934 13.4624 16.8122 13.3922 16.8284 13.5056C16.8446 13.619 16.7312 13.8296 16.6502 13.862C16.5692 13.8944 16.4774 13.8566 16.4882 13.8026" stroke="black" stroke-width="0.01"/>
<path d="M16.8398 13.5126C16.8398 13.5126 16.9479 13.4262 16.9802 13.5396C17.0127 13.6531 16.8939 13.9069 16.8452 13.9123" stroke="black" stroke-width="0.01"/>
<path d="M16.9912 13.5382C16.9912 13.5382 17.0452 13.5112 17.083 13.5436" stroke="black" stroke-width="0.01"/>
<path d="M16.8177 13.9246C16.7961 13.93 16.7043 13.9354 16.6719 13.8652" stroke="black" stroke-width="0.01"/>
<path d="M16.3321 13.7383C16.3267 13.7383 16.2188 13.7437 16.2188 13.7437" stroke="black" stroke-width="0.01"/>
<path d="M16.748 14.1648L16.7372 13.9866L16.694 13.9272L16.6184 14.0028C16.6184 14.0028 16.6076 14.181 16.5752 14.1972" stroke="black" stroke-width="0.01"/>
<path d="M16.6182 13.9972C16.6128 13.9865 16.5588 13.8839 16.5588 13.8839L16.467 13.9972C16.467 13.9972 16.4562 14.1593 16.4238 14.1755" stroke="black" stroke-width="0.01"/>
<path d="M16.4674 13.9918C16.4674 13.9865 16.4296 13.8839 16.4296 13.8839C16.4296 13.8839 16.3216 13.9433 16.3108 13.9865C16.3 14.0296 16.2946 14.1485 16.2676 14.1593" stroke="black" stroke-width="0.01"/>
<path d="M16.3107 13.9624C16.3107 13.9624 16.3215 13.8652 16.2891 13.8652C16.2567 13.8652 16.1109 14.0002 16.1055 14.119" stroke="black" stroke-width="0.01"/>
<path d="M14.5391 12.0587C14.5391 12.0587 14.5445 11.9507 14.5931 11.9129C14.6417 11.8751 14.8847 11.7833 14.9387 11.7023C14.9927 11.6213 14.8577 11.8427 14.8793 11.9021" stroke="black" stroke-width="0.01"/>
<path d="M14.6367 11.8953C14.6367 11.8953 14.7555 11.9385 14.7285 12.0303" stroke="black" stroke-width="0.01"/>
<path d="M14.7768 11.9596C14.7768 11.9833 14.7675 12.0059 14.7507 12.0227C14.734 12.0394 14.7114 12.0488 14.6877 12.0488C14.6641 12.0488 14.6414 12.0394 14.6247 12.0227C14.608 12.0059 14.5986 11.9833 14.5986 11.9596C14.5986 11.936 14.608 11.9134 14.6247 11.8966C14.6414 11.8799 14.6641 11.8705 14.6877 11.8705C14.7114 11.8705 14.734 11.8799 14.7507 11.8966C14.7675 11.9134 14.7768 11.936 14.7768 11.9596V11.9596Z" stroke="black" stroke-width="0.01"/>
<path d="M18.3408 11.567C18.3408 11.567 19.1671 11.6642 19.2049 11.6642C19.2427 11.6642 19.3885 11.7128 19.4155 11.7614" stroke="black" stroke-width="0.01"/>
<path d="M18.3838 11.5205L19.534 11.5475" stroke="black" stroke-width="0.01"/>
<path d="M18.3896 11.4912C18.3896 11.4912 19.4805 11.4264 19.5561 11.313" stroke="black" stroke-width="0.01"/>
<path d="M18.4219 11.2529C18.4219 11.2529 19.5181 11.1341 19.529 11.1503" stroke="black" stroke-width="0.01"/>
<path d="M18.3838 11.1188C18.3838 11.1188 19.4476 10.9513 19.4584 10.9784" stroke="black" stroke-width="0.01"/>
<path d="M15.3496 10.4333C15.3496 10.4333 15.6844 10.8006 15.652 11.049" stroke="black" stroke-width="0.01"/>
<path d="M15.6299 10.8546C15.6299 10.8546 15.7379 11.0112 15.7811 11.0274C15.8243 11.0436 16.2023 11.0652 16.2239 11.2272C16.2455 11.3298 16.1429 11.2974 16.1591 11.373C16.1861 11.4702 16.4399 11.5944 16.7153 11.4486" stroke="black" stroke-width="0.01"/>
<path d="M16.4619 11.5227C16.4619 11.5227 16.6887 11.8575 17.0235 11.4957" stroke="black" stroke-width="0.01"/>
<path d="M16.8506 11.6443C16.8506 11.6443 17.126 11.7901 17.3528 11.4121" stroke="black" stroke-width="0.01"/>
<path d="M17.0615 11.6729C17.0615 11.6729 17.1965 11.7863 17.4774 11.6351" stroke="black" stroke-width="0.01"/>
<path d="M17.8662 11.4865C17.8662 11.4865 18.282 11.5728 18.309 11.5999" stroke="black" stroke-width="0.01"/>
<path d="M18.0225 11.3966C18.0279 11.3966 18.3141 11.4074 18.3141 11.4074" stroke="black" stroke-width="0.01"/>
<path d="M17.8438 11.2311C17.8438 11.2311 18.3406 11.1987 18.4054 11.3013" stroke="black" stroke-width="0.01"/>
<path d="M17.6279 11.0745C17.6279 11.0745 18.3246 11.1015 18.357 11.1393" stroke="black" stroke-width="0.01"/>
<path d="M17.7852 11.789C17.7852 11.789 17.904 11.7566 17.9202 11.7729" stroke="black" stroke-width="0.01"/>
<path d="M17.5146 12.0812C17.5146 12.0812 17.6713 12.2162 17.8711 12.1568" stroke="black" stroke-width="0.01"/>
<path d="M17.6006 12.3104C17.6006 12.3104 17.7788 12.3914 17.9894 12.3427" stroke="black" stroke-width="0.01"/>
<path d="M17.6602 12.4404C17.6602 12.4404 17.8384 12.5592 17.9572 12.5376" stroke="black" stroke-width="0.01"/>
<path d="M17.5791 12.5117C17.5791 12.5117 17.7033 12.6035 17.7087 12.6521" stroke="black" stroke-width="0.01"/>
<path d="M17.4062 12.6201C17.4062 12.6201 17.4441 12.8145 17.5791 12.8847" stroke="black" stroke-width="0.01"/>
<path d="M17.3152 12.7068C17.3152 12.7068 17.2558 12.9607 17.407 13.1173" stroke="black" stroke-width="0.01"/>
<path d="M17.1583 12.9081C17.1583 12.9135 17.1475 13.0269 17.1529 13.0378" stroke="black" stroke-width="0.01"/>
<path d="M16.1865 11.9227L16.4781 11.9065C16.4781 11.9065 16.5861 11.8633 16.5105 11.7931" stroke="black" stroke-width="0.01"/>
<path d="M16.5479 11.8582C16.5533 11.8582 16.8233 11.8798 16.8935 11.9608C16.9637 12.0418 17.0501 12.2038 17.0987 12.2308C17.1473 12.2578 17.1581 12.22 17.1581 12.22" stroke="black" stroke-width="0.01"/>
<path d="M17.0394 12.1772C17.0394 12.1772 16.8936 12.4256 17.0071 12.5012" stroke="black" stroke-width="0.01"/>
<path d="M16.9581 12.4528C16.9581 12.4528 16.8285 12.6256 16.9311 12.712" stroke="black" stroke-width="0.01"/>
<path d="M16.905 12.6882C16.905 12.6882 16.8024 12.8557 16.9267 12.969" stroke="black" stroke-width="0.01"/>
<path d="M16.8586 12.2484C16.8517 12.2554 16.7332 12.339 16.6914 12.3181" stroke="black" stroke-width="0.01"/>
<path d="M16.7334 12.5117C16.7334 12.5117 16.7822 12.5604 16.824 12.5535" stroke="black" stroke-width="0.01"/>
<path d="M16.7393 12.7626L16.8171 12.816" stroke="black" stroke-width="0.01"/>
<path d="M16.75 12.9577L16.8173 12.9983" stroke="black" stroke-width="0.01"/>
<path d="M15.5303 10.3094C15.5303 10.3094 15.6722 10.3833 15.7858 10.3094C15.8994 10.2356 16.4446 9.95735 16.5865 9.91193C16.7285 9.8665 16.808 9.60527 16.8364 9.4917" stroke="black" stroke-width="0.01"/>
<path d="M16.7285 9.80201L17.5235 9.56917C17.5235 9.56917 17.6542 9.46127 17.6598 9.26251" stroke="black" stroke-width="0.01"/>
<path d="M17.6025 9.47624C17.6025 9.47624 18.3976 9.39674 18.3976 9.10144" stroke="black" stroke-width="0.01"/>
<path d="M18.2734 9.30537C18.2734 9.30537 19.1082 9.07822 19.1877 8.99304" stroke="black" stroke-width="0.01"/>
<path d="M15.9453 10.4922C15.9453 10.4922 16.4507 10.231 16.5302 10.2026C16.6097 10.1742 16.7914 9.94702 16.5189 9.94702" stroke="black" stroke-width="0.01"/>
<path d="M16.1895 10.5964C16.1951 10.5964 16.604 10.3295 16.7403 10.2954C16.8141 10.1932 16.7744 10.0853 16.6494 10.108" stroke="black" stroke-width="0.01"/>
<path d="M16.7736 10.2248C16.7849 10.2191 16.995 10.2134 16.9212 10.3781C16.8134 10.4576 16.3477 10.6904 16.3477 10.6904" stroke="black" stroke-width="0.01"/>
<path d="M16.666 10.0498L17.5519 9.75447C17.5519 9.75447 17.6257 9.60114 17.5178 9.57843" stroke="black" stroke-width="0.01"/>
<path d="M18.256 9.31207C18.256 9.31775 18.3696 9.38022 18.3015 9.48243C18.1765 9.55626 17.5859 9.69822 17.5859 9.69822" stroke="black" stroke-width="0.01"/>
<path d="M19.153 9.21918L18.3184 9.45207" stroke="black" stroke-width="0.01"/>
<path d="M19.0911 9.40497L18.3643 9.62644" stroke="black" stroke-width="0.01"/>
<path d="M19.0284 9.58777L18.3867 9.78074" stroke="black" stroke-width="0.01"/>
<path d="M18.9086 9.77051C18.8916 9.77051 18.4316 9.91248 18.4316 9.91248" stroke="black" stroke-width="0.01"/>
<path d="M18.807 9.91296L18.5117 10.0322" stroke="black" stroke-width="0.01"/>
<path d="M18.7331 10.0709C18.7217 10.0709 18.4775 10.1788 18.4775 10.1788" stroke="black" stroke-width="0.01"/>
<path d="M18.6588 10.2041L18.4316 10.312" stroke="black" stroke-width="0.01"/>
<path d="M18.2676 10.4457C18.2676 10.4457 18.296 10.4571 18.2903 10.4912" stroke="black" stroke-width="0.01"/>
<path d="M17.6942 10.7617C17.6942 10.7617 17.7907 10.7957 17.6999 10.8866C17.6545 10.9491 17.5238 10.932 17.4443 11.0456" stroke="black" stroke-width="0.01"/>
<path d="M18.3127 9.48865C18.3127 9.48865 18.432 9.51704 18.3411 9.67037C18.1026 9.76123 17.6199 9.90888 17.6199 9.90888C17.6199 9.90888 17.5972 9.94863 17.5347 9.9827C17.4723 10.0168 16.7852 10.2098 16.7852 10.2098" stroke="black" stroke-width="0.01"/>
<path d="M18.353 9.66211C18.353 9.66211 18.4836 9.7189 18.353 9.81544C18.2054 9.90062 17.6886 10.0596 17.6886 10.0596C17.6886 10.0596 17.6829 10.105 17.6602 10.1221C17.6375 10.1391 16.9561 10.3663 16.9561 10.3663" stroke="black" stroke-width="0.01"/>
<path d="M18.3862 9.81384C18.3862 9.81384 18.5225 9.8536 18.4033 9.96717C18.2613 10.0523 17.807 10.2057 17.807 10.2057C17.807 10.2057 17.7616 10.2625 17.6877 10.2852C17.6139 10.3079 17.1426 10.501 17.1426 10.501" stroke="black" stroke-width="0.01"/>
<path d="M18.4207 9.96875C18.4605 9.98579 18.5684 10.0028 18.4378 10.105C18.2844 10.1732 17.9096 10.3208 17.9096 10.3208L17.8756 10.3833L17.2793 10.6388" stroke="black" stroke-width="0.01"/>
<path d="M18.4548 10.1236C18.4548 10.1236 18.5116 10.1917 18.3866 10.2712C18.2504 10.3451 17.9551 10.4586 17.9551 10.4586" stroke="black" stroke-width="0.01"/>
<path d="M18.387 10.2816C18.387 10.2816 18.4494 10.3213 18.37 10.3781C18.2791 10.4235 17.9213 10.6109 17.9213 10.6109L17.6885 10.7643" stroke="black" stroke-width="0.01"/>
<path d="M17.5693 9.76117C17.5693 9.76685 17.6659 9.84635 17.6318 9.93721C17.717 9.99968 17.6999 10.0678 17.6999 10.0678C17.6999 10.0678 17.8192 10.136 17.8022 10.2325C17.9214 10.2609 17.9158 10.329 17.9158 10.329L17.876 10.3915C17.876 10.3915 17.9952 10.3858 17.893 10.5392C17.9555 10.5732 17.9271 10.613 17.9271 10.613" stroke="black" stroke-width="0.01"/>
<path d="M17.8927 10.5417C17.8757 10.5417 17.4782 10.6894 17.376 10.7803" stroke="black" stroke-width="0.01"/>
<path d="M16.9326 10.3683C16.9326 10.3683 17.0519 10.3626 17.0349 10.4933C17.1711 10.4478 17.1427 10.5784 17.1427 10.5784C17.1427 10.5784 17.3017 10.516 17.2734 10.7147C17.3756 10.692 17.3585 10.7942 17.3585 10.7942C17.3585 10.7942 17.4494 10.7885 17.4494 10.8397C17.5119 10.7829 17.58 10.8113 17.58 10.8113C17.58 10.8113 17.6254 10.7488 17.6879 10.7658" stroke="black" stroke-width="0.01"/>
<path d="M17.0407 10.4891C17.0407 10.5004 16.5068 10.7957 16.5068 10.7957" stroke="black" stroke-width="0.01"/>
<path d="M17.1434 10.582L16.7402 10.8319" stroke="black" stroke-width="0.01"/>
<path d="M17.2789 10.7059C17.2789 10.7116 16.9268 10.916 16.9268 10.916" stroke="black" stroke-width="0.01"/>
<path d="M17.3584 10.7864C17.3584 10.7864 17.1085 10.9909 17.0518 10.9795" stroke="black" stroke-width="0.01"/>
<path d="M17.4438 10.8515C17.4438 10.8515 17.3019 10.9594 17.1826 11.0105" stroke="black" stroke-width="0.01"/>
<path d="M17.592 10.805C17.592 10.805 17.6374 10.8618 17.3535 11.0094" stroke="black" stroke-width="0.01"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 89 KiB

View File

@ -0,0 +1,13 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="black"/>
<path d="M20 6H4V12H20V6Z" fill="#CE1126"/>
<path d="M12.0074 9.67376C12.3608 9.71188 12.7006 9.83425 12.9998 10.0311C13.2989 10.2279 13.549 10.4938 13.7303 10.8075C13.9115 11.1212 14.0188 11.474 14.0435 11.8378C14.0683 12.2016 14.0099 12.5663 13.8729 12.9028C13.736 13.2393 13.5243 13.5383 13.2547 13.776C12.9852 14.0136 12.6653 14.1833 12.3205 14.2715C11.9757 14.3597 11.6156 14.3639 11.2689 14.2839C10.9223 14.2039 10.5986 14.0419 10.3238 13.8107L9.99023 14.2284C10.3285 14.5129 10.7268 14.7123 11.1535 14.8108C11.5802 14.9093 12.0234 14.904 12.4477 14.7954C12.8721 14.6869 13.2658 14.478 13.5976 14.1856C13.9293 13.8931 14.1899 13.5251 14.3584 13.1109C14.527 12.6968 14.5989 12.2479 14.5684 11.8002C14.5379 11.3524 14.4059 10.9182 14.1828 10.5321C13.9598 10.146 13.6519 9.81879 13.2837 9.57652C12.9156 9.33424 12.4974 9.18364 12.0624 9.13672L12.0074 9.67376Z" fill="#F9D616"/>
<path d="M14.7947 11.6986C14.8142 11.902 14.8142 12.1069 14.7947 12.3102L14.2129 12.2514C14.2287 12.0872 14.2287 11.9217 14.2129 11.7574L14.7947 11.6986Z" fill="#F9D616"/>
<path d="M10.7686 10.5861H12.7699L11.1508 11.7934L11.7692 9.83984L12.3877 11.7934L10.7686 10.5861Z" fill="#F9D616"/>
<path d="M14.2198 14.6536C14.3694 14.8021 14.5708 14.9486 14.7169 15.0817C14.863 15.2147 14.975 15.3254 15.0656 15.4765C15.1983 15.6981 15.0492 15.949 14.8425 15.8017C14.7306 15.7221 14.6604 15.5071 14.4891 15.3291C14.3622 15.2183 14.2622 15.1021 13.9433 15.046C13.928 15.0433 13.9236 15.0101 13.9356 14.9956L14.2198 14.6536Z" fill="#F9D616"/>
<path d="M12.0166 13.9147L12.8057 14.3936L12.9773 15.0767L13.8831 15.0063L14.2811 14.5274L12.8057 13.4781L12.0166 13.9147Z" fill="black"/>
<path d="M13.8998 14.947C12.885 14.2545 12.2398 13.8805 11.2673 13.313C10.8853 13.0901 10.2921 12.5298 10.7601 11.5922C10.7895 12.2077 13.1597 13.8972 14.1612 14.6317L13.8998 14.947Z" fill="#F9D616"/>
<path d="M11.4219 12.7028C12.2031 13.4585 13.187 14.0749 14.0648 14.7562" stroke="black" stroke-width="0.1" stroke-linecap="round"/>
<path d="M14.3176 14.9325C14.3393 14.9325 14.3569 14.9145 14.3569 14.8922C14.3569 14.8699 14.3393 14.8519 14.3176 14.8519C14.2959 14.8519 14.2783 14.8699 14.2783 14.8922C14.2783 14.9145 14.2959 14.9325 14.3176 14.9325Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,22 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#00247D"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="white"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="#CF142B" stroke-width="0.5"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="white"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="#CF142B" stroke-width="0.5"/>
<path d="M4 10.5H13V6H16V12H4V10.5Z" fill="#00247D"/>
<path d="M14.709 12.3106C14.709 14.543 14.8871 15.3357 15.4981 15.9478C16.1091 16.5598 16.3406 16.6562 16.5109 16.75C16.7074 16.6418 16.9339 16.523 17.4877 15.9692C18.0353 15.4215 18.3002 14.632 18.3002 12.2725C17.9019 12.443 17.7035 12.4992 17.3551 12.4982C17.097 12.5235 16.699 12.3582 16.4609 12.25C16.3054 12.349 16.0797 12.4671 15.6742 12.4804C15.2058 12.5 15.0574 12.4244 14.709 12.3106L14.709 12.3106Z" fill="#CCCC33"/>
<path d="M14.8168 12.4531C14.8168 13.1437 14.776 14.085 14.9219 14.6296C15.0684 15.1765 15.1021 15.2566 15.2123 15.4475L17.7804 15.4284C17.939 15.1537 17.947 14.9835 18.0646 14.5444C18.1819 14.1069 18.2115 13.1318 18.2149 12.4054C17.9567 12.5363 17.6185 12.629 17.2902 12.5883C17.0271 12.5692 16.784 12.5119 16.5008 12.3594C16.2552 12.4997 16.1696 12.5637 15.7641 12.5801C15.4483 12.5949 15.1925 12.6193 14.8168 12.4531L14.8168 12.4531Z" fill="white"/>
<path d="M15.2178 15.4297C15.4006 15.7964 16.2623 16.4992 16.5143 16.6447C16.8018 16.4787 17.562 15.7842 17.7739 15.4297H15.2178H15.2178Z" fill="#99CCFF"/>
<path d="M16.5638 13.4724C16.645 13.6545 16.9054 13.8555 16.9769 13.9541C16.8858 14.0526 16.8676 14.0419 16.8796 14.225C17.038 14.067 17.0408 14.0505 17.1427 14.0744C17.3659 14.2868 17.1827 14.7428 16.9982 14.8419C16.8138 14.9477 16.8473 14.8383 16.5709 14.9708C16.6976 15.0741 16.8444 14.9557 16.9644 14.9873C17.0296 15.0611 16.9334 15.1955 16.9841 15.3221C17.0901 15.3124 17.0774 15.1083 17.1021 15.0343C17.1795 14.7631 17.6453 14.574 17.669 14.3253C17.7672 14.2814 17.8653 14.3116 17.9847 14.3755C17.9253 14.1425 17.7286 14.145 17.6758 14.0722C17.5503 13.8894 17.4391 13.6807 17.171 13.6266C16.9675 13.5855 16.9827 13.639 16.8523 13.5542C16.7711 13.4939 16.5243 13.3799 16.5638 13.4724L16.5638 13.4724Z" fill="#FF9900"/>
<path d="M15.9126 14.2447C16.0435 14.0911 16.1084 13.7778 16.1663 13.6714C16.3003 13.7021 16.2988 13.7225 16.463 13.6269C16.2425 13.5672 16.2259 13.5725 16.2005 13.4754C16.2932 13.1881 16.8017 13.1295 16.9798 13.2387C17.164 13.3447 17.0469 13.3676 17.299 13.5387C17.3356 13.3836 17.1571 13.3152 17.1304 13.1992C17.1684 13.1098 17.338 13.1281 17.4317 13.0263C17.3731 12.9414 17.1898 13.0475 17.1096 13.0613C16.822 13.1226 16.429 12.8184 16.1873 12.9146C16.1007 12.8524 16.0828 12.7555 16.0863 12.625C15.898 12.784 15.9923 12.9486 15.9494 13.0271C15.8385 13.2183 15.697 13.4095 15.772 13.6608C15.829 13.8515 15.8714 13.8137 15.8537 13.9633C15.8357 14.0599 15.8453 14.3211 15.9126 14.2447V14.2447Z" fill="#FF9900"/>
<path d="M16.9764 14.3558C16.7709 14.3284 16.456 14.4376 16.3306 14.4453C16.2889 14.3202 16.3079 14.3108 16.1372 14.2263C16.1976 14.4371 16.211 14.4479 16.137 14.5188C15.8311 14.5919 15.5155 14.2072 15.5214 14.0054C15.5212 13.8003 15.6024 13.884 15.6256 13.5898C15.4674 13.6402 15.4983 13.8212 15.408 13.9029C15.3081 13.9182 15.2368 13.7704 15.0969 13.7466C15.0511 13.8383 15.2411 13.933 15.2949 13.9913C15.4988 14.1942 15.429 14.6722 15.6404 14.8197C15.6293 14.9226 15.5516 14.9872 15.4326 15.0519C15.6728 15.1233 15.7718 14.9612 15.8644 14.9556C16.0935 14.9472 16.3383 14.9638 16.525 14.7726C16.6668 14.6274 16.6109 14.6123 16.7543 14.5494C16.8503 14.5141 17.0799 14.3712 16.9764 14.3558L16.9764 14.3558Z" fill="#FF9900"/>
<path d="M17.1069 13.7216C17.1303 13.7216 17.1493 13.7035 17.1493 13.6812C17.1493 13.6589 17.1303 13.6407 17.1069 13.6407C17.0834 13.6407 17.0645 13.6589 17.0645 13.6812C17.0645 13.7035 17.0834 13.7216 17.1069 13.7216Z" fill="white"/>
<path d="M15.8892 13.6726C15.8782 13.6528 15.8526 13.6453 15.8319 13.6557C15.8111 13.6661 15.8032 13.6906 15.8142 13.7103C15.8251 13.7301 15.8508 13.7376 15.8715 13.7272C15.8922 13.7168 15.9001 13.6923 15.8892 13.6726Z" fill="white"/>
<path d="M16.4748 14.6727C16.4627 14.6918 16.4692 14.7167 16.4893 14.7282C16.5094 14.7397 16.5354 14.7335 16.5475 14.7144C16.5596 14.6952 16.5531 14.6704 16.533 14.6589C16.5129 14.6474 16.4868 14.6536 16.4748 14.6727Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#072B5F"/>
<path d="M12.3191 14.7006L12.2407 14.6559L12.0083 14.7117L11.805 14.589V14.6364L11.7556 14.5722L11.8137 14.5164L11.805 14.349H11.8718L11.9125 14.2374L11.9589 14.2179L11.9212 14.1621L11.9793 14.1425L11.9705 14.0588L11.9125 14.0309L11.988 14.0225L11.9415 13.8188L11.8253 13.7072L11.7556 13.7351L11.7847 13.8272H11.5436L11.3403 13.7435L11.2618 13.7072L10.8755 13.6235L10.8465 13.6682L10.71 13.6793H10.6722L10.6141 13.7714L10.4485 13.6598L10.3614 13.6877L10.373 13.763L10.1581 13.6514L10.1494 13.724L9.93735 13.6319L9.92573 13.6403L9.82116 13.6793L9.80083 13.604L9.54813 13.484L9.27801 13.4003L9.22863 13.1854V13.138L9.12407 12.9539L9.17054 12.7306L9.0834 12.7027L9.05436 12.6079L9.19959 12.5911H9.13278L9.14149 12.4516L8.92946 12.5158L8.92075 12.46L8.8917 12.5632L8.77552 12.6079L8.6971 12.5353L8.66805 12.46L8.639 12.3121L8.70581 12.2646L8.73485 12.3009L8.75519 12.2563L8.70581 11.9214L8.78423 11.9382L8.82199 11.5866L8.83361 11.5754L8.90913 11.5308L8.81328 11.5392L8.77552 11.4555L8.94979 11.2685L8.79295 11.2406L8.67676 11.3522L8.63029 11.2239L8.56058 11.3159L8.54315 11.2518L8.45602 11.2797L8.39792 11.3076L8.4444 11.1402L8.40664 11.1206L8.42697 11.0732L8.37759 11.0844L8.36888 10.9895H8.55187L8.54315 10.9448H8.48506L8.37759 10.7663L8.3195 10.7858L8.28174 10.7216L8.26141 10.7774L8.20332 10.7384L8.26141 10.7021L8.17427 10.6742L8.19461 10.6267L8.1249 10.5905L8.10747 10.4426L8.03776 10.4231L8.07842 10.3951L8 10.1998L8.00871 10.1357L8.03776 9.94033H8.09585L8.07842 10.0603L8.22365 10.2556L8.32822 10.3868L8.54315 10.4426V10.451L8.5722 10.4035L8.68838 10.5347L8.74647 10.5988L8.77552 10.6267L9.10373 10.7774L9.16183 10.8053L9.18216 10.8221L9.3361 11.0006L9.42324 10.9616L10.0622 10.8221L10.0826 10.7105L10.129 10.73L10.1203 10.6937L10.1494 10.6742L10.2859 10.6267V10.4984L10.3324 10.451L10.3905 10.2361L10.3614 10.1524L10.4979 9.83709V9.78965V9.64177H10.5647L10.6432 9.53016L10.739 9.50225L10.7506 9.39901L10.8842 9.24276L10.9423 9.27066L11.2154 9.17579L11.2444 9.14789L11.3025 9.09208L11.2822 9H11.3402L11.3693 9.14789L11.6685 9.21485L11.7178 9.16742L11.7382 9.17579L11.9996 9.23159L12.0083 9.22322L12.1448 9.14789L12.1535 9.23159L12.2697 9.24276L12.3656 9.3153L12.3859 9.33484L12.5311 9.45482L12.7054 9.46598L12.8129 9.48272L12.9465 9.43808L12.9581 9.52179L13.0162 9.55806L13.0627 9.47435H13.1207L13.1614 9.6892L13.2079 9.69757L13.1992 9.77291L13.1905 9.78128H13.2079L13.3241 9.72548L13.4315 9.6892L13.7307 9.78966L13.7888 9.77291L13.8091 9.87336L13.8876 9.88453L13.8672 9.83709H13.934L13.9544 9.94033L14.0328 9.85662L14.2158 9.96823L14.2651 10.1719L14.1867 10.1915L14.2071 10.3477L14.2361 10.3952L14.4394 10.889L14.3319 10.9811L14.3232 11.0927L14.2361 11.196L14.332 11.2601L14.2942 11.288L14.3813 11.3718L14.5149 11.3913L14.5556 11.4471L14.5934 11.5196L14.6892 11.5587L14.8054 11.4834L14.8838 11.4917L14.788 11.6229L14.8838 11.8656L14.7676 11.9577L14.817 12.1056L14.788 12.2367L14.8461 12.3121L15 12.34L14.8461 12.5437L14.8751 12.58L14.9129 12.619L14.8461 12.7195L14.9129 12.7585L14.573 13.0264L14.6515 13.2134L14.6311 13.325L14.5149 13.3612L14.4859 13.4561L14.3523 13.5119L14.3116 13.6319L14.2826 13.6961L14.4191 13.763L14.2158 13.7798L14.2651 13.883L14.1664 13.9751L14.0124 14.003L13.9631 14.0867L14.0793 14.1425L13.8585 14.3378L13.9253 14.4411L13.751 14.4048L13.5564 14.5164L13.295 14.6364L13.2369 14.7201L13.1992 14.6922L13.2369 14.6085L13.0627 14.6727L13.0249 14.6085L12.7635 14.7564L12.6473 14.7201L12.4353 14.7564L12.3772 14.7285M12.3859 9.33484L12.3656 9.3153L12.3568 9.31531V9.32647H12.3772L12.3859 9.33484ZM8.24108 10.8611L8.2527 10.7942L8.14523 10.73L8.24108 10.8611Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,21 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M20 6H4V11H20V6Z" fill="black"/>
<path d="M8.52148 10.6943L11.9997 9.94531V11.4433L8.52148 10.6943Z" fill="#FCD116"/>
<path d="M20 11H4V13H20V11Z" fill="#0072C6"/>
<path d="M4 6V18H12" fill="#CE1126"/>
<path d="M20 6V18H12" fill="#CE1126"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_112202)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.05469 6H20.9445V17.9883H3.05469V6Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.09414 6.01404H20.9277V11.0789H3.0918L3.09414 6.01404Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.36621 10.7625H18.2021V13.4297H6.36621V10.7625Z" fill="#0061FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9326 6.0422V18H12.0076L20.9326 6.03986V6.0422ZM3.08496 6.0422V18H12.0076L3.08496 6.03986V6.0422Z" fill="#E20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1891 10.7648L14.3984 10.3125L15.9195 9.16405L14.0516 9.43124L15.0125 7.80233L13.3555 8.76327L13.6555 6.86718L12.5328 8.36249L12.0805 6.62811L11.5719 8.41639L10.4516 6.89296L10.7727 8.84296L9.11328 7.82811L10.0742 9.45702L8.26016 9.16405L9.75547 10.2844L7.88281 10.7648H16.1867H16.1891Z" fill="#FFD600"/>
</g>
<defs>
<clipPath id="clip0_14099_112202">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,187 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#74ACDF"/>
<path d="M20 11H4V14H20V11Z" fill="white"/>
<path d="M11.9287 12.0284L12.5689 13.3922C12.5689 13.3922 12.5799 13.4183 12.5977 13.4111C12.6155 13.4039 12.6044 13.3779 12.6044 13.3779L12.0709 11.9708M12.0556 12.5015C12.0478 12.7089 12.1782 12.823 12.1612 13.0082C12.1442 13.1934 12.2482 13.2981 12.2723 13.3702C12.2965 13.4422 12.2462 13.4853 12.2679 13.4955C12.2895 13.5058 12.3369 13.4489 12.3215 13.3465C12.306 13.244 12.2265 13.2136 12.2452 12.9874C12.2639 12.7612 12.1506 12.7085 12.1782 12.5021" fill="#F6B40E"/>
<path d="M11.9287 12.0284L12.5689 13.3922C12.5689 13.3922 12.5799 13.4183 12.5977 13.4111C12.6155 13.4039 12.6044 13.3779 12.6044 13.3779L12.0709 11.9708M12.0556 12.5015C12.0478 12.7089 12.1782 12.823 12.1612 13.0082C12.1442 13.1934 12.2482 13.2981 12.2723 13.3702C12.2965 13.4422 12.2462 13.4853 12.2679 13.4955C12.2895 13.5058 12.3369 13.4489 12.3215 13.3465C12.306 13.244 12.2265 13.2136 12.2452 12.9874C12.2639 12.7612 12.1506 12.7085 12.1782 12.5021" stroke="#85340A" stroke-width="0.01"/>
<path d="M12.0964 12.5359C12.1066 12.735 12.2221 12.8232 12.1994 13.0048C12.2492 12.8612 12.1291 12.7499 12.136 12.5379M11.9639 12.0153L12.4023 12.952L12.0349 11.9865" fill="#85340A"/>
<path d="M12 12.6116C12.3452 12.6116 12.625 12.338 12.625 12.0005C12.625 11.663 12.3452 11.3894 12 11.3894C11.6548 11.3894 11.375 11.663 11.375 12.0005C11.375 12.338 11.6548 12.6116 12 12.6116Z" fill="#F6B40E" stroke="#85340A" stroke-width="0.01"/>
<path d="M12.213 11.8699C12.1704 11.8699 12.1295 11.888 12.1055 11.9256C12.1535 11.9679 12.2597 11.9725 12.3319 11.9207C12.3006 11.8878 12.2557 11.8699 12.213 11.8699L12.213 11.8699ZM12.2123 11.8795C12.2539 11.8788 12.2927 11.8974 12.2981 11.9159C12.25 11.9676 12.1732 11.9632 12.1252 11.9256C12.1462 11.8927 12.18 11.8801 12.2123 11.8795V11.8795Z" fill="#843511"/>
<path d="M11.9043 12.0847C11.8837 12.0884 11.8691 12.1062 11.8691 12.1267C11.8691 12.15 11.8889 12.1686 11.9127 12.1686C11.9268 12.1686 11.9398 12.1621 11.9479 12.1507C11.9645 12.1629 11.9876 12.1642 11.9999 12.1645C12.0018 12.1645 12.0043 12.1645 12.0055 12.1645C12.0179 12.1642 12.0409 12.1629 12.0576 12.1507C12.0657 12.1621 12.0786 12.1686 12.0927 12.1686C12.1166 12.1686 12.1363 12.15 12.1363 12.1267C12.1363 12.1062 12.1217 12.0884 12.1012 12.0847C12.1127 12.0887 12.1202 12.0996 12.1202 12.1115C12.1202 12.1271 12.1073 12.1397 12.0913 12.1397C12.076 12.1397 12.0634 12.1278 12.0625 12.1129C12.0578 12.1221 12.0392 12.1493 12.0027 12.1507C11.9662 12.1493 11.9477 12.1221 11.943 12.1129C11.9421 12.1278 11.9295 12.1397 11.9141 12.1397C11.8982 12.1397 11.8853 12.1271 11.8853 12.1115C11.8853 12.0996 11.8928 12.0887 11.9043 12.0847H11.9043Z" fill="#85340A"/>
<path d="M11.9512 12.2097C11.9031 12.2097 11.8841 12.2523 11.8408 12.2805C11.8649 12.2712 11.8838 12.2526 11.9175 12.2338C11.9511 12.215 11.9798 12.2379 11.999 12.2379H11.9997C12.0189 12.2379 12.0476 12.215 12.0813 12.2338C12.115 12.2526 12.1346 12.2712 12.1586 12.2805C12.1154 12.2523 12.0956 12.2097 12.0475 12.2097C12.0379 12.2097 12.0189 12.2148 11.9997 12.2242H11.999C11.9798 12.2148 11.9608 12.2097 11.9512 12.2097Z" fill="#85340A"/>
<path d="M11.9356 12.2649C11.9166 12.2657 11.8915 12.2695 11.8555 12.28C11.942 12.2612 11.9611 12.2897 11.9996 12.2897H12.0003C12.0388 12.2897 12.0579 12.2612 12.1444 12.28C12.0483 12.2518 12.0292 12.2704 12.0003 12.2704H11.9996C11.9816 12.2704 11.9673 12.2635 11.9356 12.2649H11.9356Z" fill="#85340A"/>
<path d="M11.8591 12.2803C11.8535 12.2804 11.8474 12.2804 11.8408 12.281C11.9418 12.2904 11.8933 12.347 11.999 12.347H11.9997C12.1055 12.347 12.0577 12.2904 12.1586 12.281C12.0529 12.2716 12.0863 12.3326 11.9997 12.3326H11.999C11.9179 12.3326 11.9429 12.2793 11.8591 12.2803H11.8591Z" fill="#85340A"/>
<path d="M12.0862 12.4311C12.0862 12.3843 12.0474 12.3464 11.9996 12.3464C11.9519 12.3464 11.9131 12.3843 11.9131 12.4311C11.9226 12.3919 11.9585 12.3642 11.9996 12.3642C12.0409 12.3642 12.0767 12.3919 12.0862 12.4311Z" fill="#85340A"/>
<path d="M11.6113 11.8653C11.7219 11.7713 11.8613 11.7572 11.9383 11.8277C11.9571 11.8524 11.9692 11.8787 11.9741 11.9063C11.9838 11.9598 11.9667 12.0176 11.9238 12.0769C11.9286 12.0769 11.9383 12.0816 11.9431 12.0863C11.9812 12.0149 11.9947 11.9416 11.9822 11.8719C11.9789 11.8537 11.9738 11.8357 11.9671 11.8183C11.8614 11.7337 11.7172 11.7243 11.6114 11.8653L11.6113 11.8653Z" fill="#85340A"/>
<path d="M11.7849 11.8386C11.8473 11.8386 11.8618 11.8528 11.8906 11.8763C11.9195 11.8998 11.9339 11.895 11.9387 11.8998C11.9435 11.9045 11.9387 11.9185 11.9291 11.9138C11.9195 11.9091 11.9002 11.8998 11.8714 11.8762C11.8426 11.8527 11.8138 11.8527 11.7849 11.8527C11.6984 11.8527 11.6503 11.9232 11.6407 11.9185C11.6311 11.9138 11.6888 11.8386 11.7849 11.8386L11.7849 11.8386Z" fill="#85340A"/>
<path d="M11.7874 11.9545C11.8113 11.9545 11.8307 11.9355 11.8307 11.9122C11.8307 11.8888 11.8113 11.8699 11.7874 11.8699C11.7635 11.8699 11.7441 11.8888 11.7441 11.9122C11.7441 11.9355 11.7635 11.9545 11.7874 11.9545Z" fill="#85340A"/>
<path d="M11.6689 11.9418C11.7507 12.0029 11.8324 11.9982 11.8805 11.97C11.9286 11.9418 11.9286 11.9324 11.919 11.9324C11.9094 11.9324 11.8998 11.9418 11.8613 11.9606C11.8228 11.9794 11.7651 11.9794 11.669 11.9418L11.6689 11.9418Z" fill="#85340A"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_112221)">
<path d="M20 6.00006H4V10.0001H20V6.00006Z" fill="#74ACDF"/>
<path d="M20 10.0001H4V14.0001H20V10.0001Z" fill="white"/>
<path d="M20 14.0001H4V18.0001H20V14.0001Z" fill="#74ACDF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7656 11.9118C12.7656 12.0817 12.6939 12.2445 12.5662 12.3646C12.4386 12.4847 12.2655 12.5522 12.0849 12.5522C11.9044 12.5522 11.7313 12.4847 11.6037 12.3646C11.476 12.2445 11.4043 12.0817 11.4043 11.9118C11.4043 11.742 11.476 11.5791 11.6037 11.459C11.7313 11.339 11.9044 11.2715 12.0849 11.2715C12.2655 11.2715 12.4386 11.339 12.5662 11.459C12.6939 11.5791 12.7656 11.742 12.7656 11.9118Z" fill="#FFD600" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path d="M12.277 11.4551C12.191 11.4358 12.1029 11.4629 12.0751 11.461C12.0369 11.461 11.9405 11.43 11.873 11.461" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path d="M11.7666 11.5501C11.8521 11.4945 11.9475 11.57 11.9729 11.5558C12.0421 11.5135 12.1063 11.5213 12.1728 11.5597C12.2154 11.5831 12.29 11.4912 12.3768 11.5656" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6711 11.6466C11.7163 11.6125 11.8635 11.6112 12.0148 11.6913C12.0376 11.6861 12.0523 11.6712 12.0334 11.6505C11.9196 11.6138 11.7871 11.5673 11.665 11.6022C11.6316 11.6241 11.64 11.6383 11.6711 11.6466Z" fill="#EFC000" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4764 11.6466C12.4311 11.6125 12.284 11.6112 12.1327 11.6913C12.1099 11.6861 12.0952 11.6712 12.114 11.6505C12.2279 11.6138 12.3603 11.5673 12.4825 11.6022C12.5158 11.6241 12.5075 11.6383 12.4764 11.6466Z" fill="#EFC000" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6104 11.7594C11.7595 11.6703 11.9566 11.7168 12.0393 11.7651C11.9185 11.7439 11.9164 11.7342 11.8289 11.7323C11.7672 11.7342 11.6762 11.7284 11.6104 11.7594Z" fill="#F0BF00" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.9517 11.7499C11.8787 11.8914 11.7518 11.8933 11.6621 11.7422" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9138 11.7936C11.9034 11.8045 11.8851 11.8138 11.863 11.8195C11.8408 11.8251 11.8166 11.8266 11.7957 11.8237C11.7747 11.8208 11.7587 11.8137 11.7513 11.8039C11.7438 11.7942 11.7454 11.7826 11.7558 11.7717C11.7662 11.7608 11.7844 11.7515 11.8066 11.7458C11.8287 11.7402 11.853 11.7387 11.8739 11.7416C11.8949 11.7445 11.9108 11.7516 11.9183 11.7613C11.9258 11.7711 11.9241 11.7827 11.9138 11.7936Z" fill="black" fill-opacity="0.36803"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8055 11.765C11.8066 11.7675 11.8056 11.7706 11.8027 11.7735C11.7998 11.7764 11.7953 11.779 11.7902 11.7806C11.785 11.7822 11.7797 11.7828 11.7753 11.7821C11.7709 11.7815 11.7678 11.7797 11.7667 11.7771C11.7657 11.7746 11.7667 11.7715 11.7696 11.7686C11.7724 11.7657 11.777 11.7631 11.7821 11.7615C11.7872 11.7599 11.7926 11.7593 11.797 11.76C11.8014 11.7606 11.8045 11.7624 11.8055 11.765Z" fill="#FFD700"/>
<path d="M11.9748 11.9941C11.8907 12.1255 12.0053 12.0329 12.024 12.0709C12.0567 12.1061 12.0894 12.0978 12.1087 12.0709C12.1281 12.0405 12.2501 12.1283 12.1668 11.9982" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path d="M11.8252 12.2108C11.8974 12.2033 12.0188 12.152 12.0618 12.1942C12.0991 12.1562 12.23 12.2053 12.3141 12.2108C12.253 12.2455 12.1294 12.2219 12.0707 12.2586C12.0134 12.2262 11.8871 12.2559 11.8252 12.2108V12.2108Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.9414 12.2715C12.0507 12.313 12.0753 12.3067 12.1935 12.2755C12.1689 12.3357 12.1062 12.3484 12.0707 12.3462C12.0338 12.344 11.9836 12.3482 11.9414 12.2715Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8554 12.6121C11.7765 12.8042 11.863 12.8955 11.8243 12.9989C11.7872 13.0985 11.6256 13.3454 11.7485 13.4526C11.8463 13.4568 11.7317 13.3166 11.9272 13.0568C12.0181 12.935 11.9036 12.8581 11.9992 12.6193C12.0081 12.5989 11.8679 12.5819 11.8554 12.6121Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0219 12.6284C11.9916 12.8439 12.0096 13.5062 12.0822 13.4797C12.1625 13.5037 12.173 12.831 12.1657 12.6319C12.1647 12.6099 12.0261 12.5963 12.0219 12.6284Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.7167 12.5533C11.6287 12.7419 11.4982 12.7509 11.4482 12.85C11.3998 12.9453 11.3298 13.2269 11.1613 13.2235C11.0882 13.1629 11.2756 13.1373 11.3311 12.8244C11.3577 12.6783 11.4973 12.6977 11.6085 12.4649C11.6175 12.4444 11.7305 12.5235 11.7167 12.5533Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.3938 12.2631C11.191 12.3451 11.1814 12.4664 11.075 12.513C10.9725 12.5581 10.6699 12.6234 10.6736 12.7801C10.7388 12.8481 10.7662 12.6738 11.1025 12.622C11.2596 12.5971 11.2386 12.4672 11.4888 12.3637C11.5108 12.3553 11.4257 12.2503 11.3938 12.2631Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.3301 12.126C11.1241 12.2005 11.0254 12.1206 10.9146 12.1572C10.8077 12.1922 10.5433 12.344 10.4273 12.2303C10.4222 12.1393 10.5736 12.2452 10.8517 12.0618C10.9821 11.9766 11.0654 12.0826 11.3215 11.9923C11.3435 11.9838 11.3625 12.1142 11.3301 12.126Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.8627 12.5962C11.7983 12.8051 11.4983 13.4061 11.4431 13.3548C11.3592 13.3471 11.6374 12.7261 11.7293 12.5462C11.7396 12.5264 11.8726 12.5652 11.8627 12.5962Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.5791 12.4653C11.4382 12.6386 10.9256 13.0986 10.894 13.0323C10.8187 12.997 11.3187 12.5109 11.4741 12.3739C11.4913 12.3589 11.6004 12.4397 11.5791 12.4653Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.4015 12.2434C11.2001 12.3536 10.5377 12.597 10.5356 12.5244C10.4805 12.465 11.142 12.1932 11.3418 12.1217C11.3639 12.1139 11.4316 12.2273 11.4015 12.2434Z" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.9748 11.9941C11.8907 12.1255 12.0053 12.0329 12.024 12.0709C12.0567 12.1061 12.0894 12.0978 12.1087 12.0709C12.1281 12.0405 12.2501 12.1283 12.1668 11.9982" stroke="black" stroke-opacity="0.081784" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8252 12.2108C11.8974 12.2033 12.0188 12.152 12.0618 12.1942C12.0991 12.1562 12.23 12.2053 12.3141 12.2108C12.253 12.2455 12.1294 12.2219 12.0707 12.2586C12.0134 12.2262 11.8871 12.2559 11.8252 12.2108Z" fill="#F0BF00" stroke="black" stroke-opacity="0.081784" stroke-width="0.03" stroke-linecap="round" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9414 12.2715C12.0507 12.313 12.0753 12.3067 12.1935 12.2755C12.1689 12.3357 12.1062 12.3484 12.0707 12.3462C12.0338 12.344 11.9836 12.3482 11.9414 12.2715Z" fill="#F0BF00" stroke="black" stroke-opacity="0.081784" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7167 12.5533C11.6287 12.7419 11.4982 12.7509 11.4482 12.85C11.3998 12.9453 11.3298 13.2269 11.1613 13.2235C11.0882 13.1629 11.2756 13.1373 11.3311 12.8244C11.3577 12.6783 11.4973 12.6977 11.6085 12.4649C11.6175 12.4444 11.7305 12.5235 11.7167 12.5533Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3938 12.2631C11.191 12.3451 11.1814 12.4664 11.075 12.513C10.9725 12.5581 10.6699 12.6234 10.6736 12.7801C10.7388 12.8481 10.7662 12.6738 11.1025 12.622C11.2596 12.5971 11.2386 12.4672 11.4888 12.3637C11.5108 12.3553 11.4257 12.2503 11.3938 12.2631Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3301 12.126C11.1241 12.2005 11.0254 12.1206 10.9146 12.1572C10.8077 12.1922 10.5433 12.344 10.4273 12.2303C10.4222 12.1393 10.5736 12.2452 10.8517 12.0618C10.9821 11.9766 11.0654 12.0826 11.3215 11.9923C11.3435 11.9838 11.3625 12.1142 11.3301 12.126Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8627 12.5962C11.7983 12.8051 11.4983 13.4061 11.4431 13.3548C11.3592 13.3471 11.6374 12.7261 11.7293 12.5462C11.7396 12.5264 11.8726 12.5652 11.8627 12.5962Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5791 12.4653C11.4382 12.6386 10.9256 13.0986 10.894 13.0323C10.8187 12.997 11.3187 12.5109 11.4741 12.3739C11.4913 12.3589 11.6004 12.4397 11.5791 12.4653Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4015 12.2434C11.2001 12.3536 10.5377 12.597 10.5356 12.5244C10.4805 12.465 11.142 12.1932 11.3418 12.1217C11.3639 12.1139 11.4316 12.2273 11.4015 12.2434Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8554 11.9752C13.087 12.0034 13.799 11.9866 13.7705 11.9191C13.7962 11.8444 13.0732 11.8346 12.8592 11.8414C12.8356 11.8423 12.8209 11.9713 12.8554 11.9752Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3184 12.6219C12.3973 12.814 12.3109 12.9053 12.3495 13.0086C12.3866 13.1083 12.5482 13.3551 12.4253 13.4623C12.3275 13.4666 12.4421 13.3263 12.2466 13.0666C12.1558 12.9448 12.2702 12.8679 12.1746 12.6291C12.1657 12.6086 12.3059 12.5917 12.3184 12.6219Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.463 12.5632C12.551 12.7518 12.6815 12.7608 12.7315 12.8598C12.7799 12.9552 12.8499 13.2368 13.0184 13.2334C13.0915 13.1728 12.9041 13.1472 12.8486 12.8343C12.822 12.6881 12.6824 12.7076 12.5712 12.4748C12.5622 12.4543 12.4492 12.5334 12.463 12.5632Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7869 12.2672C12.9896 12.3491 12.9993 12.4705 13.1057 12.5171C13.2081 12.5621 13.5108 12.6274 13.5071 12.7842C13.4419 12.8521 13.4144 12.6778 13.0781 12.626C12.9211 12.6012 12.942 12.4713 12.6918 12.3677C12.6698 12.3593 12.7549 12.2543 12.7869 12.2672Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8437 12.126C13.0497 12.2005 13.1484 12.1206 13.2592 12.1572C13.3661 12.1922 13.6306 12.344 13.7465 12.2303C13.7516 12.1393 13.6002 12.2452 13.3221 12.0618C13.1917 11.9766 13.1084 12.0826 12.8523 11.9923C12.8303 11.9838 12.8113 12.1142 12.8437 12.126Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.315 12.606C12.3794 12.8149 12.6794 13.4158 12.7346 13.3646C12.8185 13.3568 12.5403 12.7358 12.4484 12.5559C12.4381 12.5362 12.3051 12.575 12.315 12.606Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5869 12.4653C12.7278 12.6386 13.2404 13.0986 13.272 13.0323C13.3474 12.997 12.8474 12.5109 12.6919 12.3739C12.6747 12.3589 12.5656 12.4397 12.5869 12.4653Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7812 12.2434C12.9825 12.3536 13.645 12.597 13.647 12.5244C13.7021 12.465 13.0406 12.1932 12.8408 12.1217C12.8187 12.1139 12.751 12.2273 12.7812 12.2434Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.463 12.5632C12.551 12.7518 12.6815 12.7608 12.7315 12.8598C12.7799 12.9552 12.8499 13.2368 13.0184 13.2334C13.0915 13.1728 12.9041 13.1472 12.8486 12.8343C12.822 12.6881 12.6824 12.7076 12.5712 12.4748C12.5622 12.4543 12.4492 12.5334 12.463 12.5632Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7869 12.2672C12.9896 12.3491 12.9993 12.4705 13.1057 12.5171C13.2081 12.5621 13.5108 12.6274 13.5071 12.7842C13.4419 12.8521 13.4144 12.6778 13.0781 12.626C12.9211 12.6012 12.942 12.4713 12.6918 12.3677C12.6698 12.3593 12.7549 12.2543 12.7869 12.2672Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8437 12.126C13.0497 12.2005 13.1484 12.1206 13.2592 12.1572C13.3661 12.1922 13.6306 12.344 13.7465 12.2303C13.7516 12.1393 13.6002 12.2452 13.3221 12.0618C13.1917 11.9766 13.1084 12.0826 12.8523 11.9923C12.8303 11.9838 12.8113 12.1142 12.8437 12.126Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.315 12.606C12.3794 12.8149 12.6794 13.4158 12.7346 13.3646C12.8185 13.3568 12.5403 12.7358 12.4484 12.5559C12.4381 12.5362 12.3051 12.575 12.315 12.606Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5869 12.4653C12.7278 12.6386 13.2404 13.0986 13.272 13.0323C13.3474 12.997 12.8474 12.5109 12.6919 12.3739C12.6747 12.3589 12.5656 12.4397 12.5869 12.4653Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7812 12.2434C12.9825 12.3536 13.645 12.597 13.647 12.5244C13.7021 12.465 13.0406 12.1932 12.8408 12.1217C12.8187 12.1139 12.751 12.2273 12.7812 12.2434Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3165 11.8489C11.0848 11.8206 10.3729 11.8374 10.4014 11.9049C10.3756 11.9797 11.0987 11.9894 11.3127 11.9826C11.3363 11.9817 11.351 11.8527 11.3165 11.8489Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8535 11.2004C11.7745 11.0083 11.861 10.917 11.8223 10.8136C11.7853 10.714 11.6236 10.4671 11.7466 10.3599C11.8444 10.3557 11.7297 10.4959 11.9253 10.7557C12.0161 10.8775 11.9017 10.9544 11.9973 11.1932C12.0062 11.2136 11.866 11.2306 11.8535 11.2004Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7088 11.2612C11.6209 11.0725 11.4904 11.0635 11.4404 10.9645C11.392 10.8692 11.3219 10.5875 11.1535 10.5909C11.0804 10.6515 11.2677 10.6772 11.3233 10.9901C11.3499 11.1362 11.4895 11.1167 11.6007 11.3496C11.6097 11.37 11.7227 11.2909 11.7088 11.2612Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3859 11.5572C11.1832 11.4753 11.1736 11.3539 11.0672 11.3073C10.9647 11.2622 10.6621 11.1969 10.6658 11.0402C10.7309 10.9722 10.7584 11.1465 11.0947 11.1983C11.2518 11.2232 11.2308 11.3531 11.481 11.4566C11.503 11.465 11.4179 11.5701 11.3859 11.5572Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3281 11.6963C11.1221 11.6217 11.0235 11.7017 10.9126 11.6651C10.8057 11.63 10.5413 11.4782 10.4254 11.592C10.4203 11.6829 10.5717 11.5771 10.8498 11.7605C10.9801 11.8457 11.0635 11.7397 11.3196 11.83C11.3415 11.8384 11.3606 11.7081 11.3281 11.6963Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8569 11.2182C11.7925 11.0093 11.4925 10.4084 11.4373 10.4597C11.3533 10.4674 11.6316 11.0884 11.7235 11.2683C11.7338 11.2881 11.8668 11.2492 11.8569 11.2182Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.585 11.3591C11.444 11.1857 10.9315 10.7257 10.8998 10.792C10.8245 10.8274 11.3245 11.3134 11.4799 11.4504C11.4972 11.4654 11.6062 11.3846 11.585 11.3591Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3907 11.581C11.1894 11.4708 10.5269 11.2274 10.5248 11.3C10.4697 11.3594 11.1312 11.6312 11.3311 11.7027C11.3532 11.7105 11.4209 11.5971 11.3907 11.581Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7088 11.2612C11.6209 11.0725 11.4904 11.0635 11.4404 10.9645C11.392 10.8692 11.3219 10.5875 11.1535 10.5909C11.0804 10.6515 11.2677 10.6772 11.3233 10.9901C11.3499 11.1362 11.4895 11.1167 11.6007 11.3496C11.6097 11.37 11.7227 11.2909 11.7088 11.2612Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3859 11.5572C11.1832 11.4753 11.1736 11.3539 11.0672 11.3073C10.9647 11.2622 10.6621 11.1969 10.6658 11.0402C10.7309 10.9722 10.7584 11.1465 11.0947 11.1983C11.2518 11.2232 11.2308 11.3531 11.481 11.4566C11.503 11.465 11.4179 11.5701 11.3859 11.5572Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3281 11.6963C11.1221 11.6217 11.0235 11.7017 10.9126 11.6651C10.8057 11.63 10.5413 11.4782 10.4254 11.592C10.4203 11.6829 10.5717 11.5771 10.8498 11.7605C10.9801 11.8457 11.0635 11.7397 11.3196 11.83C11.3415 11.8384 11.3606 11.7081 11.3281 11.6963Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8569 11.2182C11.7925 11.0093 11.4925 10.4084 11.4373 10.4597C11.3533 10.4674 11.6316 11.0884 11.7235 11.2683C11.7338 11.2881 11.8668 11.2492 11.8569 11.2182Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.585 11.3591C11.444 11.1857 10.9315 10.7257 10.8998 10.792C10.8245 10.8274 11.3245 11.3134 11.4799 11.4504C11.4972 11.4654 11.6062 11.3846 11.585 11.3591Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3907 11.581C11.1894 11.4708 10.5269 11.2274 10.5248 11.3C10.4697 11.3594 11.1312 11.6312 11.3311 11.7027C11.3532 11.7105 11.4209 11.5971 11.3907 11.581Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.149 11.1958C12.1793 10.9803 12.1613 10.318 12.0887 10.3445C12.0084 10.3206 11.9979 10.9932 12.0052 11.1923C12.0062 11.2143 12.1448 11.2279 12.149 11.1958Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8448 11.6944C13.0513 11.621 13.1494 11.7014 13.2605 11.6655C13.3676 11.631 13.633 11.4806 13.7482 11.595C13.7527 11.6859 13.602 11.5793 13.3228 11.7612C13.1919 11.8457 13.1092 11.7393 12.8526 11.8282C12.8305 11.8365 12.8123 11.7061 12.8448 11.6944Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7811 11.5609C12.9839 11.479 12.9936 11.3577 13.1 11.3111C13.2025 11.2661 13.5052 11.2009 13.5016 11.0442C13.4365 10.9762 13.4089 11.1505 13.0725 11.2022C12.9154 11.2269 12.9364 11.3568 12.6861 11.4602C12.6641 11.4686 12.7491 11.5737 12.7811 11.5609Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.463 11.2593C12.5511 11.0707 12.6815 11.0617 12.7316 10.9627C12.7801 10.8674 12.8503 10.5859 13.0187 10.5893C13.0918 10.6499 12.9044 10.6755 12.8487 10.9884C12.822 11.1345 12.6824 11.115 12.5711 11.3477C12.5621 11.3682 12.4491 11.289 12.463 11.2593Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3117 11.2074C12.3918 11.0157 12.3059 10.9239 12.3452 10.8208C12.3829 10.7214 12.5461 10.4754 12.4238 10.3675C12.326 10.3628 12.4398 10.5036 12.2426 10.7623C12.151 10.8836 12.265 10.9612 12.1679 11.1994C12.1589 11.2198 12.299 11.2375 12.3117 11.2074Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8276 11.6992C13.0522 11.6393 13.6981 11.3602 13.643 11.3088C13.6347 11.2307 12.9672 11.4895 12.7738 11.5751C12.7526 11.5846 12.7943 11.7084 12.8276 11.6992Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6746 11.446C12.8609 11.3149 13.3554 10.838 13.2841 10.8086C13.2461 10.7385 12.7237 11.2037 12.5764 11.3483C12.5602 11.3643 12.6471 11.4658 12.6746 11.446Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4364 11.2645C12.5549 11.0772 12.8165 10.4609 12.7385 10.459C12.6746 10.4077 12.3824 11.0231 12.3055 11.209C12.2972 11.2296 12.4191 11.2925 12.4364 11.2645Z" fill="#FFD700" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7811 11.5609C12.9839 11.479 12.9936 11.3577 13.1 11.3111C13.2025 11.2661 13.5052 11.2009 13.5016 11.0442C13.4365 10.9762 13.4089 11.1505 13.0725 11.2022C12.9154 11.2269 12.9364 11.3568 12.6861 11.4602C12.6641 11.4686 12.7491 11.5737 12.7811 11.5609Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.463 11.2593C12.5511 11.0707 12.6815 11.0617 12.7316 10.9627C12.7801 10.8674 12.8503 10.5859 13.0187 10.5893C13.0918 10.6499 12.9044 10.6755 12.8487 10.9884C12.822 11.1345 12.6824 11.115 12.5711 11.3477C12.5621 11.3682 12.4491 11.289 12.463 11.2593Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3117 11.2074C12.3918 11.0157 12.3059 10.9239 12.3452 10.8208C12.3829 10.7214 12.5461 10.4754 12.4238 10.3675C12.326 10.3628 12.4398 10.5036 12.2426 10.7623C12.151 10.8836 12.265 10.9612 12.1679 11.1994C12.1589 11.2198 12.299 11.2375 12.3117 11.2074Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8276 11.6992C13.0522 11.6393 13.6981 11.3602 13.643 11.3088C13.6347 11.2307 12.9672 11.4895 12.7738 11.5751C12.7526 11.5846 12.7943 11.7084 12.8276 11.6992Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6746 11.446C12.8609 11.3149 13.3554 10.838 13.2841 10.8086C13.2461 10.7385 12.7237 11.2037 12.5764 11.3483C12.5602 11.3643 12.6471 11.4658 12.6746 11.446Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4364 11.2645C12.5549 11.0772 12.8165 10.4609 12.7385 10.459C12.6746 10.4077 12.3824 11.0231 12.3055 11.209C12.2972 11.2296 12.4191 11.2925 12.4364 11.2645Z" fill="#FFD700" stroke="black" stroke-opacity="0.1487" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M11.5674 11.6035H11.5049" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5517 11.6405H11.4893" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5448 11.6758H11.4756" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5252 11.709H11.4561" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5201 11.7443H11.4375" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5221 11.7793H11.4307" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5089 11.8184H11.4219" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5135 11.8594H11.4287" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5138 11.8965H11.4268" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5361 11.9395H11.4268" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5273 11.9902H11.4336" stroke="black" stroke-opacity="0.171" stroke-width="0.03"/>
<path d="M11.5292 12.0254H11.4355" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5449 12.0724H11.4512" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5468 12.1133H11.4531" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5742 12.1602H11.4805" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6005 12.1973H11.5068" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.625 12.2402H11.5312" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6542 12.2812H11.5605" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6738 12.3223H11.5801" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.7167 12.3691H11.623" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.735 12.4121H11.6748" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5292 12.0254H11.4355" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5449 12.0724H11.4512" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5468 12.1133H11.4531" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.5742 12.1602H11.4805" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6005 12.1973H11.5068" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.625 12.2402H11.5312" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6542 12.2812H11.5605" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.6738 12.3223H11.5801" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.7167 12.3691H11.623" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path d="M11.7448 12.4102H11.6846" stroke="black" stroke-opacity="0.078067" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6016 11.5936H12.6641H12.6016Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6016 11.5936H12.6641" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6172 11.631H12.6797H12.6172Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6172 11.631H12.6797" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6242 11.666H12.6934H12.6242Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6242 11.666H12.6934" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6437 11.6992H12.7129H12.6437Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6437 11.6992H12.7129" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6489 11.7344H12.7314H12.6489Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6489 11.7344H12.7314" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6468 11.7695H12.7383H12.6468Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6468 11.7695H12.7383" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6601 11.8086H12.7471H12.6601Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6601 11.8086H12.7471" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6555 11.8496H12.7402H12.6555Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6555 11.8496H12.7402" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6552 11.8867H12.7422H12.6552Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6552 11.8867H12.7422" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6329 11.9297H12.7422H12.6329Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6329 11.9297H12.7422" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6416 11.9805H12.7354H12.6416Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6416 11.9805H12.7354" stroke="black" stroke-opacity="0.13383" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6397 12.0156H12.7334H12.6397Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6397 12.0156H12.7334" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6241 12.0625H12.7178H12.6241Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6241 12.0625H12.7178" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6221 12.1035H12.7158H12.6221Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.6221 12.1035H12.7158" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5948 12.1504H12.6885H12.5948Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.5948 12.1504H12.6885" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5684 12.1874H12.6621H12.5684Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.5684 12.1874H12.6621" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.544 12.2305H12.6377H12.544Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.544 12.2305H12.6377" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5147 12.2734H12.6084H12.5147Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.5147 12.2734H12.6084" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4952 12.3125H12.5889H12.4952Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.4952 12.3125H12.5889" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4522 12.3594H12.5459H12.4522Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.4522 12.3594H12.5459" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4339 12.4023H12.4941H12.4339Z" fill="#00699D" fill-opacity="0.86667"/>
<path d="M12.4339 12.4023H12.4941" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.6397 12.0156H12.7334" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.6241 12.0625H12.7178" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.6221 12.1035H12.7158" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.5948 12.1504H12.6885" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.5684 12.1874H12.6621" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.544 12.2305H12.6377" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.5147 12.2734H12.6084" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.4952 12.3125H12.5889" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.4522 12.3594H12.5459" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path d="M12.4339 12.4023H12.4941" stroke="black" stroke-opacity="0.063197" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5576 11.7553C12.4085 11.6662 12.2113 11.7127 12.1286 11.761C12.2494 11.7398 12.2516 11.73 12.3391 11.7282C12.4007 11.73 12.4918 11.7243 12.5576 11.7553Z" fill="#F0BF00" stroke="black" stroke-opacity="0.38662" stroke-width="0.03" stroke-linejoin="round"/>
<path d="M12.4702 11.7402C12.3972 11.8817 12.2703 11.8835 12.1807 11.7324" stroke="black" stroke-opacity="0.38662" stroke-width="0.03"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4304 11.785C12.4197 11.7954 12.4008 11.8043 12.3779 11.8097C12.355 11.8151 12.33 11.8166 12.3084 11.8138C12.2867 11.811 12.2702 11.8042 12.2625 11.7948C12.2548 11.7855 12.2565 11.7744 12.2672 11.7639C12.2779 11.7535 12.2968 11.7446 12.3197 11.7392C12.3426 11.7338 12.3676 11.7323 12.3892 11.7351C12.4109 11.7379 12.4274 11.7447 12.4351 11.7541C12.4428 11.7634 12.4411 11.7745 12.4304 11.785Z" fill="black" fill-opacity="0.36803"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3241 11.7551C12.3252 11.7576 12.3241 11.7607 12.3213 11.7636C12.3184 11.7666 12.3139 11.7691 12.3087 11.7707C12.3036 11.7723 12.2982 11.7729 12.2938 11.7722C12.2894 11.7716 12.2864 11.7698 12.2853 11.7673C12.2842 11.7647 12.2852 11.7616 12.2881 11.7587C12.291 11.7558 12.2955 11.7532 12.3007 11.7516C12.3058 11.75 12.3112 11.7494 12.3156 11.7501C12.3199 11.7507 12.323 11.7525 12.3241 11.7551Z" fill="#FFD700"/>
</g>
<defs>
<clipPath id="clip0_14099_112221">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#F2A800"/>
<path d="M20 6H4V14H20V6Z" fill="#0033A0"/>
<path d="M20 6H4V10H20V6Z" fill="#D90012"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 6H20V18H4V6Z" fill="#4189DD"/>
<path d="M4 14H20V14.6667H4V15.3333H20V16H4V14Z" fill="#F9D616"/>
<path d="M7.08301 8.2487L6.66634 6.89844L6.24967 8.2487L4.89941 8.66536L6.24967 9.08203L6.66634 10.4323L7.08301 9.08203L8.43327 8.66536L7.08301 8.2487Z" fill="#D21034" stroke="white" stroke-width="0.2" stroke-miterlimit="10"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 595 B

View File

@ -0,0 +1,19 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#00008B"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="white"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="#FF0000" stroke-width="0.5"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="white"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="#FF0000" stroke-width="0.5"/>
<path d="M4 10.5H13V6H16V12H4V10.5Z" fill="#00008B"/>
<path d="M16.4998 15.8555L16.6238 16.2409L17.0024 16.0975L16.7783 16.4347L17.1265 16.6414L16.7232 16.6765L16.7787 17.0775L16.4998 16.784L16.2209 17.0775L16.2764 16.6765L15.873 16.6414L16.2212 16.4347L15.9972 16.0975L16.3758 16.2409L16.4998 15.8555Z" fill="white"/>
<path d="M14.2498 12.293L14.3738 12.6784L14.7524 12.535L14.5283 12.8722L14.8765 13.0789L14.4732 13.114L14.5287 13.515L14.2498 13.2215L13.9709 13.515L14.0264 13.114L13.623 13.0789L13.9712 12.8722L13.7472 12.535L14.1258 12.6784L14.2498 12.293Z" fill="white"/>
<path d="M16.4998 9.85547L16.6238 10.2409L17.0024 10.0975L16.7783 10.4347L17.1265 10.6414L16.7232 10.6765L16.7787 11.0775L16.4998 10.784L16.2209 11.0775L16.2764 10.6765L15.873 10.6414L16.2212 10.4347L15.9972 10.0975L16.3758 10.2409L16.4998 9.85547Z" fill="white"/>
<path d="M8.5 14L8.79669 14.9462L9.70291 14.5942L9.16667 15.4221L10 15.9293L9.03463 16.0155L9.16756 17L8.5 16.2795L7.83244 17L7.96537 16.0155L7 15.9293L7.83333 15.4221L7.29709 14.5942L8.20331 14.9462L8.5 14Z" fill="white"/>
<path d="M18.4998 11.6914L18.6238 12.0768L19.0024 11.9334L18.7783 12.2707L19.1265 12.4773L18.7232 12.5124L18.7787 12.9135L18.4998 12.62L18.2209 12.9135L18.2764 12.5124L17.873 12.4773L18.2212 12.2707L17.9972 11.9334L18.3758 12.0768L18.4998 11.6914Z" fill="white"/>
<path d="M17.3996 13.5L17.4976 13.7402L17.7563 13.7591L17.5581 13.9265L17.62 14.1784L17.3996 14.0417L17.1792 14.1784L17.2411 13.9265L17.043 13.7591L17.3017 13.7402L17.3996 13.5Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#ED2939"/>
<path d="M20 10H4V14H20V10Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 347 B

View File

@ -0,0 +1,9 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#3F9C35"/>
<path d="M20 6H4V14H20V6Z" fill="#ED2939"/>
<path d="M20 6H4V10H20V6Z" fill="#00B9E4"/>
<path d="M12.6996 13.25C13.4452 13.25 14.0496 12.6456 14.0496 11.9C14.0496 11.1544 13.4452 10.55 12.6996 10.55C11.954 10.55 11.3496 11.1544 11.3496 11.9C11.3496 12.6456 11.954 13.25 12.6996 13.25Z" fill="white"/>
<path d="M13 12.95C13.6213 12.95 14.125 12.4463 14.125 11.825C14.125 11.2037 13.6213 10.7 13 10.7C12.3787 10.7 11.875 11.2037 11.875 11.825C11.875 12.4463 12.3787 12.95 13 12.95Z" fill="#ED2939"/>
<path d="M14.2002 11L14.3437 11.4035L14.7305 11.2197L14.5467 11.6065L14.9502 11.75L14.5467 11.8935L14.7305 12.2803L14.3437 12.0965L14.2002 12.5L14.0567 12.0965L13.6699 12.2803L13.8537 11.8935L13.4502 11.75L13.8537 11.6065L13.6699 11.2197L14.0567 11.4035L14.2002 11Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#00ABC9"/>
<path d="M20 10H4V14H20V10Z" fill="#FAE042"/>
<path d="M4 6V18L13 12L4 6Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 6H20V18H4" fill="white"/>
<path d="M20 6H8L10.4425 7.2L8 8.4L10.4425 9.6L8 10.8L10.4425 12L8 13.2L10.4425 14.4L8 15.6L10.4425 16.8L8 18H20" fill="#CE1126"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 428 B

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#006A4E"/>
<path d="M12.0004 15.4C13.9886 15.4 15.6004 13.7882 15.6004 11.8C15.6004 9.81179 13.9886 8.20001 12.0004 8.20001C10.0122 8.20001 8.40039 9.81179 8.40039 11.8C8.40039 13.7882 10.0122 15.4 12.0004 15.4Z" fill="#F42A41"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 522 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#00267F"/>
<path d="M15 6H9V18H15V6Z" fill="#FFC726"/>
<path d="M12.9434 9C12.7961 9.54876 12.646 10.12 12.3248 10.5573C12.4245 10.5124 12.5989 10.4721 12.7111 10.476V12.7841L12.2341 12.8808C12.2171 12.8785 12.2115 12.8421 12.2115 12.7926C12.1656 12.0759 12.0415 11.4737 11.8988 10.8506C11.8886 10.7655 11.7079 10.4404 11.8472 10.4977C11.8642 10.5008 12.0506 10.6045 12.0211 10.555C11.7673 10.1958 11.3963 9.93731 11.036 9.86068C11.0043 9.84985 10.9856 9.87152 11.0139 9.92183C11.492 10.9272 11.892 12.1138 11.8886 13.5217C12.0744 13.5217 12.5247 13.3715 12.7111 13.3715V15H12.9462L13 10.452L12.9434 9Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 911 B

View File

@ -0,0 +1,24 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#C8313E"/>
<path d="M20 14H4V18H20V14Z" fill="#4AA657"/>
<path d="M7 6H4V18H7V6Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.46377 6H4.81159V6.19672H4.92754V6.39344H5.04348V6.59016H5.15942V6.78689H5.27536V6.98361H5.15942V7.18033H5.04348V7.37705H4.92754V7.57377H4.81159V7.77049H4.69565V7.96721H4.57971V7.77049H4.46377V7.57377H4.34783V7.37705H4.23188V7.18033H4.11594V6.98361H4V6.78689H4.11594V6.59016H4.23188V6.39344H4.34783V6.19672H4.46377V6ZM4.57971 6.39344H4.69565V6.59016H4.81159V6.78689H4.92754V6.98361H4.81159V7.18033H4.69565V7.37705H4.57971V7.18033H4.46377V6.98361H4.34783V6.78689H4.46377V6.59016H4.57971V6.39344ZM4.57971 6.78689H4.69565V6.98361H4.57971V6.78689ZM4 6.19672H4.11594V6.39344H4V6.19672ZM4 7.37705H4.11594V7.57377H4V7.37705ZM5.27536 6H5.34493V6.39344H5.27536V6ZM5.27536 7.37705H5.34493V7.77049H5.27536V7.37705ZM4.23188 7.77049H4.34783V7.96721H4.46377V8.16393H4.57971V8.36066H4.46377V8.55738H4.34783V8.7541H4.23188V8.55738H4.11594V8.36066H4V8.16393H4.11594V7.96721H4.23188V7.77049ZM4.23188 8.16393H4.34783V8.36066H4.23188V8.16393ZM4.92754 7.77049H5.04348V7.96721H5.15942V8.16393H5.27536V8.36066H5.15942V8.55738H5.04348V8.7541H4.92754V8.55738H4.81159V8.36066H4.69565V8.16393H4.81159V7.96721H4.92754V7.77049ZM4.92754 8.16393H5.04348V8.36066H4.92754V8.16393ZM4 8.95082H4.11594V9.14754H4V8.95082ZM5.27536 8.7541H5.34493V9.14754H5.27536V8.7541Z" fill="#C8313E"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 9.54092H4.11594V9.3442H4.23188V9.14748H4.34783V8.95075H4.46377V8.75403H4.57971V8.55731H4.69565V8.75403H4.81159V8.95075H4.92754V9.14748H5.04348V9.3442H5.15942V9.54092H5.27536V9.73764H5.34493V10.5245H5.27536V10.7212H5.15942V10.918H5.04348V11.1147H4.92754V11.3114H4.81159V11.5081H4.69565V12.0196H4.46377V11.9016H4.34783V11.7049H4.23188V11.5081H4.11594V11.3114H4V10.7212H4.11594V10.918H4.23188V11.1147H4.34783V11.3114H4.46377V11.1147H4.57971V10.918H4.69565V10.7212H4.81159V10.5245H4.92754V10.3278H5.04348V10.1311H4.92754V9.93436H4.81159V9.73764H4.46377V9.93436H4.69565V10.1311H4.57971V10.3278H4.46377V10.5245H4.34783V10.3278H4.23188V10.1311H4.11594V9.93436H4V9.54092ZM4 10.3278H4.11594V10.5245H4V10.3278ZM5.27536 10.918H5.34493V11.1147H5.27536V10.918ZM5.04348 11.3114H5.15942V11.5081H5.27536V11.7049H5.34493V12.0196H5.27536V11.9016H5.15942V11.7049H5.04348V11.3114ZM4.81159 11.9016H4.92754V12.0196H4.81159V11.9016Z" fill="#C8313E"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_112460)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6H28.0026V13.9711H4V6Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 13.9711H28.0026V18H4V13.9711Z" fill="#429F00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6H6.6581V18H4V6Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.12695 6.20391H4.25353V6.40781H4.12695V6.20391ZM4.50668 6.20391H4.88641V6.40781H4.50668V6.20391ZM4.63326 6H4.75983V6.20391H4.63326V6ZM5.26614 6H5.39271V6.20391H5.26614V6ZM5.77244 6.20391H6.15217V6.40781H5.77244V6.20391ZM5.89902 6H6.02559V6.20391H5.89902V6ZM4.38011 6.40781H4.63326V6.60938H4.38011V6.40781ZM4.75983 6.40781H5.01299V6.60938H4.75983V6.40781ZM5.64587 6.40781H5.89902V6.60938H5.64587V6.40781ZM6.02559 6.40781H6.27875V6.60938H6.02559V6.40781ZM4.25353 6.60938H4.50668V6.81328H4.25353V6.60938ZM4.88641 6.60938H5.13956V6.81328H4.88641V6.60938ZM5.51929 6.60938H5.77244V6.81328H5.51929V6.60938ZM6.15217 6.60938H6.40532V6.81328H6.15217V6.60938ZM6.40532 6.20391H6.5319V6.40781H6.40532V6.20391ZM4.12695 6.81328H4.38011V7.01719H4.12695V6.81328ZM5.01299 6.81328H5.26614V7.01719H5.01299V6.81328ZM6.27875 6.81328H6.5319V7.01719H6.27875V6.81328ZM4.25353 7.42266H4.50668V7.62656H4.25353V7.42266ZM4.38011 7.62656H4.63326V7.83047H4.38011V7.62656ZM4.88641 7.425H5.13956V7.62656H4.88641V7.425ZM4.75983 7.62656H5.01299V7.83047H4.75983V7.62656ZM4.50668 7.83047H4.88641V8.03438H4.50668V7.83047Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.63288 8.03436H4.75946V8.23827H4.63288V8.03436ZM5.51891 7.42499H5.77206V7.62655H5.51891V7.42499ZM5.64549 7.62655H5.89864V7.83046H5.64549V7.62655ZM6.15179 7.42499H6.40494V7.62655H6.15179V7.42499ZM6.02522 7.62655H6.27837V7.83046H6.02522V7.62655ZM5.77206 7.83046H6.15179V8.03436H5.77206V7.83046ZM5.89864 8.03436H6.02522V8.23827H5.89864V8.03436ZM5.26576 7.82811H5.39234V8.03202H5.26576V7.82811ZM4 7.82811H4.12658V8.03202H4V7.82811ZM6.53152 7.82811H6.6581V8.03202H6.53152V7.82811ZM4.63288 8.8453H4.75946V9.04921H4.63288V8.8453ZM4.5063 9.05155H4.88603V9.25311H4.5063V9.05155ZM4.37973 9.25311H5.01261V9.45702H4.37973V9.25311ZM5.89864 8.84764H6.02522V9.05155H5.89864V8.84764ZM5.77206 9.05155H6.15179V9.25311H5.77206V9.05155ZM5.64549 9.25311H6.27837V9.45702H5.64549V9.25311ZM5.77206 10.2703H6.40494V10.4742H5.77206V10.2703ZM5.51891 9.45702H6.40494V9.66093H5.51891V9.45702ZM4.25315 9.45702H5.13918V9.66093H4.25315V9.45702ZM4.37973 10.4742H4.75946V10.6781H4.37973V10.4742ZM4.25315 10.2703H4.88603V10.4742H4.25315V10.2703ZM6.02522 9.86718H6.6581V10.0711H6.02522V9.86718ZM5.89864 10.4766H6.27837V10.6805H5.89864V10.4766Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5063 10.6781H4.63288V10.882H4.5063V10.6781ZM6.02522 10.6781H6.15179V10.882H6.02522V10.6781ZM4 9.86486H4.63288V10.0688H4V9.86486ZM5.13918 10.2703H5.51891V10.4742H5.13918V10.2703ZM5.26576 10.4766H5.39234V10.6805H5.26576V10.4766ZM4.88603 9.8672H5.77206V10.0711H4.88603V9.8672ZM5.39234 6.81329H5.64549V7.0172H5.39234V6.81329ZM5.13918 7.0172H5.51891V7.22111H5.13918V7.0172ZM5.01261 7.22111H5.26576V7.42267H5.01261V7.22111ZM5.39234 7.22111H5.64549V7.42267H5.39234V7.22111ZM4 7.0172H4.25315V7.22111H4V7.0172ZM4.12658 7.22111H4.37973V7.42267H4.12658V7.22111ZM6.40494 7.0172H6.6581V7.21876H6.40494V7.0172ZM6.27837 7.21876H6.53152V7.42032H6.27837V7.21876ZM4 9.04689H4.12658V9.25079H4V9.04689ZM6.53152 9.04689H6.6581V9.25079H6.53152V9.04689ZM5.13918 10.6758H5.51891V10.8797H5.13918V10.6758ZM5.01261 10.8797H5.26576V11.0813H5.01261V10.8797ZM5.39234 10.8797H5.64549V11.0813H5.39234V10.8797ZM4.88603 11.0813H5.13918V11.2852H4.88603V11.0813ZM5.51891 11.0813H5.77206V11.2852H5.51891V11.0813ZM4.75946 11.2852H5.01261V11.4891H4.75946V11.2852ZM5.64549 11.2852H5.89864V11.4891H5.64549V11.2852ZM4.63288 11.4914H4.88603V11.6953H4.63288V11.4914ZM5.77206 11.4914H6.02522V11.6953H5.77206V11.4914ZM4.37973 11.6953H4.75946V11.8992H4.37973V11.6953ZM5.89864 11.6953H6.27837V11.8992H5.89864V11.6953ZM6.15179 11.4914H6.40494V11.6953H6.15179V11.4914ZM6.27837 11.2875H6.53152V11.4914H6.27837V11.2875ZM6.40494 11.0836H6.6581V11.2875H6.40494V11.0836ZM4.25315 11.4914H4.5063V11.6953H4.25315V11.4914ZM4.12658 11.2875H4.37973V11.4914H4.12658V11.2875ZM4 11.0859H4.25315V11.2899H4V11.0859ZM4.5063 11.9016H4.63288V12.1031H4.5063V11.9016ZM6.02522 11.9016H6.15179V12.1031H6.02522V11.9016ZM5.26576 11.2922H5.39234V11.4938H5.26576V11.2922ZM4.88603 11.9016H5.01261V12.1031H4.88603V11.9016ZM5.64549 11.9016H5.77206V12.1031H5.64549V11.9016ZM5.26576 11.9016H5.39234V12.1031H5.26576V11.9016ZM4 11.9016H4.12658V12.1031H4V11.9016ZM6.53152 11.9016H6.6581V12.1031H6.53152V11.9016ZM5.26576 9.05157H5.39234V9.25314H5.26576V9.05157ZM4.63288 7.0172H4.75946V7.22111H4.63288V7.0172ZM5.89864 7.0172H6.02522V7.22111H5.89864V7.0172ZM5.13918 8.43986H5.51891V8.64376H5.13918V8.43986ZM4.88603 8.64376H5.26576V8.84767H4.88603V8.64376ZM5.01261 8.84767H5.13918V9.05157H5.01261V8.84767ZM4.75946 8.43986H5.01261V8.64376H4.75946V8.43986ZM4.88603 8.23829H5.26576V8.43986H4.88603V8.23829ZM5.01261 8.03439H5.13918V8.23829H5.01261V8.03439ZM5.39234 8.23829H5.77206V8.43986H5.39234V8.23829ZM5.51891 8.03439H5.64549V8.23829H5.51891V8.03439ZM5.64549 8.43986H5.89864V8.64376H5.64549V8.43986ZM5.39234 8.64376H5.77206V8.84767H5.39234V8.64376ZM5.51891 8.84767H5.64549V9.05157H5.51891V8.84767ZM6.02522 8.43986H6.27837V8.64376H6.02522V8.43986ZM6.15179 8.23829H6.53152V8.43986H6.15179V8.23829ZM6.40494 8.43986H6.6581V8.64376H6.40494V8.43986ZM6.15179 8.64376H6.53152V8.84767H6.15179V8.64376ZM6.27837 8.84767H6.40494V9.05157H6.27837V8.84767ZM6.27837 8.03439H6.40494V8.23829H6.27837V8.03439ZM4 8.43751H4.25315V8.64142H4V8.43751ZM4.12658 8.23595H4.5063V8.43751H4.12658V8.23595ZM4.37973 8.43751H4.63288V8.64142H4.37973V8.43751ZM4.12658 8.64142H4.5063V8.84532H4.12658V8.64142Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.25315 8.84764H4.37973V9.05155H4.25315V8.84764ZM4.25315 8.03436H4.37973V8.23827H4.25315V8.03436ZM4.12658 9.66093H4.63288V9.86483H4.12658V9.66093ZM4.75946 9.66093H5.26576V9.86483H4.75946V9.66093ZM5.39234 9.66093H5.89864V9.86483H5.39234V9.66093ZM6.02522 9.66093H6.53152V9.86483H6.02522V9.66093ZM5.01261 10.0687H5.64549V10.2703H5.01261V10.0687ZM4.12658 10.0687H4.75946V10.2703H4.12658V10.0687ZM5.89864 10.0687H6.53152V10.2703H5.89864V10.0687ZM6.53152 10.882H6.6581V11.0836H6.53152V10.882ZM4 10.882H4.12658V11.0836H4V10.882ZM4.12658 17.7961H4.25315V17.5945H4.12658V17.7961ZM4.5063 17.7961H4.88603V17.5945H4.5063V17.7961ZM4.63288 18H4.75946V17.7961H4.63288V18ZM5.26576 18H5.39234V17.7961H5.26576V18ZM5.77206 17.7961H6.15179V17.5922H5.77206V17.7961ZM5.89864 18H6.02522V17.7961H5.89864V18ZM4.37973 17.5922H4.63288V17.3906H4.37973V17.5922ZM4.75946 17.5922H5.01261V17.3906H4.75946V17.5922ZM5.64549 17.5922H5.89864V17.3906H5.64549V17.5922ZM6.02522 17.5922H6.27837V17.3906H6.02522V17.5922ZM4.88603 17.3906H5.13918V17.1867H4.88603V17.3906ZM5.51891 17.3906H5.77206V17.1867H5.51891V17.3906ZM6.15179 17.3906H6.40494V17.1867H6.15179V17.3906ZM6.40494 17.7961H6.53152V17.5922H6.40494V17.7961ZM4.12658 17.1867H4.37973V16.9828H4.12658V17.1867ZM5.01261 17.1867H5.26576V16.9828H5.01261V17.1867ZM6.27837 17.1867H6.53152V16.9828H6.27837V17.1867ZM4.25315 16.5773H4.5063V16.3734H4.25315V16.5773ZM4.37973 16.3734H4.63288V16.1695H4.37973V16.3734ZM4.88603 16.5773H5.13918V16.3734H4.88603V16.5773ZM4.75946 16.3734H5.01261V16.1695H4.75946V16.3734ZM4.5063 16.1695H4.88603V15.9656H4.5063V16.1695ZM4.63288 15.9656H4.75946V15.7641H4.63288V15.9656ZM5.51891 16.575H5.77206V16.3734H5.51891V16.575ZM5.64549 16.3734H5.89864V16.1695H5.64549V16.3734ZM6.15179 16.5773H6.40494V16.3734H6.15179V16.5773ZM6.02522 16.3734H6.27837V16.1695H6.02522V16.3734ZM5.77206 16.1695H6.15179V15.9656H5.77206V16.1695ZM5.89864 15.9656H6.02522V15.7641H5.89864V15.9656ZM5.26576 16.1719H5.39234V15.968H5.26576V16.1719ZM4 16.1719H4.12658V15.968H4V16.1719ZM6.53152 16.1719H6.6581V15.968H6.53152V16.1719ZM4.63288 15.1547H4.75946V14.9508H4.63288V15.1547ZM4.5063 14.9484H4.88603V14.7469H4.5063V14.9484ZM4.37973 14.7469H5.01261V14.543H4.37973V14.7469ZM5.89864 15.1523H6.02522V14.9484H5.89864V15.1523Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.77206 14.9484H6.15179V14.7469H5.77206V14.9484ZM5.64549 14.7469H6.27837V14.5429H5.64549V14.7469ZM5.77206 13.7297H6.40494V13.5234H5.77206V13.7297ZM5.51891 14.5429H6.40494V14.339H5.51891V14.5429ZM4.25315 14.5429H5.13918V14.339H4.25315V14.5429ZM4.37973 13.5258H4.75946V13.3219H4.37973V13.5258ZM4.25315 13.7297H4.88603V13.5234H4.25315V13.7297ZM6.02522 14.1328H6.6581V13.9289H6.02522V14.1328ZM5.89864 13.5234H6.27837V13.3195H5.89864V13.5234ZM4 14.1328H4.63288V13.9289H4V14.1328ZM5.13918 13.7273H5.51891V13.5234H5.13918V13.7273ZM5.26576 13.5234H5.39234V13.3195H5.26576V13.5234ZM4.88603 14.1328H5.77206V13.9289H4.88603V14.1328ZM5.39234 17.1844H5.64549V16.9804H5.39234V17.1844ZM5.13918 16.9804H5.51891V16.7812H5.13918V16.9804ZM5.01261 16.7765H5.26576V16.5726H5.01261V16.7765ZM5.39234 16.7765H5.64549V16.5726H5.39234V16.7765ZM4 16.9828H4.25315V16.7812H4V16.9828ZM4.12658 16.7789H4.37973V16.5773H4.12658V16.7789ZM6.40494 16.9828H6.6581V16.7812H6.40494V16.9828ZM6.27837 16.7789H6.53152V16.5773H6.27837V16.7789ZM4 14.9531H4.12658V14.7492H4V14.9531ZM6.53152 14.9531H6.6581V14.7492H6.53152V14.9531ZM5.01261 13.1203H5.26576V12.9187H5.01261V13.1203ZM5.39234 13.1203H5.64549V12.9187H5.39234V13.1203ZM4.88603 12.9187H5.13918V12.7148H4.88603V12.9187ZM5.51891 12.9187H5.77206V12.7148H5.51891V12.9187ZM4.75946 12.7148H5.01261V12.5109H4.75946V12.7148ZM5.64549 12.7148H5.89864V12.5109H5.64549V12.7148ZM4.63288 12.5086H4.88603V12.3047H4.63288V12.5086ZM5.77206 12.5086H6.02522V12.3047H5.77206V12.5086ZM4.37973 12.3047H4.75946V12.1008H4.37973V12.3047ZM5.89864 12.3047H6.27837V12.1008H5.89864V12.3047ZM6.15179 12.5086H6.40494V12.3047H6.15179V12.5086ZM6.27837 12.7125H6.53152V12.5086H6.27837V12.7125ZM6.40494 12.9164H6.6581V12.7125H6.40494V12.9164ZM4.25315 12.5086H4.5063V12.3047H4.25315V12.5086ZM4.12658 12.7125H4.37973V12.5086H4.12658V12.7125ZM4 12.914H4.25315V12.7101H4V12.914ZM4.5063 12.0984H4.63288V11.8969H4.5063V12.0984ZM5.26576 12.7078H5.39234V12.5062H5.26576V12.7078ZM5.26576 14.9461H5.39234V14.7445H5.26576V14.9461ZM4.63288 16.9804H4.75946V16.7812H4.63288V16.9804ZM5.89864 16.9804H6.02522V16.7812H5.89864V16.9804ZM5.13918 15.5625H5.51891V15.3586H5.13918V15.5625ZM4.88603 15.3586H5.26576V15.1547H4.88603V15.3586ZM5.01261 15.1547H5.13918V14.9508H5.01261V15.1547ZM4.75946 15.5625H5.01261V15.3586H4.75946V15.5625ZM4.88603 15.7617H5.26576V15.5625H4.88603V15.7617ZM5.01261 15.9656H5.13918V15.764H5.01261V15.9656ZM5.39234 15.7617H5.77206V15.5625H5.39234V15.7617ZM5.51891 15.9656H5.64549V15.764H5.51891V15.9656ZM5.64549 15.5601H5.89864V15.3562H5.64549V15.5601ZM5.39234 15.3562H5.77206V15.1523H5.39234V15.3562ZM5.51891 15.1523H5.64549V14.9484H5.51891V15.1523ZM6.02522 15.5625H6.27837V15.3586H6.02522V15.5625ZM6.15179 15.7617H6.53152V15.5625H6.15179V15.7617ZM6.40494 15.5601H6.6581V15.3562H6.40494V15.5601ZM6.15179 15.3562H6.53152V15.1523H6.15179V15.3562ZM6.27837 15.1523H6.40494V14.9484H6.27837V15.1523ZM6.27837 15.9656H6.40494V15.764H6.27837V15.9656ZM4 15.5625H4.25315V15.3586H4V15.5625ZM4.12658 15.7617H4.5063V15.5625H4.12658V15.7617Z" fill="#B20000"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.37973 15.5602H4.63288V15.3563H4.37973V15.5602ZM4.12658 15.3563H4.5063V15.1523H4.12658V15.3563ZM4.25315 15.1523H4.37973V14.9484H4.25315V15.1523ZM4.25315 15.9656H4.37973V15.7641H4.25315V15.9656ZM4.12658 14.3391H4.63288V14.1352H4.12658V14.3391ZM4.75946 14.3391H5.26576V14.1352H4.75946V14.3391ZM5.39234 14.3391H5.89864V14.1352H5.39234V14.3391ZM6.02522 14.3391H6.53152V14.1352H6.02522V14.3391ZM5.01261 13.9312H5.64549V13.7297H5.01261V13.9312ZM4.12658 13.9312H4.75946V13.7297H4.12658V13.9312ZM5.89864 13.9312H6.53152V13.7297H5.89864V13.9312ZM6.53152 13.1203H6.6581V12.9141H6.53152V13.1203ZM4 13.1203H4.12658V12.9141H4V13.1203ZM5.13918 12.1008H5.26576V12.3047H5.13918V12.1008ZM5.39234 12.1008H5.51891V12.3047H5.39234V12.1008ZM5.39234 11.6953H5.51891V11.8992H5.39234V11.6953ZM5.13918 11.6953H5.26576V11.8992H5.13918V11.6953ZM4.25315 17.1867H4.5063V17.3906H4.25315V17.1867ZM6.02522 13.3219H6.15179V13.118H6.02522V13.3219ZM4.5063 13.3219H4.63288V13.118H4.5063V13.3219ZM5.13918 13.118H5.51891V13.3219H5.13918V13.118Z" fill="#B20000"/>
</g>
<defs>
<clipPath id="clip0_14099_112460">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#ED2939"/>
<path d="M14 6H4V18H14V6Z" fill="#FAE042"/>
<path d="M10 6H4V18H10V6Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 144 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#E8112D"/>
<path d="M20 6H4V12H20V6Z" fill="#FCD116"/>
<path d="M11 6H4V18H11V6Z" fill="#008751"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -0,0 +1,471 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#FFD520"/>
<path d="M3 18H20V6L3 18Z" fill="#FF4E12"/>
<path d="M12.6347 9.75114C12.5349 9.71572 12.4705 9.76724 12.4738 9.89602C12.4769 10.0248 12.5446 10.0989 12.6443 10.0506L12.6347 9.75114L12.6347 9.75114Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.7228 9.51095C12.6398 9.44535 12.5623 9.47347 12.5239 9.59647C12.4856 9.71945 12.5258 9.81131 12.6358 9.79763L12.7228 9.51097V9.51095Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.8612 9.27701C12.7896 9.19892 12.7086 9.21424 12.651 9.3295C12.5935 9.44477 12.6185 9.54186 12.7293 9.546L12.8612 9.277L12.8612 9.27701Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.7703 10.4122C12.6479 10.4573 12.635 10.6247 12.7123 10.7277C12.7896 10.8307 12.9313 10.8501 13.0085 10.7277L12.7703 10.4121L12.7703 10.4122Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.6287 10.0568C12.5128 10.0181 12.4084 10.1738 12.3905 10.3143C12.368 10.4914 12.1168 10.5493 12.2553 10.8166C12.2842 10.646 12.397 10.5526 12.4871 10.5461C12.5772 10.5397 12.7125 10.5204 12.7704 10.4109L12.6287 10.0568L12.6287 10.0568Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.9953 10.7461C12.8601 10.7783 12.8407 10.9586 12.9373 11.0874C13.02 11.1976 13.2786 11.1711 13.2721 11.0616L12.9953 10.7461V10.7461Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.3788 11.832C13.3852 11.7161 13.1985 11.671 13.1084 11.6936C13.0182 11.7161 12.8459 11.6903 12.8057 11.5938C12.7735 11.671 12.8202 11.7547 12.9506 11.7966C13.0493 11.8283 13.0472 11.8996 13.0182 11.9318C13.0923 11.9447 13.3112 11.9447 13.3788 11.832V11.832Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.2725 11.091C13.1405 11.0331 13.0623 11.1213 13.0118 11.2069C12.9377 11.3325 12.7091 11.1715 12.6318 11.3389C12.7365 11.2939 12.843 11.39 12.8926 11.4226C13.0343 11.516 13.3079 11.487 13.3466 11.2681L13.2725 11.091L13.2725 11.091Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.3493 11.2461C13.2173 11.3459 13.1658 11.465 13.1691 11.5455C13.1723 11.626 13.285 11.8031 13.4073 11.8127C13.4782 11.6678 13.5136 11.362 13.3493 11.2461H13.3493Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.8027 11.8676C12.8027 11.8193 12.8736 11.8 12.9218 11.8161C12.9702 11.8322 13.0442 11.8805 13.0184 11.932L12.8027 11.8676H12.8027Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.0744 11.6033C12.0616 11.5453 12.1549 11.4455 12.2805 11.5002C12.406 11.555 12.4222 11.6612 12.3706 11.7031L12.0744 11.6033L12.0744 11.6033Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.3806 11.7086C12.3709 11.6764 12.4613 11.6121 12.6157 11.6506C12.7702 11.6893 12.8081 11.7888 12.8024 11.8663L12.3806 11.7086L12.3806 11.7086Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.0587 11.6031C12.1392 11.5419 12.1087 11.426 12.0361 11.3906C11.9041 11.3262 11.9525 11.1588 11.8687 11.1266C11.785 11.0944 11.7045 11.0365 11.7013 10.9785C11.6595 11.059 11.6852 11.1331 11.7432 11.1846C11.8011 11.2361 11.6981 11.4454 11.7721 11.5001L12.0587 11.6031L12.0587 11.6031Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.3329 11.5584C10.2653 11.4522 10.1043 11.4715 10.0367 11.5456C9.96909 11.6196 9.97875 11.7291 10.0431 11.7774L10.3329 11.5584L10.3329 11.5584Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.7189 11.4C10.6932 11.2584 10.5225 11.2423 10.4292 11.2777C10.3358 11.3131 10.2714 11.4547 10.3326 11.5578L10.7189 11.4H10.7189Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.9771 11.3797C11.0383 11.2606 10.9191 11.0835 10.7839 11.0578C10.671 11.0363 10.5376 11.0369 10.4942 10.9258C10.4668 11.0224 10.5392 11.0835 10.623 11.1383C10.7067 11.193 10.6068 11.3347 10.7421 11.4152L10.9771 11.3797L10.9771 11.3797Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.9641 11.3848C10.936 11.2995 10.9931 11.1859 11.1088 11.1939C11.2245 11.2019 11.2904 11.2859 11.2394 11.391L10.9641 11.3848H10.9641Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.2219 11.3912C11.206 11.3028 11.2785 11.1984 11.3919 11.2225C11.5053 11.2466 11.5588 11.3391 11.4936 11.436L11.2219 11.3912L11.2219 11.3912Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.4777 11.431C11.4662 11.3418 11.5439 11.2412 11.6559 11.2709C11.768 11.3007 11.8168 11.3958 11.7468 11.4892L11.4777 11.431L11.4777 11.431Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.53463 12.9062C9.31891 12.9062 9.26623 12.9576 9.23521 13.1799C9.19657 13.4568 9.57327 13.489 9.53463 12.9062Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.63132 12.617C9.2997 12.4914 9.11942 13.0162 8.79102 12.9229C8.90852 13.1096 9.19338 12.9232 9.2997 12.9422C9.48 12.9744 9.86956 12.9068 9.63132 12.617V12.617Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.41544 13.3357C9.25124 13.2617 9.07416 13.5128 9.10636 13.6222C9.14724 13.7613 9.52168 13.648 9.41544 13.3357Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M8.64918 14.4168C8.73933 14.4425 8.84879 14.4941 8.82947 14.6679C8.81015 14.8417 8.48177 15.1959 8.18557 15.2152C7.88937 15.2346 7.78311 15.5919 7.52877 15.4921C7.76701 15.4471 7.76701 15.1766 7.95375 15.0929C7.81853 15.0446 7.74769 15.3505 7.57385 15.3505C7.39999 15.3505 7.31629 15.6273 7.10379 15.608C6.89129 15.5887 6.86893 15.9451 6.44379 15.9493C6.11861 15.9525 5.71617 16.3324 5.57129 16.1683C5.88681 16.1232 6.01413 15.9483 6.20233 15.7561C6.50497 15.4471 6.84625 15.5855 6.96215 15.3118C6.8237 15.4052 6.66273 15.4502 6.50497 15.4471C6.30693 15.443 6.08965 15.7626 5.86749 15.6209C5.99627 15.6048 6.07999 15.5501 6.21521 15.4084C6.35369 15.2633 6.55687 15.3571 6.71747 15.2088C6.96859 14.977 7.18431 15.1702 7.42577 14.8804C7.35815 14.8482 7.21327 14.8707 7.07805 14.9416C6.94282 15.0124 6.76897 14.8932 6.61443 14.977C6.63375 14.7871 6.99433 14.8957 7.21971 14.7645C7.47407 14.6164 7.68495 14.6598 7.88617 14.6776C7.60607 14.676 7.49661 14.4103 7.11027 14.4876C6.94177 14.5213 6.80763 14.2558 6.64021 14.391C6.64503 14.2912 6.82051 14.2107 7.00081 14.3073C7.1811 14.4039 7.25377 14.2228 7.61253 14.449C7.76063 14.5423 8.01497 14.391 8.17595 14.4908C8.15503 14.4297 8.06326 14.391 7.95541 14.3991C8.02303 14.2607 8.45927 14.2783 8.64923 14.4168L8.64918 14.4168Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M8.93617 14.207C8.79451 14.0975 8.59811 14.2295 8.46289 14.178C8.46289 14.2681 8.50797 14.4034 8.65607 14.4549C8.70114 14.4227 8.90397 14.2456 8.93617 14.207L8.93617 14.207Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.15827 13.8961C8.93611 13.7835 8.89749 14.0636 8.72363 14.0056C8.73007 14.0861 8.79447 14.1859 8.93613 14.2085L9.15829 13.8962L9.15827 13.8961Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.28998 13.6408C8.96158 13.512 8.91972 13.8276 8.72656 13.7664C8.77164 13.8758 9.04852 13.9338 9.19018 13.8952L9.28999 13.6408L9.28998 13.6408Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.74046 12.2601C9.65352 12.1378 9.47002 12.2376 9.44104 12.3824C9.41206 12.5273 9.48289 12.7302 9.60524 12.6851L9.74045 12.2601L9.74046 12.2601Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.96317 11.8732C9.81185 11.8378 9.63799 11.8539 9.65731 12.002C9.59935 12.0278 9.58326 12.2177 9.74101 12.2596L9.96317 11.8732L9.96317 11.8732Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.0624 11.7734C9.91427 11.5996 9.74911 11.6036 9.65671 11.6768C9.48607 11.8121 9.32025 11.7348 9.31543 11.87C9.41846 11.7911 9.50861 11.8861 9.59231 11.8571C9.67602 11.8281 9.73719 11.9891 9.96901 11.9215L10.0624 11.7734L10.0624 11.7734Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.70518 14.3723C9.72772 14.4141 9.86616 14.4335 9.93378 14.3626C10.0234 14.2687 9.92412 14.0085 9.78246 13.9891C9.6408 13.9698 9.62792 14.2821 9.70519 14.3723L9.70518 14.3723Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.54395 14.3774C9.74677 14.4514 9.83371 14.2839 9.72424 14.1777C9.69526 14.2132 9.58901 14.3419 9.54395 14.3774Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M8.78464 14.6557C8.74599 14.7716 8.54637 14.7909 8.32102 15.1515C8.09563 15.5121 7.87994 15.3608 7.8252 15.6087C8.09564 15.3897 8.30804 15.5352 8.4691 15.3189C8.7138 14.9905 8.91528 15.0376 9.01 14.8166C9.14521 14.5011 9.73761 14.5076 9.76981 14.0118C9.5702 13.9731 8.93915 14.5076 8.78464 14.6556V14.6557Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.8652 9.787C14.1228 9.87071 14.1292 10.2055 14.4254 10.315C14.7217 10.4245 14.7507 10.6885 14.9921 10.6241C14.7667 10.5629 14.7828 10.3021 14.5478 10.2377C14.2721 10.1622 14.1679 9.7419 13.9489 9.67752" fill="white"/>
<path d="M13.8652 9.787C14.1228 9.87071 14.1292 10.2055 14.4254 10.315C14.7217 10.4245 14.7507 10.6885 14.9921 10.6241C14.7667 10.5629 14.7828 10.3021 14.5478 10.2377C14.2721 10.1622 14.1679 9.7419 13.9489 9.67752" stroke="black" stroke-width="0.01"/>
<path d="M15.0462 11.5352C15.0912 11.6382 15.0848 11.8218 14.9238 11.8701C15.0107 11.9248 15.1395 11.8733 15.2103 11.7542C15.1041 11.9892 15.1749 12.2017 15.3423 12.2435C15.2618 12.0793 15.4422 12.0021 15.3842 11.8958C15.4905 11.9409 15.5838 12.0858 15.5806 12.1759C15.7191 12.0214 15.4776 11.8153 15.5227 11.6705L15.0462 11.5352V11.5352Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.3792 13.19C13.2214 13.0516 13.1541 13.2262 13.0765 13.1659C13.0041 13.1095 12.9075 13.1015 12.8705 13.1578C13.0058 13.1626 12.9397 13.2673 13.2021 13.293C12.9397 13.3107 12.988 13.6037 12.8125 13.5892C12.9993 13.7663 13.0958 13.4315 13.2472 13.4862C13.2021 13.4991 13.318 13.6053 13.2375 13.747C13.3679 13.7438 13.421 13.5635 13.4372 13.4701L13.3792 13.19V13.19Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M9.90445 14.6944C9.84649 14.6461 9.67907 14.6235 9.61469 14.6622C9.55031 14.7008 9.57284 14.7104 9.65011 14.7169C9.72738 14.7234 9.82716 14.8484 9.65977 14.8554C9.5825 14.8585 9.60826 15.0453 9.44727 15.0582C9.51327 15.1387 9.70163 15.0855 9.76923 14.997C9.75635 15.0695 9.85293 15.1355 9.8143 15.2224C9.93343 15.2353 9.8642 14.981 10.0526 14.9938C9.97529 15.0035 10.0075 15.1773 10.1427 15.1322C10.0622 15.1709 10.1041 15.2642 10.1942 15.2417C10.1363 15.261 10.1169 15.335 10.1974 15.377C10.2747 15.2707 10.1878 14.8908 9.90446 14.6944L9.90445 14.6944Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.917 11.1405C17.1634 11.1405 17.3631 10.9407 17.3631 10.6942C17.3631 10.4478 17.1634 10.248 16.917 10.248C16.6705 10.248 16.4707 10.4478 16.4707 10.6942C16.4707 10.9407 16.6705 11.1405 16.917 11.1405Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.5865 11.6792C14.7217 11.5505 14.9278 11.4861 15.0694 11.5826C15.2111 11.6792 15.6812 11.7951 15.913 11.6342C16.1447 11.4732 16.2542 11.3895 16.3572 11.4088C16.4346 11.5247 16.5279 11.5794 16.6438 11.5891C16.6792 11.6277 16.8048 11.6599 16.8757 11.6502C16.9787 11.676 17.1042 11.6438 17.204 11.5343C17.3586 11.5569 17.5034 11.441 17.5582 11.2671C17.7223 11.2478 17.732 11.0643 17.629 10.9419C17.5324 10.9226 17.6065 10.5974 17.2555 10.6618C17.4037 10.752 17.2909 10.9323 17.4133 11.016C17.3296 11.016 17.2218 11.0514 17.196 11.177C17.2282 11.0901 17.1912 11.0321 17.1686 11.0128C17.1718 10.9387 17.0077 10.7568 16.8531 10.8228C16.9642 10.847 16.9014 11.0257 16.9819 11.0933C16.9239 11.0965 16.8627 11.1255 16.8273 11.177C16.7855 11.1029 16.6374 11.0257 16.5472 11.0192C16.5472 10.9935 16.5424 10.942 16.5312 10.9162C16.4909 10.8389 16.4571 10.7472 16.4732 10.6297C16.3959 10.7134 16.3315 10.8293 16.2929 10.913C16.1706 10.8293 15.8679 10.9516 15.7263 10.9838C15.5846 11.016 15.1081 10.9387 14.9986 10.8228C14.8892 10.7069 14.6767 10.6361 14.4771 10.5781C14.2026 10.4985 14.2002 10.1982 13.8975 9.99219C13.8911 10.3657 14.4578 11.5505 14.5865 11.6792L14.5865 11.6792Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.4314 14.5269C11.6697 14.5269 11.8628 14.3337 11.8628 14.0955C11.8628 13.8572 11.6697 13.6641 11.4314 13.6641C11.1932 13.6641 11 13.8572 11 14.0955C11 14.3337 11.1932 14.5269 11.4314 14.5269Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.4005 14.1951C10.4875 14.3078 10.6355 14.3014 10.6967 14.2917C10.7482 14.4269 10.9124 14.4237 10.9833 14.4977C11.0541 14.5718 11.2955 14.5654 11.3664 14.5235C11.302 14.5171 11.2183 14.4785 11.1378 14.4108C11.0406 14.3292 11.0863 14.1661 11.009 14.1082C11.067 14.0438 11.0766 13.9376 11.0638 13.8957C11.1249 13.8603 11.17 13.8023 11.1764 13.7733C11.2827 13.7669 11.376 13.7122 11.4147 13.6703C11.4695 13.7218 11.6079 13.6542 11.682 13.7411C11.698 13.5286 11.4952 13.416 11.36 13.4868C11.3052 13.4578 11.1604 13.4771 11.1346 13.5158C11.0895 13.4965 10.964 13.5609 10.906 13.6027C10.9704 13.5673 10.9801 13.461 10.9543 13.4224C11.009 13.3999 11.0702 13.3258 11.0766 13.2711C11.1539 13.284 11.2698 13.2325 11.3213 13.2453C11.2376 13.1359 11.0992 13.0972 10.9575 13.1069C10.811 13.115 10.7483 13.218 10.7289 13.3291C10.642 13.3806 10.613 13.5544 10.6452 13.6156C10.5953 13.614 10.5486 13.6623 10.5293 13.6896C10.4617 13.6607 10.3651 13.6398 10.2959 13.6398" fill="white"/>
<path d="M10.4005 14.1951C10.4875 14.3078 10.6355 14.3014 10.6967 14.2917C10.7482 14.4269 10.9124 14.4237 10.9833 14.4977C11.0541 14.5718 11.2955 14.5654 11.3664 14.5235C11.302 14.5171 11.2183 14.4785 11.1378 14.4108C11.0406 14.3292 11.0863 14.1661 11.009 14.1082C11.067 14.0438 11.0766 13.9376 11.0638 13.8957C11.1249 13.8603 11.17 13.8023 11.1764 13.7733C11.2827 13.7669 11.376 13.7122 11.4147 13.6703C11.4695 13.7218 11.6079 13.6542 11.682 13.7411C11.698 13.5286 11.4952 13.416 11.36 13.4868C11.3052 13.4578 11.1604 13.4771 11.1346 13.5158C11.0895 13.4965 10.964 13.5609 10.906 13.6027C10.9704 13.5673 10.9801 13.461 10.9543 13.4224C11.009 13.3999 11.0702 13.3258 11.0766 13.2711C11.1539 13.284 11.2698 13.2325 11.3213 13.2453C11.2376 13.1359 11.0992 13.0972 10.9575 13.1069C10.811 13.115 10.7483 13.218 10.7289 13.3291C10.642 13.3806 10.613 13.5544 10.6452 13.6156C10.5953 13.614 10.5486 13.6623 10.5293 13.6896C10.4617 13.6607 10.3651 13.6398 10.2959 13.6398" stroke="black" stroke-width="0.01"/>
<path d="M10.3261 13.4638C10.2972 13.3801 10.3355 13.3048 10.3551 13.2385C10.405 13.0694 10.3744 13.026 10.2231 13.0485C10.2102 13.129 10.2875 13.393 10.3261 13.4638L10.3261 13.4638Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.2158 13.0571C10.2545 13.0957 10.3913 13.1135 10.4058 12.9911C10.4224 12.8507 10.3655 12.7963 10.2432 12.8511C10.2335 12.8833 10.2223 13.0153 10.2158 13.0571L10.2158 13.0571Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.2441 12.8465C10.2957 12.8674 10.4067 12.9093 10.4679 12.7902C10.5192 12.6902 10.4518 12.6131 10.3456 12.6195C10.3198 12.6485 10.2683 12.7515 10.2441 12.8465L10.2441 12.8465Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.3399 12.6097C10.3527 12.6483 10.4847 12.7771 10.5813 12.6837C10.6779 12.5903 10.6779 12.4519 10.533 12.4004C10.4944 12.4068 10.3785 12.542 10.3398 12.6097L10.3399 12.6097Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.5322 12.4014C10.5612 12.4819 10.6513 12.6203 10.8188 12.5559C10.9862 12.4915 10.9154 12.2823 10.8381 12.2404C10.793 12.2436 10.6095 12.3274 10.5322 12.4014L10.5322 12.4014Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.8384 12.2397C10.8255 12.3105 10.8384 12.5037 11.067 12.5005C11.2955 12.4973 11.2312 12.23 11.1732 12.1914C11.0799 12.1914 10.9221 12.1946 10.8384 12.2397L10.8384 12.2397Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.1835 12.201C11.1577 12.2557 11.0997 12.616 11.5473 12.5165C11.6052 12.5037 11.7565 12.172 11.1835 12.201Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.4273 12.2331C11.3823 12.2782 11.4982 12.642 11.8008 12.5808C12.1035 12.5196 11.8492 12.1751 11.4273 12.2331Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.6851 12.2891C11.6369 12.3889 11.7094 12.6851 12.0828 12.6851C12.4212 12.6851 12.0651 12.2955 11.6851 12.2891Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M11.9786 12.375C11.9544 12.4304 11.9247 12.7444 12.365 12.771C12.6837 12.7903 12.6065 12.3396 11.9786 12.375Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.4517 12.5076C12.397 12.6042 12.339 12.8457 12.8219 12.865C13.1314 12.8774 12.9411 12.514 12.4517 12.5076Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M12.8537 12.5812C12.7829 12.6778 12.8351 12.8673 13.0146 12.9032C13.2401 12.9483 13.2722 12.7358 13.1177 12.6328C12.9631 12.5297 12.8537 12.5812 12.8537 12.5812V12.5812Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.0733 12.627C13.0218 12.7171 13.0537 12.936 13.3952 12.936C13.466 12.936 13.7365 12.6592 13.0733 12.627Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M10.4296 16.826C10.7062 16.826 10.9304 16.6017 10.9304 16.3251C10.9304 16.0485 10.7062 15.8242 10.4296 15.8242C10.153 15.8242 9.92871 16.0485 9.92871 16.3251C9.92871 16.6017 10.153 16.826 10.4296 16.826Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.1028 9.54286C14.0641 9.58149 13.9837 9.69739 13.9675 9.74247C13.8001 10.2447 14.247 10.6199 14.5085 11.1591C14.7145 11.584 14.6888 12.2537 14.3668 12.6787C14.2566 12.8241 14.2895 12.8654 14.1479 13.0135C14.0935 13.0704 14.032 13.1423 14.0513 13.3484C14.1415 13.3162 14.2702 13.3999 14.296 13.4707C14.3604 13.4385 14.4505 13.4514 14.4827 13.49C14.5921 13.4385 14.6823 13.4643 14.7789 13.5673C14.8626 13.5544 14.9528 13.5673 15.0364 13.6575C15.0815 13.5673 15.1717 13.5351 15.236 13.5544C15.2296 13.4385 15.3455 13.3548 15.4485 13.3999C15.4164 13.2454 15.558 13.1294 15.6933 13.1745C15.8091 13.0844 16.0409 13.0779 16.1569 13.2132C15.9508 13.1552 15.9573 13.3741 15.7834 13.3548C15.8284 13.4836 15.7125 13.5577 15.5967 13.5995C15.6707 13.5641 15.7512 13.5222 15.7769 13.5673C15.8414 13.511 15.9701 13.5319 16.0024 13.5609C16.0876 13.5335 16.1698 13.5544 16.2084 13.6575C16.3243 13.7283 16.4015 13.9086 16.3179 14.0438C16.2921 13.9022 16.1955 13.9086 16.1569 13.8506C16.0667 13.8828 15.9765 13.8828 15.9508 13.8249C15.8993 13.8764 15.7254 13.9215 15.6482 13.8442C15.6192 13.9601 15.5194 14.0567 15.4034 14.0567C15.4357 14.1468 15.3455 14.3014 15.2747 14.3787C15.3842 14.4366 15.3519 14.5654 15.3262 14.6427C15.4936 14.6684 15.3519 14.8165 15.6417 14.9131C15.5001 14.9582 15.2232 14.9131 15.1845 14.7392C15.0429 14.7328 14.9463 14.5912 14.9528 14.443C14.8433 14.34 14.8272 14.1919 14.9785 14.0889C14.8497 14.1275 14.7789 13.9215 14.5921 14.0052C14.4993 14.0468 14.2541 13.9762 14.2573 13.8893C14.2187 13.9537 13.9837 13.9279 13.9514 13.8184C13.8742 13.8603 13.6938 13.7895 13.6971 13.6832C13.5973 13.7283 13.4621 13.6478 13.4685 13.5448C13.3752 13.5319 13.3655 13.4482 13.3719 13.3774C13.2882 13.3387 13.3108 13.2582 13.3429 13.1617C13.285 13.0973 13.3108 13.0071 13.3558 12.9234C13.2914 12.859 13.3043 12.7817 13.3236 12.6916C13.0145 12.6658 12.6273 12.5913 11.7396 12.3181C10.4002 11.906 10.0396 12.8719 10.3358 13.4772C10.6776 14.1756 10.2972 14.3272 10.4131 14.8488C10.5355 14.8745 10.5999 14.9775 10.5934 15.087C10.6658 15.0902 10.7174 15.1578 10.6916 15.2866C10.7528 15.2754 10.8317 15.293 10.8832 15.3445C10.9283 15.2609 11.0764 15.2415 11.1536 15.3381C11.321 15.3252 11.4048 15.4604 11.3983 15.6279C11.4884 15.7889 11.4563 15.9853 11.3597 16.1108C11.3693 16.0432 11.3597 15.9466 11.3565 15.8887C11.3505 15.7821 11.2019 15.7599 11.218 15.6729C11.1408 15.6794 11.0667 15.6375 11.0409 15.5796C10.9959 15.6182 10.9315 15.6311 10.8767 15.6118C10.9637 15.6504 11.0313 15.8049 11.0055 15.9079C11.0506 15.9853 11.0409 16.1269 10.9862 16.1881C10.9605 16.3136 10.8639 16.3587 10.7383 16.3039C10.8091 16.2589 10.8349 16.1784 10.8317 16.1108C10.7866 16.0722 10.7641 15.9981 10.7608 15.953C10.6353 15.9723 10.4614 15.8661 10.4294 15.8241C10.1527 15.8241 9.9285 16.0484 9.9285 16.325C9.91563 16.2219 9.78533 16.1204 9.80142 16.0335C9.72415 15.7953 9.83362 15.5731 10.1491 15.5281C10.1105 15.4379 10.2457 15.3445 10.1942 15.2415C10.1284 15.1099 10.0075 14.9389 9.8272 14.7393C9.93666 14.5525 9.90446 14.3014 9.84007 14.1469C9.7476 13.9249 9.65977 13.9794 9.33137 14.34C8.79617 14.9277 8.08217 14.765 7.45113 15.1514C7.28345 15.254 7.11631 15.293 7.2966 15.1128C7.4769 14.9324 7.9534 14.7522 8.26246 14.5976C8.84126 14.3082 9.33136 13.8249 9.52454 12.8848C9.97848 10.6756 11.6493 11.4038 12.7053 11.8159C13.6968 12.2028 13.5167 11.3265 13.0144 10.7985C12.4108 10.1639 12.5315 9.66525 12.8148 9.26601C13.3235 9.19519 14.2991 9.37226 14.1027 9.54291L14.1028 9.54286Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.8968 14.9694C16.2011 14.9694 16.4479 14.7228 16.4479 14.4184C16.4479 14.1141 16.2011 13.8673 15.8968 13.8673C15.5924 13.8673 15.3457 14.1141 15.3457 14.4184C15.3457 14.7228 15.5925 14.9694 15.8968 14.9694Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.7945 9.56836C13.6721 10.1093 13.7751 10.3539 13.9555 10.5922C14.328 11.0846 14.6251 12.2084 14.2001 12.9424" stroke="black" stroke-width="0.01"/>
<path d="M14.4375 12.3098C14.489 12.2905 14.5856 12.2293 14.6082 12.123" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.4766 12.0752C14.4926 11.9818 14.6375 11.9416 14.6407 11.8418" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.4799 11.7098C14.4703 11.6132 14.6248 11.5263 14.6023 11.4297" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.3963 11.3638C14.3834 11.3091 14.5251 11.2061 14.4865 11.1191" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.2897 11.0245C14.2607 10.9633 14.3573 10.8925 14.3155 10.8281" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.1358 10.7547C14.1262 10.7129 14.1858 10.6211 14.1536 10.5664" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.9805 10.4351C13.9933 10.419 14.0449 10.3803 14.0239 10.332" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.875 10.2023C13.8959 10.191 13.9587 10.1717 13.9507 10.125" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.652 16.2724C10.5233 16.2273 10.3623 16.2917 10.3301 16.4012" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.4268 16.5019C10.4429 16.3925 10.6103 16.3441 10.6618 16.3956C10.5555 16.3377 10.504 16.5437 10.5974 16.5502" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.4631 13.9551C11.3859 13.9937 11.3634 14.1354 11.4631 14.2417" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.5789 13.9863C11.5242 14.0314 11.5274 14.1666 11.6079 14.1988C11.5403 14.1505 11.6079 14.0668 11.6562 14.0636C11.7045 14.0604 11.7367 14.1183 11.6787 14.1763" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.1028 14.3059C15.9226 14.2576 15.7777 14.4669 15.9418 14.6536C15.9387 14.4733 16.0674 14.3542 16.2252 14.3864" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.1523 14.5098C16.1079 14.5098 16.083 14.5444 16.083 14.5782C16.083 14.6136 16.1136 14.6474 16.1635 14.6474C16.1958 14.6474 16.2215 14.6104 16.2215 14.5814" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.7881 10.5586C16.8171 10.6681 16.9684 10.7131 17.0875 10.6874" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.0874 10.6167C16.9941 10.62 16.9168 10.533 16.9232 10.459C16.9232 10.5137 17.0488 10.5395 17.0874 10.5041" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.6965 14.2931C10.6708 14.2287 10.7738 14.1643 10.777 14.1031C10.7802 14.042 10.8929 13.9937 11.0088 14.1096" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.9547 13.4238C10.9322 13.4335 10.9129 13.4464 10.8936 13.4528" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.1768 13.7743C11.1494 13.7759 11.0931 13.7727 11.0625 13.7517" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.0643 13.8967C11.0418 13.908 10.9919 13.9273 10.9629 13.9337" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M9.95911 15.8418C9.95589 15.8998 10.0138 15.9835 10.046 16.0092" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.2108 15.7031C10.1786 15.7514 10.1593 15.8351 10.1786 15.893" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.6907 15.8968C10.6327 15.8581 10.6714 15.7583 10.6649 15.6939C10.6585 15.6295 10.7325 15.5265 10.8774 15.6134" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.1494 15.5291C10.2074 15.5194 10.2685 15.5226 10.3072 15.5387" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.884 15.3455C10.8583 15.3809 10.8518 15.4195 10.8486 15.4453" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.1538 15.3398C11.1087 15.3398 11.0701 15.372 11.0508 15.4043" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.5293 13.6914C10.5808 13.7091 10.7144 13.7912 10.7193 13.8765" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.0763 13.2716C10.9186 13.2684 10.8574 13.1074 10.9765 13.1074" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.3606 13.4883C11.2995 13.514 11.3285 13.6203 11.4154 13.6718" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.9837 14.4987C10.9531 14.4601 10.9933 14.3474 11.0931 14.3812" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M11.2188 15.6739C11.2251 15.5757 11.3492 15.5177 11.3991 15.6288" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M10.7615 15.9531C10.7535 15.8452 10.8082 15.8098 10.8565 15.8034C10.9048 15.797 10.974 15.8372 11.0062 15.908" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M9.80176 16.0354C9.8082 15.971 9.86293 15.9034 9.92088 15.913" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.6935 13.1758C15.6516 13.2064 15.6242 13.3432 15.7836 13.3561" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.4492 13.4004C15.4492 13.4165 15.4701 13.439 15.4831 13.4487" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.2088 13.6593C16.167 13.6271 16.0591 13.7575 16.1573 13.8525" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.1848 14.7395C15.1607 14.6478 15.246 14.6236 15.3265 14.6429" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.9785 14.0896C15.0268 14.0574 15.0751 14.022 15.1363 14.0059" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.9531 14.4441C14.9531 14.3669 14.9917 14.3025 15.0271 14.2832" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.2361 13.5547C15.2296 13.6481 15.2683 13.7382 15.2973 13.7865" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.0027 13.5625C15.956 13.577 15.9142 13.5947 15.8965 13.6333" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.9512 13.8255C15.9738 13.8062 15.9995 13.7837 16.0108 13.7676" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M17.1681 11.0156C17.1681 11.1058 17.0554 11.1541 16.9814 11.0961" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M17.4131 11.0183C17.4629 11.0569 17.6352 11.0199 17.5949 10.9201" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M17.2034 11.5363C17.168 11.5298 17.1068 11.4912 17.0811 11.459" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M17.5582 11.2687C17.5003 11.2816 17.4616 11.2687 17.4326 11.2559" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.6436 11.591C16.6757 11.591 16.753 11.5781 16.8061 11.5508" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.5468 11.0209C16.5049 11.0161 16.4743 11.0241 16.4502 11.0402" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M17.1958 11.1797C17.1845 11.2199 17.1555 11.2827 17.1201 11.3101" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.4375 11.3215C16.518 11.2861 16.6178 11.5598 16.811 11.4632" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.8273 11.1797C16.8016 11.2151 16.7855 11.2698 16.7822 11.3181" stroke="black" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.9766 10.7601C13.0023 10.7569 13.0474 10.7472 13.0571 10.715" stroke="black" stroke-width="0.01"/>
<path d="M9.66309 13.7578C9.75968 13.8125 9.82729 13.9059 9.78544 14.0444" stroke="black" stroke-width="0.01"/>
<path d="M14.0898 10.4642C14.1188 10.4835 14.2283 10.4835 14.2895 10.4609" stroke="black" stroke-width="0.01"/>
<path d="M14.3673 10.5273C14.364 10.5724 14.377 10.743 14.29 10.7785" stroke="black" stroke-width="0.01"/>
<path d="M14.3223 10.7569C14.4028 10.7826 14.5638 10.773 14.6153 10.6249" stroke="black" stroke-width="0.01"/>
<path d="M14.5025 10.75C14.5443 10.8144 14.5571 10.94 14.4316 11.0076" stroke="black" stroke-width="0.01"/>
<path d="M14.5342 10.8571C14.6275 10.8893 14.8433 10.8925 14.8207 10.709" stroke="black" stroke-width="0.01"/>
<path d="M14.7471 10.8574C14.8115 10.9476 15.0948 11.0538 15.0497 10.8671" stroke="black" stroke-width="0.01"/>
<path d="M14.4863 11.1165C14.5957 11.1422 14.7503 11.0682 14.6859 10.875" stroke="black" stroke-width="0.01"/>
<path d="M14.9951 10.9731C15.0112 11.0472 15.3718 11.1244 15.3235 10.957" stroke="black" stroke-width="0.01"/>
<path d="M15.2559 11.0527C15.3235 11.2072 15.6809 11.1943 15.5682 10.9883" stroke="black" stroke-width="0.01"/>
<path d="M15.5098 11.1504C15.5806 11.2374 15.8962 11.1858 15.7706 10.9766" stroke="black" stroke-width="0.01"/>
<path d="M15.7676 11.1467C15.964 11.2948 16.1926 11.0823 15.9447 10.9277" stroke="black" stroke-width="0.01"/>
<path d="M16.0576 11.0976C16.2315 11.236 16.444 10.9849 16.2927 10.9141" stroke="black" stroke-width="0.01"/>
<path d="M14.6826 11.0394C14.7374 11.0555 14.8533 11.049 14.879 10.9492" stroke="black" stroke-width="0.01"/>
<path d="M14.8351 11.0175C14.8287 11.164 15.075 11.2203 15.1377 11.0513" stroke="black" stroke-width="0.01"/>
<path d="M15.0566 11.1439C15.1017 11.2404 15.3174 11.2791 15.3528 11.1406" stroke="black" stroke-width="0.01"/>
<path d="M15.3174 11.2043C15.3528 11.3009 15.5395 11.2912 15.591 11.1914" stroke="black" stroke-width="0.01"/>
<path d="M15.5234 11.2552C15.5814 11.3808 15.8196 11.3808 15.8744 11.1973" stroke="black" stroke-width="0.01"/>
<path d="M15.832 11.2777C15.9254 11.3356 16.125 11.3131 16.1089 11.1328" stroke="black" stroke-width="0.01"/>
<path d="M16.0703 11.2629C16.2087 11.3756 16.4052 11.2661 16.3086 11.0762" stroke="black" stroke-width="0.01"/>
<path d="M16.2988 11.4105C16.3729 11.3977 16.4115 11.2496 16.3342 11.2109" stroke="black" stroke-width="0.01"/>
<path d="M14.583 11.4361C14.7375 11.3524 14.7665 11.2107 14.6603 11.0723" stroke="black" stroke-width="0.01"/>
<path d="M14.7148 11.2953C14.8114 11.3532 14.9949 11.2921 15.0271 11.1504" stroke="black" stroke-width="0.01"/>
<path d="M14.8473 11.3105C14.902 11.3813 14.9117 11.4682 14.8408 11.5487" stroke="black" stroke-width="0.01"/>
<path d="M14.8916 11.4016C15.0622 11.2953 15.2747 11.4917 15.1169 11.6108" stroke="black" stroke-width="0.01"/>
<path d="M15.0879 11.3914C15.1266 11.3818 15.1941 11.311 15.2006 11.2305" stroke="black" stroke-width="0.01"/>
<path d="M15.166 11.4647C15.2368 11.3906 15.7199 11.542 15.4139 11.6965" stroke="black" stroke-width="0.01"/>
<path d="M15.3906 11.2617C15.484 11.2971 15.5323 11.4291 15.3906 11.4742" stroke="black" stroke-width="0.01"/>
<path d="M15.5137 11.5835C15.6167 11.4773 15.9387 11.5449 15.8228 11.6801" stroke="black" stroke-width="0.01"/>
<path d="M15.7451 11.5433C15.803 11.3469 16.1475 11.4692 16.0349 11.5497" stroke="black" stroke-width="0.01"/>
<path d="M15.6745 11.3459C15.6842 11.3845 15.6874 11.4811 15.623 11.5326" stroke="black" stroke-width="0.01"/>
<path d="M15.9637 11.3066C15.9765 11.3388 15.9733 11.4 15.9443 11.4386" stroke="black" stroke-width="0.01"/>
<path d="M16.1834 11.3105C16.2027 11.3459 16.2349 11.4135 16.1641 11.4682" stroke="black" stroke-width="0.01"/>
<path d="M13.4268 9.83008C13.4299 10.0136 13.4943 10.1359 13.7423 10.02" stroke="black" stroke-width="0.01"/>
<path d="M13.5043 10.0488C13.382 10.213 13.5204 10.3901 13.7619 10.213" stroke="black" stroke-width="0.01"/>
<path d="M13.1279 10.1297C13.2953 10.31 13.5948 10.178 13.4016 9.9043" stroke="black" stroke-width="0.01"/>
<path d="M13.6042 10.2832C13.5719 10.4603 13.7168 10.4957 13.8359 10.4152" stroke="black" stroke-width="0.01"/>
<path d="M12.9795 10.1582C13.01 10.3362 13.192 10.4769 13.3691 10.3675" stroke="black" stroke-width="0.01"/>
<path d="M13.1982 10.4023C13.1982 10.6567 13.5492 10.6857 13.6297 10.4217" stroke="black" stroke-width="0.01"/>
<path d="M13.5039 10.5833C13.6166 10.8151 13.8612 10.7217 13.9417 10.5801" stroke="black" stroke-width="0.01"/>
<path d="M13.2559 10.2127C13.3009 10.3254 13.3911 10.4509 13.6004 10.3576" stroke="black" stroke-width="0.01"/>
<path d="M12.6123 10.1582C12.6413 10.2516 12.8087 10.3643 13.0019 10.2355" stroke="black" stroke-width="0.01"/>
<path d="M12.7313 10.2773C12.6282 10.4287 12.8343 10.5703 13.0822 10.345" stroke="black" stroke-width="0.01"/>
<path d="M12.8535 10.4648C12.8953 10.6773 12.979 10.848 13.2817 10.5743" stroke="black" stroke-width="0.01"/>
<path d="M13.1309 10.6835C13.2404 10.8187 13.4078 10.9024 13.5655 10.6738" stroke="black" stroke-width="0.01"/>
<path d="M13.6813 10.7207C13.6716 10.8817 13.7038 10.9622 13.8294 10.9557C13.9284 10.9507 14.0225 10.872 14.0773 10.7883" stroke="black" stroke-width="0.01"/>
<path d="M13.8067 10.957C13.8034 11.1405 13.9483 11.2854 14.2188 11.0987" stroke="black" stroke-width="0.01"/>
<path d="M13.9199 11.1721C13.8684 11.3105 14.0229 11.5359 14.3256 11.42" stroke="black" stroke-width="0.01"/>
<path d="M13.2789 10.8047C13.2596 10.9818 13.4238 11.1009 13.6878 10.8723" stroke="black" stroke-width="0.01"/>
<path d="M13.4082 11.002C13.4179 11.1468 13.582 11.3207 13.8235 11.0696" stroke="black" stroke-width="0.01"/>
<path d="M13.5236 11.1855C13.5043 11.4334 13.7329 11.5043 13.926 11.3143" stroke="black" stroke-width="0.01"/>
<path d="M13.1787 11.0018C13.2302 11.005 13.272 10.9599 13.2978 10.9277" stroke="black" stroke-width="0.01"/>
<path d="M13.2881 11.1814C13.3332 11.191 13.4105 11.1492 13.4363 11.0977" stroke="black" stroke-width="0.01"/>
<path d="M13.4014 11.474C13.4529 11.5287 13.6267 11.4901 13.6492 11.416" stroke="black" stroke-width="0.01"/>
<path d="M13.5947 11.4722C13.6913 11.6976 13.9488 11.6879 14.0551 11.4336" stroke="black" stroke-width="0.01"/>
<path d="M14.0068 11.5234C14.0551 11.6554 14.1775 11.7391 14.3771 11.6941" stroke="black" stroke-width="0.01"/>
<path d="M14.1027 11.6583C13.9901 11.8418 14.1382 12.0575 14.3892 11.845" stroke="black" stroke-width="0.01"/>
<path d="M14.1641 11.9316C14.1513 12.0475 14.2576 12.1795 14.4024 12.1956" stroke="black" stroke-width="0.01"/>
<path d="M13.6877 11.5939C13.649 11.8547 13.8358 11.9802 14.0709 11.8418" stroke="black" stroke-width="0.01"/>
<path d="M13.4141 11.7188C13.4752 11.767 13.5847 11.7735 13.6877 11.7348" stroke="black" stroke-width="0.01"/>
<path d="M13.813 11.8869C13.755 12.1058 13.9804 12.2636 14.1736 12.0189" stroke="black" stroke-width="0.01"/>
<path d="M13.501 11.7559C13.5042 11.8685 13.6137 11.9909 13.8036 11.9555" stroke="black" stroke-width="0.01"/>
<path d="M14.3345 12.1799C14.2057 12.2668 14.1799 12.4214 14.3603 12.5212" stroke="black" stroke-width="0.01"/>
<path d="M14.0195 12.1347C14.026 12.2667 14.0872 12.3407 14.232 12.3536" stroke="black" stroke-width="0.01"/>
<path d="M13.8298 12.0664C13.6366 12.2435 13.8266 12.4495 14.0551 12.2757" stroke="black" stroke-width="0.01"/>
<path d="M13.9648 12.332C13.9004 12.5349 14.1419 12.6572 14.2707 12.4512" stroke="black" stroke-width="0.01"/>
<path d="M13.5654 11.9004C13.4946 12.1 13.5847 12.232 13.7489 12.2191" stroke="black" stroke-width="0.01"/>
<path d="M13.3115 11.8611C13.3212 11.9802 13.4242 12.0221 13.5401 11.9963" stroke="black" stroke-width="0.01"/>
<path d="M13.3849 11.9863C13.298 12.1537 13.43 12.2439 13.6039 12.1795" stroke="black" stroke-width="0.01"/>
<path d="M14.1319 12.5527C14.1029 12.659 14.119 12.7363 14.2767 12.7717" stroke="black" stroke-width="0.01"/>
<path d="M14.1417 12.7051C13.9517 12.792 13.9356 12.9755 14.0837 13.0946" stroke="black" stroke-width="0.01"/>
<path d="M13.9888 12.5C13.8891 12.5902 13.9083 12.7463 14.0178 12.8075" stroke="black" stroke-width="0.01"/>
<path d="M13.144 11.9121C13.0345 12.02 13.1391 12.3178 13.3805 12.1552" stroke="black" stroke-width="0.01"/>
<path d="M13.7713 12.2893C13.6231 12.4116 13.6908 12.6338 13.9355 12.5726" stroke="black" stroke-width="0.01"/>
<path d="M13.5266 12.1953C13.4493 12.4143 13.5234 12.4915 13.6973 12.4947" stroke="black" stroke-width="0.01"/>
<path d="M12.9831 11.9023C12.8511 12.0021 12.8865 12.1438 12.9445 12.2082C13.0025 12.2726 13.1119 12.2436 13.1473 12.1599" stroke="black" stroke-width="0.01"/>
<path d="M12.7054 11.8164C12.5573 12.0064 12.7054 12.2317 12.9147 12.1641" stroke="black" stroke-width="0.01"/>
<path d="M13.4982 12.3789C13.3469 12.4336 13.2314 12.571 13.3243 12.6912C13.379 12.762 13.6173 12.7717 13.6849 12.498" stroke="black" stroke-width="0.01"/>
<path d="M13.2239 12.2031C13.137 12.3287 13.1659 12.4478 13.3269 12.509" stroke="black" stroke-width="0.01"/>
<path d="M13.2148 12.4375C13.1214 12.489 13.0602 12.5502 13.0828 12.6629" stroke="black" stroke-width="0.01"/>
<path d="M13.0057 12.2402C12.9703 12.3916 13.0121 12.4849 13.1054 12.53" stroke="black" stroke-width="0.01"/>
<path d="M13.0018 12.4209C12.8569 12.4112 12.7829 12.4724 12.8311 12.6141" stroke="black" stroke-width="0.01"/>
<path d="M12.844 12.4569C12.7024 12.4054 12.6798 12.2831 12.7409 12.1543" stroke="black" stroke-width="0.01"/>
<path d="M12.7222 12.3438C12.5676 12.3502 12.5 12.4275 12.5 12.5337" stroke="black" stroke-width="0.01"/>
<path d="M12.5129 11.7422C12.4002 11.7905 12.3648 11.9418 12.4066 12.0255C12.4486 12.1092 12.5806 12.1157 12.6611 12.0609" stroke="black" stroke-width="0.01"/>
<path d="M12.1973 11.6229C12.0943 11.7388 12.2133 11.9642 12.3969 11.9094" stroke="black" stroke-width="0.01"/>
<path d="M11.9328 11.5332C11.8362 11.6684 11.9425 11.8938 12.1904 11.8294" stroke="black" stroke-width="0.01"/>
<path d="M12.2038 12.4575C12.178 12.2965 12.3455 12.1903 12.5516 12.3996" stroke="black" stroke-width="0.01"/>
<path d="M12.4514 12.0742C12.3903 12.129 12.3614 12.2159 12.3709 12.2867" stroke="black" stroke-width="0.01"/>
<path d="M11.6696 11.4551C11.5633 11.6354 11.6922 11.7996 11.9207 11.7352" stroke="black" stroke-width="0.01"/>
<path d="M12.2649 11.9023C12.1136 12.0537 12.1651 12.205 12.2778 12.2919" stroke="black" stroke-width="0.01"/>
<path d="M12.1685 12.0801C11.9399 12.0833 11.9271 12.3473 12.1138 12.431" stroke="black" stroke-width="0.01"/>
<path d="M11.994 11.8164C11.9007 11.8808 11.8717 12.0579 12.0327 12.1287" stroke="black" stroke-width="0.01"/>
<path d="M11.9876 12.2131C11.891 12.168 11.7751 12.2227 11.7847 12.3354" stroke="black" stroke-width="0.01"/>
<path d="M11.8425 12.2153C11.7556 12.0092 11.5013 12.0447 11.5239 12.2572" stroke="black" stroke-width="0.01"/>
<path d="M11.914 11.9609C11.8593 11.9705 11.7498 12.0027 11.708 12.0864" stroke="black" stroke-width="0.01"/>
<path d="M11.7243 11.7285C11.6213 11.8444 11.7017 11.9829 11.7855 12.0118" stroke="black" stroke-width="0.01"/>
<path d="M11.4178 11.4043C11.3984 11.5427 11.4532 11.6104 11.627 11.5975" stroke="black" stroke-width="0.01"/>
<path d="M11.4796 11.582C11.4119 11.7494 11.5021 11.8235 11.6759 11.8138" stroke="black" stroke-width="0.01"/>
<path d="M11.5173 11.7871C11.4143 11.9094 11.4851 12.0414 11.5849 12.0962" stroke="black" stroke-width="0.01"/>
<path d="M11.4694 11.9411C11.2859 11.9186 11.2569 12.1311 11.318 12.2309" stroke="black" stroke-width="0.01"/>
<path d="M11.3211 11.3887C11.2085 11.437 11.1441 11.5786 11.2053 11.6656C11.2665 11.7525 11.3888 11.7235 11.4564 11.6784" stroke="black" stroke-width="0.01"/>
<path d="M11.2437 11.7033C11.1503 11.8449 11.234 11.9512 11.3339 11.993" stroke="black" stroke-width="0.01"/>
<path d="M10.8837 11.3711C10.8096 11.4484 10.8547 11.6061 11.035 11.6094C11.1801 11.612 11.2539 11.4741 11.2088 11.3776" stroke="black" stroke-width="0.01"/>
<path d="M11.0091 11.6094C10.9512 11.7382 10.9866 11.8766 11.2055 11.8541" stroke="black" stroke-width="0.01"/>
<path d="M11.2988 12.0585C11.1636 11.9973 10.9833 12.0585 11.0606 12.2194" stroke="black" stroke-width="0.01"/>
<path d="M11.041 11.8281C10.9863 11.9054 11.0056 12.0149 11.0667 12.0825" stroke="black" stroke-width="0.01"/>
<path d="M11.032 12.0352C10.9418 12.0513 10.8549 12.0995 10.9096 12.2412" stroke="black" stroke-width="0.01"/>
<path d="M10.896 12.1254C10.7801 12.09 10.632 12.1737 10.7221 12.2928" stroke="black" stroke-width="0.01"/>
<path d="M10.703 12.1794C10.6032 12.1633 10.4841 12.2695 10.5806 12.3758" stroke="black" stroke-width="0.01"/>
<path d="M10.5426 12.2893C10.4524 12.3118 10.3462 12.4148 10.4395 12.4953" stroke="black" stroke-width="0.01"/>
<path d="M10.9967 11.7832C10.8679 11.8412 10.8551 11.986 10.9162 12.0923" stroke="black" stroke-width="0.01"/>
<path d="M10.8607 11.5176C10.6676 11.5916 10.6708 11.8492 10.8833 11.9297" stroke="black" stroke-width="0.01"/>
<path d="M10.7929 11.8711C10.677 11.9387 10.6545 12.0675 10.7318 12.1512" stroke="black" stroke-width="0.01"/>
<path d="M10.5904 11.4201C10.5132 11.4458 10.5196 11.6841 10.7257 11.6776" stroke="black" stroke-width="0.01"/>
<path d="M10.3785 11.5C10.224 11.603 10.4107 11.8638 10.6618 11.6771" stroke="black" stroke-width="0.01"/>
<path d="M10.5233 11.7422C10.5007 11.8484 10.5297 11.9643 10.7003 11.9772" stroke="black" stroke-width="0.01"/>
<path d="M10.5328 11.8828C10.4104 11.9279 10.3879 12.179 10.6101 12.1983" stroke="black" stroke-width="0.01"/>
<path d="M10.1431 11.6543C9.98532 11.7992 10.2719 11.9247 10.3781 11.7155" stroke="black" stroke-width="0.01"/>
<path d="M9.92382 11.897C9.84654 11.9904 10.117 12.2351 10.2361 11.8262" stroke="black" stroke-width="0.01"/>
<path d="M10.2656 11.8184C10.2721 11.9149 10.33 11.9729 10.4491 11.9793" stroke="black" stroke-width="0.01"/>
<path d="M10.446 12.0742C10.256 12.1032 10.1948 12.3414 10.4073 12.393" stroke="black" stroke-width="0.01"/>
<path d="M10.095 12.041C10.0886 12.1312 10.182 12.2052 10.2882 12.1891" stroke="black" stroke-width="0.01"/>
<path d="M10.3845 12.3867C10.2107 12.4254 10.1881 12.6507 10.3427 12.6378" stroke="black" stroke-width="0.01"/>
<path d="M10.2619 12.8463C10.117 12.8028 10.1138 12.6306 10.2426 12.5662" stroke="black" stroke-width="0.01"/>
<path d="M10.143 12.6953C10.0206 12.7694 10.0689 12.9464 10.1333 12.9722C10.1977 12.998 10.2492 12.9658 10.2557 12.911" stroke="black" stroke-width="0.01"/>
<path d="M10.2465 13.1585C10.2594 13.2422 9.94871 13.21 10.1081 12.9492" stroke="black" stroke-width="0.01"/>
<path d="M10.1059 13.1738C10.0013 13.338 10.1719 13.4716 10.2798 13.3316" stroke="black" stroke-width="0.01"/>
<path d="M10.1201 13.3711C10.0783 13.5031 10.2376 13.5981 10.3407 13.4951" stroke="black" stroke-width="0.01"/>
<path d="M9.7723 12.1352C9.71434 12.2543 10.0041 12.2994 10.0234 12.0547" stroke="black" stroke-width="0.01"/>
<path d="M9.69281 12.3112C9.63486 12.543 10.0727 12.4947 9.96003 12.1953" stroke="black" stroke-width="0.01"/>
<path d="M9.96875 12.3511C10.0299 12.3865 10.2134 12.3898 10.2585 12.1934" stroke="black" stroke-width="0.01"/>
<path d="M10.127 12.3574C10.1398 12.4186 10.1946 12.4926 10.2461 12.5152" stroke="black" stroke-width="0.01"/>
<path d="M9.91799 12.4181C9.89867 12.5437 10.0242 12.6467 10.1691 12.637" stroke="black" stroke-width="0.01"/>
<path d="M9.93987 12.541C9.86905 12.6376 9.84651 12.8243 10.0687 12.8372" stroke="black" stroke-width="0.01"/>
<path d="M9.60261 12.5723C9.5672 12.6721 9.77647 12.7751 9.89881 12.6109" stroke="black" stroke-width="0.01"/>
<path d="M9.5373 12.8265C9.51958 12.9022 9.70793 13.0036 9.81418 12.6816" stroke="black" stroke-width="0.01"/>
<path d="M9.73047 12.8469C9.77554 12.9274 9.92686 12.9917 10.0202 12.834" stroke="black" stroke-width="0.01"/>
<path d="M9.86937 12.9297C9.83074 13.0424 9.93699 13.1486 10.0658 13.1164" stroke="black" stroke-width="0.01"/>
<path d="M9.62839 12.9043C9.60263 13.0653 9.78936 13.1586 9.90527 13.0749" stroke="black" stroke-width="0.01"/>
<path d="M9.50543 12.9746C9.45071 13.1807 9.71471 13.2579 9.81451 13.1034" stroke="black" stroke-width="0.01"/>
<path d="M9.74707 13.166C9.75674 13.2819 9.93704 13.3817 10.0787 13.2851" stroke="black" stroke-width="0.01"/>
<path d="M9.42536 13.2609C9.41248 13.3124 9.6282 13.3639 9.66038 13.1836" stroke="black" stroke-width="0.01"/>
<path d="M9.55078 13.3067C9.60229 13.4387 9.77614 13.4709 9.87596 13.3099" stroke="black" stroke-width="0.01"/>
<path d="M9.81836 13.375C9.8409 13.4973 9.99866 13.565 10.1371 13.4812" stroke="black" stroke-width="0.01"/>
<path d="M10.1942 13.5293C10.1588 13.6935 10.3294 13.8255 10.4357 13.7354" stroke="black" stroke-width="0.01"/>
<path d="M9.92061 13.4999C9.8691 13.6802 10.0945 13.7832 10.22 13.6834" stroke="black" stroke-width="0.01"/>
<path d="M9.65028 13.4102C9.63741 13.5776 9.76941 13.6774 9.92072 13.6033" stroke="black" stroke-width="0.01"/>
<path d="M9.364 13.4259C9.31892 13.5353 9.55718 13.6255 9.66986 13.5321" stroke="black" stroke-width="0.01"/>
<path d="M9.21582 13.7261C9.277 13.7969 9.48948 13.7261 9.5088 13.5684" stroke="black" stroke-width="0.01"/>
<path d="M9.45117 13.6836C9.52844 13.7738 9.71195 13.8221 9.78601 13.6289" stroke="black" stroke-width="0.01"/>
<path d="M9.72171 13.729C9.71849 13.8674 9.96641 13.9673 10.0469 13.7129" stroke="black" stroke-width="0.01"/>
<path d="M10.3381 13.7617C10.3156 13.8293 10.3687 13.9372 10.4798 13.9501" stroke="black" stroke-width="0.01"/>
<path d="M10.1334 13.7205C10.1173 13.7978 10.23 13.9056 10.3491 13.8621" stroke="black" stroke-width="0.01"/>
<path d="M10.372 13.8945C10.3398 13.9782 10.3671 14.099 10.4798 14.0974" stroke="black" stroke-width="0.01"/>
<path d="M10.3826 14.0508C10.2989 14.1216 10.3343 14.2472 10.4551 14.252" stroke="black" stroke-width="0.01"/>
<path d="M10.3391 14.1699C10.22 14.2504 10.2618 14.4275 10.4196 14.4179" stroke="black" stroke-width="0.01"/>
<path d="M9.97852 13.8283C9.97852 14.0021 10.1942 14.0279 10.2361 13.8669" stroke="black" stroke-width="0.01"/>
<path d="M10.1524 13.9707C10.1202 14.0737 10.2039 14.1735 10.3359 14.1446" stroke="black" stroke-width="0.01"/>
<path d="M10.1784 15.2134C10.2074 15.2553 10.3265 15.1845 10.2943 15.1136C10.2621 15.0428 10.1359 15.0813 10.1494 15.1555" stroke="black" stroke-width="0.01"/>
<path d="M10.2654 15.0843C10.2815 14.9426 10.1141 14.9201 10.0723 15.0424" stroke="black" stroke-width="0.01"/>
<path d="M10.1333 14.9707C10.1752 14.8999 10.0335 14.8033 9.97559 14.9063" stroke="black" stroke-width="0.01"/>
<path d="M10.0268 14.8654C10.0655 14.7623 9.90449 14.7173 9.8916 14.8106" stroke="black" stroke-width="0.01"/>
<path d="M9.85645 14.6745C9.87577 14.623 10.0561 14.6551 9.9788 14.7614" stroke="black" stroke-width="0.01"/>
<path d="M10.1175 14.8907C10.1883 14.8263 10.0692 14.6943 9.99512 14.7426" stroke="black" stroke-width="0.01"/>
<path d="M10.5936 15.0879C10.5372 15.0943 10.4793 15.1313 10.5211 15.2505C10.5502 15.3331 10.6741 15.3374 10.6918 15.2875" stroke="black" stroke-width="0.01"/>
<path d="M10.5121 15.1467C10.4573 15.1113 10.3382 15.1708 10.393 15.2868C10.4342 15.374 10.5378 15.3383 10.5539 15.2932" stroke="black" stroke-width="0.01"/>
<path d="M10.2041 15.3129C10.2315 15.3611 10.3683 15.3403 10.3924 15.2871" stroke="black" stroke-width="0.01"/>
<path d="M10.2979 15.1535C10.3268 15.1342 10.3799 15.1583 10.3912 15.1824" stroke="black" stroke-width="0.01"/>
<path d="M10.2875 14.3595C10.1941 14.4207 10.2521 14.6074 10.397 14.5591" stroke="black" stroke-width="0.01"/>
<path d="M10.259 14.5117C10.1849 14.5696 10.2525 14.75 10.391 14.6824" stroke="black" stroke-width="0.01"/>
<path d="M10.2816 14.6815C10.2301 14.733 10.28 14.8762 10.4136 14.8489" stroke="black" stroke-width="0.01"/>
<path d="M10.2618 14.7533C10.2329 14.7403 10.1572 14.75 10.125 14.7983" stroke="black" stroke-width="0.01"/>
<path d="M10.1788 14.0996C10.108 14.1672 10.1418 14.3057 10.2738 14.3169" stroke="black" stroke-width="0.01"/>
<path d="M10.1526 14.2422C10.0511 14.2921 10.0511 14.4933 10.254 14.5013" stroke="black" stroke-width="0.01"/>
<path d="M10.1445 14.4689C10.0881 14.514 10.1155 14.6878 10.2604 14.6652" stroke="black" stroke-width="0.01"/>
<path d="M10.1918 14.6582C10.1708 14.6791 10.1676 14.7323 10.1853 14.7548" stroke="black" stroke-width="0.01"/>
<path d="M10.1271 14.5938C10.0756 14.5953 10.008 14.6324 9.99023 14.6855" stroke="black" stroke-width="0.01"/>
<path d="M9.89648 14.4987C9.9158 14.4472 10.0752 14.4505 10.0864 14.6018" stroke="black" stroke-width="0.01"/>
<path d="M10.1027 14.4199C10.0801 14.4248 10.0367 14.4457 10.0254 14.4892" stroke="black" stroke-width="0.01"/>
<path d="M10.0335 13.9491C9.96425 14.0119 9.93046 14.2099 10.1413 14.2485" stroke="black" stroke-width="0.01"/>
<path d="M9.89355 14.3588C9.89355 14.3057 10.0368 14.2606 10.0867 14.3395" stroke="black" stroke-width="0.01"/>
<path d="M9.80176 14.0703C9.82267 14.1106 9.92248 14.1653 9.98366 14.1202" stroke="black" stroke-width="0.01"/>
<path d="M9.2833 13.7552C9.28009 13.8485 9.35736 13.9323 9.4636 13.9194C9.56984 13.9065 9.59238 13.8131 9.56018 13.752" stroke="black" stroke-width="0.01"/>
<path d="M9.47927 13.9217C9.40843 14.0086 9.49537 14.131 9.57585 14.0955" stroke="black" stroke-width="0.01"/>
<path d="M9.56055 13.8596C9.6024 13.8435 9.74085 13.8241 9.78271 13.8885" stroke="black" stroke-width="0.01"/>
<path d="M9.11286 13.8867C9.08066 13.935 9.28029 13.9833 9.34788 13.8899" stroke="black" stroke-width="0.01"/>
<path d="M9.28006 13.9377C9.27361 14.0021 9.30581 14.1115 9.47001 14.0665" stroke="black" stroke-width="0.01"/>
<path d="M9.49642 14.1663C9.52217 14.1116 9.39982 14.0214 9.30646 14.1212C9.21309 14.221 9.31933 14.3337 9.37729 14.295" stroke="black" stroke-width="0.01"/>
<path d="M9.0674 13.9512C9.0191 14.0349 9.20584 14.1878 9.3121 14.0462" stroke="black" stroke-width="0.01"/>
<path d="M8.94337 14.0946C8.87576 14.1638 8.95947 14.291 9.06089 14.2523C9.1623 14.2137 9.15264 14.1074 9.12851 14.0801" stroke="black" stroke-width="0.01"/>
<path d="M8.81351 14.2246C8.75878 14.2745 8.81188 14.392 8.88756 14.392C8.9632 14.392 9.0099 14.3325 8.9954 14.2568" stroke="black" stroke-width="0.01"/>
<path d="M9.12072 14.2147C9.11105 14.2887 9.22052 14.3402 9.29135 14.2711" stroke="black" stroke-width="0.01"/>
<path d="M9.29474 14.1364C9.3044 14.1203 9.29637 14.093 9.28027 14.0801" stroke="black" stroke-width="0.01"/>
<path d="M8.69578 14.3241C8.63302 14.374 8.76824 14.5124 8.85354 14.3853" stroke="black" stroke-width="0.01"/>
<path d="M9.18046 14.2967C9.14021 14.3353 9.2046 14.4367 9.26899 14.4061" stroke="black" stroke-width="0.01"/>
<path d="M8.95996 14.3672C8.96962 14.4364 9.10485 14.4879 9.19016 14.3817" stroke="black" stroke-width="0.01"/>
<path d="M9.03382 14.4375C9.01291 14.481 9.05477 14.5503 9.10627 14.5406" stroke="black" stroke-width="0.01"/>
<path d="M10.3151 14.834C10.2652 14.9322 10.4245 15.0465 10.5404 14.9273" stroke="black" stroke-width="0.01"/>
<path d="M10.4316 14.9805C10.4075 15.0336 10.4364 15.1076 10.4799 15.135" stroke="black" stroke-width="0.01"/>
<path d="M10.2803 15.0925C10.2916 15.0441 10.3608 14.999 10.4236 15.0216" stroke="black" stroke-width="0.01"/>
<path d="M10.1963 14.9641C10.2059 14.9207 10.2639 14.8772 10.3074 14.8885" stroke="black" stroke-width="0.01"/>
<path d="M13.9872 12.9551C13.7586 12.9583 13.8552 13.3253 14.0516 13.2513" stroke="black" stroke-width="0.01"/>
<path d="M13.9136 13.2266C13.8685 13.3006 13.9554 13.4181 14.052 13.3489" stroke="black" stroke-width="0.01"/>
<path d="M14.0255 13.3631C13.9578 13.4758 14.1993 13.648 14.2959 13.4709" stroke="black" stroke-width="0.01"/>
<path d="M14.2188 13.5385C14.2219 13.6447 14.531 13.7123 14.486 13.4998" stroke="black" stroke-width="0.01"/>
<path d="M14.457 13.6167C14.531 13.7422 14.808 13.7551 14.779 13.5684" stroke="black" stroke-width="0.01"/>
<path d="M14.7178 13.6968C14.7758 13.7806 15.0462 13.8321 15.0365 13.6582" stroke="black" stroke-width="0.01"/>
<path d="M13.6201 12.6367C13.6587 12.7365 13.7907 12.7719 13.9356 12.714" stroke="black" stroke-width="0.01"/>
<path d="M13.5367 12.707C13.6269 12.765 13.4949 13.029 13.3564 12.9227" stroke="black" stroke-width="0.01"/>
<path d="M13.5361 12.8729C13.636 12.9212 13.7583 12.8858 13.7937 12.7441" stroke="black" stroke-width="0.01"/>
<path d="M13.7334 12.8535C13.7431 12.9276 13.8493 12.9855 13.9877 12.9565" stroke="black" stroke-width="0.01"/>
<path d="M13.4854 12.9297C13.6143 13.0392 13.4275 13.2645 13.3438 13.1615" stroke="black" stroke-width="0.01"/>
<path d="M13.5332 13.0137C13.5944 13.0588 13.7521 13.033 13.7682 12.9139" stroke="black" stroke-width="0.01"/>
<path d="M13.6973 13.0137C13.7102 13.0909 13.7713 13.1199 13.8583 13.1231" stroke="black" stroke-width="0.01"/>
<path d="M13.498 13.1204C13.5624 13.2106 13.7234 13.2363 13.7942 13.1172" stroke="black" stroke-width="0.01"/>
<path d="M13.723 13.1836C13.7165 13.2705 13.8131 13.3414 13.913 13.322" stroke="black" stroke-width="0.01"/>
<path d="M13.3721 13.3775C13.4557 13.4193 13.5459 13.2616 13.4751 13.1521" stroke="black" stroke-width="0.01"/>
<path d="M13.4688 13.5449C13.5686 13.5513 13.5814 13.4 13.4881 13.3163" stroke="black" stroke-width="0.01"/>
<path d="M13.6977 13.6838C13.7814 13.6645 13.7556 13.4809 13.5527 13.4648" stroke="black" stroke-width="0.01"/>
<path d="M13.9521 13.8187C14.0326 13.7961 13.9682 13.5933 13.7461 13.6062" stroke="black" stroke-width="0.01"/>
<path d="M14.258 13.8889C14.3127 13.8051 14.1325 13.6635 13.9844 13.7375" stroke="black" stroke-width="0.01"/>
<path d="M14.4088 14.0043C14.5087 14.0333 14.5762 13.7693 14.2607 13.8111" stroke="black" stroke-width="0.01"/>
<path d="M14.5925 14.0062C14.6795 13.9837 14.7407 13.8259 14.4863 13.8775" stroke="black" stroke-width="0.01"/>
<path d="M14.7855 14.019C14.8628 14.0576 14.8982 13.8322 14.6631 13.8934" stroke="black" stroke-width="0.01"/>
<path d="M13.4883 13.3156C13.5849 13.3703 13.7362 13.3059 13.7233 13.1836" stroke="black" stroke-width="0.01"/>
<path d="M13.6844 13.291C13.7167 13.349 13.7037 13.4616 13.6426 13.4906" stroke="black" stroke-width="0.01"/>
<path d="M13.6943 13.4259C13.7588 13.4516 13.8457 13.4291 13.8972 13.3261" stroke="black" stroke-width="0.01"/>
<path d="M13.8072 13.4259C13.8264 13.4709 13.8329 13.5611 13.791 13.6062" stroke="black" stroke-width="0.01"/>
<path d="M13.8232 13.5031C13.8941 13.5417 13.9777 13.4902 14.0132 13.4161" stroke="black" stroke-width="0.01"/>
<path d="M13.9678 13.4805C14.0193 13.5127 14.0644 13.664 13.9774 13.7252" stroke="black" stroke-width="0.01"/>
<path d="M14.0264 13.6541C14.0875 13.6573 14.1777 13.6573 14.2356 13.5801" stroke="black" stroke-width="0.01"/>
<path d="M14.1934 13.623C14.2481 13.6391 14.3124 13.7293 14.2899 13.8098" stroke="black" stroke-width="0.01"/>
<path d="M14.293 13.7806C14.3542 13.7741 14.4604 13.7323 14.4894 13.6582" stroke="black" stroke-width="0.01"/>
<path d="M14.4609 13.7051C14.5125 13.7341 14.5479 13.7952 14.5414 13.8661" stroke="black" stroke-width="0.01"/>
<path d="M14.541 13.8159C14.6022 13.8127 14.6569 13.7805 14.673 13.7129" stroke="black" stroke-width="0.01"/>
<path d="M14.6572 13.7578C14.7023 13.7739 14.7571 13.8254 14.7603 13.8866" stroke="black" stroke-width="0.01"/>
<path d="M14.7539 13.8481C14.799 13.8416 14.8312 13.8127 14.8602 13.7676" stroke="black" stroke-width="0.01"/>
<path d="M14.9822 13.7598C15.0402 13.8177 14.9629 14.0109 14.8438 13.9755" stroke="black" stroke-width="0.01"/>
<path d="M13.7457 9.85875C13.6265 9.92958 13.2884 9.90705 13.4558 9.62695" stroke="black" stroke-width="0.01"/>
<path d="M13.7779 9.66809C13.5429 9.76145 13.2531 9.58116 13.5557 9.38477" stroke="black" stroke-width="0.01"/>
<path d="M13.475 9.32031C13.2786 9.32031 13.1466 9.63583 13.4107 9.74529" stroke="black" stroke-width="0.01"/>
<path d="M12.712 9.45289C12.6605 9.55269 12.844 9.66215 12.9696 9.56235C13.0669 9.48503 13.0597 9.27581 13.0018 9.19531" stroke="black" stroke-width="0.01"/>
<path d="M12.6125 9.69082C12.5481 9.9033 13.0214 9.91618 12.9473 9.57812" stroke="black" stroke-width="0.01"/>
<path d="M12.5869 10.0067C12.603 10.1677 13.0409 10.1161 12.8992 9.79095" stroke="black" stroke-width="0.01"/>
<path d="M12.9502 9.70117C12.9856 9.74946 13.0822 9.83317 13.2464 9.81707" stroke="black" stroke-width="0.01"/>
<path d="M13.0273 9.47266C13.0418 9.53061 13.14 9.57568 13.2656 9.53223" stroke="black" stroke-width="0.01"/>
<path d="M8.63434 14.3711C8.52328 14.45 8.69392 14.5739 8.75668 14.4371" stroke="black" stroke-width="0.01"/>
<path d="M8.54742 14.4316C8.43637 14.5105 8.607 14.6344 8.66977 14.4976" stroke="black" stroke-width="0.01"/>
<path d="M8.45565 14.4922C8.34455 14.5711 8.51519 14.695 8.57799 14.5582" stroke="black" stroke-width="0.01"/>
<path d="M8.35893 14.5469C8.25268 14.6032 8.37662 14.7416 8.48448 14.6193" stroke="black" stroke-width="0.01"/>
<path d="M8.25443 14.5995C8.14818 14.6557 8.27215 14.7942 8.38 14.6719" stroke="black" stroke-width="0.01"/>
<path d="M8.79396 14.4342C8.79233 14.5163 8.9485 14.5502 9.00482 14.4277" stroke="black" stroke-width="0.01"/>
<path d="M8.8919 14.5098C8.84361 14.5709 8.93216 14.6466 8.98045 14.6192" stroke="black" stroke-width="0.01"/>
<path d="M8.6847 14.4979C8.67986 14.5671 8.81507 14.6074 8.88109 14.5317" stroke="black" stroke-width="0.01"/>
<path d="M8.759 14.5705C8.71552 14.6268 8.80085 14.7025 8.85558 14.6799" stroke="black" stroke-width="0.01"/>
<path d="M8.59473 14.5607C8.59954 14.6154 8.67681 14.6782 8.76053 14.6428" stroke="black" stroke-width="0.01"/>
<path d="M8.64483 14.6347C8.61263 14.6637 8.62873 14.7313 8.6738 14.7523" stroke="black" stroke-width="0.01"/>
<path d="M8.47688 14.6309C8.46401 14.6808 8.54933 14.7694 8.63626 14.7114" stroke="black" stroke-width="0.01"/>
<path d="M8.49416 14.6875C8.44265 14.7278 8.44909 14.7889 8.51508 14.7969" stroke="black" stroke-width="0.01"/>
<path d="M8.37075 14.6815C8.36432 14.7152 8.40779 14.77 8.46253 14.7636" stroke="black" stroke-width="0.01"/>
<path d="M8.09558 14.6777C8.04407 14.7051 8.17607 14.8451 8.25815 14.7147" stroke="black" stroke-width="0.01"/>
<path d="M7.96813 14.7361C7.90374 14.7667 8.06311 14.9213 8.13396 14.7635" stroke="black" stroke-width="0.01"/>
<path d="M8.38473 14.7305C8.33481 14.7417 8.30262 14.8142 8.34447 14.8431" stroke="black" stroke-width="0.01"/>
<path d="M8.22215 14.7559C8.21571 14.7849 8.27688 14.8331 8.32681 14.8154" stroke="black" stroke-width="0.01"/>
<path d="M8.18067 14.7676C8.13238 14.7982 8.15813 14.8834 8.21449 14.8706" stroke="black" stroke-width="0.01"/>
<path d="M8.00878 14.8242C7.9637 14.858 7.99428 14.9256 8.05707 14.9096" stroke="black" stroke-width="0.01"/>
<path d="M8.09082 14.8203C8.09245 14.838 8.13268 14.8654 8.1665 14.8541" stroke="black" stroke-width="0.01"/>
<path d="M7.85212 14.7909C7.7958 14.8151 7.79902 14.9567 7.98897 14.8795" stroke="black" stroke-width="0.01"/>
<path d="M7.7252 14.8477C7.64631 14.8863 7.67207 14.9926 7.84433 14.8912" stroke="black" stroke-width="0.01"/>
<path d="M7.85874 14.8984C7.83782 14.9145 7.81529 14.9854 7.89415 14.9579" stroke="black" stroke-width="0.01"/>
<path d="M7.71394 14.9316C7.68175 14.9606 7.70269 15.0202 7.77352 14.9976" stroke="black" stroke-width="0.01"/>
<path d="M7.54784 14.9429C7.48989 14.9767 7.61704 15.0218 7.70238 14.9316" stroke="black" stroke-width="0.01"/>
<path d="M7.5872 14.9844C7.56144 15.0101 7.56144 15.0858 7.62905 15.0585" stroke="black" stroke-width="0.01"/>
<path d="M7.42217 15.0156C7.38353 15.0446 7.44953 15.0833 7.57027 15.0301" stroke="black" stroke-width="0.01"/>
<path d="M7.47098 15.0565C7.4259 15.0935 7.43072 15.1402 7.49673 15.1257" stroke="black" stroke-width="0.01"/>
<path d="M7.33664 15.0781C7.28675 15.1232 7.35918 15.1538 7.44611 15.1167" stroke="black" stroke-width="0.01"/>
<path d="M7.33874 15.127C7.25341 15.1655 7.29044 15.2364 7.34356 15.209" stroke="black" stroke-width="0.01"/>
<path d="M10.1882 15.3743C10.1684 15.4169 10.2333 15.4516 10.2944 15.4419C10.3532 15.4327 10.4094 15.3842 10.3653 15.3164" stroke="black" stroke-width="0.01"/>
<path d="M10.3682 15.4003C10.4261 15.4453 10.5291 15.3938 10.5291 15.3262" stroke="black" stroke-width="0.01"/>
<path d="M13.9199 8.57671C13.6623 8.44792 13.1279 8.20967 12.9766 8.40285C13.115 8.3449 13.5206 8.40607 13.8555 8.71515L13.9199 8.57671H13.9199Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.0758 8.56225C13.7779 8.21531 13.6025 8.29297 13.3883 8.17347C13.1872 8.06119 12.8668 8.03825 12.8047 8.21681C13.0986 8.07366 13.3684 8.29379 13.5342 8.32042C13.7618 8.35698 13.8903 8.53298 13.9569 8.61392L14.0758 8.56225L14.0758 8.56225Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.1981 8.51817C15.0435 8.16401 14.713 8.25651 14.567 8.10607C14.3546 7.88715 13.8169 7.68431 13.5947 7.83563C14.0841 7.80987 14.2925 8.17293 14.5541 8.29925C14.7409 8.3894 14.9405 8.58257 15.1981 8.51819V8.51817Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.6191 8.4795C14.3551 8.1511 13.9494 7.86134 13.7627 7.9708C14.0074 7.98368 14.0846 8.15432 14.2585 8.26378C14.4324 8.37325 14.3551 8.531 14.6191 8.4795Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.3629 9.05971C13.0859 8.95668 12.5451 8.90518 12.2939 9.22069C12.7125 9.29152 13.3435 9.25289 13.3629 9.05971Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.3115 9.18181C13.0346 9.05303 12.8183 9.23291 12.5581 9.20756C12.0623 9.15927 11.7082 9.18825 11.6631 9.4265C11.9464 9.17216 12.4229 9.38143 12.6161 9.32992C12.8093 9.2784 13.524 9.32348 13.7493 9.42006C13.6334 9.2784 13.4532 9.23977 13.3115 9.18182V9.18181Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.1803 8.44346C14.1159 8.23096 14.1191 8.0056 14.4378 8.0217C14.3573 7.92189 14.0612 7.87038 14.0128 8.24386C13.6619 7.9863 13.2788 7.94122 13.208 8.16338C13.3883 8.00883 13.6683 8.12152 14.0032 8.50144C14.0322 8.48534 14.1094 8.45314 14.1803 8.44349L14.1803 8.44346Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.6979 8.73684C13.4983 8.60806 13.2278 8.39878 13.7012 8.31508C13.4983 8.20561 13.2021 8.2539 13.2343 8.62738C12.6934 8.40844 12.305 8.48233 12.2233 8.6982C12.1332 8.93646 12.4681 9.06846 12.526 8.91714C12.4648 8.9429 12.2556 8.87207 12.365 8.73684C12.4745 8.60163 13.0355 8.70313 13.5691 8.98154C13.7172 9.05881 14.2259 9.04593 13.6979 8.73684L13.6979 8.73684Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.5564 9.09137C13.4024 8.77693 12.9029 9.0624 12.8022 8.75781C12.6646 9.20405 13.5126 8.95713 13.5564 9.09137Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.7344 9.43236C16.8391 9.48441 16.9297 9.40259 16.7695 9.3384C16.8743 9.39043 16.9657 9.31055 16.8055 9.24635C16.9103 9.29837 17.0017 9.2185 16.8415 9.1543C16.7987 9.19733 16.7375 9.3551 16.7344 9.43236V9.43236Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.7881 8.82762C17.0199 8.58294 16.7688 8.49922 17.0521 8.2481C17.2839 8.04264 17.0963 7.9057 17.3162 7.74584C17.387 7.69433 17.5415 7.59131 17.5544 7.48828C17.6478 7.72008 17.2646 7.75228 17.2903 8.12576C17.3068 8.36356 17.146 8.34278 17.0843 8.74392C17.0714 8.82763 17.0135 9.01436 16.7881 8.82763V8.82762Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.8916 8.9362C17.0204 8.65932 17.1682 8.66464 17.2393 8.5563C17.3745 8.35024 17.661 8.59172 17.9025 8.4082C17.8607 8.66898 17.5355 8.57562 17.3939 8.74304C17.2522 8.91046 17.1363 8.98774 16.8916 8.93622V8.9362Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.9243 9.02775C17.1498 8.84745 17.3158 8.96773 17.4717 8.87321C17.8644 8.63495 18.0223 8.9215 18.3732 8.80881C18.2798 9.03417 17.7614 8.84101 17.5361 9.00843C17.3107 9.17585 16.5187 9.33683 16.9243 9.02775V9.02775Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.2667 10.3121C16.2635 10.2091 16.1669 10.0771 16.0316 10.061C15.8965 10.0449 15.8385 9.90325 15.7355 9.89682C15.6325 9.89038 15.5648 9.68432 15.4231 9.68754C15.2815 9.69076 15.2235 9.87427 15.5551 10.0417C15.8868 10.2091 16.2538 10.4023 16.2667 10.3122V10.3121Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.8489 10.3984C15.7072 10.4049 15.6879 10.6109 15.5527 10.6174C15.7394 10.7172 15.8747 10.5723 15.9712 10.4435L15.8489 10.3984L15.8489 10.3984Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.964 10.4238C15.8417 10.5269 15.8063 10.7426 15.9834 10.8037C15.8771 10.6572 16.1701 10.5912 16.0799 10.456L15.964 10.4238L15.964 10.4238Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.0871 10.4314C15.9905 10.6182 16.2384 10.6407 16.174 10.7824C16.3157 10.7502 16.3382 10.4829 16.2094 10.4121L16.0871 10.4314L16.0871 10.4314Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.1396 10.0312C15.3715 10.0184 15.5835 10.1438 15.7256 10.3468C15.8158 10.4755 16.1184 10.5271 16.2215 10.424C16.3245 10.321 16.2666 10.1021 16.009 10.1729C15.9446 10.0634 15.7578 10.1021 15.6677 10.0119C15.5776 9.92178 15.2298 9.66422 15.1396 10.0312V10.0312Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.0091 10.1738C15.9479 10.1867 15.9286 10.293 15.9672 10.3477L16.0091 10.1738Z" fill="white"/>
<path d="M16.0091 10.1738C15.9479 10.1867 15.9286 10.293 15.9672 10.3477" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.1419 10.2383C16.1613 10.2705 16.1483 10.3155 16.1387 10.3381L16.1419 10.2383Z" fill="white"/>
<path d="M16.1419 10.2383C16.1613 10.2705 16.1483 10.3155 16.1387 10.3381" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.5068 10.041C15.6259 10.0475 15.6485 10.1344 15.7773 10.1666L15.5068 10.041Z" fill="white"/>
<path d="M15.5068 10.041C15.6259 10.0475 15.6485 10.1344 15.7773 10.1666" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.4282 9.74867C15.8396 9.85169 16.166 9.94184 16.3685 10.0577C16.5709 10.1737 16.8843 10.2058 17.1585 10.1286C17.4328 10.0513 17.9616 9.98048 17.9355 10.3218C18.0793 10.1511 17.8964 9.9676 17.5307 9.9354C17.5373 9.76798 17.3581 9.61666 17.2293 9.71646C17.3485 9.70036 17.4513 9.92252 17.2163 10.0127C17.262 9.84524 17.0955 9.69392 16.9224 9.76798C17.0334 9.80017 17.1457 9.98632 16.8974 10.0577C16.7406 10.1028 16.5121 10.0449 16.3424 9.94184C16.1726 9.8388 15.2193 9.46534 15.4282 9.74866L15.4282 9.74867Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.4671 9.58047C16.3384 9.63842 16.422 9.77365 16.2224 9.85091C16.0228 9.92818 15.8844 10.1053 15.9294 10.2566C16.0647 9.96037 16.3029 9.97325 16.3866 9.85735C16.4704 9.74144 16.5927 9.57081 16.4671 9.58047Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.5021 9.59941C16.4957 9.83443 16.3107 9.74882 16.3829 10.0791C16.4055 10.1822 16.4473 10.3496 16.3765 10.517C16.5842 10.3657 16.4506 10.0478 16.5439 9.92781C16.589 9.86986 16.6469 9.77971 16.6695 9.70245C16.6212 9.83767 16.6244 10.0888 16.7564 10.1532C16.6502 9.90205 17.043 9.69601 16.7725 9.40625C16.7339 9.47708 16.6115 9.60264 16.5021 9.59943L16.5021 9.59941Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.8457 9.36493C15.878 9.41323 15.9101 9.53558 15.8811 9.60319C15.9455 9.56456 16.039 9.46475 16.0679 9.39713C16.1999 9.41645 16.2514 9.58065 16.1259 9.65147C16.2031 9.65147 16.3351 9.65147 16.4091 9.56455C16.319 9.46474 16.039 9.31019 15.8457 9.36493H15.8457Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M13.843 8.90375C13.8222 8.88476 13.787 8.86671 13.724 8.85375C13.529 8.81378 13.6297 8.63807 13.7956 8.63963C14.1497 8.25329 14.3485 8.55111 14.78 8.42877C14.931 8.38597 15.0346 8.39862 15.1169 8.43421C15.31 8.30542 15.5366 8.34141 15.7009 8.49273C15.7191 8.4637 15.7436 8.44155 15.778 8.43199C15.9293 8.38998 16.0516 8.51895 16.0935 8.68637C16.2114 8.66453 16.346 8.72289 16.4346 8.80338C16.5573 8.74038 16.6418 8.73758 16.6729 8.80235C16.7824 8.75084 16.9242 8.71854 16.995 8.8924C17.0659 9.06625 16.8276 9.01474 16.789 9.38178C16.7651 9.6082 16.5121 9.6973 16.3125 9.56208C15.9931 9.34574 15.6815 9.31094 15.5269 9.63934C15.3724 9.96774 15.2513 10.1585 14.8765 10.0514C14.7414 10.0128 14.5675 10.0643 14.458 10.2124C14.3485 10.3605 14.1811 10.2221 13.9815 10.2382C14.2326 10.1995 14.1365 10.1364 14.355 10.1223C14.5546 10.1094 14.5031 9.92266 14.6319 9.89691C14.1296 10.0257 14.149 9.83895 13.7369 9.96773C13.9171 9.73593 14.2005 9.86471 14.3421 9.72949C13.9686 9.72305 13.8016 9.47905 13.6338 9.58139C13.3698 9.74237 13.4856 10.2007 12.7967 10.1609C12.4619 10.1416 12.2494 10.1867 12.0498 10.3863C12.3976 9.66511 12.8706 10.0613 13.0994 9.83253C13.2346 9.69731 13.3376 9.59427 13.4085 9.46549C13.4334 9.42016 13.4671 9.39425 13.5093 9.38423C12.9362 9.20393 13.2828 8.92307 13.8431 8.90377L13.843 8.90375Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M16.6723 8.80273C16.681 8.82084 16.6855 8.84433 16.6855 8.87338C16.6855 9.01504 16.473 9.02148 16.4602 9.23076C16.4534 9.34023 16.4409 9.4014 16.3668 9.38852C16.2928 9.37564 16.2284 9.25974 16.2992 9.12452" fill="white"/>
<path d="M16.6723 8.80273C16.681 8.82084 16.6855 8.84433 16.6855 8.87338C16.6855 9.01504 16.473 9.02148 16.4602 9.23076C16.4534 9.34023 16.4409 9.4014 16.3668 9.38852C16.2928 9.37564 16.2284 9.25974 16.2992 9.12452" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.9484 8.69181C13.8951 8.65434 13.8418 8.63911 13.7939 8.63867L13.9484 8.69181Z" fill="white"/>
<path d="M13.9484 8.69181C13.8951 8.65434 13.8418 8.63911 13.7939 8.63867" stroke="black" stroke-width="0.01"/>
<path d="M15.1152 8.43359C15.2857 8.50741 15.3689 8.68451 15.6166 8.69319C15.855 8.70156 16.003 9.04735 16.4022 8.82197C16.413 8.81587 16.4236 8.81018 16.4338 8.80489" fill="white"/>
<path d="M15.1152 8.43359C15.2857 8.50741 15.3689 8.68451 15.6166 8.69319C15.855 8.70156 16.003 9.04735 16.4022 8.82197C16.413 8.81587 16.4236 8.81018 16.4338 8.80489" stroke="black" stroke-width="0.01"/>
<path d="M15.7008 8.49243C15.6652 8.54902 15.6572 8.628 15.6669 8.69731L15.7008 8.49243Z" fill="white"/>
<path d="M15.7008 8.49243C15.6652 8.54902 15.6572 8.628 15.6669 8.69731" stroke="black" stroke-width="0.01"/>
<path d="M14.9209 9.2207C14.6184 9.2207 14.541 9.37524 14.541 9.52334C14.541 9.67144 14.6827 9.86462 14.9339 9.86462C15.1849 9.86462 15.3202 9.71009 15.3202 9.54266C15.3202 9.37524 15.1656 9.2207 14.9209 9.2207Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M14.9758 9.85812C14.9693 9.77441 14.818 9.78729 14.8244 9.72289C14.8308 9.6585 14.9082 9.63274 14.9082 9.5426C14.9082 9.45245 15.0433 9.44601 15.0884 9.51684C15.1335 9.58767 15.2688 9.7261 15.2978 9.65529" fill="white"/>
<path d="M14.9758 9.85812C14.9693 9.77441 14.818 9.78729 14.8244 9.72289C14.8308 9.6585 14.9082 9.63274 14.9082 9.5426C14.9082 9.45245 15.0433 9.44601 15.0884 9.51684C15.1335 9.58767 15.2688 9.7261 15.2978 9.65529" stroke="black" stroke-width="0.01"/>
<path d="M15.0889 9.51758C15.018 9.5884 14.9859 9.73328 15.0792 9.84598L15.0889 9.51758Z" fill="white"/>
<path d="M15.0889 9.51758C15.018 9.5884 14.9859 9.73328 15.0792 9.84598" stroke="black" stroke-width="0.01"/>
<path d="M15.1849 9.62695C15.1624 9.67525 15.156 9.7493 15.1817 9.79437L15.1849 9.62695Z" fill="white"/>
<path d="M15.1849 9.62695C15.1624 9.67525 15.156 9.7493 15.1817 9.79437" stroke="black" stroke-width="0.01"/>
<path d="M16.3877 9.39037C16.6244 9.40969 16.6646 9.14889 16.4875 9.13281" stroke="black" stroke-width="0.01"/>
<path d="M16.0969 8.68564C16.0148 8.58101 15.8265 8.5456 15.8232 8.76775" stroke="black" stroke-width="0.01"/>
<path d="M15.8005 9.02051C15.72 8.82089 15.5139 8.79191 15.4044 8.89172C15.3133 8.97479 15.3111 9.19114 15.5075 9.23622C15.5751 9.15574 15.7071 9.04949 15.8005 9.02052L15.8005 9.02051Z" fill="white" stroke="black" stroke-width="0.01"/>
<path d="M15.7113 8.89582C15.5954 8.79279 15.4247 8.98759 15.5793 9.16626L15.7113 8.89582Z" fill="white"/>
<path d="M15.7113 8.89582C15.5954 8.79279 15.4247 8.98759 15.5793 9.16626" stroke="black" stroke-width="0.01"/>
<path d="M13.5064 9.38275C13.584 9.36433 13.6974 9.4023 13.8714 9.4841C13.9809 9.53561 14.3093 9.64508 14.5153 9.53561C14.3028 9.61288 14.1419 9.29091 13.9809 9.32955C13.8199 9.36819 13.5253 9.42774 13.4014 9.31023C13.7039 9.32955 13.8667 9.08981 14.2126 9.29735C14.3093 9.3553 14.4316 9.39394 14.541 9.3875C14.2578 9.04622 13.8843 9.26515 13.8456 8.98828C14.0163 9.1718 14.4332 8.94642 14.6457 9.29092" fill="white"/>
<path d="M13.5064 9.38275C13.584 9.36433 13.6974 9.4023 13.8714 9.4841C13.9809 9.53561 14.3093 9.64508 14.5153 9.53561C14.3028 9.61288 14.1419 9.29091 13.9809 9.32955C13.8199 9.36819 13.5253 9.42774 13.4014 9.31023C13.7039 9.32955 13.8667 9.08981 14.2126 9.29735C14.3093 9.3553 14.4316 9.39394 14.541 9.3875C14.2578 9.04622 13.8843 9.26515 13.8456 8.98828C14.0163 9.1718 14.4332 8.94642 14.6457 9.29092" stroke="black" stroke-width="0.01"/>
<path d="M13.9074 9.04045C13.8675 8.99087 13.8855 8.94144 13.8428 8.90234L13.9074 9.04045Z" fill="white"/>
<path d="M13.9074 9.04045C13.8675 8.99087 13.8855 8.94144 13.8428 8.90234" stroke="black" stroke-width="0.01"/>
<path d="M16.0957 8.68507C16.0249 8.60942 15.8704 8.66897 15.9138 8.82192C15.9477 8.75109 16.0201 8.69152 16.0957 8.68507Z" fill="black"/>
<path d="M15.6586 9.09804C15.7073 9.06265 15.7577 9.03358 15.8001 9.02041C15.7769 8.96312 15.7435 8.91988 15.7049 8.88972C15.6681 8.86427 15.5622 9.0066 15.6586 9.09804V9.09804Z" fill="black"/>
<path d="M15.4675 8.8378C15.3515 8.76054 15.2453 8.76698 15.2099 8.83137C15.1262 8.82814 15.057 8.88932 15.0537 9.01166" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.2331 9.06175C15.0947 8.96678 14.9047 9.0022 14.9176 9.21469" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.834 9.3354C14.9016 9.28067 14.9982 9.24203 15.0722 9.33862" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.8669 9.12701C15.8412 9.16242 15.8218 9.21716 15.8637 9.30087C15.8122 9.23326 15.6834 9.23326 15.5449 9.41355" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.1731 9.1174C16.0057 9.13672 16.0089 9.24618 16.1441 9.29448" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.9821 8.70923C14.8405 8.68025 14.7375 8.76396 14.9339 8.83479" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M15.2521 8.61144C15.0525 8.56315 14.972 8.61466 15.0621 8.65973" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.6755 9.41428C14.6691 9.48511 14.7076 9.57848 14.8236 9.47223" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.7144 9.62521C14.7144 9.64453 14.7112 9.66706 14.6982 9.68316" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.2512 8.68221C14.1289 8.64679 14.1064 8.53411 14.248 8.54377" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.2089 8.94264C14.0737 8.89756 14.0737 8.76556 14.1864 8.77844" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.4602 8.8758C14.3025 8.83716 14.2961 8.72769 14.4152 8.74379" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.4795 8.54155C14.3958 8.53511 14.267 8.62848 14.4827 8.68321" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.7141 8.72704C14.5177 8.69806 14.5209 8.77855 14.6367 8.83007" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.8625 8.54101C14.7112 8.51204 14.6597 8.60219 14.7627 8.64082" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.3859 9.09885C14.3488 9.06827 14.3183 8.92176 14.4953 8.96525" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.7527 9.05262C14.6336 9.02042 14.5209 9.13633 14.6304 9.20394" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M14.9108 8.9154C14.7853 8.89286 14.679 8.92827 14.7466 8.97335" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M16.0893 8.68555C16.0186 8.69866 15.9551 8.74023 15.9141 8.82234L16.0893 8.68555Z" fill="white"/>
<path d="M16.0893 8.68555C16.0186 8.69866 15.9551 8.74023 15.9141 8.82234" stroke="black" stroke-width="0.01"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 75 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 338 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#21468B"/>
<path d="M20 6H4V14H20V6Z" fill="white"/>
<path d="M20 6H4V10H20V6Z" fill="#AE1C28"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

View File

@ -0,0 +1,17 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#002395"/>
<path d="M6 6H18V18L6 6Z" fill="#FECB00"/>
<path d="M4.53034 9.4529L5.20042 7.39062L5.87049 9.4529L4.11621 8.17835H6.28462L4.53034 9.4529Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M20 6H4V18H20V6Z" fill="#000099"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 6L18 18V6H8Z" fill="#FFCC00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.41424 5.93762L6.62754 6.59405H7.31774L6.75934 6.99975L6.97264 7.65619L6.41424 7.25049L5.85584 7.65619L6.06914 6.99975L5.51074 6.59405H6.20094L6.41424 5.93762Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.66424 7.18762L7.87754 7.84405H8.56774L8.00934 8.24975L8.22264 8.90619L7.66424 8.50049L7.10584 8.90619L7.31914 8.24975L6.76074 7.84405H7.45094L7.66424 7.18762Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.91424 8.43762L9.12754 9.09405H9.81774L9.25934 9.49975L9.47264 10.1562L8.91424 9.75049L8.35584 10.1562L8.56914 9.49975L8.01074 9.09405H8.70094L8.91424 8.43762Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1642 9.68762L10.3775 10.3441H11.0677L10.5093 10.7498L10.7226 11.4062L10.1642 11.0005L9.60584 11.4062L9.81914 10.7498L9.26074 10.3441H9.95094L10.1642 9.68762Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4142 10.9376L11.6275 11.5941H12.3177L11.7593 11.9998L11.9726 12.6562L11.4142 12.2505L10.8558 12.6562L11.0691 11.9998L10.5107 11.5941H11.2009L11.4142 10.9376Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6642 12.1876L12.8775 12.8441H13.5677L13.0093 13.2498L13.2226 13.9062L12.6642 13.5005L12.1058 13.9062L12.3191 13.2498L11.7607 12.8441H12.4509L12.6642 12.1876Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9142 13.4376L14.1275 14.0941H14.8177L14.2593 14.4998L14.4726 15.1562L13.9142 14.7505L13.3558 15.1562L13.5691 14.4998L13.0107 14.0941H13.7009L13.9142 13.4376Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9035 14.6876L15.1168 15.3441H15.807L15.2486 15.7498L15.4619 16.4062L14.9035 16.0005L14.3451 16.4062L14.5584 15.7498L14 15.3441H14.6902L14.9035 14.6876Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.9035 15.9376L16.1168 16.5941H16.807L16.2486 16.9998L16.4619 17.6562L15.9035 17.2505L15.3451 17.6562L15.5584 16.9998L15 16.5941H15.6902L15.9035 15.9376Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#75AADB"/>
<path d="M21 10.5H3V13.5H21V10.5Z" fill="white"/>
<path d="M20 11H4V13H20V11Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 397 B

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#EF2B2D"/>
<path d="M12.1819 6H8.90918V19H12.1819V6Z" fill="white"/>
<path d="M20 11H4V14H20V11Z" fill="white"/>
<path d="M11 6H10V18H11V6Z" fill="#002868"/>
<path d="M20 12H4V13H20V12Z" fill="#002868"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 496 B

View File

@ -0,0 +1,50 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#009B3A"/>
<path d="M4 12L11.5 17L19 12L11.5 7L4 12Z" fill="#FEDF00"/>
<path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" fill="#002776"/>
<path d="M3 18C3 16.1435 3.7375 14.363 5.05025 13.0503C6.36301 11.7375 8.14349 11 10 11C11.8565 11 13.637 11.7375 14.9497 13.0503C16.2625 14.363 17 16.1435 17 18H16.5882C16.5882 16.2527 15.8941 14.5769 14.6586 13.3414C13.4231 12.1059 11.7473 11.4118 10 11.4118C8.25269 11.4118 6.57695 12.1059 5.34141 13.3414C4.10588 14.5769 3.41176 16.2527 3.41176 18H3Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.14639 11.3147C9.18117 11.3122 9.21337 11.2948 9.2359 11.2663C9.25842 11.2378 9.26944 11.2006 9.26651 11.1628C9.26358 11.125 9.24696 11.0898 9.22029 11.0648C9.19363 11.0399 9.15911 11.0273 9.12432 11.0298C9.08954 11.0323 9.05734 11.0497 9.03481 11.0782C9.01228 11.1066 9.00127 11.1439 9.0042 11.1817C9.00712 11.2195 9.02375 11.2547 9.05041 11.2797C9.07708 11.3046 9.1116 11.3172 9.14639 11.3147ZM9.14229 11.2618C9.16272 11.2603 9.18158 11.2495 9.19472 11.2316C9.20787 11.2138 9.21422 11.1905 9.21238 11.1667C9.21054 11.1429 9.20066 11.1208 9.18492 11.105C9.16917 11.0892 9.14885 11.0812 9.12842 11.0827C9.10799 11.0841 9.08913 11.095 9.07598 11.1128C9.06284 11.1307 9.05649 11.154 9.05832 11.1778C9.06016 11.2015 9.07004 11.2237 9.08579 11.2395C9.10154 11.2552 9.12186 11.2633 9.14229 11.2618Z" fill="#009B3A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.75613 11.2955L9.89386 11.2997C9.91031 11.3002 9.92668 11.2975 9.94206 11.2918C9.95743 11.2862 9.97151 11.2776 9.98347 11.2666C9.99544 11.2556 10.0051 11.2423 10.0118 11.2277C10.0185 11.213 10.0223 11.1972 10.0227 11.1811L10.0239 11.1403C10.0244 11.1243 10.0217 11.1083 10.0158 11.0932C10.01 11.0782 10.0011 11.0644 9.98986 11.0527C9.97857 11.0409 9.96503 11.0315 9.95002 11.0249C9.93502 11.0183 9.91883 11.0146 9.90239 11.0141L9.76465 11.0099L9.75613 11.2955ZM9.81197 11.2441L9.89127 11.2465C9.9123 11.2472 9.93272 11.2396 9.94803 11.2255C9.96333 11.2115 9.97227 11.192 9.97289 11.1714L9.97362 11.147C9.97423 11.1264 9.96647 11.1064 9.95203 11.0914C9.93759 11.0764 9.91766 11.0677 9.89663 11.067L9.81733 11.0646L9.81197 11.2441Z" fill="#009B3A"/>
<path d="M10.1276 11.3122L10.3898 11.3337L10.3942 11.2808L10.1819 11.2634L10.188 11.1902L10.3545 11.2038L10.3586 11.155L10.1921 11.1414L10.1969 11.0844L10.3967 11.1008L10.4011 11.0479L10.1514 11.0275L10.1276 11.3122Z" fill="#009B3A"/>
<path d="M10.4971 11.3457L10.5468 11.3524L10.5735 11.1582L10.6047 11.3601L10.6502 11.3662L10.7349 11.1798L10.7082 11.3739L10.7578 11.3806L10.7968 11.0975L10.7244 11.0878L10.6397 11.2742L10.6086 11.0723L10.5361 11.0626L10.4971 11.3457Z" fill="#009B3A"/>
<path d="M11.0987 11.4406L11.3128 11.4871L11.3236 11.4393L11.1584 11.4034L11.1728 11.3397L11.3073 11.3689L11.3181 11.3211L11.1836 11.2919L11.1934 11.248L11.3535 11.2828L11.3643 11.235L11.1553 11.1896L11.0987 11.4406Z" fill="#009B3A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6481 11.5718L11.6999 11.5875L11.732 11.4862L11.8437 11.5202C11.867 11.5273 11.8922 11.525 11.9137 11.514C11.9353 11.5029 11.9514 11.4839 11.9586 11.4611C11.9658 11.4384 11.9634 11.4138 11.9521 11.3927C11.9407 11.3716 11.9212 11.3558 11.8979 11.3487L11.7384 11.3002L11.6481 11.5718ZM11.748 11.4355L11.8557 11.4683C11.8653 11.4712 11.8756 11.4703 11.8844 11.4658C11.8932 11.4612 11.8998 11.4535 11.9027 11.4442C11.9057 11.4349 11.9047 11.4248 11.9001 11.4162C11.8954 11.4075 11.8875 11.4011 11.8779 11.3982L11.7702 11.3654L11.748 11.4355Z" fill="#009B3A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4708 11.8622C12.5028 11.8757 12.5396 11.8748 12.5731 11.8598C12.6066 11.8447 12.6339 11.8167 12.6492 11.7819C12.6644 11.7471 12.6663 11.7083 12.6544 11.6742C12.6425 11.64 12.6178 11.6133 12.5858 11.5998C12.5537 11.5863 12.5169 11.5872 12.4834 11.6023C12.45 11.6173 12.4226 11.6454 12.4073 11.6802C12.3921 11.715 12.3902 11.7537 12.4021 11.7878C12.414 11.822 12.4387 11.8487 12.4708 11.8622ZM12.4921 11.8135C12.511 11.8214 12.5328 11.8203 12.5529 11.8105C12.573 11.8006 12.5897 11.7828 12.5993 11.7609C12.6089 11.739 12.6106 11.7149 12.604 11.6938C12.5975 11.6727 12.5832 11.6565 12.5644 11.6485C12.5456 11.6406 12.5237 11.6417 12.5036 11.6516C12.4835 11.6614 12.4668 11.6793 12.4572 11.7012C12.4477 11.723 12.4459 11.7472 12.4525 11.7682C12.459 11.7893 12.4733 11.8056 12.4921 11.8135Z" fill="#009B3A"/>
<path d="M13.3444 12.3002L13.567 12.4376L13.5959 12.3928L13.4157 12.2816L13.4557 12.2195L13.5971 12.3067L13.6238 12.2653L13.4824 12.178L13.5135 12.1297L13.6832 12.2344L13.7121 12.1896L13.5 12.0587L13.3444 12.3002Z" fill="#009B3A"/>
<path d="M13.7635 12.4609C13.7467 12.4842 13.7613 12.5118 13.7954 12.5354C13.8295 12.5589 13.8535 12.5593 13.8644 12.5443C13.8987 12.4969 13.7174 12.4166 13.7784 12.3339C13.831 12.2628 13.9122 12.324 13.9429 12.3452C13.9737 12.3664 14.0221 12.4198 13.9797 12.4767L13.9277 12.4407C13.9457 12.4158 13.9284 12.3901 13.9011 12.3712C13.8747 12.3529 13.8529 12.3441 13.8354 12.3683C13.8063 12.4068 13.9837 12.4907 13.9242 12.5731C13.8803 12.6339 13.8104 12.6032 13.7643 12.5713C13.7251 12.5442 13.6675 12.4819 13.7097 12.4237L13.7635 12.4609Z" fill="#009B3A"/>
<path d="M14.0665 12.6782C14.0484 12.7006 14.0616 12.7289 14.0944 12.7542C14.1272 12.7795 14.1512 12.7811 14.1628 12.7667C14.1996 12.721 14.0229 12.6316 14.0882 12.5522C14.1445 12.4839 14.2224 12.5491 14.2519 12.5719C14.2815 12.5946 14.3269 12.6504 14.2816 12.7051L14.2315 12.6665C14.2509 12.6425 14.235 12.6159 14.2088 12.5957C14.1833 12.5761 14.162 12.5662 14.1433 12.5894C14.1122 12.6264 14.2848 12.7192 14.221 12.7985C14.1739 12.857 14.1057 12.8227 14.0614 12.7885C14.0237 12.7594 13.9695 12.6943 14.0148 12.6384L14.0665 12.6782Z" fill="#009B3A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.347 13.0204C14.3733 13.0429 14.4086 13.0531 14.4452 13.0489C14.4818 13.0447 14.5167 13.0263 14.5422 12.9979C14.5678 12.9694 14.5818 12.9332 14.5813 12.8971C14.5807 12.8611 14.5657 12.8282 14.5394 12.8057C14.5132 12.7832 14.4779 12.7729 14.4413 12.7771C14.4046 12.7813 14.3697 12.7997 14.3442 12.8282C14.3187 12.8566 14.3047 12.8929 14.3052 12.9289C14.3057 12.965 14.3208 12.9978 14.347 13.0204ZM14.3828 12.9805C14.3982 12.9937 14.4193 12.9993 14.4416 12.996C14.4638 12.9927 14.4853 12.9807 14.5014 12.9629C14.5174 12.945 14.5267 12.9225 14.5271 12.9005C14.5275 12.8785 14.5191 12.8588 14.5037 12.8455C14.4883 12.8323 14.4671 12.8268 14.4449 12.8301C14.4226 12.8334 14.4011 12.8453 14.3851 12.8632C14.369 12.8811 14.3598 12.9035 14.3594 12.9255C14.3589 12.9475 14.3673 12.9673 14.3828 12.9805Z" fill="#009B3A"/>
<g clip-path="url(#clip0_14099_114012)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 5.99945H20V17.9995H4V5.99945Z" fill="#229E45"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0352 16.8994L19.5727 12.0069L11.9902 7.09943L4.42773 12.0169L12.0352 16.8994Z" fill="#F8E509"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3202 11.9994C15.3202 13.7569 13.8927 15.1819 12.1302 15.1819C11.5004 15.181 10.885 14.9933 10.3618 14.6426C9.83864 14.2919 9.43119 13.794 9.19097 13.2118C8.95074 12.6295 8.88853 11.9892 9.01219 11.3716C9.13585 10.754 9.43983 10.187 9.88571 9.74217C10.3316 9.29734 10.8993 8.99469 11.5172 8.87248C12.1351 8.75028 12.7753 8.814 13.3569 9.05559C13.9386 9.29719 14.4355 9.70581 14.785 10.2298C15.1344 10.7538 15.3207 11.3696 15.3202 11.9994Z" fill="#2B49A3"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0821 13.9069L10.9821 13.8494L10.8821 13.8994L10.9046 13.7869L10.8246 13.7019L10.9371 13.6894L10.9921 13.5894L11.0396 13.6944L11.1496 13.7144L11.0671 13.7894M13.2171 14.4469L13.1196 14.3894L13.0196 14.4394L13.0396 14.3269L12.9621 14.2444L13.0746 14.2319L13.1271 14.1294L13.1771 14.2344L13.2871 14.2544L13.2021 14.3319M12.2971 13.5819L12.2121 13.5319L12.1246 13.5769L12.1446 13.4794L12.0746 13.4069L12.1746 13.3969L12.2196 13.3069L12.2596 13.3994L12.3571 13.4169L12.2821 13.4844M14.4571 13.2719L14.3721 13.2219L14.2846 13.2669L14.3046 13.1694L14.2371 13.0994L14.3346 13.0894L14.3796 13.0019L14.4196 13.0919L14.5146 13.1094L14.4421 13.1744M12.2596 12.6244L12.1596 12.5694L12.0596 12.6194L12.0796 12.5044L12.0021 12.4219L12.1146 12.4094L12.1671 12.3069L12.2171 12.4119L12.3271 12.4319L12.2421 12.5119M9.62707 11.6369L9.52707 11.5819L9.42707 11.6319L9.45207 11.5169L9.36957 11.4344L9.48457 11.4219L9.53457 11.3194L9.58457 11.4244L9.69457 11.4444L9.61207 11.5219M9.94457 12.9519L9.84457 12.8944L9.74457 12.9444L9.76707 12.8319L9.68707 12.7494L9.79957 12.7344L9.85207 12.6344L9.90207 12.7394L10.0121 12.7594L9.92957 12.8369M13.2296 11.1544L13.1396 11.1044L13.0496 11.1494L13.0696 11.0494L12.9996 10.9744L13.0996 10.9619L13.1471 10.8719L13.1896 10.9669L13.2896 10.9844L13.2146 11.0519M13.0471 12.0094L12.9796 11.9694L12.9071 12.0044L12.9221 11.9244L12.8671 11.8669L12.9471 11.8569L12.9846 11.7869L13.0171 11.8619L13.0921 11.8744L13.0371 11.9294M9.48207 13.1894L9.41457 13.1519L9.34707 13.1844L9.36207 13.1094L9.30957 13.0544L9.38457 13.0444L9.41957 12.9769L9.45207 13.0469L9.52707 13.0619L9.46957 13.1119M14.4746 13.4944L14.4196 13.4669L14.3646 13.4919L14.3771 13.4344L14.3346 13.3944L14.3946 13.3869L14.4246 13.3369L14.4496 13.3869L14.5121 13.3994L14.4646 13.4369" fill="#FFFFEF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.48207 13.1894L9.41457 13.1519L9.34707 13.1844L9.36207 13.1094L9.30957 13.0544L9.38457 13.0444L9.41957 12.9769L9.45207 13.0469L9.52707 13.0619L9.46957 13.1119" fill="#FFFFEF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.48207 13.1894L9.41457 13.1519L9.34707 13.1844L9.36207 13.1094L9.30957 13.0544L9.38457 13.0444L9.41957 12.9769L9.45207 13.0469L9.52707 13.0619L9.46957 13.1119M10.5271 13.1869L10.4621 13.1519L10.3946 13.1844L10.4096 13.1094L10.3571 13.0544L10.4321 13.0444L10.4671 12.9769L10.4996 13.0469L10.5746 13.0594L10.5171 13.1119M10.3971 13.5369L10.3321 13.4994L10.2646 13.5344L10.2796 13.4594L10.2271 13.4019L10.3021 13.3919L10.3371 13.3244L10.3696 13.3944L10.4446 13.4094L10.3871 13.4594M12.5721 12.9044L12.5071 12.8644L12.4371 12.8994L12.4521 12.8244L12.4021 12.7669L12.4771 12.7594L12.5121 12.6919L12.5421 12.7619L12.6171 12.7744L12.5621 12.8269M11.9346 12.9019L11.8671 12.8644L11.7996 12.8994L11.8146 12.8244L11.7646 12.7669L11.8396 12.7594L11.8746 12.6894L11.9046 12.7619L11.9796 12.7744L11.9246 12.8269M10.2046 12.6819L10.1621 12.6569L10.1196 12.6769L10.1296 12.6294L10.0971 12.5944L10.1446 12.5894L10.1646 12.5469L10.1846 12.5919L10.2321 12.5994L10.1971 12.6319M14.3921 13.7669L14.3271 13.7294L14.2596 13.7644L14.2746 13.6894L14.2221 13.6319L14.2971 13.6219L14.3321 13.5544L14.3646 13.6244L14.4396 13.6394L14.3821 13.6894M13.8621 13.8394L13.8071 13.8044L13.7496 13.8344L13.7621 13.7694L13.7196 13.7244L13.7821 13.7169L13.8121 13.6594L13.8371 13.7194L13.8996 13.7294L13.8521 13.7744M14.1121 13.8319L14.0621 13.8019L14.0096 13.8269L14.0196 13.7694L13.9796 13.7269L14.0371 13.7194L14.0646 13.6694L14.0896 13.7194L14.1471 13.7319L14.1046 13.7719M14.8321 13.2019L14.7821 13.1769L14.7321 13.2019L14.7446 13.1444L14.7046 13.1019L14.7621 13.0944L14.7871 13.0444L14.8121 13.0969L14.8646 13.1069L14.8246 13.1469M13.8546 14.1919L13.7921 14.1569L13.7246 14.1869L13.7396 14.1169L13.6896 14.0669L13.7646 14.0594L13.7971 13.9969L13.8271 14.0619L13.9021 14.0744L13.8446 14.1219M13.8596 14.4769L13.7996 14.4419L13.7396 14.4744L13.7546 14.4044L13.7071 14.3544L13.7746 14.3444L13.8046 14.2819L13.8321 14.3469L13.8996 14.3594L13.8496 14.4094M13.3746 13.8319L13.3271 13.8019L13.2771 13.8269L13.2871 13.7719L13.2496 13.7294L13.3046 13.7244L13.3296 13.6744L13.3546 13.7244L13.4096 13.7344L13.3696 13.7744M12.9246 13.8319L12.8746 13.8019L12.8246 13.8269L12.8371 13.7719L12.7971 13.7294L12.8546 13.7244L12.8796 13.6744L12.9046 13.7244L12.9571 13.7344L12.9171 13.7744M12.1571 13.1594L12.1071 13.1319L12.0571 13.1569L12.0696 13.0994L12.0296 13.0594L12.0846 13.0519L12.1096 13.0019L12.1346 13.0519L12.1896 13.0644L12.1496 13.1019M12.2421 14.5269L12.2021 14.5044L12.1571 14.5269L12.1671 14.4769L12.1346 14.4419L12.1821 14.4369L12.2046 14.3944L12.2246 14.4394L12.2721 14.4469L12.2371 14.4794M11.0821 12.3144L10.9821 12.2569L10.8821 12.3069L10.9046 12.1944L10.8246 12.1119L10.9371 12.0969L10.9921 11.9969L11.0396 12.1019L11.1496 12.1219L11.0671 12.1994" fill="#FFFFEF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.1102 13.1445C15.1721 12.9838 15.2206 12.8182 15.2552 12.6495C13.5602 11.162 11.6727 10.3995 9.2877 10.557C9.20119 10.7243 9.13007 10.8992 9.0752 11.0795C11.9002 10.8095 13.9752 12.0595 15.1102 13.1445Z" fill="white"/>
<path d="M14.3501 12.3095L14.4076 12.342C14.399 12.359 14.3964 12.3783 14.4001 12.397C14.4059 12.4151 14.4184 12.4303 14.4351 12.4395C14.4526 12.452 14.4701 12.4595 14.4851 12.457C14.5001 12.457 14.5101 12.4495 14.5176 12.4395C14.5219 12.4328 14.5237 12.4248 14.5226 12.417C14.5205 12.4077 14.5162 12.3992 14.5101 12.392C14.5051 12.3845 14.4926 12.367 14.4726 12.347C14.452 12.3258 14.4366 12.3001 14.4276 12.272C14.4213 12.2507 14.423 12.2279 14.4321 12.2077C14.4413 12.1875 14.4574 12.1713 14.4776 12.162C14.4958 12.1544 14.5159 12.1526 14.5351 12.157C14.5586 12.1624 14.5807 12.1726 14.6001 12.187C14.6351 12.212 14.6576 12.237 14.6651 12.267C14.6685 12.281 14.669 12.2956 14.6664 12.3098C14.6638 12.324 14.6583 12.3376 14.6501 12.3495L14.5901 12.312C14.5976 12.297 14.6001 12.282 14.5951 12.2695C14.5926 12.257 14.5826 12.2445 14.5651 12.2345C14.5522 12.2241 14.5365 12.218 14.5201 12.217C14.5155 12.2168 14.5111 12.2179 14.5071 12.2201C14.5031 12.2223 14.4998 12.2255 14.4976 12.2295C14.4926 12.237 14.4926 12.2445 14.4951 12.2545C14.4976 12.2645 14.5101 12.2845 14.5351 12.3095C14.5601 12.3345 14.5751 12.357 14.5851 12.372C14.594 12.3884 14.598 12.407 14.5967 12.4256C14.5954 12.4442 14.5887 12.462 14.5776 12.477C14.5659 12.494 14.5493 12.507 14.5301 12.5145C14.5113 12.5231 14.4904 12.5257 14.4701 12.522C14.4476 12.517 14.4251 12.507 14.4001 12.4895C14.3626 12.4645 14.3401 12.437 14.3326 12.407C14.3244 12.373 14.3298 12.3371 14.3476 12.307L14.3501 12.3095ZM14.0601 12.1195L14.1226 12.152C14.1148 12.1692 14.1131 12.1886 14.1176 12.207C14.124 12.2241 14.1364 12.2384 14.1526 12.247C14.1726 12.2595 14.1876 12.2645 14.2026 12.262C14.2176 12.262 14.2276 12.2545 14.2351 12.242C14.2389 12.236 14.2406 12.229 14.2401 12.222C14.2401 12.2145 14.2351 12.2045 14.2276 12.197C14.2148 12.1815 14.2014 12.1665 14.1876 12.152C14.1601 12.1245 14.1426 12.102 14.1376 12.082C14.1335 12.0691 14.1323 12.0555 14.134 12.0421C14.1357 12.0287 14.1404 12.0159 14.1476 12.0045C14.1571 11.989 14.171 11.9768 14.1876 11.9695C14.2048 11.9616 14.2239 11.9589 14.2426 11.962C14.2657 11.9659 14.2878 11.9744 14.3076 11.987C14.3451 12.012 14.3676 12.037 14.3751 12.0645C14.3796 12.0785 14.3811 12.0934 14.3794 12.1081C14.3776 12.1227 14.3728 12.1369 14.3651 12.1495L14.3026 12.1145C14.3101 12.097 14.3126 12.0845 14.3076 12.072C14.3026 12.0595 14.2926 12.047 14.2751 12.037C14.2612 12.027 14.2446 12.0218 14.2276 12.022C14.2235 12.0223 14.2195 12.0235 14.216 12.0257C14.2125 12.0279 14.2096 12.0309 14.2076 12.0345C14.2026 12.042 14.2026 12.0495 14.2051 12.0595C14.2076 12.0695 14.2226 12.0895 14.2476 12.1145C14.2726 12.1395 14.2901 12.1595 14.2976 12.1745C14.3076 12.1902 14.3129 12.2084 14.3129 12.227C14.3129 12.2456 14.3076 12.2638 14.2976 12.2795C14.2868 12.2969 14.2712 12.3108 14.2526 12.3195C14.2338 12.3281 14.2129 12.3307 14.1926 12.327C14.1668 12.3226 14.1422 12.3133 14.1201 12.2995C14.0878 12.2822 14.0629 12.2538 14.0501 12.2195C14.0404 12.1861 14.044 12.1503 14.0601 12.1195ZM13.7051 12.0245L13.8876 11.7245L14.1076 11.862L14.0776 11.912L13.9176 11.812L13.8776 11.8795L14.0276 11.972L13.9951 12.022L13.8451 11.9295L13.7951 12.012L13.9626 12.112L13.9326 12.162L13.7076 12.0245H13.7051ZM13.1876 11.5995L13.2151 11.5495L13.3501 11.617L13.2876 11.742C13.2676 11.747 13.2426 11.7495 13.2126 11.747C13.1838 11.7438 13.1558 11.7353 13.1301 11.722C13.0998 11.7072 13.074 11.6848 13.0551 11.657C13.0379 11.6311 13.0291 11.6005 13.0301 11.5695C13.0313 11.5372 13.0399 11.5055 13.0551 11.477C13.0701 11.4469 13.0925 11.4211 13.1201 11.402C13.1465 11.3837 13.178 11.3741 13.2101 11.3745C13.2351 11.3745 13.2601 11.382 13.2901 11.3995C13.3301 11.417 13.3551 11.442 13.3676 11.4695C13.3806 11.4968 13.3832 11.5279 13.3751 11.557L13.3076 11.537C13.3117 11.5202 13.3099 11.5026 13.3026 11.487C13.2951 11.472 13.2826 11.462 13.2626 11.452C13.2509 11.4453 13.238 11.4412 13.2246 11.4399C13.2113 11.4386 13.1978 11.4402 13.1851 11.4445C13.1601 11.452 13.1376 11.4745 13.1201 11.5095C13.1026 11.5445 13.0951 11.577 13.1026 11.6045C13.106 11.6175 13.1123 11.6296 13.1209 11.64C13.1296 11.6504 13.1404 11.6587 13.1526 11.6645C13.1651 11.672 13.1801 11.677 13.1951 11.677C13.21 11.6792 13.2252 11.6792 13.2401 11.677L13.2601 11.637L13.1876 11.5995ZM10.9326 11.042L10.9826 10.692L11.0876 10.7095L11.1151 10.9545L11.2126 10.7295L11.3176 10.7445L11.2676 11.0895L11.2001 11.0795L11.2426 10.807L11.1326 11.0695L11.0651 11.0595L11.0376 10.777L10.9976 11.052L10.9326 11.042ZM10.5801 10.9995L10.6126 10.6495L10.8701 10.6745L10.8651 10.7345L10.6776 10.717L10.6701 10.792L10.8451 10.8095L10.8376 10.8695L10.6626 10.852L10.6551 10.947L10.8501 10.9645L10.8451 11.0245L10.5801 10.9995Z" fill="#309E3A"/>
<path d="M9.4127 10.7819C9.4127 10.7444 9.4202 10.7169 9.4302 10.6919C9.43897 10.6741 9.45082 10.6581 9.4652 10.6444C9.47803 10.6315 9.49333 10.6213 9.5102 10.6144C9.5352 10.6069 9.5602 10.6019 9.5852 10.6019C9.6377 10.6019 9.6777 10.6219 9.7102 10.6519C9.72567 10.671 9.73718 10.693 9.74405 10.7167C9.75092 10.7403 9.75301 10.765 9.7502 10.7894C9.7502 10.8444 9.7327 10.8894 9.7002 10.9219C9.6835 10.9374 9.66375 10.9491 9.64222 10.9564C9.62068 10.9638 9.59785 10.9665 9.5752 10.9644C9.55286 10.9647 9.5307 10.9603 9.51007 10.9517C9.48944 10.9431 9.47078 10.9305 9.4552 10.9144C9.4241 10.8776 9.40882 10.83 9.4127 10.7819Z" fill="#309E3A"/>
<path d="M9.48535 10.7819C9.48535 10.8194 9.49285 10.8494 9.51035 10.8719C9.52785 10.8919 9.55035 10.9044 9.58035 10.9044C9.59333 10.9053 9.60635 10.9033 9.61846 10.8986C9.63057 10.8938 9.64146 10.8864 9.65035 10.8769C9.66785 10.8569 9.67535 10.8269 9.67785 10.7844C9.67785 10.7444 9.67285 10.7144 9.65285 10.6944C9.64471 10.6843 9.63443 10.6762 9.62276 10.6706C9.61108 10.665 9.59831 10.662 9.58535 10.6619C9.5722 10.6615 9.55912 10.664 9.54702 10.6691C9.53493 10.6743 9.52412 10.6821 9.51535 10.6919C9.49535 10.7119 9.48785 10.7419 9.48535 10.7819Z" fill="#F7FFFF"/>
<path d="M9.8252 10.9619L9.8302 10.6119H9.9802C10.0177 10.6119 10.0427 10.6169 10.0602 10.6244C10.0777 10.6294 10.0902 10.6419 10.1002 10.6569C10.1102 10.6719 10.1152 10.6919 10.1152 10.7144C10.1154 10.7385 10.1065 10.7617 10.0902 10.7794C10.0717 10.7968 10.0479 10.8073 10.0227 10.8094L10.0602 10.8394C10.0702 10.8494 10.0827 10.8694 10.0977 10.8969L10.1402 10.9669H10.0552L10.0052 10.8869L9.9702 10.8369C9.96413 10.8301 9.95638 10.8249 9.9477 10.8219C9.93632 10.8186 9.92454 10.8169 9.9127 10.8169H9.8977V10.9619H9.8252Z" fill="#309E3A"/>
<path d="M9.90039 10.7619H9.95039C9.98539 10.7619 10.0079 10.7619 10.0154 10.7569C10.0229 10.7569 10.0304 10.7494 10.0354 10.7444C10.0404 10.7394 10.0429 10.7269 10.0429 10.7194C10.0429 10.7044 10.0404 10.6944 10.0329 10.6894C10.0279 10.6819 10.0179 10.6769 10.0079 10.6744H9.95789L9.90039 10.6719V10.7594V10.7619Z" fill="white"/>
<path d="M10.2245 10.6295L10.3545 10.637C10.382 10.637 10.4045 10.6395 10.4195 10.6445C10.439 10.6515 10.4562 10.6636 10.4695 10.6795C10.4839 10.6969 10.4942 10.7174 10.4995 10.7395C10.507 10.762 10.5095 10.7895 10.507 10.822C10.507 10.8475 10.5028 10.8728 10.4945 10.897C10.4845 10.922 10.4695 10.942 10.452 10.957C10.4375 10.969 10.4204 10.9775 10.402 10.982C10.387 10.987 10.3645 10.987 10.3395 10.987L10.207 10.9795L10.2245 10.6295Z" fill="#309E3A"/>
<path d="M10.2918 10.692L10.2793 10.9245H10.3743C10.3868 10.9245 10.3968 10.9195 10.4043 10.912C10.4118 10.9045 10.4193 10.8945 10.4243 10.8795C10.4293 10.8645 10.4343 10.842 10.4343 10.8145L10.4318 10.752C10.4282 10.7388 10.4213 10.7267 10.4118 10.717C10.4035 10.7086 10.3932 10.7026 10.3818 10.6995C10.3629 10.6952 10.3436 10.6927 10.3243 10.692H10.2918Z" fill="white"/>
<path d="M11.9404 11.2544L12.0229 10.9144L12.1329 10.9394L12.2129 10.9644C12.2304 10.9744 12.2454 10.9894 12.2529 11.0119C12.2629 11.0319 12.2629 11.0544 12.2579 11.0819C12.2529 11.1019 12.2454 11.1194 12.2329 11.1319C12.2238 11.1429 12.2123 11.1517 12.1993 11.1578C12.1864 11.1638 12.1722 11.167 12.1579 11.1669C12.1404 11.1669 12.1154 11.1619 12.0829 11.1544L12.0404 11.1419L12.0104 11.2719L11.9404 11.2544Z" fill="#309E3A"/>
<path d="M12.0757 10.9894L12.0557 11.0844L12.0932 11.0944C12.1182 11.0994 12.1382 11.1044 12.1482 11.1019C12.1579 11.1006 12.167 11.0963 12.1741 11.0895C12.1813 11.0828 12.1862 11.0741 12.1882 11.0644C12.1882 11.0519 12.1882 11.0419 12.1832 11.0319C12.1777 11.0218 12.1688 11.0138 12.1582 11.0094L12.1107 10.9969L12.0782 10.9894H12.0757Z" fill="white"/>
<path d="M12.2646 11.352L12.3821 11.022L12.5196 11.072C12.5571 11.0845 12.5796 11.097 12.5946 11.107C12.6071 11.1195 12.6171 11.132 12.6196 11.152C12.6221 11.172 12.6246 11.1895 12.6196 11.2095C12.6096 11.2345 12.5946 11.252 12.5746 11.2645C12.5546 11.2745 12.5296 11.277 12.4996 11.272C12.5096 11.2845 12.5196 11.297 12.5246 11.312L12.5446 11.3795L12.5596 11.457L12.4821 11.4295L12.4571 11.3395C12.4526 11.3191 12.4468 11.2991 12.4396 11.2795C12.4363 11.2717 12.4312 11.2648 12.4246 11.2595C12.4196 11.252 12.4096 11.247 12.3921 11.242L12.3796 11.237L12.3296 11.377L12.2646 11.352Z" fill="#309E3A"/>
<path d="M12.4 11.1845L12.4475 11.202C12.48 11.2145 12.5 11.2195 12.51 11.2195C12.5175 11.2195 12.525 11.2195 12.5325 11.212C12.54 11.207 12.545 11.1995 12.5475 11.1895C12.5525 11.1795 12.5525 11.1695 12.5475 11.1595C12.5438 11.1498 12.5366 11.1418 12.5275 11.137L12.4775 11.1195L12.4275 11.102L12.3975 11.1845H12.4Z" fill="white"/>
<path d="M12.6747 11.3395C12.6833 11.3102 12.6977 11.283 12.7172 11.2595C12.7298 11.2444 12.7451 11.2317 12.7622 11.222C12.7777 11.2132 12.7946 11.2073 12.8122 11.2045C12.8372 11.2045 12.8622 11.2045 12.8897 11.2145C12.912 11.22 12.9329 11.2302 12.951 11.2444C12.9691 11.2587 12.984 11.2766 12.9947 11.297C13.0147 11.337 13.0147 11.3845 12.9997 11.4395C12.9873 11.4867 12.9567 11.5272 12.9147 11.552C12.8772 11.5745 12.8322 11.577 12.7847 11.562C12.7624 11.5563 12.7415 11.546 12.7235 11.5318C12.7054 11.5176 12.6905 11.4998 12.6797 11.4795C12.6697 11.4576 12.6641 11.434 12.6632 11.41C12.6623 11.3859 12.6662 11.362 12.6747 11.3395Z" fill="#309E3A"/>
<path d="M12.7448 11.3595C12.7348 11.397 12.7323 11.4295 12.7448 11.4545C12.7573 11.4795 12.7748 11.4945 12.8023 11.5045C12.8273 11.512 12.8523 11.5095 12.8773 11.4945C12.9023 11.482 12.9173 11.4545 12.9298 11.4145C12.9423 11.377 12.9423 11.347 12.9298 11.322C12.9249 11.3101 12.9174 11.2995 12.9079 11.2908C12.8984 11.2822 12.8871 11.2757 12.8748 11.272C12.8625 11.2677 12.8494 11.2662 12.8365 11.2675C12.8235 11.2688 12.811 11.2729 12.7998 11.2795C12.7748 11.2945 12.7573 11.3195 12.7448 11.3595Z" fill="white"/>
<path d="M13.3574 11.827L13.5174 11.517L13.6499 11.5845C13.6749 11.5965 13.6977 11.6125 13.7174 11.632C13.7299 11.6445 13.7374 11.6595 13.7374 11.6795C13.7374 11.6995 13.7374 11.717 13.7274 11.7345C13.7178 11.7569 13.6999 11.7749 13.6774 11.7845C13.6524 11.7895 13.6274 11.7895 13.5999 11.7795C13.6099 11.7945 13.6149 11.8095 13.6199 11.822C13.6249 11.837 13.6274 11.8595 13.6299 11.892L13.6349 11.972L13.5599 11.9345L13.5499 11.842C13.5487 11.821 13.5462 11.8001 13.5424 11.7795C13.5407 11.7701 13.5364 11.7614 13.5299 11.7545L13.4999 11.737L13.4874 11.7295L13.4199 11.8595L13.3574 11.827Z" fill="#309E3A"/>
<path d="M13.5127 11.6795L13.5602 11.7045C13.5902 11.7195 13.6102 11.7295 13.6177 11.7295C13.6252 11.7295 13.6352 11.7295 13.6427 11.7245C13.6502 11.722 13.6552 11.7145 13.6602 11.7045C13.6652 11.6945 13.6677 11.6845 13.6652 11.6745C13.6621 11.6645 13.656 11.6558 13.6477 11.6495C13.6331 11.6405 13.6181 11.6322 13.6027 11.6245L13.5527 11.5995L13.5127 11.6795Z" fill="white"/>
<path d="M14.6524 12.4669C14.6685 12.4412 14.6898 12.4191 14.7149 12.4019C14.7317 12.3912 14.7503 12.3835 14.7699 12.3794C14.788 12.3757 14.8067 12.3757 14.8249 12.3794C14.8499 12.3844 14.8724 12.3944 14.8949 12.4094C14.9143 12.4215 14.931 12.4376 14.9439 12.4565C14.9569 12.4755 14.9657 12.4969 14.9699 12.5194C14.9774 12.5619 14.9649 12.6094 14.9349 12.6569C14.9098 12.6982 14.8693 12.7279 14.8224 12.7394C14.8 12.7443 14.7768 12.7443 14.7544 12.7396C14.732 12.7348 14.7109 12.7254 14.6924 12.7119C14.6729 12.6998 14.6562 12.6838 14.6433 12.6648C14.6304 12.6459 14.6215 12.6245 14.6174 12.6019C14.6099 12.5569 14.6224 12.5119 14.6524 12.4669Z" fill="#309E3A"/>
<path d="M14.7145 12.5069C14.6895 12.5394 14.682 12.5694 14.687 12.5969C14.6889 12.6096 14.6934 12.6217 14.7003 12.6325C14.7072 12.6433 14.7163 12.6524 14.727 12.6594C14.752 12.6769 14.777 12.6819 14.802 12.6744C14.827 12.6669 14.852 12.6494 14.8745 12.6144C14.897 12.5794 14.907 12.5494 14.902 12.5244C14.8995 12.4994 14.8845 12.4769 14.862 12.4594C14.8395 12.4419 14.812 12.4394 14.787 12.4469C14.762 12.4519 14.737 12.4719 14.712 12.5069H14.7145Z" fill="white"/>
<path d="M11.5449 11.1119L11.6024 10.8669L11.7824 10.9094L11.7749 10.9494L11.6424 10.9194L11.6299 10.9744L11.7524 11.0019L11.7424 11.0444L11.6199 11.0144L11.6049 11.0819L11.7424 11.1144L11.7324 11.1544L11.5449 11.1119Z" fill="#309E3A"/>
</g>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<defs>
<clipPath id="clip0_14099_114012">
<rect width="16" height="12" fill="white" transform="translate(4 5.99945)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,78 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M20 17.1407C19.8207 17.2295 19.6667 17.4372 19.1904 17.4372C18.2381 17.4372 18 17 17.2857 17C16.8095 17 16.5714 17.4372 16.0953 17.4372C15.1429 17.4372 14.9048 17 14.1905 17C13.7143 17 13.4762 17.4372 13 17.4372C12.0476 17.4372 11.8095 17 11.0953 17C10.619 17 10.381 17.4372 9.90477 17.4372C8.9524 17.4372 8.71429 17 8 17C7.52379 17 7.28571 17.4372 6.80952 17.4372C5.85715 17.4372 5.61904 17 4.90477 17C4.42856 17 4.28571 17.3115 4 17.3115V17.8743C4.28571 17.8743 4.42856 17.5628 4.90477 17.5628C5.61904 17.5628 5.85715 18 6.80952 18C7.28571 18 7.52379 17.5628 8 17.5628C8.71427 17.5628 8.9524 18 9.90477 18C10.381 18 10.619 17.5628 11.0953 17.5628C11.8095 17.5628 12.0476 18 13 18C13.4762 18 13.7143 17.5628 14.1905 17.5628C14.9048 17.5628 15.1429 18 16.0953 18C16.5714 18 16.8095 17.5628 17.2857 17.5628C18 17.5628 18.2381 18 19.1904 18C19.6667 18 19.8207 17.8761 20 17.7873V17.1407Z" fill="#002B7F"/>
<path d="M20 15.1407C19.8207 15.2295 19.6667 15.4372 19.1904 15.4372C18.2381 15.4372 18 15 17.2857 15C16.8095 15 16.5714 15.4372 16.0953 15.4372C15.1429 15.4372 14.9048 15 14.1905 15C13.7143 15 13.4762 15.4372 13 15.4372C12.0476 15.4372 11.8095 15 11.0953 15C10.619 15 10.381 15.4372 9.90477 15.4372C8.9524 15.4372 8.71429 15 8 15C7.52379 15 7.28571 15.4372 6.80952 15.4372C5.85715 15.4372 5.61904 15 4.90477 15C4.42856 15 4.28571 15.3115 4 15.3115V15.8743C4.28571 15.8743 4.42856 15.5628 4.90477 15.5628C5.61904 15.5628 5.85715 16 6.80952 16C7.28571 16 7.52379 15.5628 8 15.5628C8.71427 15.5628 8.9524 16 9.90477 16C10.381 16 10.619 15.5628 11.0953 15.5628C11.8095 15.5628 12.0476 16 13 16C13.4762 16 13.7143 15.5628 14.1905 15.5628C14.9048 15.5628 15.1429 16 16.0953 16C16.5714 16 16.8095 15.5628 17.2857 15.5628C18 15.5628 18.2381 16 19.1904 16C19.6667 16 19.8207 15.8761 20 15.7873V15.1407Z" fill="#002B7F"/>
<path d="M20 13.1407C19.8207 13.2295 19.6667 13.4372 19.1904 13.4372C18.2381 13.4372 18 13 17.2857 13C16.8095 13 16.5714 13.4372 16.0953 13.4372C15.1429 13.4372 14.9048 13 14.1905 13C13.7143 13 13.4762 13.4372 13 13.4372C12.0476 13.4372 11.8095 13 11.0953 13C10.619 13 10.381 13.4372 9.90477 13.4372C8.9524 13.4372 8.71429 13 8 13C7.52379 13 7.28571 13.4372 6.80952 13.4372C5.85715 13.4372 5.61904 13 4.90477 13C4.42856 13 4.28571 13.3115 4 13.3115V13.8743C4.28571 13.8743 4.42856 13.5628 4.90477 13.5628C5.61904 13.5628 5.85715 14 6.80952 14C7.28571 14 7.52379 13.5628 8 13.5628C8.71427 13.5628 8.9524 14 9.90477 14C10.381 14 10.619 13.5628 11.0953 13.5628C11.8095 13.5628 12.0476 14 13 14C13.4762 14 13.7143 13.5628 14.1905 13.5628C14.9048 13.5628 15.1429 14 16.0953 14C16.5714 14 16.8095 13.5628 17.2857 13.5628C18 13.5628 18.2381 14 19.1904 14C19.6667 14 19.8207 13.8761 20 13.7873V13.1407Z" fill="#002B7F"/>
<path d="M20 11.1407C19.8207 11.2295 19.6667 11.4372 19.1904 11.4372C18.2381 11.4372 18 11 17.2857 11C16.8095 11 16.5714 11.4372 16.0953 11.4372C15.1429 11.4372 14.9048 11 14.1905 11C13.7143 11 13.4762 11.4372 13 11.4372C12.0476 11.4372 11.8095 11 11.0953 11C10.619 11 10.381 11.4372 9.90477 11.4372C8.9524 11.4372 8.71429 11 8 11C7.52379 11 7.28571 11.4372 6.80952 11.4372C5.85715 11.4372 5.61904 11 4.90477 11C4.42856 11 4.28571 11.3115 4 11.3115V11.8743C4.28571 11.8743 4.42856 11.5628 4.90477 11.5628C5.61904 11.5628 5.85715 12 6.80952 12C7.28571 12 7.52379 11.5628 8 11.5628C8.71427 11.5628 8.9524 12 9.90477 12C10.381 12 10.619 11.5628 11.0953 11.5628C11.8095 11.5628 12.0476 12 13 12C13.4762 12 13.7143 11.5628 14.1905 11.5628C14.9048 11.5628 15.1429 12 16.0953 12C16.5714 12 16.8095 11.5628 17.2857 11.5628C18 11.5628 18.2381 12 19.1904 12C19.6667 12 19.8207 11.8761 20 11.7873V11.1407Z" fill="#002B7F"/>
<path d="M20 9.14068C19.8207 9.22953 19.6667 9.43719 19.1904 9.43719C18.2381 9.43719 18 9 17.2857 9C16.8095 9 16.5714 9.43719 16.0953 9.43719C15.1429 9.43719 14.9048 9 14.1905 9C13.7143 9 13.4762 9.43719 13 9.43719C12.0476 9.43719 11.8095 9 11.0953 9C10.619 9 10.381 9.43719 9.90477 9.43719C8.9524 9.43719 8.71429 9 8 9C7.52379 9 7.28571 9.43719 6.80952 9.43719C5.85715 9.43719 5.61904 9 4.90477 9C4.42856 9 4.28571 9.31153 4 9.31153V9.87435C4.28571 9.87435 4.42856 9.56284 4.90477 9.56284C5.61904 9.56284 5.85715 10 6.80952 10C7.28571 10 7.52379 9.56284 8 9.56284C8.71427 9.56284 8.9524 10 9.90477 10C10.381 10 10.619 9.56284 11.0953 9.56284C11.8095 9.56284 12.0476 10 13 10C13.4762 10 13.7143 9.56284 14.1905 9.56284C14.9048 9.56284 15.1429 10 16.0953 10C16.5714 10 16.8095 9.56284 17.2857 9.56284C18 9.56284 18.2381 10 19.1904 10C19.6667 10 19.8207 9.87611 20 9.78727V9.14068Z" fill="#002B7F"/>
<path d="M20 7.14068C19.8207 7.22953 19.6667 7.43719 19.1904 7.43719C18.2381 7.43719 18 7 17.2857 7C16.8095 7 16.5714 7.43719 16.0953 7.43719C15.1429 7.43719 14.9048 7 14.1905 7C13.7143 7 13.4762 7.43719 13 7.43719C12.0476 7.43719 11.8095 7 11.0953 7C10.619 7 10.381 7.43719 9.90477 7.43719C8.9524 7.43719 8.71429 7 8 7C7.52379 7 7.28571 7.43719 6.80952 7.43719C5.85715 7.43719 5.61904 7 4.90477 7C4.42856 7 4.28571 7.31153 4 7.31153V7.87435C4.28571 7.87435 4.42856 7.56284 4.90477 7.56284C5.61904 7.56284 5.85715 8 6.80952 8C7.28571 8 7.52379 7.56284 8 7.56284C8.71427 7.56284 8.9524 8 9.90477 8C10.381 8 10.619 7.56284 11.0953 7.56284C11.8095 7.56284 12.0476 8 13 8C13.4762 8 13.7143 7.56284 14.1905 7.56284C14.9048 7.56284 15.1429 8 16.0953 8C16.5714 8 16.8095 7.56284 17.2857 7.56284C18 7.56284 18.2381 8 19.1904 8C19.6667 8 19.8207 7.87611 20 7.78727V7.14068Z" fill="#002B7F"/>
<path d="M13 6H4V10.56H13V6Z" fill="white"/>
<g clip-path="url(#clip0_14099_114067)">
<path d="M13 6H4V10.5H13V6Z" fill="#00247D"/>
<path d="M4 6L13 10L4 6ZM13 6L4 10L13 6Z" fill="black"/>
<path d="M4 6L13 10M13 6L4 10" stroke="white" stroke-width="1.5"/>
<path d="M4 6L13 10L4 6ZM13 6L4 10L13 6Z" fill="black"/>
<path d="M3.79693 9.54309C3.54459 9.65525 3.43094 9.95073 3.54309 10.2031C3.65525 10.4554 3.95073 10.5691 4.20307 10.4569L3.79693 9.54309ZM3.79693 6.45691L12.7969 10.4569L13.2031 9.54309L4.20307 5.54309L3.79693 6.45691ZM12.7969 5.54309L3.79693 9.54309L4.20307 10.4569L13.2031 6.45691L12.7969 5.54309Z" fill="#CF142B"/>
<path d="M8.5 6V10.5V6ZM4 8.25H13H4Z" fill="black"/>
<path d="M8.5 6V10.5M4 8.25H13" stroke="white" stroke-width="1.5"/>
<path d="M8.5 6V10.5V6ZM4 8.25H13H4Z" fill="black"/>
<path d="M8.5 6V10.5M4 8.25H13" stroke="#CF142B"/>
</g>
<path d="M17.3924 11.3864L17.3281 17.4935C17.3281 17.8149 17.6188 17.8149 17.6496 17.4935L17.5853 11.3864H17.3924Z" fill="#A24300" stroke="white" stroke-width="0.03"/>
<path d="M18.0573 13.656L17.8551 13.434L17.8052 13.6582L17.7173 13.3336L17.6351 13.497L17.6206 13.1514L17.5384 13.3148L17.5239 12.9692L17.4417 13.1326L17.3949 12.7262L17.3128 12.8897L17.266 12.4833L17.1838 12.6468L17.1371 12.2404L17.1137 12.0372L17.1547 11.9554L17.2603 11.9952L17.4303 12.1564L17.7703 12.4788L17.5592 12.3993L17.8993 12.7217L17.6882 12.6422L18.0282 12.9646L17.8171 12.8852L18.1249 13.1468L17.9138 13.0674L18.2216 13.329L18.0105 13.2496L18.245 13.5322L18.0017 13.392L18.0573 13.656Z" fill="#006D00" stroke="white" stroke-width="0.03"/>
<path d="M18.0566 13.6559L17.154 11.9554" stroke="black" stroke-width="0.03"/>
<path d="M17.7705 12.4782L17.2838 12.1978L17.184 12.6462" stroke="black" stroke-width="0.03"/>
<path d="M17.8994 12.7224L17.4128 12.442L17.3129 12.8903" stroke="black" stroke-width="0.03"/>
<path d="M18.0283 12.9645L17.5417 12.6841L17.4418 13.1325" stroke="black" stroke-width="0.03"/>
<path d="M18.125 13.1462L17.6706 12.9265L17.5385 13.3142" stroke="black" stroke-width="0.03"/>
<path d="M18.2217 13.3298L17.7673 13.1101L17.6352 13.4978" stroke="black" stroke-width="0.03"/>
<path d="M18.2451 13.5329L17.8318 13.2315L17.8052 13.6589" stroke="black" stroke-width="0.03"/>
<path d="M19.0299 10.1684L18.6978 10.3907L18.6433 10.1523L18.4473 10.482L18.4122 10.3233L18.2521 10.6614L18.2296 10.5058L18.1054 10.8523L18.0343 10.6852L17.9097 11.1069L17.8387 10.9398L17.7141 11.3614L17.6431 11.1943L17.5185 11.616L17.4562 11.8268L17.4917 11.9104L17.625 11.8666L17.8562 11.6956L18.3185 11.3537L18.0518 11.4411L18.5141 11.0991L18.2474 11.1866L18.7097 10.8446L18.4431 10.932L18.905 10.6651L18.5898 10.7411L19.0876 10.4827L18.785 10.5617L19.1499 10.2719L18.8343 10.4229L19.0299 10.1684Z" fill="#006D00" stroke="white" stroke-width="0.03"/>
<path d="M18.9004 10.2887L18.4205 10.7017L17.4913 11.9108" stroke="black" stroke-width="0.03"/>
<path d="M18.2168 11.4059L17.6871 11.6568L17.6425 11.2704" stroke="black" stroke-width="0.03"/>
<path d="M18.4209 11.152L17.8832 11.401L17.8385 11.0145" stroke="black" stroke-width="0.03"/>
<path d="M18.6123 10.8961L18.0786 11.1461L18.038 10.7606" stroke="black" stroke-width="0.03"/>
<path d="M18.7715 10.7087L18.2746 10.8922L18.2169 10.5779" stroke="black" stroke-width="0.03"/>
<path d="M18.9541 10.527L18.4208 10.7018L18.4 10.3962" stroke="black" stroke-width="0.03"/>
<path d="M19.0251 10.3547L18.532 10.607L18.6272 10.2244" stroke="black" stroke-width="0.03"/>
<path d="M15.2393 12.243L15.673 11.9426L15.4558 11.8306L15.8357 11.8955L15.7053 11.7235L16.0745 11.8614L15.944 11.6893L16.3132 11.8273L16.1827 11.6552L16.628 11.8061L16.4975 11.6341L16.9319 11.8581L16.8014 11.686L17.2467 11.8369L17.4639 11.9489L17.5291 12.0349L17.4424 12.095L17.2036 12.1291L16.8184 12.288L16.8889 12.1503L16.4114 12.2185L16.5849 12.0983L16.0967 12.2396L16.2702 12.1195L15.858 12.2738L16.0422 12.0806L15.6192 12.3079L15.8035 12.1147L15.4565 12.355L15.6515 12.0887L15.2393 12.243Z" fill="#006D00" stroke="white" stroke-width="0.03"/>
<path d="M15.377 12.1617L15.8254 11.968L16.0641 11.9339L16.2634 11.9305L16.6068 11.9517L16.9165 11.9652L17.5295 12.0344" stroke="black" stroke-width="0.03"/>
<path d="M16.8778 12.2233L17.2204 12.0127L16.8712 11.7386" stroke="black" stroke-width="0.03"/>
<path d="M16.4932 12.191L16.916 11.9649L16.5668 11.6908" stroke="black" stroke-width="0.03"/>
<path d="M16.2194 12.1857L16.6066 11.9522L16.2545 11.6979" stroke="black" stroke-width="0.03"/>
<path d="M15.7061 12.2478L16.0638 11.9345L15.7755 11.776" stroke="black" stroke-width="0.03"/>
<path d="M15.5469 12.269L15.8248 11.9686L15.6032 11.8863" stroke="black" stroke-width="0.03"/>
<path d="M15.9443 12.2145L16.2975 11.932L16.0142 11.7401" stroke="black" stroke-width="0.03"/>
<path d="M16.7578 15.6731L17.5067 15.5387L18.2868 15.6731L17.9248 15.8236L17.2571 15.8343L16.7578 15.6731Z" fill="#9D9D9D" stroke="black" stroke-width="0.03"/>
<path d="M17.5123 14.4625C17.3814 14.508 17.2364 14.3985 17.0004 14.5772C17.0004 14.5772 16.5889 14.4012 16.5576 14.8081C16.5564 14.8245 16.6228 14.9237 16.632 14.9167C16.6837 14.877 16.6075 14.9552 16.6075 14.9665C16.6075 14.9779 16.615 14.9842 16.6176 14.9893C16.6201 14.9943 16.6264 15.0019 16.6277 15.0234C16.629 15.0449 16.5811 15.1036 16.6013 15.125C16.6215 15.1465 16.6228 15.2085 16.6228 15.2262C16.6228 15.2439 16.6354 15.2932 16.6443 15.3034C16.6531 15.3134 16.6683 15.3387 16.6683 15.3602C16.6683 15.3817 16.6771 15.4411 16.6733 15.4563C16.6695 15.4714 16.696 15.4904 16.7201 15.498C16.7441 15.5056 17.054 15.511 17.4889 15.5034C17.9239 15.4958 18.069 15.5646 18.2487 15.4992C18.2765 15.4892 18.2816 15.4664 18.2791 15.4537C18.2765 15.4411 18.2791 15.4007 18.2867 15.3906C18.2942 15.3805 18.3448 15.2995 18.3347 15.2844C18.3442 15.2758 18.4151 15.3253 18.37 15.2811C18.3584 15.2697 18.3765 15.1502 18.3827 15.125C18.389 15.0998 18.3986 15.0525 18.4102 15.0437C18.4219 15.0349 18.3905 15.002 18.3927 14.996C18.395 14.99 18.4034 14.9715 18.4152 14.963C18.4152 14.963 18.4371 14.8602 18.4236 14.8097C18.4102 14.7591 18.3608 14.5317 18.0523 14.5772C18.0523 14.5772 17.6393 14.4184 17.5123 14.4625Z" fill="#CC0000" stroke="black" stroke-width="0.03"/>
<path d="M16.9851 14.7256C16.9649 14.7328 16.9445 14.9066 16.962 14.9626C16.9741 15.0015 16.9887 15.0277 16.9971 15.0438C16.9796 15.017 16.9402 14.9655 16.8957 14.9695C16.8396 14.9746 16.8545 15.1548 16.8573 15.1663C16.8573 15.1663 16.8573 15.1664 16.8573 15.1665C16.8573 15.1665 16.8575 15.1666 16.8575 15.1666C16.8575 15.1666 16.8576 15.1666 16.8576 15.1666C16.8596 15.1621 16.8731 15.0858 16.9285 15.0809C16.965 15.0776 16.9987 15.1172 17.0113 15.1342C17.012 15.1399 17.0128 15.1454 17.0135 15.1509C17.0074 15.1686 17.0071 15.2093 16.9879 15.2622C16.9648 15.3261 16.8717 15.3408 16.856 15.3428C16.8599 15.3424 17.0099 15.329 17.0591 15.3246C17.0593 15.3245 17.0595 15.3245 17.0597 15.3245C17.0598 15.3245 17.0599 15.3245 17.06 15.3245C17.0602 15.3245 17.0604 15.3244 17.0606 15.3244C17.1099 15.32 17.2598 15.3066 17.2638 15.3062C17.2479 15.307 17.1514 15.3093 17.1133 15.2509C17.0817 15.2026 17.0733 15.1627 17.063 15.1465C17.0623 15.1409 17.0617 15.1355 17.061 15.1298C17.0693 15.1109 17.0925 15.0661 17.129 15.0629C17.1844 15.0579 17.2162 15.1301 17.2193 15.1342C17.2193 15.1342 17.2194 15.1341 17.2194 15.1341C17.2194 15.1341 17.2195 15.134 17.2195 15.134C17.2195 15.1339 17.2195 15.1338 17.2195 15.1338C17.2194 15.1221 17.1901 14.9431 17.134 14.9481C17.0895 14.9521 17.0634 15.0095 17.0529 15.0388C17.0572 15.0215 17.0642 14.9858 17.0661 14.9533C17.0696 14.8944 17.007 14.7237 16.9861 14.7255C16.9858 14.7255 16.9854 14.7255 16.9851 14.7256ZM16.9977 15.0449C16.9995 15.0477 17.0011 15.0501 17.0024 15.0522C17.0024 15.0523 17.0068 15.0699 17.0068 15.0699C17.0069 15.0703 17.0251 15.1301 17.0252 15.1304C17.0238 15.1282 16.9996 15.0484 16.9977 15.0449ZM17.0526 15.04C17.0516 15.0437 17.0465 15.1262 17.0457 15.1286C17.0456 15.1282 17.0499 15.0486 17.0498 15.0482C17.0498 15.0481 17.0502 15.0661 17.0502 15.066C17.0509 15.0637 17.0515 15.043 17.0526 15.04Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.0033 15.1338C17.0033 15.1338 17.0184 15.1212 17.0348 15.1197C17.0512 15.1183 17.0689 15.1279 17.0689 15.1279L17.0726 15.1576C17.0726 15.1576 17.0548 15.148 17.0384 15.1494C17.022 15.1509 17.007 15.1635 17.007 15.1635L17.0033 15.1338Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M16.6121 15.0235L16.6921 14.926C16.6921 14.926 16.6995 14.9356 16.6921 14.926C16.5282 14.7141 16.5199 14.5925 16.5383 14.5309C16.5568 14.4693 16.5937 14.4026 16.6921 14.3205C16.7905 14.2385 16.8584 14.2841 16.9507 14.2841C17.0429 14.2841 17.0675 14.3046 17.1475 14.3149C17.2275 14.3251 17.4427 14.3354 17.4427 14.3354V14.2789C17.4427 14.2789 17.4512 14.2805 17.4427 14.2789C17.3477 14.2612 17.2275 14.2789 17.1475 14.2584C17.0675 14.2379 16.9999 14.2328 16.9138 14.2328C16.8277 14.2328 16.7659 14.2077 16.7105 14.2436C16.6552 14.2795 16.5875 14.3411 16.5383 14.3924C16.4891 14.4437 16.4645 14.5463 16.4707 14.613C16.4768 14.6797 16.5014 14.7361 16.5383 14.7874C16.5752 14.8388 16.5691 14.8798 16.5814 14.9157C16.5937 14.9516 16.6121 15.0286 16.6121 15.0235Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M18.3861 15.0235L18.3062 14.926C18.3062 14.926 18.2987 14.9356 18.3062 14.926C18.4701 14.7141 18.4784 14.5925 18.4599 14.5309C18.4415 14.4693 18.4046 14.4026 18.3062 14.3205C18.2078 14.2385 18.1399 14.2841 18.0476 14.2841C17.9553 14.2841 17.9307 14.3046 17.8508 14.3149C17.7708 14.3251 17.5555 14.3354 17.5555 14.3354V14.2789C17.5555 14.2789 17.547 14.2805 17.5555 14.2789C17.6506 14.2612 17.7708 14.2789 17.8508 14.2584C17.9307 14.2379 17.9984 14.2328 18.0845 14.2328C18.1706 14.2328 18.2324 14.2077 18.2877 14.2436C18.3431 14.2795 18.4107 14.3411 18.4599 14.3924C18.5092 14.4437 18.5338 14.5463 18.5276 14.613C18.5215 14.6797 18.4969 14.7361 18.4599 14.7874C18.423 14.8388 18.4292 14.8798 18.4169 14.9157C18.4046 14.9516 18.3861 15.0286 18.3861 15.0235Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.6504 14.2321H17.3652V14.8171H17.6504V14.2321Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.3995 13.7164C17.3995 13.7164 17.4302 13.7414 17.4538 13.7736C17.4773 13.8057 17.4937 13.8449 17.4937 13.8449C17.4937 13.8449 17.4545 13.8285 17.4224 13.805C17.3902 13.7814 17.3652 13.7507 17.3652 13.7507V13.9677C17.3652 13.9677 17.3902 13.937 17.4224 13.9135C17.4545 13.8899 17.4937 13.8735 17.4937 13.8735C17.4937 13.8735 17.4811 13.9059 17.4729 13.9449C17.4656 13.98 17.4054 14.061 17.4054 14.061L17.5812 14.0727C17.5812 14.0727 17.552 13.98 17.5402 13.9449C17.5275 13.9071 17.5223 13.8735 17.5223 13.8735C17.5223 13.8735 17.5616 13.8899 17.5937 13.9135C17.6258 13.937 17.6508 13.9677 17.6508 13.9677V13.7507C17.6508 13.7507 17.6258 13.7814 17.5937 13.805C17.5616 13.8285 17.5223 13.8449 17.5223 13.8449C17.5223 13.8449 17.5387 13.8057 17.5623 13.7736C17.5858 13.7414 17.6165 13.7164 17.6165 13.7164H17.3995Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.6491 14.104C17.6491 14.1415 17.6342 14.1775 17.6077 14.204C17.5812 14.2305 17.5452 14.2454 17.5077 14.2454C17.4702 14.2454 17.4342 14.2305 17.4076 14.204C17.3811 14.1775 17.3662 14.1415 17.3662 14.104C17.3662 14.0665 17.3811 14.0305 17.4076 14.004C17.4342 13.9774 17.4702 13.9625 17.5077 13.9625C17.5452 13.9625 17.5812 13.9774 17.6077 14.004C17.6342 14.0305 17.6491 14.0665 17.6491 14.104Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.3698 14.1228H17.6512C17.6512 14.1228 17.6552 14.0684 17.6349 14.048C17.6152 14.048 17.5475 14.048 17.5475 14.048L17.546 13.9664H17.5134H17.4631L17.4616 14.048C17.4616 14.048 17.4028 14.051 17.3757 14.051C17.3634 14.0843 17.3653 14.0871 17.3653 14.0871L17.3698 14.1228Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M17.3267 14.7985C17.3267 14.7985 17.378 14.8402 17.4173 14.8938C17.4567 14.9475 17.4841 15.013 17.4841 15.013C17.4841 15.013 17.4185 14.9856 17.3649 14.9463C17.3113 14.9069 17.2695 14.8557 17.2695 14.8557V15.2181C17.2695 15.2181 17.3113 15.1668 17.3649 15.1275C17.4185 15.0881 17.4841 15.0607 17.4841 15.0607C17.4841 15.0607 17.4567 15.1263 17.4173 15.1799C17.378 15.2336 17.3267 15.2753 17.3267 15.2753H17.6891C17.6891 15.2753 17.6379 15.2336 17.5985 15.1799C17.5592 15.1263 17.5318 15.0607 17.5318 15.0607C17.5318 15.0607 17.5974 15.0881 17.651 15.1275C17.7046 15.1668 17.7464 15.2181 17.7464 15.2181V14.8557C17.7464 14.8557 17.7046 14.9069 17.651 14.9463C17.5974 14.9856 17.5318 15.013 17.5318 15.013C17.5318 15.013 17.5592 14.9475 17.5985 14.8938C17.6379 14.8402 17.6891 14.7985 17.6891 14.7985H17.3267Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M16.6365 15.4128L16.815 15.3813C16.815 15.3813 16.7572 15.3491 16.7092 15.3031C16.6611 15.2572 16.6227 15.1973 16.6227 15.1973C16.6227 15.1973 16.6921 15.213 16.7517 15.2424C16.8114 15.2718 16.8614 15.315 16.8614 15.315L16.7984 14.9582C16.7984 14.9582 16.7663 15.0159 16.7203 15.0639C16.6743 15.112 16.6145 15.1504 16.6145 15.1504C16.6145 15.1504 16.6301 15.0811 16.6595 15.0214C16.6889 14.9617 16.7322 14.9117 16.7322 14.9117L16.5537 14.9432L16.6365 15.4128Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M18.2835 14.9117C18.2835 14.9117 18.3268 14.9617 18.3562 15.0214C18.3856 15.0811 18.4012 15.1504 18.4012 15.1504C18.4012 15.1504 18.3414 15.112 18.2954 15.0639C18.2494 15.0159 18.2172 14.9582 18.2172 14.9582L18.1543 15.315C18.1543 15.315 18.2043 15.2718 18.2639 15.2424C18.3236 15.213 18.3929 15.1973 18.3929 15.1973C18.3929 15.1973 18.3546 15.2572 18.3065 15.3031C18.2584 15.3491 18.2007 15.3813 18.2007 15.3813L18.3792 15.4128L18.462 14.9432L18.2835 14.9117Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M16.6387 15.3956L16.6399 15.6556C16.6399 15.6556 17.0744 15.5077 17.5088 15.5077C17.9432 15.5077 18.3777 15.6556 18.3777 15.6556V15.3956C18.3777 15.3956 17.9429 15.2477 17.5082 15.2477C17.0734 15.2477 16.6387 15.3956 16.6387 15.3956Z" fill="#F7D917" stroke="black" stroke-width="0.03"/>
<path d="M16.5981 14.8848C16.5982 14.8935 16.5965 14.9022 16.5932 14.9103C16.59 14.9184 16.5851 14.9258 16.5789 14.932C16.5728 14.9382 16.5655 14.9431 16.5574 14.9464C16.5493 14.9498 16.5407 14.9515 16.532 14.9515C16.5232 14.9515 16.5146 14.9498 16.5065 14.9464C16.4984 14.9431 16.4911 14.9382 16.485 14.932C16.4788 14.9258 16.474 14.9184 16.4707 14.9103C16.4674 14.9022 16.4657 14.8935 16.4658 14.8848C16.4657 14.8761 16.4674 14.8674 16.4707 14.8593C16.474 14.8512 16.4788 14.8438 16.485 14.8376C16.4911 14.8314 16.4984 14.8265 16.5065 14.8231C16.5146 14.8198 16.5232 14.8181 16.532 14.8181C16.5407 14.8181 16.5493 14.8198 16.5574 14.8231C16.5655 14.8265 16.5728 14.8314 16.5789 14.8376C16.5851 14.8438 16.59 14.8512 16.5932 14.8593C16.5965 14.8674 16.5982 14.8761 16.5981 14.8848Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M17.5928 15.0206C17.5928 15.0433 17.5838 15.0651 17.5678 15.0811C17.5517 15.0971 17.53 15.1061 17.5073 15.1061C17.4847 15.1061 17.4629 15.0971 17.4469 15.0811C17.4309 15.0651 17.4219 15.0433 17.4219 15.0206C17.4219 14.998 17.4309 14.9762 17.4469 14.9602C17.4629 14.9442 17.4847 14.9352 17.5073 14.9352C17.53 14.9352 17.5517 14.9442 17.5678 14.9602C17.5838 14.9762 17.5928 14.998 17.5928 15.0206Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M17.648 15.3102H17.3838V15.4253H17.648V15.3102Z" fill="#002B7F" stroke="black" stroke-width="0.03"/>
<path d="M17.8046 15.3972C17.805 15.4137 17.8178 15.4309 17.8404 15.4448C17.8629 15.4587 17.8932 15.4683 17.9246 15.4715C17.9561 15.4747 17.986 15.4712 18.008 15.4618C18.0299 15.4524 18.042 15.4378 18.0416 15.4213C18.0412 15.4048 18.0283 15.3877 18.0058 15.3737C17.9833 15.3598 17.953 15.3502 17.9215 15.347C17.8901 15.3438 17.8601 15.3473 17.8382 15.3567C17.8162 15.3661 17.8041 15.3807 17.8046 15.3972Z" fill="#3E8225" stroke="black" stroke-width="0.03"/>
<path d="M16.6404 15.456L16.5742 15.5222L16.651 15.5665L16.8295 15.5187L16.7977 15.4176L16.6404 15.456Z" fill="#CC0000" stroke="black" stroke-width="0.03"/>
<path d="M18.3913 15.456L18.4575 15.5222L18.3807 15.5665L18.2021 15.5187L18.234 15.4176L18.3913 15.456Z" fill="#CC0000" stroke="black" stroke-width="0.03"/>
<path d="M17.2267 15.3972C17.2263 15.4137 17.2134 15.4309 17.1909 15.4448C17.1684 15.4587 17.1381 15.4683 17.1066 15.4715C17.0752 15.4747 17.0452 15.4712 17.0233 15.4618C17.0013 15.4524 16.9893 15.4378 16.9897 15.4213C16.9901 15.4048 17.003 15.3877 17.0255 15.3737C17.048 15.3598 17.0783 15.3502 17.1097 15.347C17.1412 15.3438 17.1711 15.3473 17.1931 15.3567C17.215 15.3661 17.2271 15.3807 17.2267 15.3972Z" fill="#3E8225" stroke="black" stroke-width="0.03"/>
<path d="M17.3267 15.3193C17.3267 15.3279 17.3233 15.3361 17.3172 15.3422C17.3111 15.3483 17.3029 15.3518 17.2942 15.3518C17.2856 15.3518 17.2773 15.3483 17.2712 15.3422C17.2651 15.3361 17.2617 15.3279 17.2617 15.3193C17.2617 15.3106 17.2651 15.3024 17.2712 15.2963C17.2773 15.2902 17.2856 15.2867 17.2942 15.2867C17.3029 15.2867 17.3111 15.2902 17.3172 15.2963C17.3233 15.3024 17.3267 15.3106 17.3267 15.3193Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M18.1726 15.8472C18.1974 15.8429 18.3472 15.8073 18.3788 15.7883C18.3584 15.7516 18.3219 15.7229 18.3503 15.7349C18.3656 15.7414 18.3777 15.6908 18.3333 15.6522C18.2043 15.6945 17.8949 15.7718 17.5062 15.7718C17.1084 15.7718 16.7951 15.6904 16.6661 15.6481C16.6217 15.6868 16.6355 15.7307 16.6329 15.7471C16.6328 15.7472 16.6329 15.7678 16.641 15.7842C16.6847 15.8317 16.8264 15.8551 16.8512 15.8594C16.9679 15.8797 17.0846 15.9103 17.5059 15.9103C17.8957 15.9103 18.0559 15.8675 18.1726 15.8472Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M16.838 15.5796C16.8132 15.5839 16.6552 15.6399 16.6237 15.6589C16.6237 15.659 16.6237 15.6593 16.6237 15.6594C16.6264 15.6758 16.5963 15.7523 16.6407 15.7909C16.7697 15.7486 17.1319 15.6225 17.5207 15.6225C17.9185 15.6225 18.248 15.7486 18.377 15.7909C18.4214 15.7523 18.3913 15.6758 18.394 15.6594C18.394 15.6593 18.394 15.659 18.394 15.6589C18.3625 15.6399 18.2045 15.5839 18.1797 15.5796C18.063 15.5594 17.9423 15.484 17.5209 15.484C17.1311 15.484 16.9547 15.5594 16.838 15.5796Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M16.7247 15.6754C16.7249 15.6767 16.7249 15.678 16.7245 15.6793C16.7241 15.6806 16.7235 15.6817 16.7226 15.6828C16.7217 15.6838 16.7206 15.6847 16.7194 15.6853C16.7181 15.686 16.7167 15.6864 16.7153 15.6865C16.7139 15.6867 16.7124 15.6865 16.7111 15.6862C16.7097 15.6858 16.7084 15.6852 16.7073 15.6844C16.7062 15.6835 16.7053 15.6825 16.7046 15.6813C16.7039 15.6802 16.7035 15.6789 16.7034 15.6776C16.7032 15.6763 16.7033 15.675 16.7037 15.6737C16.704 15.6725 16.7047 15.6713 16.7056 15.6702C16.7064 15.6692 16.7075 15.6683 16.7088 15.6677C16.71 15.6671 16.7114 15.6666 16.7128 15.6665C16.7143 15.6663 16.7157 15.6665 16.7171 15.6668C16.7184 15.6672 16.7197 15.6678 16.7208 15.6687C16.7219 15.6695 16.7229 15.6705 16.7235 15.6717C16.7242 15.6728 16.7246 15.6741 16.7247 15.6754Z" fill="black" stroke="black" stroke-width="0.03"/>
<path d="M16.716 15.6988L16.8093 15.6556L16.7646 15.6855L16.7952 15.6815L16.7682 15.6967L16.8143 15.6948L16.716 15.6988Z" fill="black" stroke="black" stroke-width="0.03"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<defs>
<clipPath id="clip0_14099_114067">
<rect width="9" height="4.5" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,92 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V14H20V6Z" fill="#00247D"/>
<path d="M4 6L12 10.5L4 6ZM12 6L4 10.5L12 6Z" fill="black"/>
<path d="M4 6L12 10.5M12 6L4 10.5" stroke="white" stroke-width="1.4"/>
<path d="M4 6L12 10.5L4 6ZM12 6L4 10.5L12 6Z" fill="black"/>
<path d="M4 6L12 10.5M12 6L4 10.5" stroke="#CF142B"/>
<path d="M8 6V11V6ZM4 8.14286H12H4Z" fill="black"/>
<path d="M8 6V11M4 8.14286H12" stroke="white" stroke-width="1.5"/>
<path d="M8 6.00079V11.0008V6.00079ZM4 8.20001H8.44444L12 8.23359" fill="black"/>
<path d="M8 6.00079V11.0008M4 8.20001H8.44444L12 8.23359" stroke="#CF142B" stroke-width="0.7"/>
<path d="M4 12H12V6H20V18H4V12Z" fill="#00247D"/>
<path d="M14.4136 10.9225L17.7523 10.9102L17.7461 13.8834C17.7461 13.8834 17.8638 14.3356 16.3462 15.0231C16.8913 14.9674 17.486 14.3851 17.486 14.3851C17.486 14.3851 17.7276 14.0754 17.8452 14.2488C17.9629 14.4223 18.0744 14.509 18.1611 14.5771C18.2479 14.6453 18.316 14.8311 18.1859 14.9674C18.0558 15.1036 17.8514 15.1222 17.7957 14.955C17.709 14.9983 17.1763 15.6425 16.0861 15.6735C14.9773 15.6549 14.3703 14.9488 14.3703 14.9488C14.3703 14.9488 14.2216 15.1842 14.011 14.9983C13.8066 14.7568 13.9615 14.6019 13.9615 14.6019C13.9615 14.6019 14.1349 14.5028 14.1845 14.4347C14.265 14.3418 14.2898 14.2179 14.426 14.2179C14.5871 14.2303 14.649 14.3603 14.649 14.3603C14.649 14.3603 15.2065 14.9488 15.8073 15.0231C14.4509 14.3727 14.4013 13.9701 14.4075 13.8709L14.4137 10.9225L14.4136 10.9225Z" fill="white"/>
<path d="M14.4938 11.0046L17.6777 10.986V13.8478C17.6839 14.2194 17.0582 14.5973 16.0796 15.0804C15.0699 14.5601 14.4876 14.2442 14.4814 13.8416L14.4938 11.0046L14.4938 11.0046Z" fill="#006129" stroke="black" stroke-width="0.05"/>
<path d="M14.9268 11.4273L15.1147 11.1512L15.3035 11.4278" stroke="#F7C600" stroke-width="0.05"/>
<path d="M15.1528 11.3225C15.1528 11.3431 15.1361 11.3598 15.1154 11.3598C15.0948 11.3598 15.0781 11.3431 15.0781 11.3225C15.0781 11.3019 15.0948 11.2852 15.1154 11.2852C15.1361 11.2852 15.1528 11.3019 15.1528 11.3225Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M14.9625 11.6315L15.2538 11.6324C15.2538 11.6324 15.2584 11.5946 15.2234 11.5716C15.376 11.5506 15.3363 11.416 15.4642 11.4084C15.489 11.4122 15.3974 11.4656 15.3974 11.4656C15.3974 11.4656 15.3203 11.52 15.3554 11.5476C15.3833 11.5696 15.3955 11.5343 15.3993 11.5076C15.4031 11.4808 15.5233 11.4637 15.5061 11.3874C15.4775 11.3244 15.3096 11.4293 15.3096 11.4293L15.1899 11.4287C15.1824 11.4152 15.1494 11.3613 15.1153 11.3611C15.0749 11.3626 15.0464 11.4293 15.0464 11.4293H14.8728H14.7755C14.7755 11.4293 14.7662 11.4988 14.9036 11.5122C14.9345 11.5526 14.9585 11.5639 14.9854 11.5743C14.9674 11.5893 14.9624 11.6073 14.9625 11.6315V11.6315Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M14.9834 11.5717L15.2261 11.5709L14.9834 11.5717Z" fill="#F7C600"/>
<path d="M14.9834 11.5717L15.2261 11.5709" stroke="black" stroke-width="0.05"/>
<path d="M14.8721 11.428C14.8721 11.428 14.8915 11.5415 14.9811 11.5684L14.8721 11.428Z" fill="#F7C600"/>
<path d="M14.8721 11.428C14.8721 11.428 14.8915 11.5415 14.9811 11.5684" stroke="black" stroke-width="0.05"/>
<path d="M14.857 11.4275C14.8659 11.3842 14.8823 11.3768 14.9003 11.3215C14.9033 11.2677 14.857 11.2737 14.8704 11.2394C14.8943 11.202 14.8823 11.1662 14.8375 11.1378C14.8465 11.1871 14.7793 11.2334 14.7793 11.2737C14.7793 11.314 14.8136 11.3051 14.8092 11.3663C14.8122 11.4022 14.8002 11.3932 14.7972 11.4275H14.857V11.4275Z" fill="url(#paint0_linear_14099_114166)" stroke="black" stroke-width="0.05"/>
<path d="M15.1497 11.1588C15.1497 11.1778 15.1344 11.1931 15.1154 11.1931C15.0964 11.1931 15.081 11.1778 15.0811 11.1588C15.081 11.1398 15.0964 11.1245 15.1154 11.1245C15.1344 11.1245 15.1497 11.1398 15.1497 11.1588Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M16.275 14.4199C16.275 14.4199 16.351 14.5952 16.4376 14.4874C16.5242 14.3797 16.4925 14.3333 16.4925 14.3333L16.2982 14.2277L16.2412 14.348L16.275 14.4199V14.4199Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M16.4418 14.3958C16.4418 14.3958 16.4545 14.3979 16.4651 14.3789C16.4756 14.3599 16.4418 14.3514 16.4271 14.3303L16.4102 14.3641L16.4418 14.3958Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M16.003 14.3519L15.8319 14.4448C15.8319 14.4448 15.7475 14.4617 15.7411 14.4448C15.7348 14.4279 15.7432 14.4131 15.7876 14.411C15.8319 14.4089 15.9523 14.2991 15.9523 14.2991L16.003 14.3519H16.003Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M16.0047 11.3124C16.0047 11.3124 16.0089 11.3525 16.011 11.3736C16.0131 11.3947 15.9772 11.4391 15.9751 11.437C15.973 11.4349 15.9561 11.4391 15.9582 11.4518C15.9603 11.4644 15.9856 11.4687 15.9856 11.4687C15.9856 11.4687 15.9751 11.513 15.9856 11.5151C15.9962 11.5172 15.9582 11.5722 15.9856 11.5869C16.0131 11.6017 16.0596 11.6207 16.0807 11.6165C16.1018 11.6123 16.0807 11.6989 16.0807 11.6989L16.0216 11.8256L16.3468 11.7918L16.2792 11.6841C16.2792 11.6841 16.2475 11.663 16.256 11.6017C16.2644 11.5405 16.2518 11.2638 16.2518 11.2638L16.0194 11.2321L16.0047 11.3124V11.3124Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M15.9456 11.7946C15.9456 11.7946 15.84 11.8432 15.8443 11.9741C15.8168 12.1009 15.802 12.2276 15.802 12.2276C15.802 12.2276 15.6774 12.3691 15.6394 12.4198C15.6014 12.4705 15.5444 12.5739 15.5232 12.6014C15.5021 12.6289 15.4197 12.7197 15.4219 12.7535C15.424 12.7873 15.4028 12.9372 15.4852 12.9541C15.5063 12.9626 15.5739 12.7809 15.5739 12.7809C15.5739 12.7809 15.5781 12.7028 15.5549 12.688C15.5317 12.6732 15.6056 12.6225 15.6056 12.6225C15.6056 12.6225 15.7471 12.519 15.7788 12.4937C15.8105 12.4683 15.8971 12.3712 15.8971 12.3712L15.9456 11.7946V11.7946Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M16.0658 11.6917C16.0658 11.6917 16.0933 11.7656 16.1545 11.753C16.2158 11.7403 16.2876 11.6833 16.2876 11.6833C16.2876 11.6833 16.3446 11.6812 16.353 11.6896C16.3615 11.6981 16.5072 11.8396 16.503 11.8839C16.4988 11.9283 16.4354 11.9156 16.4122 11.9452C16.3889 11.9747 16.3509 12.0487 16.3615 12.1036C16.372 12.1585 16.4037 12.2303 16.3995 12.2577C16.3953 12.2852 16.372 12.2936 16.372 12.3084C16.372 12.3232 16.3911 12.3486 16.3911 12.376C16.3911 12.4035 16.3657 12.4436 16.3699 12.4711C16.3742 12.4985 16.3763 12.5788 16.3763 12.5788L16.3699 12.9505C16.3699 12.9505 16.3911 12.9632 16.3932 12.9843C16.3953 13.0054 16.5368 13.62 16.5368 13.62C16.5368 13.62 16.5304 13.639 16.5157 13.6369C16.5009 13.6348 16.5727 13.7319 16.5748 13.7594C16.5769 13.7868 16.6487 14.0023 16.6466 14.0318C16.6445 14.0614 16.6339 14.1269 16.6276 14.129C16.6213 14.1311 16.6741 14.2642 16.6656 14.2853C16.6572 14.3064 16.5706 14.3043 16.5706 14.3043L16.5473 14.3001C16.5473 14.3001 16.5495 14.3275 16.5326 14.3296C16.5157 14.3317 16.3911 14.3233 16.3911 14.3233C16.3911 14.3233 16.3551 14.3782 16.334 14.3761C16.3129 14.374 16.2855 14.336 16.2791 14.3423C16.2728 14.3486 16.2981 14.3845 16.2918 14.3951C16.2855 14.4057 16.1777 14.4289 16.1566 14.3782C16.1355 14.3275 16.1693 14.3402 16.163 14.3296C16.1566 14.3191 16.108 14.2916 16.0933 14.3001C16.0785 14.3085 16.1313 14.3212 16.1292 14.3423C16.1271 14.3634 16.0827 14.3951 16.0658 14.3951C16.0489 14.3951 16.0088 14.3169 15.9496 14.3254C15.8905 14.3338 15.8525 14.3486 15.8525 14.3486C15.8525 14.3486 15.7828 14.3782 15.7532 14.3719C15.7237 14.3655 15.711 14.3423 15.711 14.3296C15.711 14.3169 15.7321 14.262 15.73 14.2451C15.7279 14.2282 15.711 14.2113 15.711 14.186C15.711 14.1607 15.7596 14.0741 15.7596 14.0741L15.7574 13.6855C15.7574 13.6855 15.7131 13.6855 15.711 13.658C15.7089 13.6305 15.7786 13.0434 15.7891 13.0054C15.7997 12.9674 15.8271 12.8322 15.8271 12.8322C15.8271 12.8322 15.7955 12.847 15.7934 12.8322C15.7912 12.8174 15.8884 12.4816 15.8884 12.4816C15.8884 12.4816 15.9053 12.3148 15.9053 12.2704C15.9053 12.2261 15.8968 12.1648 15.8968 12.1648C15.8968 12.1648 15.8101 12.1281 15.8081 12.0719C15.8002 11.9824 15.8905 11.9325 15.9011 11.9029C15.9116 11.8734 15.9433 11.7847 15.9433 11.7847C15.9433 11.7847 15.9898 11.7044 16.0658 11.6917L16.0658 11.6917Z" fill="white" stroke="black" stroke-width="0.05"/>
<path d="M16.0339 14.3775C16.0339 14.3775 15.829 14.4853 15.7995 14.4937C15.7699 14.5021 15.7509 14.4578 15.7805 14.4493C15.81 14.4409 15.8565 14.4367 15.8565 14.4367C15.8565 14.4367 15.7868 14.3818 15.7889 14.3797C15.791 14.3775 15.8839 14.3438 15.8861 14.3438C15.8882 14.3438 15.9156 14.3987 15.9346 14.3944C15.9536 14.3902 16.0085 14.348 16.0085 14.348C16.0085 14.348 16.0381 14.3818 16.0339 14.3775Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M16.3232 14.4357C16.3426 14.4606 16.3502 14.504 16.3945 14.4786C16.4389 14.4533 16.3718 14.4062 16.3718 14.4062L16.3232 14.4357Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M16.4043 14.4318C16.4043 14.4318 16.4254 14.4487 16.4444 14.4297C16.4634 14.4107 16.4064 14.3705 16.4064 14.3705L16.3789 14.4022L16.4043 14.4318Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M16.4951 11.8973C16.4972 11.8973 16.5648 12.1064 16.5732 12.1592C16.5817 12.212 16.6091 12.4232 16.5986 12.4528C16.588 12.4824 16.4803 12.6239 16.4676 12.6598C16.455 12.6957 16.3789 12.833 16.3789 12.833C16.3789 12.833 16.3599 12.9681 16.3515 12.9745C16.343 12.9808 16.3733 13.014 16.3705 13.0252C16.3663 13.0377 16.3092 13.097 16.2839 13.0906C16.2586 13.0843 16.2184 13.0547 16.2163 13.0273C16.2142 12.9998 16.2184 12.909 16.2374 12.8858C16.2564 12.8625 16.3557 12.6281 16.362 12.6133C16.3684 12.5985 16.4529 12.4148 16.455 12.3831C16.4571 12.3514 16.4287 12.2782 16.3988 12.2513C16.3323 12.0556 16.3585 11.9377 16.4951 11.8973V11.8973Z" fill="#FFC6B5" stroke="black" stroke-width="0.05"/>
<path d="M15.9985 11.2989C15.9985 11.2989 16.045 11.3053 16.0703 11.2905C16.0957 11.2757 16.1252 11.2694 16.1464 11.2989C16.1675 11.3285 16.1823 11.3264 16.1823 11.3264C16.1823 11.3264 16.1506 11.4045 16.1823 11.413C16.2139 11.4214 16.2287 11.4214 16.2308 11.432C16.233 11.4426 16.2034 11.4658 16.2118 11.4764C16.2203 11.4869 16.2351 11.4996 16.2372 11.508C16.2393 11.5165 16.2182 11.5524 16.2245 11.5608C16.2308 11.5693 16.2499 11.6031 16.2625 11.6031C16.2752 11.6031 16.2667 11.6559 16.3048 11.6432C16.3428 11.6305 16.3407 11.5967 16.3407 11.5967C16.3407 11.5967 16.3808 11.5904 16.3914 11.5545C16.4019 11.5186 16.4273 11.5101 16.4273 11.5101C16.4273 11.5101 16.4779 11.4827 16.4104 11.4405C16.4104 11.1448 16.2161 11.1764 16.2161 11.1764C16.2161 11.1764 16.1928 11.1236 16.1548 11.13C16.1168 11.1363 16.1147 11.1807 16.0872 11.1764C16.0598 11.1722 16.0534 11.1532 16.0513 11.1553C16.0492 11.1574 16.026 11.1997 16.026 11.2102C16.026 11.2208 15.9521 11.1955 15.9584 11.2504C15.9647 11.3053 16.0006 11.3032 15.9985 11.2989L15.9985 11.2989Z" fill="#9C5100" stroke="black" stroke-width="0.05"/>
<path d="M16.3401 11.7779C16.3401 11.7779 16.1521 11.8983 16.1563 11.9405" stroke="black" stroke-width="0.05"/>
<path d="M16.3822 11.8002C16.3822 11.8002 16.34 11.8466 16.3379 11.8466" stroke="black" stroke-width="0.05"/>
<path d="M16.4391 11.8493C16.4391 11.8493 16.3462 11.9253 16.361 11.9739" stroke="black" stroke-width="0.05"/>
<path d="M16.0006 11.7689C16.0006 11.7689 15.9731 11.8259 15.9795 11.845C15.9858 11.864 16.0323 11.9358 16.0386 11.9801C16.0449 12.0245 16.0386 12.0562 16.0386 12.0562" stroke="black" stroke-width="0.05"/>
<path d="M15.9521 11.8716C15.9521 11.8716 15.9606 11.9392 15.9733 11.9519C15.9859 11.9646 16.0197 12.0216 16.024 12.0448" stroke="black" stroke-width="0.05"/>
<path d="M15.9346 12.1551C15.9346 12.1551 15.9895 12.1826 16.0402 12.077" stroke="black" stroke-width="0.05"/>
<path d="M16.1229 12.0011C16.1208 12.0011 16.0828 12.1046 16.1504 12.1426C16.2179 12.1806 16.2686 12.1764 16.2982 12.1658C16.3278 12.1553 16.3594 12.1363 16.3594 12.1363" stroke="black" stroke-width="0.05"/>
<path d="M16.0938 12.1306C16.0938 12.1306 16.098 12.2699 16.3028 12.4072" stroke="black" stroke-width="0.05"/>
<path d="M16.1016 12.26C16.1016 12.26 16.0995 12.3825 16.1797 12.4374" stroke="black" stroke-width="0.05"/>
<path d="M16.059 12.1171C16.059 12.1171 15.9978 12.2988 15.9492 12.3178" stroke="black" stroke-width="0.05"/>
<path d="M16.0405 12.2511C16.0405 12.2511 16.0384 12.382 16.0215 12.4285" stroke="black" stroke-width="0.05"/>
<path d="M16.0049 12.4594C16.0049 12.4594 16.0471 12.5122 16.0936 12.508C16.1401 12.5038 16.1591 12.4489 16.1907 12.4573C16.2224 12.4658 16.252 12.4911 16.3259 12.4848" stroke="black" stroke-width="0.05"/>
<path d="M16.2197 12.5368C16.2197 12.5368 16.2197 12.6445 16.2387 12.6551C16.2577 12.6656 16.2493 12.7649 16.2493 12.7649" stroke="black" stroke-width="0.05"/>
<path d="M15.9621 12.4877C15.9621 12.4877 15.96 12.589 15.9473 12.625C15.9347 12.6609 15.9093 12.7221 15.9136 12.7749" stroke="black" stroke-width="0.05"/>
<path d="M15.834 12.8361C15.8445 12.8318 15.8804 12.8002 15.8804 12.8002" stroke="black" stroke-width="0.05"/>
<path d="M15.899 12.8225C15.899 12.8225 15.8082 13.2111 15.8336 13.4434" stroke="black" stroke-width="0.05"/>
<path d="M15.9205 12.8404C15.9205 12.8404 15.874 13.1319 15.8952 13.1868" stroke="black" stroke-width="0.05"/>
<path d="M15.8965 12.8314C15.8986 12.8314 16.0739 12.8441 16.0739 12.8441" stroke="black" stroke-width="0.05"/>
<path d="M16.0996 12.8225C16.0996 12.8225 16.1482 12.8479 16.2158 12.8436" stroke="black" stroke-width="0.05"/>
<path d="M16.0787 12.9609C16.0787 12.9609 16.0703 13.4593 16.0576 13.5691" stroke="black" stroke-width="0.05"/>
<path d="M16.3379 13.077C16.3379 13.077 16.3928 13.5142 16.4245 13.5543" stroke="black" stroke-width="0.05"/>
<path d="M16.2324 13.1306C16.2324 13.1306 16.2662 13.5171 16.2852 13.5508" stroke="black" stroke-width="0.05"/>
<path d="M15.7529 13.6849C15.7529 13.6849 15.8184 13.6638 15.8775 13.6004C15.9451 13.6912 16.0486 13.6047 16.0486 13.6047C16.0486 13.6047 16.2091 13.7145 16.2809 13.592C16.3908 13.6638 16.4457 13.5814 16.4457 13.5814C16.4457 13.5814 16.4858 13.6427 16.5154 13.6363" stroke="black" stroke-width="0.05"/>
<path d="M16.3398 13.6796C16.3398 13.6796 16.4222 14.0661 16.5447 14.1759" stroke="black" stroke-width="0.05"/>
<path d="M15.916 13.6395C15.916 13.6395 15.9266 13.9626 15.9456 14.1907" stroke="black" stroke-width="0.05"/>
<path d="M15.9012 14.0056C15.9012 14.0056 15.8906 14.2168 15.8779 14.2315" stroke="black" stroke-width="0.05"/>
<path d="M15.7764 14.253C15.7764 14.253 15.7996 14.3438 15.9158 14.2593C16.0319 14.1748 16.034 14.291 16.0383 14.3037C16.0425 14.3163 16.0615 14.4072 16.1058 14.3311" stroke="black" stroke-width="0.05"/>
<path d="M16.1989 14.2069C16.1989 14.2069 16.1799 14.3949 16.3467 14.2576C16.5136 14.1203 16.541 14.2555 16.5453 14.2977" stroke="black" stroke-width="0.05"/>
<path d="M16.201 11.2288C16.201 11.2288 16.1862 11.3217 16.2855 11.3132C16.2728 11.3639 16.3108 11.3808 16.3108 11.3808" stroke="black" stroke-width="0.05"/>
<path d="M16.3849 11.4386C16.387 11.4386 16.4293 11.4661 16.3828 11.4998" stroke="black" stroke-width="0.05"/>
<path d="M16.2412 11.51C16.2412 11.51 16.2623 11.5354 16.2856 11.529C16.3088 11.5227 16.3468 11.5523 16.3468 11.5523C16.3468 11.5523 16.3785 11.5628 16.3827 11.5565" stroke="black" stroke-width="0.05"/>
<path d="M16.1123 11.5921C16.1123 11.5921 16.1841 11.6196 16.2306 11.5056" stroke="black" stroke-width="0.05"/>
<path d="M15.9795 11.4698L16.0217 11.472" stroke="black" stroke-width="0.05"/>
<path d="M15.5107 12.8046L15.514 12.8972" stroke="black" stroke-width="0.05"/>
<path d="M15.4238 12.7957C15.4238 12.7957 15.4832 12.895 15.4782 12.9478" stroke="black" stroke-width="0.05"/>
<path d="M15.9854 11.5145H16.0234L15.9896 11.5292" stroke="black" stroke-width="0.05" stroke-linejoin="round"/>
<path d="M16.2188 13.0036C16.2188 13.0036 16.2631 12.9989 16.2617 13.073C16.2901 12.9809 16.3477 12.9788 16.3477 12.9788" stroke="black" stroke-width="0.05" stroke-linejoin="round"/>
<path d="M16.0381 11.3939C16.0444 11.3939 16.0677 11.3855 16.0719 11.3918C16.0761 11.3982 16.0465 11.4024 16.0381 11.3939Z" stroke="black" stroke-width="0.05" stroke-linejoin="round"/>
<path d="M16.0676 15.1179C16.9596 15.0931 17.5356 14.4489 17.5294 14.4427C17.5232 14.4365 17.6471 14.2631 17.7462 14.2878C17.8453 14.3126 17.9878 14.6037 18.1612 14.6657C18.248 14.8019 18.1365 14.9258 18.0993 14.9506C18.0621 14.9754 17.8949 15.0435 17.8701 14.9444C17.8453 14.8453 17.7958 14.8639 17.7958 14.8639C17.7958 14.8639 17.0029 15.6382 16.0862 15.6072C15.1385 15.6134 14.358 14.8639 14.358 14.8639L14.2899 14.9382C14.2899 14.9382 14.2155 15.0187 14.1784 15.0126C14.1412 15.0064 13.9801 14.9011 13.9678 14.7958C13.9554 14.6905 14.0669 14.6223 14.0669 14.6223C14.0669 14.6223 14.3394 14.4117 14.3704 14.3002C14.4323 14.2383 14.55 14.3436 14.55 14.3436C14.55 14.3436 15.2685 15.1674 16.0676 15.1179L16.0676 15.1179Z" fill="#F7C600" stroke="black" stroke-width="0.05"/>
<path d="M14.0488 14.6396C14.0488 14.6396 14.1225 14.6199 14.1496 14.6506C14.1766 14.6813 14.3621 14.8631 14.3621 14.8631" stroke="black" stroke-width="0.05"/>
<path d="M14.2163 14.7227L14.1426 14.7779C14.1426 14.7779 14.3281 14.8148 14.2863 14.9364" stroke="black" stroke-width="0.05"/>
<path d="M18.0944 14.6334C18.0944 14.6334 18.0576 14.6137 17.9998 14.6567C17.9421 14.6997 17.7959 14.8631 17.7959 14.8631" stroke="black" stroke-width="0.05"/>
<path d="M17.9287 14.7182L18.0086 14.7796C18.0086 14.7796 17.8415 14.7907 17.8784 14.9491" stroke="black" stroke-width="0.05"/>
<path d="M14.9924 14.8326C14.9876 14.8467 14.9748 14.8323 14.9642 14.8351C14.9363 14.8361 14.9131 14.8543 14.8892 14.8668C14.8074 14.9145 14.7256 14.9622 14.6437 15.0099C14.6355 15.0071 14.6374 15.0005 14.6395 14.9938C14.6613 14.8916 14.6839 14.7896 14.7051 14.6873C14.7086 14.6694 14.7143 14.6472 14.697 14.6341C14.6897 14.6291 14.7011 14.6189 14.7058 14.6282C14.7476 14.658 14.7894 14.6878 14.8312 14.7177C14.8272 14.7295 14.8201 14.7212 14.8129 14.7164C14.7956 14.6997 14.7746 14.7151 14.7751 14.7362C14.7602 14.8036 14.7457 14.871 14.7309 14.9384C14.7864 14.9054 14.8426 14.8735 14.8977 14.8396C14.9173 14.8309 14.9318 14.8045 14.9114 14.7882C14.9036 14.7837 14.8908 14.7712 14.9036 14.7693C14.9332 14.7904 14.9628 14.8115 14.9924 14.8326V14.8326Z" fill="black"/>
<path d="M15.0809 15.2612C15.0786 15.2689 15.0746 15.2706 15.0686 15.2651C15.0193 15.2381 14.9701 15.2112 14.9209 15.1843C14.9231 15.1767 14.9271 15.175 14.9332 15.1805C14.9465 15.1896 14.9683 15.193 14.978 15.1771C14.9976 15.1458 15.0141 15.1126 15.0322 15.0804C15.0568 15.0348 15.0824 14.9897 15.1063 14.9437C15.1177 14.9275 15.105 14.9074 15.089 14.9004C15.0836 14.8975 15.0756 14.8954 15.0825 14.8889C15.0857 14.8848 15.0927 14.8935 15.0975 14.8945C15.1447 14.9203 15.1919 14.9461 15.2391 14.9719C15.2368 14.9796 15.2329 14.9812 15.2268 14.9758C15.2134 14.9667 15.1915 14.9632 15.1817 14.979C15.1622 15.0104 15.1457 15.0435 15.1276 15.0757C15.103 15.1213 15.0773 15.1664 15.0535 15.2124C15.0421 15.2288 15.0548 15.249 15.071 15.2559C15.0743 15.2576 15.0776 15.2594 15.0809 15.2612Z" fill="black"/>
<path d="M15.6486 15.1273C15.6353 15.1648 15.6219 15.2024 15.6086 15.2399C15.5921 15.2382 15.6031 15.2171 15.5979 15.206C15.5921 15.1554 15.5547 15.1081 15.5038 15.0972C15.4649 15.0866 15.4238 15.1067 15.4009 15.1383C15.3664 15.1855 15.3454 15.243 15.3425 15.3015C15.3405 15.3347 15.3557 15.3687 15.3847 15.3862C15.4077 15.4014 15.4356 15.4075 15.4629 15.4067C15.4725 15.3783 15.484 15.3505 15.4921 15.3216C15.4953 15.3028 15.4759 15.2915 15.4604 15.2872C15.458 15.2817 15.464 15.275 15.4703 15.2809C15.5194 15.2984 15.5684 15.3158 15.6175 15.3333C15.6157 15.3514 15.5953 15.3319 15.5839 15.3391C15.5658 15.346 15.5642 15.3678 15.5574 15.3836C15.5514 15.4004 15.5454 15.4172 15.5394 15.434C15.4735 15.4386 15.4055 15.4247 15.3481 15.3915C15.2923 15.3563 15.2546 15.2884 15.2656 15.2218C15.2741 15.1649 15.3096 15.1115 15.3621 15.0863C15.4104 15.0607 15.4693 15.0608 15.5194 15.0811C15.5468 15.0903 15.5705 15.1073 15.5917 15.1266C15.6045 15.1439 15.6294 15.1439 15.6399 15.1242C15.6428 15.1253 15.6457 15.1263 15.6486 15.1273" fill="black"/>
<path d="M15.8885 15.5083C15.8883 15.5143 15.8876 15.5197 15.8804 15.5164C15.8242 15.5079 15.7681 15.4994 15.7119 15.4909C15.7122 15.4849 15.7129 15.4794 15.72 15.4827C15.7347 15.4857 15.7542 15.4855 15.7613 15.4697C15.7684 15.4472 15.7698 15.4234 15.7739 15.4002C15.7836 15.3354 15.7939 15.2708 15.8031 15.206C15.8067 15.192 15.8019 15.1762 15.7874 15.1708C15.7792 15.1669 15.7701 15.1663 15.7613 15.1648C15.7616 15.1589 15.7623 15.1534 15.7694 15.1567C15.8256 15.1652 15.8818 15.1737 15.9379 15.1822C15.9376 15.1882 15.937 15.1937 15.9298 15.1904C15.9151 15.1873 15.8956 15.1877 15.8883 15.2034C15.8812 15.2259 15.8798 15.2497 15.8757 15.2729C15.866 15.3376 15.8557 15.4023 15.8465 15.4671C15.843 15.481 15.8478 15.4972 15.8623 15.5024C15.8706 15.5062 15.8797 15.5068 15.8885 15.5083V15.5083Z" fill="black"/>
<path d="M16.3432 15.3999C16.341 15.4397 16.3388 15.4796 16.3366 15.5194C16.2364 15.5245 16.1361 15.5296 16.0359 15.5347C16.0341 15.5274 16.0361 15.5235 16.044 15.525C16.0591 15.5254 16.0786 15.519 16.0805 15.5017C16.0819 15.472 16.0785 15.4423 16.0775 15.4126C16.0743 15.3534 16.0719 15.2941 16.0681 15.2349C16.0697 15.2173 16.0539 15.2043 16.0371 15.2048C16.0318 15.2021 16.0175 15.2103 16.0189 15.2006C16.0165 15.1928 16.0274 15.197 16.032 15.1955C16.0877 15.1926 16.1434 15.1898 16.1992 15.187C16.201 15.1943 16.1991 15.1982 16.1911 15.1966C16.1757 15.1965 16.1556 15.2003 16.1513 15.2177C16.1489 15.2434 16.1524 15.2693 16.1531 15.295C16.1565 15.3567 16.1589 15.4184 16.163 15.48C16.1617 15.4962 16.1747 15.5104 16.1914 15.5073C16.2158 15.5061 16.2407 15.5072 16.2646 15.501C16.298 15.4921 16.3162 15.459 16.3254 15.4281C16.3314 15.4197 16.3264 15.3989 16.3396 15.4001C16.3408 15.4 16.342 15.3999 16.3432 15.3999" fill="black"/>
<path d="M16.5774 15.1111C16.5695 15.1112 16.573 15.1214 16.5709 15.1267C16.5576 15.2264 16.545 15.3262 16.5313 15.4258C16.5279 15.4479 16.5224 15.4737 16.5006 15.4848C16.4926 15.4877 16.4997 15.5003 16.507 15.4933C16.5405 15.4832 16.574 15.4732 16.6074 15.4632C16.6062 15.4463 16.5869 15.4616 16.5761 15.4586C16.5531 15.4586 16.5496 15.4307 16.5528 15.4132C16.5542 15.4014 16.5556 15.3896 16.557 15.3778C16.5953 15.3662 16.6337 15.3547 16.672 15.3432C16.6867 15.3616 16.7029 15.379 16.7161 15.3985C16.7261 15.4173 16.7019 15.4259 16.6878 15.4296C16.6812 15.4303 16.687 15.444 16.693 15.4376C16.7433 15.4225 16.7937 15.4074 16.8441 15.3923C16.8436 15.3752 16.8217 15.3913 16.8125 15.3799C16.7842 15.3586 16.7639 15.329 16.7405 15.3028C16.6861 15.2389 16.6318 15.175 16.5774 15.1111ZM16.5766 15.2307C16.6038 15.2632 16.631 15.2957 16.6583 15.3282C16.6256 15.3379 16.593 15.3476 16.5603 15.3573C16.5658 15.3151 16.5712 15.2729 16.5766 15.2307Z" fill="black"/>
<path d="M17.0914 14.8878C17.1059 14.9148 17.1204 14.9417 17.1349 14.9686C17.1214 14.9802 17.1143 14.9533 17.1021 14.9492C17.082 14.9323 17.0517 14.9291 17.0293 14.9434C17.0202 14.9482 17.0111 14.9532 17.002 14.958C17.0457 15.0389 17.0888 15.1202 17.1329 15.2009C17.1397 15.2216 17.1651 15.2254 17.1815 15.2138C17.1879 15.2092 17.1936 15.2066 17.1957 15.2163C17.1735 15.2291 17.1492 15.2414 17.1263 15.254C17.0973 15.2695 17.0684 15.2851 17.0395 15.3006C17.0327 15.2936 17.0372 15.2899 17.0449 15.2872C17.0655 15.2796 17.0734 15.2546 17.0596 15.2371C17.0169 15.1567 16.9735 15.0767 16.9305 14.9965C16.9065 15.0098 16.8759 15.0217 16.8699 15.0516C16.8631 15.0704 16.8731 15.0934 16.8731 15.1094C16.8657 15.117 16.8638 15.1066 16.8604 15.1011C16.848 15.078 16.8356 15.055 16.8232 15.032C16.9126 14.9839 17.002 14.9359 17.0914 14.8878V14.8878Z" fill="black"/>
<path d="M17.2954 14.7643C17.3231 14.801 17.3508 14.8378 17.3785 14.8745C17.3978 14.8622 17.4139 14.8403 17.4081 14.8164C17.4103 14.7978 17.3836 14.7766 17.3928 14.7635C17.3989 14.7598 17.4024 14.7737 17.4074 14.7774C17.4391 14.8194 17.4707 14.8613 17.5023 14.9032C17.4899 14.9173 17.481 14.8886 17.4679 14.8855C17.4494 14.8724 17.4234 14.8658 17.4036 14.8802C17.3888 14.8849 17.3895 14.8932 17.3996 14.9024C17.4218 14.9311 17.4425 14.9612 17.4663 14.9887C17.4808 15.0028 17.4989 14.9881 17.5112 14.9782C17.5431 14.9566 17.571 14.9227 17.5694 14.8821C17.5715 14.8644 17.5604 14.8446 17.5605 14.8296C17.5676 14.8201 17.5696 14.8349 17.5737 14.8397C17.5887 14.8667 17.6036 14.8937 17.6186 14.9208C17.5406 14.9796 17.4626 15.0384 17.3847 15.0972C17.3745 15.09 17.3845 15.0858 17.3909 15.0808C17.4127 15.0673 17.4058 15.0398 17.3897 15.0246C17.3398 14.9588 17.2907 14.8923 17.24 14.827C17.2271 14.8094 17.2032 14.8187 17.1901 14.8309C17.1847 14.8386 17.1762 14.8232 17.1865 14.8221C17.26 14.7666 17.3335 14.7112 17.407 14.6557C17.4272 14.6824 17.4473 14.7091 17.4674 14.7357C17.4534 14.7499 17.441 14.7183 17.4251 14.7167C17.3961 14.7016 17.3617 14.7137 17.3377 14.7328C17.3234 14.743 17.3095 14.7538 17.2954 14.7643" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<defs>
<linearGradient id="paint0_linear_14099_114166" x1="14.8165" y1="11.3444" x2="14.6644" y2="11.322" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF0000"/>
<stop offset="1" stop-color="#FFFF00"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,59 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#F7E017"/>
<path d="M4.17969 4.99933L3.49954 7.06357L19.8949 17.4334L20.6695 15.8393L4.17969 4.99933Z" fill="white"/>
<path d="M3.98535 6.25195L3.4058 8.18482L20.191 18.1991L20.7706 16.2663L3.98535 6.25195Z" fill="black"/>
<path d="M11.6971 14.1207C11.4551 14.0885 11.2332 14.0115 11.0791 13.906C11.0492 13.8855 11.0211 13.8688 11.0167 13.8688C11.0122 13.8688 11.0086 13.8915 11.0086 13.9197C11.0086 13.9993 10.9766 14.0394 10.8961 14.0603C10.8191 14.0803 10.7016 14.0399 10.6064 13.9609C10.5077 13.879 10.3939 13.8165 10.2975 13.7915C10.2181 13.7708 10.1127 13.7742 10.0366 13.7997C10.0012 13.8115 9.96099 13.8283 9.94699 13.8369C9.93312 13.8455 9.91749 13.8525 9.91249 13.8525C9.89899 13.8525 9.90087 13.7669 9.91499 13.7395C9.93362 13.7037 9.97949 13.6683 10.033 13.6488C10.06 13.6389 10.0821 13.6263 10.0821 13.6207C10.0821 13.615 10.073 13.5944 10.0619 13.575C10.0256 13.5115 10.0405 13.45 10.1037 13.4017C10.1685 13.3522 10.2781 13.3437 10.375 13.3805C10.3994 13.3898 10.4221 13.3974 10.4255 13.3974C10.4382 13.3974 10.4305 13.3795 10.3954 13.3284C10.3549 13.2692 10.3469 13.2399 10.3519 13.1694C10.3584 13.0802 10.4311 13.0072 10.5202 13.0007C10.593 12.9954 10.6382 13.0199 10.7456 13.1222C11.0662 13.4279 11.4149 13.5964 11.8215 13.642C11.9241 13.6535 12.1306 13.6474 12.2517 13.6292C12.6176 13.574 12.9862 13.39 13.2741 13.1189C13.3539 13.0438 13.3922 13.0239 13.4576 13.0237C13.5145 13.0234 13.5544 13.0418 13.5951 13.0868C13.6322 13.128 13.6449 13.1672 13.6409 13.2298C13.6382 13.2699 13.6317 13.2897 13.6079 13.3285C13.5726 13.3859 13.5786 13.3912 13.6484 13.3642C13.7426 13.3274 13.8587 13.3444 13.9214 13.4039C13.9765 13.4563 13.9817 13.5087 13.9389 13.5797C13.9232 13.6057 13.9105 13.63 13.9105 13.6339C13.9105 13.641 13.9224 13.6444 13.9796 13.6537C14.0545 13.6657 14.0974 13.7213 14.0974 13.8063C14.0974 13.8318 14.0942 13.8525 14.0904 13.8525C14.0866 13.8525 14.0582 13.8422 14.0274 13.8294C13.9401 13.7934 13.8905 13.7842 13.7885 13.7848C13.7109 13.7853 13.6841 13.7889 13.63 13.8065C13.5471 13.8337 13.4585 13.8859 13.3862 13.9503C13.3066 14.0213 13.2565 14.0437 13.179 14.043C13.107 14.0423 13.0577 14.0214 13.0317 13.9803C13.0179 13.9583 13.0159 13.9449 13.0192 13.8952C13.0215 13.8628 13.021 13.8363 13.0184 13.8363C13.0156 13.8363 12.9876 13.854 12.956 13.8759C12.873 13.9329 12.8201 13.9612 12.7251 13.9988C12.4354 14.1134 12.0172 14.163 11.6971 14.1207Z" fill="#CF1126"/>
<path d="M11.8296 13.5648C11.3473 13.5185 10.8859 13.2673 10.6053 12.869C10.3007 12.4536 10.2047 11.9051 10.2977 11.4035C10.3471 11.1752 10.4468 10.9467 10.617 10.7841C10.4814 11.0717 10.4355 11.4012 10.5079 11.7127C10.6202 12.3347 11.1458 12.8611 11.7746 12.9522C12.0234 13.0242 12.2807 12.9482 12.5183 12.871C13.0425 12.6863 13.4418 12.1887 13.4905 11.6325C13.5322 11.3316 13.486 11.0186 13.3505 10.7461C13.4277 10.787 13.5253 10.9472 13.5828 11.0549C13.7829 11.4425 13.792 11.9069 13.6742 12.3204C13.5145 12.8466 13.1122 13.3077 12.5803 13.4752C12.339 13.5541 12.0823 13.5781 11.8296 13.5648L11.8296 13.5648Z" fill="#CF1126"/>
<path d="M9.40068 12.8736C9.36907 12.8686 9.33423 12.8997 9.34614 12.9323C9.36893 12.9652 9.40819 12.9813 9.44362 12.997C9.52851 13.0311 9.62086 13.0443 9.71201 13.0421C9.68059 13.042 9.72279 13.0424 9.73452 13.0421C9.8067 13.0423 9.87847 13.0293 9.94632 13.0048C9.98405 12.9916 10.0321 12.9795 10.0476 12.9378C10.0627 12.9106 10.0353 12.8835 10.0078 12.8889C9.96937 12.8973 9.93347 12.9147 9.89539 12.9246C9.81324 12.9478 9.72672 12.9568 9.6416 12.9498C9.57936 12.9422 9.51906 12.9223 9.46148 12.898C9.44151 12.8892 9.42278 12.8763 9.40067 12.8736L9.40068 12.8736Z" fill="#CF1126"/>
<path d="M9.43533 12.7426C9.40338 12.7378 9.37586 12.7746 9.38918 12.804C9.41374 12.8396 9.45502 12.8585 9.49363 12.8752C9.56076 12.902 9.63368 12.9133 9.70582 12.9111C9.67842 12.9111 9.71523 12.9115 9.72538 12.9111C9.78672 12.9112 9.84773 12.8991 9.90444 12.8757C9.93911 12.8623 9.98156 12.8492 9.996 12.811C10.0072 12.7901 9.99866 12.7596 9.97225 12.7579C9.94814 12.7567 9.92734 12.7721 9.90502 12.779C9.82396 12.8125 9.73475 12.8267 9.64735 12.8191C9.59289 12.8121 9.54086 12.792 9.49147 12.7688C9.47291 12.7598 9.45622 12.7458 9.43534 12.7426L9.43533 12.7426Z" fill="#CF1126"/>
<path d="M9.47883 12.6194C9.45144 12.6161 9.43261 12.647 9.43722 12.6717C9.4413 12.6933 9.46075 12.7079 9.47683 12.7212C9.54345 12.7699 9.62787 12.7906 9.70966 12.7879C9.67789 12.7878 9.75227 12.7884 9.72959 12.7878C9.78139 12.7876 9.83256 12.7749 9.87916 12.7525C9.91028 12.739 9.94681 12.7233 9.95729 12.6878C9.96231 12.6712 9.96545 12.6475 9.94678 12.6382C9.92723 12.6272 9.90782 12.644 9.89004 12.6509C9.83018 12.6813 9.76348 12.6983 9.69621 12.698C9.63807 12.6999 9.58329 12.6755 9.53286 12.6491C9.51456 12.6398 9.49947 12.6236 9.47884 12.6194L9.47883 12.6194Z" fill="#CF1126"/>
<path d="M9.01917 10.7832C8.97845 10.824 9.00954 10.8991 9.00734 10.9525C9.02844 11.117 9.05465 11.2835 9.11605 11.4384C9.19124 11.5896 9.35094 11.6705 9.44771 11.8042C9.48231 11.8687 9.47002 11.9462 9.47731 12.0166C9.48304 12.2087 9.48126 12.4009 9.4779 12.593C9.56464 12.6365 9.65883 12.6804 9.7586 12.6636C9.81773 12.6495 9.9275 12.6407 9.9398 12.5818C9.93502 12.2506 9.93192 11.9192 9.92752 11.588C9.89389 11.4865 9.79063 11.434 9.7134 11.3691C9.64966 11.3062 9.59035 11.2386 9.53605 11.1678C9.50328 11.1126 9.3752 11.0927 9.42154 11.1888C9.44871 11.272 9.51804 11.3339 9.5354 11.4213C9.5392 11.4692 9.59637 11.5573 9.54757 11.5852C9.51652 11.5325 9.47154 11.4876 9.41404 11.4608C9.35864 11.4195 9.26705 11.4023 9.24705 11.3293C9.23237 11.2258 9.17936 11.132 9.11097 11.0545C9.12859 10.9615 9.11103 10.8453 9.03067 10.7859L9.01916 10.7832H9.01916L9.01917 10.7832Z" fill="#CF1126"/>
<path d="M9.14345 10.8027C9.10641 10.8087 9.10767 10.8559 9.12481 10.8807C9.14304 10.9343 9.14801 10.9925 9.13814 11.0483C9.20398 11.1254 9.25497 11.2176 9.27034 11.3188C9.27071 11.3569 9.31075 11.3695 9.3367 11.3883C9.39759 11.427 9.46605 11.4552 9.52027 11.5037C9.53168 11.5159 9.5403 11.529 9.53223 11.5041C9.52377 11.4723 9.51942 11.4371 9.49447 11.4131C9.46029 11.3763 9.4176 11.3435 9.36781 11.3323C9.36366 11.2809 9.33917 11.2337 9.31654 11.1882C9.29146 11.1447 9.26526 11.0981 9.22228 11.0699C9.22401 10.9937 9.22276 10.9137 9.18996 10.8434C9.18034 10.8253 9.16617 10.8038 9.14346 10.8027H9.14345Z" fill="#CF1126"/>
<path d="M9.2468 10.8322C9.221 10.8399 9.22593 10.8717 9.2341 10.8912C9.24646 10.9451 9.2484 11.0008 9.24739 11.056C9.29478 11.0935 9.32442 11.1478 9.35141 11.2008C9.36833 11.2362 9.38437 11.2727 9.39085 11.3116C9.4293 11.3243 9.46294 11.3484 9.49299 11.3751C9.48109 11.339 9.45453 11.3112 9.43669 11.2783C9.41729 11.2441 9.39877 11.2084 9.39056 11.1696C9.35358 11.1302 9.33322 11.0742 9.3413 11.0202C9.34296 10.9605 9.32368 10.8988 9.28373 10.8538C9.27366 10.8439 9.26165 10.833 9.2468 10.8322L9.2468 10.8322Z" fill="#CF1126"/>
<path d="M9.36447 10.8497C9.35044 10.8522 9.34191 10.8655 9.33439 10.8764C9.33149 10.8873 9.34487 10.8991 9.347 10.9109C9.3634 10.9521 9.3696 10.9972 9.3647 11.0412C9.36362 11.0725 9.37481 11.1031 9.39075 11.1296C9.39535 11.11 9.41345 11.096 9.43308 11.0941C9.44022 11.0928 9.45071 11.0964 9.44655 11.0855C9.44157 11.0257 9.43245 10.9655 9.41154 10.909C9.40344 10.8888 9.39424 10.8676 9.37675 10.8538C9.3732 10.8513 9.36896 10.8491 9.36447 10.8497L9.36447 10.8497Z" fill="#CF1126"/>
<path d="M14.6491 12.8736C14.6807 12.8686 14.7156 12.8997 14.7037 12.9323C14.6809 12.9652 14.6416 12.9813 14.6062 12.997C14.5213 13.0311 14.4289 13.0443 14.3378 13.0421C14.3692 13.042 14.327 13.0424 14.3153 13.0421C14.2431 13.0423 14.1713 13.0293 14.1035 13.0048C14.0658 12.9916 14.0177 12.9795 14.0022 12.9378C13.9871 12.9106 14.0145 12.8835 14.042 12.8889C14.0804 12.8973 14.1163 12.9147 14.1544 12.9246C14.2366 12.9478 14.3231 12.9568 14.4082 12.9498C14.4704 12.9422 14.5307 12.9223 14.5883 12.898C14.6083 12.8892 14.627 12.8763 14.6491 12.8736L14.6491 12.8736Z" fill="#CF1126"/>
<path d="M14.6145 12.7426C14.6464 12.7378 14.6739 12.7746 14.6606 12.804C14.6361 12.8396 14.5948 12.8585 14.5562 12.8752C14.489 12.902 14.4161 12.9133 14.344 12.9111C14.3714 12.9111 14.3346 12.9115 14.3244 12.9111C14.2631 12.9112 14.2021 12.8991 14.1454 12.8757C14.1107 12.8623 14.0682 12.8492 14.0538 12.811C14.0426 12.7901 14.0511 12.7596 14.0776 12.7579C14.1017 12.7567 14.1225 12.7721 14.1448 12.779C14.2258 12.8125 14.3151 12.8267 14.4025 12.8191C14.4569 12.8121 14.5089 12.792 14.5583 12.7688C14.5769 12.7598 14.5936 12.7458 14.6145 12.7426L14.6145 12.7426Z" fill="#CF1126"/>
<path d="M14.571 12.6194C14.5984 12.6161 14.6172 12.647 14.6126 12.6717C14.6085 12.6933 14.5891 12.7079 14.573 12.7212C14.5064 12.7699 14.4219 12.7906 14.3401 12.7879C14.3719 12.7878 14.2975 12.7884 14.3202 12.7878C14.2684 12.7876 14.2172 12.7749 14.1706 12.7525C14.1395 12.739 14.103 12.7233 14.0925 12.6878C14.0875 12.6712 14.0844 12.6475 14.103 12.6382C14.1226 12.6272 14.142 12.644 14.1598 12.6509C14.2196 12.6813 14.2863 12.6983 14.3536 12.698C14.4117 12.6999 14.4665 12.6755 14.5169 12.6491C14.5352 12.6398 14.5503 12.6236 14.571 12.6194L14.571 12.6194Z" fill="#CF1126"/>
<path d="M15.0306 10.7832C15.0714 10.824 15.0403 10.8991 15.0425 10.9525C15.0214 11.117 14.9952 11.2835 14.9338 11.4384C14.8586 11.5896 14.6989 11.6705 14.6021 11.8042C14.5675 11.8687 14.5798 11.9462 14.5725 12.0166C14.5668 12.2087 14.5685 12.4009 14.5719 12.593C14.4852 12.6365 14.391 12.6804 14.2912 12.6636C14.2321 12.6495 14.1223 12.6407 14.11 12.5818C14.1148 12.2506 14.1179 11.9192 14.1223 11.588C14.1559 11.4865 14.2592 11.434 14.3364 11.3691C14.4001 11.3062 14.4595 11.2386 14.5138 11.1678C14.5465 11.1126 14.6746 11.0927 14.6283 11.1888C14.6011 11.272 14.5318 11.3339 14.5144 11.4213C14.5106 11.4692 14.4534 11.5573 14.5022 11.5852C14.5333 11.5325 14.5783 11.4876 14.6358 11.4608C14.6912 11.4195 14.7828 11.4023 14.8028 11.3293C14.8174 11.2258 14.8704 11.132 14.9388 11.0545C14.9212 10.9615 14.9388 10.8453 15.0191 10.7859L15.0306 10.7832H15.0306L15.0306 10.7832Z" fill="#CF1126"/>
<path d="M14.9064 10.8027C14.9434 10.8087 14.9421 10.8559 14.925 10.8807C14.9068 10.9343 14.9018 10.9925 14.9117 11.0483C14.8458 11.1254 14.7948 11.2176 14.7795 11.3188C14.7791 11.3569 14.7391 11.3695 14.7131 11.3883C14.6522 11.427 14.5838 11.4552 14.5295 11.5037C14.5181 11.5159 14.5095 11.529 14.5176 11.5041C14.526 11.4723 14.5304 11.4371 14.5553 11.4131C14.5895 11.3763 14.6322 11.3435 14.682 11.3323C14.6861 11.2809 14.7106 11.2337 14.7333 11.1882C14.7583 11.1447 14.7845 11.0981 14.8275 11.0699C14.8258 10.9937 14.827 10.9137 14.8598 10.8434C14.8695 10.8253 14.8836 10.8038 14.9063 10.8027H14.9064Z" fill="#CF1126"/>
<path d="M14.803 10.8322C14.8288 10.8399 14.8239 10.8717 14.8157 10.8912C14.8033 10.9451 14.8014 11.0008 14.8024 11.056C14.755 11.0935 14.7254 11.1478 14.6984 11.2008C14.6815 11.2362 14.6654 11.2727 14.659 11.3116C14.6205 11.3243 14.5869 11.3484 14.5568 11.3751C14.5687 11.339 14.5953 11.3112 14.6131 11.2783C14.6325 11.2441 14.651 11.2084 14.6592 11.1696C14.6962 11.1302 14.7166 11.0742 14.7085 11.0202C14.7068 10.9605 14.7261 10.8988 14.7661 10.8538C14.7761 10.8439 14.7882 10.833 14.803 10.8322L14.803 10.8322Z" fill="#CF1126"/>
<path d="M14.6853 10.8497C14.6994 10.8522 14.7079 10.8655 14.7154 10.8764C14.7183 10.8873 14.7049 10.8991 14.7028 10.9109C14.6864 10.9521 14.6802 10.9972 14.6851 11.0412C14.6862 11.0725 14.675 11.1031 14.6591 11.1296C14.6545 11.11 14.6364 11.096 14.6167 11.0941C14.6096 11.0928 14.5991 11.0964 14.6033 11.0855C14.6082 11.0257 14.6174 10.9655 14.6383 10.909C14.6464 10.8888 14.6556 10.8676 14.6731 10.8538C14.6766 10.8513 14.6808 10.8491 14.6853 10.8497L14.6853 10.8497Z" fill="#CF1126"/>
<path d="M11.9461 12.949C11.7774 12.9329 11.6253 12.81 11.5732 12.649C11.576 12.6212 11.6106 12.6645 11.6269 12.6674C11.6575 12.6844 11.6906 12.6984 11.7259 12.7006C11.7704 12.7197 11.7979 12.7635 11.8403 12.7864C11.86 12.8017 11.9297 12.8319 11.9168 12.783C11.9004 12.7575 11.8892 12.7252 11.9033 12.696C11.9269 12.6442 11.9633 12.599 11.9999 12.5557C12.0268 12.5467 12.0448 12.5998 12.0641 12.6177C12.0907 12.6586 12.1228 12.7087 12.1072 12.7596C12.0919 12.7784 12.0819 12.8352 12.1227 12.8161C12.1729 12.794 12.2141 12.7568 12.2558 12.7221C12.2923 12.6966 12.339 12.6948 12.3772 12.6725C12.3949 12.668 12.4318 12.6326 12.4395 12.6522C12.4186 12.7083 12.3835 12.7586 12.346 12.8049C12.2853 12.8742 12.2031 12.9264 12.1112 12.9411C12.0569 12.9511 12.0011 12.9532 11.9461 12.949L11.9461 12.949Z" fill="#CF1126"/>
<path d="M12.1439 12.7525C12.1476 12.7187 12.1399 12.6841 12.1226 12.6534C12.0961 12.5993 12.0586 12.5513 12.0221 12.5038C11.9876 12.4837 11.9685 12.5496 11.9456 12.5685C11.9099 12.622 11.865 12.6767 11.8628 12.7439C11.8428 12.7752 11.8053 12.7184 11.7891 12.6997C11.7583 12.6561 11.7349 12.6045 11.7388 12.5499C11.7351 12.462 11.752 12.3744 11.784 12.2926C11.8082 12.2229 11.8475 12.1551 11.8435 12.0788C11.8463 12.0215 11.8346 11.9581 11.7882 11.9195C11.7439 11.8848 11.8168 11.8774 11.8399 11.8954C11.8796 11.8981 11.901 11.9635 11.9372 11.9473C11.9516 11.9131 11.9544 11.8724 11.9842 11.8457C12.0133 11.8058 12.0438 11.8627 12.0538 11.8893C12.0744 11.9127 12.0526 11.9706 12.0861 11.9722C12.1261 11.9441 12.1547 11.8969 12.206 11.8866C12.2267 11.8747 12.2623 11.885 12.2349 11.9089C12.1969 11.9445 12.1645 11.9889 12.1576 12.0418C12.146 12.1081 12.1626 12.1754 12.1915 12.2352C12.2471 12.3525 12.2901 12.4851 12.262 12.6157C12.2489 12.6738 12.2095 12.7238 12.1616 12.7575C12.1555 12.7611 12.146 12.7609 12.1439 12.7525V12.7525Z" fill="#CF1126"/>
<path d="M12.0842 11.8694C12.066 11.8366 12.0439 11.8043 12.0133 11.782C11.9835 11.7819 11.9651 11.8195 11.9449 11.8392C11.9307 11.8655 11.9135 11.9096 11.8786 11.8751C11.823 11.8427 11.8132 11.7717 11.8136 11.7132C11.8101 11.6183 11.8483 11.5297 11.8822 11.4433C11.9038 11.3892 11.8985 11.3283 11.8853 11.2729C11.8687 11.2093 11.8177 11.1651 11.7783 11.1155C11.781 11.0963 11.8313 11.1068 11.8502 11.1104C11.8922 11.1211 11.9173 11.1582 11.9486 11.1845C11.9708 11.1777 11.9617 11.1327 11.9721 11.1116C11.9729 11.0818 12.0125 11.0425 12.0289 11.0852C12.0533 11.1123 12.0281 11.166 12.0597 11.1829C12.0899 11.1717 12.1047 11.1388 12.1331 11.1239C12.1609 11.1048 12.2003 11.1027 12.2303 11.1176C12.2408 11.1453 12.1973 11.1683 12.1847 11.1924C12.134 11.2549 12.1162 11.3412 12.1379 11.4188C12.1551 11.4796 12.1856 11.5363 12.1961 11.5992C12.2087 11.6698 12.2083 11.744 12.19 11.8137C12.1791 11.8559 12.1425 11.8842 12.1047 11.9017C12.0954 11.8931 12.0905 11.8803 12.0842 11.8694L12.0842 11.8694Z" fill="#CF1126"/>
<path d="M11.8949 11.0859C11.8529 11.0551 11.839 11.0258 11.839 10.9676C11.839 10.9379 11.8445 10.9218 11.8642 10.8948C11.893 10.8548 11.8878 10.8421 11.8469 10.8539C11.7812 10.8728 11.7498 10.8555 11.7475 10.7995C11.7465 10.7721 11.7523 10.7605 11.7892 10.7163C11.8187 10.6808 11.8294 10.6621 11.8235 10.6563C11.8178 10.6505 11.7829 10.6808 11.7113 10.7536C11.6542 10.8118 11.5899 10.8711 11.5685 10.8856C11.4455 10.9686 11.328 10.9815 11.2744 10.9176C11.2469 10.885 11.2484 10.8666 11.2802 10.8469C11.2948 10.8379 11.3194 10.8171 11.335 10.8008C11.3719 10.7624 11.4818 10.6831 11.5363 10.6556C11.5805 10.6333 11.591 10.6181 11.5623 10.6181C11.525 10.6181 11.4055 10.6959 11.3149 10.7791C11.2883 10.8038 11.2499 10.8311 11.2298 10.84C11.1845 10.86 11.0957 10.8674 11.0562 10.8544C11.0283 10.8451 10.9774 10.7971 10.9774 10.78C10.9774 10.7755 10.989 10.7655 11.0032 10.7579C11.0173 10.7504 11.0427 10.732 11.0594 10.7174C11.1319 10.6538 11.2693 10.5883 11.3783 10.5654C11.4129 10.5581 11.4002 10.5406 11.3615 10.5424C11.2867 10.5456 11.138 10.6153 11.0493 10.6885C10.9453 10.7743 10.7884 10.7661 10.7379 10.6724C10.7292 10.6563 10.724 10.6411 10.7265 10.6388C10.7289 10.6364 10.7598 10.6271 10.7952 10.6181C10.8334 10.6085 10.9092 10.5771 10.9815 10.541C11.0954 10.4843 11.1292 10.4721 11.2075 10.4595C11.2428 10.4539 11.2447 10.4366 11.2104 10.4326C11.1663 10.4274 11.0987 10.4495 10.9792 10.5083C10.8257 10.5838 10.7827 10.5968 10.7018 10.592C10.628 10.5875 10.5864 10.5686 10.5265 10.512C10.4874 10.4749 10.4319 10.3806 10.4428 10.3698C10.4454 10.3671 10.4634 10.3698 10.4828 10.3754C10.5043 10.3818 10.5659 10.386 10.6402 10.3861C10.744 10.3864 10.7717 10.3836 10.827 10.3676C10.9197 10.3409 11.0428 10.2783 11.127 10.2154C11.2882 10.0949 11.4195 10.0465 11.587 10.0458C11.7417 10.0451 11.84 10.0809 11.9272 10.1693C11.9567 10.1991 11.9818 10.2185 11.9859 10.2144C11.9898 10.2105 11.994 10.1583 11.9953 10.0983C11.9953 10.0983 12.0408 10.0939 12.0504 10.1066C12.0504 10.204 12.0515 10.2116 12.0657 10.2116C12.0749 10.2116 12.0848 10.2021 12.0909 10.1874C12.1042 10.1555 12.1532 10.1119 12.2055 10.0854C12.3187 10.028 12.5144 10.0263 12.6717 10.0811C12.7379 10.1044 12.8114 10.1459 12.8814 10.1999C12.9517 10.2539 13.0953 10.3261 13.1802 10.3503C13.266 10.3746 13.4174 10.3808 13.495 10.3631C13.527 10.3559 13.557 10.3499 13.5618 10.3499C13.5904 10.3499 13.5417 10.4453 13.4844 10.5011C13.3798 10.6034 13.2437 10.6029 13.0522 10.4996C12.9328 10.4354 12.79 10.4003 12.79 10.4353C12.79 10.4425 12.7975 10.4474 12.8087 10.4474C12.8502 10.4474 12.9303 10.4753 13.042 10.5283C13.1629 10.5858 13.2308 10.61 13.271 10.61C13.3003 10.61 13.3012 10.6281 13.2739 10.6681C13.245 10.7108 13.196 10.7319 13.1268 10.7318C13.0607 10.7315 13.0239 10.717 12.9648 10.6679C12.8659 10.5856 12.6195 10.4939 12.629 10.5429C12.6309 10.5526 12.6428 10.5586 12.6682 10.5625C12.7539 10.5756 12.8545 10.6236 12.9575 10.7008C12.9893 10.7246 13.0223 10.7481 13.0307 10.7531C13.0448 10.7614 13.045 10.7639 13.0339 10.7848C13.0154 10.8193 12.9688 10.846 12.9183 10.8513C12.8529 10.858 12.796 10.8385 12.7372 10.7893C12.6129 10.6853 12.4958 10.61 12.4583 10.61C12.4277 10.61 12.4414 10.6269 12.4954 10.6555C12.5664 10.6931 12.6394 10.744 12.6932 10.7934C12.7185 10.8169 12.7472 10.8401 12.7567 10.8453C12.7792 10.8573 12.7783 10.8749 12.7535 10.9073C12.7283 10.9403 12.6865 10.9548 12.6324 10.949C12.5244 10.9376 12.4402 10.8855 12.3078 10.7481C12.256 10.6945 12.2099 10.6506 12.2052 10.6506C12.1875 10.6506 12.1979 10.6745 12.232 10.7128C12.2743 10.76 12.2824 10.7866 12.2664 10.825C12.2523 10.859 12.2288 10.8669 12.1805 10.8539C12.1312 10.8405 12.1234 10.8526 12.1558 10.8929C12.204 10.953 12.1969 11.0266 12.1378 11.0773C12.1194 11.0929 12.1002 11.1058 12.0949 11.1058C12.0898 11.1058 12.0768 11.0924 12.0659 11.076C12.0279 11.0183 11.9945 11.0186 11.9575 11.077C11.9447 11.0974 11.9338 11.1139 11.9334 11.1138C11.9329 11.1136 11.9155 11.1011 11.8949 11.0859Z" fill="#CF1126"/>
<path d="M12.0835 9.91211L12.0194 9.96286L11.9619 9.91948V10.2662L12.0835 10.2677V9.91211Z" fill="#CF1126"/>
<path d="M11.6865 9.55288C11.6737 9.71675 11.6321 9.83113 11.5742 9.95725L11.713 9.82863L11.8095 9.94325L11.914 9.82663L12.0206 9.92513L12.1231 9.82263L12.2296 9.94725L12.3221 9.84475L12.4788 9.95725C12.422 9.83113 12.345 9.72425 12.3546 9.54675C12.2027 9.65963 11.8418 9.68 11.6865 9.55288Z" fill="#CF1126"/>
<path d="M11.9623 9.46875C11.9065 9.46975 11.8478 9.4705 11.7949 9.48088C11.7583 9.48813 11.725 9.5 11.6973 9.51963C11.7018 9.62625 12.2098 9.67075 12.346 9.52162C12.3174 9.50075 12.2824 9.48838 12.2439 9.48088C12.193 9.471 12.1368 9.47 12.0834 9.46912C12.0834 9.49837 12.0836 9.52775 12.0836 9.55713L11.9623 9.55675V9.46875Z" fill="#CF1126"/>
<path d="M12.0613 8.92383L11.9824 8.92445V9.5417L12.0629 9.54208L12.0613 8.92383Z" fill="#CF1126"/>
<path d="M12.0614 8.93945L12.0312 9.23495L12.3353 9.38345L12.1814 9.1777L12.3915 9.10958L12.0614 8.93945Z" fill="#CF1126"/>
<path d="M12.0275 8.86328C11.9814 8.86328 11.9473 8.88053 11.9473 8.90103C11.9473 8.92153 11.9814 8.93891 12.0275 8.93891C12.0736 8.93891 12.1075 8.92153 12.1075 8.90103C12.1075 8.88053 12.0736 8.86328 12.0275 8.86328Z" fill="#CF1126"/>
<path d="M11.8884 13.0486C11.9383 13.0321 11.9667 13.0019 11.987 12.9436C11.9972 12.9146 12.004 12.8845 12.0023 12.8766C11.998 12.858 11.9765 12.859 11.9528 12.8788C11.9365 12.8924 11.9345 12.8993 11.9392 12.927C11.951 12.997 11.9262 13.0144 11.7937 13.0286C11.7805 13.03 11.7425 13.0278 11.709 13.0236C11.646 13.0158 11.6235 13.022 11.6464 13.041C11.6533 13.0468 11.6708 13.0545 11.6853 13.0581C11.7207 13.0673 11.8505 13.0611 11.8884 13.0486Z" fill="#F7E017"/>
<path d="M12.1626 13.0369C12.1701 13.03 12.1959 13.0181 12.2199 13.0104C12.2519 13.0001 12.2684 12.9891 12.2819 12.969C12.3208 12.9111 12.3135 12.8612 12.2564 12.794C12.2254 12.7575 12.2116 12.7585 12.1869 12.799C12.1655 12.834 12.166 12.8362 12.1968 12.8442C12.2129 12.8484 12.2284 12.8602 12.2369 12.8749C12.2704 12.9329 12.2605 12.9687 12.2109 12.9691C12.1659 12.9695 12.1535 12.9759 12.1414 13.005C12.135 13.0201 12.1299 13.0362 12.1299 13.0409C12.1299 13.0531 12.1469 13.051 12.1626 13.0369Z" fill="#F7E017"/>
<path d="M12.0726 12.9706C12.0811 12.9476 12.0841 12.9062 12.0831 12.8218C12.0825 12.7576 12.0799 12.7031 12.0774 12.7006C12.0699 12.6931 12.0329 12.717 12.0281 12.7323C12.0256 12.7403 12.0297 12.7588 12.0372 12.7733C12.0487 12.7957 12.0502 12.8166 12.0467 12.9042C12.0422 13.015 12.0494 13.0336 12.0726 12.9706Z" fill="#F7E017"/>
<path d="M11.8619 12.9187C11.8664 12.8981 11.8721 12.8558 11.8747 12.825C11.8774 12.7941 11.8837 12.7551 11.8887 12.7382C11.9015 12.695 11.8886 12.6836 11.8545 12.7078L11.8291 12.726L11.8344 12.7881C11.8392 12.8441 11.8304 12.9485 11.8175 12.989C11.814 12.9997 11.819 12.997 11.8331 12.9805C11.8445 12.9672 11.8575 12.9393 11.8619 12.9187Z" fill="#F7E017"/>
<path d="M11.6742 12.948C11.7198 12.9098 11.7146 12.8446 11.7247 12.7915C11.7237 12.7562 11.7473 12.7138 11.732 12.6829C11.6894 12.6907 11.6631 12.7311 11.6849 12.7714C11.6867 12.8181 11.6851 12.869 11.6611 12.9103C11.6414 12.9373 11.5793 12.9306 11.5821 12.8923C11.5977 12.8347 11.5288 12.8627 11.5018 12.8778C11.481 12.8923 11.437 12.8934 11.4523 12.8571C11.4422 12.8088 11.3801 12.839 11.3463 12.8388C11.3144 12.8382 11.3437 12.7742 11.2979 12.7854C11.2128 12.7787 11.1189 12.7862 11.0453 12.7348C11.0021 12.714 11.0085 12.6622 11.031 12.6286C11.0578 12.5828 11.0654 12.5255 11.108 12.49C11.1501 12.4496 11.0683 12.4667 11.0498 12.4803C11.0088 12.5027 11.0469 12.5605 11.0133 12.5926C10.9937 12.6259 10.9679 12.6718 10.9225 12.6655C10.857 12.6531 10.8192 12.5922 10.7722 12.5513C10.732 12.5433 10.7546 12.6166 10.7754 12.632C10.8165 12.6628 10.8645 12.6852 10.9141 12.6985C10.9634 12.6906 10.965 12.7552 11.0071 12.7653C11.0845 12.8013 11.1707 12.8121 11.255 12.8165C11.2882 12.8193 11.2695 12.8783 11.3131 12.8667C11.3374 12.873 11.3924 12.8576 11.3952 12.8859C11.3583 12.9297 11.4306 12.9287 11.4574 12.9209C11.4917 12.9156 11.5355 12.9025 11.5445 12.9495C11.5731 12.9797 11.6257 12.9752 11.6605 12.958C11.6654 12.9551 11.67 12.9518 11.6742 12.948L11.6742 12.948Z" fill="#F7E017"/>
<path d="M10.9269 12.5703C10.9407 12.5527 10.9615 12.5171 10.973 12.4911C10.9844 12.465 11.0015 12.4353 11.0109 12.4252C11.0329 12.4015 11.0206 12.3868 10.9851 12.3947C10.9664 12.3988 10.9587 12.4057 10.9556 12.422C10.945 12.475 10.9257 12.5292 10.9086 12.5545C10.8776 12.6002 10.8769 12.6021 10.8896 12.6021C10.8962 12.6021 10.913 12.5878 10.9269 12.5703Z" fill="#F7E017"/>
<path d="M10.4588 12.2754C10.4238 12.2754 10.4223 12.2975 10.4564 12.3094C10.4729 12.3151 10.4869 12.329 10.4981 12.3516C10.5314 12.4178 10.5509 12.4295 10.6391 12.4371L10.6958 12.4423L10.6985 12.4766C10.6999 12.4956 10.7044 12.5114 10.7088 12.5114C10.7131 12.5114 10.735 12.5019 10.7571 12.4906C10.7986 12.4696 10.838 12.4206 10.838 12.3903C10.838 12.3704 10.8049 12.3489 10.7748 12.3489C10.7614 12.3489 10.7359 12.3596 10.7158 12.3743C10.6528 12.4199 10.5854 12.4106 10.5485 12.3513C10.5183 12.3023 10.4866 12.2754 10.4588 12.2754ZM10.7645 12.3973C10.7813 12.3973 10.7854 12.4096 10.7763 12.4333C10.77 12.4495 10.7496 12.45 10.7435 12.434C10.7363 12.4151 10.7464 12.3973 10.7645 12.3973Z" fill="#F7E017"/>
<path d="M13.1355 12.3204C13.1126 12.3212 13.1058 12.3262 13.0913 12.3477C13.0676 12.383 13.0652 12.4594 13.0871 12.4864C13.1007 12.5031 13.1027 12.5035 13.1316 12.4915C13.1718 12.4746 13.1786 12.4752 13.1785 12.4969C13.1782 12.5521 13.099 12.6586 13.016 12.7152C12.9936 12.7305 12.9736 12.7475 12.9715 12.7531C12.9655 12.7689 12.9962 12.7654 13.034 12.7461C13.0855 12.7199 13.1531 12.6509 13.1808 12.5965C13.2028 12.5531 13.206 12.5384 13.2086 12.4625C13.211 12.3926 13.2091 12.3721 13.1972 12.3489C13.184 12.3227 13.1797 12.3204 13.1465 12.3204C13.1425 12.3204 13.1388 12.3202 13.1355 12.3204ZM13.1382 12.3691C13.1555 12.3691 13.1585 12.373 13.1605 12.3977C13.1622 12.4182 13.1586 12.4307 13.1472 12.441C13.1317 12.455 13.1305 12.4549 13.1167 12.434C13.0975 12.4045 13.1093 12.3691 13.1382 12.3691Z" fill="#F7E017"/>
<path d="M12.7589 12.9041C12.832 12.8681 12.8751 12.8276 12.9029 12.769C12.916 12.7411 12.9268 12.7149 12.9268 12.7104C12.9268 12.7002 12.8908 12.6835 12.8691 12.6835C12.8476 12.6835 12.8433 12.6686 12.8525 12.6275C12.8615 12.5874 12.8506 12.5371 12.833 12.5371C12.8266 12.5371 12.8154 12.5465 12.8079 12.5579C12.7964 12.5755 12.7958 12.583 12.8043 12.6086C12.8168 12.6466 12.8069 12.675 12.7729 12.6992C12.7568 12.7107 12.7479 12.724 12.7479 12.7369C12.7479 12.7477 12.7493 12.7566 12.7509 12.7566C12.7526 12.7566 12.7704 12.7474 12.7904 12.7362L12.8269 12.7159L12.8484 12.7327C12.8601 12.742 12.8699 12.7571 12.8699 12.7664C12.8699 12.8109 12.743 12.8856 12.6559 12.8926C12.6095 12.8964 12.6016 12.8947 12.5855 12.8787C12.5724 12.8656 12.5686 12.8546 12.5719 12.8391C12.5744 12.8272 12.5789 12.8056 12.5819 12.7911C12.5899 12.7524 12.5733 12.7576 12.5445 12.8029C12.5209 12.8402 12.5139 12.8801 12.5271 12.9011C12.538 12.9182 12.6103 12.9346 12.6614 12.9315C12.6935 12.9296 12.7253 12.9206 12.7589 12.9041Z" fill="#F7E017"/>
<path d="M13.2475 12.6305C13.2935 12.5846 13.313 12.5288 13.3132 12.4424L13.3134 12.3775L13.3514 12.3595C13.4007 12.336 13.4475 12.2893 13.4475 12.2633C13.4475 12.2365 13.4356 12.2379 13.4141 12.267C13.3985 12.2881 13.3776 12.3009 13.3012 12.336C13.282 12.3449 13.2807 12.3496 13.2764 12.4304C13.2712 12.5235 13.2586 12.5584 13.2066 12.622C13.1747 12.6608 13.1736 12.6659 13.1957 12.6659C13.2049 12.6659 13.2281 12.65 13.2475 12.6305Z" fill="#F7E017"/>
<path d="M12.7464 12.579C12.7508 12.5657 12.7254 12.5562 12.7144 12.567C12.7098 12.5717 12.7086 12.5797 12.7117 12.5848C12.7189 12.5964 12.7419 12.5925 12.7464 12.579Z" fill="#F7E017"/>
<path d="M13.4369 12.3995C13.4414 12.3862 13.4159 12.3767 13.405 12.3875C13.4002 12.3923 13.399 12.4003 13.4021 12.4054C13.4094 12.417 13.4324 12.4132 13.4369 12.3995Z" fill="#F7E017"/>
<path d="M12.6057 11.916C12.5878 11.9245 12.5785 11.9438 12.5661 11.9585C12.5572 11.9646 12.5643 11.9703 12.5695 11.976C12.601 12.0099 12.6143 12.0558 12.6293 12.0986C12.644 12.1491 12.6626 12.2033 12.6472 12.2559C12.6411 12.2761 12.6253 12.297 12.6016 12.2903C12.5637 12.2879 12.5264 12.2778 12.4885 12.2782C12.4546 12.28 12.4285 12.3108 12.3939 12.3074C12.3719 12.3089 12.3728 12.2622 12.3523 12.2747C12.3421 12.299 12.3471 12.3262 12.3459 12.3519C12.3497 12.3556 12.3605 12.3524 12.3669 12.3535H12.435C12.4398 12.377 12.4392 12.4039 12.4561 12.4226C12.4797 12.431 12.5063 12.4238 12.5287 12.4146C12.5528 12.4034 12.556 12.3744 12.5628 12.3519C12.57 12.3276 12.6018 12.334 12.6205 12.3245C12.6663 12.3111 12.6963 12.2635 12.6936 12.2166C12.6907 12.1451 12.6634 12.0778 12.6427 12.0101C12.6323 11.9803 12.625 11.9492 12.613 11.9201C12.6115 11.9176 12.6086 11.9155 12.6057 11.916L12.6057 11.916ZM12.4923 12.325C12.5177 12.3233 12.5288 12.3546 12.5234 12.3753C12.5139 12.4035 12.4792 12.3854 12.4722 12.3651C12.4593 12.347 12.4673 12.3226 12.4923 12.325L12.4923 12.325Z" fill="#F7E017"/>
<path d="M11.5495 12.0899C11.5381 12.0896 11.5254 12.0939 11.5128 12.1027C11.4464 12.1492 11.4294 12.2042 11.4745 12.2257C11.5076 12.2416 11.4993 12.2602 11.4471 12.2864C11.3725 12.3236 11.3066 12.319 11.1815 12.2672C11.1508 12.2545 11.1428 12.2594 11.1499 12.2875C11.1568 12.3151 11.182 12.3302 11.2448 12.3445C11.3123 12.36 11.3939 12.355 11.4464 12.3324C11.472 12.3214 11.5024 12.2982 11.528 12.2704L11.5686 12.2257L11.6159 12.2316C11.6741 12.2387 11.6753 12.2394 11.6753 12.2672C11.6753 12.2894 11.6765 12.2899 11.73 12.2949C11.7601 12.2977 11.7998 12.3004 11.8183 12.3004C11.8419 12.3005 11.8553 12.3046 11.8631 12.3156C11.8736 12.3302 11.8799 12.331 11.9679 12.3231C12.0501 12.3156 12.0663 12.3162 12.1034 12.3289C12.1298 12.3379 12.1588 12.3415 12.1808 12.3391C12.2438 12.332 12.3306 12.2805 12.3433 12.2426C12.3448 12.238 12.3676 12.2299 12.394 12.2246C12.4576 12.2119 12.4604 12.198 12.401 12.1906C12.3753 12.1874 12.3366 12.178 12.3151 12.1695C12.2935 12.161 12.264 12.1539 12.2495 12.1539C12.2175 12.1539 12.1874 12.1739 12.1874 12.1945C12.1874 12.208 12.1921 12.2094 12.23 12.2055C12.2656 12.2019 12.276 12.2039 12.2948 12.2187C12.3071 12.2285 12.3154 12.24 12.3128 12.2441C12.3044 12.2577 12.23 12.2916 12.1971 12.2969C12.1751 12.3004 12.1574 12.298 12.1401 12.2891C12.1113 12.2741 12.0688 12.2719 12.0608 12.2847C12.0574 12.2904 12.0483 12.2867 12.0358 12.275L12.0163 12.2566L11.9721 12.275C11.9273 12.2936 11.9108 12.2929 11.9108 12.2715C11.9108 12.2617 11.8976 12.2606 11.8315 12.2649C11.7586 12.2696 11.751 12.2684 11.7374 12.2531C11.7248 12.2391 11.7245 12.2342 11.7335 12.2199C11.7418 12.2066 11.7418 12.2009 11.7339 12.193C11.726 12.1851 11.7158 12.1852 11.687 12.193C11.6145 12.2124 11.594 12.2015 11.594 12.1449C11.594 12.1109 11.5745 12.0902 11.5495 12.0899ZM11.5315 12.1419C11.5354 12.1419 11.5386 12.1442 11.5436 12.1492C11.55 12.1556 11.5534 12.1667 11.5506 12.1739C11.5441 12.1907 11.5134 12.1901 11.5069 12.1731C11.5038 12.1649 11.5078 12.1556 11.517 12.1489C11.5235 12.1441 11.5276 12.1417 11.5315 12.1419Z" fill="#F7E017"/>
<path d="M11.4012 12.1958C11.4453 12.1678 11.4443 12.17 11.4507 12.0922C11.4551 12.0373 11.4543 12.0332 11.4394 12.0332C11.4178 12.0332 11.4066 12.057 11.4066 12.1022C11.4066 12.1312 11.4021 12.1442 11.3866 12.1596C11.3498 12.1963 11.2586 12.1796 11.2471 12.134C11.2432 12.1183 11.2482 12.1042 11.2673 12.0771C11.3072 12.0205 11.2982 12.0066 11.2493 12.0496C11.2157 12.079 11.2097 12.0798 11.2161 12.0545C11.222 12.0311 11.2097 12.0218 11.1823 12.0287C11.1683 12.0322 11.1607 12.041 11.1573 12.058C11.1541 12.0746 11.1464 12.0838 11.1332 12.0871C11.1111 12.0927 11.0733 12.0717 11.0733 12.0538C11.0733 12.0406 11.1298 11.9716 11.2023 11.8963C11.2297 11.8678 11.2521 11.8413 11.2521 11.8373C11.2521 11.8333 11.2375 11.8301 11.2196 11.8301C11.1935 11.8301 11.1871 11.833 11.1871 11.8451C11.1871 11.8533 11.1506 11.9012 11.1058 11.9516C11.0126 12.0566 11.0048 12.0785 11.051 12.1065C11.0881 12.1292 11.1357 12.1275 11.1731 12.1021L11.2033 12.0815V12.1188C11.2033 12.1666 11.2128 12.1837 11.2503 12.2036C11.2975 12.2285 11.3544 12.2255 11.4012 12.1958Z" fill="#F7E017"/>
<path d="M13.3583 11.5469C13.3237 11.5675 13.3508 11.6109 13.356 11.6397C13.3419 11.6791 13.2914 11.6897 13.2546 11.697C13.2024 11.7056 13.1654 11.7492 13.1456 11.7956C13.1348 11.8257 13.1089 11.8724 13.0806 11.8266C13.056 11.8016 13.0108 11.7819 12.9817 11.811C12.9596 11.832 12.954 11.8629 12.9458 11.891C12.9328 11.8694 12.9269 11.8373 12.8993 11.8305C12.8552 11.8367 12.8712 11.8923 12.8919 11.9152C12.9107 11.9419 12.9288 11.9772 12.9104 12.0089C12.8941 12.0471 12.8377 12.0728 12.8047 12.0402C12.7738 12.0239 12.7944 11.9656 12.764 11.9624C12.7489 11.9733 12.7477 12.0342 12.7236 12.0012C12.7062 11.973 12.7154 11.9343 12.6942 11.9089C12.669 11.912 12.6488 11.9553 12.6572 11.9785C12.6907 12.0237 12.7045 12.0805 12.7176 12.1344C12.7257 12.1559 12.7164 12.1997 12.7366 12.2082C12.7506 12.1735 12.7376 12.1341 12.7486 12.099C12.7813 12.0949 12.8177 12.1099 12.852 12.1019C12.9011 12.0955 12.9391 12.0541 12.9563 12.01C12.9615 11.9768 12.9553 11.9431 12.9544 11.9098C12.9932 11.9158 13.0335 11.9157 13.0708 11.9283C13.0893 11.9566 13.065 11.9964 13.0598 12.0274C13.0404 12.0905 12.9909 12.1364 12.9428 12.1786C12.9226 12.1905 12.9199 12.2221 12.9497 12.2051C13.0143 12.1774 13.0625 12.1188 13.0903 12.0554C13.1105 12.0067 13.0942 11.9524 13.1074 11.9025C13.127 11.865 13.174 11.8729 13.2087 11.873C13.2447 11.8717 13.2754 11.8297 13.2634 11.7948C13.252 11.7542 13.2949 11.7346 13.3242 11.7201C13.3631 11.7005 13.393 11.6606 13.39 11.6156C13.3884 11.5926 13.3895 11.549 13.3583 11.5469L13.3583 11.5469ZM13.2204 11.7812C13.2621 11.7923 13.2129 11.8719 13.1907 11.8215C13.1839 11.8022 13.2001 11.7806 13.2204 11.7812ZM13.0271 11.8382C13.0813 11.8351 13.0618 11.9143 13.016 11.8783C12.9922 11.8664 13.0001 11.8368 13.0271 11.8382Z" fill="#F7E017"/>
<path d="M11.0644 12.1444C11.0659 12.1365 11.0619 12.1309 11.0547 12.1309C11.0396 12.1309 11.0305 12.1441 11.0376 12.1556C11.045 12.1675 11.0612 12.1607 11.0644 12.1444Z" fill="#F7E017"/>
<path d="M11.6993 12.0731C11.6993 12.0615 11.6949 12.0571 11.6852 12.059C11.6639 12.063 11.6616 12.09 11.6824 12.09C11.6941 12.09 11.6993 12.0848 11.6993 12.0731Z" fill="#F7E017"/>
<path d="M10.9134 11.6902C10.888 11.685 10.872 11.7065 10.8634 11.727C10.8444 11.7588 10.8212 11.7914 10.7872 11.8083C10.7627 11.8151 10.736 11.8058 10.7149 11.7932C10.6897 11.7807 10.6955 11.7504 10.6847 11.7294C10.6664 11.7151 10.6342 11.7356 10.6349 11.7578C10.6329 11.7877 10.6608 11.8049 10.6839 11.8164C10.7036 11.8285 10.7321 11.8352 10.74 11.8596C10.7395 11.8803 10.7478 11.904 10.7731 11.896C10.8013 11.8956 10.8086 11.93 10.7972 11.9506C10.7856 11.9739 10.7778 12.0011 10.7833 12.0271C10.7968 12.0384 10.8106 12.0079 10.8204 11.9992C10.827 11.9904 10.8337 11.9815 10.8403 11.9727C10.8903 11.9754 10.9402 11.9818 10.9903 11.98C11.0259 11.9793 11.0563 11.9573 11.0789 11.9315C11.111 11.898 11.1373 11.8587 11.1739 11.8298C11.2 11.8234 11.186 11.7743 11.1588 11.7885C11.1342 11.7977 11.1265 11.8254 11.1095 11.8431C11.0806 11.8781 11.0511 11.9136 11.0146 11.9411C10.9881 11.9521 10.9575 11.9473 10.9302 11.9411C10.9188 11.9311 10.9528 11.923 10.9576 11.912C10.9732 11.8963 10.9918 11.8815 11.0009 11.8609C10.9922 11.842 10.9656 11.8405 10.9469 11.8401C10.9009 11.8456 10.8657 11.8843 10.8192 11.8879C10.7838 11.8892 10.8022 11.8509 10.8181 11.8379C10.8493 11.8009 10.8829 11.7661 10.9155 11.7303C10.9247 11.7192 10.9581 11.7086 10.9367 11.693C10.9293 11.6904 10.9212 11.6904 10.9134 11.6902L10.9134 11.6902ZM10.936 11.8774C10.9592 11.8904 10.9212 11.9118 10.9052 11.9089C10.8841 11.9152 10.8838 11.8937 10.9024 11.8895C10.9129 11.884 10.924 11.8783 10.936 11.8774ZM10.8645 11.9262C10.8777 11.9259 10.9055 11.9386 10.8794 11.9468C10.8613 11.9608 10.8409 11.9325 10.8645 11.9262Z" fill="#F7E017"/>
<path d="M11.4273 11.9592C11.4273 11.9416 11.3957 11.9441 11.3922 11.962C11.39 11.9735 11.3936 11.9762 11.4083 11.9741C11.4188 11.9726 11.4273 11.966 11.4273 11.9592Z" fill="#F7E017"/>
<path d="M12.8279 11.8354C12.8311 11.8186 12.8076 11.8073 12.7953 11.8197C12.7829 11.8321 12.7943 11.8556 12.811 11.8523C12.8188 11.8508 12.8264 11.8432 12.8279 11.8354Z" fill="#F7E017"/>
<path d="M10.648 11.6636C10.67 11.6447 10.6703 11.6434 10.6608 11.6019C10.6473 11.5438 10.6481 11.5376 10.6703 11.5321C10.6983 11.5249 10.7694 11.5631 10.7851 11.5936C10.7974 11.6172 10.797 11.6188 10.7763 11.6381C10.7539 11.6587 10.754 11.6828 10.7764 11.6828C10.7949 11.6828 10.846 11.6344 10.846 11.6171C10.846 11.5929 10.7893 11.5359 10.7444 11.5151C10.7166 11.5021 10.6889 11.4961 10.6568 11.4959C10.5993 11.4959 10.5915 11.5083 10.607 11.5752C10.6253 11.6536 10.6005 11.6642 10.5374 11.6051C10.4905 11.5612 10.472 11.5156 10.4723 11.4437C10.4724 11.3666 10.5019 11.3284 10.5684 11.3194C10.6125 11.3136 10.6114 11.3032 10.566 11.2964C10.4998 11.2864 10.4438 11.3307 10.4225 11.4097C10.3989 11.4973 10.453 11.6041 10.5488 11.6591C10.5989 11.6878 10.6189 11.6887 10.648 11.6636Z" fill="#F7E017"/>
<path d="M13.2581 11.5667C13.2635 11.5613 13.2679 11.5492 13.2679 11.5398C13.2679 11.5304 13.277 11.5103 13.2881 11.4952C13.2994 11.48 13.3085 11.4645 13.3085 11.4608C13.3085 11.4454 13.2831 11.4459 13.2631 11.4618C13.2426 11.4778 13.2272 11.4782 13.2272 11.4625C13.2272 11.4587 13.237 11.4507 13.249 11.4448C13.2787 11.4303 13.2812 11.4159 13.2561 11.4044C13.2239 11.3898 13.1915 11.4165 13.1881 11.4607C13.186 11.4902 13.1884 11.4953 13.2111 11.5087C13.2319 11.5209 13.2357 11.5274 13.2322 11.5449C13.2262 11.5753 13.2389 11.5859 13.2581 11.5667Z" fill="#F7E017"/>
<path d="M13.5039 11.5404C13.5219 11.5242 13.5365 11.5059 13.5365 11.4997C13.5365 11.4936 13.552 11.4774 13.571 11.4637C13.6249 11.425 13.6367 11.3859 13.6126 11.3257C13.6032 11.3021 13.5737 11.2695 13.5096 11.2117C13.4604 11.1672 13.415 11.1309 13.4091 11.1309C13.3916 11.1309 13.3947 11.1952 13.4125 11.2009C13.4445 11.2111 13.4639 11.2242 13.5142 11.2696C13.5727 11.3225 13.5997 11.3719 13.585 11.3994C13.5709 11.426 13.5521 11.4177 13.5005 11.3624C13.4734 11.3332 13.4465 11.3095 13.441 11.3095C13.435 11.3096 13.4307 11.3201 13.4307 11.3349C13.4307 11.3534 13.4406 11.371 13.4674 11.4007C13.511 11.4492 13.5152 11.4784 13.4825 11.5041C13.4707 11.5134 13.4586 11.521 13.4556 11.521C13.4527 11.521 13.4431 11.5065 13.4344 11.4889C13.4161 11.4519 13.3045 11.334 13.2877 11.334C13.2801 11.334 13.2764 11.3435 13.2764 11.3622C13.2764 11.3849 13.2809 11.3929 13.2989 11.4021C13.321 11.4136 13.3757 11.4687 13.4307 11.5352C13.4465 11.5542 13.462 11.5696 13.4654 11.5697C13.4686 11.5697 13.486 11.5565 13.5039 11.5404Z" fill="#F7E017"/>
<path d="M13.6132 11.2263C13.606 11.203 13.4562 11.0488 13.4409 11.0488C13.4329 11.0488 13.4304 11.0583 13.4322 11.0828C13.4344 11.1126 13.4376 11.1177 13.4581 11.1231C13.4709 11.1265 13.5104 11.1575 13.5457 11.1918C13.581 11.2262 13.612 11.2523 13.6145 11.2497C13.617 11.2472 13.6165 11.2367 13.6132 11.2263Z" fill="#F7E017"/>
<path d="M12.7193 12.9618C12.7193 12.9672 12.717 12.9724 12.7128 12.9762C12.7086 12.9801 12.703 12.9822 12.6971 12.9822C12.6912 12.9822 12.6855 12.9801 12.6813 12.9762C12.6771 12.9724 12.6748 12.9672 12.6748 12.9618C12.6748 12.9564 12.6771 12.9512 12.6813 12.9474C12.6855 12.9436 12.6912 12.9414 12.6971 12.9414C12.703 12.9414 12.7086 12.9436 12.7128 12.9474C12.717 12.9512 12.7193 12.9564 12.7193 12.9618Z" fill="#F7E017"/>
<path d="M12.7974 12.9345C12.7974 12.9399 12.7951 12.9451 12.7909 12.9489C12.7868 12.9527 12.7811 12.9549 12.7752 12.9549C12.7693 12.9549 12.7636 12.9527 12.7594 12.9489C12.7553 12.9451 12.7529 12.9399 12.7529 12.9345C12.7529 12.9291 12.7553 12.9239 12.7594 12.92C12.7636 12.9162 12.7693 12.9141 12.7752 12.9141C12.7811 12.9141 12.7868 12.9162 12.7909 12.92C12.7951 12.9239 12.7974 12.9291 12.7974 12.9345Z" fill="#F7E017"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M20 10H4V18H20V10Z" fill="#00966E"/>
<path d="M20 14H4V18H20V14Z" fill="#D62612"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#009E49"/>
<path d="M20 6H4V12H20V6Z" fill="#EF2B2D"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M12 9L12.6735 11.0729H14.8532L13.0898 12.3541L13.7634 14.4271L12 13.1459L10.2366 14.4271L10.9102 12.3541L9.14683 11.0729H11.3265L12 9Z" fill="#FCD116"/>
</svg>

After

Width:  |  Height:  |  Size: 506 B

View File

@ -0,0 +1,21 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6H21L3 18H21L3 6Z" fill="#CE1126"/>
<path d="M3 6V18L21 6V18L3 6Z" fill="#1EB53A"/>
<path d="M3 6L21 18L3 6ZM21 6L3 18L21 6Z" fill="black"/>
<path d="M3 6L21 18M21 6L3 18" stroke="white" stroke-width="0.02"/>
<path d="M12.0004 15.1133C13.6904 15.1133 15.0604 13.718 15.0604 11.9967C15.0604 10.2754 13.6904 8.88 12.0004 8.88C10.3104 8.88 8.94043 10.2754 8.94043 11.9967C8.94043 13.718 10.3104 15.1133 12.0004 15.1133Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_114331)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6L12 12L4 18V6ZM20 6L12 12L20 18V6Z" fill="#18B637"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6L12 12L20 6H4ZM4 18L12 12L20 18H4Z" fill="#CF0921"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 6H18.5093L4 16.882V18H5.49067L20 7.11797V6Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 11.9995C15 12.7953 14.6839 13.5585 14.1213 14.1212C13.5587 14.6839 12.7956 15 12 15C11.2044 15 10.4413 14.6839 9.87868 14.1212C9.31607 13.5585 9 12.7953 9 11.9995C9 11.204 9.31596 10.441 9.87838 9.87853C10.4408 9.31602 11.2036 9 11.999 9C12.7944 9 13.5572 9.31602 14.1196 9.87853C14.682 10.441 14.998 11.204 14.998 11.9995H15Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6V7.11797L18.5093 18H20V16.882L5.49067 6H4Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7607 10.6859L12.2801 10.693L12.0311 11.0773L11.7845 10.693L11.3064 10.6836L11.538 10.2875L11.3089 9.89375L11.787 9.88437L12.036 9.5L12.2826 9.88672L12.7607 9.89609L12.5291 10.2898L12.7607 10.6859ZM11.152 13.3016L10.6739 13.3086L10.4249 13.693L10.1783 13.3086L9.7002 13.2992L9.93179 12.9031L9.70269 12.5094L10.1808 12.5L10.4298 12.1156L10.6764 12.5023L11.1545 12.5117L10.9229 12.9055L11.152 13.3016ZM14.4042 13.3016L13.9261 13.3086L13.6771 13.693L13.4281 13.3086L12.9524 13.2992L13.184 12.9031L12.9524 12.5094L13.4306 12.5L13.6796 12.1156L13.9286 12.5023L14.4067 12.5117L14.1727 12.9055L14.4042 13.3016Z" fill="#CF0921" stroke="#18B637" stroke-width="0.1"/>
</g>
<defs>
<clipPath id="clip0_14099_114331">
<rect width="17" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,18 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#003893"/>
<path d="M20 12H4V15H20V12Z" fill="white"/>
<path d="M20 13H4V14H20V13Z" fill="#CF2027"/>
<path d="M10.1201 9.89844L9.97179 10.4691L10.2 10.5618" fill="#F7D116"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_114347)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.99258 11.4755H23.883V16.3165H3.99023L3.99258 11.4755Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.00684 6H23.8878V12.0301H4.00684V6ZM4.01389 15.0687H24.0382V18.032H4.01389V15.0687Z" fill="#081873"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.01367 13.1111H23.8947V14.0417H4.01367V13.1111Z" fill="#DE3929"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.97136 15.3812L10.1265 15.8606H10.6294L10.2205 16.1591L10.3756 16.6408L9.97136 16.34L9.56246 16.6385L9.71991 16.1567L9.31101 15.8583H9.81626M14.3424 11.8844L14.4998 12.3662H15.0004L14.5915 12.6623L14.7466 13.144L14.3377 12.8456L13.9288 13.144L14.0839 12.6623L13.675 12.3662H14.1826M8.96556 13.8796L9.12066 14.3613H9.62591L9.21936 14.6621L9.37681 15.1415L8.96791 14.8454L8.55901 15.1415L8.71411 14.6621L8.30521 14.3637H8.81046M14.3424 13.7433L14.4998 14.2227H15.0004L14.5915 14.5211L14.7466 15.0005L14.3377 14.7044L13.9288 15.0029L14.0839 14.5211L13.675 14.2227H14.1826M13.2308 10.4227L13.3883 10.9021H13.8959L13.487 11.2006L13.6421 11.6823L13.2332 11.3839L12.8243 11.6823L12.9817 11.2006L12.5705 10.9021H13.0781M11.5623 9.8399L11.7198 10.3217H12.225L11.8161 10.6178L11.9712 11.0995L11.5623 10.8034L11.1534 11.0995L11.3109 10.6178L10.902 10.3217H11.4049M9.88911 10.3898L10.0466 10.8716H10.5518L10.1429 11.1677L10.3004 11.6494L9.88911 11.351L9.48021 11.6494L9.63766 11.1677L9.22876 10.8716H9.73636M8.91856 11.8868L9.07366 12.3685H9.58126L9.17001 12.6646L9.32746 13.1464L8.91856 12.8479L8.50966 13.1464L8.66476 12.6646L8.25586 12.3685H8.76111M11.5623 15.8794L11.7198 16.3612H12.225L11.8161 16.6573L11.9736 17.139L11.5623 16.8406L11.1534 17.139L11.3109 16.6573L10.902 16.3612H11.4049M13.3366 15.3812L13.4917 15.8606H13.9969L13.5904 16.1591L13.7478 16.6408L13.3389 16.3424L12.9277 16.6408L13.0851 16.1591L12.6762 15.8606H13.1815" fill="#FFCE08"/>
</g>
<defs>
<clipPath id="clip0_14099_114347">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,118 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#032EA1"/>
<path d="M20 9H4V15H20V9Z" fill="#E00025"/>
<path d="M10.1592 11.6554H13.5359V12.969H10.1592V11.6554Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.4687 12.3798H13.3623V12.8746H13.4687V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.5359 12.1369H10.1592V12.2896H13.5359V12.1369Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.5359 11.9302H10.1592V12.0649H13.5359V11.9302Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.5359 11.7235H10.1592V11.8542H13.5359V11.7235Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M11.1552 12.3798H11.0488V12.8746H11.1552V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.6084 12.3798H12.502V12.8746H12.6084V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.2929 12.3798H10.1865V12.8746H10.2929V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.5009 12.3798H10.3945V12.8746H10.5009V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.7236 12.3798H10.6172V12.8746H10.7236V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.9463 12.3798H10.8398V12.8746H10.9463V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.8105 12.3798H12.7041V12.8746H12.8105V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.0332 12.3798H12.9268V12.8746H13.0332V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.2558 12.3798H13.1494V12.8746H13.2558V12.3798Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M8.83887 13.038C8.8911 13.0111 8.95069 12.9484 8.97017 12.8784H14.6991C14.7186 12.9484 14.7782 13.0111 14.8304 13.038H8.83887Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7618 9.65383C11.7618 9.65383 11.7575 9.53045 11.8286 9.52911C11.8996 9.53045 11.8953 9.65383 11.8953 9.65383H11.7618Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.3908 11.29V11.1239C11.3884 11.0408 11.3089 11.0348 11.3065 10.9743C11.3065 10.9743 11.2963 10.8835 11.3199 10.8421C11.3521 10.9635 11.4106 10.9412 11.4106 10.8912C11.4106 10.8477 11.3775 10.8072 11.3095 10.7013C11.2878 10.6675 11.3012 10.5615 11.3317 10.5237C11.3435 10.6158 11.357 10.6599 11.3961 10.6599C11.42 10.6599 11.4395 10.6441 11.4395 10.598C11.4395 10.5393 11.4001 10.5097 11.3808 10.4562C11.3583 10.3939 11.3738 10.3304 11.4113 10.2949C11.4273 10.3857 11.4226 10.422 11.4625 10.422C11.543 10.3962 11.4625 10.2784 11.4453 10.2487C11.4255 10.214 11.4719 10.1449 11.4719 10.1449C11.4975 10.2256 11.5057 10.2321 11.5333 10.2247C11.5681 10.2152 11.5637 10.163 11.5211 10.1208C11.4943 10.0941 11.4972 10.0544 11.526 10.0225C11.5549 10.0797 11.5919 10.0762 11.5955 10.0423L11.5722 9.91049H12.0842L12.0588 10.038C12.0515 10.0744 12.1002 10.0824 12.1305 10.0225C12.1593 10.0544 12.1622 10.0941 12.1353 10.1208C12.0928 10.163 12.0883 10.2152 12.1232 10.2247C12.1508 10.2321 12.159 10.2256 12.1846 10.1449C12.1846 10.1449 12.2262 10.192 12.2112 10.2487C12.194 10.2784 12.1135 10.3962 12.194 10.422C12.2339 10.422 12.2292 10.3857 12.2452 10.2949C12.2827 10.3304 12.2982 10.3939 12.2757 10.4562C12.2563 10.5097 12.217 10.5393 12.217 10.598C12.217 10.6441 12.2365 10.6599 12.2604 10.6599C12.2995 10.6599 12.313 10.6158 12.3248 10.5237C12.3553 10.5615 12.3687 10.6675 12.347 10.7013C12.279 10.8071 12.2459 10.8477 12.2459 10.8912C12.2459 10.9412 12.3044 10.9635 12.3365 10.8421C12.3602 10.8835 12.3499 10.9743 12.3499 10.9743C12.3476 11.0348 12.2681 11.0408 12.2657 11.1239V11.29L11.3908 11.29Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.6055 9.90839L11.5938 9.81464H12.0637L12.0519 9.90839H11.6055Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.6371 9.81284L11.627 9.73578H12.0306L12.0205 9.81284H11.6371Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7011 9.73401L11.6943 9.65695H11.9631L11.9564 9.73401H11.7011Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.6806 13.0357C12.6205 13.0123 12.5329 12.9482 12.5329 12.8837V12.1547L12.6112 12.054L11.0452 12.054L11.1203 12.1548V12.8837C11.1203 12.9482 11.0601 13.0123 11 13.0357L12.6806 13.0357Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.4297 12.38H11.3232V12.8748H11.4297V12.38Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.3301 12.38H12.2236V12.8748H12.3301V12.38Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M11.0176 11.2251V11.6646V11.8749V12.0548H12.6206V11.8761L12.6229 11.2251C12.5573 11.2512 12.5458 11.3113 12.5458 11.3113V11.6646H11.0993V11.3113C11.0993 11.3113 11.0831 11.2512 11.0176 11.2251L11.0176 11.2251Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.4029 13.0374C12.3505 13.0139 12.2364 12.9498 12.2364 12.8853V12.0695C12.2476 12.024 12.3087 11.9971 12.348 11.9688H11.285C11.3356 11.9958 11.392 12.0183 11.4122 12.0695V12.8853C11.4122 12.9498 11.3219 13.0139 11.2695 13.0374H12.4029Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.5455 11.9765L12.5454 11.3889L12.3997 11.3889V11.3317H11.2473V11.3889L11.1016 11.3889L11.1016 11.9765L12.5455 11.9765Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.1733 13.0361C12.1219 13.0127 12.0472 12.9485 12.0472 12.884V12.1876L12.0893 12.1243H11.5644L11.6065 12.1876V12.884C11.6065 12.9485 11.5318 13.0127 11.4805 13.0361L12.1733 13.0361Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.6934 12.1243H11.9594V13.0356H11.6934V12.1243Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.0997 11.9249C12.1003 11.8649 12.2729 11.8622 12.3617 11.8111H11.2949C11.3838 11.8622 11.5523 11.8664 11.5523 11.9249L11.5884 12.0414L12.0301 12.0593L12.0997 11.9249Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.3083 11.2902C12.3083 11.1433 12.3144 11.0866 12.359 11.0866L12.359 11.554C12.2495 11.5942 12.1713 11.7355 12.1713 11.7355L11.4826 11.7355C11.4826 11.7355 11.4044 11.5942 11.2949 11.554V11.0866C11.35 11.0866 11.3504 11.1458 11.3504 11.2902H12.3083Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.3584 11.2294C12.3584 11.0609 12.5023 11.0419 12.5023 11.0419V11.1919C12.4476 11.1895 12.4211 11.2392 12.4211 11.3132C12.4211 11.3872 12.4653 11.3884 12.4653 11.3884V11.8141H12.3584V11.2294Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.2953 11.2294C11.2953 11.0609 11.1514 11.0419 11.1514 11.0419V11.1919C11.2062 11.1895 11.2326 11.2392 11.2326 11.3132C11.2326 11.3872 11.1885 11.3884 11.1885 11.3884V11.8141H11.2953V11.2294Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.5791 10.0682H12.0873" stroke="black" stroke-width="0.03"/>
<path d="M11.5186 10.228H12.1393" stroke="black" stroke-width="0.03"/>
<path d="M11.459 10.424H12.198" stroke="black" stroke-width="0.03"/>
<path d="M11.3955 10.6605H12.2719" stroke="black" stroke-width="0.03"/>
<path d="M11.375 10.9332H12.2778" stroke="black" stroke-width="0.03"/>
<path d="M11.1016 11.8175H12.5455" stroke="black" stroke-width="0.03"/>
<path d="M12.0947 11.8175H11.5596V12.0163H12.0947V11.8175Z" stroke="black" stroke-width="0.03"/>
<path d="M11.4922 11.3784C11.5809 11.4861 11.5727 11.6688 11.5717 11.7765H12.0863C12.0853 11.6688 12.077 11.4861 12.1658 11.3784H11.4922Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7815 10.1439L11.7109 10.1071V10.0022C11.7398 10.011 11.7721 10.0146 11.7753 10.061C11.7853 9.9947 11.8034 9.99794 11.8319 9.97211C11.8603 9.99795 11.8784 9.9947 11.8884 10.061C11.8916 10.0146 11.9239 10.011 11.9528 10.0022V10.1071L11.8823 10.1439H11.7815Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7773 10.3159L11.6602 10.2345V10.1379C11.7012 10.1475 11.7473 10.1514 11.7518 10.2023C11.7661 10.1296 11.7919 10.0921 11.8324 10.0637C11.8729 10.0921 11.8986 10.1296 11.9129 10.2023C11.9174 10.1514 11.9635 10.1475 12.0046 10.1379V10.2345L11.8875 10.3159H11.7773Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7684 10.5855L11.6338 10.466V10.3239C11.681 10.338 11.734 10.3438 11.7392 10.4186C11.7556 10.3118 11.7852 10.2566 11.8318 10.215C11.8784 10.2566 11.908 10.3118 11.9244 10.4186C11.9296 10.3438 11.9826 10.338 12.0298 10.3239V10.466L11.8952 10.5855H11.7684Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.0171 10.7434L11.8954 10.9137H11.7575L11.6357 10.7434H12.0171Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.5654 11.0289C11.6263 11.0626 11.6488 11.1296 11.6553 11.2555H11.9981C12.0046 11.1296 12.0271 11.0626 12.088 11.0289H11.5654Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.0926 10.7436V10.5726C12.0348 10.5887 11.9973 10.6233 11.9806 10.6703C11.9806 10.6135 11.9067 10.4826 11.8261 10.4174C11.7453 10.4904 11.6701 10.6088 11.6716 10.6703C11.6579 10.6255 11.6174 10.5887 11.5596 10.5726V10.7436L12.0926 10.7436Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.1185 11.0292L12.1185 10.8581C12.0551 10.8742 12.014 10.9088 11.9957 10.9558C11.9957 10.899 11.9147 10.7681 11.8263 10.7029C11.7377 10.7759 11.6553 10.8943 11.657 10.9558C11.6419 10.9111 11.5976 10.8742 11.5342 10.8581V11.0292L12.1185 11.0292Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.1899 11.3799V11.1826C12.111 11.2032 12.0619 11.2622 12.0371 11.2966C12.0371 11.1897 11.9178 11.0269 11.8264 10.9735C11.7326 11.0283 11.6157 11.1966 11.6157 11.2966C11.5902 11.2624 11.5418 11.2032 11.4629 11.1826V11.3799H12.1899Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.1474 11.8183V11.6155C12.0778 11.643 12.057 11.7109 12.035 11.757C12.0436 11.5512 11.9205 11.3301 11.8266 11.274C11.7328 11.3301 11.6073 11.5559 11.6182 11.757C11.5957 11.7112 11.5755 11.643 11.5059 11.6155V11.8183L12.1474 11.8183Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M12.0986 12.1256V11.9227C12.0257 11.9402 12.0212 11.9674 11.998 12.0129C12.0066 11.89 11.9205 11.7498 11.8267 11.6937C11.7328 11.7498 11.6467 11.89 11.6553 12.0129C11.6321 11.9674 11.6293 11.9402 11.5547 11.9227V12.1256H12.0986Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.97067 12.8779V12.2647C8.9508 12.1866 8.88524 12.1175 8.83594 12.1037V11.5639L8.94697 11.6246L9.07371 12.1889V12.8779L8.97067 12.8779Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.97067 12.8794V12.2639C8.9508 12.1858 8.88524 12.1167 8.83594 12.1029V11.5256C8.91047 11.5256 8.94697 11.6238 8.94697 11.6238L9.07371 12.1881V12.8747L8.97067 12.8794Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.8916 13.0357C8.94293 13.0123 9.01767 12.9482 9.01767 12.8837V12.1172L8.9825 12.054H10.2739L10.2235 12.1172V12.8837C10.2235 12.9482 10.2749 13.0123 10.3262 13.0357H8.8916Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M10.0657 13.0357C10.0144 13.0123 9.93965 12.9482 9.93965 12.8837V12.1548L10.047 12.054L9.16908 12.054L9.27646 12.1548V12.8837C9.27646 12.9482 9.20172 13.0123 9.15039 13.0357H10.0657Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.94279 13.0361C9.89146 13.0127 9.81672 12.9485 9.81672 12.884V12.2251L9.88701 12.1243H9.32922L9.39951 12.2251V12.884C9.39951 12.9485 9.32477 13.0127 9.27344 13.0361H9.94279Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.47461 12.1243H9.74113L9.74113 13.0361H9.47461L9.47461 12.1243Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.21872 12.38H9.1123V12.8748H9.21872V12.38Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.1308 12.38H10.0244V12.8748H10.1308V12.38Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M9.02148 11.5447H9.14968V12.052H9.02148V11.5447Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M9.02148 11.4489H9.14892V11.543H9.02148V11.4489Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M10.0752 11.6534H10.258V12.045H10.0752V11.6534Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M9.14746 12.0482V11.18C9.18402 11.18 9.18966 11.3072 9.27354 11.3072C9.31721 11.3072 9.31257 11.2545 9.28805 11.2116C9.26634 11.1736 9.23947 11.121 9.27597 11.0232C9.30098 11.0981 9.36831 11.1218 9.35587 11.0749C9.33449 10.9942 9.27295 10.981 9.31913 10.8558C9.33516 10.9602 9.40141 10.9556 9.38532 10.8949C9.3672 10.8265 9.32974 10.7985 9.37596 10.7021C9.40183 10.8116 9.43684 10.8052 9.43684 10.7372C9.43684 10.6368 9.43303 10.5285 9.56155 10.4883C9.56155 10.4883 9.56897 10.3963 9.61532 10.3963C9.66168 10.3963 9.6691 10.4883 9.6691 10.4883C9.79762 10.5285 9.7938 10.6368 9.7938 10.7372C9.7938 10.8051 9.82881 10.8116 9.85469 10.7021C9.9009 10.7985 9.86345 10.8265 9.84532 10.8949C9.82923 10.9556 9.89548 10.9602 9.91152 10.8558C9.9577 10.981 9.89615 10.9942 9.87477 11.0749C9.86233 11.1218 9.92966 11.0981 9.95467 11.0232C9.99118 11.121 9.96431 11.1736 9.9426 11.2116C9.91808 11.2545 9.91344 11.3072 9.9571 11.3072C10.041 11.3072 10.0466 11.18 10.0832 11.18V12.0482H9.14746Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.94629 11.3932L8.94629 12.0556H9.0208L9.0208 11.3915C8.99394 11.3778 8.96873 11.3757 8.94629 11.3932L8.94629 11.3932Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.94922 11.8217C9.04157 11.8695 9.13304 11.9247 9.1562 12.0555H8.94922V11.8217Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M10.2295 11.6232L10.2295 12.0554H10.2899V11.6221C10.271 11.6132 10.2453 11.6118 10.2295 11.6232L10.2295 11.6232Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M10.29 11.8175C10.1976 11.8652 10.1062 11.9204 10.083 12.0513H10.29V11.8175Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.68039 10.8088L9.73422 10.763V10.7045C9.71453 10.7064 9.70378 10.7132 9.68924 10.7325C9.67687 10.6937 9.64966 10.6634 9.6132 10.6445C9.57675 10.6634 9.54955 10.6923 9.53717 10.7311C9.52263 10.7119 9.51188 10.7064 9.49219 10.7045V10.763L9.54602 10.8088L9.68039 10.8088Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.7092 10.9555L9.73422 10.9008V10.8246C9.71453 10.8266 9.70378 10.8335 9.68924 10.8531C9.67687 10.8137 9.64966 10.7829 9.6132 10.7639C9.57675 10.7829 9.54955 10.8123 9.53717 10.8517C9.52263 10.8321 9.51188 10.8266 9.49219 10.8246V10.9008L9.51721 10.9555L9.7092 10.9555Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.71315 11.1551L9.79311 11.0565V10.9592C9.76386 10.9625 9.7479 10.9743 9.72629 11.0074C9.70792 10.9407 9.66751 10.9262 9.61335 10.8938C9.5592 10.9262 9.51879 10.9384 9.50041 11.005C9.47881 10.9719 9.46285 10.9626 9.43359 10.9592V11.0565L9.51356 11.1551H9.71315Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.73575 11.3505C9.73575 11.3505 9.82893 11.2683 9.83446 11.2232V11.1192C9.79835 11.1235 9.76419 11.1329 9.73752 11.1757C9.71483 11.0896 9.6794 11.0656 9.61254 11.0238C9.54569 11.0656 9.51026 11.0896 9.48757 11.1757C9.4609 11.1329 9.42674 11.1235 9.39062 11.1192V11.2232C9.40239 11.2683 9.48934 11.3505 9.48934 11.3505H9.73575Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.77578 11.7094C9.77578 11.7094 9.90341 11.5665 9.90633 11.5109V11.3487C9.85857 11.3554 9.8134 11.3886 9.77812 11.4552C9.74811 11.321 9.70126 11.2274 9.61283 11.1623C9.52441 11.2274 9.47756 11.321 9.44755 11.4552C9.41227 11.3886 9.3671 11.3554 9.31934 11.3487V11.5109C9.3285 11.5665 9.44989 11.7094 9.44989 11.7094H9.77578Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.77578 11.9236C9.77578 11.9236 9.88486 11.8113 9.90633 11.7626V11.6004C9.85857 11.6071 9.8134 11.6403 9.77812 11.707C9.74811 11.5727 9.70126 11.4958 9.61283 11.4308C9.52441 11.4958 9.47756 11.5727 9.44755 11.707C9.41227 11.6403 9.3671 11.6071 9.31934 11.6004V11.7626C9.34705 11.8113 9.44989 11.9236 9.44989 11.9236H9.77578Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.81961 12.0484C9.78777 11.9084 9.76039 11.8045 9.60707 11.6992C9.45375 11.8045 9.42638 11.9084 9.39453 12.0484H9.81961Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.89872 12.1251V11.9223C9.82909 11.9499 9.76617 11.9907 9.74298 12.0361C9.71705 11.9235 9.66711 11.8739 9.60489 11.8058C9.54268 11.8739 9.50101 11.9235 9.47509 12.0361C9.45189 11.9907 9.38896 11.9499 9.31934 11.9223L9.31934 12.1251L9.89872 12.1251Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.5351 12.881V12.2678C13.5153 12.1897 13.4497 12.1206 13.4004 12.1068V11.567L13.5114 11.6277L13.6382 12.192V12.881L13.5351 12.881Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.5351 12.8818V12.2662C13.5153 12.1882 13.4497 12.1191 13.4004 12.1052V11.528C13.4749 11.528 13.5114 11.6261 13.5114 11.6261L13.6382 12.1905V12.8771L13.5351 12.8818Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.4561 13.039C13.5074 13.0156 13.5821 12.9514 13.5821 12.8869V12.1205L13.547 12.0573H14.8384L14.788 12.1205V12.8869C14.788 12.9514 14.8393 13.0156 14.8906 13.039H13.4561Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.6302 13.039C14.5788 13.0156 14.5041 12.9515 14.5041 12.8869V12.158L14.6115 12.0573L13.7335 12.0573L13.8409 12.158V12.8869C13.8409 12.9515 13.7662 13.0156 13.7148 13.039H14.6302Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.5072 13.0394C14.4559 13.0159 14.3812 12.9518 14.3812 12.8873V12.2283L14.4515 12.1276H13.8937L13.964 12.2283V12.8873C13.964 12.9518 13.8892 13.0159 13.8379 13.0394H14.5072Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.0391 12.1276H14.3056L14.3056 13.0394H14.0391L14.0391 12.1276Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.7832 12.3834H13.6768V12.8783H13.7832V12.3834Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M14.6953 12.3834H14.5889V12.8783H14.6953V12.3834Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.5859 11.5475H13.7141V12.0548H13.5859V11.5475Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.5859 11.452H13.7134V11.5462H13.5859V11.452Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M14.6396 11.6569H14.8224V12.0485H14.6396V11.6569Z" fill="white" stroke="black" stroke-width="0.03" stroke-linejoin="bevel"/>
<path d="M13.7119 12.0509V11.1827C13.7485 11.1827 13.7541 11.31 13.838 11.31C13.8817 11.31 13.877 11.2573 13.8525 11.2143C13.8308 11.1763 13.8039 11.1238 13.8404 11.026C13.8654 11.1008 13.9328 11.1246 13.9203 11.0776C13.8989 10.997 13.8374 10.9837 13.8836 10.8586C13.8996 10.963 13.9659 10.9584 13.9498 10.8977C13.9317 10.8293 13.8942 10.8012 13.9404 10.7048C13.9663 10.8143 14.0013 10.8079 14.0013 10.74C14.0013 10.6396 13.9975 10.5313 14.126 10.4911C14.126 10.4911 14.1334 10.399 14.1798 10.399C14.2261 10.399 14.2336 10.4911 14.2336 10.4911C14.3621 10.5313 14.3583 10.6396 14.3583 10.74C14.3583 10.8079 14.3933 10.8143 14.4191 10.7048C14.4654 10.8012 14.4279 10.8293 14.4098 10.8977C14.3937 10.9584 14.4599 10.963 14.476 10.8586C14.5221 10.9837 14.4606 10.997 14.4392 11.0776C14.4268 11.1246 14.4941 11.1008 14.5191 11.026C14.5556 11.1238 14.5288 11.1763 14.5071 11.2143C14.4825 11.2572 14.4779 11.31 14.5216 11.31C14.6054 11.31 14.6111 11.1827 14.6476 11.1827V12.0509H13.7119Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.5107 11.396L13.5107 12.0583H13.5853L13.5853 11.3943C13.5584 11.3806 13.5332 11.3785 13.5107 11.396L13.5107 11.396Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.5137 11.8248C13.606 11.8726 13.6975 11.9278 13.7207 12.0586H13.5137V11.8248Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.7939 11.626L14.7939 12.0582H14.8543V11.6249C14.8355 11.6159 14.8097 11.6146 14.7939 11.626L14.7939 11.626Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.8544 11.8209C14.7621 11.8687 14.6706 11.9239 14.6475 12.0547H14.8544V11.8209Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.2448 10.8113L14.2987 10.7656V10.707C14.279 10.709 14.2682 10.7158 14.2537 10.7351C14.2413 10.6962 14.2141 10.6659 14.1777 10.6471C14.1412 10.6659 14.114 10.6949 14.1016 10.7337C14.0871 10.7144 14.0763 10.7089 14.0566 10.707V10.7656L14.1105 10.8113L14.2448 10.8113Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.2737 10.9579L14.2987 10.9032V10.827C14.279 10.829 14.2682 10.8359 14.2537 10.8555C14.2413 10.8161 14.2141 10.7853 14.1777 10.7662C14.1412 10.7853 14.114 10.8147 14.1016 10.8541C14.0871 10.8345 14.0763 10.829 14.0566 10.827V10.9032L14.0817 10.9579L14.2737 10.9579Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.2776 11.1584L14.3576 11.0598V10.9625C14.3283 10.9658 14.3124 10.9776 14.2907 11.0107C14.2724 10.944 14.232 10.9294 14.1778 10.8971C14.1237 10.9294 14.0832 10.9416 14.0649 11.0083C14.0433 10.9752 14.0273 10.9658 13.998 10.9625V11.0598L14.078 11.1584H14.2776Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.3002 11.3527C14.3002 11.3527 14.3934 11.2705 14.3989 11.2254V11.1214C14.3628 11.1257 14.3286 11.1351 14.302 11.1779C14.2793 11.0918 14.2439 11.0678 14.177 11.026C14.1101 11.0677 14.0747 11.0918 14.052 11.1779C14.0254 11.1351 13.9912 11.1257 13.9551 11.1214V11.2254C13.9668 11.2705 14.0538 11.3527 14.0538 11.3527H14.3002Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.3402 11.7117C14.3402 11.7117 14.4679 11.5689 14.4708 11.5133V11.3511C14.423 11.3578 14.3778 11.391 14.3426 11.4576C14.3126 11.3234 14.2657 11.2298 14.1773 11.1647C14.0889 11.2298 14.042 11.3234 14.012 11.4576C13.9767 11.391 13.9316 11.3578 13.8838 11.3511V11.5133C13.893 11.5689 14.0143 11.7117 14.0143 11.7117H14.3402Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.3402 11.927C14.3402 11.927 14.4493 11.8148 14.4708 11.766V11.6039C14.423 11.6106 14.3778 11.6438 14.3426 11.7104C14.3126 11.5762 14.2657 11.4993 14.1773 11.4342C14.0889 11.4993 14.042 11.5762 14.012 11.7104C13.9767 11.6438 13.9316 11.6105 13.8838 11.6039V11.766C13.9115 11.8148 14.0143 11.927 14.0143 11.927H14.3402Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.3841 12.051C14.3522 11.911 14.3248 11.8071 14.1715 11.7018C14.0182 11.8071 13.9908 11.911 13.959 12.051H14.3841Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M14.4632 12.1286V11.9257C14.3935 11.9533 14.3306 11.9941 14.3074 12.0396C14.2815 11.9269 14.2316 11.8773 14.1693 11.8092C14.1071 11.8773 14.0655 11.9269 14.0395 12.0396C14.0163 11.9941 13.9534 11.9533 13.8838 11.9257L13.8838 12.1286L14.4632 12.1286Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.19141 13.7789H15.471L15.471 14.1549H8.19141L8.19141 13.7789Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8 14.1539H15.6633L15.6633 14.5293L8.00001 14.5293L8 14.1539Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.57422 13.2164H15.0892L15.0892 13.4597H8.57422L8.57422 13.2164Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.38379 13.4572H15.2797L15.2797 13.7759H8.38379L8.38379 13.4572Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.6875 13.0289H14.9749L14.9749 13.2141H8.6875L8.6875 13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.37012 13.0289H9.84503V14.527H9.37012V13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M9.47559 13.0289H9.74018V14.527H9.47559L9.47559 13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.5859 13.0289H12.0609V14.527H11.586L11.5859 13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.6943 13.0289H11.9589V14.527H11.6943L11.6943 13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.8145 13.0289H14.2894V14.527H13.8145V13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.9199 13.0289H14.1845V14.527H13.9199L13.9199 13.0289Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M8.9707 12.8787H14.6996" stroke="black" stroke-width="0.03"/>
<path d="M9.4707 14.3404H9.74499M9.4707 14.1529H9.74499M9.4707 13.9654H9.74499M9.4707 13.7779H9.74499M9.4707 13.5904H9.74499M9.4707 13.4029H9.74499M9.4707 13.2154H9.74499" stroke="black" stroke-width="0.03"/>
<path d="M11.6953 14.341H11.9507M11.6953 14.1534H11.9507M11.6953 13.9658H11.9507M11.6953 13.7782H11.9507M11.6953 13.5906H11.9507M11.6953 13.403H11.9507M11.6953 13.2154H11.9507" stroke="black" stroke-width="0.03"/>
<path d="M13.915 14.3404H14.1893M13.915 14.1529H14.1893M13.915 13.9654H14.1893M13.915 13.7779H14.1893M13.915 13.5904H14.1893M13.915 13.4029H14.1893M13.915 13.2154H14.1893" stroke="black" stroke-width="0.03"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 6H4V18H10V6Z" fill="#007A5E"/>
<path d="M14 6H10V18H14V6Z" fill="#CE1126"/>
<path d="M20 6H14V18H20V6Z" fill="#FCD116"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M12 10.5L12.3368 11.5365H13.4266L12.5449 12.1771L12.8817 13.2135L12 12.5729L11.1183 13.2135L11.4551 12.1771L10.5734 11.5365H11.6632L12 10.5Z" fill="#FCD116"/>
</svg>

After

Width:  |  Height:  |  Size: 558 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#FF0000"/>
<path d="M16 6H8V18H16V6Z" fill="white"/>
<path d="M11.9999 8.84375L11.3858 9.98901C11.3161 10.1135 11.1913 10.1019 11.0665 10.0324L10.6219 9.80222L10.9533 11.5613C11.0229 11.8827 10.7994 11.8827 10.6891 11.7437L9.91324 10.8752L9.78729 11.3163C9.77276 11.3742 9.7089 11.435 9.61309 11.4205L8.63206 11.2143L8.88973 12.1511C8.94489 12.3595 8.98792 12.4458 8.83405 12.5008L8.48438 12.6651L10.1732 14.0369C10.24 14.0888 10.2738 14.1821 10.25 14.2666L10.1022 14.7517C10.6836 14.6846 11.2047 14.5838 11.7864 14.5217C11.8378 14.5162 11.9238 14.601 11.9234 14.6605L11.8464 16.4375H12.1291L12.0846 14.6643C12.0842 14.6048 12.1622 14.5162 12.2136 14.5217C12.7953 14.5838 13.3164 14.6846 13.8978 14.7517L13.75 14.2666C13.7262 14.1821 13.76 14.0888 13.8268 14.0369L15.5156 12.6651L15.166 12.5008C15.0121 12.4458 15.0551 12.3595 15.1103 12.1511L15.3679 11.2143L14.3869 11.4205C14.2911 11.435 14.2272 11.3742 14.2127 11.3163L14.0868 10.8752L13.3109 11.7437C13.2006 11.8827 12.9771 11.8827 13.0467 11.5613L13.3781 9.80222L12.9335 10.0324C12.8087 10.1019 12.6839 10.1135 12.6142 9.98901" fill="#FF0000"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -0,0 +1,9 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#FFCE00"/>
<path d="M20 6H4V15H20V6Z" fill="#289728"/>
<path d="M20 6H4V12H20V6Z" fill="white"/>
<path d="M20 6H4V9H20V6Z" fill="#003082"/>
<path d="M13 6H11V18H13V6Z" fill="#D21034"/>
<path d="M7.00086 6.28125L7.79574 8.72093L5.71582 7.21441H8.2837L6.20374 8.72093L7.00086 6.28125Z" fill="#FFCE00"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 593 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#C60C30"/>
<path d="M15 6H4V18H15V6Z" fill="#FECB00"/>
<path d="M9.60571 6H4V18H9.60571V6Z" fill="#002664"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 401 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 18H4V6H20V18Z" fill="#D52B1E"/>
<path d="M8.89279 12H20V6H4L8.89279 12Z" fill="white"/>
<path d="M9 12H4V6H9V12Z" fill="#0039A6"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M6.5 7.5L6.83677 8.53647H7.92658L7.04491 9.17705L7.38168 10.2135L6.5 9.57295L5.61832 10.2135L5.95509 9.17705L5.07342 8.53647H6.16323L6.5 7.5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 567 B

View File

@ -0,0 +1,9 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#DE2910"/>
<path d="M5.99999 7.19922L7.058 10.4554L4.28809 8.44299H7.71189L4.94198 10.4554L5.99999 7.19922Z" fill="#FFDE00"/>
<path d="M9.23509 6.64712L9.1349 7.78399L8.54773 6.80536L9.59799 7.25195L8.48581 7.50798L9.23509 6.64712Z" fill="#FFDE00"/>
<path d="M10.6307 7.98184L10.0972 8.99074L9.93582 7.86094L10.7305 8.6801L9.6061 8.48447L10.6307 7.98184Z" fill="#FFDE00"/>
<path d="M10.764 9.99502L9.86538 10.6985L10.1789 9.60115L10.5703 10.6732L9.6235 10.0359L10.764 9.99502Z" fill="#FFDE00"/>
<path d="M9.21167 10.838L9.15871 11.9781L8.53146 11.0246L9.59933 11.4273L8.49873 11.7292L9.21167 10.838Z" fill="#FFDE00"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 910 B

View File

@ -0,0 +1,20 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_14099_114748)">
<path d="M20 6H3V18H20V6Z" fill="#0021AD"/>
<path d="M3 6H20V18L3 6Z" fill="#1C8A42"/>
<path d="M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z" fill="#FFC639"/>
<path d="M10.503 11.4293C10.6784 11.6374 10.9442 11.9862 11.158 11.8951C11.3248 11.8956 11.411 11.9058 11.4336 12.0018C11.8271 12.0597 12.4884 11.9162 12.8999 11.4528C12.8999 11.4528 12.9345 11.4568 12.9225 11.2806C12.9248 11.2039 13.0438 11.2193 13.0467 11.2443C13.0633 11.2824 13.0604 11.3108 13.0828 11.3118C13.1334 11.2972 13.2027 11.199 13.2608 11.1367C13.2765 11.1092 13.2679 11.0803 13.2716 11.0456C13.3023 10.9806 13.3787 10.9947 13.3947 11.0288C13.4093 11.0508 13.4096 11.0676 13.4239 11.0897C13.5014 11.1344 13.6414 11.0926 13.6522 11.0926C13.666 11.038 13.7066 11.0431 13.7066 11.0431C13.7584 11.0332 13.7381 11.0372 13.7721 11.0525C13.7421 11.3472 13.8391 11.3603 13.8311 11.5114C13.8345 11.6802 13.7721 11.7282 13.7721 11.7925C13.7919 11.8711 14.0798 11.8739 13.9785 11.9404C13.8895 11.9815 13.9788 12.0584 13.8448 12.0883C13.4551 12.2593 13.3804 12.406 13.3804 12.406C13.3804 12.406 13.2825 12.5658 13.2716 12.5658C13.2064 12.6724 13.1237 12.6143 13.0776 12.6663C13.0547 12.7316 13.029 12.8763 13.0747 12.9515C13.0976 13.0549 13.0719 13.1113 13.0433 13.2147C13.0175 13.4304 12.9185 13.4631 12.9071 13.5388C12.8613 13.6197 12.9168 13.9997 12.8733 13.9997C12.5831 14.0046 12.3608 13.9517 12.246 13.9319C12.3579 13.515 12.3144 13.1489 12.3144 13.1113C12.2858 12.8132 11.7979 12.8857 11.7232 12.8461C11.6614 12.8347 11.6225 12.7912 11.6007 12.7724C11.5317 12.766 11.506 12.7524 11.437 12.7462C11.4027 12.761 11.4233 12.7764 11.3466 12.7969C11.152 12.8172 11.0661 12.6502 11.0661 12.6502C11.0756 12.594 10.6286 12.6616 10.3856 12.6128C10.286 12.6608 10.2425 12.8028 10.161 12.8196C10.1587 12.8637 10.0268 12.7835 10.0002 12.7402C9.99473 12.6143 10.1272 12.5587 10.1272 12.5587C10.2325 12.4946 10.2949 12.4842 10.3456 12.4399C10.371 12.3303 10.3582 12.2492 10.4122 12.1668C10.458 12.1039 10.5256 12.1334 10.5714 12.1052C10.6206 12.077 10.6415 11.8924 10.596 11.842C10.596 11.842 10.3991 11.6883 10.3882 11.6789C10.3241 11.5201 10.4632 11.4177 10.503 11.4293L10.503 11.4293Z" fill="#1C8A42"/>
<path d="M17.9405 8.12927C17.8763 7.88701 17.302 7.36528 16.8704 7.03327C16.7673 6.96629 16.7002 7.00619 16.7136 7.10168C16.7673 7.18719 16.8076 7.28119 16.8614 7.3667C16.8764 7.42369 16.9047 7.46359 16.9197 7.52057C16.9197 7.52057 16.9241 7.61889 16.9331 7.62744C17.0675 7.76856 17.0855 7.88821 17.0855 7.88821C17.1631 8.03072 17.2318 8.13471 17.3677 8.25158C17.5201 8.3428 17.408 8.62626 17.4125 8.77735C17.4125 8.8728 17.3409 8.86149 17.2781 8.85003C16.7838 8.41684 16.2939 8.41547 15.8623 8.29002C15.6935 8.27299 15.6905 8.34988 15.7458 8.39256C16.0475 8.70045 16.3312 8.90988 16.7046 9.08508C16.7673 9.12218 16.8301 9.15927 16.8928 9.19636C16.9644 9.25336 17.0362 9.31035 17.1078 9.36735C17.2735 9.46988 17.2871 9.56396 17.2871 9.57241C17.2916 9.7648 17.1839 9.91438 17.1526 9.97423C17.0961 10.1782 16.9824 10.2137 16.9824 10.2137C16.0593 10.8079 15.5754 10.9617 14.0789 10.7779C14.0565 10.7666 13.9131 10.7894 14.0789 10.8463C14.4598 10.9674 15.3954 11.1616 16.3005 10.7527C16.5178 10.6074 16.6632 10.655 16.8207 10.568C17.0792 10.4159 17.4484 10.2265 17.5155 10.2052C17.7172 10.1025 18.2817 9.9872 18.4118 9.88452C18.561 9.87306 18.7159 9.85436 18.7263 9.73193C18.7753 9.70162 18.847 9.72379 18.9003 9.62397C19.0187 9.60437 18.9987 9.56396 18.9987 9.56396C18.9689 9.4842 18.8582 9.45133 18.7792 9.39298C18.6626 9.35588 18.582 9.34442 18.4968 9.38438C18.4699 9.39584 18.4431 9.40715 18.4162 9.41861C18.4162 9.41861 18.2907 9.40142 18.2907 9.39298C18.0119 9.37835 18.0391 8.49688 17.9405 8.12924L17.9405 8.12927Z" fill="#FFC639"/>
<path d="M5.51604 11.5831L5.21001 11.2967L4.90032 11.5791L4.93351 11.1614L4.51953 11.0954L4.86693 10.8608L4.6604 10.496L5.06043 10.6213L5.21685 10.2324L5.36829 10.6233L5.76991 10.5031L5.5587 10.8652L5.90305 11.1042L5.48826 11.165L5.51606 11.5831L5.51604 11.5831Z" fill="white"/>
<path d="M5.72027 16L5.49908 15.7879L5.27523 15.997L5.29922 15.6878L5 15.6389L5.2511 15.4652L5.10182 15.1952L5.39096 15.2879L5.50402 15L5.61348 15.2894L5.90377 15.2004L5.7511 15.4685L6 15.6454L5.70019 15.6904L5.72029 16L5.72027 16Z" fill="white"/>
<path d="M8.72027 12L8.49908 11.7879L8.27523 11.997L8.29922 11.6878L8 11.6389L8.2511 11.4652L8.10182 11.1952L8.39096 11.2879L8.50402 11L8.61348 11.2894L8.90377 11.2004L8.7511 11.4685L9 11.6454L8.70019 11.6904L8.72029 12L8.72027 12Z" fill="white"/>
<path d="M6.72027 9.99999L6.49908 9.78791L6.27523 9.99704L6.29922 9.68778L6 9.63887L6.2511 9.4652L6.10182 9.19517L6.39096 9.28792L6.50402 9L6.61348 9.28939L6.90377 9.20042L6.7511 9.46847L7 9.64543L6.70019 9.69041L6.72029 10L6.72027 9.99999Z" fill="white"/>
<path d="M7.86432 13.9703L7.53427 13.7503L7.21289 13.9822L7.32597 13.6086L7 13.3826L7.40001 13.3719L7.51973 13L7.654 13.3672L8.054 13.3634L7.73696 13.6011L7.86434 13.9703L7.86432 13.9703Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</g>
<defs>
<clipPath id="clip0_14099_114748">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,14 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#008000"/>
<path d="M12 14.375C13.0355 14.375 13.875 13.5355 13.875 12.5C13.875 11.4645 13.0355 10.625 12 10.625C10.9645 10.625 10.125 11.4645 10.125 12.5C10.125 13.5355 10.9645 14.375 12 14.375Z" fill="#FFE000"/>
<path d="M12.5848 14.0427C13.4369 14.0427 14.1277 13.352 14.1277 12.4999C14.1277 11.6478 13.4369 10.957 12.5848 10.957C11.7328 10.957 11.042 11.6478 11.042 12.4999C11.042 13.352 11.7328 14.0427 12.5848 14.0427Z" fill="#008000"/>
<path d="M7.08929 10.5887C8.17413 10.5887 9.05357 9.70929 9.05357 8.62444C9.05357 7.5396 8.17413 6.66016 7.08929 6.66016C6.00444 6.66016 5.125 7.5396 5.125 8.62444C5.125 9.70929 6.00444 10.5887 7.08929 10.5887Z" fill="#FFE000"/>
<path d="M6.9541 10.1067H7.44458C7.44458 10.1067 7.46672 10.0617 7.43964 10.0392C7.41257 10.0167 7.30709 10.0118 7.33559 9.93227C7.39417 9.76878 7.40235 9.81919 7.43913 9.4309C7.47592 9.0426 7.49363 8.43359 7.49363 8.43359H7.42278C7.42278 8.43359 7.43641 8.62297 7.39554 8.86958C7.35466 9.11618 7.3424 9.13797 7.29744 9.32734C7.25248 9.51672 7.24567 9.53308 7.2048 9.64343C7.16392 9.75379 7.15984 9.75924 7.0958 9.86142C7.03177 9.9636 7.05493 9.92545 7.01951 9.98676C7.00179 10.0174 6.97999 10.0092 6.96807 10.0315C6.95615 10.0539 6.95411 10.1067 6.95411 10.1067L6.9541 10.1067Z" fill="#802000" stroke="#7B3100" stroke-width="0.1"/>
<path d="M7.32782 7.19533C7.33189 7.27151 7.32423 7.37237 7.29266 7.45444C7.26064 7.5459 7.22583 7.63707 7.22755 7.73178C7.17666 7.74909 7.1242 7.62164 7.07521 7.69662C7.11204 7.80022 7.19707 7.88225 7.25532 7.97559C7.26514 8.00452 7.34896 8.08008 7.30046 8.09766C7.17806 8.05576 7.14839 7.90067 7.07246 7.80649C6.98429 7.648 6.81989 7.53598 6.63675 7.52824C6.56796 7.53005 6.34429 7.51119 6.40248 7.62899C6.48819 7.68726 6.5938 7.72526 6.67843 7.79067C6.74148 7.79656 6.85577 7.90182 6.8491 7.94159C6.73821 7.89668 6.6863 7.84285 6.56682 7.7956C6.40493 7.73307 6.181 7.77068 6.09137 7.93135C6.07466 7.97319 6.04999 8.09516 6.10254 8.10677C6.16394 8.01091 6.25177 7.90374 6.38192 7.93249C6.48414 7.94047 6.26785 8.12292 6.35059 8.08621C6.3768 8.07458 6.43734 8.03484 6.47934 8.03069C6.52134 8.02654 6.54479 8.05798 6.57666 8.06233C6.64039 8.07103 6.65793 8.09774 6.65203 8.11329C6.64506 8.13162 6.62481 8.11597 6.56003 8.13651C6.52763 8.14678 6.51072 8.17524 6.47293 8.18827C6.43515 8.2013 6.35655 8.20223 6.32718 8.19067C6.22442 8.14604 6.05595 8.15381 6.02391 8.28258C6.02388 8.33921 5.97349 8.27632 5.9502 8.30079C5.93274 8.36258 5.92822 8.42602 5.83657 8.42041C5.78094 8.47878 5.72396 8.53921 5.65332 8.58073C5.69478 8.67588 5.85903 8.48517 5.85136 8.56559C5.77955 8.6635 5.8883 8.6841 5.93591 8.60874C6.01642 8.52367 6.11614 8.42011 6.23628 8.50585C6.2935 8.55972 6.32675 8.47737 6.36817 8.48178C6.39426 8.5487 6.42709 8.48507 6.45671 8.46615C6.50519 8.46011 6.49155 8.5267 6.54916 8.48568C6.66397 8.4097 6.80521 8.47355 6.91737 8.39962C7.03675 8.34523 6.93413 8.44342 6.90118 8.48181C6.84873 8.58354 6.89422 8.7171 6.78045 8.78027C6.73474 8.90152 6.83444 9.06135 6.73275 9.15104C6.71796 9.20729 6.86353 9.20084 6.90438 9.22396C6.97597 9.22679 6.90131 9.0601 6.97234 9.03776C7.0676 9.09672 7.06313 8.93232 7.04347 8.8816C7.0527 8.76633 7.0592 8.6403 7.11649 8.53589C7.17738 8.40792 7.23375 8.58801 7.16558 8.63867C7.12685 8.75634 7.07049 8.9036 7.15854 9.01303C7.18391 9.01871 7.20475 9.08022 7.23761 9.09912C7.27046 9.11803 7.31534 9.09433 7.32353 9.03837C7.36568 8.86985 7.34445 8.68864 7.40463 8.52474C7.44711 8.47398 7.50571 8.51656 7.53205 8.56324C7.61639 8.66116 7.67568 8.78356 7.77778 8.86424C7.87075 8.90775 7.95297 8.97355 7.99582 9.06926C7.99525 9.1431 8.20555 9.15442 8.14271 9.07234C8.08241 8.99244 8.12219 8.91252 8.18327 8.85938C8.21598 8.86745 8.20631 8.80886 8.18067 8.83204C8.1396 8.82235 8.13698 8.74719 8.19405 8.78292C8.29019 8.81395 8.18656 8.71334 8.15181 8.71026C8.07053 8.65987 7.97714 8.60191 7.93717 8.51433C8.04298 8.51541 8.15283 8.57248 8.26095 8.53708C8.34763 8.49255 8.43554 8.54079 8.46581 8.61719C8.53281 8.6065 8.50425 8.53931 8.46581 8.51693C8.51482 8.49671 8.54871 8.45478 8.48929 8.4178C8.45791 8.37684 8.53137 8.30699 8.44107 8.3099C8.44402 8.24092 8.41687 8.17781 8.34168 8.15398C8.26636 8.0902 8.04534 8.24794 8.05175 8.10417C8.02948 8.02593 8.14153 8.09372 8.17284 8.05469C8.2052 7.97221 8.01867 7.98026 8.08022 7.9163C8.12042 7.89042 8.30906 7.85324 8.16112 7.82555C8.08729 7.84584 8.02392 7.83082 7.96582 7.79428C7.91286 7.88286 7.76164 7.74617 7.78858 7.90366C7.7679 7.96299 7.63273 8.11717 7.59615 7.99905C7.62727 7.90647 7.78741 7.8762 7.73775 7.75137C7.73012 7.67345 7.66552 7.76493 7.63508 7.75912C7.61967 7.71061 7.6817 7.65344 7.72493 7.64193C7.81071 7.70791 7.81331 7.55869 7.89489 7.57083C7.95445 7.55759 7.87565 7.53205 7.85904 7.52084C7.87537 7.47724 7.9668 7.45496 7.87714 7.4171C7.79803 7.3584 7.7394 7.47552 7.67414 7.48177C7.61151 7.41107 7.731 7.37708 7.76399 7.33984C7.76576 7.31209 7.69431 7.33147 7.71581 7.30729C7.73448 7.27392 7.86099 7.27143 7.80175 7.22136C7.71252 7.19072 7.59739 7.19836 7.51178 7.23804C7.45785 7.2555 7.44198 7.37745 7.39549 7.3724C7.37363 7.31811 7.40261 7.21102 7.32778 7.19531L7.32782 7.19533ZM7.74969 8.38674C7.81768 8.37523 7.75113 8.48999 7.71844 8.48831C7.72133 8.44707 7.62011 8.45104 7.68291 8.41511C7.70328 8.40196 7.72597 8.39193 7.74969 8.38674Z" fill="#008000"/>
<path d="M17.4998 14.8555L17.6238 15.2409L18.0024 15.0975L17.7783 15.4347L18.1265 15.6414L17.7232 15.6765L17.7787 16.0775L17.4998 15.784L17.2209 16.0775L17.2764 15.6765L16.873 15.6414L17.2212 15.4347L16.9972 15.0975L17.3758 15.2409L17.4998 14.8555Z" fill="#FFE000"/>
<path d="M15.2498 11.293L15.3738 11.6784L15.7524 11.535L15.5283 11.8722L15.8765 12.0789L15.4732 12.114L15.5287 12.515L15.2498 12.2215L14.9709 12.515L15.0264 12.114L14.623 12.0789L14.9712 11.8722L14.7472 11.535L15.1258 11.6784L15.2498 11.293Z" fill="#FFE000"/>
<path d="M17.4998 8.85547L17.6238 9.24091L18.0024 9.09751L17.7783 9.43475L18.1265 9.64138L17.7232 9.67647L17.7787 10.0775L17.4998 9.78404L17.2209 10.0775L17.2764 9.67647L16.873 9.64138L17.2212 9.43475L16.9972 9.09751L17.3758 9.24091L17.4998 8.85547Z" fill="#FFE000"/>
<path d="M19.4998 10.6914L19.6238 11.0768L20.0024 10.9334L19.7783 11.2707L20.1265 11.4773L19.7232 11.5124L19.7787 11.9135L19.4998 11.62L19.2209 11.9135L19.2764 11.5124L18.873 11.4773L19.2212 11.2707L18.9972 10.9334L19.3758 11.0768L19.4998 10.6914Z" fill="#FFE000"/>
<path d="M18.3996 12.5L18.4976 12.7402L18.7563 12.7591L18.5581 12.9265L18.62 13.1784L18.3996 13.0417L18.1792 13.1784L18.2411 12.9265L18.043 12.7591L18.3017 12.7402L18.3996 12.5Z" fill="#FFE000"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#CE1126"/>
<path d="M20 6H4V15H20V6Z" fill="#003893"/>
<path d="M20 6H4V12H20V6Z" fill="#FCD116"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@ -0,0 +1,14 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#3A75C4"/>
<path d="M20 6H4V15H20V6Z" fill="#CE1126"/>
<path d="M20 6H4V12H20V6Z" fill="white"/>
<path d="M20 6H4V9H20V6Z" fill="#FFC61E"/>
<path d="M4 18L12 12L4 6V18Z" fill="#3D8E33"/>
<path d="M7 14C8.10457 14 9 12.8807 9 11.5C9 10.1193 8.10457 9 7 9C5.89543 9 5 10.1193 5 11.5C5 12.8807 5.89543 14 7 14Z" fill="white"/>
<path d="M7.5 14C8.32843 14 9 12.8807 9 11.5C9 10.1193 8.32843 9 7.5 9C6.67157 9 6 10.1193 6 11.5C6 12.8807 6.67157 14 7.5 14Z" fill="#3D8E33"/>
<path d="M7.6002 9.27148L7.86514 10.0997L7.17188 9.58828H8.02777L7.33451 10.0997L7.6002 9.27148Z" fill="white"/>
<path d="M7.59825 10.5L7.86318 11.3282L7.16992 10.8168H8.02582L7.33256 11.3282L7.59825 10.5Z" fill="white"/>
<path d="M7.59825 11.5L7.86318 12.3282L7.16992 11.8168H8.02582L7.33256 12.3282L7.59825 11.5Z" fill="white"/>
<path d="M7.59825 12.7L7.86318 13.5282L7.16992 13.0168H8.02582L7.33256 13.5283L7.59825 12.7Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,28 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V15H20V6Z" fill="#00247D"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="white" stroke-width="1.5"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="#CF142B"/>
<path d="M8.5 6V12V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V12M4 8.25H14.5" stroke="white" stroke-width="1.5"/>
<path d="M8.5 6V12V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V12M4 8.25H14.5" stroke="#CF142B"/>
<path d="M13 6V10.5H4V18H20V6H13Z" fill="#00247D"/>
<path d="M17.5 6.76562L17.2914 7.40759L17.6338 7.51883" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_114802)">
<path d="M4 6H20V18H4V6Z" fill="#000066"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.0535 10.8813L15.1754 10.4985L14.8473 10.2556L15.2598 10.251L15.4004 9.87292L15.5316 10.251L15.9465 10.2625L15.616 10.5031L15.7332 10.8858L15.3934 10.6567M16.0285 10.9546L16.2723 10.636L16.0449 10.2969L16.4363 10.4298L16.6941 10.1204V10.5238L17.0785 10.6704L16.6848 10.785L16.666 11.186L16.427 10.856M14.1207 11.1998L14.1043 10.7988L13.7105 10.6796L14.102 10.5375V10.1388L14.3574 10.4481L14.7512 10.3198L14.5215 10.6567L14.7629 10.9775L14.3645 10.8744M13.4363 11.8117L13.2629 11.4496L12.8551 11.4908L13.1551 11.209L13.0004 10.8354L13.3566 11.0233L13.6684 10.7529L13.5887 11.1517L13.9379 11.3556L13.5324 11.4129M13.1176 12.6871L12.8059 12.4327L12.4543 12.6435L12.6043 12.2608L12.302 11.995L12.7074 12.011L12.8715 11.6352L12.9723 12.0294L13.3754 12.0638L13.0332 12.2883M13.1082 13.6725L12.7215 13.5625L12.4848 13.8948L12.4684 13.4846L12.084 13.3586L12.4613 13.2165V12.804L12.7121 13.1271L13.0965 12.9988L12.8715 13.3425M13.5629 14.5067L13.1645 14.5617L13.0824 14.9604L12.8996 14.5938L12.4988 14.6304L12.7848 14.3485L12.6184 13.9727L12.977 14.1675L13.277 13.8971L13.2113 14.2958M14.266 15.1667L13.9121 15.3546L13.973 15.7579L13.6754 15.4738L13.3098 15.6479L13.4809 15.2836L13.1926 14.9879L13.598 15.0475L13.7855 14.6923L13.8652 15.0911M15.1262 15.2973L14.9316 15.6479L15.2059 15.9504L14.798 15.8748L14.5895 16.2185L14.5332 15.8221L14.1301 15.7304L14.5004 15.5608L14.4605 15.1598L14.7465 15.4531M16.0918 15.1529L16.0801 15.5517L16.4621 15.6983L16.0637 15.8129L16.0355 16.214L15.8012 15.8863L15.4027 15.9871L15.6559 15.6686L15.4355 15.3317L15.8246 15.4623M17.102 10.8079L17.3832 11.0967L17.7559 10.9271L17.5613 11.2892L17.8309 11.5894L17.4324 11.5252L17.2215 11.8804L17.1723 11.4771L16.7738 11.3969L17.1418 11.2135M17.9434 11.6948L18.0723 12.0752L18.4824 12.0821L18.1496 12.3273L18.2598 12.7123L17.9293 12.4831L17.5871 12.7146L17.7137 12.3296L17.3902 12.0867L17.8027 12.0775M18.2598 12.8383L18.2129 13.2371L18.5809 13.4135L18.1754 13.4961L18.1121 13.8925L17.9082 13.5465L17.5004 13.6129L17.7816 13.315L17.5918 12.9598L17.9668 13.1248M18.0371 14.0369L17.8543 14.3944L18.1332 14.6854L17.7254 14.6235L17.5285 14.9742L17.4582 14.5777L17.0504 14.5021L17.416 14.3188L17.3621 13.92L17.6574 14.2019M17.4277 15.0979L17.0832 15.3088L17.1723 15.7052L16.8559 15.4417L16.5043 15.6388L16.652 15.2652L16.3449 14.9879L16.7527 15.0223L16.9168 14.6556L17.0199 15.0498" fill="white"/>
<path d="M4 6H11.5V11.5H4V6Z" fill="#000066"/>
<path d="M4.87891 6L7.73828 8.07396L10.5859 6H11.5V6.71042L8.6875 8.76146L11.5 10.801V11.5H10.5625L7.75 9.44896L4.94922 11.5H4V10.8125L6.80078 8.77292L4 6.73333V6H4.87891Z" fill="white"/>
<path d="M8.96875 9.21979L11.5 11.0417V11.5L8.32422 9.21979H8.96875ZM6.8125 9.44896L6.88281 9.85L4.63281 11.5H4L6.8125 9.44896ZM11.5 6V6.03438L8.58203 8.18854L8.60547 7.68438L10.9141 6H11.5ZM4 6L6.80078 8.01667H6.09766L4 6.48125V6Z" fill="#C8102E"/>
<path d="M6.82422 6V11.5H8.69922V6H6.82422ZM4 7.83333V9.66667H11.5V7.83333H4Z" fill="white"/>
<path d="M4 8.21146V9.31146H11.5V8.21146H4ZM7.19922 6V11.5H8.32422V6H7.19922Z" fill="#C8102E"/>
</g>
<defs>
<clipPath id="clip0_14099_114802">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#009E60"/>
<path d="M14 6H4V18H14V6Z" fill="white"/>
<path d="M10 6H4V18H10V6Z" fill="#F77F00"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 160 KiB

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 6H20V18H4V6Z" fill="#002A8F"/>
<path d="M4 9H20V11H4V13H20V15H4V9Z" fill="white"/>
<path d="M11 12L4 6V18L11 12Z" fill="#CF142B"/>
<path d="M7.50131 10L8.42995 13L6 11.1475H9L6.57005 13L7.50131 10Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 485 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#002B7F"/>
<path d="M4 14H20V15H4V14Z" fill="#F9E814"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M6 7L6.22451 7.69098H6.95106L6.36327 8.11803L6.58779 8.80902L6 8.38197L5.41221 8.80902L5.63673 8.11803L5.04894 7.69098H5.77549L6 7Z" fill="white"/>
<path d="M8.5 9L8.83677 10.0365H9.92658L9.04491 10.6771L9.38168 11.7135L8.5 11.0729L7.61832 11.7135L7.95509 10.6771L7.07342 10.0365H8.16323L8.5 9Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 665 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#D7141A"/>
<path d="M20 6H4V12H20V6Z" fill="white"/>
<path d="M12 12L4 6V18L12 12Z" fill="#11457E"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#007FFF"/>
<path d="M4.72 8.4H6.4L6.92 6.72L7.44 8.4H9.12L7.76 9.44L8.28 11.12L6.92 10.08L5.56 11.12L6.08 9.44L4.72 8.4ZM19 6L4 15V18H5L20 9V6H19Z" fill="#F7D618"/>
<path d="M20 6L4 15.6V18L20 8.4V6Z" fill="#CE1021"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 510 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#C60C30"/>
<path d="M11 6H9V18H11V6Z" fill="white"/>
<path d="M20 11H4V13H20V11Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#6AB2E7"/>
<path d="M20 12H4V18H20V12Z" fill="#12AD2B"/>
<path d="M4 6V12V18L8.5 15L13 12L8.5 9L4 6Z" fill="white"/>
<path d="M6.97758 10.5L7.34991 11.6459H8.55478L7.58002 12.3541L7.95234 13.5L6.97758 12.7918L6.00283 13.5L6.37515 12.3541L5.40039 11.6459H6.60526L6.97758 10.5Z" fill="#D7141A"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 586 B

View File

@ -0,0 +1,201 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#006B3F"/>
<path d="M12 6H11V18H12V6Z" fill="#FCD116"/>
<path d="M21 10.375H3V11.5H21V10.375Z" fill="#FCD116"/>
<path d="M13 6H12V18H13V6Z" fill="white"/>
<path d="M21 11.5H3V12.625H21V11.5Z" fill="white"/>
<path d="M12.25 6H11.5V18H12.25V6Z" fill="black"/>
<path d="M21 11.125H3V11.875H21V11.125Z" fill="black"/>
<path d="M12 13.75C13.2426 13.75 14.25 12.7426 14.25 11.5C14.25 10.2574 13.2426 9.25 12 9.25C10.7574 9.25 9.75 10.2574 9.75 11.5C9.75 12.7426 10.7574 13.75 12 13.75Z" fill="#D41C30"/>
<path d="M11.928 9.72338L12.0001 9.51758L12.0657 9.72008L12.2854 9.72338L12.1116 9.85613L12.1903 10.0819L12.0001 9.94253L11.8132 10.0753L11.8854 9.85613L11.7148 9.72668L11.928 9.72338Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.3562 12.7559C12.4301 12.7482 12.4688 12.4459 12.4428 12.0806C12.4167 11.7154 12.3356 11.4256 12.2617 11.4333C12.1878 11.441 12.1491 11.7433 12.1752 12.1085C12.2012 12.4737 12.2823 12.7636 12.3562 12.7559Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4885 12.7551C12.5666 12.747 12.6087 12.4443 12.5825 12.0791C12.5562 11.7139 12.4716 11.4244 12.3935 11.4326C12.3153 11.4407 12.2732 11.7433 12.2995 12.1085C12.3257 12.4738 12.4103 12.7632 12.4885 12.7551Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.429 12.8603C12.4915 12.8537 12.5194 12.521 12.4912 12.1173C12.4631 11.7135 12.3896 11.3916 12.3271 11.3982C12.2646 11.4048 12.2367 11.7375 12.2648 12.1412C12.293 12.5449 12.3665 12.8669 12.429 12.8603Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.3369 12.4371C11.4518 12.4323 11.4019 12.3708 11.4599 12.3381C11.5179 12.3055 11.6004 12.3271 11.6251 12.3679C11.6499 12.4088 11.63 12.4489 11.6619 12.4494C11.6938 12.45 12.5608 12.4136 12.592 12.4478C12.6233 12.482 12.6285 12.5495 12.5961 12.5757C12.5637 12.6023 11.4676 12.6145 11.4298 12.5868C11.3921 12.5594 11.3368 12.4438 11.3369 12.4371Z" fill="#9C4A00" stroke="black" stroke-width="0.01"/>
<path d="M11.9494 12.5219C11.9473 12.6085 12.0755 12.584 12.0772 12.6563C12.0734 12.733 11.8624 12.661 11.8604 12.5207C11.8691 12.3805 12.0757 12.3113 12.0782 12.3913C12.0801 12.4578 11.9515 12.4352 11.9494 12.5219Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M12.0246 12.5238C12.0225 12.6104 12.1507 12.5859 12.1524 12.6583C12.1486 12.735 11.9376 12.663 11.9355 12.5226C11.9443 12.3825 12.1509 12.3132 12.1534 12.3933C12.1553 12.4598 12.0267 12.4372 12.0246 12.5238Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M12.1067 12.5199C12.1046 12.6065 12.2327 12.582 12.2345 12.6544C12.2306 12.7311 12.0196 12.659 12.0176 12.5187C12.0264 12.3786 12.2329 12.3093 12.2354 12.3894C12.2373 12.4559 12.1087 12.4333 12.1067 12.5199Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M12.1819 12.5219C12.1798 12.6085 12.3079 12.584 12.3097 12.6563C12.3058 12.733 12.0948 12.661 12.0928 12.5207C12.1015 12.3805 12.3081 12.3113 12.3106 12.3913C12.3125 12.4578 12.1839 12.4352 12.1819 12.5219Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M12.5407 12.5851C12.5811 12.5857 12.6146 12.553 12.6154 12.512C12.6163 12.471 12.5842 12.4373 12.5439 12.4366C12.5035 12.436 12.47 12.4688 12.4691 12.5098C12.4683 12.5508 12.5003 12.5845 12.5407 12.5851Z" fill="#9C4A00" stroke="black" stroke-width="0.01"/>
<path d="M12.1188 12.4053C12.1546 12.3999 12.1767 12.3315 12.1683 12.2525C12.1598 12.1734 12.124 12.1137 12.0882 12.1191C12.0524 12.1245 12.0303 12.193 12.0387 12.272C12.0472 12.351 12.083 12.4107 12.1188 12.4053Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0075 12.3956C12.0432 12.3902 12.0654 12.3217 12.0569 12.2427C12.0485 12.1637 12.0126 12.104 11.9769 12.1094C11.9411 12.1148 11.919 12.1832 11.9274 12.2622C11.9359 12.3413 11.9717 12.401 12.0075 12.3956Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.9294 12.2548C11.9651 12.2494 11.9873 12.181 11.9788 12.102C11.9704 12.0229 11.9345 11.9632 11.8987 11.9686C11.863 11.974 11.8408 12.0425 11.8493 12.1215C11.8577 12.2005 11.8936 12.2602 11.9294 12.2548Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0421 12.2629C12.0765 12.2575 12.0969 12.1824 12.0876 12.0952C12.0783 12.008 12.0429 11.9417 12.0086 11.9472C11.9742 11.9526 11.9538 12.0277 11.9631 12.1149C11.9723 12.2021 12.0077 12.2684 12.0421 12.2629Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1954 12.255C12.2298 12.2497 12.2506 12.1791 12.2419 12.0973C12.2332 12.0156 12.1982 11.9536 12.1638 11.9589C12.1294 11.9643 12.1086 12.0348 12.1173 12.1166C12.1261 12.1983 12.161 12.2603 12.1954 12.255Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1104 12.2044C12.1448 12.1991 12.1657 12.1285 12.1569 12.0467C12.1482 11.965 12.1133 11.903 12.0789 11.9083C12.0445 11.9137 12.0237 11.9842 12.0324 12.066C12.0411 12.1478 12.076 12.2097 12.1104 12.2044Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.004 12.1302C12.0384 12.1249 12.0592 12.0543 12.0505 11.9725C12.0418 11.8908 12.0068 11.8288 11.9724 11.8341C11.938 11.8394 11.9172 11.91 11.9259 11.9918C11.9346 12.0735 11.9696 12.1355 12.004 12.1302Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.9044 12.0853C11.9388 12.0799 11.9596 12.0094 11.9509 11.9276C11.9422 11.8458 11.9072 11.7839 11.8728 11.7892C11.8384 11.7945 11.8176 11.8651 11.8263 11.9469C11.835 12.0286 11.87 12.0906 11.9044 12.0853Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.7791 10.7091C11.7791 10.7091 11.5593 10.8999 11.584 11.4163C11.6116 11.9356 12.0699 12.1797 12.0699 12.1797C12.0699 12.1797 12.1867 12.0323 12.1731 11.615C12.1403 11.005 11.924 10.7355 11.924 10.7355L11.7791 10.7091Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M12.2633 12.4219C12.2995 12.4229 12.3335 12.3595 12.3392 12.2803C12.345 12.201 12.3204 12.1359 12.2842 12.1348C12.2481 12.1337 12.2141 12.1971 12.2083 12.2764C12.2025 12.3557 12.2272 12.4208 12.2633 12.4219Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1569 12.3945C12.193 12.3955 12.227 12.3321 12.2328 12.2529C12.2386 12.1736 12.2139 12.1085 12.1778 12.1074C12.1416 12.1063 12.1076 12.1697 12.1019 12.249C12.0961 12.3283 12.1207 12.3934 12.1569 12.3945Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1041 12.2402C12.1403 12.2412 12.1743 12.1778 12.1801 12.0986C12.1858 12.0193 12.1612 11.9542 12.125 11.9531C12.0889 11.952 12.0549 12.0154 12.0491 12.0947C12.0434 12.174 12.068 12.2391 12.1041 12.2402Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.2146 12.2693C12.2494 12.27 12.2828 12.1998 12.2892 12.1123C12.2956 12.0249 12.2726 11.9534 12.2378 11.9526C12.203 11.9518 12.1696 12.0221 12.1632 12.1095C12.1568 12.197 12.1798 12.2685 12.2146 12.2693Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.3665 12.2888C12.4013 12.2897 12.4343 12.224 12.4403 12.142C12.4463 12.06 12.423 11.9928 12.3882 11.9919C12.3534 11.991 12.3203 12.0567 12.3143 12.1387C12.3083 12.2207 12.3317 12.2879 12.3665 12.2888Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.2923 12.2224C12.3271 12.2233 12.3601 12.1576 12.3661 12.0756C12.3721 11.9936 12.3488 11.9264 12.314 11.9255C12.2792 11.9246 12.2461 11.9903 12.2401 12.0723C12.2341 12.1543 12.2575 12.2215 12.2923 12.2224Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.2005 12.1306C12.2353 12.1315 12.2683 12.0658 12.2743 11.9838C12.2803 11.9018 12.257 11.8346 12.2222 11.8337C12.1874 11.8328 12.1543 11.8985 12.1483 11.9805C12.1423 12.0625 12.1657 12.1297 12.2005 12.1306Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1106 12.0701C12.1454 12.071 12.1785 12.0052 12.1845 11.9232C12.1905 11.8412 12.1671 11.774 12.1323 11.7731C12.0975 11.7722 12.0645 11.838 12.0585 11.92C12.0525 12.002 12.0758 12.0692 12.1106 12.0701Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4695 12.1206C12.5651 12.0837 12.542 11.8194 12.4181 11.5304C12.2941 11.2413 12.1162 11.0369 12.0206 11.0738C11.9251 11.1107 11.9481 11.3749 12.0721 11.664C12.1961 11.9531 12.374 12.1575 12.4695 12.1206Z" fill="#D41C30" stroke="black" stroke-width="0.01"/>
<path d="M12.1018 11.1327C12.1465 11.1335 12.1832 11.1022 12.184 11.0628C12.1847 11.0233 12.149 10.9907 12.1043 10.9899C12.0597 10.9891 12.0229 11.0204 12.0222 11.0599C12.0215 11.0993 12.0571 11.132 12.1018 11.1327Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1617 11.0309C12.2017 11.0316 12.2348 11.0002 12.2355 10.9607C12.2362 10.9213 12.2043 10.8887 12.1643 10.888C12.1242 10.8873 12.0912 10.9187 12.0905 10.9581C12.0898 10.9976 12.1217 11.0301 12.1617 11.0309Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0641 11.0309C12.1041 11.0316 12.1371 11.0002 12.1378 10.9607C12.1385 10.9213 12.1066 10.8887 12.0666 10.888C12.0266 10.8873 11.9936 10.9187 11.9929 10.9581C11.9922 10.9976 12.024 11.0301 12.0641 11.0309Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0861 10.9517C12.128 10.9524 12.1625 10.923 12.1632 10.886C12.1638 10.8489 12.1304 10.8183 12.0885 10.8176C12.0466 10.8168 12.0122 10.8462 12.0115 10.8833C12.0108 10.9203 12.0443 10.9509 12.0861 10.9517Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0774 10.8679C12.1192 10.8686 12.1537 10.8392 12.1544 10.8022C12.155 10.7651 12.1216 10.7345 12.0797 10.7338C12.0379 10.733 12.0034 10.7624 12.0027 10.7995C12.0021 10.8365 12.0355 10.8671 12.0774 10.8679Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.9713 10.9723C12.0113 10.973 12.0443 10.9416 12.045 10.9021C12.0457 10.8627 12.0139 10.8301 11.9738 10.8294C11.9338 10.8287 11.9008 10.8601 11.9001 10.8995C11.8994 10.939 11.9313 10.9715 11.9713 10.9723Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.9928 10.8795C12.0328 10.8802 12.0659 10.8495 12.0665 10.8108C12.0672 10.7722 12.0353 10.7403 11.9953 10.7396C11.9553 10.7389 11.9223 10.7696 11.9216 10.8082C11.9209 10.8469 11.9528 10.8788 11.9928 10.8795Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.8733 10.8845C11.9179 10.8853 11.9547 10.854 11.9554 10.8145C11.9561 10.7751 11.9205 10.7425 11.8758 10.7417C11.8311 10.7409 11.7944 10.7722 11.7937 10.8117C11.7929 10.8511 11.8286 10.8837 11.8733 10.8845Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0217 10.7604C12.0636 10.7612 12.0981 10.7318 12.0987 10.6947C12.0994 10.6577 12.066 10.6271 12.0241 10.6264C11.9822 10.6256 11.9477 10.655 11.947 10.692C11.9464 10.7291 11.9798 10.7597 12.0217 10.7604Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.9206 10.776C11.9606 10.7767 11.9936 10.7459 11.9943 10.7073C11.995 10.6687 11.9631 10.6368 11.9231 10.6361C11.883 10.6353 11.85 10.6661 11.8493 10.7047C11.8487 10.7434 11.8805 10.7753 11.9206 10.776Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.7672 10.8883C11.8072 10.889 11.8402 10.8576 11.8409 10.8181C11.8416 10.7787 11.8098 10.7461 11.7697 10.7454C11.7297 10.7447 11.6967 10.7761 11.696 10.8156C11.6953 10.855 11.7272 10.8876 11.7672 10.8883Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.7917 10.8326C11.8317 10.8333 11.8647 10.8026 11.8654 10.764C11.8661 10.7253 11.8342 10.6934 11.7941 10.6927C11.7541 10.692 11.7211 10.7227 11.7204 10.7614C11.7197 10.8 11.7516 10.8319 11.7917 10.8326Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M11.8229 10.774C11.8629 10.7747 11.8959 10.744 11.8966 10.7054C11.8973 10.6667 11.8654 10.6348 11.8254 10.6341C11.7854 10.6334 11.7524 10.6641 11.7517 10.7028C11.751 10.7414 11.7829 10.7733 11.8229 10.774Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.5671 12.1308C12.6896 12.0876 12.669 11.7735 12.5211 11.4293C12.3732 11.0852 12.1539 10.8412 12.0314 10.8845C11.9089 10.9278 11.9295 11.2418 12.0774 11.586C12.2253 11.9302 12.4446 12.1741 12.5671 12.1308Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.5506 11.7457C12.5733 11.7349 12.5657 11.6681 12.5337 11.5965C12.5017 11.5248 12.4574 11.4755 12.4347 11.4863C12.412 11.4971 12.4195 11.5639 12.4515 11.6356C12.4835 11.7072 12.5279 11.7565 12.5506 11.7457Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4721 11.6164C12.6643 11.8503 12.64 11.9989 12.62 12.1246C12.5596 11.9797 12.5266 11.8884 12.3344 11.6544C12.1423 11.4204 12.2382 11.2562 12.2514 11.1697C12.2803 11.2446 12.2799 11.3824 12.4721 11.6164Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4897 11.8061C12.6819 12.04 12.6576 12.1886 12.6376 12.3143C12.5772 12.1694 12.5442 12.0781 12.352 11.8441C12.1598 11.6101 12.2558 11.4459 12.269 11.3594C12.2979 11.4343 12.2975 11.5721 12.4897 11.8061Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4948 11.9576C12.6916 12.1874 12.6703 12.3365 12.6528 12.4626C12.5895 12.319 12.5547 12.2284 12.3579 11.9986C12.161 11.7687 12.2537 11.6025 12.2651 11.5157C12.2955 11.59 12.2979 11.7277 12.4948 11.9576Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.4606 11.627C12.5056 11.6155 12.4964 11.5028 12.4399 11.3751C12.3835 11.2475 12.3013 11.1533 12.2563 11.1647C12.2113 11.1762 12.2205 11.289 12.277 11.4166C12.3334 11.5442 12.4156 11.6384 12.4606 11.627Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.362 11.7177C12.4025 11.7107 12.3998 11.6194 12.3559 11.5138C12.3121 11.4081 12.2437 11.3281 12.2032 11.335C12.1627 11.342 12.1654 11.4333 12.2093 11.539C12.2532 11.6446 12.3215 11.7247 12.362 11.7177Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.2664 11.8065C12.307 11.8004 12.3062 11.709 12.2645 11.6025C12.2229 11.4959 12.1562 11.4145 12.1156 11.4206C12.0749 11.4267 12.0758 11.518 12.1174 11.6246C12.1591 11.7312 12.2258 11.8126 12.2664 11.8065Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.3354 11.4365C12.3681 11.4305 12.3641 11.3618 12.3264 11.283C12.2887 11.2043 12.2316 11.1453 12.1989 11.1513C12.1662 11.1573 12.1702 11.226 12.2079 11.3047C12.2456 11.3835 12.3027 11.4425 12.3354 11.4365Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.2486 11.4994C12.2817 11.4952 12.282 11.4264 12.2492 11.3457C12.2165 11.2651 12.1632 11.2031 12.1302 11.2073C12.0971 11.2114 12.0968 11.2802 12.1296 11.3609C12.1623 11.4416 12.2156 11.5036 12.2486 11.4994Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1296 11.2637C12.1864 11.4025 12.2094 11.5273 12.1809 11.5423C12.1524 11.5573 12.0832 11.4568 12.0264 11.318" fill="#006B3F"/>
<path d="M12.1296 11.2637C12.1864 11.4025 12.2094 11.5273 12.1809 11.5423C12.1524 11.5573 12.0832 11.4568 12.0264 11.318" stroke="black" stroke-width="0.01"/>
<path d="M12.2389 11.3373C12.2719 11.3331 12.2722 11.2643 12.2395 11.1836C12.2068 11.103 12.1534 11.0409 12.1204 11.0451C12.0873 11.0493 12.0871 11.1181 12.1198 11.1988C12.1525 11.2795 12.2058 11.3415 12.2389 11.3373Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.1407 11.3835C12.1738 11.38 12.1756 11.3112 12.1447 11.2299C12.1138 11.1486 12.0619 11.0856 12.0288 11.0891C11.9956 11.0926 11.9938 11.1614 12.0247 11.2427C12.0556 11.324 12.1075 11.3871 12.1407 11.3835Z" fill="#006B3F" stroke="black" stroke-width="0.01"/>
<path d="M12.0302 11.0743C12.0854 11.1681 12.1151 11.2557 12.0965 11.2699C12.0779 11.284 12.0181 11.2194 11.9629 11.1256" fill="#006B3F"/>
<path d="M12.0302 11.0743C12.0854 11.1681 12.1151 11.2557 12.0965 11.2699C12.0779 11.284 12.0181 11.2194 11.9629 11.1256" stroke="black" stroke-width="0.01"/>
<path d="M12.0683 11.0117C12.1235 11.1055 12.1532 11.1931 12.1346 11.2073C12.116 11.2214 12.0561 11.1568 12.001 11.0629" fill="#006B3F"/>
<path d="M12.0683 11.0117C12.1235 11.1055 12.1532 11.1931 12.1346 11.2073C12.116 11.2214 12.0561 11.1568 12.001 11.0629" stroke="black" stroke-width="0.01"/>
<path d="M12.2404 11.0253C12.3172 11.1535 12.3586 11.2731 12.3327 11.2925C12.3068 11.3118 12.2234 11.2235 12.1465 11.0954" fill="#006B3F"/>
<path d="M12.2404 11.0253C12.3172 11.1535 12.3586 11.2731 12.3327 11.2925C12.3068 11.3118 12.2234 11.2235 12.1465 11.0954" stroke="black" stroke-width="0.01"/>
<path d="M12.1268 10.959C12.1822 11.0626 12.2121 11.1592 12.1935 11.1748C12.175 11.1903 12.115 11.1189 12.0596 11.0153" fill="#006B3F"/>
<path d="M12.1268 10.959C12.1822 11.0626 12.2121 11.1592 12.1935 11.1748C12.175 11.1903 12.115 11.1189 12.0596 11.0153" stroke="black" stroke-width="0.01"/>
<path d="M12.122 10.8081C12.085 10.8454 12.1212 10.915 12.1551 10.9402C12.193 10.9746 12.4062 11.1994 12.5566 11.0102C12.4361 11.008 12.2112 10.7252 12.122 10.8081Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M12.0956 10.6969C12.0587 10.7341 12.0949 10.8037 12.1287 10.8289C12.1667 10.8633 12.3799 11.0882 12.5303 10.899C12.4097 10.8968 12.1849 10.6139 12.0956 10.6969Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M12.0624 10.5914C12.0255 10.6286 12.0617 10.6983 12.0955 10.7234C12.1335 10.7578 12.3466 10.9827 12.497 10.7935C12.3765 10.7913 12.1516 10.5084 12.0624 10.5914Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M11.9892 10.4684C11.9522 10.5056 11.9884 10.5752 12.0223 10.6004C12.0602 10.6348 12.2734 10.8597 12.4238 10.6705C12.3033 10.6683 12.0784 10.3854 11.9892 10.4684Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M11.7259 10.3527C11.8021 10.296 11.9421 10.2794 12.0511 10.335C12.142 10.3795 12.2934 10.561 12.4072 10.604C12.3271 10.6183 12.2783 10.6062 12.2271 10.5816C12.1261 10.6548 12.09 10.6658 11.987 10.6802C11.8437 10.7008 11.7248 10.6635 11.683 10.5888C11.6404 10.5183 11.6588 10.4052 11.7259 10.3527Z" fill="#9461C9" stroke="black" stroke-width="0.01"/>
<path d="M11.8865 10.5031C11.9228 10.5037 11.9525 10.4872 11.9528 10.4662C11.9532 10.4452 11.9241 10.4276 11.8879 10.4269C11.8516 10.4263 11.822 10.4428 11.8216 10.4638C11.8212 10.4849 11.8503 10.5024 11.8865 10.5031Z" fill="#D41C30" stroke="black" stroke-width="0.01"/>
<path d="M11.7065 10.6721C11.7539 10.6545 11.7836 10.6168 11.7729 10.5879C11.7622 10.559 11.7151 10.5499 11.6678 10.5675C11.6204 10.5851 11.5907 10.6228 11.6014 10.6517C11.6121 10.6806 11.6592 10.6897 11.7065 10.6721Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M11.8842 10.4846C11.8972 10.4848 11.908 10.4759 11.9082 10.4646C11.9084 10.4533 11.898 10.444 11.8849 10.4438C11.8719 10.4435 11.8612 10.4525 11.861 10.4638C11.8608 10.475 11.8712 10.4844 11.8842 10.4846Z" fill="black"/>
<path d="M11.7435 10.516C11.7495 10.5452 11.7278 10.5847 11.6808 10.5987C11.6329 10.6186 11.5965 10.6636 11.5755 10.7371C11.5027 10.5694 11.549 10.4984 11.6264 10.4811C11.6929 10.4599 11.733 10.4626 11.7435 10.516Z" fill="#FCD116" stroke="black" stroke-width="0.01"/>
<path d="M11.6738 10.5469C11.683 10.5465 11.6901 10.5384 11.6896 10.529C11.689 10.5196 11.6812 10.5123 11.6719 10.5128C11.6627 10.5133 11.6557 10.5213 11.6562 10.5307C11.6567 10.5402 11.6646 10.5474 11.6738 10.5469Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_115329)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.0771484 6H24.0691V18.032H-0.0771484V6Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.117188 10.1877H24.1489V11.365H-0.117188V10.1877Z" fill="#FFD600"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2461 6H11.3858V18.032H10.2484L10.2461 6Z" fill="#FFD600"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3457 6H12.4831V18.032H11.3457V6Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.117188 11.3251H24.1489V12.5048H-0.117188V11.3251Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.117188 12.5048H24.1489V13.6822H-0.117188V12.5048Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4834 6H13.6231V18.032H12.4834V6Z" fill="white"/>
<path d="M8.83133 12.0254C8.83133 13.81 10.2717 15.2567 12.0485 15.2567C13.8253 15.2567 15.2656 13.81 15.2656 12.0254C15.2656 10.2408 13.8253 8.79415 12.0485 8.79415C10.2717 8.79415 8.83133 10.2408 8.83133 12.0254Z" fill="#E72910"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8794 9.21951L12.011 8.84351L12.1308 9.21246C12.1308 9.21246 12.5327 9.22421 12.5327 9.21716C12.5327 9.21011 12.2154 9.45921 12.2154 9.45921L12.3588 9.87281C12.3541 9.86106 12.011 9.61666 12.011 9.61666C12.011 9.61666 11.6632 9.86106 11.6702 9.86106C11.6773 9.86106 11.8018 9.46156 11.8018 9.46156L11.4893 9.22421L11.8794 9.21716V9.21951Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8984 9.23595L12.0088 8.914L12.1122 9.2336C12.1122 9.2336 12.4624 9.243 12.4624 9.2383C12.4624 9.2336 12.1874 9.4498 12.1874 9.4498L12.3096 9.807C12.3049 9.79525 12.0088 9.5861 12.0088 9.5861C12.0088 9.5861 11.708 9.7976 11.7127 9.7976C11.7174 9.7976 11.8302 9.4498 11.8302 9.4498L11.5576 9.243L11.896 9.2383L11.8984 9.23595Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9456 9.28999L12.0114 9.10199L12.0725 9.28764C12.0725 9.28764 12.2723 9.29234 12.2723 9.28764C12.2723 9.28294 12.1148 9.40984 12.1148 9.40984L12.1853 9.61664C12.183 9.60959 12.0114 9.48974 12.0114 9.48974L11.8422 9.61194C11.8469 9.61194 11.908 9.41219 11.908 9.41219L11.7529 9.29469L11.9456 9.28999Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3803 10.9773L14.5119 10.6013L14.6294 10.9703C14.6294 10.9703 15.0336 10.9844 15.0336 10.9773C15.0336 10.9703 14.7164 11.2194 14.7164 11.2194L14.8574 11.633C14.8527 11.6212 14.5119 11.3768 14.5119 11.3768C14.5119 11.3768 14.1641 11.6212 14.1712 11.6212C14.1782 11.6212 14.3028 11.2217 14.3028 11.2217L13.9902 10.982L14.3803 10.975V10.9773Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.3966 10.9961L14.5117 10.6695L14.6151 10.9914C14.6151 10.9914 14.9629 11.0008 14.9629 10.9961C14.9629 10.9914 14.688 11.2076 14.688 11.2076L14.8125 11.5625C14.8078 11.5531 14.5117 11.3416 14.5117 11.3416C14.5117 11.3416 14.2109 11.5531 14.2156 11.5531C14.2203 11.5531 14.3308 11.2053 14.3308 11.2053L14.0605 11.0008L14.3966 10.9961Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.446 11.0502L14.5118 10.8622L14.5706 11.0455L14.7727 11.0502L14.6129 11.17C14.6129 11.17 14.6881 11.3815 14.6834 11.3768C14.6834 11.3698 14.5118 11.2499 14.5118 11.2499L14.3403 11.3698L14.4061 11.17L14.251 11.0525L14.446 11.0502Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6518 13.7691L13.7834 13.3931L13.9009 13.7644C13.9009 13.7644 14.3051 13.7762 14.3051 13.7715C14.3051 13.7668 13.9879 14.0135 13.9879 14.0135L14.1289 14.4248C14.1242 14.413 13.7834 14.171 13.7834 14.171C13.7834 14.171 13.4356 14.413 13.4403 14.413C13.445 14.413 13.5743 14.0135 13.5743 14.0135L13.2617 13.7785L13.6518 13.7715V13.7691Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6681 13.7879L13.7832 13.4636L13.8866 13.7832C13.8866 13.7832 14.2344 13.795 14.2344 13.7879C14.2344 13.7809 13.9595 13.9994 13.9595 13.9994L14.084 14.3566C14.0793 14.3449 13.7832 14.1357 13.7832 14.1357C13.7832 14.1357 13.4824 14.3472 13.4871 14.3472C13.4918 14.3472 13.6023 13.9994 13.6023 13.9994L13.332 13.795L13.6681 13.7879Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.7175 13.842L13.7833 13.654L13.8421 13.8396C13.8421 13.8396 14.0442 13.8467 14.0442 13.842C14.0442 13.8373 13.8844 13.9642 13.8844 13.9642L13.9549 14.1686C13.9549 14.1639 13.7833 14.0417 13.7833 14.0417L13.6118 14.1639L13.6776 13.9642L13.5225 13.8467L13.7175 13.842Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1567 13.7691L10.2883 13.3931L10.4058 13.7644C10.4058 13.7644 10.8077 13.7762 10.8077 13.7715C10.8077 13.7668 10.4904 14.0135 10.4904 14.0135L10.6361 14.4248C10.6291 14.413 10.2883 14.171 10.2883 14.171C10.2883 14.171 9.9405 14.413 9.9452 14.413C9.9499 14.413 10.0792 14.0135 10.0792 14.0135L9.7666 13.7785L10.1567 13.7715V13.7691Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1753 13.7879L10.2881 13.4636L10.3915 13.7832C10.3915 13.7832 10.7393 13.795 10.7393 13.7879C10.7393 13.7809 10.4644 13.9994 10.4644 13.9994L10.5889 14.3566C10.5842 14.3449 10.2881 14.1357 10.2881 14.1357C10.2881 14.1357 9.98731 14.3472 9.99201 14.3472C9.99671 14.3472 10.1072 13.9994 10.1072 13.9994L9.83691 13.795L10.173 13.7879H10.1753Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2224 13.842L10.2882 13.654L10.3469 13.8396C10.3469 13.8396 10.549 13.8467 10.549 13.842C10.549 13.8373 10.3892 13.9642 10.3892 13.9642L10.4597 14.1686C10.4597 14.1639 10.2882 14.0417 10.2882 14.0417L10.1166 14.1639L10.1824 13.9642L10.0273 13.8467L10.2224 13.842Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.51803 10.9044L9.64963 10.5284L9.76948 10.8997C9.76948 10.8997 10.1713 10.9115 10.1713 10.9044C10.1713 10.8974 9.85408 11.1488 9.85408 11.1488L9.99743 11.5601C9.99038 11.5483 9.64963 11.3063 9.64963 11.3063C9.64963 11.3063 9.30183 11.546 9.30888 11.546C9.31593 11.546 9.44048 11.1465 9.44048 11.1465L9.12793 10.9115L9.51803 10.9044Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.53664 10.9232L9.64944 10.5989L9.75519 10.9185C9.75519 10.9185 10.1006 10.9303 10.1006 10.9232C10.1006 10.9162 9.82569 11.1347 9.82569 11.1347L9.95024 11.4919C9.94554 11.4802 9.64944 11.271 9.64944 11.271C9.64944 11.271 9.34864 11.4825 9.35569 11.4825C9.36274 11.4825 9.46849 11.1347 9.46849 11.1347L9.19824 10.9303L9.53664 10.9232Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5843 10.9773L9.6501 10.7893L9.7112 10.975L9.91095 10.9773L9.7535 11.0995L9.824 11.304C9.82165 11.2993 9.6501 11.1771 9.6501 11.1771L9.4809 11.2993C9.4856 11.2993 9.5467 11.0995 9.5467 11.0995L9.3916 10.982L9.5843 10.9773Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6211 10.0913L13.4895 10.4673L13.372 10.0984C13.372 10.0984 12.9678 10.0866 12.9678 10.0913C12.9678 10.096 13.285 9.8493 13.285 9.8493L13.144 9.43805C13.1487 9.4498 13.4895 9.69185 13.4895 9.69185C13.4895 9.69185 13.8373 9.4498 13.8302 9.4498C13.8232 9.4498 13.6986 9.8493 13.6986 9.8493L14.0112 10.0843L13.6211 10.0913Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6044 10.0726C13.6044 10.0796 13.4869 10.3992 13.4869 10.3992L13.3859 10.0796C13.3859 10.0796 13.0381 10.0679 13.0381 10.0726C13.0381 10.0773 13.313 9.86343 13.313 9.86343L13.1885 9.50623C13.1932 9.51798 13.4893 9.72713 13.4893 9.72713C13.4893 9.72713 13.7901 9.51563 13.7854 9.51563C13.7807 9.51563 13.6702 9.86343 13.6702 9.86343L13.9405 10.0679L13.6021 10.0726H13.6044Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5552 10.0185L13.4894 10.2065L13.4306 10.0232C13.4306 10.0232 13.2285 10.0162 13.2285 10.0209C13.2285 10.0256 13.3883 9.89866 13.3883 9.89866L13.3178 9.69421C13.3178 9.69891 13.4894 9.82111 13.4894 9.82111L13.6609 9.69891C13.6562 9.69891 13.5928 9.89866 13.5928 9.89866L13.7502 10.0162L13.5552 10.0209V10.0185Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.624 12.822L14.4924 13.198L14.3749 12.8267C14.3749 12.8267 13.9707 12.815 13.9707 12.822C13.9707 12.8291 14.288 12.58 14.288 12.58L14.147 12.1664C14.1517 12.1781 14.4924 12.4202 14.4924 12.4202C14.4924 12.4202 14.8402 12.1781 14.8332 12.1781C14.8261 12.1781 14.7016 12.5776 14.7016 12.5776L15.0165 12.815L14.6264 12.822H14.624Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.6074 12.8033L14.4922 13.1276L14.3888 12.808C14.3888 12.808 14.041 12.7986 14.041 12.8033C14.041 12.808 14.316 12.5918 14.316 12.5918L14.1914 12.2346C14.1961 12.2463 14.4922 12.4555 14.4922 12.4555C14.4922 12.4555 14.793 12.244 14.7883 12.244C14.7836 12.244 14.6732 12.5918 14.6732 12.5918L14.9434 12.7986L14.605 12.8033H14.6074Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5581 12.7492L14.4923 12.9372L14.4335 12.7515C14.4335 12.7515 14.2314 12.7468 14.2314 12.7515C14.2314 12.7562 14.3912 12.6293 14.3912 12.6293L14.3207 12.4225C14.3207 12.4296 14.4923 12.5494 14.4923 12.5494L14.6638 12.4272C14.6591 12.4272 14.5957 12.6293 14.5957 12.6293L14.7531 12.7468L14.5581 12.7492Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1357 14.8195L12.0041 15.1955L11.8866 14.8242C11.8866 14.8242 11.4824 14.8125 11.4824 14.8172C11.4824 14.8219 11.7997 14.5751 11.7997 14.5751L11.6587 14.1639C11.6634 14.1756 12.0041 14.4177 12.0041 14.4177C12.0041 14.4177 12.3519 14.1756 12.3449 14.1756C12.3378 14.1756 12.2133 14.5751 12.2133 14.5751L12.5258 14.8125L12.1357 14.8195Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1191 14.7984L12.0039 15.1274L11.9005 14.8055C11.9005 14.8055 11.5527 14.7937 11.5527 14.8008C11.5527 14.8078 11.8277 14.5893 11.8277 14.5893L11.7031 14.2321C11.7078 14.2438 12.0039 14.453 12.0039 14.453C12.0039 14.453 12.3047 14.2415 12.3 14.2415C12.2953 14.2415 12.1849 14.5893 12.1849 14.5893L12.4551 14.7937L12.1191 14.8008V14.7984Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0698 14.7467L12.004 14.9347L11.9453 14.749C11.9453 14.749 11.7432 14.742 11.7432 14.7467C11.7432 14.7514 11.903 14.6245 11.903 14.6245L11.8325 14.42C11.8325 14.4247 12.004 14.5469 12.004 14.5469L12.1756 14.4247L12.1098 14.6245L12.2649 14.742L12.0698 14.7467Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.80018 12.822L9.66623 13.198L9.54873 12.8267C9.54873 12.8267 9.14453 12.815 9.14453 12.822C9.14453 12.8291 9.46178 12.58 9.46178 12.58L9.32078 12.1664C9.32548 12.1781 9.66623 12.4202 9.66623 12.4202L10.0117 12.1805L9.87773 12.58L10.1903 12.8173L9.80018 12.8244V12.822Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.78119 12.8033L9.66604 13.1276L9.56264 12.808C9.56264 12.808 9.21484 12.7986 9.21484 12.8033C9.21484 12.808 9.48979 12.5918 9.48979 12.5918L9.36524 12.2346C9.36994 12.2463 9.66604 12.4555 9.66604 12.4555C9.66604 12.4555 9.96684 12.244 9.96214 12.244C9.95744 12.244 9.84699 12.5918 9.84699 12.5918L10.1172 12.7986L9.78119 12.8033Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.73192 12.7492L9.66612 12.9372L9.60737 12.7515C9.60737 12.7515 9.40527 12.7468 9.40527 12.7515C9.40527 12.7562 9.56507 12.6293 9.56507 12.6293L9.49457 12.4225C9.49457 12.4296 9.66612 12.5494 9.66612 12.5494L9.83767 12.4272L9.77187 12.6293L9.92697 12.7468L9.73192 12.7492Z" fill="#108C00"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6621 10.1313L10.5305 10.5073L10.4083 10.1384C10.4083 10.1384 10.0088 10.1266 10.0088 10.1313C10.0088 10.136 10.326 9.88928 10.326 9.88928L10.1827 9.47803C10.1874 9.48978 10.5281 9.73183 10.5281 9.73183C10.5281 9.73183 10.8759 9.48978 10.8712 9.48978C10.8665 9.48978 10.7396 9.88928 10.7396 9.88928L11.0498 10.1243L10.6621 10.1337V10.1313Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6435 10.1126L10.5283 10.4416L10.4249 10.1196C10.4249 10.1196 10.0771 10.1079 10.0771 10.1149C10.0771 10.122 10.3521 9.9034 10.3521 9.9034L10.2275 9.5462C10.2322 9.55795 10.5283 9.7671 10.5283 9.7671C10.5283 9.7671 10.8291 9.5556 10.8244 9.5556C10.8197 9.5556 10.7116 9.9034 10.7116 9.9034L10.9795 10.1079L10.6435 10.1149V10.1126Z" fill="#FFE700"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5938 10.0608L10.528 10.2488L10.4693 10.0632C10.4693 10.0632 10.2695 10.0561 10.2695 10.0608C10.2695 10.0655 10.427 9.93864 10.427 9.93864L10.3565 9.73419C10.3565 9.73889 10.528 9.86109 10.528 9.86109L10.6996 9.73889L10.6338 9.93864L10.7889 10.0561L10.5938 10.0608Z" fill="#108C00"/>
<path d="M12.2419 13.5457C12.335 13.5341 12.4105 13.1508 12.4105 12.6897C12.4105 12.2285 12.335 11.8641 12.2419 11.8758C12.1487 11.8874 12.0732 12.2707 12.0732 12.7318C12.0732 13.193 12.1487 13.5573 12.2419 13.5457Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.457 13.5333C12.5568 13.5208 12.6377 13.1369 12.6377 12.6757C12.6377 12.2146 12.5568 11.8509 12.457 11.8633C12.3573 11.8758 12.2764 12.2598 12.2764 12.7209C12.2764 13.182 12.3573 13.5457 12.457 13.5333Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3721 13.6525C12.4519 13.6426 12.5166 13.2233 12.5166 12.716C12.5166 12.2087 12.4519 11.8056 12.3721 11.8156C12.2922 11.8256 12.2275 12.2449 12.2275 12.7521C12.2275 13.2594 12.2922 13.6625 12.3721 13.6525Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3799 12.9111C11.5265 12.9037 11.463 12.8304 11.5363 12.7889C11.6096 12.7498 11.7147 12.7742 11.7465 12.8231C11.7783 12.872 11.7538 12.9208 11.7954 12.9208C11.8369 12.9208 12.944 12.8597 12.9831 12.8988C13.0223 12.9404 13.032 13.021 12.9905 13.0528C12.9514 13.087 11.551 13.1261 11.5021 13.0919C11.4532 13.0577 11.3799 12.9208 11.3799 12.9111Z" fill="#A95600" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1459 13.2007C12.1459 13.2985 12.313 13.2686 12.3174 13.3503C12.3149 13.4368 12.0363 13.3588 12.0293 13.2007C12.0363 13.0423 12.3042 12.9612 12.3105 13.0516C12.3149 13.1264 12.1455 13.1029 12.1455 13.2007H12.1459Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2435 13.2031C12.2435 13.3009 12.4107 13.2711 12.4151 13.3527C12.4125 13.4392 12.1339 13.3613 12.127 13.2031C12.1339 13.0448 12.4019 12.9636 12.4081 13.0541C12.4125 13.1288 12.2432 13.1054 12.2432 13.2031H12.2435Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.349 13.1983C12.349 13.296 12.5162 13.2662 12.5206 13.3478C12.518 13.4343 12.2394 13.3564 12.2324 13.1983C12.2394 13.0399 12.5074 12.9587 12.5136 13.0492C12.518 13.124 12.3486 13.1005 12.3486 13.1983H12.349Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4467 13.1983C12.4467 13.296 12.6138 13.2662 12.6182 13.3478C12.6157 13.4343 12.337 13.3564 12.3301 13.1983C12.337 13.0399 12.605 12.9587 12.6113 13.0492C12.6157 13.124 12.4463 13.1005 12.4463 13.1983H12.4467Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path d="M12.9169 13.4955C12.9689 13.4964 13.0118 13.4544 13.0127 13.4017C13.0136 13.3489 12.9722 13.3053 12.9203 13.3044C12.8683 13.3034 12.8254 13.3455 12.8245 13.3982C12.8236 13.451 12.865 13.4946 12.9169 13.4955Z" fill="#A95600" stroke="black" stroke-width="0.01"/>
<path d="M12.3321 13.4121C12.3796 13.4072 12.4095 13.3194 12.399 13.2158C12.3885 13.1123 12.3415 13.0322 12.294 13.037C12.2465 13.0419 12.2165 13.1297 12.2271 13.2333C12.2376 13.3369 12.2846 13.4169 12.3321 13.4121Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.1885 13.3996C12.236 13.3948 12.266 13.3069 12.2555 13.2034C12.2449 13.0998 12.1979 13.0198 12.1504 13.0246C12.1029 13.0294 12.073 13.1173 12.0835 13.2208C12.094 13.3244 12.141 13.4044 12.1885 13.3996Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.086 13.216C12.1335 13.2111 12.1634 13.1233 12.1529 13.0197C12.1424 12.9162 12.0954 12.8361 12.0479 12.8409C12.0004 12.8458 11.9704 12.9336 11.981 13.0372C11.9915 13.1407 12.0385 13.2208 12.086 13.216Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.1909 13.1825C12.2356 13.1779 12.2625 13.0824 12.251 12.9692C12.2395 12.8559 12.194 12.7678 12.1493 12.7723C12.1046 12.7768 12.0777 12.8723 12.0892 12.9856C12.1007 13.0989 12.1463 13.187 12.1909 13.1825Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3927 13.2067C12.4374 13.2021 12.4648 13.1119 12.4539 13.0051C12.4431 12.8983 12.3981 12.8154 12.3534 12.8199C12.3087 12.8244 12.2813 12.9147 12.2921 13.0215C12.303 13.1283 12.348 13.2112 12.3927 13.2067Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2823 13.1392C12.327 13.1347 12.3544 13.0444 12.3436 12.9376C12.3327 12.8308 12.2877 12.7479 12.243 12.7525C12.1983 12.757 12.1709 12.8473 12.1818 12.9541C12.1926 13.0609 12.2376 13.1438 12.2823 13.1392Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.1456 13.0427C12.1903 13.0381 12.2177 12.9479 12.2069 12.8411C12.196 12.7343 12.151 12.6514 12.1063 12.6559C12.0616 12.6604 12.0342 12.7507 12.045 12.8575C12.0559 12.9643 12.1009 13.0472 12.1456 13.0427Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.0167 12.9869C12.0614 12.9824 12.0888 12.8921 12.078 12.7853C12.0671 12.6785 12.0221 12.5956 11.9774 12.6002C11.9327 12.6047 11.9053 12.695 11.9161 12.8018C11.927 12.9086 11.972 12.9915 12.0167 12.9869Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.898 10.9998C11.898 10.9998 11.612 11.2442 11.6511 11.9017C11.6951 12.5615 12.2988 12.867 12.2988 12.867C12.2988 12.867 12.4503 12.6788 12.4259 12.1461C12.377 11.3689 12.0886 11.0291 12.0886 11.0291L11.898 10.9974V10.9998Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path d="M12.496 13.4388C12.5436 13.4425 12.5888 13.3614 12.597 13.2577C12.6051 13.1539 12.5732 13.0667 12.5256 13.063C12.478 13.0592 12.4328 13.1403 12.4247 13.2441C12.4165 13.3479 12.4484 13.435 12.496 13.4388Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3564 13.4009C12.404 13.4046 12.4491 13.3235 12.4573 13.2198C12.4655 13.116 12.4335 13.0288 12.386 13.0251C12.3384 13.0213 12.2932 13.1024 12.285 13.2062C12.2768 13.31 12.3088 13.3971 12.3564 13.4009Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.289 13.2019C12.3366 13.2056 12.3818 13.1245 12.3899 13.0207C12.3981 12.917 12.3662 12.8298 12.3186 12.8261C12.271 12.8223 12.2258 12.9034 12.2176 13.0072C12.2095 13.1109 12.2414 13.1981 12.289 13.2019Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3983 13.1878C12.4431 13.1913 12.4867 13.1022 12.4956 12.9887C12.5045 12.8752 12.4755 12.7803 12.4307 12.7768C12.3859 12.7732 12.3424 12.8624 12.3334 12.9759C12.3245 13.0894 12.3536 13.1843 12.3983 13.1878Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.5926 13.2476C12.6374 13.2511 12.6805 13.1673 12.6889 13.0602C12.6973 12.9532 12.6679 12.8636 12.6231 12.8601C12.5783 12.8566 12.5352 12.9405 12.5267 13.0475C12.5183 13.1545 12.5478 13.2441 12.5926 13.2476Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.4959 13.1616C12.5407 13.1651 12.5838 13.0813 12.5922 12.9742C12.6007 12.8672 12.5712 12.7776 12.5264 12.7741C12.4816 12.7706 12.4385 12.8545 12.4301 12.9615C12.4216 13.0685 12.4511 13.1581 12.4959 13.1616Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3777 13.042C12.4225 13.0455 12.4656 12.9616 12.4741 12.8546C12.4825 12.7476 12.453 12.658 12.4082 12.6545C12.3635 12.6509 12.3203 12.7348 12.3119 12.8418C12.3035 12.9489 12.3329 13.0385 12.3777 13.042Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2615 12.9642C12.3063 12.9677 12.3494 12.8838 12.3579 12.7768C12.3663 12.6698 12.3368 12.5802 12.292 12.5766C12.2472 12.5731 12.2041 12.657 12.1957 12.764C12.1873 12.871 12.2167 12.9607 12.2615 12.9642Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.7398 12.8922C12.8657 12.8449 12.8453 12.5006 12.6943 12.123C12.5432 11.7454 12.3187 11.4775 12.1928 11.5247C12.0669 11.572 12.0873 11.9163 12.2383 12.2939C12.3894 12.6715 12.6139 12.9394 12.7398 12.8922Z" fill="#C90000" stroke="black" stroke-width="0.01"/>
<path d="M12.3259 11.6399C12.3842 11.6409 12.4322 11.5994 12.4331 11.5472C12.434 11.4949 12.3875 11.4518 12.3292 11.4508C12.2709 11.4497 12.2229 11.4913 12.222 11.5435C12.2211 11.5957 12.2676 11.6389 12.3259 11.6399Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.3596 11.5061C12.4106 11.5069 12.4527 11.4653 12.4536 11.4131C12.4545 11.3609 12.4139 11.3178 12.3629 11.3169C12.3119 11.316 12.2698 11.3576 12.2689 11.4099C12.2679 11.4621 12.3086 11.5052 12.3596 11.5061Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2326 11.5038C12.2836 11.5047 12.3257 11.4631 12.3266 11.4108C12.3276 11.3586 12.2869 11.3156 12.2359 11.3147C12.1849 11.3138 12.1428 11.3554 12.1419 11.4076C12.141 11.4598 12.1816 11.5029 12.2326 11.5038Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2822 11.2947C12.3361 11.2956 12.3805 11.2583 12.3813 11.2113C12.3821 11.1643 12.3391 11.1254 12.2851 11.1244C12.2312 11.1235 12.1868 11.1608 12.186 11.2079C12.1852 11.2549 12.2282 11.2937 12.2822 11.2947Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2714 11.1845C12.3254 11.1854 12.3697 11.1481 12.3706 11.1011C12.3714 11.0541 12.3283 11.0152 12.2744 11.0143C12.2205 11.0133 12.1761 11.0507 12.1753 11.0977C12.1745 11.1447 12.2175 11.1836 12.2714 11.1845Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.1115 11.4332C12.1625 11.4341 12.2046 11.3925 12.2055 11.3403C12.2065 11.2881 12.1658 11.245 12.1148 11.2441C12.0638 11.2432 12.0217 11.2848 12.0208 11.3371C12.0199 11.3893 12.0605 11.4324 12.1115 11.4332Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.1369 11.3652C12.1879 11.3661 12.23 11.3245 12.2309 11.2723C12.2318 11.2201 12.1912 11.177 12.1402 11.1761C12.0892 11.1752 12.0471 11.2168 12.0462 11.2691C12.0453 11.3213 12.0859 11.3644 12.1369 11.3652Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.0329 11.317C12.0912 11.318 12.1392 11.2765 12.1401 11.2243C12.1411 11.1721 12.0945 11.1289 12.0362 11.1279C11.9779 11.1269 11.9299 11.1684 11.929 11.2206C11.9281 11.2728 11.9746 11.316 12.0329 11.317Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2001 11.0488C12.2541 11.0498 12.2985 11.0124 12.2993 10.9654C12.3001 10.9184 12.257 10.8795 12.2031 10.8786C12.1492 10.8777 12.1048 10.915 12.104 10.962C12.1032 11.009 12.1462 11.0479 12.2001 11.0488Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.0471 11.2317C12.0981 11.2326 12.1402 11.191 12.1411 11.1387C12.142 11.0865 12.1014 11.0435 12.0504 11.0426C11.9994 11.0417 11.9573 11.0833 11.9564 11.1355C11.9554 11.1878 11.9961 11.2308 12.0471 11.2317Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M11.8469 11.3211C11.8979 11.322 11.94 11.2804 11.9409 11.2282C11.9418 11.1759 11.9012 11.1329 11.8502 11.132C11.7992 11.1311 11.7571 11.1727 11.7562 11.2249C11.7552 11.2772 11.7959 11.3202 11.8469 11.3211Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M11.8791 11.3046C11.9301 11.3055 11.9722 11.2639 11.9731 11.2116C11.974 11.1594 11.9334 11.1163 11.8824 11.1154C11.8314 11.1146 11.7893 11.1562 11.7884 11.2084C11.7875 11.2606 11.8281 11.3037 11.8791 11.3046Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M11.9201 11.2295C11.9711 11.2304 12.0132 11.1888 12.0141 11.1366C12.0151 11.0843 11.9744 11.0413 11.9234 11.0404C11.8724 11.0395 11.8303 11.0811 11.8294 11.1333C11.8285 11.1856 11.8691 11.2286 11.9201 11.2295Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.81 13.2326C12.9704 13.178 12.9548 12.7423 12.7749 12.2594C12.5951 11.7765 12.3192 11.4293 12.1587 11.4839C11.9983 11.5385 12.0139 11.9742 12.1938 12.4571C12.3736 12.94 12.6495 13.2872 12.81 13.2326Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.8008 12.692C12.8304 12.6778 12.8225 12.5843 12.7832 12.4832C12.7438 12.3821 12.6878 12.3117 12.6582 12.326C12.6285 12.3402 12.6364 12.4338 12.6758 12.5348C12.7151 12.6359 12.7711 12.7063 12.8008 12.692Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.691 12.4983C12.9321 12.8311 12.8957 13.0378 12.8658 13.2123C12.792 13.008 12.7535 12.8797 12.5123 12.5469C12.2712 12.2141 12.3998 11.9886 12.4193 11.8679C12.4544 11.9737 12.4498 12.1655 12.691 12.4983Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7085 12.7623C12.9497 13.0951 12.9133 13.3018 12.8833 13.4763C12.8095 13.272 12.771 13.1437 12.5299 12.8109C12.2888 12.4781 12.4174 12.2525 12.4369 12.1319C12.472 12.2377 12.4674 12.4295 12.7085 12.7623Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7273 12.9741C12.9761 13.3012 12.9443 13.5088 12.9182 13.684C12.8398 13.4814 12.7984 13.354 12.5496 13.0269C12.3009 12.6997 12.4246 12.4711 12.4414 12.35C12.4788 12.455 12.4786 12.6469 12.7273 12.9741Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.6662 12.5397C12.7243 12.5254 12.7152 12.3673 12.6458 12.1867C12.5765 12.006 12.4731 11.8713 12.4149 11.8856C12.3567 11.9 12.3658 12.0581 12.4352 12.2387C12.5046 12.4193 12.608 12.5541 12.6662 12.5397Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.5617 12.6369C12.6143 12.6287 12.6137 12.5014 12.5601 12.3527C12.5066 12.204 12.4205 12.0902 12.3678 12.0985C12.3152 12.1067 12.3159 12.2339 12.3694 12.3826C12.4229 12.5313 12.509 12.6452 12.5617 12.6369Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.392 12.748C12.4447 12.7408 12.4472 12.6136 12.3977 12.4638C12.3481 12.314 12.2652 12.1984 12.2126 12.2056C12.1599 12.2127 12.1574 12.34 12.2069 12.4898C12.2565 12.6396 12.3394 12.7552 12.392 12.748Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.5006 12.2206C12.5426 12.2135 12.5389 12.1183 12.4923 12.0082C12.4458 11.8981 12.3739 11.8146 12.3319 11.8218C12.2899 11.829 12.2936 11.9241 12.3402 12.0342C12.3868 12.1444 12.4586 12.2278 12.5006 12.2206Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.4157 12.3293C12.4587 12.3246 12.4614 12.2288 12.4218 12.1154C12.3821 12.0019 12.3151 11.9138 12.2722 11.9184C12.2292 11.9231 12.2265 12.0188 12.2661 12.1323C12.3058 12.2457 12.3728 12.3339 12.4157 12.3293Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2609 12.0051C12.3297 12.2012 12.3552 12.3768 12.3176 12.3971C12.28 12.4174 12.1938 12.2745 12.125 12.0784" fill="#009200"/>
<path d="M12.2609 12.0051C12.3297 12.2012 12.3552 12.3768 12.3176 12.3971C12.28 12.4174 12.1938 12.2745 12.125 12.0784" stroke="black" stroke-width="0.01"/>
<path d="M12.4089 12.1015C12.4519 12.0968 12.4546 12.0011 12.4149 11.8876C12.3753 11.7742 12.3083 11.686 12.2653 11.6906C12.2223 11.6953 12.2196 11.7911 12.2593 11.9045C12.2989 12.018 12.3659 12.1061 12.4089 12.1015Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path d="M12.2845 12.1847C12.3275 12.1812 12.3318 12.0854 12.2942 11.9708C12.2565 11.8563 12.1911 11.7663 12.1481 11.7699C12.1052 11.7735 12.1008 11.8693 12.1385 11.9838C12.1762 12.0984 12.2416 12.1883 12.2845 12.1847Z" fill="#009200" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.148 11.74C12.2168 11.8729 12.2529 11.9963 12.2284 12.0153C12.204 12.0344 12.1284 11.9419 12.0596 11.8089" fill="#009200"/>
<path d="M12.148 11.74C12.2168 11.8729 12.2529 11.9963 12.2284 12.0153C12.204 12.0344 12.1284 11.9419 12.0596 11.8089" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1988 11.6545C12.2676 11.7874 12.3037 11.9107 12.2792 11.9298C12.2548 11.9489 12.1792 11.8563 12.1104 11.7234" fill="#009200"/>
<path d="M12.1988 11.6545C12.2676 11.7874 12.3037 11.9107 12.2792 11.9298C12.2548 11.9489 12.1792 11.8563 12.1104 11.7234" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4209 11.7013C12.5167 11.8841 12.5667 12.0534 12.5323 12.0794C12.498 12.1054 12.3926 11.9779 12.2969 11.7951" fill="#009200"/>
<path d="M12.4209 11.7013C12.5167 11.8841 12.5667 12.0534 12.5323 12.0794C12.498 12.1054 12.3926 11.9779 12.2969 11.7951" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2759 11.5746C12.3447 11.7209 12.3808 11.8566 12.3564 11.8777C12.3319 11.8988 12.2563 11.7971 12.1875 11.6509" fill="#009200"/>
<path d="M12.2759 11.5746C12.3447 11.7209 12.3808 11.8566 12.3564 11.8777C12.3319 11.8988 12.2563 11.7971 12.1875 11.6509" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3771 11.0655C12.329 11.115 12.3787 11.201 12.424 11.2306C12.4749 11.272 12.7627 11.5435 12.957 11.2951C12.7975 11.2994 12.4928 10.9553 12.3771 11.0655Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3429 10.9213C12.2948 10.9708 12.3445 11.0568 12.3898 11.0864C12.4407 11.1278 12.7285 11.3993 12.9228 11.1509C12.7633 11.1552 12.4587 10.8111 12.3429 10.9213Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.299 10.7845C12.2509 10.8339 12.3005 10.92 12.3459 10.9495C12.3967 10.9909 12.6845 11.2625 12.8789 11.0141C12.7193 11.0184 12.4147 10.6743 12.299 10.7845Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2033 10.628C12.1552 10.6775 12.2048 10.7635 12.2502 10.7931C12.301 10.8345 12.5888 11.106 12.7832 10.8576C12.6236 10.8619 12.319 10.5178 12.2033 10.628Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7666 10.5589C11.8593 10.4865 12.0329 10.465 12.1703 10.5373C12.2849 10.5951 12.4785 10.8292 12.6213 10.8847C12.584 10.8934 12.545 10.8952 12.5065 10.8902C12.4679 10.8851 12.4307 10.8732 12.3969 10.8552C12.2734 10.9494 12.2292 10.963 12.101 10.9817C11.9239 11.0074 11.7747 10.9591 11.721 10.8629C11.6652 10.7721 11.6845 10.6266 11.7666 10.5589Z" fill="#804BFF" stroke="black" stroke-width="0.01"/>
<path d="M12.0372 10.7169C12.0851 10.7178 12.1244 10.6971 12.1248 10.6708C12.1253 10.6445 12.0868 10.6225 12.0389 10.6216C11.991 10.6208 11.9518 10.6415 11.9513 10.6678C11.9509 10.6941 11.9893 10.7161 12.0372 10.7169Z" fill="#FF0000" stroke="black" stroke-width="0.01"/>
<path d="M11.8259 10.9285C11.8893 10.9045 11.9289 10.8552 11.9146 10.8185C11.9002 10.7817 11.8372 10.7714 11.7738 10.7955C11.7105 10.8195 11.6708 10.8688 11.6852 10.9056C11.6996 10.9423 11.7626 10.9526 11.8259 10.9285Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path d="M11.9004 10.849C11.9161 10.8493 11.929 10.8368 11.9292 10.8211C11.9295 10.8055 11.917 10.7926 11.9014 10.7923C11.8857 10.792 11.8728 10.8045 11.8726 10.8202C11.8723 10.8358 11.8847 10.8487 11.9004 10.849Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9391 10.7295C11.9492 10.7649 11.9212 10.8133 11.8564 10.8309C11.7904 10.8556 11.7423 10.9106 11.7173 11.0006C11.6055 10.7968 11.6661 10.7097 11.7731 10.6881C11.865 10.6615 11.9211 10.6644 11.9391 10.7295Z" fill="#FFFF00" stroke="black" stroke-width="0.01"/>
<path d="M11.6647 10.947C11.6774 10.9473 11.6879 10.9372 11.6881 10.9245C11.6883 10.9118 11.6782 10.9013 11.6655 10.9011C11.6529 10.9009 11.6424 10.911 11.6422 10.9237C11.642 10.9364 11.6521 10.9468 11.6647 10.947Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_14099_115329">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 235 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 419 KiB

View File

@ -0,0 +1,74 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="black"/>
<path d="M20 6H4V14H20V6Z" fill="white"/>
<path d="M20 6H4V10H20V6Z" fill="#CE1126"/>
<path d="M12.0162 12.0468L13.386 13.3183L13.2885 11.0089C13.2741 10.6589 12.97 10.7392 12.749 10.8655C12.5252 11.0089 12.2699 11.0089 12.0001 10.9142C11.7304 11.0089 11.4751 11.0089 11.2512 10.8655C11.0303 10.7392 10.7262 10.6589 10.7118 11.0089L10.6143 13.3183L12.0162 12.0468H12.0162Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M10.8696 10.9297L10.775 13.1761L10.6143 13.3194L10.7118 11.01C10.7577 10.9785 10.8381 10.9297 10.8696 10.9297V10.9297Z" fill="#C09300"/>
<path d="M11.0623 11.0911L10.9819 12.9702L10.8213 13.1346L10.9188 10.9648C10.9504 10.9964 11.0451 11.0738 11.0623 11.0911L11.0623 11.0911Z" fill="#C09300"/>
<path d="M11.2371 11.2333L11.174 12.8006L11.0449 12.9268L11.1253 11.1387C11.1568 11.1702 11.2199 11.2161 11.2371 11.2333V11.2333Z" fill="#C09300"/>
<path d="M11.4267 11.3143L11.3636 12.65L11.2373 12.7524L11.3004 11.2655C11.332 11.2798 11.3951 11.3143 11.4267 11.3143V11.3143Z" fill="#C09300"/>
<path d="M11.6018 11.3143L11.5558 12.4274L11.4268 12.5537L11.4755 11.3286C11.5071 11.3286 11.5874 11.3286 11.6018 11.3143V11.3143Z" fill="#C09300"/>
<path d="M13.1245 10.9297L13.2192 13.1761L13.3799 13.3194L13.2823 11.01C13.2364 10.9785 13.1561 10.9297 13.1245 10.9297V10.9297Z" fill="#C09300"/>
<path d="M12.9319 11.0911L13.0122 12.9702L13.1729 13.1346L13.0753 10.9648C13.0437 10.9964 12.949 11.0738 12.9319 11.0911L12.9319 11.0911Z" fill="#C09300"/>
<path d="M12.757 11.2333L12.8201 12.8006L12.9492 12.9268L12.8689 11.1387C12.8374 11.1702 12.7742 11.2161 12.757 11.2333V11.2333Z" fill="#C09300"/>
<path d="M12.5674 11.3143L12.6306 12.65L12.7568 12.7524L12.6937 11.2655C12.6621 11.2798 12.599 11.3143 12.5674 11.3143V11.3143Z" fill="#C09300"/>
<path d="M12.3923 11.3143L12.4383 12.4274L12.5674 12.5537L12.5186 11.3286C12.4871 11.3286 12.4067 11.3286 12.3923 11.3143V11.3143Z" fill="#C09300"/>
<path d="M12.0636 12.3008L12.2559 13.1759L12.1927 13.239L12.1267 13.1902L12.0177 12.4098L12.0636 13.1902L12.0005 13.2705L11.9373 13.1902L11.9833 12.4098L11.8743 13.1902L11.8082 13.239L11.7451 13.1759L11.9373 12.3008H12.0636H12.0636Z" fill="#C09300" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.5701 11.9161L11.1885 13.2702L11.7136 13.3505L11.9373 12.3321L11.5701 11.9161V11.9161Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.4443 12.3771L11.4902 12.489L11.7383 12.252" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.6152 12.0977L11.6671 12.5846L11.825 12.378" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.7627 12.459L11.8489 12.7565" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.8822 12.6465L11.7078 12.9113M11.7622 13.1756L11.7064 12.9117L11.6577 12.6432L11.5409 12.8014L11.4897 12.619L11.3262 12.7867L11.4093 13.0917L11.5241 12.903L11.5872 13.0953L11.705 12.912" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.2998 13.2387L11.4058 13.0898L11.4749 13.3189L11.5695 13.1583L11.6327 13.3505" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.4182 11.916L12.7998 13.2701L12.2747 13.3505L12.0509 12.332L12.4182 11.916V11.916Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.5439 12.3771L12.498 12.4889L12.2499 12.252" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.373 12.0976L12.3211 12.5845L12.1633 12.378" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.2256 12.459L12.1394 12.7565" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.1061 12.6464L12.2804 12.9113M12.2261 13.1756L12.2819 12.9116L12.3306 12.6432L12.4474 12.8013L12.4986 12.619L12.6621 12.7867L12.579 13.0917L12.4642 12.903L12.4011 13.0952L12.2833 12.912" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M12.6885 13.2386L12.5825 13.0897L12.5134 13.3189L12.4187 13.1582L12.3556 13.3505" stroke="#C09300" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M11.9999 13.8739C12.3987 13.8739 12.7803 13.8423 13.0041 13.7792C13.0988 13.762 13.0988 13.7133 13.0988 13.6501C13.1935 13.6186 13.1447 13.5067 13.2107 13.5067C13.1447 13.524 13.1304 13.3948 13.0501 13.4121C13.0501 13.3001 12.9382 13.2858 12.8435 13.3173C12.6541 13.3805 12.3184 13.3948 11.9999 13.3948C11.6814 13.3805 11.3485 13.3805 11.1563 13.3173C11.0616 13.2858 10.9497 13.3001 10.9497 13.4121C10.8694 13.3948 10.855 13.524 10.7891 13.5067C10.855 13.5067 10.8063 13.6186 10.9009 13.6501C10.9009 13.7133 10.9009 13.762 10.9985 13.7792C11.2194 13.8423 11.6011 13.8739 11.9999 13.8739H11.9999Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.458 13.2693C11.5871 13.2865 11.7306 13.3008 11.8425 13.2865C11.9056 13.2865 11.9515 13.3955 11.8253 13.4128C11.7134 13.4271 11.5384 13.4128 11.4437 13.3955C11.3633 13.3812 11.1883 13.3496 11.0764 13.318C10.9645 13.2693 11.0449 13.1746 11.1079 13.189C11.2055 13.2205 11.3318 13.2521 11.458 13.2693L11.458 13.2693Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.5427 13.2693C12.4136 13.2865 12.2702 13.3008 12.1611 13.2865C12.0951 13.2865 12.0492 13.3955 12.1755 13.4128C12.2874 13.4271 12.4624 13.4128 12.557 13.3955C12.6374 13.3812 12.8124 13.3496 12.9243 13.318C13.0362 13.2693 12.9559 13.1746 12.8927 13.189C12.7952 13.2205 12.6689 13.2521 12.5427 13.2693L12.5427 13.2693Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.0612 13.2069C10.9637 13.1896 10.9178 13.3015 10.9493 13.3646C10.9637 13.333 11.0297 13.333 11.044 13.3015C11.0612 13.2528 11.0297 13.2528 11.0612 13.2069Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.4435 13.4997C11.4435 13.4366 11.5066 13.4444 11.5066 13.3812C11.5066 13.3497 11.4894 13.3009 11.4579 13.3009C11.4263 13.3009 11.3947 13.3325 11.3947 13.364C11.3803 13.4271 11.4435 13.4366 11.4435 13.4997Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.8975 13.3184C11.9921 13.3184 11.9827 13.4446 11.9368 13.5078C11.9368 13.4619 11.8564 13.4446 11.8564 13.4131C11.8564 13.3643 11.929 13.3643 11.8975 13.3184Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.9385 13.2069C13.036 13.1896 13.082 13.3015 13.0504 13.3646C13.036 13.333 12.97 13.333 12.9557 13.3015C12.9385 13.2528 12.9701 13.2528 12.9385 13.2069H12.9385Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.5562 13.4997C12.5562 13.4366 12.4932 13.4444 12.4932 13.3812C12.4932 13.3497 12.5104 13.3009 12.5419 13.3009C12.5735 13.3009 12.6051 13.3325 12.6051 13.364C12.6194 13.4271 12.5562 13.4366 12.5562 13.4997H12.5562Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.1023 13.3184C12.0076 13.3184 12.017 13.4446 12.0629 13.5078C12.0629 13.4619 12.1433 13.4446 12.1433 13.4131C12.1433 13.3643 12.0707 13.3643 12.1023 13.3184Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.0929 13.2383C11.1245 13.2383 11.1732 13.2527 11.1876 13.2699L11.0928 13.2383L11.0929 13.2383Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.2501 13.2871C11.2673 13.2871 11.3304 13.3015 11.362 13.3186L11.25 13.287L11.2501 13.2871Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.8247 13.3497C11.7932 13.3497 11.7301 13.3497 11.7129 13.364L11.8247 13.3496L11.8247 13.3497Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.649 13.3508C11.6318 13.3336 11.5686 13.3336 11.5371 13.3508H11.6489H11.649Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.9062 13.2383C12.8747 13.2383 12.8287 13.2527 12.8115 13.2699L12.9062 13.2383Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.7486 13.2871C12.7314 13.2871 12.6683 13.3015 12.6367 13.3186L12.7487 13.287L12.7486 13.2871Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.1749 13.3497C12.2065 13.3497 12.2696 13.3497 12.2868 13.364L12.1748 13.3496L12.1749 13.3497Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.3497 13.3508C12.3669 13.3336 12.4301 13.3336 12.4616 13.3508H12.3496H12.3497Z" fill="white" stroke="#C09300" stroke-width="0.01" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.067 13.4901C11.0563 13.488 11.0507 13.4796 11.0534 13.4696C11.0567 13.4574 11.0664 13.4504 11.0757 13.4537C11.0815 13.4558 11.0922 13.4666 11.0923 13.4705C11.0924 13.4749 11.0867 13.4855 11.0842 13.4855C11.0832 13.4855 11.0816 13.4865 11.0806 13.4876C11.0786 13.4899 11.0723 13.4911 11.067 13.4901H11.067Z" fill="#C09300"/>
<path d="M12.1656 13.568C12.1616 13.5665 12.1553 13.5576 12.1553 13.5535C12.1553 13.5458 12.1668 13.5332 12.1738 13.5331C12.1774 13.5331 12.1869 13.538 12.1905 13.5418C12.197 13.5485 12.1956 13.5596 12.1874 13.5659C12.1834 13.569 12.1714 13.5702 12.1656 13.568L12.1656 13.568Z" fill="#C09300"/>
<path d="M12.1725 13.619C12.1641 13.6161 12.161 13.612 12.1603 13.6027C12.1596 13.593 12.1606 13.5915 12.1708 13.5859L12.1781 13.5819L12.1851 13.585C12.1947 13.5893 12.1989 13.5939 12.1993 13.6003C12.1996 13.6073 12.1945 13.6144 12.1865 13.618C12.1794 13.6212 12.179 13.6212 12.1725 13.619V13.619Z" fill="#C09300"/>
<path d="M11.155 13.4003C11.1481 13.4001 11.1386 13.4064 11.1332 13.4096C11.1202 13.4127 11.1051 13.4207 11.0925 13.4121C11.0802 13.4083 11.0638 13.4113 11.0619 13.4265C11.0651 13.4396 11.0833 13.447 11.0944 13.4384C11.1026 13.4276 11.125 13.4213 11.1275 13.4396C11.1184 13.4535 11.1194 13.4718 11.1119 13.4865C11.1107 13.4957 11.1069 13.5044 11.1019 13.5121C11.0927 13.5131 11.0828 13.512 11.075 13.5178C11.0625 13.5185 11.0497 13.5247 11.0425 13.5353C11.0345 13.5468 11.0268 13.5586 11.0244 13.5728C11.0266 13.5873 11.0432 13.5914 11.0557 13.5921C11.069 13.5958 11.0824 13.6006 11.0957 13.6046C11.1174 13.6095 11.1377 13.6174 11.1594 13.6221C11.1911 13.6317 11.2244 13.6361 11.2563 13.6446C11.2596 13.6458 11.2628 13.6467 11.2663 13.6471C11.2795 13.6499 11.2864 13.6355 11.2875 13.6246C11.2941 13.6015 11.2991 13.5779 11.3057 13.5546C11.3102 13.5453 11.3156 13.5243 11.2975 13.529C11.2872 13.5352 11.2785 13.5445 11.2657 13.5453C11.2482 13.5463 11.2582 13.5642 11.265 13.5715C11.2666 13.5833 11.2628 13.5973 11.255 13.6065C11.2446 13.6131 11.2316 13.6054 11.2207 13.6028C11.2092 13.603 11.1862 13.5971 11.1969 13.5815C11.2007 13.57 11.2011 13.5574 11.2057 13.5459C11.2115 13.5336 11.2124 13.5202 11.215 13.5072C11.2078 13.4916 11.1955 13.5123 11.1857 13.514C11.1789 13.5187 11.1536 13.5207 11.1669 13.5328C11.1784 13.5415 11.1696 13.5567 11.1675 13.5678C11.1668 13.5832 11.1508 13.5869 11.1382 13.5834C11.1256 13.5828 11.1081 13.5735 11.1188 13.5597C11.1212 13.5481 11.1252 13.5368 11.1275 13.5253C11.1323 13.5113 11.1363 13.498 11.1413 13.484C11.1435 13.4716 11.1479 13.4599 11.1538 13.449C11.1541 13.4353 11.1633 13.4235 11.1632 13.4096C11.1622 13.4029 11.1592 13.4004 11.155 13.4003H11.155ZM11.0832 13.5453C11.0848 13.545 11.086 13.5452 11.0875 13.5459C11.0925 13.548 11.0927 13.5521 11.0875 13.5565C11.0853 13.5585 11.0827 13.5603 11.0819 13.5603C11.0726 13.5595 11.0698 13.5581 11.0694 13.5546C11.0691 13.5516 11.07 13.5508 11.0763 13.5478C11.0794 13.5463 11.0815 13.5456 11.0832 13.5453V13.5453Z" fill="#C09300"/>
<path d="M11.0629 13.6453C11.053 13.6359 11.0546 13.6291 11.0693 13.6182C11.0756 13.6135 11.0794 13.614 11.0865 13.6206C11.0976 13.6307 11.098 13.6371 11.0883 13.6457C11.0835 13.65 11.0813 13.6508 11.0757 13.6509C11.0699 13.651 11.0682 13.6502 11.0629 13.6453L11.0629 13.6453Z" fill="#C09300"/>
<path d="M11.1235 13.6641C11.1138 13.6617 11.1083 13.6519 11.1111 13.6423C11.1137 13.6336 11.1151 13.6328 11.1279 13.6326C11.1422 13.6325 11.145 13.6349 11.1451 13.6475C11.1452 13.6546 11.1446 13.6562 11.1411 13.6595C11.137 13.6633 11.129 13.6654 11.1235 13.6641V13.6641Z" fill="#C09300"/>
<path d="M12.9059 13.6657C12.9014 13.6619 12.9004 13.6602 12.9004 13.6554C12.9003 13.6471 12.9051 13.6411 12.9153 13.6365C12.9289 13.6303 12.9345 13.6312 12.9396 13.6402C12.9465 13.6522 12.9461 13.6571 12.938 13.6652C12.9335 13.6697 12.9326 13.67 12.9223 13.6701C12.9121 13.6701 12.911 13.6699 12.9059 13.6657V13.6657Z" fill="#C09300"/>
<path d="M11.2045 13.6887C11.1972 13.6867 11.1935 13.6813 11.1934 13.6726C11.1933 13.6659 11.1938 13.6648 11.1984 13.6612C11.2015 13.6588 11.2062 13.6568 11.21 13.6562C11.2153 13.6555 11.2173 13.656 11.2216 13.659C11.2326 13.6667 11.2349 13.6744 11.2286 13.6818C11.2218 13.6897 11.2153 13.6916 11.2045 13.6887L11.2045 13.6887Z" fill="#C09300"/>
<path d="M11.6432 13.7083C11.6416 13.7063 11.6381 13.7051 11.6377 13.7025C11.6383 13.6914 11.6389 13.6802 11.6424 13.6696C11.6443 13.6591 11.6426 13.6482 11.6463 13.638C11.65 13.6195 11.65 13.6003 11.6543 13.5819C11.6545 13.5724 11.6554 13.5629 11.6582 13.5538C11.6613 13.5394 11.6585 13.5243 11.6627 13.51C11.6622 13.5047 11.6684 13.4904 11.6738 13.4988C11.6817 13.5104 11.6921 13.5197 11.7022 13.5291C11.711 13.5342 11.703 13.5416 11.6969 13.5441C11.6886 13.5474 11.6866 13.5566 11.6872 13.5646C11.686 13.5729 11.6827 13.5807 11.6824 13.5892C11.6806 13.6016 11.6809 13.6143 11.6793 13.6267C11.6757 13.6389 11.6771 13.6519 11.6759 13.6645C11.676 13.6724 11.6722 13.6797 11.6728 13.6877C11.6718 13.6958 11.6714 13.7056 11.6646 13.7111C11.658 13.7144 11.6485 13.7139 11.6432 13.7083L11.6432 13.7083Z" fill="#C09300"/>
<path d="M12.2371 13.5119C12.2274 13.5192 12.2188 13.5278 12.2102 13.5363C12.1983 13.5453 12.2199 13.5505 12.2227 13.5582C12.2258 13.5699 12.2257 13.5824 12.2264 13.5944C12.23 13.6054 12.2316 13.6172 12.2308 13.6288C12.2298 13.6412 12.2136 13.6386 12.2064 13.6457C12.1966 13.6498 12.1927 13.6595 12.1852 13.6663C12.1803 13.6759 12.179 13.6878 12.1783 13.6988C12.179 13.7078 12.1723 13.7178 12.1783 13.7257C12.1791 13.7268 12.18 13.7283 12.1808 13.7294C12.1828 13.7323 12.1877 13.73 12.1908 13.7307C12.2009 13.7301 12.2114 13.7316 12.2208 13.7275C12.245 13.7234 12.2694 13.723 12.2939 13.7219C12.3089 13.7224 12.3233 13.7172 12.3383 13.7175C12.3501 13.7201 12.3553 13.7074 12.3552 13.6982C12.3485 13.6851 12.3543 13.6696 12.3489 13.6563C12.3442 13.6428 12.3461 13.6277 12.3439 13.6138C12.3436 13.6028 12.3297 13.5988 12.3227 13.6069C12.3159 13.6138 12.3048 13.6152 12.2996 13.6238C12.2936 13.6358 12.3121 13.6359 12.3152 13.645C12.3187 13.6543 12.3176 13.6647 12.3183 13.6744C12.3206 13.6863 12.3077 13.6869 12.2996 13.6882C12.2888 13.6922 12.2738 13.6949 12.2677 13.6819C12.2639 13.6723 12.2644 13.6621 12.2633 13.6519C12.2631 13.6341 12.2588 13.6166 12.2577 13.5988C12.2567 13.5769 12.2529 13.5551 12.2514 13.5332C12.2512 13.5241 12.25 13.5092 12.2371 13.5119L12.2371 13.5119ZM12.2246 13.6769L12.2308 13.6775L12.2314 13.685L12.2321 13.6925L12.2239 13.695C12.2196 13.6963 12.2159 13.6969 12.2158 13.6969C12.2158 13.6969 12.2141 13.6959 12.2121 13.6944C12.2077 13.6912 12.2088 13.6867 12.2146 13.6807C12.2178 13.6773 12.2193 13.6766 12.2246 13.6769L12.2246 13.6769Z" fill="#C09300"/>
<path d="M11.6253 13.4907C11.6177 13.4934 11.6081 13.5046 11.6003 13.5044C11.5827 13.5057 11.5852 13.5228 11.5978 13.5288C11.5995 13.534 11.5979 13.5406 11.5985 13.5463C11.6009 13.5621 11.591 13.5748 11.5928 13.5907C11.5919 13.6081 11.5867 13.6251 11.586 13.6426C11.581 13.6606 11.581 13.6792 11.5778 13.6976C11.5757 13.714 11.5638 13.7082 11.5535 13.7038C11.5534 13.6967 11.5529 13.6897 11.5528 13.6826C11.5572 13.6662 11.544 13.6615 11.531 13.6595C11.5172 13.6608 11.5105 13.649 11.5135 13.637C11.5194 13.6299 11.5342 13.6319 11.5435 13.6307C11.5631 13.6348 11.5623 13.6085 11.5522 13.5995C11.5453 13.5867 11.5282 13.5813 11.5235 13.5682C11.5254 13.5509 11.5139 13.5336 11.4997 13.5251C11.4779 13.5236 11.4615 13.5423 11.4535 13.5607C11.4444 13.5633 11.4354 13.566 11.4266 13.5695C11.4124 13.573 11.3922 13.5976 11.4116 13.607C11.4225 13.6099 11.4556 13.6175 11.441 13.6326C11.4327 13.6467 11.4169 13.647 11.4028 13.6432C11.3884 13.6432 11.3722 13.6362 11.3728 13.6195C11.3699 13.6045 11.3704 13.5883 11.3635 13.5745C11.3605 13.5577 11.3414 13.5616 11.3403 13.577C11.3257 13.5876 11.3276 13.6049 11.3378 13.6176C11.3442 13.6322 11.3379 13.6491 11.3316 13.6626C11.3278 13.6801 11.3085 13.6807 11.2947 13.6863C11.288 13.6889 11.2621 13.6848 11.2716 13.6995C11.2866 13.7048 11.3046 13.7095 11.3203 13.7057C11.3368 13.7037 11.3511 13.6924 11.3591 13.6782C11.3701 13.667 11.3891 13.6729 11.4035 13.6726C11.4189 13.6725 11.4347 13.6834 11.4497 13.6763C11.4541 13.665 11.4741 13.6464 11.4803 13.6657C11.4793 13.683 11.4945 13.6922 11.5103 13.6901C11.5276 13.6891 11.5212 13.7023 11.521 13.7126C11.5221 13.7313 11.5342 13.7411 11.5497 13.7488C11.555 13.7503 11.5606 13.7498 11.566 13.7488C11.5809 13.7441 11.597 13.7374 11.6016 13.7207C11.6077 13.7071 11.6078 13.6917 11.6122 13.6776C11.6158 13.655 11.6203 13.6324 11.621 13.6095C11.6265 13.5887 11.6249 13.5667 11.6291 13.5457C11.6317 13.5301 11.6337 13.5144 11.6353 13.4988C11.6335 13.4905 11.6299 13.4891 11.6253 13.4907L11.6253 13.4907ZM11.4897 13.5738C11.4927 13.5742 11.4944 13.5779 11.4947 13.5844C11.495 13.5917 11.4988 13.5977 11.5035 13.5988C11.5071 13.5997 11.5068 13.6036 11.5028 13.6063C11.5005 13.6079 11.4964 13.6089 11.4891 13.6088C11.4775 13.6088 11.4704 13.6058 11.4641 13.5994L11.4603 13.5957L11.466 13.5919C11.4688 13.5898 11.4739 13.5853 11.4772 13.5819C11.4829 13.5761 11.4867 13.5735 11.4897 13.5738H11.4897Z" fill="#C09300"/>
<path d="M12.8096 13.418C12.7982 13.4185 12.7868 13.4203 12.7765 13.423C12.7557 13.4217 12.7452 13.4435 12.7652 13.4542C12.7772 13.4849 12.796 13.4479 12.8152 13.4505C12.844 13.4561 12.8464 13.4871 12.8508 13.5105C12.8525 13.5336 12.8591 13.5561 12.8658 13.578C12.8851 13.5994 12.8514 13.6128 12.8371 13.5961C12.8249 13.5828 12.7987 13.5665 12.784 13.5848C12.7659 13.5925 12.7651 13.6167 12.7502 13.6236C12.726 13.631 12.723 13.6012 12.7102 13.5886C12.6985 13.5721 12.676 13.5707 12.6577 13.5648C12.6491 13.5475 12.6536 13.5179 12.6358 13.5061C12.6209 13.5122 12.5936 13.5401 12.6165 13.553C12.6388 13.5722 12.6067 13.581 12.5965 13.5942C12.5818 13.6105 12.5795 13.6329 12.5771 13.6536C12.5519 13.6675 12.547 13.6378 12.544 13.6192C12.542 13.597 12.5232 13.6035 12.5102 13.6117C12.4912 13.6194 12.4816 13.6375 12.4683 13.6517C12.4667 13.6647 12.4691 13.6789 12.469 13.6923C12.4733 13.7086 12.493 13.701 12.5052 13.6998C12.5248 13.6917 12.5328 13.7124 12.5171 13.7242C12.5064 13.7377 12.4727 13.7307 12.4758 13.7523C12.4867 13.7536 12.498 13.7532 12.509 13.7523C12.5308 13.7464 12.5542 13.731 12.5565 13.7067C12.5593 13.6856 12.5898 13.6894 12.6065 13.6848C12.6273 13.6788 12.6524 13.6773 12.6571 13.7036C12.6713 13.7185 12.7021 13.7353 12.7177 13.7148C12.7336 13.7051 12.7412 13.6881 12.7402 13.6698C12.737 13.6542 12.7656 13.6536 12.7727 13.6623C12.7831 13.6795 12.8157 13.6744 12.8315 13.6648C12.8482 13.6525 12.8518 13.6307 12.8758 13.6305C12.9115 13.6198 12.9485 13.6136 12.9833 13.6005C13.0115 13.5943 12.9791 13.5765 12.9721 13.5661C12.9506 13.5555 12.9319 13.5989 12.9077 13.5773C12.889 13.563 12.8903 13.5358 12.8833 13.5148C12.8786 13.4877 12.8798 13.4564 12.8602 13.4348C12.8468 13.4205 12.8285 13.4171 12.8096 13.418L12.8096 13.418ZM12.6733 13.6073C12.6758 13.6073 12.6787 13.6085 12.6833 13.6111C12.6921 13.6159 12.6983 13.624 12.6983 13.6305C12.6983 13.6347 12.6972 13.635 12.6908 13.638C12.6869 13.6398 12.6824 13.6417 12.6808 13.6417C12.6772 13.6417 12.6683 13.6346 12.6683 13.6317C12.6683 13.6305 12.6672 13.626 12.6658 13.6223C12.6635 13.6159 12.6638 13.616 12.6671 13.6117C12.6692 13.609 12.6708 13.6074 12.6733 13.6073ZM12.804 13.6142C12.8114 13.6137 12.8158 13.6161 12.819 13.6217C12.8226 13.6283 12.8201 13.6333 12.8108 13.6373C12.8068 13.6391 12.8027 13.6405 12.8021 13.6405C12.8015 13.6404 12.7981 13.6384 12.7946 13.6361C12.7892 13.6325 12.7884 13.6308 12.7883 13.6267C12.7883 13.6204 12.7953 13.6148 12.804 13.6142ZM12.6252 13.6161C12.6274 13.6158 12.6294 13.6169 12.6321 13.6192C12.6357 13.6223 12.6368 13.6248 12.6377 13.6311C12.6383 13.6355 12.6382 13.6411 12.6377 13.6436C12.6367 13.6481 12.6366 13.6479 12.6265 13.648C12.6137 13.6481 12.6125 13.6467 12.6127 13.6348C12.6129 13.6273 12.6129 13.6253 12.6171 13.6211C12.6203 13.6179 12.623 13.6164 12.6252 13.6161ZM12.5152 13.6448C12.5192 13.6458 12.523 13.6488 12.524 13.6536C12.5253 13.6599 12.5241 13.6628 12.519 13.6655C12.5145 13.6677 12.5043 13.6685 12.5015 13.6667C12.5005 13.6662 12.4987 13.6647 12.4977 13.663C12.4963 13.6606 12.4966 13.6594 12.4983 13.658C12.4995 13.657 12.5008 13.6556 12.5008 13.6548C12.5008 13.6541 12.5022 13.6516 12.504 13.6492C12.5069 13.6453 12.5112 13.6439 12.5152 13.6448H12.5152ZM12.7002 13.6686C12.7038 13.6686 12.7068 13.6698 12.709 13.6717C12.7127 13.675 12.7125 13.6797 12.7083 13.683C12.7056 13.6851 12.6909 13.6849 12.6858 13.683C12.6836 13.6821 12.6827 13.681 12.6827 13.6786C12.6827 13.6758 12.6835 13.674 12.6883 13.6717C12.6924 13.6698 12.6966 13.6686 12.7002 13.6686H12.7002Z" fill="#C09300"/>
<path d="M12.3576 13.7642C12.3557 13.763 12.3528 13.7619 12.3557 13.7598C12.3592 13.7538 12.3661 13.7517 12.3722 13.7494C12.3831 13.7447 12.3926 13.7366 12.3997 13.7271C12.4007 13.7204 12.4081 13.7168 12.4081 13.7098C12.4082 13.7003 12.4087 13.6906 12.4064 13.6813C12.4039 13.6728 12.3974 13.6663 12.3899 13.6618C12.3848 13.6578 12.3764 13.6567 12.3745 13.6495C12.3735 13.6427 12.3796 13.6375 12.3817 13.6313C12.3862 13.6229 12.3899 13.6141 12.3947 13.6058C12.3999 13.6001 12.4079 13.6055 12.4106 13.6111C12.4144 13.6167 12.4177 13.6226 12.4196 13.629C12.4257 13.6357 12.431 13.6435 12.4332 13.6523C12.4362 13.6585 12.4409 13.6643 12.4406 13.6716C12.4406 13.6799 12.4453 13.6874 12.445 13.6957C12.4453 13.7069 12.4453 13.7186 12.4412 13.7292C12.4384 13.7351 12.4327 13.7386 12.429 13.7439C12.4226 13.7498 12.4156 13.7554 12.4074 13.7586C12.4016 13.7604 12.3983 13.7671 12.391 13.7655C12.3808 13.7657 12.3703 13.7671 12.3601 13.7654C12.3607 13.7665 12.357 13.7636 12.3576 13.7643L12.3576 13.7642Z" fill="#C09300"/>
<path d="M12.2198 13.774C12.215 13.769 12.2139 13.7669 12.2139 13.762C12.2138 13.7571 12.2148 13.7551 12.2195 13.7503C12.2283 13.7414 12.2326 13.7412 12.2477 13.7489C12.2622 13.7562 12.267 13.7569 12.2683 13.7517C12.2696 13.7467 12.2779 13.7421 12.2858 13.7421C12.2908 13.742 12.2937 13.743 12.2977 13.7461C12.3027 13.7501 12.3029 13.7507 12.3031 13.7597C12.3031 13.769 12.303 13.7693 12.2973 13.7744C12.2917 13.7793 12.2908 13.7796 12.2839 13.7789C12.2752 13.7781 12.27 13.7741 12.2685 13.7672C12.2675 13.7622 12.2657 13.761 12.2644 13.7644C12.264 13.7655 12.2619 13.7668 12.2596 13.7674C12.2556 13.7684 12.2487 13.7727 12.2438 13.7774C12.2419 13.7791 12.2387 13.7799 12.2334 13.78C12.2263 13.7801 12.2253 13.7796 12.2198 13.774H12.2198Z" fill="#C09300"/>
<path d="M11.8235 13.5956C11.8102 13.5957 11.7959 13.6069 11.7941 13.62C11.7972 13.635 11.8097 13.6497 11.8016 13.6656C11.8072 13.6858 11.7864 13.6935 11.7722 13.6818C11.7637 13.6624 11.7594 13.6411 11.7466 13.6237C11.7305 13.6192 11.7235 13.6448 11.7122 13.6537C11.7178 13.6688 11.7342 13.6824 11.736 13.7012C11.7399 13.7195 11.7288 13.7398 11.7129 13.7493C11.6991 13.7624 11.6804 13.7577 11.6635 13.7606C11.643 13.7726 11.6785 13.7769 11.6879 13.7775C11.7088 13.7796 11.7306 13.7768 11.746 13.7612C11.7614 13.7539 11.7602 13.7273 11.7785 13.7243C11.8103 13.7229 11.8417 13.7292 11.8735 13.73C11.8905 13.734 11.9168 13.7279 11.9285 13.7406C11.9285 13.7627 11.9473 13.7764 11.9654 13.785C11.9753 13.7877 11.9858 13.7754 11.996 13.7731C12.0153 13.7669 12.0094 13.743 12.021 13.7337C12.054 13.7319 12.0873 13.7323 12.1204 13.7318C12.1267 13.732 12.1285 13.723 12.1329 13.7193C12.1321 13.7066 12.1317 13.6939 12.1297 13.6812C12.1234 13.6651 12.1308 13.6443 12.1191 13.6306C12.1025 13.6261 12.0884 13.6413 12.0716 13.6425C12.0531 13.6507 12.0375 13.6678 12.0366 13.6887C12.0256 13.7066 12.0081 13.6855 12.0141 13.6706C12.0134 13.6641 12.0155 13.6565 12.0135 13.6506C12.0034 13.6384 11.9856 13.6424 11.9716 13.6406C11.9512 13.6414 11.9314 13.637 11.911 13.6375C11.8931 13.6361 11.8746 13.639 11.8572 13.6343C11.8366 13.6337 11.8394 13.6136 11.836 13.5993C11.8323 13.5966 11.8279 13.5955 11.8235 13.5956V13.5956ZM11.8635 13.6693C11.8704 13.6695 11.8768 13.6704 11.8835 13.6712C11.8921 13.6726 11.9013 13.6682 11.9097 13.6712C11.9293 13.6745 11.9488 13.6737 11.9685 13.6756C11.9737 13.6755 11.9774 13.6793 11.981 13.6825C11.981 13.6961 11.981 13.71 11.981 13.7237C11.9804 13.7289 11.9825 13.7357 11.9779 13.7393C11.9764 13.7404 11.9747 13.7415 11.9729 13.7418C11.9675 13.7404 11.9617 13.7369 11.9591 13.7318C11.9583 13.7247 11.9595 13.7177 11.9597 13.7106C11.9596 13.7087 11.9605 13.7058 11.9597 13.7043C11.9555 13.7013 11.9507 13.6993 11.9454 13.6993C11.9284 13.6987 11.9117 13.6975 11.8947 13.6968C11.8806 13.6959 11.8661 13.698 11.8522 13.6943C11.8469 13.6924 11.8399 13.693 11.8366 13.6875C11.8319 13.682 11.8387 13.6755 11.8435 13.6731C11.8499 13.6702 11.8566 13.6692 11.8635 13.6693V13.6693ZM12.0891 13.6743C12.0923 13.6743 12.0933 13.6753 12.0947 13.6812C12.0957 13.685 12.0967 13.6896 12.0972 13.6912C12.098 13.6936 12.0968 13.6943 12.0935 13.6956C12.0836 13.6993 12.0738 13.6989 12.0704 13.6943C12.0688 13.6922 12.0706 13.6856 12.0735 13.6831C12.0793 13.6779 12.0857 13.6743 12.0891 13.6743H12.0891Z" fill="#C09300"/>
<path d="M11.9996 12.5432C12.6524 12.041 12.5965 11.3055 12.5965 11.3055C12.5792 11.3089 12.5629 11.3107 12.5456 11.3107C12.4087 11.3107 12.0821 11.2323 12.0059 11.1328C11.9243 11.2229 11.5905 11.3107 11.4544 11.3107C11.4372 11.3107 11.42 11.3089 11.4036 11.3055C11.4036 11.3055 11.3467 12.041 11.9996 12.5432H11.9996Z" fill="white" stroke="#C09300" stroke-width="0.01"/>
<path d="M12.5451 11.3598C12.5394 11.3601 12.5338 11.3603 12.5281 11.3603C12.404 11.3603 12.1157 11.2966 12.0046 11.2012C11.8882 11.2894 11.5952 11.3603 11.4731 11.3603C11.4674 11.3603 11.4617 11.3596 11.4561 11.3586C11.4558 11.3864 11.4573 11.4152 11.459 11.4415C11.4654 11.5395 11.4826 11.6378 11.5087 11.7325C11.5909 12.0304 11.7591 12.2836 12.0002 12.4756C12.2415 12.2834 12.4099 12.03 12.4922 11.7319C12.5183 11.6372 12.5356 11.5389 12.5421 11.4409C12.5438 11.4152 12.5452 11.387 12.5451 11.3598H12.5451Z" fill="white" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.788 11.3008C11.6705 11.3377 11.5434 11.3614 11.473 11.3614C11.4672 11.3614 11.4617 11.3606 11.4561 11.3595C11.4558 11.3874 11.4575 11.4164 11.4592 11.4427C11.4657 11.5407 11.4825 11.6387 11.5086 11.7333C11.5639 11.9338 11.6587 12.1139 11.788 12.2689V11.3008L11.788 11.3008Z" fill="#C09300"/>
<path d="M12.2002 11.2988V12.2838C12.3361 12.1254 12.4349 11.9397 12.4921 11.7326C12.5182 11.638 12.5349 11.54 12.5415 11.442C12.5432 11.4163 12.5448 11.388 12.5446 11.3607C12.539 11.3611 12.5334 11.3613 12.5277 11.3613C12.4531 11.3613 12.3193 11.3379 12.2002 11.2988L12.2002 11.2988Z" fill="#C09300"/>
<path d="M12.2465 11.0611C12.2599 11.0618 12.2285 10.9897 12.2285 10.9897C12.2638 11.0258 12.3971 11.0344 12.3971 11.0344C12.3171 10.9991 12.2371 10.7325 12.2465 10.52C12.2552 10.3067 12.216 10.2228 12.1846 10.1914C12.1446 10.1514 12.016 10.1161 11.9313 10.1114C11.8835 10.1091 11.8913 10.1475 11.8913 10.1475C11.8027 10.1248 11.7141 10.1161 11.6741 10.1428C11.6365 10.1679 11.6286 10.2934 11.6561 10.2714C11.7227 10.2181 11.7807 10.2667 11.8207 10.3247C11.856 10.3757 11.8537 10.52 11.8027 10.6886C11.7494 10.8658 11.6035 11.043 11.6035 11.043C11.6827 11.043 11.7941 10.9724 11.7941 10.9724L11.7674 11.083C11.8513 11.043 11.918 10.9811 11.918 10.9811L11.9979 11.065C12.0246 11.0297 12.0779 10.9811 12.0779 10.9811C12.0779 10.9811 12.1446 11.0516 12.2465 11.061L12.2465 11.0611Z" fill="white" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.9225 10.5507C11.9225 10.5507 11.8778 10.8792 11.7939 10.9725" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.9932 10.543C11.9932 10.543 11.976 10.8754 11.918 10.9821" stroke="#C09300" stroke-width="0.01"/>
<path d="M12.0557 10.5547C12.0557 10.5547 12.0557 10.9185 12.0776 10.9805" stroke="#C09300" stroke-width="0.01"/>
<path d="M12.1348 10.5742C12.1348 10.5742 12.1528 10.88 12.2281 10.9906" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.8421 10.3922C11.8382 10.3632 11.8311 10.3405 11.8209 10.3256C11.7809 10.2676 11.7229 10.2189 11.6562 10.2723C11.6562 10.2723 11.679 10.2017 11.7276 10.1993C11.7652 10.197 11.8507 10.2276 11.926 10.3562C11.926 10.3562 11.8703 10.3436 11.857 10.3554C11.8319 10.3773 11.8421 10.3922 11.8421 10.3922L11.8421 10.3922Z" fill="#C09300" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.649 10.1845C11.6545 10.1664 11.6632 10.15 11.6741 10.1429C11.7141 10.1163 11.8027 10.1249 11.8913 10.1476C11.8913 10.1476 11.8835 10.1092 11.9313 10.1116C12.016 10.1163 12.1446 10.1515 12.1846 10.1915C12.194 10.2017 12.205 10.2166 12.2144 10.2394H12.2128C12.1932 10.2119 12.1376 10.2135 12.1242 10.2151C12.103 10.2174 12.0897 10.2166 12.0615 10.2237C12.0482 10.2268 12.0278 10.2307 12.0168 10.2394C12.0082 10.2464 12.0011 10.2723 11.9878 10.2723C11.9666 10.2723 11.9682 10.2668 11.9627 10.2605C11.9556 10.2519 11.9517 10.2394 11.9446 10.2402C11.9227 10.2441 11.8874 10.2268 11.8427 10.1915C11.798 10.1562 11.7808 10.1476 11.7227 10.1515C11.6655 10.1563 11.6475 10.1884 11.6475 10.1884L11.649 10.1845L11.649 10.1845Z" fill="#C09300" stroke="#C09300" stroke-width="0.01"/>
<path d="M11.9766 10.2365C11.9896 10.2365 12.0002 10.226 12.0002 10.213C12.0002 10.2 11.9896 10.1895 11.9766 10.1895C11.9637 10.1895 11.9531 10.2 11.9531 10.213C11.9531 10.226 11.9637 10.2365 11.9766 10.2365Z" fill="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 216 KiB

View File

@ -0,0 +1,62 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#E32118"/>
<path d="M20 6H4V14H20V6Z" fill="white"/>
<path d="M20 6H4V10H20V6Z" fill="#3E9A00"/>
<path d="M4 6V18L8 12L4 6Z" fill="#0073CE"/>
<path d="M11.2842 10.793H13.2572V12.799C13.2572 13.474 12.3505 12.954 12.2733 13.314C12.1393 12.944 11.2893 13.479 11.2893 12.759C11.2893 12.059 11.2842 10.793 11.2842 10.793Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.4127 12.9935C12.4127 12.9935 12.3869 13.0185 12.3406 12.9985C12.2942 12.9785 12.2891 11.7135 12.2891 11.7135C12.3921 11.6035 12.4745 11.5685 12.4745 11.5685L12.5363 11.6185C12.3045 11.7335 12.3251 11.8985 12.3457 12.1835C12.3509 12.2885 12.3509 12.4235 12.3766 12.5535C12.4127 12.7185 12.4848 12.8585 12.49 12.9635C12.4951 13.0285 12.4127 12.9935 12.4127 12.9935Z" fill="#73452B" stroke="black" stroke-width="0.03"/>
<path d="M12.253 11.5387H12.3458C12.2685 12.2637 12.3355 12.6937 12.3355 12.9037C12.3355 12.9737 12.3767 12.9987 12.3715 12.9987C12.2788 13.0987 12.2324 12.9937 12.2324 12.9937L12.253 11.5387Z" fill="#73452B" stroke="black" stroke-width="0.03"/>
<path d="M12.1085 12.995C12.0209 13.035 12.0106 12.955 12.0157 12.945C12.2063 12.57 12.2888 11.745 12.1136 11.655L12.1239 11.575C12.1909 11.595 12.2527 11.68 12.2527 11.68C12.2785 12.605 12.2527 12.985 12.2373 13C12.1445 13.095 12.1085 12.985 12.1033 12.975" fill="#A36629"/>
<path d="M12.1085 12.995C12.0209 13.035 12.0106 12.955 12.0157 12.945C12.2063 12.57 12.2888 11.745 12.1136 11.655L12.1239 11.575C12.1909 11.595 12.2527 11.68 12.2527 11.68C12.2785 12.605 12.2527 12.985 12.2373 13C12.1445 13.095 12.1085 12.985 12.1033 12.975" stroke="black" stroke-width="0.03"/>
<path d="M12.1037 12.9783C12.0882 12.8983 12.2376 12.6933 12.2273 12.4783" stroke="black" stroke-width="0.03"/>
<path d="M12.3555 12.6531C12.4018 12.7781 12.4224 12.8881 12.4121 12.9931" stroke="black" stroke-width="0.03"/>
<path d="M12.5562 11.1981C12.5871 11.1631 12.5871 11.1631 12.6438 11.1631C12.6541 11.0881 12.7829 11.0881 12.7932 11.1831C12.8962 11.1631 12.9168 11.2231 12.8756 11.2831C12.9735 11.2581 13.0611 11.2831 13.0353 11.3931C13.2104 11.4381 13.1435 11.5581 13.0662 11.5831C13.0559 11.6581 12.9838 11.6831 12.8859 11.6531C12.7623 11.7381 12.6901 11.7081 12.6335 11.6231C12.4944 11.6431 12.4841 11.6131 12.4223 11.5381C12.3141 11.5831 12.2935 11.5831 12.2007 11.5281C12.1956 11.5981 12.1698 11.5781 12.1235 11.5731C12.1286 11.6631 12.0926 11.7031 12.0101 11.6731C12.072 11.7981 11.9123 11.8531 11.835 11.7481C11.7629 11.7531 11.7577 11.7331 11.7217 11.7081C11.6907 11.8081 11.5774 11.7931 11.5568 11.7381C11.4126 11.7181 11.428 11.6431 11.5465 11.6381C11.5568 11.5581 11.6289 11.5731 11.6753 11.5831C11.6804 11.5331 11.7114 11.5431 11.7371 11.5531C11.7217 11.5181 11.732 11.4981 11.7783 11.4881C11.7114 11.4031 11.7526 11.3731 11.8195 11.3431C11.7835 11.2631 11.8453 11.2681 11.8917 11.2631C11.8865 11.1781 11.9123 11.1631 12.005 11.1531C11.9947 11.1231 12.0101 11.0981 12.0617 11.0981C12.0307 11.0131 12.072 10.9936 12.1647 11.0081C12.1801 10.8846 12.4532 10.9431 12.4326 11.1131C12.5098 11.1231 12.5356 11.1381 12.5562 11.1981Z" fill="#009A3B" stroke="black" stroke-width="0.03"/>
<path d="M12.0059 11.1557C12.0265 11.1657 12.0522 11.1557 12.0574 11.2107C12.0986 11.1407 12.1501 11.1807 12.1501 11.2607" stroke="black" stroke-width="0.03"/>
<path d="M12.4335 11.1152C12.4129 11.1452 12.3356 11.1452 12.3459 11.2252C12.3202 11.1902 12.2687 11.1802 12.248 11.2152" stroke="black" stroke-width="0.03"/>
<path d="M12.557 11.2004C12.557 11.2204 12.5519 11.2804 12.5312 11.3104" stroke="black" stroke-width="0.03"/>
<path d="M12.8767 11.2857C12.8819 11.2907 12.8046 11.2857 12.7686 11.3107" stroke="black" stroke-width="0.03"/>
<path d="M13.0674 11.5858C13.0468 11.5758 13.0055 11.5508 12.9746 11.5908C12.9746 11.5708 12.9746 11.5158 12.918 11.5158" stroke="black" stroke-width="0.03"/>
<path d="M12.8868 11.6554C12.8868 11.6054 12.8765 11.5904 12.8662 11.5754" stroke="black" stroke-width="0.03"/>
<path d="M12.7172 11.5854C12.676 11.5554 12.6348 11.6004 12.6348 11.6254" stroke="black" stroke-width="0.03"/>
<path d="M12.4183 11.5397C12.4183 11.5197 12.4029 11.4797 12.4389 11.4647" stroke="black" stroke-width="0.03"/>
<path d="M11.8306 11.75C11.8409 11.7 11.877 11.7 11.8719 11.675C11.8667 11.635 11.8203 11.6 11.7637 11.655" stroke="black" stroke-width="0.03"/>
<path d="M11.8721 11.6744C11.903 11.6644 11.9339 11.6694 11.9442 11.6844" stroke="black" stroke-width="0.03"/>
<path d="M11.7842 11.4907C11.8048 11.4707 11.8563 11.4757 11.8872 11.4907" stroke="black" stroke-width="0.03"/>
<path d="M11.8877 11.3707C11.9135 11.3707 11.9598 11.3607 11.9753 11.4057C12.0319 11.3207 12.0731 11.3307 12.0835 11.3507" stroke="black" stroke-width="0.03"/>
<path d="M12.1865 11.34C12.2277 11.325 12.2999 11.365 12.3411 11.435C12.3617 11.38 12.3926 11.39 12.4235 11.385" stroke="black" stroke-width="0.03"/>
<path d="M12.6191 11.4345C12.6861 11.4045 12.7273 11.4645 12.7479 11.4895C12.7788 11.4495 12.8046 11.4495 12.8355 11.4495" stroke="black" stroke-width="0.03"/>
<path d="M11.9951 11.5542C12.0106 11.5292 12.0466 11.5242 12.0724 11.5392C12.0672 11.4942 12.0981 11.4742 12.1188 11.4842" stroke="black" stroke-width="0.03"/>
<path d="M12.206 10.513L12.0927 10.518L12.036 10.6165L11.9742 10.5225L11.8609 10.527L11.9124 10.428L11.8506 10.334L11.9691 10.329L12.0206 10.2305L12.0824 10.3245L12.1957 10.32L12.1442 10.419L12.206 10.513Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M11.722 10.5487L11.6087 10.5757L11.5778 10.6822L11.4954 10.6022L11.3872 10.6282L11.4181 10.5217L11.3408 10.4407L11.449 10.4142L11.4799 10.3072L11.5623 10.3872L11.6757 10.3612L11.6396 10.4682L11.722 10.5487Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M11.2531 10.6434L11.1501 10.6929L11.1449 10.8039L11.0471 10.7429L10.944 10.7919L10.9543 10.6809L10.8564 10.6194L10.9595 10.5694L10.9698 10.4584L11.0625 10.5194L11.1655 10.4704L11.1604 10.5814L11.2531 10.6434Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M12.3555 10.513L12.4688 10.518L12.5203 10.6165L12.5821 10.5225L12.6955 10.527L12.644 10.428L12.7058 10.334L12.5924 10.329L12.5358 10.2305L12.474 10.3245L12.3606 10.32L12.4121 10.419L12.3555 10.513Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M12.8398 10.5487L12.948 10.5757L12.9789 10.6822L13.0614 10.6022L13.1695 10.6282L13.1386 10.5217L13.2211 10.4407L13.1077 10.4142L13.0768 10.3072L12.9944 10.3872L12.8862 10.3612L12.9171 10.4682L12.8398 10.5487Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M13.3037 10.6434L13.4067 10.6929L13.4119 10.8039L13.5098 10.7429L13.6128 10.7919L13.6077 10.6809L13.7004 10.6194L13.5973 10.5694L13.5922 10.4584L13.4943 10.5194L13.3913 10.4704L13.4016 10.5814L13.3037 10.6434Z" fill="#FFD700" stroke="black" stroke-width="0.03"/>
<path d="M13.4424 12.7631L13.5712 12.9431L13.6897 12.7731L13.6072 12.6281L13.4424 12.7631Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M12.623 13.2886L12.6333 13.4686C12.6333 13.4686 12.6849 13.4686 12.7312 13.4536C12.7724 13.4386 12.8085 13.4086 12.8085 13.4086L12.8033 13.3136L12.623 13.2886Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.933 13.2886L11.9227 13.4636C11.9227 13.4636 11.8763 13.4636 11.83 13.4536C11.7887 13.4436 11.7527 13.4186 11.7527 13.4186L11.7012 13.2986L11.933 13.2886Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.1034 12.7625L10.9694 12.9425L10.8252 12.7125L10.9334 12.6025L11.1034 12.7625Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.7471 13.6478C11.7471 13.8178 12.8083 13.8178 12.8083 13.6478V13.4078C12.8083 13.5328 11.7471 13.5078 11.7471 13.4078V13.6478Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M10.7998 13.0943C10.8925 13.5543 11.7477 13.5643 11.7477 13.5643V13.4093C11.7271 13.3493 11.7631 13.3293 11.9022 13.3093C11.9589 13.3043 11.9331 13.2243 11.9331 13.2243C11.9331 13.2243 11.5622 13.2893 11.2995 13.1893C10.944 13.0493 10.8925 12.7793 10.8925 12.7793C10.8925 12.7793 10.8668 12.9893 10.7998 13.0943Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.7509 13.0943C13.6633 13.5543 12.8081 13.5643 12.8081 13.5643V13.4093C12.8236 13.3493 12.7875 13.3293 12.6484 13.3093C12.5918 13.3043 12.6227 13.2243 12.6227 13.2243C12.6227 13.2243 12.9936 13.2893 13.2563 13.1893C13.6066 13.0493 13.6478 12.7793 13.6478 12.7793C13.6478 12.7793 13.6839 12.9893 13.7509 13.0943Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M10.8664 12.9185C10.6295 12.7935 10.8149 12.6635 10.8355 12.2935C10.8716 12.5185 11.1343 12.6135 11.1034 12.7585C10.9952 12.7635 10.9437 12.6035 10.8922 12.7785L10.8664 12.9185Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M13.6841 12.9185C13.9211 12.7885 13.7254 12.6635 13.7047 12.2935C13.6687 12.5185 13.4111 12.6135 13.442 12.7585C13.5451 12.7635 13.5966 12.6035 13.6481 12.7785L13.6841 12.9135V12.9185Z" fill="white" stroke="black" stroke-width="0.03"/>
<path d="M11.0111 13.0872L11.0369 13.1072L10.9802 13.1672C10.9575 13.1912 10.9521 13.2071 10.9678 13.2217C10.9874 13.2399 11.0011 13.2336 11.0214 13.2122L11.0833 13.1472L11.1039 13.1672L11.0421 13.2372C11.0086 13.2751 10.9774 13.2664 10.9513 13.2428C10.9286 13.2222 10.9156 13.1923 10.949 13.1555L11.0113 13.0875L11.0111 13.0872Z" fill="black"/>
<path d="M11.1139 13.1724L11.1397 13.1874L11.1345 13.3074L11.1912 13.2224L11.217 13.2374L11.1345 13.3674L11.1036 13.3524L11.1088 13.2324L11.0521 13.3174L11.0264 13.3024L11.1139 13.1724Z" fill="black"/>
<path d="M11.1602 13.3806L11.2323 13.2406L11.258 13.2556L11.1911 13.3906L11.1602 13.3806Z" fill="black"/>
<path d="M11.2737 13.2619L11.2168 13.4068L11.2737 13.4269C11.3267 13.4457 11.3516 13.423 11.3684 13.3795C11.3854 13.3353 11.378 13.3027 11.325 13.282L11.2737 13.2619ZM11.2941 13.297C11.3474 13.315 11.3506 13.3347 11.3361 13.3702C11.322 13.404 11.3089 13.4172 11.2582 13.3918L11.2941 13.297Z" fill="black"/>
<path d="M11.4443 13.3173L11.3516 13.4523L11.3874 13.4625L11.4081 13.4274L11.4699 13.4424L11.4752 13.4775L11.5111 13.4823L11.4752 13.3224L11.4443 13.3173ZM11.4545 13.3524L11.4647 13.4124L11.4236 13.4073L11.4545 13.3524Z" fill="black"/>
<path d="M11.532 13.3301L11.5264 13.485L11.587 13.4862C11.6434 13.4872 11.6594 13.4581 11.6608 13.4116C11.6622 13.3644 11.6442 13.3359 11.5871 13.3331L11.532 13.3301L11.532 13.3301ZM11.5629 13.357C11.6194 13.3572 11.629 13.3747 11.627 13.4129C11.6251 13.4493 11.617 13.4659 11.5607 13.4578L11.5629 13.357L11.5629 13.357Z" fill="black"/>
<path d="M12.0724 13.5474V13.7073H12.1085V13.6473C12.1085 13.6473 12.1394 13.6491 12.1651 13.6425C12.1853 13.6374 12.1994 13.6248 12.1999 13.5938C12.2003 13.5633 12.1821 13.5474 12.1506 13.5474H12.0723H12.0724ZM12.1085 13.5723L12.1449 13.5728C12.1751 13.5728 12.1694 13.6173 12.1458 13.6173H12.1085V13.5723Z" fill="black"/>
<path d="M12.2575 13.5475L12.1904 13.7074H12.2266L12.242 13.6675H12.3091L12.3246 13.7074H12.3604L12.2935 13.5474H12.2574L12.2575 13.5475ZM12.273 13.5826L12.2986 13.6426H12.2522L12.273 13.5826Z" fill="black"/>
<path d="M12.3604 13.6774L12.4479 13.5724H12.3707V13.5474H12.4943V13.5724L12.4016 13.6774H12.4943V13.7074H12.3604V13.6774Z" fill="black"/>
<path d="M12.8816 13.3671L12.9125 13.3621L12.928 13.4521C12.9335 13.4841 12.9184 13.5059 12.8949 13.5143C12.8682 13.5239 12.8341 13.5151 12.8301 13.4721L12.8558 13.4671C12.8618 13.4928 12.8725 13.4951 12.8849 13.491C12.8947 13.4878 12.8998 13.4728 12.897 13.4571L12.8816 13.3671Z" fill="black"/>
<path d="M12.9326 13.3572L12.9631 13.3516L12.9772 13.4265C12.9833 13.4585 12.9936 13.4721 13.0151 13.4685C13.0418 13.464 13.0447 13.4495 13.039 13.421L13.02 13.3411L13.0512 13.3365L13.0719 13.4196C13.0841 13.4682 13.0579 13.4875 13.0228 13.4939C12.9922 13.4994 12.9597 13.4919 12.949 13.4439L12.9326 13.3572Z" fill="black"/>
<path d="M13.0926 13.4257L13.1183 13.4157C13.131 13.4378 13.1507 13.4366 13.166 13.43C13.1873 13.4209 13.1897 13.4028 13.1792 13.3967C13.1642 13.388 13.1284 13.4004 13.1091 13.3936C13.086 13.3854 13.0761 13.3728 13.0772 13.3534C13.0787 13.3301 13.0998 13.3172 13.1228 13.3103C13.1485 13.3026 13.1739 13.3053 13.1904 13.3357L13.1595 13.3457C13.1495 13.3293 13.1365 13.3301 13.125 13.3353C13.1154 13.3397 13.1004 13.348 13.1084 13.3614C13.115 13.3723 13.1529 13.3652 13.1728 13.366C13.1934 13.3668 13.2101 13.3802 13.2129 13.3994C13.2168 13.4263 13.2066 13.4408 13.1746 13.4529C13.1351 13.4678 13.0995 13.4511 13.0926 13.4257H13.0926Z" fill="black"/>
<path d="M13.2312 13.3013L13.19 13.3213L13.1797 13.2963L13.293 13.2513L13.3033 13.2713L13.2621 13.2913L13.3085 13.4013L13.2827 13.4163L13.2312 13.3013Z" fill="black"/>
<path d="M13.2988 13.2471L13.3246 13.2321L13.3967 13.3621L13.3709 13.3771L13.2988 13.2471Z" fill="black"/>
<path d="M13.4739 13.2564L13.5048 13.2464C13.5193 13.276 13.4975 13.3299 13.4441 13.3288C13.366 13.3272 13.3575 13.2437 13.3698 13.2161C13.3905 13.1699 13.4482 13.1708 13.4739 13.1964L13.4481 13.2164C13.4318 13.196 13.3955 13.2088 13.393 13.2275C13.3891 13.2581 13.4029 13.2865 13.431 13.3C13.4549 13.3114 13.4916 13.2827 13.4739 13.2564L13.4739 13.2564Z" fill="black"/>
<path d="M13.458 13.152L13.4838 13.132L13.5765 13.252L13.5507 13.272L13.458 13.152Z" fill="black"/>
<path d="M13.5559 13.0765L13.5303 13.0966L13.5868 13.2466L13.6125 13.2217L13.597 13.1917L13.6434 13.1515L13.6743 13.1665L13.7003 13.1467L13.5559 13.0765ZM13.5661 13.1116L13.6177 13.1365L13.5868 13.1665L13.5661 13.1116Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M20 6H4V14H20V6Z" fill="black"/>
<path d="M20 6H4V10H20V6Z" fill="#4891D9"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 387 B

View File

@ -0,0 +1,22 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#DA121A"/>
<path d="M20 6H4V14H20V6Z" fill="#FCDD09"/>
<path d="M20 6H4V10H20V6Z" fill="#078930"/>
<path d="M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z" fill="#0F47AF"/>
<path d="M11.9996 8.80011L11.8594 9.23159L12.4377 11.0113H11.6667L11.5801 11.2779H14.0522L14.4192 11.0113H12.7181L11.9996 8.80011Z" fill="#FCDD09"/>
<path d="M12.8613 10.8131L13.8802 9.41081L12.8613 10.8131Z" fill="black"/>
<path d="M12.8613 10.8131L13.8802 9.41081" stroke="#FCDD09" stroke-width="0.1"/>
<g clip-path="url(#clip0_14099_117026)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.155273 6.08228H24.2377V17.7853H-0.155273V6.08228Z" fill="#FFC621"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.202148 14.0488H24.2214V18.032H-0.202148V14.0488Z" fill="#EF2118"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M-0.155273 6H24.2377V10.23H-0.155273V6Z" fill="#298C08"/>
<path d="M12.0147 14.752C13.4143 14.752 14.5489 13.6174 14.5489 12.2178C14.5489 10.8182 13.4143 9.68359 12.0147 9.68359C10.6151 9.68359 9.48047 10.8182 9.48047 12.2178C9.48047 13.6174 10.6151 14.752 12.0147 14.752Z" fill="#006BC6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8778 10.4236L10.7251 10.5293L11.2773 11.3048L11.4254 11.2108L10.8755 10.4236H10.8778ZM11.5687 12.2566L11.3408 12.0968L11.4348 11.7983L10.3044 11.8148L9.97543 11.5633L11.5194 11.5469L11.8061 10.6797L11.9612 11.0322L11.5687 12.2542V12.2566ZM13.3665 10.5951L13.2184 10.4823L12.6474 11.2437L12.779 11.3542L13.3665 10.5951ZM11.8296 11.8054L11.9118 11.5422H12.2244L11.8672 10.4659L12.0082 10.0781L12.4899 11.5445L13.4017 11.5563L13.115 11.8077L11.8296 11.803V11.8054ZM13.9587 13.0086L14.0221 12.8347L13.1221 12.5221L13.0563 12.6866L13.9587 13.0086ZM12.3348 11.9182L12.6098 11.9158L12.7061 12.2119L13.6179 11.5422L14.0315 11.5563L12.7837 12.4657L13.0539 13.3399L12.7249 13.1425L12.3348 11.9182ZM11.8695 14.3152L12.0552 14.3199L12.0622 13.3681L11.8883 13.3564L11.8695 14.3175V14.3152ZM12.3865 12.4281L12.4758 12.689L12.2244 12.877L13.1503 13.5279L13.2678 13.9227L12.0082 13.0297L11.2679 13.5632L11.3502 13.1872L12.3842 12.4281H12.3865ZM9.95898 12.7336L10.013 12.9099L10.9225 12.6232L10.8755 12.454L9.95898 12.7336ZM11.9142 12.6396L11.6933 12.8065L11.4395 12.6255L11.1058 13.7065L10.7674 13.9415L11.2256 12.4681L10.4877 11.9276L10.8708 11.89L11.9142 12.6396Z" fill="#FFC621"/>
</g>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<defs>
<clipPath id="clip0_14099_117026">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,222 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V15H20V6Z" fill="#00247D"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="white" stroke-width="1.5"/>
<path d="M4 6L13 10.5L4 6ZM13 6L4 10.5L13 6Z" fill="black"/>
<path d="M4 6L13 10.5M13 6L4 10.5" stroke="#CF142B"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="white" stroke-width="1.5"/>
<path d="M8.5 6V11.25V6ZM4 8.25H14.5H4Z" fill="black"/>
<path d="M8.5 6V11.25M4 8.25H14.5" stroke="#CF142B"/>
<path d="M4 10.5H13V6H20V18H4V10.5Z" fill="#00247D"/>
<path d="M16.3969 15.4169C16.3969 15.4169 16.2688 15.2087 16.1621 15.2235C16.0554 15.2384 15.9558 15.3723 15.9487 15.3797C15.9416 15.3872 15.7851 15.2087 15.7922 15.2012C15.7994 15.1938 15.9558 14.807 16.0412 14.7921C16.1266 14.7773 16.3109 14.8206 16.3109 14.8355C16.3109 14.8503 16.3969 15.4169 16.3969 15.4169L16.3969 15.4169Z" fill="url(#paint0_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M16.6812 15.1933C16.6812 15.2082 16.6386 15.7586 16.4536 15.952C16.2687 16.1454 15.9699 16.2644 15.8632 16.2347C15.7565 16.2049 15.5146 15.6471 15.5146 15.6471C15.5146 15.6471 15.7707 15.9149 15.9628 15.8702C16.1548 15.8256 16.2687 15.4909 16.3042 15.3272C16.3398 15.1636 16.3113 14.8438 16.3113 14.8438L16.6812 15.1933Z" fill="url(#paint1_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M18.6035 15.4169C18.6035 15.4169 18.7316 15.2087 18.8383 15.2235C18.945 15.2384 19.0445 15.3723 19.0517 15.3797C19.0588 15.3872 19.2153 15.2087 19.2082 15.2012C19.201 15.1938 19.0445 14.807 18.9592 14.7921C18.8738 14.7773 18.6895 14.8206 18.6895 14.8355C18.6895 14.8503 18.6035 15.4169 18.6035 15.4169L18.6035 15.4169Z" fill="url(#paint2_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M18.3193 15.1933C18.3193 15.2082 18.362 15.7586 18.547 15.952C18.7319 16.1454 19.0307 16.2644 19.1374 16.2347C19.2441 16.2049 19.4859 15.6471 19.4859 15.6471C19.4859 15.6471 19.2298 15.9149 19.0378 15.8702C18.8457 15.8256 18.7319 15.4909 18.6964 15.3272C18.6608 15.1636 18.6892 14.8438 18.6892 14.8438L18.3193 15.1933H18.3193Z" fill="url(#paint3_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M15.8345 15.1131C15.7492 15.2172 15.7036 15.2977 15.668 15.3572C15.6325 15.4167 15.6534 15.4995 15.7355 15.6177C15.8241 15.745 16.5522 16.2426 17.5006 16.2426C18.449 16.2426 19.1772 15.745 19.2658 15.6177C19.3479 15.4995 19.3683 15.4167 19.3327 15.3572C19.2971 15.2977 19.2521 15.2172 19.1668 15.1131C19.1668 15.2693 18.5636 15.8337 17.5006 15.8337C16.4377 15.8337 15.8345 15.2693 15.8345 15.1131Z" fill="url(#paint4_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M19.1238 16.1516C19.138 16.1293 19.2874 15.869 19.2874 15.869L19.2055 15.8086C19.1803 15.8822 19.0882 15.9062 19.074 15.9955C19.0598 16.0847 19.138 16.174 19.1238 16.1516V16.1516Z" fill="url(#paint5_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M19.2724 16.0715C19.2724 16.0715 19.3008 15.945 19.2083 15.9301C19.1159 15.9153 19.0669 16.0009 19.0803 15.9673C19.0952 15.93 19.1514 15.8929 19.1585 15.7665C19.1657 15.64 19.1514 15.5731 19.1514 15.5731C19.1514 15.5731 19.187 15.4095 19.3364 15.4318C19.4858 15.4541 19.4929 15.5731 19.4929 15.6177C19.4929 15.6624 19.4787 15.6847 19.4787 15.6847L19.2724 16.0715V16.0715Z" fill="url(#paint6_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M15.8765 16.1516C15.8623 16.1293 15.7129 15.869 15.7129 15.869L15.7948 15.8086C15.8199 15.8822 15.9121 15.9062 15.9263 15.9955C15.9405 16.0847 15.8623 16.174 15.8765 16.1516L15.8765 16.1516Z" fill="url(#paint7_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M15.7283 16.0715C15.7283 16.0715 15.6999 15.945 15.7923 15.9301C15.8848 15.9153 15.9338 16.0009 15.9204 15.9673C15.9055 15.93 15.8493 15.8929 15.8421 15.7665C15.835 15.64 15.8493 15.5731 15.8493 15.5731C15.8493 15.5731 15.8137 15.4095 15.6643 15.4318C15.5149 15.4541 15.5078 15.5731 15.5078 15.6177C15.5078 15.6624 15.522 15.6847 15.522 15.6847L15.7283 16.0715L15.7283 16.0715Z" fill="url(#paint8_linear_14099_117055)" stroke="black" stroke-width="0.01" stroke-linejoin="bevel"/>
<path d="M16.2018 15.5789L16.1243 15.5255L16.1153 15.5398L16.1305 15.5524L16.1319 15.56L16.0343 15.7151L16.0271 15.7168L16.01 15.7071L16.001 15.7214L16.0785 15.7748C16.1051 15.7931 16.1277 15.8024 16.153 15.7998C16.1859 15.7965 16.214 15.7773 16.2356 15.7428C16.2742 15.6815 16.2634 15.6213 16.2018 15.5789L16.2018 15.5789ZM16.1695 15.58L16.1849 15.5906C16.2271 15.6197 16.2308 15.6604 16.1963 15.7153C16.1617 15.7702 16.1244 15.783 16.0821 15.7539L16.0667 15.7433L16.1695 15.58Z" fill="black"/>
<path d="M16.2275 15.8602L16.3816 15.9372L16.4073 15.8807L16.3878 15.871L16.3677 15.902L16.3617 15.9052L16.2951 15.8719L16.3326 15.7898L16.3698 15.8085L16.3718 15.8149L16.3643 15.839L16.3813 15.8475L16.4147 15.7743L16.3977 15.7658L16.3845 15.7871L16.3785 15.7895L16.3412 15.7709L16.3754 15.6958L16.4325 15.7243L16.4344 15.7303L16.426 15.7602L16.4461 15.7703L16.4687 15.7207L16.3241 15.6484L16.3171 15.6639L16.3338 15.6742L16.3364 15.6809L16.2597 15.8492L16.2528 15.8519L16.2346 15.8447L16.2275 15.8602H16.2275Z" fill="black"/>
<path d="M16.4326 15.9453C16.4491 15.959 16.4683 15.9695 16.4876 15.976C16.5373 15.9927 16.5766 15.9744 16.5888 15.9348C16.5948 15.9151 16.5906 15.8939 16.5769 15.8756C16.5629 15.857 16.5484 15.8466 16.541 15.8371C16.5282 15.821 16.5228 15.8082 16.5275 15.7929C16.5331 15.7746 16.5508 15.7658 16.5729 15.7733C16.5826 15.7766 16.589 15.7806 16.5936 15.7854L16.5964 15.7915L16.5909 15.8278L16.6127 15.8352L16.6292 15.7813C16.6124 15.7675 16.5946 15.7571 16.5758 15.7508C16.5326 15.7362 16.4956 15.7553 16.4843 15.7923C16.4793 15.8086 16.4815 15.8273 16.4915 15.845C16.501 15.8618 16.5135 15.8723 16.5235 15.883C16.5413 15.9023 16.5486 15.9179 16.543 15.9359C16.5374 15.9542 16.5188 15.9626 16.4943 15.9544C16.4849 15.9512 16.4767 15.9466 16.4691 15.9407L16.4667 15.9344L16.4741 15.8928L16.4511 15.8851L16.4326 15.9453Z" fill="black"/>
<path d="M16.5928 16.0085L16.6832 16.039L16.6882 16.0227L16.6685 16.0142L16.6653 16.0073L16.7198 15.8298L16.726 15.8268L16.7468 15.832L16.7518 15.8157L16.6614 15.7852L16.6564 15.8015L16.6758 15.8099L16.6792 15.8162L16.6247 15.9936L16.6182 15.9973L16.5978 15.9922L16.5928 16.0085Z" fill="black"/>
<path d="M16.7875 15.8223L16.7841 15.839L16.8021 15.8448L16.806 15.8507L16.7685 16.0331L16.7624 16.0375L16.7437 16.0351L16.7402 16.0519L16.8278 16.0713L16.8313 16.0545L16.8127 16.0486L16.8088 16.042L16.8247 15.965C16.8266 15.9655 16.8284 15.9659 16.83 15.9662C16.8614 15.9731 16.8664 15.9896 16.8693 16.0243C16.8709 16.0418 16.8705 16.0578 16.8839 16.0751C16.89 16.0832 16.9006 16.0899 16.914 16.0928C16.9236 16.095 16.9344 16.0963 16.9456 16.097L16.949 16.0805C16.9475 16.0802 16.9462 16.0799 16.945 16.0796C16.9242 16.075 16.9159 16.0679 16.9132 16.0476C16.9109 16.0292 16.9122 16.0101 16.9057 15.9929C16.9008 15.9804 16.8915 15.9716 16.8774 15.9645C16.914 15.9651 16.9364 15.9493 16.9429 15.9178C16.9507 15.8798 16.9301 15.8538 16.882 15.8431L16.7875 15.8223ZM16.8472 15.8559L16.8615 15.859C16.8916 15.8657 16.9042 15.8849 16.8984 15.913C16.8919 15.9445 16.8731 15.9553 16.8399 15.948C16.8365 15.9472 16.8328 15.9464 16.8288 15.9452L16.8472 15.8559Z" fill="black"/>
<path d="M16.9844 16.1095L17.1548 16.1179L17.1576 16.0554L17.136 16.0543L17.1289 16.0911L17.1246 16.0965L17.0509 16.0928L17.0549 16.002L17.0962 16.004L17.1004 16.0091L17.1025 16.0344L17.1212 16.0354L17.1248 15.9543L17.106 15.9534L17.1018 15.9784L17.0971 15.983L17.0558 15.981L17.0595 15.8978L17.1227 15.9009L17.1266 15.9057L17.13 15.9367L17.1522 15.9378L17.1546 15.8829L16.9946 15.875L16.9939 15.8921L17.0132 15.8948L17.018 15.9L17.0099 16.0862L17.0046 16.0916L16.9851 16.0923L16.9844 16.1095H16.9844Z" fill="black"/>
<path d="M17.2838 15.9102L17.2832 15.9721L17.3057 15.9724L17.3113 15.935L17.3165 15.9305L17.3556 15.931L17.3538 16.1213L17.3482 16.1268L17.327 16.1283L17.3269 16.1454L17.4243 16.1466L17.4245 16.1294L17.4033 16.1275L17.3978 16.1218L17.3996 15.9315L17.4388 15.932L17.4436 15.9366L17.4488 15.9741L17.4713 15.9743L17.4719 15.9124L17.2838 15.9102V15.9102Z" fill="black"/>
<path d="M17.4814 15.9181L17.4817 15.9352L17.5007 15.9366L17.506 15.9421L17.5092 16.1279L17.5041 16.1336L17.4852 16.1356L17.4855 16.1528L17.5778 16.1511L17.5775 16.134L17.5579 16.1326L17.5526 16.1271L17.551 16.039L17.6452 16.0373L17.6468 16.1255L17.642 16.1311L17.6225 16.1332L17.6228 16.1504L17.7147 16.1488L17.7144 16.1316L17.6954 16.1302L17.6901 16.1247L17.6869 15.939L17.692 15.9333L17.7109 15.9312L17.7106 15.9141L17.6187 15.9157L17.619 15.9328L17.6385 15.9342L17.6435 15.9397L17.6448 16.0163L17.5507 16.018L17.5493 15.9414L17.5545 15.9357L17.574 15.9336L17.5737 15.9165L17.4814 15.9181L17.4814 15.9181Z" fill="black"/>
<path d="M17.7416 16.1473L17.916 16.1313L17.9107 16.0689L17.8886 16.071L17.8862 16.1084L17.8824 16.1144L17.8071 16.1213L17.7994 16.0306L17.8416 16.0268L17.8466 16.0312L17.852 16.056L17.8711 16.0543L17.8642 15.9734L17.8451 15.9752L17.844 16.0006L17.8398 16.0059L17.7976 16.0097L17.7905 15.9268L17.8552 15.9209L17.8598 15.925L17.8673 15.9552L17.89 15.9532L17.8853 15.8984L17.7217 15.9134L17.7231 15.9305L17.7431 15.9304L17.7487 15.9348L17.7645 16.1206L17.7598 16.1266L17.7402 16.1302L17.7416 16.1473L17.7416 16.1473Z" fill="black"/>
<path d="M17.9883 15.8757L17.9909 15.8926L18.0114 15.8909L18.0177 15.8948L18.0467 16.0788L18.0421 16.0852L18.0221 16.0904L18.0248 16.1073L18.1214 16.0908L18.1187 16.0739L18.0975 16.0758L18.0912 16.0712L18.0789 15.9935C18.081 15.9932 18.0831 15.9928 18.0848 15.9925C18.1193 15.9866 18.1306 15.9999 18.1464 16.0309C18.1544 16.0465 18.16 16.0615 18.18 16.0723C18.1892 16.0775 18.2025 16.0794 18.2173 16.0769C18.2279 16.0751 18.2393 16.0721 18.251 16.0683L18.2484 16.0518C18.2467 16.052 18.2454 16.0523 18.244 16.0525C18.221 16.0564 18.21 16.053 18.1998 16.0352C18.1906 16.0191 18.1849 16.0009 18.1719 15.9875C18.1623 15.9778 18.1496 15.9733 18.1326 15.9723C18.1701 15.9584 18.1871 15.9349 18.1821 15.9032C18.1761 15.8649 18.1454 15.8488 18.0924 15.8579L17.9883 15.8757V15.8757ZM18.0616 15.8834L18.0773 15.8807C18.1105 15.875 18.1305 15.8879 18.1349 15.9162C18.14 15.948 18.1248 15.9655 18.0882 15.9717C18.0844 15.9724 18.0803 15.9731 18.0758 15.9735L18.0616 15.8834Z" fill="black"/>
<path d="M18.2775 16.0585L18.3766 16.0273L18.3716 16.0109L18.3489 16.0162L18.342 16.0126L18.2884 15.8342L18.2922 15.8278L18.3139 15.8191L18.309 15.8027L18.21 15.8339L18.2149 15.8503L18.2373 15.8451L18.244 15.8481L18.2976 16.0265L18.294 16.0336L18.2726 16.0421L18.2775 16.0585Z" fill="black"/>
<path d="M18.4838 15.8659L18.4885 15.8823L18.5136 15.8763L18.5203 15.8793L18.5399 15.9477C18.5314 15.9511 18.5252 15.9534 18.5219 15.9544C18.4707 15.9704 18.4294 15.945 18.4121 15.8846C18.3952 15.826 18.4158 15.7816 18.4653 15.7661C18.4749 15.7631 18.4844 15.762 18.4944 15.7629L18.5011 15.7673L18.5176 15.8009L18.5419 15.7933L18.5255 15.7363C18.4988 15.7366 18.4742 15.7403 18.4522 15.7472C18.3785 15.7702 18.3442 15.831 18.3639 15.8997C18.3839 15.9694 18.4449 16.0029 18.5147 15.9811C18.539 15.9736 18.5622 15.9612 18.5852 15.9441L18.5628 15.866L18.5668 15.8597L18.5855 15.852L18.5808 15.8356L18.4838 15.8659L18.4838 15.8659Z" fill="black"/>
<path d="M18.5352 15.7262L18.5426 15.7415L18.5613 15.7336L18.5686 15.736L18.6489 15.9018L18.6464 15.9094L18.6292 15.9205L18.6366 15.9358L18.7242 15.8895L18.7168 15.8742L18.6974 15.8825L18.6901 15.8801L18.652 15.8014L18.7414 15.7542L18.7795 15.8329L18.7773 15.8403L18.7595 15.8517L18.7669 15.867L18.8542 15.8209L18.8468 15.8056L18.8281 15.8135L18.8207 15.8112L18.7404 15.6453L18.743 15.6377L18.7602 15.6266L18.7528 15.6113L18.6655 15.6574L18.6729 15.6727L18.6922 15.6645L18.6993 15.667L18.7324 15.7354L18.6429 15.7826L18.6098 15.7142L18.6123 15.7066L18.6302 15.6952L18.6228 15.6799L18.5352 15.7262Z" fill="black"/>
<path d="M18.7539 15.5994L18.7843 15.6526L18.8049 15.6398L18.7912 15.6047L18.7938 15.5978L18.8295 15.5755L18.923 15.7389L18.9207 15.7469L18.9021 15.7605L18.9106 15.7752L18.9996 15.7196L18.9912 15.7049L18.971 15.7155L18.9632 15.7138L18.8697 15.5504L18.9054 15.5281L18.9121 15.5292L18.9355 15.5582L18.9561 15.5454L18.9257 15.4922L18.7539 15.5994V15.5994Z" fill="black"/>
<path d="M17.5 15.7259C17.5 15.7259 15.783 15.2199 15.793 13.2947L15.8062 10.75H19.1937L19.207 13.2801C19.217 15.2053 17.5 15.7259 17.5 15.7259H17.5Z" fill="#0072C4" stroke="white" stroke-width="0.01"/>
<path d="M16.0421 11.3269C16.0449 11.3269 16.0658 11.3072 16.0848 11.2897C16.1114 11.2764 16.136 11.2577 16.1631 11.2451C16.1832 11.2334 16.223 11.2244 16.2413 11.2154C16.2653 11.2028 16.2848 11.1884 16.3053 11.1633C16.3078 11.13 16.3125 11.1061 16.3125 11.0666C16.3407 11.053 16.3659 11.0398 16.3907 11.0294C16.4263 11.0194 16.434 11.0051 16.4689 10.9996C16.4914 10.9918 16.5286 10.9922 16.5614 10.9922C16.5968 10.9922 16.6191 11.0173 16.6509 11.0233C16.6886 11.0385 16.7062 11.049 16.7363 11.0754C16.7533 11.0969 16.7638 11.1143 16.7928 11.1305C16.8157 11.1423 16.8372 11.1601 16.8639 11.1677C16.8933 11.1847 16.9193 11.1946 16.9422 11.2198C16.9631 11.2346 16.9717 11.2567 16.992 11.2718C17.0155 11.2913 17.0377 11.3089 17.0631 11.3239C17.0936 11.3443 17.1238 11.3599 17.1732 11.3554C17.1993 11.3539 17.2274 11.3509 17.2585 11.3567C17.2933 11.3567 17.3273 11.356 17.3581 11.3641C17.3944 11.3641 17.4237 11.369 17.4577 11.3715C17.4895 11.3775 17.5219 11.379 17.5573 11.379C17.5881 11.387 17.6221 11.3864 17.6569 11.3864H17.7564H17.856C17.8923 11.3864 17.929 11.3879 17.9556 11.3939C17.9915 11.3939 18.0224 11.3905 18.0552 11.3864C18.0938 11.3864 18.1233 11.3793 18.1619 11.379H18.2829C18.3139 11.3875 18.3536 11.3933 18.3753 11.4087C18.4038 11.4169 18.418 11.4304 18.4464 11.4385C18.4683 11.4497 18.5014 11.4674 18.5176 11.4906C18.5377 11.5115 18.5583 11.5416 18.5745 11.5724C18.5943 11.6009 18.6018 11.6336 18.6172 11.6691C18.6253 11.7031 18.631 11.7354 18.6314 11.7732C18.6391 11.8054 18.6385 11.8409 18.6385 11.8773C18.6304 11.9112 18.6286 11.949 18.6172 11.9815C18.6159 12.0178 18.6087 12.0506 18.6029 12.0782C18.5966 12.1086 18.5892 12.1282 18.5887 12.1674V12.2716C18.5862 12.3057 18.5787 12.3308 18.5745 12.3682C18.5573 12.4007 18.5408 12.4387 18.5247 12.4798C18.501 12.4963 18.4805 12.5198 18.4678 12.5393C18.4526 12.5487 18.4438 12.5629 18.4464 12.5691C18.4749 12.579 18.4678 12.5988 18.4678 12.636C18.4715 12.6647 18.4743 12.7002 18.482 12.7327C18.4846 12.7682 18.4922 12.7899 18.5034 12.8145C18.5146 12.8292 18.5168 12.822 18.4891 12.822C18.4686 12.8381 18.4478 12.8297 18.4393 12.7996C18.4227 12.7796 18.4173 12.7554 18.4109 12.7178C18.407 12.6834 18.4014 12.6498 18.3895 12.6286C18.3859 12.5867 18.3747 12.5871 18.3326 12.584C18.3126 12.5662 18.2862 12.5616 18.2473 12.5616C18.2086 12.5616 18.2053 12.5577 18.2046 12.5988V12.703C18.1979 12.7331 18.1832 12.7576 18.1761 12.7848C18.1549 12.8003 18.1439 12.8264 18.1192 12.8443C18.1075 12.878 18.0904 12.8839 18.0552 12.8889C18.0429 12.8735 18.0228 12.8535 18.0125 12.8368C18.0324 12.8034 18.0498 12.7984 18.0623 12.7625C18.0774 12.7329 18.0863 12.7136 18.0979 12.6881C18.0827 12.6647 18.0691 12.6542 18.0552 12.6211C18.0435 12.6031 18.0273 12.5644 18.0196 12.5393C17.9963 12.5312 17.9595 12.5299 17.9414 12.517C17.9069 12.509 17.8972 12.5468 17.8561 12.5468H17.7565C17.7124 12.5468 17.7014 12.5713 17.664 12.5691C17.653 12.5726 17.6263 12.5675 17.5857 12.5691C17.556 12.5794 17.5202 12.5765 17.4861 12.5765C17.4501 12.5761 17.4205 12.5677 17.3937 12.5616C17.361 12.5527 17.3285 12.5436 17.2941 12.5393C17.2523 12.5393 17.2368 12.5427 17.2087 12.5616C17.1865 12.5748 17.1544 12.6049 17.1305 12.6211C17.1204 12.6458 17.1151 12.6876 17.102 12.7178C17.0945 12.7469 17.0822 12.7652 17.0736 12.7922C17.0639 12.8174 17.0548 12.8433 17.0522 12.8815C17.0498 12.9316 17.0389 12.9255 17.0096 12.9112C16.9973 12.8905 16.9778 12.8676 16.9669 12.8443C16.9733 12.8064 16.9806 12.7876 16.9811 12.7476C16.9742 12.7187 16.958 12.7196 16.9384 12.7401C16.9384 12.7791 16.9402 12.8091 16.9242 12.8294C16.9162 12.8601 16.9033 12.8734 16.8815 12.8889C16.8709 12.9165 16.8472 12.9291 16.8246 12.941C16.821 12.9397 16.8246 12.931 16.8246 12.9112C16.8076 12.8772 16.8234 12.849 16.8234 12.8071C16.8238 12.7695 16.8217 12.7446 16.8326 12.7104C16.8326 12.6743 16.8158 12.64 16.8104 12.6137C16.7972 12.5861 16.7895 12.5724 16.7535 12.5616C16.7281 12.5516 16.6916 12.5379 16.6752 12.517C16.6546 12.4902 16.6414 12.4792 16.6112 12.4649C16.5785 12.4531 16.5626 12.4422 16.5401 12.4277C16.5181 12.4035 16.5002 12.393 16.4903 12.3608C16.4754 12.3379 16.4729 12.2955 16.4618 12.2641C16.4594 12.2314 16.4501 12.2011 16.4405 12.1748C16.4363 12.1422 16.4311 12.1183 16.4191 12.0856C16.4152 12.055 16.4063 12.023 16.3978 11.9889C16.3978 11.9525 16.3984 11.917 16.3907 11.8848V11.7806C16.3856 11.7506 16.3837 11.7066 16.3765 11.6839C16.3765 11.6435 16.3722 11.6206 16.3622 11.5947C16.346 11.5684 16.3446 11.5566 16.3196 11.5501C16.3014 11.5732 16.2716 11.5826 16.2342 11.5873C16.2081 11.5813 16.1712 11.5774 16.1417 11.5649C16.1132 11.5579 16.0937 11.5466 16.0706 11.5352C16.0579 11.5157 16.0429 11.4937 16.0279 11.4757C16.0235 11.4368 16.015 11.4168 16.0137 11.379C16.0137 11.3506 16.0144 11.3657 16.0421 11.3269H16.0421Z" fill="#BCBCBC"/>
<path d="M16.4638 11.5959C16.509 11.581 16.6076 11.5078 16.6643 11.4609C16.7288 11.42 16.861 11.4624 16.8662 11.3516C16.8582 11.3849 16.7818 11.4678 16.7445 11.5179C16.6621 11.5702 16.7848 11.6235 16.8045 11.5488C16.8473 11.4723 16.9016 11.3946 16.9869 11.3645C16.9714 11.4196 16.9599 11.4732 16.997 11.5223C17.0103 11.4982 17.0137 11.399 17.0122 11.4806C16.9853 11.527 17.0521 11.6622 17.0538 11.5571C17.0645 11.4906 17.0604 11.629 17.0807 11.6498C17.1232 11.7319 17.1195 11.5743 17.129 11.5431C17.1361 11.4842 17.1391 11.4997 17.1304 11.5423C17.1219 11.5957 17.1396 11.4308 17.1428 11.5217C17.1487 11.5692 17.1422 11.6984 17.1881 11.5959C17.2249 11.535 17.2337 11.5341 17.1935 11.5882C17.1805 11.6085 17.2539 11.4771 17.2248 11.5688C17.2229 11.6346 17.2253 11.7326 17.2611 11.7756C17.2885 11.7417 17.2725 11.5658 17.3001 11.6867C17.3107 11.7208 17.3005 11.8157 17.345 11.7429C17.3932 11.6861 17.4197 11.6369 17.4145 11.5591C17.4205 11.5194 17.4447 11.4555 17.466 11.5259C17.4514 11.6176 17.5469 11.676 17.5352 11.7642C17.5781 11.6968 17.5588 11.5964 17.5302 11.5319C17.5242 11.4555 17.6464 11.5011 17.616 11.5684C17.6125 11.6169 17.6819 11.7413 17.6875 11.6261C17.6968 11.5714 17.727 11.5666 17.7204 11.6278C17.733 11.6673 17.7867 11.7836 17.7809 11.6823C17.7857 11.6272 17.772 11.569 17.7968 11.517C17.8144 11.5503 17.8162 11.6013 17.837 11.5381C17.8794 11.5368 17.8538 11.6548 17.9074 11.6801C17.929 11.7224 17.9826 11.7917 17.9676 11.7005C17.9759 11.6511 17.9317 11.5491 17.9509 11.5359C18.0071 11.6072 18.0278 11.7014 18.1036 11.759C18.1757 11.7956 18.1125 11.6577 18.1086 11.6222C18.0656 11.5986 18.0305 11.5067 18.0913 11.5785C18.1265 11.6423 18.2333 11.6981 18.2666 11.7119C18.2348 11.6884 18.2058 11.6796 18.2598 11.7122C18.2998 11.7286 18.2361 11.6126 18.2129 11.5929C18.1922 11.5558 18.0918 11.5017 18.1203 11.4762C18.1989 11.4931 18.2219 11.5791 18.2696 11.6327C18.2993 11.6576 18.371 11.7105 18.3309 11.6316C18.3533 11.6223 18.4639 11.745 18.4376 11.6466C18.4193 11.6042 18.3224 11.5278 18.3331 11.5232C18.3662 11.5711 18.3462 11.5369 18.3199 11.5118C18.4157 11.5224 18.472 11.6181 18.5322 11.6789C18.5397 11.7078 18.5616 11.8488 18.532 11.7563C18.4697 11.7297 18.5561 11.8828 18.488 11.863C18.485 11.8291 18.4249 11.7579 18.454 11.8282C18.504 11.9309 18.4663 12.0436 18.4708 12.1519C18.4721 12.2052 18.4695 12.2582 18.4657 12.3112C18.4693 12.2721 18.4724 12.2069 18.466 12.2924C18.4637 12.3518 18.4419 12.2067 18.4122 12.1993C18.406 12.1723 18.3827 12.0358 18.363 12.1172C18.3631 12.197 18.4401 12.2808 18.3786 12.3511C18.3579 12.3704 18.3469 12.4261 18.3359 12.3677C18.3056 12.2988 18.2862 12.2258 18.2332 12.1695C18.2108 12.1256 18.1339 12.0192 18.1552 12.1309C18.1685 12.1814 18.1775 12.2326 18.174 12.2849C18.1441 12.2075 18.1034 12.1355 18.0633 12.064C18.0691 12.0974 18.1097 12.2408 18.0744 12.1479C18.05 12.0717 18.0107 11.9956 17.9348 11.9618C17.9138 11.9592 17.9858 12.0958 17.958 12.0968C17.9514 12.0527 17.9114 11.9547 17.8718 11.9726C17.8736 12.0513 17.9056 12.1246 17.8873 12.2049C17.8913 12.2832 17.839 12.1271 17.8219 12.1061C17.745 12.0591 17.8275 12.2387 17.7666 12.1692C17.7175 12.1348 17.6914 12.0967 17.6962 12.0325C17.6049 12.0169 17.6401 12.1134 17.6358 12.1682C17.6281 12.2098 17.6056 12.2888 17.5803 12.301C17.5697 12.2408 17.5782 12.1779 17.5754 12.1166C17.5901 12.0814 17.574 11.991 17.5312 12.034C17.524 12.1134 17.5758 12.2142 17.5169 12.279C17.4857 12.3147 17.4278 12.2233 17.3732 12.2477C17.3039 12.2122 17.3324 12.1012 17.2853 12.0428C17.2385 11.9939 17.2605 12.239 17.2297 12.1229C17.2518 12.0489 17.117 12.02 17.1433 12.0989C17.1764 12.1324 17.1824 12.1745 17.1781 12.2191C17.1875 12.2716 17.1485 12.2872 17.1394 12.2283C17.1357 12.1634 17.0246 12.1364 17.0473 12.2218C16.9891 12.1843 17.0437 12.3696 16.9724 12.3126C16.8919 12.2565 16.8403 12.3623 16.7522 12.3416C16.7021 12.3499 16.5823 12.3629 16.655 12.2902C16.7229 12.2492 16.7516 12.1253 16.8463 12.1887C16.9187 12.1845 16.9956 12.1335 17.0547 12.086C17.103 12.0535 17.0814 11.9705 17.0221 12.022C16.973 12.0959 16.8317 12.0958 16.7893 12.0899C16.8313 12.0502 16.9597 12.0443 16.9278 11.9747C16.8807 11.9785 16.7979 12.0492 16.7714 12.0081C16.7879 11.9899 16.842 11.9397 16.7796 11.9616C16.7005 11.9873 16.6157 11.9811 16.5343 11.9746C16.4527 11.8948 16.6532 11.9166 16.6503 11.8642C16.6305 11.8625 16.5525 11.8731 16.5866 11.8444C16.6526 11.8457 16.7191 11.8507 16.7665 11.7881C16.7951 11.7583 16.8947 11.6901 16.8703 11.6661C16.7968 11.7084 16.7197 11.7802 16.6276 11.7384C16.7067 11.6794 16.597 11.6743 16.547 11.6801C16.5106 11.6913 16.4095 11.65 16.496 11.6526C16.5549 11.6651 16.6135 11.5835 16.5228 11.5991C16.5038 11.5933 16.4834 11.597 16.4638 11.5959L16.4638 11.5959Z" fill="#FEFEFE"/>
<path d="M16.0278 11.476C16.0243 11.4375 16.0088 11.3994 16.0152 11.3605C16.0341 11.3329 16.0603 11.3127 16.0847 11.29C16.1282 11.2657 16.1697 11.2362 16.219 11.2242C16.2532 11.2138 16.2828 11.1912 16.3052 11.1636C16.3162 11.1304 16.2967 11.0772 16.3279 11.0593C16.3663 11.0383 16.4078 11.0248 16.4468 11.0055C16.4895 10.9917 16.5357 10.9896 16.5799 10.9948C16.6154 11.0101 16.6513 11.0239 16.6864 11.0398C16.7182 11.0553 16.7416 11.0815 16.7631 11.1086C16.7882 11.1315 16.8197 11.1464 16.8492 11.1627C16.8738 11.1644 16.8657 11.1963 16.8501 11.195C16.84 11.2421 16.7812 11.2022 16.7701 11.1744C16.7799 11.1561 16.7759 11.2162 16.7571 11.217C16.724 11.2317 16.7249 11.1752 16.7201 11.1537C16.7243 11.1354 16.7099 11.1138 16.7024 11.1425C16.6801 11.167 16.7264 11.2196 16.678 11.2051C16.642 11.2003 16.6018 11.1929 16.5706 11.2167C16.5445 11.244 16.5989 11.2552 16.6159 11.2684C16.6388 11.29 16.6694 11.2687 16.696 11.2661C16.7325 11.2535 16.7735 11.26 16.8073 11.2769C16.8229 11.3106 16.7916 11.3441 16.7617 11.3578C16.7338 11.3729 16.7027 11.3795 16.6716 11.3833C16.626 11.3853 16.6348 11.4418 16.5904 11.4463C16.5621 11.4583 16.5301 11.461 16.4999 11.4571C16.4939 11.4408 16.5299 11.415 16.5337 11.3901C16.5663 11.3513 16.4869 11.3583 16.4985 11.3953C16.504 11.4204 16.449 11.4574 16.4676 11.4148C16.4685 11.3919 16.4922 11.3563 16.4522 11.3728C16.4304 11.3726 16.3855 11.3718 16.3978 11.4058C16.3707 11.4116 16.336 11.4122 16.3127 11.3987C16.2988 11.3617 16.2555 11.3454 16.2284 11.379C16.2013 11.4148 16.1638 11.3679 16.137 11.3865C16.1366 11.42 16.1712 11.4375 16.2018 11.4373C16.2328 11.4345 16.2645 11.4288 16.2958 11.4339C16.3245 11.4682 16.2683 11.4789 16.2417 11.4742C16.2057 11.4729 16.1735 11.4524 16.137 11.4552C16.1195 11.4528 16.0797 11.4745 16.1172 11.4774C16.1451 11.4831 16.2022 11.4812 16.1895 11.5249C16.1676 11.5351 16.1405 11.524 16.1158 11.5345C16.1013 11.5307 16.0577 11.5425 16.082 11.53C16.0691 11.5078 16.0443 11.4952 16.0278 11.476Z" fill="#FEFEFE"/>
<path d="M16.187 11.3007C16.1853 11.3007 16.1703 11.3111 16.1568 11.3217C16.1347 11.3335 16.1111 11.3537 16.0964 11.3638C16.0849 11.373 16.0849 11.377 16.0713 11.3796C16.0953 11.3762 16.1059 11.3701 16.1266 11.3585C16.1527 11.3554 16.178 11.3498 16.192 11.3375C16.2051 11.3329 16.191 11.3119 16.187 11.3007Z" fill="#BCBCBC"/>
<path d="M16.418 11.0534C16.4209 11.0534 16.4268 11.0699 16.4381 11.0797C16.4453 11.0999 16.452 11.1142 16.4532 11.1376C16.4593 11.1119 16.4699 11.0912 16.4733 11.0639C16.4655 11.0501 16.4649 11.0436 16.4431 11.0429C16.4431 11.0571 16.4448 11.0478 16.418 11.0534Z" fill="#BCBCBC"/>
<path d="M16.5088 11.0585V11.0637C16.5088 11.0495 16.5085 11.0568 16.5138 11.0848C16.5221 11.1024 16.5239 11.1213 16.5239 11.1479C16.5371 11.138 16.5481 11.1184 16.5541 11.1005C16.5541 11.059 16.5484 11.0614 16.5088 11.0585Z" fill="#BCBCBC"/>
<path d="M16.6946 11.6636H16.6997C16.6849 11.6636 16.6932 11.6645 16.7198 11.6478C16.737 11.6358 16.7511 11.6181 16.7751 11.611C16.7984 11.5919 16.8163 11.5829 16.8405 11.5742C16.8523 11.5685 16.8627 11.5587 16.8757 11.5689C16.872 11.5949 16.8677 11.6047 16.8455 11.6162C16.8341 11.6312 16.816 11.64 16.8003 11.6478C16.7839 11.6553 16.7659 11.6557 16.76 11.6741C16.7327 11.6867 16.7293 11.6846 16.6946 11.6636Z" fill="#BCBCBC"/>
<path d="M16.79 11.8152C16.799 11.8081 16.8305 11.7753 16.8454 11.7627C16.8622 11.7395 16.8791 11.7218 16.8957 11.71C16.9103 11.6875 16.9291 11.6724 16.9409 11.6522C16.9549 11.6345 16.9652 11.6195 16.9812 11.5996C16.9812 11.6226 16.9791 11.6531 16.9862 11.668C16.9862 11.6997 16.9827 11.7084 16.9711 11.7311C16.9597 11.7497 16.9512 11.762 16.9258 11.7732C16.903 11.7858 16.8893 11.7903 16.8705 11.8047C16.8562 11.8139 16.8413 11.8231 16.8252 11.831C16.8108 11.8375 16.8174 11.8347 16.79 11.8152Z" fill="#BCBCBC"/>
<path d="M16.6341 11.938H16.6391C16.6243 11.938 16.6326 11.9389 16.6592 11.9222C16.6807 11.8998 16.6978 11.892 16.7246 11.8801C16.745 11.8785 16.7697 11.8732 16.785 11.8643C16.7971 11.8621 16.8056 11.8544 16.8152 11.8643C16.831 11.8867 16.8353 11.893 16.8101 11.9064C16.7981 11.9171 16.7768 11.9279 16.7598 11.9327C16.7473 11.9436 16.7224 11.9442 16.6995 11.9485C16.6789 11.9485 16.6675 11.9509 16.6592 11.938L16.6995 11.9485C16.6789 11.9485 16.6675 11.9509 16.6341 11.938Z" fill="#BCBCBC"/>
<path d="M16.8506 11.9371V11.9318C16.8506 11.9465 16.85 11.9387 16.8607 11.9108C16.8795 11.8813 16.8866 11.8651 16.911 11.8581C16.9224 11.8437 16.9421 11.84 16.9663 11.8318C16.9754 11.8477 16.9684 11.8661 16.9663 11.8844C16.9597 11.9041 16.9418 11.9179 16.9311 11.9318C16.9154 11.9429 16.909 11.9536 16.8858 11.9581C16.8666 11.9581 16.8768 11.9576 16.8506 11.9371Z" fill="#BCBCBC"/>
<path d="M16.2622 11.2688C16.2509 11.2688 16.282 11.2571 16.2924 11.253C16.3007 11.2347 16.3072 11.2218 16.3225 11.2109C16.3477 11.213 16.3601 11.2206 16.3729 11.2372C16.394 11.2433 16.4016 11.2538 16.4282 11.2583C16.438 11.267 16.4514 11.268 16.4282 11.274C16.4124 11.2827 16.3926 11.2846 16.3678 11.2846C16.3419 11.2865 16.3233 11.2925 16.3075 11.3003C16.2738 11.3003 16.2792 11.3015 16.2622 11.2688Z" fill="#C4C4C2" stroke="black" stroke-width="0.01"/>
<path d="M16.3328 11.2792C16.3467 11.2792 16.3579 11.2674 16.3579 11.2529C16.3579 11.2383 16.3467 11.2266 16.3328 11.2266C16.3189 11.2266 16.3076 11.2383 16.3076 11.2529C16.3076 11.2674 16.3189 11.2792 16.3328 11.2792Z" fill="black"/>
<path d="M16.4178 12.7207H16.4379C16.3748 12.7207 16.4125 12.7163 16.5184 12.8049C16.5627 12.7662 16.5622 12.761 16.5989 12.8259C16.62 12.8629 16.6263 12.8222 16.6592 12.7839C16.6751 12.8603 16.6853 12.9404 16.7397 12.868C16.8019 12.868 16.867 12.8626 16.9007 12.889C16.9414 12.9682 16.9281 12.8756 16.961 12.9101C17.0496 12.9212 17.0479 12.8306 17.1444 12.8072C17.2044 12.8856 17.2307 12.8253 17.3054 12.7862C17.3609 12.8024 17.4132 12.8905 17.4238 12.8049C17.4692 12.7274 17.4732 12.734 17.5043 12.8049C17.5484 12.8465 17.5671 12.7841 17.6048 12.7628C17.6722 12.804 17.7473 12.8097 17.8463 12.7839C17.863 12.8539 17.9053 12.8235 17.9469 12.8049C18.0359 12.844 18.0669 12.856 18.1682 12.8049C18.2184 12.7429 18.19 12.8066 18.2285 12.847C18.3036 12.8226 18.2829 12.8174 18.3694 12.8259C18.4564 12.8259 18.4634 12.8237 18.4901 12.7628C18.5338 12.8085 18.5496 12.8415 18.6108 12.7839C18.7046 12.7867 18.6756 12.7962 18.7315 12.7628C18.7729 12.8586 18.7827 12.7894 18.8321 12.8259C18.7995 12.9123 18.7495 12.9529 18.6913 12.9942C18.6526 13.0612 18.6284 13.1336 18.5505 13.1625C18.4936 13.2232 18.433 13.2583 18.3694 13.3098C18.2822 13.3326 18.1862 13.3308 18.0877 13.3308H17.806H17.5244H17.2427C17.1826 13.3622 17.0843 13.3772 17.0013 13.3939C16.9085 13.3939 16.8034 13.3951 16.7397 13.3729C16.6966 13.3278 16.6209 13.2774 16.5788 13.2256C16.5361 13.1897 16.5349 13.1195 16.4983 13.0784C16.4646 13.0182 16.4542 12.924 16.4178 12.868V12.7207L16.4178 12.7207Z" fill="#005121" stroke="#002B0E" stroke-width="0.01"/>
<path d="M18.3692 12.9105V12.9315C18.3692 12.8727 18.3716 12.9039 18.3289 13.0156C18.3203 13.0428 18.3013 13.0491 18.2686 13.0577" fill="#005121"/>
<path d="M18.3692 12.9105V12.9315C18.3692 12.8727 18.3716 12.9039 18.3289 13.0156C18.3203 13.0428 18.3013 13.0491 18.2686 13.0577" stroke="#002B0E" stroke-width="0.01"/>
<path d="M18.1881 12.9943H18.2082C18.1337 13.0678 18.0836 13.1017 18.0674 13.1836L18.2082 12.9943C18.1337 13.0678 18.0836 13.1017 18.0674 13.1836" fill="#005121"/>
<path d="M18.1881 12.9943H18.2082C18.1337 13.0678 18.0836 13.1017 18.0674 13.1836L18.2082 12.9943C18.1337 13.0678 18.0836 13.1017 18.0674 13.1836" stroke="#002B0E" stroke-width="0.01"/>
<path d="M17.9068 12.8887C17.9068 12.8906 17.904 12.9637 17.8867 12.9939L17.9068 12.8887Z" fill="#005121"/>
<path d="M17.9068 12.8887C17.9068 12.8906 17.904 12.9637 17.8867 12.9939" stroke="#002B0E" stroke-width="0.01"/>
<path d="M17.8262 13.0371V13.0582V13.0371Z" fill="#005121" stroke="#002B0E" stroke-width="0.01"/>
<path d="M17.665 12.9101H17.6852H17.665Z" fill="#005121" stroke="#002B0E" stroke-width="0.01"/>
<path d="M16.5381 12.9101C16.5477 12.9101 16.5873 12.9769 16.6387 13.0153C16.6259 13.0768 16.6062 13.148 16.6387 13.2046" fill="#005121"/>
<path d="M16.5381 12.9101C16.5477 12.9101 16.5873 12.9769 16.6387 13.0153C16.6259 13.0768 16.6062 13.148 16.6387 13.2046" stroke="#002B0E" stroke-width="0.01"/>
<path d="M16.6992 13.0358C16.7088 13.0358 16.7484 13.1026 16.7998 13.141L16.6992 13.0358C16.7088 13.0358 16.7484 13.1026 16.7998 13.141V13.162C16.7998 13.097 16.7947 13.0289 16.8199 12.9937C16.8423 13.0333 16.8706 13.0969 16.8803 13.0358C16.9936 13.0315 17.0483 12.9982 17.1217 12.9727C17.1217 13.0036 17.117 12.9887 17.1419 13.0147" fill="#005121"/>
<path d="M16.6992 13.0358C16.7088 13.0358 16.7484 13.1026 16.7998 13.141L16.6992 13.0358ZM16.6992 13.0358C16.7088 13.0358 16.7484 13.1026 16.7998 13.141V13.162C16.7998 13.097 16.7947 13.0289 16.8199 12.9937C16.8423 13.0333 16.8706 13.0969 16.8803 13.0358C16.9936 13.0315 17.0483 12.9982 17.1217 12.9727C17.1217 13.0036 17.117 12.9887 17.1419 13.0147" stroke="#002B0E" stroke-width="0.01"/>
<path d="M18.5102 12.9316H18.5303C18.4924 12.9647 18.4632 13.0321 18.4297 13.0789" fill="#005121"/>
<path d="M18.5102 12.9316H18.5303C18.4924 12.9647 18.4632 13.0321 18.4297 13.0789" stroke="#002B0E" stroke-width="0.01"/>
<path d="M17.6855 12.8672H17.8465H17.6855Z" fill="#005121"/>
<path d="M17.6855 12.8672H17.8465" stroke="#002B0E" stroke-width="0.01"/>
<path d="M16.3707 13.0272C16.1288 13.0272 16.0486 13.28 15.8066 13.28C15.802 13.28 15.7975 13.2796 15.793 13.2795V13.2948C15.7921 13.47 15.8059 13.6333 15.831 13.7858C16.0542 13.7695 16.1371 13.5329 16.3707 13.5329C16.6127 13.5329 16.6935 13.7863 16.9354 13.7863C17.1774 13.7863 17.2582 13.5329 17.5001 13.5329C17.7421 13.5329 17.8229 13.7863 18.0648 13.7863C18.3068 13.7863 18.3876 13.5329 18.6295 13.5329C18.8625 13.5329 18.9457 13.7678 19.1676 13.7852C19.1942 13.6287 19.2082 13.4605 19.2073 13.28V13.2795C19.2027 13.2796 19.1983 13.28 19.1937 13.28C18.9517 13.28 18.8715 13.0272 18.6295 13.0272C18.3876 13.0272 18.3068 13.28 18.0648 13.28C17.8229 13.28 17.7421 13.0272 17.5001 13.0272C17.2582 13.0272 17.1774 13.28 16.9354 13.28C16.6935 13.28 16.6127 13.0272 16.3707 13.0272V13.0272Z" fill="white"/>
<path d="M16.3708 14.0135C16.1826 14.0135 16.092 14.1661 15.9473 14.234C15.9978 14.3735 16.059 14.5004 16.127 14.6167C16.1957 14.5648 16.2688 14.5198 16.3708 14.5198C16.6128 14.5198 16.6935 14.7727 16.9355 14.7727C17.1774 14.7727 17.2582 14.5198 17.5002 14.5198C17.7421 14.5198 17.8229 14.7727 18.0649 14.7727C18.3068 14.7727 18.3876 14.5198 18.6296 14.5198C18.7293 14.5198 18.8014 14.5628 18.8688 14.6133C18.9369 14.4975 18.9982 14.3708 19.0491 14.2323C18.9067 14.1635 18.8161 14.0135 18.6296 14.0135C18.3876 14.0135 18.3068 14.2664 18.0649 14.2664C17.8229 14.2664 17.7421 14.0135 17.5002 14.0135C17.2582 14.0135 17.1774 14.2664 16.9355 14.2664C16.6935 14.2664 16.6128 14.0135 16.3708 14.0135Z" fill="white"/>
<path d="M17.5006 15.0018C17.2586 15.0018 17.1779 15.2552 16.9359 15.2552C16.7071 15.2552 16.6224 15.0286 16.4092 15.004C16.6941 15.3214 17.0172 15.5136 17.2375 15.6192C17.312 15.5614 17.3892 15.6895 17.5006 15.6895C17.6112 15.6895 17.6879 15.5607 17.762 15.6181C17.9799 15.512 18.299 15.3195 18.5824 15.0052C18.3762 15.0353 18.2907 15.2552 18.0653 15.2552C17.8233 15.2552 17.7426 15.0018 17.5006 15.0018H17.5006Z" fill="white"/>
<path d="M16.002 14.1439C16.0417 14.1301 16.2335 14.0678 16.2401 14.0748C16.2468 14.0817 16.6107 14.4484 16.6107 14.4484L16.3063 14.5106L16.002 14.1439V14.1439Z" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7256 14.6236C16.7312 14.5368 16.8937 14.043 16.8937 14.043" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7812 14.6299C16.7812 14.6245 16.9102 14.0488 16.9102 14.0488" stroke="#522108" stroke-width="0.01"/>
<path d="M16.8262 14.6308C16.8318 14.5983 16.9333 14.0488 16.9333 14.0488" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7705 14.467C16.7985 14.467 16.8546 14.4453 16.8546 14.4453" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7871 14.4006C16.7871 14.3952 16.8712 14.3789 16.8712 14.3789" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7988 14.319L16.8885 14.3027" stroke="#522108" stroke-width="0.01"/>
<path d="M16.8379 14.25C16.8379 14.2554 16.8995 14.2554 16.8995 14.2554" stroke="#522108" stroke-width="0.01"/>
<path d="M17.7229 15.0079C17.7163 14.8593 17.5244 14.0137 17.5244 14.0137" stroke="#522108" stroke-width="0.01"/>
<path d="M17.6571 14.9805C17.6571 14.9712 17.5049 14.0234 17.5049 14.0234" stroke="#522108" stroke-width="0.01"/>
<path d="M17.591 14.9062C17.5844 14.8504 17.4785 14.0234 17.4785 14.0234" stroke="#522108" stroke-width="0.01"/>
<path d="M17.7163 14.8871C17.6832 14.8593 17.584 14.8221 17.584 14.8221" stroke="#522108" stroke-width="0.01"/>
<path d="M17.6705 14.7385C17.6375 14.7385 17.5713 14.7013 17.5713 14.7013" stroke="#522108" stroke-width="0.01"/>
<path d="M17.651 14.627C17.651 14.6177 17.5518 14.5898 17.5518 14.5898" stroke="#522108" stroke-width="0.01"/>
<path d="M17.6371 14.4869L17.5312 14.459" stroke="#522108" stroke-width="0.01"/>
<path d="M17.5913 14.3672C17.5913 14.3765 17.5186 14.3765 17.5186 14.3765" stroke="#522108" stroke-width="0.01"/>
<path d="M17.5708 14.2559C17.5576 14.2559 17.498 14.2744 17.498 14.2744" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2321 14.5922C18.199 14.5922 18.1328 14.5645 18.1328 14.5645" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2844 14.7931C18.2778 14.6824 18.0859 14.0528 18.0859 14.0528" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2186 14.7732C18.2186 14.7663 18.0664 14.0606 18.0664 14.0606" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1525 14.7179C18.1459 14.6764 18.04 14.0606 18.04 14.0606" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2125 14.5102C18.2125 14.5032 18.1133 14.4825 18.1133 14.4825" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1986 14.4056L18.0928 14.3849" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1529 14.3165C18.1529 14.3234 18.0801 14.3234 18.0801 14.3234" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1323 14.2327C18.1191 14.2327 18.0596 14.2466 18.0596 14.2466" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4311 14.8764C17.4311 14.8694 17.451 13.1398 17.451 13.1398C17.451 13.1398 17.5105 13.1329 17.5105 13.1398C17.5105 13.1467 17.5039 14.8694 17.4973 14.8764C17.4907 14.8833 17.4245 14.8902 17.4311 14.8764Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.0791 13.2168C18.0791 13.2307 18.0659 14.6766 18.0659 14.6766L18.0195 14.732L18.0328 13.2168H18.0791V13.2168Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.9284 14.5449C16.935 14.5033 16.935 13.2511 16.935 13.2511L16.8953 13.2441L16.8887 14.5241L16.9284 14.5449V14.5449Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6768 14.0741C16.7032 14.0741 17.1532 13.998 17.1532 13.998L17.1465 14.0741L16.7032 14.1226L16.6768 14.0741H16.6768Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6836 13.6725C16.7101 13.6794 17.2262 13.5272 17.2262 13.5272C17.2262 13.5272 17.2262 13.5757 17.2195 13.5757C17.2129 13.5757 16.6836 13.7209 16.6836 13.7209V13.6725Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.703 13.4722C16.6964 13.4999 16.7096 13.5345 16.7096 13.5345L17.1397 13.3823C17.1397 13.3823 17.1596 13.3477 17.1397 13.3477C17.1199 13.3477 16.6964 13.486 16.703 13.4722L16.703 13.4722Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2725 13.3758C17.2857 13.3758 17.7158 13.2305 17.7158 13.2305C17.7158 13.2305 17.7224 13.2927 17.7158 13.2927C17.7092 13.2927 17.3122 13.4173 17.3122 13.4173L17.2725 13.3758H17.2725Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2389 13.5553C17.2389 13.5553 17.2257 13.6175 17.2323 13.6175C17.2389 13.6175 17.7947 13.4653 17.7947 13.4653V13.4238L17.2389 13.5553L17.2389 13.5553Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2588 14.0456V14.094L17.7352 14.0248L17.722 13.9902L17.2588 14.0456H17.2588Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8086 14.08L17.8152 14.1215C17.8152 14.1215 18.2916 14.0592 18.2916 14.0523C18.2916 14.0454 18.2916 14.0039 18.285 14.0039C18.2784 14.0039 17.8152 14.0869 17.8086 14.08Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8018 13.6385L17.8084 13.687L18.3708 13.5278C18.3708 13.5278 18.384 13.4863 18.3774 13.4863C18.3708 13.4863 17.815 13.6593 17.8018 13.6385V13.6385Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8613 13.4162C17.8613 13.4162 17.8547 13.4577 17.8613 13.4577C17.868 13.4577 18.2782 13.3539 18.2782 13.347C18.2782 13.3401 18.3179 13.2985 18.2848 13.3055C18.2517 13.3124 17.8746 13.4369 17.8613 13.4162H17.8613Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.9616 13.5532C17.0211 13.5324 16.9814 13.484 16.9947 13.484C17.0079 13.484 17.0542 13.5186 17.0807 13.4909C17.1071 13.4632 17.127 13.3802 17.1138 13.3871C17.1018 13.3934 16.8167 13.5004 16.7549 13.5016C16.7936 13.5166 16.91 13.5712 16.9616 13.5532H16.9616Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8818 13.4573C17.8818 13.4573 17.9149 13.5403 17.948 13.5265C17.9811 13.5126 18.0142 13.4849 18.0142 13.4849C18.0142 13.4849 18.0407 13.5541 18.0869 13.5403C18.1333 13.5265 18.1597 13.4503 18.1597 13.4503C18.1597 13.4503 18.206 13.4642 18.2259 13.4573C18.2458 13.4503 18.2722 13.3397 18.2722 13.3397L17.8818 13.4573Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8416 14.1289C17.8349 14.1427 17.8746 14.1773 17.9077 14.1773C17.9408 14.1773 17.954 14.1289 17.9606 14.1427C17.9673 14.1565 17.9673 14.2188 18.0533 14.198C18.1393 14.1773 18.1393 14.115 18.1393 14.115C18.1393 14.115 18.1128 14.1358 18.1724 14.1427C18.2319 14.1496 18.2915 14.0527 18.2849 14.0527C18.2783 14.0527 17.8548 14.1358 17.8416 14.1289H17.8416Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.842 13.6786C17.842 13.6786 17.7759 13.7547 17.7957 13.8585C17.8156 13.9623 17.842 14.0522 17.8487 14.0522C17.8553 14.0522 17.928 13.9138 18.0074 13.9069C18.0868 13.9 18.2324 13.983 18.2324 13.983C18.2324 13.983 18.2126 13.817 18.2192 13.7409C18.2258 13.6648 18.3383 13.5333 18.3383 13.5333L17.842 13.6786L17.842 13.6786Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6973 14.1283C16.7039 14.1283 16.6973 14.1906 16.7502 14.1768C16.8031 14.1629 16.8164 14.1283 16.8164 14.1283C16.8164 14.1283 16.8296 14.2044 16.9024 14.1975C16.9752 14.1906 17.0148 14.1076 17.0148 14.1076C17.0148 14.1076 17.0215 14.1698 17.0678 14.1491C17.1141 14.1283 17.1273 14.0799 17.1273 14.0799L16.7105 14.1422L16.6973 14.1283Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6971 13.7193C16.6971 13.7193 16.6375 13.7401 16.6574 13.8646C16.6772 13.9892 16.7235 14.0584 16.7301 14.0584C16.7368 14.0584 16.7897 13.9408 16.8691 13.92C16.9485 13.8992 17.0874 13.9823 17.0874 13.9823C17.0874 13.9823 17.0742 13.8716 17.0941 13.7678C17.1139 13.664 17.1801 13.5879 17.1801 13.5879C17.1801 13.5879 16.7169 13.7193 16.6971 13.7193L16.6971 13.7193Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2861 13.395C17.3126 13.4019 17.3589 13.4711 17.3854 13.4572C17.4119 13.4434 17.4515 13.4019 17.4515 13.4019C17.4515 13.4019 17.4449 13.4849 17.4979 13.4711C17.5508 13.4572 17.5574 13.4019 17.5574 13.4019C17.5574 13.4019 17.5971 13.4227 17.6302 13.4019C17.6633 13.3811 17.6964 13.2773 17.6831 13.2773C17.6699 13.2773 17.2994 13.4019 17.2861 13.395H17.2861Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2727 13.5953C17.2727 13.6091 17.2065 13.7198 17.2264 13.8236C17.2462 13.9273 17.2859 14.0242 17.2925 14.0242C17.2992 14.0242 17.3984 13.9135 17.4844 13.8928C17.5704 13.872 17.6961 13.9619 17.6895 13.9619C17.6829 13.9619 17.6564 13.8581 17.6564 13.7821C17.6564 13.7059 17.7557 13.4707 17.7557 13.4707L17.2727 13.5953L17.2727 13.5953Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2725 14.0946C17.2725 14.1015 17.2923 14.1499 17.3386 14.1499C17.3849 14.1499 17.3916 14.1015 17.3916 14.1015C17.3916 14.1015 17.3849 14.1845 17.4577 14.1776C17.5305 14.1707 17.557 14.0946 17.557 14.0946C17.557 14.0946 17.5636 14.1361 17.6231 14.1153C17.6827 14.0946 17.7621 14.0254 17.7555 14.0254C17.7489 14.0254 17.2791 14.1153 17.2725 14.0946H17.2725Z" fill="#FECF3E" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6969 14.5923C16.6969 14.5923 16.763 15.3049 17.524 15.2842C18.2849 15.2634 18.4966 14.5647 18.4966 14.5647C18.4966 14.5647 18.1724 14.5508 18.1657 14.5508C18.1591 14.5508 17.9011 14.8829 17.5703 14.876C17.2394 14.8691 17.1336 14.786 17.0608 14.7169C16.988 14.6477 16.9218 14.5439 16.9218 14.5439L16.5381 14.3848L16.5579 14.537L16.6969 14.5923L16.6969 14.5923Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.751 14.5189C18.7444 14.4981 18.7281 14.4269 18.7281 14.4269V14.3438L18.7647 14.2598C18.7647 14.2598 18.1891 14.346 18.1891 14.3529C18.1891 14.345 18.1855 14.5168 18.1855 14.5168L18.751 14.5189V14.5189Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.6421 14.3438L18.6289 14.489H18.7215L18.7149 14.3438H18.6421Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.5428 14.3516L18.5361 14.5038L18.5957 14.4968L18.6023 14.3516H18.5428V14.3516Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.4434 14.5036V14.386L18.5029 14.3652L18.5095 14.4828L18.4434 14.5036Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.3311 14.4964L18.3443 14.3926L18.4105 14.3995L18.4171 14.5102L18.3311 14.4964Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2061 14.4973L18.2127 14.4073L18.2789 14.4004V14.5042L18.2061 14.4973Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1392 14.5513L18.7678 14.5651L18.7744 14.5167L18.126 14.5098L18.1392 14.5513Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M18.166 14.3791C18.2388 14.3791 18.788 14.2684 18.788 14.2684C18.788 14.2684 18.8078 14.1992 18.788 14.1992C18.7681 14.1992 18.166 14.3307 18.166 14.3307V14.3791Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M15.9824 14.1367L16.4853 14.3926L16.472 14.4272C16.472 14.4272 15.989 14.192 15.989 14.1851C15.989 14.1782 15.9956 14.1505 15.9824 14.1367L15.9824 14.1367Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M16.2139 14.0605C16.2139 14.0813 16.2867 14.5033 16.2867 14.5033C16.2867 14.5033 16.333 14.5103 16.333 14.5033C16.333 14.4964 16.2536 14.0675 16.2536 14.0675L16.2139 14.0605V14.0605Z" fill="#DD8B59" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2305 14.8415C17.2371 14.7265 17.429 14.0723 17.429 14.0723" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2969 14.8499C17.2969 14.8427 17.4491 14.0801 17.4491 14.0801" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3486 14.8511C17.3552 14.808 17.4751 14.0801 17.4751 14.0801" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2373 14.7476C17.2704 14.726 17.3696 14.6973 17.3696 14.6973" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2832 14.6323C17.3163 14.6323 17.3824 14.6035 17.3824 14.6035" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3037 14.5463C17.3037 14.5391 17.403 14.5176 17.403 14.5176" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3164 14.4395L17.4223 14.418" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3633 14.3457C17.3633 14.3529 17.4361 14.3529 17.4361 14.3529" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3828 14.2598C17.396 14.2598 17.4556 14.2741 17.4556 14.2741" stroke="#522108" stroke-width="0.01"/>
<path d="M17.792 14.8362C17.7986 14.7255 17.9905 14.0959 17.9905 14.0959" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8584 14.8163C17.8584 14.8094 18.0106 14.1037 18.0106 14.1037" stroke="#522108" stroke-width="0.01"/>
<path d="M17.9248 14.761C17.9314 14.7194 18.0373 14.1037 18.0373 14.1037" stroke="#522108" stroke-width="0.01"/>
<path d="M17.7988 14.7459C17.8319 14.7251 17.9311 14.6974 17.9311 14.6974" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8447 14.6353C17.8778 14.6353 17.944 14.6076 17.944 14.6076" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8652 14.5533C17.8652 14.5463 17.9645 14.5256 17.9645 14.5256" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8779 14.4487L17.9838 14.428" stroke="#522108" stroke-width="0.01"/>
<path d="M17.9248 14.3596C17.9248 14.3665 17.9976 14.3665 17.9976 14.3665" stroke="#522108" stroke-width="0.01"/>
<path d="M17.9443 14.2758C17.9576 14.2758 18.0171 14.2896 18.0171 14.2896" stroke="#522108" stroke-width="0.01"/>
<path d="M17.1565 14.7623C17.1499 14.651 16.958 14.0176 16.958 14.0176" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0907 14.7423C17.0907 14.7353 16.9385 14.0254 16.9385 14.0254" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0246 14.6866C17.018 14.6449 16.9121 14.0254 16.9121 14.0254" stroke="#522108" stroke-width="0.01"/>
<path d="M17.1499 14.6719C17.1168 14.651 17.0176 14.6232 17.0176 14.6232" stroke="#522108" stroke-width="0.01"/>
<path d="M17.1041 14.5611C17.0711 14.5611 17.0049 14.5332 17.0049 14.5332" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0846 14.4769C17.0846 14.47 16.9854 14.4491 16.9854 14.4491" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0707 14.3726L16.9648 14.3517" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0249 14.2812C17.0249 14.2882 16.9521 14.2882 16.9521 14.2882" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0044 14.1992C16.9912 14.1992 16.9316 14.2131 16.9316 14.2131" stroke="#522108" stroke-width="0.01"/>
<path d="M16.5254 14.3929C16.5254 14.3929 16.3931 14.3721 16.3997 14.4067C16.4063 14.4413 16.4658 14.4759 16.4724 14.4967C16.479 14.5174 16.4526 14.5935 16.4923 14.5866C16.532 14.5797 16.5717 14.552 16.5717 14.5313C16.5717 14.5105 16.5651 14.4137 16.5651 14.4137L16.5254 14.3929Z" fill="#B6B6B4" stroke="#522108" stroke-width="0.01"/>
<path d="M16.6699 14.5858C16.6898 14.5858 16.842 14.6204 16.842 14.6204L17.0008 14.8418" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7822 14.614C16.7888 14.6209 16.9212 15.0845 17.5564 15.0845C18.1916 15.0845 18.3437 14.5587 18.3437 14.5587" stroke="#522108" stroke-width="0.01"/>
<path d="M18.4433 14.5723C18.4433 14.5723 18.1389 15.2642 17.5567 15.2158C16.9744 15.1673 16.8818 14.939 16.8355 14.8214C16.7891 14.7038 16.7627 14.6069 16.7627 14.6069" stroke="#522108" stroke-width="0.01"/>
<path d="M18.2783 14.0121C18.2849 13.9913 18.3048 13.5762 18.3048 13.5762" stroke="#522108" stroke-width="0.01"/>
<path d="M18.7413 14.2191L18.3311 13.5411" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4971 13.1606C17.4971 13.1536 17.7022 13.2505 17.7022 13.2574C17.7022 13.2643 18.43 14.2745 18.4366 14.2745" stroke="#522108" stroke-width="0.01"/>
<path d="M18.0732 13.2579L18.2585 13.3409L18.3181 13.4931" stroke="#522108" stroke-width="0.01"/>
<path d="M16.922 13.2442C16.9154 13.2442 17.1271 13.4102 17.1271 13.4102L17.1536 13.5486" stroke="#522108" stroke-width="0.01"/>
<path d="M16.2002 14.2547C16.2928 14.2132 16.9346 13.6251 16.9346 13.6251" stroke="#522108" stroke-width="0.01"/>
<path d="M16.0283 14.1424C16.1077 14.0732 16.7495 13.5059 16.7495 13.5059" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2324 13.6033L17.9139 14.7864" stroke="#522108" stroke-width="0.01"/>
<path d="M17.834 14.0919C17.834 14.0919 17.9144 14.3706 17.9938 14.4121C18.0732 14.4536 18.1658 14.5228 18.1658 14.5228" stroke="#522108" stroke-width="0.01"/>
<path d="M17.8242 14.0977C17.8242 14.0977 17.8807 14.426 17.9601 14.4883C18.0395 14.5505 18.1189 14.6197 18.1189 14.6197" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2754 14.0762C17.2754 14.0762 17.3548 14.5329 17.5136 14.6366C17.6724 14.7404 17.8047 14.8304 17.8047 14.8304" stroke="#522108" stroke-width="0.01"/>
<path d="M17.2695 14.0685C17.2695 14.0685 17.4415 14.4283 17.5871 14.539C17.7327 14.6497 17.9312 14.7535 17.9312 14.7535" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7129 14.0958C16.7592 14.1788 16.7526 14.3379 16.8055 14.3933C16.8584 14.4486 16.9379 14.5732 16.9379 14.5732" stroke="#522108" stroke-width="0.01"/>
<path d="M16.7266 14.1036C16.753 14.1451 16.8269 14.3518 16.8721 14.4149C16.9052 14.4703 17.2427 14.8231 17.2427 14.8231" stroke="#522108" stroke-width="0.01"/>
<path d="M17.0809 14.8927C17.1083 14.8927 17.1305 14.8694 17.1305 14.8408C17.1305 14.8121 17.1083 14.7889 17.0809 14.7889C17.0535 14.7889 17.0312 14.8121 17.0312 14.8408C17.0312 14.8694 17.0535 14.8927 17.0809 14.8927Z" fill="black" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3321 14.996C17.3558 14.996 17.3751 14.9759 17.3751 14.951C17.3751 14.9262 17.3558 14.9061 17.3321 14.9061C17.3083 14.9061 17.2891 14.9262 17.2891 14.951C17.2891 14.9759 17.3083 14.996 17.3321 14.996Z" fill="black" stroke="#522108" stroke-width="0.01"/>
<path d="M17.6436 15.0234C17.6673 15.0234 17.6866 15.0032 17.6866 14.9784C17.6866 14.9535 17.6673 14.9334 17.6436 14.9334C17.6198 14.9334 17.6006 14.9535 17.6006 14.9784C17.6006 15.0032 17.6198 15.0234 17.6436 15.0234Z" fill="black" stroke="#522108" stroke-width="0.01"/>
<path d="M17.9215 14.9099C17.9435 14.9099 17.9612 14.8929 17.9612 14.8719C17.9612 14.8508 17.9435 14.8338 17.9215 14.8338C17.8996 14.8338 17.8818 14.8508 17.8818 14.8719C17.8818 14.8929 17.8996 14.9099 17.9215 14.9099Z" fill="black" stroke="#522108" stroke-width="0.01"/>
<path d="M18.1331 14.7812C18.1532 14.7812 18.1695 14.761 18.1695 14.7362C18.1695 14.7114 18.1532 14.6912 18.1331 14.6912C18.113 14.6912 18.0967 14.7114 18.0967 14.7362C18.0967 14.761 18.113 14.7812 18.1331 14.7812Z" fill="black" stroke="#522108" stroke-width="0.01"/>
<path d="M16.8918 13.2519C16.872 13.2657 16.5411 13.3488 16.5874 13.3418C16.6337 13.3349 16.8984 13.411 16.8918 13.3903C16.8852 13.3695 16.8918 13.2657 16.8918 13.2519Z" fill="#FF0101" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4545 13.1484C17.4413 13.1484 17.2494 13.2245 17.256 13.2245C17.2627 13.2245 17.4744 13.2868 17.4678 13.2729C17.4611 13.2591 17.4611 13.1691 17.4545 13.1484H17.4545Z" fill="#FF0101" stroke="#522108" stroke-width="0.01"/>
<path d="M18.0304 13.2167C18.0171 13.2237 17.7921 13.279 17.8318 13.2859C17.8715 13.2929 18.0237 13.3482 18.0237 13.3344C18.0237 13.3205 18.0237 13.2237 18.0304 13.2167Z" fill="#FF0101" stroke="#522108" stroke-width="0.01"/>
<path d="M17.3665 13.765C17.3673 13.7447 17.3522 13.7276 17.3328 13.7268C17.3134 13.726 17.2971 13.7418 17.2963 13.7621C17.2955 13.7824 17.3106 13.7995 17.33 13.8003C17.3494 13.8011 17.3657 13.7853 17.3665 13.765Z" fill="#BE1017" stroke="#522108" stroke-width="0.01"/>
<path d="M17.6048 13.7006C17.6056 13.6803 17.5905 13.6632 17.5711 13.6624C17.5517 13.6616 17.5354 13.6774 17.5346 13.6976C17.5338 13.7179 17.5489 13.735 17.5683 13.7358C17.5877 13.7366 17.604 13.7208 17.6048 13.7006Z" fill="#BE1017" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4856 13.8334C17.4864 13.8131 17.4713 13.796 17.4519 13.7952C17.4326 13.7944 17.4162 13.8102 17.4155 13.8305C17.4147 13.8507 17.4298 13.8678 17.4492 13.8686C17.4685 13.8695 17.4849 13.8537 17.4856 13.8334Z" fill="#BE1017" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4856 13.6322C17.4864 13.6119 17.4713 13.5948 17.4519 13.594C17.4326 13.5932 17.4162 13.609 17.4155 13.6293C17.4147 13.6496 17.4298 13.6667 17.4492 13.6675C17.4685 13.6683 17.4849 13.6525 17.4856 13.6322Z" fill="#BE1017" stroke="#522108" stroke-width="0.01"/>
<path d="M17.4856 13.7318C17.4864 13.7115 17.4713 13.6944 17.4519 13.6936C17.4326 13.6928 17.4162 13.7086 17.4155 13.7289C17.4147 13.7492 17.4298 13.7663 17.4492 13.7671C17.4685 13.7679 17.4849 13.7521 17.4856 13.7318Z" fill="#BE1017" stroke="#522108" stroke-width="0.01"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<defs>
<linearGradient id="paint0_linear_14099_117055" x1="16.3969" y1="15.2999" x2="15.792" y2="14.9426" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint1_linear_14099_117055" x1="16.7735" y1="15.5415" x2="15.4454" y2="15.2956" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint2_linear_14099_117055" x1="19.2421" y1="14.979" x2="18.6237" y2="15.015" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint3_linear_14099_117055" x1="19.5003" y1="15.3187" x2="18.1888" y2="15.4301" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint4_linear_14099_117055" x1="19.3507" y1="15.6778" x2="15.65" y2="15.6778" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint5_linear_14099_117055" x1="15.7515" y1="15.9381" x2="21.1614" y2="15.9818" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint6_linear_14099_117055" x1="19.482" y1="15.6352" x2="19.0442" y2="15.6614" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint7_linear_14099_117055" x1="15.6361" y1="16.0763" x2="16.0585" y2="16.1433" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
<linearGradient id="paint8_linear_14099_117055" x1="16.0479" y1="16.0042" x2="15.3299" y2="15.6057" gradientUnits="userSpaceOnUse">
<stop stop-color="#A43907" stop-opacity="0.9961"/>
<stop offset="1" stop-color="white"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M11.2724 6H8.36328V18H11.2724V6Z" fill="#0065BD"/>
<path d="M20 10.5H4V13.5H20V10.5Z" fill="#0065BD"/>
<path d="M10.5454 6H9.09082V18H10.5454V6Z" fill="#ED2939"/>
<path d="M20 11.25H4V12.75H20V11.25Z" fill="#ED2939"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 528 B

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#75B2DD"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M12 7L12.3368 8.03647H13.4266L12.5449 8.67705L12.8817 9.71353L12 9.07295L11.1183 9.71353L11.4551 8.67705L10.5734 8.03647H11.6632L12 7Z" fill="white"/>
<path d="M12 14L12.3368 15.0365H13.4266L12.5449 15.6771L12.8817 16.7135L12 16.0729L11.1183 16.7135L11.4551 15.6771L10.5734 15.0365H11.6632L12 14Z" fill="white"/>
<path d="M7.5 10.5L7.83677 11.5365H8.92658L8.04491 12.1771L8.38168 13.2135L7.5 12.5729L6.61832 13.2135L6.95509 12.1771L6.07342 11.5365H7.16323L7.5 10.5Z" fill="white"/>
<path d="M16.5 10.5L16.8368 11.5365H17.9266L17.0449 12.1771L17.3817 13.2135L16.5 12.5729L15.6183 13.2135L15.9551 12.1771L15.0734 11.5365H16.1632L16.5 10.5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 963 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M20 11H4V14H20V11Z" fill="#003580"/>
<path d="M11 6H8V18H11V6Z" fill="#003580"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#ED2939"/>
<path d="M15 6H4V18H15V6Z" fill="white"/>
<path d="M9 6H4V18H9V6Z" fill="#002395"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 387 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 6H4V18H21V6Z" fill="#ED2939"/>
<path d="M15 6H4V18H15V6Z" fill="white"/>
<path d="M10 6H4V18H10V6Z" fill="#002395"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#3A75C4"/>
<path d="M20 6H4V14H20V6Z" fill="#FCD116"/>
<path d="M20 6H4V10H20V6Z" fill="#009E60"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 6H20V18H4" fill="#3A7728"/>
<path d="M4 6H20V13H4" fill="#0C1C8C"/>
<path d="M4 6H20V10H4" fill="#CE1126"/>
<path d="M4 10H20H4ZM20 13.5H4H20Z" fill="black"/>
<path d="M4 10H20M20 13.5H4" stroke="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 476 B

View File

@ -0,0 +1,18 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M10.9333 6V10.8H4V13.2H10.9333V18H13.0667V13.2H20V10.8H13.0667V6H10.9333Z" fill="#FF0000"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_117445)">
<path d="M4 6H20V18H4V6Z" fill="white"/>
<path d="M10.7998 6H13.1998V18H10.7998V6Z" fill="#FF0000"/>
<path d="M4 10.8H20V13.2H4V10.8Z" fill="#FF0000"/>
<g style="mix-blend-mode:multiply">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.66961 15.3275C7.69461 14.9075 7.76961 14.55 7.76961 14.55C7.76961 14.55 7.52461 14.575 7.39961 14.575C7.27711 14.575 7.02961 14.55 7.02961 14.55C7.02961 14.55 7.10461 14.9075 7.12961 15.33C6.70711 15.305 6.34961 15.23 6.34961 15.23C6.34961 15.23 6.37461 15.415 6.37461 15.6C6.37461 15.785 6.34961 15.97 6.34961 15.97C6.34961 15.97 6.70711 15.895 7.12961 15.87C7.10461 16.2925 7.02961 16.65 7.02961 16.65C7.02961 16.65 7.21461 16.625 7.39961 16.625C7.58461 16.625 7.76961 16.65 7.76961 16.65C7.76961 16.65 7.69461 16.2925 7.66961 15.87C8.09211 15.895 8.44961 15.97 8.44961 15.97C8.44961 15.97 8.42461 15.725 8.42461 15.6C8.42461 15.4775 8.44961 15.23 8.44961 15.23C8.44961 15.23 8.09211 15.305 7.67211 15.33L7.66961 15.3275ZM16.8696 8.12748C16.8946 7.70748 16.9696 7.34998 16.9696 7.34998C16.9696 7.34998 16.7246 7.37498 16.5996 7.37498C16.4771 7.37498 16.2296 7.34998 16.2296 7.34998C16.2296 7.34998 16.3046 7.70748 16.3296 8.12748C15.9071 8.10248 15.5496 8.02998 15.5496 8.02998C15.5496 8.02998 15.5746 8.21498 15.5746 8.39998C15.5746 8.58498 15.5496 8.76998 15.5496 8.76998C15.5496 8.76998 15.9071 8.69498 16.3296 8.66998C16.3046 9.09248 16.2296 9.44998 16.2296 9.44998C16.2296 9.44998 16.4146 9.42498 16.5996 9.42498C16.7846 9.42498 16.9696 9.44998 16.9696 9.44998C16.9696 9.44998 16.8946 9.09248 16.8696 8.67248C17.2921 8.69748 17.6496 8.77248 17.6496 8.77248C17.6496 8.77248 17.6246 8.52248 17.6246 8.39998C17.6246 8.27748 17.6496 8.02998 17.6496 8.02998C17.6496 8.02998 17.2921 8.10498 16.8696 8.12998V8.12748ZM7.66961 8.12748C7.69461 7.70748 7.76961 7.34998 7.76961 7.34998C7.76961 7.34998 7.52461 7.37498 7.39961 7.37498C7.27711 7.37498 7.02961 7.34998 7.02961 7.34998C7.02961 7.34998 7.10461 7.70748 7.12961 8.12998C6.70711 8.10498 6.34961 8.02998 6.34961 8.02998C6.34961 8.02998 6.37461 8.21498 6.37461 8.39998C6.37461 8.58498 6.34961 8.76998 6.34961 8.76998C6.34961 8.76998 6.70711 8.69498 7.12961 8.66998C7.10461 9.09248 7.02961 9.44998 7.02961 9.44998C7.02961 9.44998 7.21461 9.42498 7.39961 9.42498C7.58461 9.42498 7.76961 9.44998 7.76961 9.44998C7.76961 9.44998 7.69461 9.09248 7.66961 8.66998C8.09211 8.69498 8.44961 8.76998 8.44961 8.76998C8.44961 8.76998 8.42461 8.52498 8.42461 8.39998C8.42461 8.27748 8.44961 8.02998 8.44961 8.02998C8.44961 8.02998 8.09211 8.10498 7.67211 8.12998L7.66961 8.12748ZM16.8696 15.3275C16.8946 14.9075 16.9696 14.55 16.9696 14.55C16.9696 14.55 16.7246 14.575 16.5996 14.575C16.4771 14.575 16.2296 14.55 16.2296 14.55C16.2296 14.55 16.3046 14.9075 16.3296 15.33C15.9071 15.305 15.5496 15.23 15.5496 15.23C15.5496 15.23 15.5746 15.415 15.5746 15.6C15.5746 15.785 15.5496 15.97 15.5496 15.97C15.5496 15.97 15.9071 15.895 16.3296 15.87C16.3046 16.2925 16.2296 16.65 16.2296 16.65C16.2296 16.65 16.4146 16.625 16.5996 16.625C16.7846 16.625 16.9696 16.65 16.9696 16.65C16.9696 16.65 16.8946 16.2925 16.8696 15.87C17.2921 15.895 17.6496 15.97 17.6496 15.97C17.6496 15.97 17.6246 15.725 17.6246 15.6C17.6246 15.4775 17.6496 15.23 17.6496 15.23C17.6496 15.23 17.2921 15.305 16.8696 15.33V15.3275Z" fill="#FF0000"/>
</g>
</g>
<defs>
<clipPath id="clip0_14099_117445">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="black"/>
<path d="M20 10H4V18H20V10Z" fill="#DD0000"/>
<path d="M20 14H4V18H20V14Z" fill="#FFCE00"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#006B3F"/>
<path d="M20 6H4V14H20V6Z" fill="#FCD116"/>
<path d="M20 6H4V10H20V6Z" fill="#CE1126"/>
<path d="M12.0004 10L13.3001 14L9.89746 11.5279H14.1033L10.7007 14L12.0004 10Z" fill="black"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 486 B

View File

@ -0,0 +1,79 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#DA000C"/>
<path d="M20 6H4V14H20V6Z" fill="white"/>
<path d="M13.2148 11.4525H10.2148V13.5146H13.2148V11.4525Z" fill="black"/>
<path d="M11.7734 13.2129H9.94208L9.53613 13.4801V13.7632H11.7734" fill="#DA000C"/>
<path d="M11.7734 13.2129H9.94208L9.53613 13.4801V13.7632H11.7734" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M11.0063 12.0293C11.27 12.0293 11.4854 12.2491 11.4854 12.52V13.2129H11.8296V10.5879H9.94141V13.2129H10.5273V12.52C10.5273 12.2597 10.739 12.0293 11.0063 12.0293Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M11.4562 8.81183H10.5879V10.4037H11.4562V8.81183Z" fill="black"/>
<path d="M11.4536 10.1569H10.6938V9.88739H10.1367V10.1569H9.75879V9.88739H9.5332V10.3766H11.4536M9.75879 10.3749H11.398V10.5876H9.75879V10.3749Z" fill="#DA000C"/>
<path d="M11.4536 10.1569H10.6938V9.88739H10.1367V10.1569H9.75879V9.88739H9.5332V10.3766H11.4536M9.75879 10.3749H11.398V10.5876H9.75879V10.3749Z" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M10.4092 8.2337V9.88751H10.6938V9.43341C10.6938 9.26329 10.8139 9.12407 10.9819 9.11554C10.9874 9.11526 10.9926 9.11554 10.998 9.11554C11.1737 9.11554 11.3159 9.2578 11.3159 9.43341V9.88751H11.5869V8.2337H10.4092Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M10.3066 8.00977V8.23389H11.6777V8.00977H10.3066Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M10.1309 7.58008V8.00928H11.7759V7.58008H11.5225V7.79834H11.2163V7.58008H10.749V7.79834H10.4429V7.58008H10.1309Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M9.53613 13.4811H11.7819H9.53613Z" fill="#DA000C"/>
<path d="M9.53613 13.4811H11.7819" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M13.2349 13.3509H11.7144L11.2559 13.5721V13.9017H13.2349" fill="#DA000C"/>
<path d="M13.2349 13.3509H11.7144L11.2559 13.5721V13.9017H13.2349" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M11.2559 13.5723H13.2822H11.2559Z" fill="#DA000C"/>
<path d="M11.2559 13.5723H13.2822" stroke="black" stroke-width="0.01"/>
<path d="M12.7188 11.4531H15.7188V13.5152H12.7188V11.4531Z" fill="black"/>
<path d="M14.1602 13.2129H15.9915L16.3975 13.4801V13.7632H14.1602" fill="#DA000C"/>
<path d="M14.1602 13.2129H15.9915L16.3975 13.4801V13.7632H14.1602" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M14.9272 12.0293C14.6636 12.0293 14.4482 12.2491 14.4482 12.52V13.2129H14.104V10.5879H15.9922V13.2129H15.4062V12.52C15.4063 12.2597 15.1946 12.0293 14.9272 12.0293Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M14.4774 8.81244H15.3457V10.4043H14.4774V8.81244Z" fill="black"/>
<path d="M14.48 10.1562H15.2398V9.88666H15.7969V10.1562H16.1748V9.88666H16.4004V10.3759H14.48M16.1748 10.3741H14.5356V10.5869H16.1748V10.3741Z" fill="#DA000C"/>
<path d="M14.48 10.1562H15.2398V9.88666H15.7969V10.1562H16.1748V9.88666H16.4004V10.3759H14.48M16.1748 10.3741H14.5356V10.5869H16.1748V10.3741Z" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M15.5244 8.23431V9.88812H15.2398V9.43402C15.2398 9.2639 15.1197 9.12468 14.9517 9.11615C14.9462 9.11587 14.941 9.11615 14.9355 9.11615C14.7599 9.11615 14.6177 9.25841 14.6177 9.43402V10.1537H14.3467V8.23431H15.5244Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M15.627 8.00977V8.23389H14.2559V8.00977H15.627Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M15.8027 7.58008V8.00928H14.1577V7.58008H14.4111V7.79834H14.7173V7.58008H15.1846V7.79834H15.4907V7.58008H15.8027Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M16.3975 13.4804H14.1517H16.3975Z" fill="#DA000C"/>
<path d="M16.3975 13.4804H14.1517" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M12.6987 13.3515H14.2192L14.6777 13.5727V13.9023H12.6987" fill="#DA000C"/>
<path d="M12.6987 13.3515H14.2192L14.6777 13.5727V13.9023H12.6987" stroke="black" stroke-width="0.01" stroke-linecap="square"/>
<path d="M14.6777 13.5723H12.6514H14.6777Z" fill="#DA000C"/>
<path d="M14.6777 13.5723H12.6514" stroke="black" stroke-width="0.01"/>
<path d="M13.8114 13.0345C13.687 13.0759 13.5745 13.1455 13.4613 13.2104C13.3159 13.2963 13.175 13.3898 13.0439 13.4963C12.9977 13.5267 12.9534 13.5601 12.9178 13.6028C12.8697 13.644 12.821 13.6992 12.8302 13.7675C12.8327 13.7977 12.8712 13.7321 12.8965 13.7289C12.9407 13.7036 12.9942 13.6954 13.0438 13.7068C13.1034 13.6441 13.1802 13.6021 13.2465 13.5472C13.3874 13.4421 13.5389 13.3518 13.693 13.2678C13.7468 13.2402 13.8009 13.2122 13.8583 13.1927C13.8426 13.14 13.827 13.0872 13.8114 13.0345Z" fill="#F8D80E" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.2061 13.3782V13.5616V13.3782Z" fill="#F8D80E"/>
<path d="M13.2061 13.3782V13.5616" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.3193 13.3001V13.4821V13.3001Z" fill="#F8D80E"/>
<path d="M13.3193 13.3001V13.4821" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.4326 13.2298V13.4106V13.2298Z" fill="#F8D80E"/>
<path d="M13.4326 13.2298V13.4106" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.5459 13.1595V13.3461V13.1595Z" fill="#F8D80E"/>
<path d="M13.5459 13.1595V13.3461" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.1982 13.0397C12.1797 13.0914 12.1611 13.1432 12.1426 13.1949C12.4021 13.2934 12.6492 13.4236 12.8831 13.5728C12.9623 13.6267 13.0456 13.679 13.1079 13.7531C13.1216 13.7911 13.0838 13.8228 13.0463 13.8114C13.012 13.7997 12.9782 13.7864 12.942 13.8112C12.8901 13.8348 12.8432 13.9116 12.922 13.9373C13.0305 14.0102 13.2071 13.9785 13.2592 13.8508C13.2865 13.7851 13.2882 13.7011 13.2354 13.6472C13.1388 13.5364 13.0106 13.4593 12.8876 13.3813C12.6678 13.2491 12.4388 13.1294 12.1982 13.0397L12.1982 13.0397Z" fill="#F8D80E" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.9092 13.4095L12.8945 13.566L12.9092 13.4095Z" fill="#F8D80E"/>
<path d="M12.9092 13.4095L12.8945 13.566" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.0394 13.4902L12.999 13.6435L13.0394 13.4902Z" fill="#F8D80E"/>
<path d="M13.0394 13.4902L12.999 13.6435" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.1785 13.597L13.0938 13.7159L13.1785 13.597Z" fill="#F8D80E"/>
<path d="M13.1785 13.597L13.0938 13.7159" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.221 13.884L13.0986 13.8184L13.221 13.884Z" fill="#F8D80E"/>
<path d="M13.221 13.884L13.0986 13.8184" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.2596 13.7559L13.1191 13.769L13.2596 13.7559Z" fill="#F8D80E"/>
<path d="M13.2596 13.7559L13.1191 13.769" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.078 13.9599L13.0684 13.8365L13.078 13.9599Z" fill="#F8D80E"/>
<path d="M13.078 13.9599L13.0684 13.8365" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M13.0271 13.8184L12.9111 13.9038L13.0271 13.8184Z" fill="#F8D80E"/>
<path d="M13.0271 13.8184L12.9111 13.9038" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.4697 13.1699V13.3159V13.1699Z" fill="#F8D80E"/>
<path d="M12.4697 13.1699V13.3159" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.7637 13.3262V13.4918V13.3262Z" fill="#F8D80E"/>
<path d="M12.7637 13.3262V13.4918" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.6172 13.248V13.4036V13.248Z" fill="#F8D80E"/>
<path d="M12.6172 13.248V13.4036" stroke="black" stroke-width="0.01" stroke-linecap="round"/>
<path d="M12.0527 16.6693V17.0457H12.2886V16.8568H12.6094V17.0457H12.8628V16.6693H12.0527ZM12.0527 17.1878V17.5657H12.8628V17.1878H12.6094V17.3768H12.2886V17.1878H12.0527Z" fill="#F8D80E" stroke="black" stroke-width="0.01"/>
<path d="M13.0962 15.0781H12.8623V17.8023H13.0962V15.0781Z" fill="#F8D80E" stroke="black" stroke-width="0.01"/>
<path d="M13.0962 15.3151H12.8623V17.6616H13.0962V15.3151Z" fill="#F8D80E" stroke="black" stroke-width="0.01"/>
<path d="M12.9795 14.4116L13.4775 14.7017L12.9795 14.9902L12.4814 14.7017L12.9795 14.4116ZM12.313 14.5977H12.1826V14.8057H12.313L12.9795 15.1924L13.646 14.8057H13.7764V14.5977H13.646L12.9795 14.2109L12.313 14.5977Z" fill="#F8D80E" stroke="black" stroke-width="0.01"/>
<path d="M12.9696 13.7009C12.8562 13.7168 12.7715 13.8289 12.7777 13.9416C12.7781 14.1168 12.7768 14.292 12.7783 14.4672C12.7843 14.5801 12.883 14.6813 12.9974 14.6823C13.0905 14.6911 13.1839 14.6367 13.223 14.552C13.1961 14.5359 13.1693 14.5198 13.1424 14.5037C13.1216 14.5592 13.0616 14.5936 13.0033 14.5872C12.9266 14.5893 12.8645 14.5148 12.8714 14.4402C12.8719 14.2662 12.8705 14.0921 12.8721 13.918C12.8763 13.847 12.944 13.7889 13.015 13.7961C13.0443 13.7877 13.0847 13.8279 13.1028 13.7932C13.1302 13.7543 13.0834 13.724 13.0574 13.7024C13.0287 13.6985 12.9986 13.702 12.9696 13.7009L12.9696 13.7009ZM13.2406 13.884C13.222 13.919 13.1835 13.9398 13.1527 13.9581V14.3103C13.1839 14.3284 13.2152 14.3464 13.2464 14.3645C13.246 14.2143 13.2471 14.0641 13.2459 13.914C13.2444 13.9047 13.2455 13.8906 13.2406 13.884H13.2406Z" fill="#F8D80E" stroke="black" stroke-width="0.01"/>
<path d="M13.6629 7.79816H12.2881V10.2945H13.6629V7.79816Z" fill="black"/>
<path d="M12.1914 7.79816V9.88702H12.6279V9.2674C12.6279 9.12448 12.7195 8.92609 13 8.92609C13.2805 8.92609 13.3721 9.12448 13.3721 9.2674V9.88702H13.8086V7.79816H12.1914ZM12.9326 8.03253H13.0674V8.74738H12.9326V8.03253ZM12.5459 8.17316H12.6821V8.69611H12.5459V8.17316ZM13.3179 8.17316H13.4541V8.69611H13.3179V8.17316Z" fill="#DA000C" stroke="black" stroke-width="0.01"/>
<path d="M12.0439 7.49872V7.79608H13.957V7.49872H12.0439Z" fill="#DA000C" stroke="black" stroke-width="0.01"/>
<path d="M11.8633 7.15234V7.49805H14.1367V7.15234H13.8511V7.34277H13.5288V7.15234H13.1611V7.34277H12.8389V7.15234H12.4712V7.34277H12.1489V7.15234H11.8633Z" fill="#DA000C" stroke="black" stroke-width="0.01"/>
<path d="M11.4414 10.5872V10.8026H14.5586V10.5872H11.4414Z" fill="#DA000C" stroke="black" stroke-width="0.01"/>
<path d="M11.3145 9.88672V10.5869H14.6865V9.88672H14.3672V10.1562H13.9424V9.88672H13.3726V10.1562H12.6284V9.88672H12.0586V10.1562H11.6338V9.88672H11.3145Z" fill="#DA000C" stroke="black" stroke-width="0.01"/>
<path d="M11.7207 10.8008V13.3481H12.3228V12.3945C12.3228 11.9453 12.6226 11.7339 13.001 11.7339C13.3647 11.7339 13.6792 11.9453 13.6792 12.3945V13.3481H14.2812V10.8008H11.7207Z" fill="#DA000C" stroke="black" stroke-width="0.01" stroke-linejoin="round"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#0D5EAF"/>
<path d="M6.96296 6V13.3333M4 9.33333H9.92593M9.92593 8H20M9.92593 10.6667H20M4 13.3333H20M4 16H20" stroke="white"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 420 B

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M4 12H20V18H4V12ZM7 12C7 13.0609 7.42143 14.0783 8.17157 14.8284C8.92172 15.5786 9.93913 16 11 16C12.0609 16 13.0783 15.5786 13.8284 14.8284C14.5786 14.0783 15 13.0609 15 12C15 10.9391 14.5786 9.92172 13.8284 9.17157C13.0783 8.42143 12.0609 8 11 8C9.93913 8 8.92172 8.42143 8.17157 9.17157C7.42143 9.92172 7 10.9391 7 12Z" fill="#D00C33"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 650 B

View File

@ -0,0 +1,24 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#CE1126"/>
<path d="M19.4 8.04102H4.5V15.5061H19.4V8.04102Z" fill="#007A5E"/>
<path d="M4.5 8.04102H19.4L4.5 15.5061H19.4L4.5 8.04102Z" fill="#FCD116"/>
<path d="M11.9496 13.0177C12.6617 13.0177 13.239 12.4606 13.239 11.7735C13.239 11.0863 12.6617 10.5293 11.9496 10.5293C11.2375 10.5293 10.6602 11.0863 10.6602 11.7735C10.6602 12.4606 11.2375 13.0177 11.9496 13.0177Z" fill="#CE1126"/>
<path d="M5.42188 11.7894C5.5832 12.0793 5.89699 12.3949 6.17103 12.5058C6.17544 12.2113 6.06716 11.8339 5.91909 11.5333L5.42188 11.7894Z" fill="#CE1126"/>
<path d="M5.14912 10.793C5.38297 11.2633 4.54262 12.3855 5.94268 12.6485C5.76997 12.4211 5.65862 12.0458 5.70074 11.7444C5.99448 11.8523 6.30354 12.1678 6.42844 12.409C6.79485 11.1251 5.48859 11.2032 5.14912 10.793Z" fill="#FCD116"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<g clip-path="url(#clip0_14099_117555)">
<path d="M4 6H20.0036V18H4V6Z" fill="#FF0000"/>
<path d="M7.65137 8.08679H16.6764V15.9468H7.65137V8.08679Z" fill="#009A00"/>
<path d="M7.65039 15.9468L12.1635 12.0168L16.6766 15.9468H7.65159H7.65039ZM16.6754 8.08801L12.1623 12.018L7.65039 8.08801H16.6754Z" fill="#FFCA00"/>
<path d="M8.44386 7.53358L8.03335 7.24078L7.62165 7.53358L7.77289 7.05238L7.36719 6.75118L7.87251 6.74638L8.03335 6.26758L8.19419 6.74638L8.69952 6.75238L8.29262 7.05238M12.5669 7.54678L12.1564 7.25278L11.7447 7.54558L11.8959 7.06438L11.4914 6.76318L11.9955 6.75838L12.1576 6.27958L12.3172 6.75838L12.8226 6.76438L12.4156 7.06438M16.6935 7.53958L16.2818 7.24678L15.8701 7.53958L16.0225 7.05718L15.6168 6.75598L16.1222 6.75238L16.283 6.27358L16.4427 6.75238L16.948 6.75718L16.5423 7.05838M8.44386 17.7204L8.03335 17.4264L7.62165 17.7192L7.77289 17.238L7.36719 16.9368L7.87251 16.932L8.03335 16.4532L8.19419 16.932L8.69952 16.938L8.29262 17.238M12.5669 17.7324L12.1564 17.4384L11.7447 17.7312L11.8959 17.25L11.4914 16.9488L11.9955 16.944L12.1576 16.4652L12.3172 16.944L12.8226 16.95L12.4156 17.25M16.6935 17.7252L16.2818 17.4324L15.8701 17.7252L16.0225 17.2428L15.6168 16.9416L16.1222 16.938L16.283 16.4592L16.4427 16.938L16.948 16.9428L16.5423 17.244" fill="#FFCE00"/>
<path d="M13.246 12.078C13.246 12.6816 12.7551 13.1712 12.1513 13.1712C11.5464 13.1712 11.0566 12.6816 11.0566 12.078C11.0566 11.4732 11.5464 10.9836 12.1513 10.9836C12.7551 10.9836 13.246 11.4732 13.246 12.078Z" fill="#FF0000"/>
<path d="M12.6455 12.7512L12.157 12.4032L11.6685 12.75L11.8485 12.1776L11.3672 11.82L11.9673 11.8152L12.1582 11.2464L12.349 11.8152L12.948 11.8224L12.4667 12.1788" fill="#FFCE00"/>
<path d="M7.44141 12.3924L7.44981 11.6712C7.44981 11.6712 8.24201 11.7588 8.27441 12.0672C8.30562 12.3768 8.25041 12.8364 8.25041 12.8364C8.07636 12.9084 7.44141 12.3924 7.44141 12.3924Z" fill="#FF0000"/>
<path d="M8.21867 11.4732C8.86323 11.6568 8.54395 12.8364 8.54395 12.8364C8.54395 12.8364 8.13945 12.0036 7.71095 11.9484C7.63173 12.5592 7.94861 12.8916 8.06743 13.098C7.48049 12.9636 7.00277 12.6648 7.06038 12.2256C7.16841 11.418 7.09159 11.0136 7.09159 11.0136C7.09159 11.0208 7.59092 11.2968 8.21867 11.4732Z" fill="#FFCE00"/>
</g>
<defs>
<clipPath id="clip0_14099_117555">
<rect width="16" height="12" fill="white" transform="translate(4 6)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#ED2939"/>
<path d="M15 6H4V18H15V6Z" fill="white"/>
<path d="M9 6H4V18H9V6Z" fill="#002395"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 387 B

View File

@ -0,0 +1,28 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="#C62139"/>
<path d="M19.5 6.50067H4.5V17.5H19.5V6.50067Z" fill="#00297B"/>
<path d="M12.0059 9.54095C12.0059 9.54095 10.2441 10.66 10.2441 11.9796C10.2441 13.2993 12.0059 14.4501 12.0059 14.4501C12.0059 14.4501 13.7563 13.3942 13.7563 11.9796C13.7563 10.565 12.0059 9.54095 12.0059 9.54095Z" fill="#C62139"/>
<path d="M13.4914 12.4161C13.53 12.2758 13.552 12.13 13.552 11.9796C13.552 10.7129 12.006 9.77338 12.006 9.77338C12.006 9.77338 10.4375 10.7447 10.4375 11.9796C10.4375 12.128 10.4598 12.2725 10.4993 12.4125L13.4914 12.4161Z" fill="#66AFEB"/>
<path d="M11.9931 14.2068C11.9931 14.2068 13.2056 13.4586 13.4908 12.412H10.498C10.7876 13.4384 11.9931 14.2068 11.9931 14.2068Z" fill="#007BDE"/>
<path d="M13.5446 12.1269C13.2794 12.303 11.7866 12.2184 11.7866 12.2184L11.7031 12.4155H13.4915C13.4989 12.3885 13.5057 12.3615 13.5119 12.3341L13.5446 12.1269Z" fill="#9C8431"/>
<path d="M11.9137 13.3741C11.891 13.2266 11.1928 13.0687 10.8223 13.0817C10.9379 13.2508 11.069 13.4056 11.2009 13.5431C11.3891 13.3549 11.9211 13.4228 11.9137 13.3741Z" fill="#FFF100"/>
<path d="M13.3273 12.8251C13.2385 12.828 13.0775 12.8412 12.9672 12.8947C12.8082 12.9721 12.452 13.0567 12.2928 13.0143C12.1338 12.9721 11.8836 13.1059 11.9141 13.134C11.9645 13.1809 12.3307 13.127 12.3307 13.4296C12.3307 13.683 11.9065 13.5705 11.7397 13.676C11.6392 13.7395 11.5691 13.8084 11.5293 13.8527C11.7897 14.0773 11.9936 14.2073 11.9936 14.2073C11.9936 14.2073 12.4769 13.909 12.905 13.4259L13.1063 13.177C13.1874 13.0663 13.2627 12.9488 13.3273 12.8251Z" fill="#FFF100"/>
<path d="M11.9094 10.8738C11.9094 10.8738 11.6678 10.7419 11.3382 10.8051C11.0086 10.8685 10.9375 11.061 10.9375 11.061L11.0483 11.0136L11.0511 11.0558L11.1506 10.9978L11.1534 11.04L11.2387 10.9662L11.2527 11.0136L11.3295 10.9503L11.3352 10.9846L11.4602 10.9107V10.9582L11.5597 10.9159L11.5512 10.9608L11.7388 10.9293C11.7388 10.9293 11.2954 11.0664 11.2387 11.3963L11.3238 11.3015L11.3324 11.3461L11.3863 11.2459L11.4006 11.2855L11.4489 11.1932L11.463 11.2485L11.5368 11.1482L11.5426 11.2064L11.6277 11.0982V11.1507L11.7187 11.0584L11.7159 11.1272C11.7159 11.1272 11.804 11.0584 11.8322 11.0584L11.7272 11.1851L11.7614 11.1957C11.7614 11.1957 11.6874 11.2511 11.6818 11.2617C11.6761 11.2721 11.7302 11.2617 11.7302 11.2617C11.7302 11.2617 11.6647 11.3249 11.6619 11.3435C11.659 11.3621 11.7045 11.3435 11.7045 11.3435C11.7045 11.3435 11.6448 11.4146 11.6363 11.4412C11.6277 11.4676 11.6675 11.4464 11.6675 11.4464C11.6675 11.4464 11.6307 11.5309 11.6277 11.5546C11.6249 11.5782 11.6703 11.5492 11.6703 11.5492L11.696 11.6944L11.7415 11.5204L11.7698 11.56V11.4359L11.7954 11.4569L11.7926 11.3753L11.8266 11.4068L11.8096 11.3065L11.8465 11.3459L11.8408 11.2617L11.8777 11.2961V11.1851L11.9118 11.214L11.9175 11.1377L11.9573 11.1561C11.9573 11.1561 11.9629 11.0637 12.0085 11.0664C12.0538 11.0688 12.1107 11.1138 12.088 11.1348L12.1278 11.1246L12.1193 11.214L12.1562 11.193L12.1505 11.2589L12.1817 11.2457L12.1704 11.3301L12.2074 11.3093L12.2101 11.4119L12.2526 11.3831L12.2498 11.5043L12.2924 11.4728V11.573L12.3322 11.5468L12.3749 11.6443L12.3663 11.4992L12.3977 11.5228L12.3407 11.42L12.3834 11.4146L12.3378 11.3459L12.3805 11.3489L12.3181 11.2801L12.3606 11.2723L12.2667 11.2089L12.3179 11.1905L12.2213 11.1324L12.2582 11.1192L12.1902 11.0532L12.2612 11.0796L12.2838 11.0374L12.369 11.1008V11.0374L12.4429 11.1324L12.4515 11.0742L12.5083 11.1482L12.5196 11.114L12.5594 11.1878L12.5792 11.1326L12.619 11.2117L12.6303 11.1561L12.6673 11.2433L12.7014 11.2089L12.7185 11.2987L12.7524 11.2643L12.7836 11.3435L12.8234 11.3145L12.8576 11.4043C12.8576 11.4043 12.9513 10.9239 12.1472 10.9159L11.9085 10.8738" fill="#009270"/>
<path d="M11.54 10.4467L11.5854 10.4993L11.5626 10.5154L11.6394 10.555L11.6223 10.5839L11.6991 10.6103L11.6706 10.6315L11.7389 10.6682L11.6935 10.6816L11.7758 10.7185L11.7645 10.7527L11.8355 10.7686L11.8043 10.7923L11.8866 10.8532L11.9804 10.9138L12.0458 10.8928L12.0201 10.7764C12.0201 10.7764 11.7502 10.4333 11.54 10.4465" fill="#009270"/>
<path d="M11.7868 10.1143L11.8181 10.1828L11.7754 10.1908L11.8721 10.2805L11.7953 10.2831L11.8891 10.3517L11.8436 10.3651L11.9289 10.4442L11.8834 10.4652L11.9714 10.547L11.9119 10.5681L12.0114 10.6526L11.9545 10.6554L12.0141 10.7264L11.9601 10.7423C11.9601 10.7423 12.0255 10.8557 12.0225 10.9033L12.1333 10.9085C12.1333 10.9085 12.1504 10.6024 12.1363 10.5628L12.1078 10.5813L12.1163 10.4704L12.0736 10.4943L12.0653 10.3623L12.0225 10.4044L12.0114 10.2751L11.98 10.3201L11.9487 10.1933L11.9147 10.2329L11.8834 10.1512L11.8578 10.1828L11.7868 10.1141" fill="#009270"/>
<path d="M12.0742 10.8853C12.1055 10.7005 12.313 10.4313 12.7023 10.4208L12.6141 10.463L12.6653 10.4841L12.563 10.5185L12.6141 10.5473L12.492 10.5554L12.5544 10.595L12.4636 10.6055L12.3925 10.6187L12.4436 10.6635L12.3413 10.6739L12.4067 10.7057C12.4067 10.7057 12.2447 10.7585 12.2334 10.7744C12.2334 10.7744 12.7791 10.6451 12.9126 10.885L12.8073 10.8428L12.8159 10.8878L12.7421 10.8376L12.7534 10.8746L12.6767 10.8376L12.688 10.8824L12.6084 10.8402L12.6255 10.88L12.5232 10.835L12.5403 10.8772L12.4522 10.8508L12.4608 10.8956L12.3726 10.8904L12.3812 10.9432L12.1084 10.9378L12.0742 10.885" fill="#009270"/>
<path d="M11.9909 11.0454L12.0478 11.0419C12.0212 11.5452 12.0461 12.2668 12.1197 12.534C12.2446 12.9878 12.6088 13.1626 12.6955 13.2061C12.7447 13.2306 12.7258 13.3327 12.6272 13.3257C12.5289 13.3187 12.1852 13.0828 12.0665 12.6606C11.9076 12.094 11.9847 11.1044 11.9909 11.0454Z" fill="#7B4800"/>
<path d="M12.0828 10.9956C12.1183 10.9956 12.147 10.9688 12.147 10.9357C12.147 10.9027 12.1183 10.8759 12.0828 10.8759C12.0473 10.8759 12.0186 10.9027 12.0186 10.9357C12.0186 10.9688 12.0473 10.9956 12.0828 10.9956Z" fill="#7B4800"/>
<path d="M11.98 10.9703C12.0133 10.9703 12.0402 10.9452 12.0402 10.9143C12.0402 10.8834 12.0133 10.8583 11.98 10.8583C11.9468 10.8583 11.9199 10.8834 11.9199 10.9143C11.9199 10.9452 11.9468 10.9703 11.98 10.9703Z" fill="#7B4800"/>
<path d="M11.98 11.0645C12.011 11.0645 12.0361 11.0411 12.0361 11.0122C12.0361 10.9833 12.011 10.9598 11.98 10.9598C11.949 10.9598 11.9238 10.9833 11.9238 11.0122C11.9238 11.0411 11.949 11.0645 11.98 11.0645Z" fill="#7B4800"/>
<path d="M12.0562 11.0426C12.0894 11.0426 12.1163 11.0175 12.1163 10.9866C12.1163 10.9556 12.0894 10.9305 12.0562 10.9305C12.023 10.9305 11.9961 10.9556 11.9961 10.9866C11.9961 11.0175 12.023 11.0426 12.0562 11.0426Z" fill="#7B4800"/>
<path d="M11.4443 12.7561H11.5085V12.1122H11.4443V12.7561Z" fill="black"/>
<path d="M11.6525 12.8778C11.6525 12.8778 11.6261 12.8821 11.5843 12.887V12.8368H11.5417V12.8914C11.498 12.8955 11.4451 12.8989 11.3897 12.8989C11.3307 12.8989 11.2713 12.8949 11.2222 12.8902V12.8382H11.1752V12.8852C11.1347 12.8805 11.1085 12.8764 11.1085 12.8764C11.1085 12.8764 11.0956 12.9424 11.3855 12.9424C11.6753 12.9424 11.6526 12.8778 11.6526 12.8778" fill="#7B4800"/>
<path d="M11.3772 12.7547C11.6122 12.7547 11.8093 12.7196 11.8093 12.7196C11.8093 12.7196 11.8394 12.8602 11.3772 12.8602C10.915 12.8602 10.9529 12.7407 10.9529 12.7407C10.9529 12.7407 11.1424 12.7547 11.3772 12.7547Z" fill="#7B4800"/>
<path d="M11.1798 12.1493C11.1798 12.1493 11.5435 12.2761 11.6876 12.7195C11.6876 12.7195 11.3541 12.6563 11.1646 12.7266H11.0586C11.0586 12.7264 11.2405 12.4802 11.1798 12.1493Z" fill="white"/>
<path d="M11.2314 11.8159H11.164C11.1587 11.7889 11.146 11.7699 11.1258 11.7595C11.1145 11.7534 11.1021 11.7506 11.0883 11.7506C11.0618 11.7506 11.0402 11.7623 11.0233 11.7865C11.0062 11.8103 10.9977 11.8466 10.9977 11.8947C10.9977 11.9433 11.007 11.9775 11.0253 11.998C11.0437 12.018 11.0646 12.0281 11.0881 12.0281C11.1111 12.0281 11.1298 12.0202 11.1446 12.0041C11.1592 11.9883 11.1682 11.9673 11.1718 11.9412H11.0958V11.8755H11.2324V12.0872H11.1871L11.1801 12.0379C11.1669 12.0567 11.1551 12.0699 11.1446 12.0777C11.1265 12.0911 11.1043 12.0978 11.0778 12.0978C11.0344 12.0978 10.9987 12.0796 10.9711 12.0433C10.9422 12.007 10.9277 11.9572 10.9277 11.894C10.9277 11.8302 10.9424 11.7788 10.9716 11.7402C11.0007 11.7017 11.0393 11.6825 11.0875 11.6825C11.129 11.6825 11.1626 11.6953 11.1878 11.7207C11.213 11.746 11.2277 11.7778 11.2314 11.8159Z" fill="#C62139"/>
<path d="M11.5518 11.9349V11.6923H11.6213V11.9349C11.6213 11.962 11.6242 11.9817 11.6294 11.9943C11.6378 12.0163 11.6558 12.0275 11.6837 12.0275C11.7113 12.0275 11.7294 12.0163 11.7378 11.9943C11.7432 11.9817 11.7456 11.962 11.7456 11.9349V11.6923H11.8153V11.9349C11.8153 11.9768 11.8099 12.0094 11.7992 12.0329C11.7789 12.0756 11.7405 12.097 11.6836 12.097C11.6269 12.097 11.5882 12.0758 11.5679 12.0329C11.5572 12.0096 11.5518 11.9768 11.5518 11.9349Z" fill="#C62139"/>
<path d="M12.2882 11.6923L12.1709 12.0873H12.2429L12.2656 12.0061H12.3863L12.4076 12.0873H12.4816L12.365 11.6923H12.2882ZM12.3259 11.7824L12.3671 11.9377H12.2841L12.3259 11.7824Z" fill="#C62139"/>
<path d="M12.9151 12.0025L12.9742 11.6923H13.0727V12.0869H13.0089V11.8201C13.0089 11.8123 13.009 11.8015 13.0092 11.7877C13.0093 11.7739 13.0094 11.7632 13.0094 11.7558L12.9473 12.0869H12.8808L12.8192 11.7558C12.8192 11.7632 12.8193 11.7739 12.8194 11.7877C12.8195 11.8015 12.8197 11.8123 12.8197 11.8201V12.0869H12.7559V11.6923H12.8555L12.9151 12.0025" fill="#C62139"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,9 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 6H4V18H20V6Z" fill="white"/>
<path d="M12 6V18M4 12H20" stroke="#E8112D" stroke-width="6"/>
<path d="M8 13L8.4 12.5H12V11.5H8.4L8 11V13Z" fill="#F9DD16"/>
<path d="M16 13L15.6 12.5H12V11.5H15.6L16 11V13Z" fill="#F9DD16"/>
<path d="M13 16L12.5 15.6V12H11.5V15.6L11 16H13Z" fill="#F9DD16"/>
<path d="M13 8L12.5 8.4V12H11.5V8.4L11 8H13Z" fill="#F9DD16"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 624 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 6H4V18H12V6Z" fill="#CE1126"/>
<path d="M20 6H12V12H20V6Z" fill="#FCD116"/>
<path d="M20 12H12V18H20V12Z" fill="#009E49"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="none"/>
<path d="M8 9.5L8.56129 11.2275H10.3776L8.90818 12.2951L9.46946 14.0225L8 12.9549L6.53054 14.0225L7.09182 12.2951L5.62236 11.2275H7.43871L8 9.5Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 553 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 6H4V18H9V6Z" fill="#CE1126"/>
<path d="M15 6H9V18H15V6Z" fill="#FCD116"/>
<path d="M20 6H15V18H20V6Z" fill="#009460"/>
<path d="M20 6L20 18L4 18L4 6L20 6ZM20 5L4 5C3.4 5 3 5.4 3 6L3 18C3 18.6 3.4 19 4 19L20 19C20.6 19 21 18.6 21 18L21 6C21 5.4 20.6 5 20 5Z" fill="#B5B5B5"/>
</svg>

After

Width:  |  Height:  |  Size: 390 B

Some files were not shown because too many files have changed in this diff Show More