diff --git a/.husky/addReferenceTag.js b/.husky/addReferenceTag.js
index 857d15739..a88baf2e1 100644
--- a/.husky/addReferenceTag.js
+++ b/.husky/addReferenceTag.js
@@ -26,7 +26,7 @@ if (branchName) {
const splitedMsg = msg.split(':');
if (splitedMsg.length > 1) {
- const finalMsg = splitedMsg[0] + ': ' + referenceTag + splitedMsg.slice(1).join(':');
+ const finalMsg = `${splitedMsg[0]}: ${referenceTag}${splitedMsg.slice(1).join(':')}`;
writeFileSync(msgPath, finalMsg);
}
}
diff --git a/cypress.config.js b/cypress.config.js
index 7458c0b05..55eefb97e 100644
--- a/cypress.config.js
+++ b/cypress.config.js
@@ -1,6 +1,9 @@
import { defineConfig } from 'cypress';
-let urlHost, reporter, reporterOptions, timeouts;
+let urlHost;
+let reporter;
+let reporterOptions;
+let timeouts;
if (process.env.CI) {
urlHost = 'front';
diff --git a/index.html b/index.html
index c1bd4681b..63b2f2f51 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,4 @@
-
+
<%= productName %>
@@ -12,7 +12,12 @@
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
/>
-
+
diff --git a/package.json b/package.json
index b7b04287d..f903a5ab6 100644
--- a/package.json
+++ b/package.json
@@ -89,4 +89,4 @@
"vite": "^6.0.11",
"vitest": "^0.31.1"
}
-}
\ No newline at end of file
+}
diff --git a/postcss.config.js b/postcss.config.js
index 9ec43d0cb..164f207d4 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -1,4 +1,3 @@
-/* eslint-disable */
// https://github.com/michael-ciniawsky/postcss-load-config
import autoprefixer from 'autoprefixer';
diff --git a/quasar.config.js b/quasar.config.js
index 2bc0be37f..227f5840c 100644
--- a/quasar.config.js
+++ b/quasar.config.js
@@ -13,7 +13,7 @@ import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import path from 'path';
const target = `http://${process.env.CI ? 'back' : 'localhost'}:3000`;
-export default configure(function (/* ctx */) {
+export default configure((/* ctx */) => {
return {
eslint: {
// fix: true,
diff --git a/quasar.extensions.json b/quasar.extensions.json
index 050f605cc..867769090 100644
--- a/quasar.extensions.json
+++ b/quasar.extensions.json
@@ -1,8 +1,6 @@
{
"@quasar/testing-unit-vitest": {
- "options": [
- "scripts"
- ]
+ "options": ["scripts"]
},
"@quasar/qcalendar": {}
}
diff --git a/quasar.testing.json b/quasar.testing.json
index a59d9af89..6957efe67 100644
--- a/quasar.testing.json
+++ b/quasar.testing.json
@@ -1,5 +1,5 @@
{
- "unit-vitest": {
- "runnerCommand": "vitest run"
- }
-}
\ No newline at end of file
+ "unit-vitest": {
+ "runnerCommand": "vitest run"
+ }
+}
diff --git a/src/App.vue b/src/App.vue
index 0217c45c2..bec50ae9d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -39,7 +39,7 @@ quasar.iconMapFn = (iconName) => {
-
+
\ No newline at end of file
+
diff --git a/src/components/EntityCalendarGrid.vue b/src/components/EntityCalendarGrid.vue
index 09ccaad07..19fb5a061 100644
--- a/src/components/EntityCalendarGrid.vue
+++ b/src/components/EntityCalendarGrid.vue
@@ -5,18 +5,18 @@ import { useWeekdayStore } from 'src/stores/useWeekdayStore';
import { useArrayData } from 'src/composables/useArrayData';
const props = defineProps({
- dataKey: {
- type: String,
- required: true,
- },
- calendarComponent: {
- type: Object,
- required: true,
- },
- additionalProps: {
- type: Object,
- default: () => ({}),
- }
+ dataKey: {
+ type: String,
+ required: true,
+ },
+ calendarComponent: {
+ type: Object,
+ required: true,
+ },
+ additionalProps: {
+ type: Object,
+ default: () => ({}),
+ },
});
const stateStore = useStateStore();
@@ -28,99 +28,99 @@ const lastDay = ref(Date.vnNew());
const months = ref([]);
const arrayData = useArrayData(props.dataKey);
onMounted(async () => {
- const initialDate = Date.vnNew();
- initialDate.setDate(1);
- initialDate.setHours(0, 0, 0, 0);
- date.value = initialDate;
- await nextTick();
- stateStore.rightDrawer = true;
+ const initialDate = Date.vnNew();
+ initialDate.setDate(1);
+ initialDate.setHours(0, 0, 0, 0);
+ date.value = initialDate;
+ await nextTick();
+ stateStore.rightDrawer = true;
});
onUnmounted(() => arrayData.destroy());
const emit = defineEmits([
- 'update:firstDay',
- 'update:lastDay',
- 'update:events',
- 'onDateSelected',
+ 'update:firstDay',
+ 'update:lastDay',
+ 'update:events',
+ 'onDateSelected',
]);
const date = computed({
- get: () => _date.value,
- set: (value) => {
- if (!(value instanceof Date)) return;
- _date.value = value;
- const stamp = value.getTime();
+ get: () => _date.value,
+ set: (value) => {
+ if (!(value instanceof Date)) return;
+ _date.value = value;
+ const stamp = value.getTime();
- firstDay.value = new Date(stamp);
- firstDay.value.setDate(1);
+ firstDay.value = new Date(stamp);
+ firstDay.value.setDate(1);
- lastDay.value = new Date(stamp);
- lastDay.value.setMonth(lastDay.value.getMonth() + nMonths.value);
- lastDay.value.setDate(0);
+ lastDay.value = new Date(stamp);
+ lastDay.value.setMonth(lastDay.value.getMonth() + nMonths.value);
+ lastDay.value.setDate(0);
- months.value = [];
- for (let i = 0; i < nMonths.value; i++) {
- const monthDate = new Date(stamp);
- monthDate.setMonth(value.getMonth() + i);
- months.value.push(monthDate);
- }
+ months.value = [];
+ for (let i = 0; i < nMonths.value; i++) {
+ const monthDate = new Date(stamp);
+ monthDate.setMonth(value.getMonth() + i);
+ months.value.push(monthDate);
+ }
- emit('update:firstDay', firstDay.value);
- emit('update:lastDay', lastDay.value);
- emit('refresh-events');
- },
+ emit('update:firstDay', firstDay.value);
+ emit('update:lastDay', lastDay.value);
+ emit('refresh-events');
+ },
});
const headerTitle = computed(() => {
- if (!months.value?.length) return '';
- const getMonthName = date =>
- `${weekdayStore.getLocaleMonths[date.getMonth()].locale} ${date.getFullYear()}`;
- return `${getMonthName(months.value[0])} - ${getMonthName(months.value[months.value.length - 1])}`;
+ if (!months.value?.length) return '';
+ const getMonthName = (date) =>
+ `${weekdayStore.getLocaleMonths[date.getMonth()].locale} ${date.getFullYear()}`;
+ return `${getMonthName(months.value[0])} - ${getMonthName(months.value[months.value.length - 1])}`;
});
const step = (direction) => {
- const newDate = new Date(date.value);
- newDate.setMonth(newDate.getMonth() + nMonths.value * direction);
- date.value = newDate;
+ const newDate = new Date(date.value);
+ newDate.setMonth(newDate.getMonth() + nMonths.value * direction);
+ date.value = newDate;
};
defineExpose({
firstDay,
- lastDay
+ lastDay,
});
-
-
-
- emit('onDateSelected', data)"
- />
-
-
-
\ No newline at end of file
+
+
+
+ emit('onDateSelected', data)"
+ />
+
+
+
diff --git a/src/components/FormModel.vue b/src/components/FormModel.vue
index 7216eabb7..43a0d63f0 100644
--- a/src/components/FormModel.vue
+++ b/src/components/FormModel.vue
@@ -380,8 +380,16 @@ defineExpose({
data-cy="saveAndContinueDefaultBtn"
v-if="$props.goTo"
@click="saveAndGo"
- :label="tMobile('globals.saveAndContinue') + ' ' + t('globals.' + $props.goTo.split('/').pop())"
- :title="t('globals.saveAndContinue') + ' ' + t('globals.' + $props.goTo.split('/').pop())"
+ :label="
+ tMobile('globals.saveAndContinue') +
+ ' ' +
+ t('globals.' + $props.goTo.split('/').pop())
+ "
+ :title="
+ t('globals.saveAndContinue') +
+ ' ' +
+ t('globals.' + $props.goTo.split('/').pop())
+ "
:disable="!hasChanges"
color="primary"
icon="save"
diff --git a/src/components/PinnedModules.vue b/src/components/PinnedModules.vue
index 5f291b580..095662baa 100644
--- a/src/components/PinnedModules.vue
+++ b/src/components/PinnedModules.vue
@@ -26,7 +26,7 @@ async function redirect() {
if (route?.params?.id)
return (window.location.href = await getUrl(
- `${section}/${route.params.id}/summary`
+ `${section}/${route.params.id}/summary`,
));
return (window.location.href = await getUrl(section + '/index'));
}
diff --git a/src/components/RefundInvoiceForm.vue b/src/components/RefundInvoiceForm.vue
index 6dcb8b390..cea028d2f 100644
--- a/src/components/RefundInvoiceForm.vue
+++ b/src/components/RefundInvoiceForm.vue
@@ -55,7 +55,7 @@ const refund = async () => {
(data) => (
(rectificativeTypeOptions = data),
(invoiceParams.cplusRectificationTypeFk = data.filter(
- (type) => type.description == 'I – Por diferencias'
+ (type) => type.description == 'I – Por diferencias',
)[0].id)
)
"
@@ -68,7 +68,7 @@ const refund = async () => {
(data) => (
(siiTypeInvoiceOutsOptions = data),
(invoiceParams.siiTypeInvoiceOutFk = data.filter(
- (type) => type.code == 'R4'
+ (type) => type.code == 'R4',
)[0].id)
)
"
diff --git a/src/components/VnSelectProvince.vue b/src/components/VnSelectProvince.vue
index d73ee964e..dfd386fc5 100644
--- a/src/components/VnSelectProvince.vue
+++ b/src/components/VnSelectProvince.vue
@@ -52,7 +52,7 @@ watch(
} else filter.value.where = {};
await provincesFetchDataRef.value.fetch({});
emit('onProvinceFetched', provincesOptions.value);
- }
+ },
);
diff --git a/src/components/VnTable/filters/tableFooter.js b/src/components/VnTable/filters/tableFooter.js
index 9c7d080f6..610bf2ac0 100644
--- a/src/components/VnTable/filters/tableFooter.js
+++ b/src/components/VnTable/filters/tableFooter.js
@@ -6,7 +6,7 @@ export default function (initialFooter, data) {
});
return acc;
},
- { ...initialFooter }
+ { ...initialFooter },
);
return footer;
}
diff --git a/src/components/__tests__/CrudModel.spec.js b/src/components/__tests__/CrudModel.spec.js
index 475f56aec..2ac820fac 100644
--- a/src/components/__tests__/CrudModel.spec.js
+++ b/src/components/__tests__/CrudModel.spec.js
@@ -241,7 +241,7 @@ describe('CrudModel', () => {
await vm.saveChanges(data);
- expect(postMock).toHaveBeenCalledWith(vm.url + '/crud', data);
+ expect(postMock).toHaveBeenCalledWith(`${vm.url}/crud`, data);
expect(vm.isLoading).toBe(false);
expect(vm.hasChanges).toBe(false);
expect(vm.originalData).toEqual(JSON.parse(JSON.stringify(vm.formData)));
diff --git a/src/components/__tests__/Leftmenu.spec.js b/src/components/__tests__/Leftmenu.spec.js
index 5bddc104c..0aff101e0 100644
--- a/src/components/__tests__/Leftmenu.spec.js
+++ b/src/components/__tests__/Leftmenu.spec.js
@@ -142,14 +142,14 @@ describe('getRoutes', () => {
const fn = (props) => getRoutes(props, getMethodA, getMethodB);
it('should call getMethodB when source is card', () => {
- let props = { source: 'methodB' };
+ const props = { source: 'methodB' };
fn(props);
expect(getMethodB).toHaveBeenCalled();
expect(getMethodA).not.toHaveBeenCalled();
});
it('should call getMethodA when source is main', () => {
- let props = { source: 'methodA' };
+ const props = { source: 'methodA' };
fn(props);
expect(getMethodA).toHaveBeenCalled();
@@ -157,7 +157,7 @@ describe('getRoutes', () => {
});
it('should call getMethodA when source is not exists or undefined', () => {
- let props = { source: 'methodC' };
+ const props = { source: 'methodC' };
expect(() => fn(props)).toThrowError('Method not defined');
expect(getMethodA).not.toHaveBeenCalled();
diff --git a/src/components/common/VnBreadcrumbs.vue b/src/components/common/VnBreadcrumbs.vue
index 334ab4d21..f883731ad 100644
--- a/src/components/common/VnBreadcrumbs.vue
+++ b/src/components/common/VnBreadcrumbs.vue
@@ -15,7 +15,7 @@ let root = ref(null);
watchEffect(() => {
matched.value = currentRoute.value.matched.filter(
- (matched) => !!matched?.meta?.title || !!matched?.meta?.icon
+ (matched) => !!matched?.meta?.title || !!matched?.meta?.icon,
);
breadcrumbs.value.length = 0;
if (!matched.value[0]) return;
diff --git a/src/components/common/VnLocation.vue b/src/components/common/VnLocation.vue
index 5028e876d..fbff1d222 100644
--- a/src/components/common/VnLocation.vue
+++ b/src/components/common/VnLocation.vue
@@ -21,7 +21,7 @@ watch(
(newValue) => {
if (!modelValue.value) return;
modelValue.value = formatLocation(newValue) ?? null;
- }
+ },
);
const mixinRules = [requiredFieldRule];
@@ -45,7 +45,7 @@ const formatLocation = (obj, properties = locationProperties) => {
});
const filteredParts = parts.filter(
- (part) => part !== null && part !== undefined && part !== ''
+ (part) => part !== null && part !== undefined && part !== '',
);
return filteredParts.join(', ');
diff --git a/src/components/common/VnScroll.vue b/src/components/common/VnScroll.vue
index 481371604..4d4aa7bbb 100644
--- a/src/components/common/VnScroll.vue
+++ b/src/components/common/VnScroll.vue
@@ -2,7 +2,7 @@
import { ref, onMounted, onUnmounted, watch, nextTick } from 'vue';
const props = defineProps({
- scrollTarget: { type: [String, Object], default: 'window' }
+ scrollTarget: { type: [String, Object], default: 'window' },
});
const scrollPosition = ref(0);
@@ -11,9 +11,9 @@ let scrollContainer = null;
const onScroll = () => {
if (!scrollContainer) return;
- scrollPosition.value =
- typeof props.scrollTarget === 'object'
- ? scrollContainer.scrollTop
+ scrollPosition.value =
+ typeof props.scrollTarget === 'object'
+ ? scrollContainer.scrollTop
: window.scrollY;
};
@@ -28,18 +28,18 @@ const scrollToTop = () => {
};
const updateScrollContainer = (container) => {
- if (container) {
- if (scrollContainer) {
- scrollContainer.removeEventListener('scroll', onScroll);
+ if (container) {
+ if (scrollContainer) {
+ scrollContainer.removeEventListener('scroll', onScroll);
+ }
+ scrollContainer = container;
+ scrollContainer.addEventListener('scroll', onScroll);
+ onScroll();
}
- scrollContainer = container;
- scrollContainer.addEventListener('scroll', onScroll);
- onScroll();
- }
};
defineExpose({
- updateScrollContainer
+ updateScrollContainer,
});
const initScrollContainer = async () => {
@@ -51,11 +51,10 @@ const initScrollContainer = async () => {
scrollContainer = window;
}
- if (!scrollContainer) return
- scrollContainer.addEventListener('scroll', onScroll);
+ if (!scrollContainer) return;
+ scrollContainer.addEventListener('scroll', onScroll);
};
-
onMounted(() => {
initScrollContainer();
});
@@ -82,19 +81,18 @@ onUnmounted(() => {
-
diff --git a/src/components/common/__tests__/VnChangePassword.spec.js b/src/components/common/__tests__/VnChangePassword.spec.js
index b610ce44d..8a727cb75 100644
--- a/src/components/common/__tests__/VnChangePassword.spec.js
+++ b/src/components/common/__tests__/VnChangePassword.spec.js
@@ -35,7 +35,7 @@ describe('VnSmsDialog', () => {
expect.objectContaining({
message: 'You must enter a new password',
type: 'negative',
- })
+ }),
);
});
@@ -47,7 +47,7 @@ describe('VnSmsDialog', () => {
expect.objectContaining({
message: `Passwords don't match`,
type: 'negative',
- })
+ }),
);
});
diff --git a/src/components/common/__tests__/VnInputTime.spec.js b/src/components/common/__tests__/VnInputTime.spec.js
index 2692ac71b..e1b4f8a7b 100644
--- a/src/components/common/__tests__/VnInputTime.spec.js
+++ b/src/components/common/__tests__/VnInputTime.spec.js
@@ -60,4 +60,4 @@ describe('VnInputTime', () => {
expect(vm.model).toBe(previousModel);
});
});
-});
\ No newline at end of file
+});
diff --git a/src/components/common/__tests__/VnLocation.spec.js b/src/components/common/__tests__/VnLocation.spec.js
index 65fdae960..ff68d5860 100644
--- a/src/components/common/__tests__/VnLocation.spec.js
+++ b/src/components/common/__tests__/VnLocation.spec.js
@@ -6,8 +6,8 @@ function buildComponent(data) {
return createWrapper(VnLocation, {
global: {
props: {
- location: data
- }
+ location: data,
+ },
},
}).vm;
}
@@ -24,7 +24,7 @@ describe('formatLocation', () => {
postcode: '46680',
city: 'Algemesi',
province: { name: 'Valencia' },
- country: { name: 'Spain' }
+ country: { name: 'Spain' },
};
});
@@ -47,7 +47,12 @@ describe('formatLocation', () => {
});
it('should return the country', () => {
- const location = { ...locationBase, postcode: undefined, city: undefined, province: undefined };
+ const location = {
+ ...locationBase,
+ postcode: undefined,
+ city: undefined,
+ province: undefined,
+ };
const vm = buildComponent(location);
expect(vm.formatLocation(location)).toEqual('Spain');
});
@@ -61,7 +66,7 @@ describe('showLabel', () => {
code: '46680',
town: 'Algemesi',
province: 'Valencia',
- country: 'Spain'
+ country: 'Spain',
};
});
@@ -84,8 +89,13 @@ describe('showLabel', () => {
});
it('should show the label with country', () => {
- const location = { ...locationBase, code: undefined, town: undefined, province: undefined };
+ const location = {
+ ...locationBase,
+ code: undefined,
+ town: undefined,
+ province: undefined,
+ };
const vm = buildComponent(location);
expect(vm.showLabel(location)).toEqual('Spain');
});
-});
\ No newline at end of file
+});
diff --git a/src/components/common/__tests__/VnSmsDialog.spec.js b/src/components/common/__tests__/VnSmsDialog.spec.js
index 0b3473982..3619962cc 100644
--- a/src/components/common/__tests__/VnSmsDialog.spec.js
+++ b/src/components/common/__tests__/VnSmsDialog.spec.js
@@ -2,13 +2,14 @@ import { createWrapper } from 'app/test/vitest/helper';
import VnSmsDialog from 'components/common/VnSmsDialog.vue';
import { vi, afterEach, beforeAll, describe, expect, it } from 'vitest';
-
describe('VnSmsDialog', () => {
let vm;
const orderId = 1;
const shipped = new Date();
const phone = '012345678';
- const promise = (response) => {return response;};
+ const promise = (response) => {
+ return response;
+ };
const template = 'minAmount';
const locale = 'en';
@@ -17,13 +18,13 @@ describe('VnSmsDialog', () => {
propsData: {
data: {
orderId,
- shipped
+ shipped,
},
template,
locale,
phone,
- promise
- }
+ promise,
+ },
}).vm;
});
@@ -35,7 +36,9 @@ describe('VnSmsDialog', () => {
it('should update the message value with the correct template and parameters', () => {
vm.updateMessage();
- expect(vm.message).toEqual(`A minimum amount of 50€ (VAT excluded) is required for your order ${orderId} of ${shipped} to receive it without additional shipping costs.`);
+ expect(vm.message).toEqual(
+ `A minimum amount of 50€ (VAT excluded) is required for your order ${orderId} of ${shipped} to receive it without additional shipping costs.`,
+ );
});
});
@@ -47,7 +50,7 @@ describe('VnSmsDialog', () => {
orderId,
shipped,
destination: phone,
- message: vm.message
+ message: vm.message,
};
await vm.send();
diff --git a/src/components/ui/SkeletonForm.vue b/src/components/ui/SkeletonForm.vue
index 8d3a4b5bf..961c469df 100644
--- a/src/components/ui/SkeletonForm.vue
+++ b/src/components/ui/SkeletonForm.vue
@@ -1,14 +1,14 @@
-
+
-
+
-
+
-
\ No newline at end of file
+
diff --git a/src/components/ui/VnAvatar.vue b/src/components/ui/VnAvatar.vue
index 0fe943ee2..7381e46ae 100644
--- a/src/components/ui/VnAvatar.vue
+++ b/src/components/ui/VnAvatar.vue
@@ -17,7 +17,7 @@ const token = getTokenMultimedia();
const { t } = useI18n();
const src = computed(
- () => `/api/Images/user/160x160/${$props.workerId}/download?access_token=${token}`
+ () => `/api/Images/user/160x160/${$props.workerId}/download?access_token=${token}`,
);
const title = computed(() => $props.title?.toUpperCase() || t('globals.system'));
const showLetter = ref(false);
diff --git a/src/components/ui/VnLogo.vue b/src/components/ui/VnLogo.vue
index 3b955289d..3f9d0c915 100644
--- a/src/components/ui/VnLogo.vue
+++ b/src/components/ui/VnLogo.vue
@@ -13,7 +13,7 @@ const src = computed({
get() {
return new URL(
`../../assets/${$props.logo}${Dark.isActive ? '_dark' : ''}.svg`,
- import.meta.url
+ import.meta.url,
).href;
},
});
diff --git a/src/components/ui/VnNotes.vue b/src/components/ui/VnNotes.vue
index 1f17fb9fd..f7c176286 100644
--- a/src/components/ui/VnNotes.vue
+++ b/src/components/ui/VnNotes.vue
@@ -1,7 +1,7 @@
-
-
-
+
+
+
diff --git a/src/components/ui/VnSms.vue b/src/components/ui/VnSms.vue
index 2fe21d8ed..adeb99bdd 100644
--- a/src/components/ui/VnSms.vue
+++ b/src/components/ui/VnSms.vue
@@ -87,7 +87,7 @@ function formatNumber(number) {
{{
date.formatDate(
row.sms.created,
- 'YYYY-MM-DD HH:mm:ss'
+ 'YYYY-MM-DD HH:mm:ss',
)
}}
diff --git a/src/components/ui/VnSubToolbar.vue b/src/components/ui/VnSubToolbar.vue
index 8d4126d1d..66674821b 100644
--- a/src/components/ui/VnSubToolbar.vue
+++ b/src/components/ui/VnSubToolbar.vue
@@ -37,8 +37,7 @@ onBeforeUnmount(() => stateStore.toggleSubToolbar() && hasSubToolbar);
class="justify-end sticky"
>
-
-
+
diff --git a/src/components/ui/VnUserLink.vue b/src/components/ui/VnUserLink.vue
index 00c50ee34..ac3e22385 100644
--- a/src/components/ui/VnUserLink.vue
+++ b/src/components/ui/VnUserLink.vue
@@ -11,7 +11,7 @@ defineProps({
- {{ defaultName ? name ?? $t('globals.system') : name }}
+ {{ defaultName ? (name ?? $t('globals.system')) : name }}
diff --git a/src/components/ui/__tests__/FetchedTags.spec.js b/src/components/ui/__tests__/FetchedTags.spec.js
index 3c658a80e..ca9ad8498 100644
--- a/src/components/ui/__tests__/FetchedTags.spec.js
+++ b/src/components/ui/__tests__/FetchedTags.spec.js
@@ -54,7 +54,7 @@ describe('tags computed property', () => {
const expectedStyle = {
'grid-template-columns': 'repeat(2, 1fr)',
- 'max-width': '8rem',
+ 'max-width': '8rem',
};
expect(vm.columnStyle).toEqual(expectedStyle);
diff --git a/src/components/ui/__tests__/VnImg.spec.js b/src/components/ui/__tests__/VnImg.spec.js
index 39dd10775..05310af5f 100644
--- a/src/components/ui/__tests__/VnImg.spec.js
+++ b/src/components/ui/__tests__/VnImg.spec.js
@@ -9,30 +9,29 @@ const isEmployeeMock = vi.fn();
function generateWrapper(storage = 'images') {
wrapper = createWrapper(VnImg, {
props: {
- id: 123,
+ id: 123,
zoomResolution: '400x400',
- storage,
- }
+ storage,
+ },
});
wrapper = wrapper.wrapper;
- vm = wrapper.vm;
- vm.timeStamp = 'timestamp';
-};
+ vm = wrapper.vm;
+ vm.timeStamp = 'timestamp';
+}
vi.mock('src/composables/useSession', () => ({
useSession: () => ({
- getTokenMultimedia: () => 'token',
+ getTokenMultimedia: () => 'token',
}),
}));
-
+
vi.mock('src/composables/useRole', () => ({
useRole: () => ({
isEmployee: isEmployeeMock,
}),
}));
-
-describe('VnImg', () => {
+describe('VnImg', () => {
beforeEach(() => {
isEmployeeMock.mockReset();
});
@@ -47,13 +46,13 @@ describe('VnImg', () => {
generateWrapper('dms');
await vm.$nextTick();
const url = vm.getUrl();
- expect(url).toBe('/api/dms/123/downloadFile?access_token=token');
+ expect(url).toBe('/api/dms/123/downloadFile?access_token=token');
});
it('should return /no-user.png when role is not employee and storage is not dms', async () => {
isEmployeeMock.mockReturnValue(false);
generateWrapper();
- await vm.$nextTick();
+ await vm.$nextTick();
const url = vm.getUrl();
expect(url).toBe('/no-user.png');
});
@@ -63,7 +62,9 @@ describe('VnImg', () => {
generateWrapper();
await vm.$nextTick();
const url = vm.getUrl();
- expect(url).toBe('/api/images/catalog/200x200/123/download?access_token=token×tamp');
+ expect(url).toBe(
+ '/api/images/catalog/200x200/123/download?access_token=token×tamp',
+ );
});
it('should return /api/{storage}/{collection}/{curResolution}/{id}/download?access_token={token}&{timeStamp} when zoom is true and role is employee and storage is not dms', async () => {
@@ -71,7 +72,9 @@ describe('VnImg', () => {
generateWrapper();
await vm.$nextTick();
const url = vm.getUrl(true);
- expect(url).toBe('/api/images/catalog/400x400/123/download?access_token=token×tamp');
+ expect(url).toBe(
+ '/api/images/catalog/400x400/123/download?access_token=token×tamp',
+ );
});
});
@@ -82,8 +85,8 @@ describe('VnImg', () => {
wrapper.vm.reload();
const newTimestamp = wrapper.vm.timeStamp;
-
+
expect(initialTimestamp).not.toEqual(newTimestamp);
});
});
-});
\ No newline at end of file
+});
diff --git a/src/composables/__tests__/useAcl.spec.js b/src/composables/__tests__/useAcl.spec.js
index 86cd58fa0..cb959b5f8 100644
--- a/src/composables/__tests__/useAcl.spec.js
+++ b/src/composables/__tests__/useAcl.spec.js
@@ -53,26 +53,26 @@ describe('useAcl', () => {
expect(
acl.hasAny([
{ model: 'Worker', props: 'updateAttributes', accessType: 'WRITE' },
- ])
+ ]),
).toBeFalsy();
});
it('should return false if no roles matched', async () => {
expect(
- acl.hasAny([{ model: 'Worker', props: 'holidays', accessType: 'READ' }])
+ acl.hasAny([{ model: 'Worker', props: 'holidays', accessType: 'READ' }]),
).toBeTruthy();
});
describe('*', () => {
it('should return true if an acl matched', async () => {
expect(
- acl.hasAny([{ model: 'Address', props: '*', accessType: 'WRITE' }])
+ acl.hasAny([{ model: 'Address', props: '*', accessType: 'WRITE' }]),
).toBeTruthy();
});
it('should return false if no acls matched', async () => {
expect(
- acl.hasAny([{ model: 'Worker', props: '*', accessType: 'READ' }])
+ acl.hasAny([{ model: 'Worker', props: '*', accessType: 'READ' }]),
).toBeFalsy();
});
});
@@ -80,13 +80,15 @@ describe('useAcl', () => {
describe('$authenticated', () => {
it('should return false if no acls matched', async () => {
expect(
- acl.hasAny([{ model: 'Url', props: 'getByUser', accessType: '*' }])
+ acl.hasAny([{ model: 'Url', props: 'getByUser', accessType: '*' }]),
).toBeFalsy();
});
it('should return true if an acl matched', async () => {
expect(
- acl.hasAny([{ model: 'Url', props: 'getByUser', accessType: 'READ' }])
+ acl.hasAny([
+ { model: 'Url', props: 'getByUser', accessType: 'READ' },
+ ]),
).toBeTruthy();
});
});
@@ -96,7 +98,7 @@ describe('useAcl', () => {
expect(
acl.hasAny([
{ model: 'TpvTransaction', props: 'start', accessType: 'READ' },
- ])
+ ]),
).toBeFalsy();
});
@@ -104,7 +106,7 @@ describe('useAcl', () => {
expect(
acl.hasAny([
{ model: 'TpvTransaction', props: 'start', accessType: 'WRITE' },
- ])
+ ]),
).toBeTruthy();
});
});
diff --git a/src/composables/downloadFile.js b/src/composables/downloadFile.js
index 0c4e8edb6..6dda6b2be 100644
--- a/src/composables/downloadFile.js
+++ b/src/composables/downloadFile.js
@@ -18,7 +18,7 @@ export async function downloadFile(id, model = 'dms', urlPath = '/downloadFile',
export async function downloadDocuware(url, params) {
const appUrl = await getAppUrl();
- const response = await axios.get(`${appUrl}/api/` + url, {
+ const response = await axios.get(`${appUrl}/api/${url}`, {
responseType: 'blob',
params,
});
diff --git a/src/composables/getColAlign.js b/src/composables/getColAlign.js
index c1841e134..16ebd6f6b 100644
--- a/src/composables/getColAlign.js
+++ b/src/composables/getColAlign.js
@@ -20,5 +20,5 @@ export function getColAlign(col) {
if (/^is[A-Z]/.test(col.name) || /^has[A-Z]/.test(col.name)) align = 'center';
- return 'text-' + (align ?? 'center');
+ return `text-${align ?? 'center'}`;
}
diff --git a/src/composables/getDateQBadgeColor.js b/src/composables/getDateQBadgeColor.js
index a91213a0a..c47ce732e 100644
--- a/src/composables/getDateQBadgeColor.js
+++ b/src/composables/getDateQBadgeColor.js
@@ -1,10 +1,10 @@
export function getDateQBadgeColor(date) {
- let today = Date.vnNew();
+ const today = Date.vnNew();
today.setHours(0, 0, 0, 0);
- let timeTicket = new Date(date);
+ const timeTicket = new Date(date);
timeTicket.setHours(0, 0, 0, 0);
- let comparation = today - timeTicket;
+ const comparation = today - timeTicket;
if (comparation == 0) return 'warning';
if (comparation < 0) return 'success';
diff --git a/src/composables/getValueFromPath.js b/src/composables/getValueFromPath.js
index 2c94379cc..cb9d785d8 100644
--- a/src/composables/getValueFromPath.js
+++ b/src/composables/getValueFromPath.js
@@ -8,4 +8,4 @@ export function getValueFromPath(root, path) {
else current = current[key];
}
return current;
-}
\ No newline at end of file
+}
diff --git a/src/composables/getWeekdays.js b/src/composables/getWeekdays.js
index d619103da..cc2370400 100644
--- a/src/composables/getWeekdays.js
+++ b/src/composables/getWeekdays.js
@@ -2,9 +2,8 @@ import { ref } from 'vue';
import moment from 'moment';
export default function useWeekdaysOrder() {
+ const firstDay = moment().weekday(1).day();
+ const weekdays = [...Array(7).keys()].map((i) => (i + firstDay) % 7);
- const firstDay = moment().weekday(1).day();
- const weekdays = [...Array(7).keys()].map(i => (i + firstDay) % 7);
-
- return ref(weekdays);
+ return ref(weekdays);
}
diff --git a/src/composables/updateMinPriceBeforeSave.js b/src/composables/updateMinPriceBeforeSave.js
index d2895eeff..e4610e153 100644
--- a/src/composables/updateMinPriceBeforeSave.js
+++ b/src/composables/updateMinPriceBeforeSave.js
@@ -7,7 +7,7 @@ export async function beforeSave(data, getChanges, modelOrigin) {
const patchPromises = [];
for (const change of changes) {
- let patchData = {};
+ const patchData = {};
if ('hasMinPrice' in change.data) {
patchData.hasMinPrice = change.data?.hasMinPrice;
diff --git a/src/composables/useCardSize.js b/src/composables/useCardSize.js
index ef514db19..2f52eaaed 100644
--- a/src/composables/useCardSize.js
+++ b/src/composables/useCardSize.js
@@ -1,7 +1,6 @@
import { useQuasar } from 'quasar';
-export default function() {
+export default function () {
const quasar = useQuasar();
- return quasar.screen.gt.xs ? 'q-pa-md': 'q-pa-xs';
-
+ return quasar.screen.gt.xs ? 'q-pa-md' : 'q-pa-xs';
}
diff --git a/src/composables/useColor.js b/src/composables/useColor.js
index b325e985f..64993aeda 100644
--- a/src/composables/useColor.js
+++ b/src/composables/useColor.js
@@ -6,7 +6,7 @@ export function djb2a(string) {
}
export function useColor(value) {
- return '#' + colors[djb2a(value || '') % colors.length];
+ return `#${colors[djb2a(value || '') % colors.length]}`;
}
const colors = [
diff --git a/src/composables/usePrintService.js b/src/composables/usePrintService.js
index c6c212ad8..6bad077bf 100644
--- a/src/composables/usePrintService.js
+++ b/src/composables/usePrintService.js
@@ -15,18 +15,16 @@ export function usePrintService() {
message: t('globals.notificationSent'),
type: 'positive',
icon: 'check',
- })
+ }),
);
}
function openReport(path, params, isNewTab = '_self') {
if (typeof params === 'string') params = JSON.parse(params);
- params = Object.assign(
- {
- access_token: getTokenMultimedia(),
- },
- params
- );
+ params = {
+ access_token: getTokenMultimedia(),
+ ...params,
+ };
const query = new URLSearchParams(params).toString();
window.open(`api/${path}?${query}`, isNewTab);
diff --git a/src/composables/useSession.js b/src/composables/useSession.js
index 36b31ab0a..bf92e8b52 100644
--- a/src/composables/useSession.js
+++ b/src/composables/useSession.js
@@ -17,7 +17,7 @@ export function useSession() {
let intervalId = null;
function setSession(data) {
- let keepLogin = data.keepLogin;
+ const keepLogin = data.keepLogin;
const storage = keepLogin ? localStorage : sessionStorage;
storage.setItem(TOKEN, data.token);
storage.setItem(TOKEN_MULTIMEDIA, data.tokenMultimedia);
diff --git a/src/composables/useVnConfirm.js b/src/composables/useVnConfirm.js
index 4438ad11d..4a6d2cfc5 100644
--- a/src/composables/useVnConfirm.js
+++ b/src/composables/useVnConfirm.js
@@ -8,7 +8,7 @@ export function useVnConfirm() {
message,
promise,
successFn,
- customHTML = {}
+ customHTML = {},
) => {
const { component, props } = customHTML;
Dialog.create({
@@ -19,7 +19,7 @@ export function useVnConfirm() {
message: message,
promise: promise,
},
- { customHTML: () => h(component, props) }
+ { customHTML: () => h(component, props) },
),
}).onOk(async () => {
if (successFn) successFn();
diff --git a/src/css/app.scss b/src/css/app.scss
index 351eeb599..62135981a 100644
--- a/src/css/app.scss
+++ b/src/css/app.scss
@@ -359,4 +359,4 @@ input::-webkit-inner-spin-button {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
-}
\ No newline at end of file
+}
diff --git a/src/css/fonts/selection.json b/src/css/fonts/selection.json
index 4daecfe75..818b2559a 100644
--- a/src/css/fonts/selection.json
+++ b/src/css/fonts/selection.json
@@ -1 +1,4093 @@
-{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M1024 59.733l-59.733-59.733-964.267 964.267 59.733 59.733 964.267-964.267zM0 904.107v-448.853l119.467-341.333c5.547-17.067 15.787-30.72 30.72-41.387 14.507-10.24 31.147-15.787 49.067-15.787h625.92c6.827 0 13.653 0.853 20.053 2.133l-111.36 111.36h-514.987l-59.733 170.667h403.2l-113.92 113.92h-334.507v284.587h50.773l-164.693 164.693zM316.587 536.747c8.96 8.96 15.787 19.627 19.627 30.72l-110.080 110.080c-11.52-4.267-21.76-10.667-30.72-19.627-16.64-16.64-24.747-36.693-24.747-60.587s8.107-43.947 24.747-60.587c16.64-16.64 36.693-24.747 60.587-24.747s43.947 8.107 60.587 24.747zM768 682.667c-23.893 0-43.947-8.107-60.587-24.747s-24.747-36.693-24.747-60.587 8.107-43.947 24.747-60.587c16.64-16.64 36.693-24.747 60.587-24.747s43.947 8.107 60.587 24.747c16.64 16.64 24.747 36.693 24.747 60.587s-8.107 43.947-24.747 60.587c-16.64 16.64-36.693 24.747-60.587 24.747zM936.96 206.933l87.040 248.32v455.253c0 16.213-5.547 29.44-16.213 40.533s-24.32 16.213-40.533 16.213h-56.747c-16.213 0-29.44-5.547-40.533-16.213s-16.213-24.32-16.213-40.533v-56.747h-563.2l113.92-113.92h505.6v-284.587h-221.44l113.92-113.92h61.867l-16.213-46.080 88.32-88.32z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["inactive-car"],"colorPermutations":{"125525525519595951":[{}]}},"attrs":[{}],"properties":{"order":427,"id":132,"name":"inactive-car","prevSize":32,"code":59768},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M512 197.12c2.987 0 8.96 0.853 12.373 7.253l270.080 467.627c3.413 6.4 1.707 11.52 0 14.507-1.707 2.56-5.12 7.253-12.373 7.253h-540.16c-7.253 0-11.093-4.693-12.373-7.253-1.707-2.56-3.413-8.107 0-14.507l270.080-467.627c3.413-6.4 9.387-7.253 12.373-7.253zM512 154.88c-19.2 0-38.4 9.387-49.493 28.587l-270.080 467.627c-21.76 37.973 5.547 85.333 49.493 85.333h539.733c43.947 0 71.253-47.36 49.493-85.333l-270.080-467.627c-11.093-18.773-30.293-28.587-49.493-28.587v0z","M480.853 612.693c0-16.64 13.653-31.573 31.147-31.573s31.147 14.933 31.147 31.573-13.653 31.147-31.147 31.147-31.147-14.507-31.147-31.147z","M543.147 331.52c0 26.027-2.987 52.48-5.12 78.507-2.56 35.413-5.547 70.827-8.107 106.24s0 25.6-4.693 36.693-3.413 5.973-6.4 7.68c-2.133 1.28-4.693 1.28-7.253 1.28s-5.12-0.427-7.253-1.707c-3.413-2.133-5.547-5.547-6.827-9.813-3.84-13.227-3.413-29.013-4.267-42.667s-2.987-37.973-4.267-56.747c-2.56-36.267-5.547-72.107-7.68-108.373s-0.427-7.68-0.427-11.52c0-23.040 11.947-32.427 31.147-32.427s31.147 9.813 31.147 32.853z","M972.8 902.4v-902.4h-44.373v153.173h-346.453c3.413 3.84 6.4 8.533 8.96 12.8l15.36 26.88h322.133v314.453h-140.8l23.040 40.107h117.333v305.493h-832.427v-305.493h117.333l23.040-40.107h-140.373v-314.453h322.133l15.36-26.88c2.56-4.693 5.973-8.96 8.96-12.8h-346.453v-153.173h-44.373v902.4c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-17.067-49.92-40.533-58.88v-9.387h832.853v9.387c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-16.64-49.92-40.533-58.88z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hasItemLost"],"colorPermutations":{"125525525519595951":[{},{},{},{}]}},"attrs":[{},{},{},{}],"properties":{"order":425,"id":131,"name":"hasItemLost","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M921.6 469.333c-21.333-170.667-157.867-302.933-324.267-324.267-226.133-25.6-418.133 149.333-418.133 371.2h-68.267l106.667 166.4 110.933-166.4h-68.267c0-162.133 132.267-290.133 290.133-285.867 153.6 0 281.6 132.267 281.6 281.6 0 162.133-128 290.133-285.867 290.133s-153.6-34.133-200.533-85.333l-55.467 55.467c68.267 68.267 157.867 106.667 264.533 106.667 221.867 0 392.533-192 366.933-413.867z","M507.733 349.867v204.8l174.933 106.667 25.6-51.2-140.8-85.333v-174.933h-59.733z","M256 226.133v-226.133h-51.2v290.133c17.067-21.333 34.133-42.667 51.2-64z","M460.8 115.2v-115.2h-153.6v183.467c46.933-34.133 98.133-55.467 153.6-68.267z","M921.6 0v345.6c38.4 85.333 51.2 183.467 21.333 281.6-4.267 21.333-12.8 38.4-21.333 59.733v337.067h102.4v-1024h-102.4z","M819.2 209.067v-209.067h-51.2v170.667c17.067 12.8 34.133 25.6 51.2 38.4z","M665.6 123.733v-123.733h-102.4v106.667c34.133 0 68.267 8.533 102.4 17.067z","M76.8 533.333l-38.4-55.467h64v-477.867h-102.4v1024h102.4v-448l-25.6-42.667z","M768 857.6v166.4h51.2v-204.8c-17.067 12.8-34.133 25.6-51.2 38.4z","M584.533 917.333c-8.533 0-12.8 0-21.333 0v106.667h102.4v-119.467c-25.6 8.533-55.467 12.8-81.067 12.8z","M307.2 836.267v187.733h153.6v-115.2c-55.467-12.8-106.667-38.4-153.6-72.533z","M204.8 733.867v290.133h51.2v-230.4c-21.333-17.067-38.4-38.4-51.2-59.733z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hasItemDelay"],"colorPermutations":{"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{},{}]}},"attrs":[{},{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":426,"id":130,"name":"hasItemDelay","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M0 567.467l345.6 345.173 233.387-233.387-88.32-88.32-90.027 88.32v-266.667h266.667l-88.32 90.453 88.32 87.893 233.387-233.387-345.6-345.6-555.093 555.52z","M836.267 637.013c-104.533 0-187.733 83.2-188.587 187.307 0.853 104.107 83.2 187.307 187.733 187.733 104.96 0 188.16-83.2 188.16-187.307s-83.2-187.307-187.733-187.733zM929.707 842.667c-2.56 0.853-5.12 0.853-7.253 0.853h-67.413v68.693c0 9.387-7.253 17.92-16.213 18.773-0.853 0-1.707 0-2.56 0-8.533 0-15.787-5.547-18.347-13.653-0.853-2.56-0.853-4.693-0.853-6.827v-67.413c-18.347 0-37.12 0-57.173 0h-11.52c-9.387 0-17.493-6.827-18.773-15.36-1.28-9.813 4.267-18.773 13.227-21.333 2.56-0.853 4.693-0.853 6.827-0.853h67.84v-68.693c0-9.813 6.827-17.493 16.213-18.773s18.347 4.267 20.907 13.227c0.853 2.56 0.853 4.693 0.853 6.827v67.413c20.48 0 40.96 0 63.147 0h5.973c8.96 0 17.067 6.4 18.347 15.36 1.28 9.813-4.267 18.773-13.227 21.76z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"125525525519595951":[{},{}]},"tags":["add_entries"],"grid":0},"attrs":[{},{}],"properties":{"order":424,"id":0,"name":"add_entries","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M640 921.6l-17.067 17.067h-213.333v-153.6h-153.6v-102.4h200.533l102.4-102.4h-302.933v-102.4h405.333l102.4-102.4h-507.733v-102.4h520.533v89.6l72.533-72.533c17.067-17.067 42.667-29.867 68.267-29.867 4.267 0 8.533 0 8.533 0v-157.867c0-55.467-46.933-102.4-102.4-102.4h-627.2c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-285.867l-285.867 285.867z","M917.333 324.267c8.533 0 17.067 4.267 21.333 8.533l76.8 76.8c12.8 12.8 12.8 34.133 0 46.933l-64 64-119.467-119.467 64-64c4.267-8.533 12.8-12.8 21.333-12.8z","M797.867 430.933l119.467 123.733-320 320h-123.733v-119.467l324.267-324.267z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["100"],"grid":0},"attrs":[{},{},{}],"properties":{"order":279,"id":1,"name":"100","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M1135.232 1024v-47.84h-84.352v-927.424l8.576-0.416c3.104-0.192 6.304-0.352 9.472-0.352h23.68c14.208-0.064 28.352-0.064 42.56-0.064v-47.904c-314.72 0.192-629.472 0.224-944.256 0.224h-190.912v47.712h83.168s0 928.064 0 928.064h-83.168v47.712h140.896c331.456 0 662.88 0 994.336 0.256zM821.536 48.736h180.16v926.944h-180.16v-926.944zM591.904 48.256h180.096v926.944h-180.096v-926.88zM362.272 48.256h180.16v926.944h-180.16v-926.944zM132.608 48.736h180.16v926.944h-180.16v-926.944z","M748.128 240.32c4.928 1.088 9.664 2.592 14.272 4.192v-142.144c-7.552-1.728-15.168-3.36-22.976-4.736-16.672-2.816-33.568-4.448-50.368-6.592h-52.64c-2.944 0.48-5.888 1.184-8.8 1.44-8.768 0.704-17.504 1.664-26.144 3.008v144.736c47.776-14.56 97.184-10.72 146.656 0.064z","M878.56 332.384c27.808-34.784 55.936-69.984 84.192-105.28-38.080-44.416-81.664-78.528-131.616-101.44v162.848c16.384 13.6 31.36 28.896 47.424 43.84z","M467.008 676.192c-0.288-0.608 0-1.568 0-3.072h65.888v-101.792h-97.44c-6.528-32.448-3.488-64.704-4.256-97.856h101.696v-101.856h-74.72c0.064-1.44 0-2.048 0.192-2.464 18.112-37.664 42.496-69.44 74.528-93.664v-161.408c-3.296 1.376-6.656 2.816-9.888 4.32-60.48 28.608-111.328 66.016-151.104 113.44v564.608c37.952 46.656 87.008 82.784 147.2 108.352 4.544 1.92 9.184 3.712 13.792 5.472v-153.504c-26.912-20.512-48.448-48.096-65.824-80.704z","M297.92 368.192c-1.92 6.048-4.608 7.808-10.848 7.744-35.072-0.288-70.144-0.192-105.216-0.192h-9.28v93.664h100.8c0.896 33.152 1.792 65.248 2.752 98.144h-103.616v101.76h9.28c36.704 0 73.44 0.352 110.144-0.256 5.28-0.128 8.704 0.832 11.2 3.232v-319.392c-1.792 5.024-3.648 10.080-5.28 15.296z","M736.672 673.12v-101.792h-135.2v101.792h135.2z","M736.8 371.68h-135.328v101.856h135.328v-101.856z","M954.272 796.768c-28.416-34.048-56.544-67.808-84-100.736-13.312 10.976-26.208 21.888-39.168 32.544v169.248c13.504-6.4 26.688-13.792 39.584-22.304 32.256-21.344 59.776-47.712 83.584-78.784z","M615.2 792.512c-4.672-0.832-9.248-1.792-13.728-2.944v138.688c32.032 5.024 64.64 5.824 97.792 3.168 21.536-1.728 42.624-4.928 63.136-9.76v-145.696c-45.44 21.536-95.040 25.792-147.2 16.544z"],"width":1120,"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{}]},"tags":["Client_unpaid"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":280,"id":2,"name":"Client_unpaid","prevSize":32,"code":59788},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M554.667 25.6c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 260.267 0 465.067-209.067 465.067-465.067s-217.6-469.333-473.6-469.333zM503.467 285.867v260.267l221.867 132.267 34.133-64-179.2-106.667v-221.867h-76.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["History"],"grid":0},"attrs":[{}],"properties":{"order":281,"id":3,"name":"History","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M512 0c-140.8 0-256 115.2-256 259.2s115.2 259.2 256 259.2 256-115.2 256-259.2c0-144-115.2-259.2-256-259.2zM512 582.4c-169.6 0-512 86.4-512 259.2v195.2h1024v-195.2c0-172.8-342.4-259.2-512-259.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["Person"],"grid":0},"attrs":[{}],"properties":{"order":282,"id":4,"name":"Person","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M955.307 27.733h-885.76c-37.973 0-69.547 30.72-69.547 69.547v130.56c0 37.973 30.72 69.547 69.547 69.547h53.333v2.133l81.493 567.040c10.667 75.093 67.413 129.707 133.973 129.707h346.88c67.413 0 123.733-54.613 133.973-129.707l81.92-569.173h53.333c37.973 0 69.547-30.72 69.547-69.547v-131.413c0-37.973-30.72-68.693-68.693-68.693zM843.093 299.947l-80.64 558.080c-6.827 46.507-39.253 80.213-77.227 80.213h-346.027c-37.973 0-70.827-33.707-77.227-80.213l-81.067-561.493h663.040l-0.853 3.413zM966.4 227.84c0 6.4-5.12 11.947-11.947 11.947h-884.907c-6.4 0-11.947-5.12-11.947-11.947v-131.413c0-6.4 5.12-11.947 11.947-11.947h885.76c6.4 0 11.947 5.12 11.947 11.947v131.413h-0.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["complementos"],"grid":0},"attrs":[{}],"properties":{"order":283,"id":5,"name":"accessory","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 214.4c73.6 0 137.6 60.8 137.6 137.6s-60.8 137.6-137.6 137.6-137.6-60.8-137.6-137.6c0-76.8 64-137.6 137.6-137.6zM512 896c-134.4 0-252.8-70.4-323.2-176 48-89.6 227.2-131.2 323.2-131.2s272 44.8 323.2 131.2c-70.4 105.6-188.8 176-323.2 176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[],"12043441125524245125525525513111218319595951":[]},"tags":["account"],"grid":0},"attrs":[],"properties":{"order":284,"id":6,"name":"account","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M354.133 401.067v-183.467c0-68.267 55.467-123.733 123.733-123.733s119.467 59.733 119.467 123.733v183.467c59.733-38.4 98.133-106.667 98.133-183.467 0-119.467-98.133-217.6-221.867-217.6s-217.6 98.133-217.6 217.6c0 76.8 38.4 145.067 98.133 183.467zM832 627.2l-221.867-110.933c-8.533-4.267-17.067-4.267-25.6-4.267h-38.4v-294.4c0-38.4-34.133-72.533-72.533-72.533s-72.533 34.133-72.533 72.533v524.8l-166.4-34.133c-4.267 0-8.533 0-12.8 0-17.067 0-29.867 4.267-38.4 17.067l-38.4 38.4 238.933 238.933c12.8 12.8 29.867 21.333 51.2 21.333h332.8c38.4 0 64-25.6 68.267-64l38.4-256c0-4.267 0-8.533 0-8.533 4.267-29.867-17.067-55.467-42.667-68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["actions"],"grid":0},"attrs":[{}],"properties":{"order":285,"id":7,"name":"actions","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2 307.2-137.387 307.2-307.2-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z","M354.133 716.8c0-96.853 37.547-187.733 105.813-256-20.907-2.133-40.107-2.987-56.747-2.987-134.4 0-403.2 70.4-403.2 204.8v153.6h367.787c-8.96-32-13.653-65.28-13.653-99.413z","M605.013 204.8c0 113.108-90.355 204.8-201.813 204.8s-201.813-91.692-201.813-204.8c0-113.108 90.355-204.8 201.813-204.8s201.813 91.692 201.813 204.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["addperson"],"grid":0},"attrs":[{},{},{}],"properties":{"order":286,"id":8,"name":"addperson","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M89.173 881.493l51.2 79.36c455.68-25.6 821.333-398.933 856.32-659.627l-57.6-72.107c-74.667 355.413-532.053 630.613-849.92 652.373zM212.48 389.973l42.667 85.76c-50.347 46.507-75.52 77.653-110.507 136.107-47.36 78.507-66.56 129.707-81.067 221.013l-63.573-102.4c20.907-65.707 36.693-101.973 71.253-161.707 44.8-75.947 76.8-116.907 141.227-178.773 0 0-64 61.867 0 0zM478.72 727.893l-393.813-664.747h420.693l256.853 440.32c-77.653 88.32-177.067 165.12-283.733 224.853zM843.947 643.413l180.053 308.053h-412.587l-50.773-86.187c64.427-34.987 125.867-77.227 183.467-125.867 35.84-30.293 69.547-62.72 100.267-96.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"12043441125524245125525525513111218319595951":[{}],"125525525519595951":[{}]},"tags":["agencia_tributaria"],"grid":0},"attrs":[{}],"properties":{"order":422,"id":9,"name":"agencia_tributaria","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["agency"],"grid":0},"attrs":[{},{},{}],"properties":{"order":287,"id":10,"name":"agency","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M789.333 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM789.333 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2 0 25.6-25.6 51.2-51.2 51.2z","M251.733 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 420.267l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933v0zM725.333 275.2c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM509.013 403.627c0 113.92-92.16 206.080-206.080 206.080s-206.080-92.16-206.080-206.080 92.16-206.507 206.080-206.507 206.080 92.587 206.080 206.507zM342.613 465.92h-87.893l-15.36 40.107h-78.933l100.693-230.827h76.373l100.693 230.827h-80.213l-15.36-40.107zM321.28 409.6l-22.613-58.027-22.187 58.027h44.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["agency-term"],"grid":0},"attrs":[{},{},{}],"properties":{"order":288,"id":11,"name":"agency-term","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M878.933 102.4h-217.6c-25.6-59.733-81.067-102.4-149.333-102.4s-123.733 42.667-145.067 102.4h-221.867c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h729.6c55.467 0 102.4-46.933 102.4-102.4v-716.8c4.267-55.467-42.667-102.4-98.133-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2zM614.4 819.2h-362.667v-102.4h366.933v102.4zM772.267 614.4h-520.533v-102.4h520.533v102.4zM772.267 409.6h-520.533v-102.4h520.533v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["albaran"],"grid":0},"attrs":[{}],"properties":{"order":289,"id":12,"name":"albaran","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M230.4 354.133c12.8-46.933 29.867-93.867 46.933-140.8 8.533-34.133 21.333-64 29.867-98.133 4.267-12.8 8.533-12.8 21.333-12.8 38.4 12.8 72.533 21.333 110.933 25.6 12.8 4.267 29.867 0 46.933 0 34.133-4.267 68.267-8.533 102.4-12.8s72.533-12.8 106.667-17.067c4.267 0 8.533 0 12.8 0s8.533 0 12.8 8.533c12.8 46.933 29.867 93.867 42.667 136.533 12.8 38.4 25.6 76.8 34.133 115.2-192-4.267-379.733-4.267-567.467-4.267z","M456.533 712.533c34.133-8.533 64-12.8 98.133-4.267 8.533 0 12.8 0 12.8-8.533 17.067-34.133 42.667-59.733 76.8-72.533 38.4-17.067 76.8-21.333 115.2-8.533 34.133 8.533 59.733 29.867 81.067 55.467 25.6 34.133 38.4 72.533 34.133 119.467-8.533 51.2-34.133 89.6-76.8 115.2-51.2 34.133-132.267 29.867-179.2-12.8-42.667-34.133-59.733-76.8-64-128 0-8.533-4.267-12.8-12.8-17.067-21.333-4.267-42.667-4.267-64 0-8.533 4.267-8.533 4.267-8.533 12.8 0 21.333-4.267 46.933-12.8 68.267-12.8 29.867-34.133 55.467-64 72.533-55.467 38.4-136.533 34.133-183.467-8.533-42.667-34.133-64-76.8-59.733-128 0-59.733 29.867-106.667 85.333-136.533s115.2-25.6 170.667 12.8c12.8 8.533 21.333 17.067 34.133 29.867 0 8.533 8.533 21.333 17.067 38.4zM307.2 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2s115.2-46.933 115.2-110.933c4.267-64-46.933-115.2-110.933-115.2zM712.533 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2 59.733 0 115.2-46.933 115.2-110.933 0-59.733-46.933-115.2-110.933-115.2z","M1024 550.4c-341.333 0-682.667 0-1024 0 0 0 0 0 0 0 17.067-8.533 29.867-17.067 46.933-21.333 42.667-12.8 85.333-29.867 132.267-42.667 34.133-8.533 68.267-17.067 102.4-21.333 89.6-17.067 183.467-21.333 277.333-17.067 55.467 4.267 110.933 8.533 166.4 17.067 38.4 4.267 72.533 12.8 110.933 21.333s72.533 21.333 110.933 34.133c21.333 4.267 51.2 17.067 76.8 29.867 0 0 0 0 0 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["anonymous"],"grid":0},"attrs":[{},{},{}],"properties":{"order":290,"id":13,"name":"anonymous","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["apps"],"grid":0},"attrs":[{}],"properties":{"order":291,"id":14,"name":"apps","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M613.973 397.227c-28.16 0-56.32 0-85.333 0-35.84 0-71.253 0-107.093 0h-13.653c-10.24 0-12.373 1.28-12.373 12.373v207.36c0 4.267 0 5.973 2.133 8.107s4.267 2.133 8.96 2.133h207.36c10.24 0 11.52-2.133 11.52-11.52 0-68.693 0-137.813 0-206.507 0.853-10.667-1.28-11.947-11.52-11.947zM570.027 517.547v52.053h-4.267c-8.96 0-17.92 0-26.88 0h-42.24c-13.227 0-26.88 0-39.68 0h-2.56l-0.853-2.56c0-37.973 0-74.24 0-111.36v-2.56h3.413c43.947 0 78.080 0 109.653 0h2.133l1.28 2.133c0 0 0 0.853 0 1.28 0 21.333 0 40.96 0 61.013z","M834.987 911.787l177.067-306.773c2.133-3.413 4.267-6.827 5.973-11.093l5.547-9.813-124.587-72.107 125.013-72.107-2.56-5.547c-0.853-2.133-2.133-3.413-2.56-5.547l-180.48-314.453c-2.56-5.547-5.547-7.68-7.68-8.107-2.133-0.853-5.547 0.853-10.24 3.413l-31.573 17.92c-26.027 14.933-51.627 29.44-77.653 44.8l-4.693 3.413v-132.693c0-4.693 0-7.68-2.133-9.813s-4.267-2.133-9.813-2.133h-363.52c-0.853 0-2.133 0-3.413 0-3.413 0-5.547 0.853-7.68 2.133-1.28 1.28-2.133 4.267-2.133 6.827 0 1.28 0 2.56 0 4.267v27.307c0 32.853 0 65.707 0 98.987v4.693l-121.173-69.973-3.413-0.853-2.133 2.56c-0.853 0.853-1.28 1.28-2.133 2.133l-183.467 316.587c-6.827 11.52-5.973 13.653 5.547 20.48l112.64 65.707-70.827 39.68c-15.787 8.96-30.72 17.92-46.507 26.88-2.56 1.28-5.547 3.413-5.973 6.827-0.853 2.133 0 4.693 2.133 7.68 0.853 1.28 1.28 2.133 2.133 3.413l177.92 308.907c2.133 4.267 4.693 8.107 8.107 12.373l2.133 2.133 124.16-71.253v17.067c0 11.093 0 21.333 0 31.573l-0.853 83.2c0 10.24 1.28 11.52 11.093 11.52h17.067c11.093 0 21.333 0.853 32.427 0.853h309.76c16.64 0 17.92-1.28 17.92-18.347v-125.44l4.267 2.133c19.2 11.093 38.4 21.76 57.173 32.853l13.227 7.68c14.507 8.107 29.013 16.64 43.093 24.747 1.28 0.853 4.693 2.56 7.68 1.28 1.707-0 3.413-1.28 5.12-5.973zM808.96 843.093l-2.133-1.28-155.733-90.027-1.28 3.413c-2.133 4.267-2.133 7.68-1.28 11.093v2.133c0 43.947 0 87.893 0 132.693v28.16c0 1.28 0 2.56 0 4.693v2.56h-274.773v-4.693c0-12.373 0-24.747 0-36.267l0.853-143.36-4.693 2.133c-13.227 5.547-23.893 12.373-35.84 19.2-5.973 3.413-12.373 6.827-17.92 10.24-11.093 5.973-21.76 12.373-34.133 20.053l-68.693 39.68-136.533-237.653 100.267-57.6 61.867-35.84-44.8-25.6-118.187-68.693 2.133-4.267 131.84-227.413c0.853-1.28 1.28-2.133 2.133-3.413l1.28-2.133 3.413 1.28c8.96 5.547 18.347 11.093 27.307 16.64l119.467 69.547c2.133 1.28 4.693 2.56 8.107 0.853l2.133-1.28c1.28-2.133 1.28-4.693 1.28-8.107 0-5.973 0-11.52 0-17.067s0-10.24 0-15.787l0.853-138.667h4.267c14.507 0 29.013 0 42.667 0.853h2.133c15.787 0.853 29.013 0.853 40.533 0.853 39.68 0 78.080 0 124.16 0h55.040c0.853 0 1.28 0 2.133 0h2.133v186.027l162.133-92.587 136.533 237.653-161.28 92.587 160.853 92.16-1.28 2.133-136.96 235.093z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["artificial"],"grid":0},"attrs":[{},{}],"properties":{"order":292,"id":15,"name":"artificial","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M960 93.867c-42.667-42.667-98.133-64-157.867-64s-115.2 21.333-157.867 64l-593.067 593.067c-34.133 34.133-55.467 85.333-51.2 136.533 0 42.667 17.067 81.067 46.933 110.933 34.133 38.4 81.067 59.733 132.267 59.733 46.933 0 93.867-17.067 128-51.2l541.867-546.133c25.6-25.6 42.667-64 42.667-98.133s-12.8-68.267-38.4-93.867c-25.6-25.6-59.733-38.4-98.133-38.4-34.133 0-72.533 17.067-98.133 42.667l-354.133 354.133c-4.267-0-4.267 4.267-4.267 12.8s4.267 12.8 8.533 17.067 25.6 8.533 34.133 0l354.133-354.133c12.8-17.067 38.4-25.6 59.733-25.6 25.6 0 51.2 12.8 68.267 34.133 8.533 12.8 17.067 25.6 17.067 42.667 4.267 25.6-4.267 55.467-25.6 72.533l-541.867 541.867c-25.6 25.6-55.467 38.4-93.867 38.4-34.133 0-68.267-12.8-93.867-38.4s-38.4-59.733-38.4-93.867c0-34.133 12.8-68.267 38.4-93.867l588.8-584.533c34.133-34.133 76.8-51.2 123.733-51.2s89.6 17.067 123.733 51.2c34.133 34.133 51.2 76.8 51.2 123.733s-17.067 89.6-51.2 123.733l-401.067 401.067c-4.267 4.267-8.533 12.8-8.533 17.067 0 8.533 4.267 12.8 8.533 17.067 8.533 8.533 25.6 8.533 34.133 0l401.067-401.067c89.6-89.6 89.6-230.4 4.267-320z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["attach"],"grid":0},"attrs":[{}],"properties":{"order":293,"id":16,"name":"attach","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M0 102.4h102.4v819.2h-102.4v-819.2zM307.2 102.4h153.6v819.2h-153.6v-819.2zM768 102.4h51.2v819.2h-51.2v-819.2zM204.8 102.4h51.2v819.2h-51.2v-819.2zM921.6 102.4h102.4v819.2h-102.4v-819.2zM563.2 102.4h102.4v819.2h-102.4v-819.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["barcode"],"grid":0},"attrs":[{}],"properties":{"order":295,"id":17,"name":"barcode","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M235.093 920.32l-18.773-321.28c0-18.773 12.8-34.56 31.573-37.973 18.773 0 34.56 12.8 37.973 31.573l15.787 317.867c0 18.773-12.8 34.56-31.573 37.973h-2.987c-16.213 2.987-32-12.8-32-28.16zM389.12 948.48c18.773 0 34.56-15.787 34.56-34.56v-324.267c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v324.267c-0 21.76 15.787 34.56 34.56 34.56zM512 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c0 18.773 15.787 34.56 34.56 34.56zM760.747 945.493v0c18.773 0 34.56-15.787 34.56-31.573 6.4-148.053 9.387-311.467 9.387-314.88 0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56c0 6.4-6.4 226.56-9.387 311.467-0 15.787 15.787 34.987 34.56 34.987zM634.88 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c-0 18.773 15.36 34.56 34.56 34.56zM1015.893 419.413v78.507c0 18.773-15.787 34.56-34.56 34.56h-28.16l-63.147 462.933c-2.987 15.787-15.787 28.16-34.56 28.16h-686.507c-15.787 0-31.573-12.8-34.56-28.16l-63.147-465.493h-28.16c-18.773 0-34.56-15.787-34.56-34.56v-78.933c0-18.773 15.787-34.56 34.56-34.56h169.813l138.667-286.293c-2.987-9.387-6.4-22.187-6.4-34.56 6.4-37.973 40.96-66.133 78.507-59.733s66.133 40.96 59.733 78.507-40.96 66.133-78.507 59.733v0l-110.080 245.333h431.36l-110.080-245.76c-37.973 6.4-72.533-22.187-78.507-59.733s22.187-72.533 59.733-78.507c37.973-6.4 72.533 22.187 78.507 59.733 2.987 12.8 0 25.173-6.4 34.56l138.667 286.293h169.813c22.187 3.413 37.973 19.2 37.973 37.973zM880.213 529.92h-736.427l53.333 427.947h629.76l53.333-427.947z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["basket"],"grid":0},"attrs":[{}],"properties":{"order":296,"id":18,"name":"basket","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M197.973 454.827c-15.787 2.987-25.6 15.787-25.6 32l15.787 261.973c0 12.8 12.8 25.6 25.6 22.187h2.987c15.787-2.987 25.6-15.787 25.6-32l-12.8-258.987c-2.56-12.373-18.773-25.173-31.573-25.173z","M284.587 480.427v261.973c0 19.2 12.8 28.587 28.587 28.587s28.587-12.8 28.587-28.587v-261.973c0-15.787-12.8-28.587-28.587-28.587s-28.587 12.8-28.587 28.587z","M359.68 777.813h-203.093l-44.8-348.16h384.427c61.44-47.36 137.813-75.52 220.587-75.52 39.68 0 78.080 6.4 113.92 18.347v-35.84c0-15.787-12.8-28.587-32-32h-140.8l-115.2-226.987c6.4-6.4 6.4-19.2 6.4-28.587-6.4-32-34.987-54.187-64-47.787-32 6.4-54.187 32-47.787 64s34.987 54.187 64 47.787l89.6 197.973h-354.56l89.6-197.973c32 6.4 60.587-19.2 64-47.787 2.987-28.587-19.2-57.6-47.787-64-32-6.4-60.587 19.2-64 47.787 0 9.387 2.987 19.2 6.4 28.587l-115.2 233.387h-140.8c-15.787 0-28.587 12.8-28.587 28.587v64c0 15.787 12.8 28.587 28.587 28.587h22.613l51.2 377.173c2.987 12.8 15.787 22.187 28.587 22.187h242.347c-5.973-17.067-10.667-35.413-13.653-53.76z","M444.16 478.293v-0.853c0-12.8-12.8-25.6-28.587-25.6s-28.587 12.8-28.587 28.587v87.040c14.507-32.853 34.133-62.72 57.173-89.173z","M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2c169.813 0 307.2-137.387 307.2-307.2s-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h135.68v0.427z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{}],"125525525519595951":[{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{}]},"tags":["basketadd"],"grid":0},"attrs":[{},{},{},{},{}],"properties":{"order":297,"id":19,"name":"basketadd","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M238.933 955.733c0 0 17.067 68.267 93.867 68.267h354.133c76.8 0 93.867-68.267 93.867-68.267l68.267-682.667h-678.4l68.267 682.667zM648.533 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133l-34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l34.133-512zM477.867 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133v512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133c0 0 0-512 0-512zM341.333 341.333c17.067 0 34.133 17.067 34.133 34.133l34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l-34.133-512c0-17.067 17.067-34.133 34.133-34.133zM832 136.533h-149.333v-68.267c0-51.2-17.067-68.267-68.267-68.267h-204.8c-46.933 0-68.267 21.333-68.267 68.267v68.267h-149.333c-29.867 0-55.467 21.333-55.467 51.2s25.6 51.2 55.467 51.2h640c29.867 0 55.467-21.333 55.467-51.2s-25.6-51.2-55.467-51.2zM614.4 136.533h-204.8v-68.267h204.8l0 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["bin"],"grid":0},"attrs":[{}],"properties":{"order":298,"id":20,"name":"bin","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M819.2 529.067c-12.8-8.533-25.6-12.8-38.4-17.067 12.8-4.267 25.6-12.8 38.4-17.067 89.6-51.2 136.533-140.8 136.533-238.933-81.067-46.933-187.733-51.2-273.067 0-12.8 8.533-25.6 17.067-34.133 25.6 4.267-12.8 4.267-29.867 4.267-42.667 0-102.4-55.467-192-136.533-238.933-81.067 46.933-136.533 136.533-136.533 238.933 0 12.8 0 29.867 4.267 42.667-17.067-8.533-29.867-17.067-42.667-25.6-85.333-51.2-192-46.933-273.067 0 0 93.867 46.933 187.733 136.533 238.933 12.8 8.533 25.6 12.8 38.4 17.067-12.8 4.267-25.6 12.8-38.4 17.067-89.6 51.2-136.533 140.8-136.533 238.933 81.067 46.933 187.733 51.2 273.067 0 12.8-8.533 25.6-17.067 34.133-25.6-4.267 12.8-4.267 29.867-4.267 42.667 0 102.4 55.467 192 136.533 238.933 81.067-46.933 136.533-136.533 136.533-238.933 0-12.8 0-29.867-4.267-42.667 12.8 8.533 21.333 17.067 34.133 25.6 89.6 51.2 192 46.933 273.067 0 8.533-93.867-42.667-187.733-128-238.933zM512 695.467c-102.4 0-183.467-81.067-183.467-183.467s81.067-183.467 183.467-183.467 183.467 81.067 183.467 183.467-81.067 183.467-183.467 183.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["botanical"],"grid":0},"attrs":[{}],"properties":{"order":299,"id":21,"name":"botanical","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M827.733 746.667l-17.067 140.8v4.267c0 81.067-115.2 132.267-298.667 132.267-217.6 0-320-68.267-320-132.267l-59.733-622.933c81.067 55.467 217.6 93.867 379.733 93.867 157.867 0 294.4-34.133 375.467-89.6l-51.2 401.067-8.533 72.533zM891.733 145.067c0 81.067-170.667 145.067-379.733 145.067s-379.733-68.267-379.733-145.067 170.667-145.067 379.733-145.067 379.733 64 379.733 145.067z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[],"125525525519595951":[],"12043441125524245125525525513111218319595951":[]},"tags":["bucket"],"grid":0},"attrs":[],"properties":{"order":300,"id":22,"name":"bucket","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M774.4 892.8c0 19.2-16 38.4-38.4 38.4s-38.4-16-38.4-38.4 16-38.4 38.4-38.4 38.4 19.2 38.4 38.4zM262.4 857.6c-19.2 0-38.4 16-38.4 38.4s16 38.4 38.4 38.4c19.2 0 38.4-16 38.4-38.4s-16-38.4-38.4-38.4zM809.6 784c0 0 0 0 0 0 35.2 22.4 57.6 64 57.6 108.8 0 70.4-57.6 131.2-131.2 131.2-70.4 0-131.2-57.6-131.2-131.2 0 0 0 3.2 0 3.2-64 3.2-137.6 9.6-214.4 12.8 0 0 0 0 0 0-6.4 64-64 115.2-128 115.2-70.4 0-131.2-57.6-131.2-131.2 0-54.4 32-99.2 80-121.6 0 0 0 0 0 0-3.2-89.6 0-198.4 16-275.2 0 0 73.6-73.6 243.2-86.4 6.4 16 19.2 28.8 38.4 28.8s32-12.8 38.4-28.8c12.8 0 25.6 3.2 38.4 3.2v249.6c0 0 48 60.8 220.8 67.2zM345.6 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 44.8 3.2 80-35.2 80-80zM416 505.6c0-9.6-6.4-16-16-16s-16 6.4-16 16c3.2 48-6.4 80-28.8 99.2-28.8 25.6-73.6 12.8-73.6 12.8-9.6-3.2-16 3.2-19.2 12.8s3.2 16 12.8 19.2c0 0 12.8 3.2 32 3.2s48-3.2 70.4-22.4c25.6-25.6 38.4-67.2 38.4-124.8zM819.2 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 41.6 3.2 80-35.2 80-80zM886.4 153.6c-118.4-102.4-243.2-156.8-377.6-153.6-214.4 3.2-368 150.4-374.4 156.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 140.8-137.6 332.8-137.6 115.2 0 230.4 44.8 336 140.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8zM806.4 240c-92.8-83.2-192-121.6-297.6-121.6-169.6 3.2-291.2 118.4-294.4 121.6-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 108.8-102.4 252.8-105.6 0 0 3.2 0 3.2 0 86.4 0 172.8 35.2 252.8 105.6 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-9.6 12.8-28.8 0-38.4zM732.8 323.2c-70.4-60.8-144-92.8-220.8-89.6-128 0-217.6 89.6-220.8 92.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 76.8-73.6 179.2-73.6 64 0 124.8 25.6 182.4 76.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 9.6-12.8 9.6-32-3.2-44.8zM512 374.4c-16 0-28.8 12.8-28.8 28.8s12.8 28.8 28.8 28.8c16 0 28.8-12.8 28.8-28.8-3.2-16-16-28.8-28.8-28.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["buscaman"],"grid":0},"attrs":[{}],"properties":{"order":301,"id":23,"name":"buscaman","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M520.533 81.067c-34.133 0-55.467 25.6-55.467 55.467s25.6 55.467 55.467 55.467 55.467-25.6 55.467-55.467-21.333-55.467-55.467-55.467zM520.533 153.6c-12.8 0-17.067-8.533-17.067-17.067s8.533-17.067 17.067-17.067 17.067 8.533 17.067 17.067-4.267 17.067-17.067 17.067z","M588.8 712.533l-4.267-12.8v-4.267l-17.067-59.733h-273.067v89.6h298.667z","M294.4 273.067h452.267v89.6h-452.267v-89.6z","M571.733 529.067c17.067-12.8 38.4-17.067 59.733-8.533l64 25.6h55.467v-89.6h-456.533v89.6h264.533c4.267-8.533 8.533-12.8 12.8-17.067z","M643.985 703.872l95.27-85.478 202.299 225.473-95.27 85.478-202.299-225.473z","M855.196 944.408l95.283-85.466 22.791 25.409-95.283 85.466-22.791-25.409z","M1015.467 930.133l-34.133-38.4-93.867 85.333 34.133 38.4c4.267 4.267 12.8 8.533 17.067 8.533 8.533 0 12.8 0 17.067-8.533l59.733-51.2c8.533-8.533 12.8-25.6 0-34.133z","M614.4 558.933c-4.267 0-8.533 0-12.8 4.267-4.267 0-4.267 8.533-4.267 12.8l34.133 119.467 93.867-85.333-110.933-51.2z","M729.6 866.133h-524.8c-29.867 0-51.2-25.6-51.2-51.2v-635.733c0-25.6 21.333-51.2 51.2-51.2h213.333l8.533-25.6c12.8-38.4 51.2-64 93.867-64s76.8 25.6 93.867 64l8.533 25.6h213.333c29.867 0 51.2 25.6 51.2 51.2v541.867l38.4 42.667v-584.533c0-46.933-42.667-89.6-89.6-89.6h-187.733c-17.067-51.2-68.267-89.6-128-89.6s-110.933 38.4-128 89.6h-187.733c-46.933 0-89.6 42.667-89.6 89.6v635.733c0 46.933 42.667 89.6 89.6 89.6h554.667l-29.867-38.4z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{}]},"tags":["buyrequest"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":302,"id":24,"name":"buyrequest","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M830.72 10.667h-727.040c-56.747 0-103.68 46.933-103.68 104.107v727.040c0 57.173 46.933 103.68 103.68 103.68h727.040c57.173 0 103.68-46.933 103.68-103.68v-727.040c0.427-57.173-46.507-104.107-103.68-104.107zM830.72 841.813h-727.040v-727.040h727.040v727.040z","M168.96 256h259.84v78.080h-259.84v-78.080z","M259.84 789.76h77.653v-103.68h104.107v-78.080h-104.107v-103.68h-77.653v103.68h-104.107v78.080h104.107z","M576 423.68l72.96-73.387 73.387 73.387 55.040-55.040-73.387-73.813 73.387-73.387-55.040-55.040-73.387 73.387-72.96-73.387-55.040 55.040 72.96 73.387-72.96 73.813z","M1024 728.32c0 157.409-127.605 285.013-285.013 285.013s-285.013-127.605-285.013-285.013c0-157.409 127.605-285.013 285.013-285.013s285.013 127.605 285.013 285.013z","M925.867 632.32c-1.28-4.267-3.84-7.68-7.68-10.24l-168.107-96.853c-5.12-2.987-11.52-2.987-16.64 0l-168.107 96.853c-5.12 2.987-8.533 8.533-8.533 14.507v194.133c0 5.973 2.987 11.52 8.533 14.507l168.107 96.853c2.56 1.28 5.547 2.133 8.533 2.133 0.853 0 1.707 0 2.56 0 1.28 0 2.56-0.427 3.84-0.853 0.427 0 0.853-0.427 1.28-0.427s0.427 0 0.853-0.427v0c0 0 0 0 0 0l168.107-96.853c5.12-2.987 8.533-8.533 8.533-14.507v-194.133c-0.853-1.707-0.853-2.987-1.28-4.693zM606.72 637.013l134.827-77.653 134.827 77.653-134.4 77.653-126.293-72.96-8.96-4.693zM590.080 665.6l134.827 77.653v155.733l-134.827-77.653v-155.733zM758.187 898.987v-155.733l134.827-77.653v155.733l-134.827 77.653z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"isMulticolor":true,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":3}],"125525525519595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":2}],"12043441125524245125525525513111218319595951":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":5}]},"tags":["calc_volum"],"grid":0},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(255, 255, 255)"}],"properties":{"order":303,"id":25,"name":"calc_volum","prevSize":32,"codes":[59672,59673,59676,59677,59678,59679],"code":59672},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M883.2 93.867h-46.933v-93.867h-93.867v93.867h-465.067v-93.867h-89.6v93.867h-46.933c-51.2 0-93.867 42.667-93.867 93.867v746.667c0 51.2 42.667 93.867 93.867 93.867h746.667c51.2 0 93.867-42.667 93.867-93.867v-746.667c-4.267-51.2-46.933-93.867-98.133-93.867zM883.2 930.133h-742.4v-605.867h746.667v605.867z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["calendar"],"grid":0},"attrs":[{}],"properties":{"order":304,"id":26,"name":"calendar","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M60.8 355.2h64v310.4h-64v-310.4zM979.2 0h-873.6c-25.6 0-44.8 19.2-44.8 44.8v176h64v-156.8h835.2v896h-835.2v-156.8h-64v176c0 25.6 19.2 44.8 44.8 44.8h873.6c25.6 0 44.8-19.2 44.8-44.8v-934.4c0-25.6-19.2-44.8-44.8-44.8zM230.4 272c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM230.4 720c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM876.8 217.6h-275.2v275.2h275.2v-275.2zM876.8 531.2h-275.2v275.2h275.2v-275.2zM528 249.6h-211.2v211.2h211.2v-211.2zM560 217.6v275.2h-275.2v-275.2h275.2zM560 531.2h-275.2v275.2h275.2v-275.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["catalog"],"grid":0},"attrs":[{}],"properties":{"order":305,"id":27,"name":"catalog","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M694.4 966.4c12.8-28.8 38.4-51.2 73.6-51.2v-57.6c-64 0-118.4 48-131.2 108.8h-54.4c9.6-96 89.6-166.4 185.6-166.4v-57.6c-76.8 0-144 35.2-188.8 92.8v-262.4c57.6-6.4 115.2-35.2 156.8-80 51.2-51.2 76.8-118.4 76.8-192v-28.8h-28.8c-70.4 0-134.4 28.8-185.6 80-6.4 9.6-16 16-22.4 25.6v-204.8c0-48-16-89.6-48-124.8-32-32-73.6-51.2-118.4-51.2-83.2 3.2-153.6 67.2-166.4 150.4-86.4 12.8-153.6 89.6-153.6 185.6v198.4l112-83.2 67.2 67.2 73.6-67.2 108.8 86.4v-201.6c0-92.8-64-169.6-147.2-182.4 12.8-51.2 57.6-89.6 108.8-89.6 28.8 0 57.6 12.8 80 35.2s32 51.2 32 83.2v691.2c-28.8-28.8-70.4-44.8-115.2-44.8v57.6c54.4 0 99.2 38.4 112 89.6h-342.4v51.2h755.2v-57.6h-240zM640 393.6c32-32 70.4-54.4 115.2-60.8-6.4 44.8-28.8 86.4-57.6 118.4-32 32-70.4 54.4-115.2 60.8 3.2-44.8 25.6-86.4 57.6-118.4zM393.6 332.8v83.2l-51.2-41.6-70.4 60.8-60.8-60.8-64 44.8v-86.4c0-70.4 54.4-128 124.8-128 64 0 121.6 57.6 121.6 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["claims"],"grid":0},"attrs":[{}],"properties":{"order":306,"id":28,"name":"claims","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M608 204.8c0 113.108-90.259 204.8-201.6 204.8s-201.6-91.692-201.6-204.8c0-113.108 90.259-204.8 201.6-204.8s201.6 91.692 201.6 204.8z","M342.4 633.6c0-67.2 54.4-121.6 121.6-121.6h198.4c-83.2-35.2-185.6-51.2-252.8-51.2-137.6 0-409.6 67.2-409.6 204.8v144h342.4v-176z","M912 969.6c32 0 57.6-25.6 57.6-57.6v-281.6c0-32-25.6-57.6-57.6-57.6h-451.2c-32 0-57.6 25.6-57.6 57.6v281.6c0 32 25.6 57.6 57.6 57.6h-112v57.6h675.2v-57.6h-112zM460.8 633.6h451.2v281.6h-451.2v-281.6z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["client"],"grid":0},"attrs":[{},{},{}],"properties":{"order":307,"id":29,"name":"client","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M554.667 691.2v-64h-213.333v-115.2h213.333v-136.533l-204.8-204.8h-281.6c-38.4 0-68.267 29.867-68.267 68.267v546.133c0 38.4 29.867 68.267 68.267 68.267h418.133c38.4 0 68.267-29.867 68.267-68.267v0-93.867zM311.467 221.867l192 187.733h-192v-187.733z","M814.933 170.667h-277.333c-29.867 0-55.467 17.067-64 42.667l123.733 119.467 17.067 17.067v162.133h68.267v-85.333l247.467 145.067-247.467 140.8v-85.333h-72.533v153.6c0 25.6-8.533 46.933-21.333 68.267h362.667c38.4 0 68.267-29.867 68.267-68.267v-405.333l-204.8-204.8zM780.8 409.6v-187.733l192 187.733h-192z","M371.2 597.333h341.333v68.267l162.133-93.867-162.133-93.867v64h-341.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["clone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":309,"id":30,"name":"clone","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M913.067 448v132.267h-204.8v204.8h-136.533v-204.8h-204.8v-132.267h204.8v-204.8h136.533v204.8z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["columnadd"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":310,"id":31,"name":"columnadd","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M0 0h256v256h-256v-256z","M0 768h256v256h-256v-256z","M0 384h256v256h-256v-256z","M785.067 273.067l93.867 98.133-140.8 140.8 140.8 145.067-93.867 98.133-145.067-145.067-145.067 145.067-93.867-98.133 140.8-145.067-140.8-140.8 93.867-98.133 145.067 145.067z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["columndelete"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":311,"id":32,"name":"columndelete","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M490.667 302.933c-4.267 8.533-4.267 25.6-4.267 42.667v140.8h-140.8c-17.067 0-25.6 0-34.133-4.267v0l17.067-25.6c12.8-12.8 21.333-29.867 17.067-51.2 0-25.6-12.8-51.2-29.867-68.267-17.067-12.8-42.667-21.333-72.533-21.333-25.6 0-51.2 8.533-72.533 25.6s-29.867 42.667-29.867 68.267c0 17.067 4.267 34.133 17.067 51.2l17.067 25.6c-4.267 0-17.067 4.267-34.133 4.267v0h-140.8v-490.667h486.4v145.067c0 21.333 0 34.133 4.267 42.667 0 12.8 8.533 25.6 21.333 29.867 4.267 4.267 12.8 4.267 21.333 4.267v0c4.267 0 17.067 0 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 29.867 17.067s12.8 25.6 12.8 42.667-4.267 29.867-12.8 42.667c-8.533 8.533-21.333 17.067-29.867 17.067s-17.067-4.267-25.6-8.533l-29.867-21.333c-8.533-4.267-21.333-8.533-25.6-8.533-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 34.133zM1019.733 345.6c0-8.533 0-38.4-8.533-42.667v0c-4.267 0-4.267 0-8.533 0l-29.867 21.333c-12.8 8.533-25.6 17.067-42.667 17.067-46.933 0-85.333-42.667-85.333-93.867s38.4-93.867 85.333-93.867c17.067 0 34.133 4.267 46.933 17.067l29.867 21.333c0 0 4.267 0 8.533 0 8.533-4.267 8.533-34.133 8.533-42.667v-149.333h-494.933v145.067c0 17.067 0 25.6 4.267 34.133v0 0l25.6-17.067c12.8-12.8 34.133-17.067 51.2-17.067 25.6 0 51.2 12.8 68.267 29.867 17.067 21.333 25.6 46.933 25.6 72.533s-8.533 51.2-25.6 72.533-42.667 29.867-68.267 29.867c-17.067 0-34.133-4.267-51.2-17.067l-25.6-17.067c0 4.267-4.267 17.067-4.267 34.133v140.8h145.067c21.333 0 34.133 0 42.667 4.267 12.8 4.267 25.6 12.8 29.867 21.333 4.267 4.267 4.267 12.8 4.267 21.333s0 17.067-8.533 25.6l-21.333 29.867c-4.267 8.533-8.533 17.067-8.533 25.6 0 12.8 4.267 21.333 17.067 29.867s25.6 12.8 42.667 12.8 29.867-4.267 42.667-12.8c8.533-8.533 17.067-21.333 17.067-29.867s-4.267-17.067-8.533-25.6l-12.8-29.867c-8.533-12.8-8.533-21.333-8.533-25.6 0-8.533 0-12.8 4.267-21.333s17.067-17.067 29.867-21.333c8.533-4.267 25.6-4.267 42.667-4.267h140.8v-145.067zM874.667 1019.733c25.6 0 115.2 4.267 149.333 4.267v-490.667h-140.8c-17.067 0-25.6 0-34.133 4.267v0 0l17.067 25.6c12.8 12.8 17.067 34.133 17.067 51.2 0 25.6-12.8 51.2-29.867 68.267-21.333 17.067-46.933 25.6-72.533 25.6s-51.2-8.533-72.533-25.6c-21.333-17.067-29.867-42.667-29.867-68.267 0-17.067 4.267-34.133 17.067-51.2l17.067-29.867c-4.267 0-17.067-4.267-34.133-4.267h-149.333v140.8c0 21.333 0 34.133-4.267 42.667-4.267 12.8-12.8 25.6-21.333 29.867-4.267 4.267-12.8 4.267-21.333 4.267s-17.067 0-25.6-8.533l-29.867-12.8c-8.533-4.267-17.067-8.533-25.6-8.533-12.8 0-21.333 4.267-29.867 17.067s-12.8 25.6-12.8 42.667 4.267 29.867 12.8 42.667c8.533 8.533 21.333 17.067 29.867 17.067s17.067-4.267 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533v0c8.533 0 12.8 0 21.333 4.267 12.8 4.267 17.067 17.067 21.333 29.867 4.267 8.533 4.267 25.6 4.267 42.667v140.8h140.8c8.533 0 38.4 0 42.667-8.533 0-4.267 0-8.533 0-8.533l-21.333-29.867c-8.533-12.8-17.067-29.867-17.067-46.933 0-46.933 42.667-85.333 93.867-85.333s93.867 38.4 93.867 85.333c0 17.067-4.267 34.133-17.067 46.933l-21.333 29.867c0 0-4.267 4.267 0 8.533 12.8 12.8 42.667 12.8 51.2 12.8zM0 533.333v490.667h486.4v-145.067c0-17.067 0-25.6-4.267-34.133v0 0l-25.6 17.067c-12.8 12.8-34.133 17.067-51.2 17.067-25.6 0-51.2-12.8-68.267-29.867-17.067-21.333-25.6-46.933-25.6-72.533s8.533-51.2 25.6-72.533c17.067-21.333 42.667-29.867 68.267-29.867 17.067 0 34.133 4.267 51.2 17.067l29.867 17.067c0-4.267 4.267-17.067 4.267-34.133v-140.8h-145.067c-21.333 0-34.133 0-42.667-4.267-12.8-4.267-25.6-12.8-29.867-21.333-4.267-4.267-4.267-12.8-4.267-21.333s0-17.067 8.533-25.6l21.333-29.867c0-8.533 4.267-17.067 4.267-25.6 0-12.8-4.267-21.333-17.067-29.867s-25.6-12.8-42.667-12.8v0c-17.067 0-29.867 4.267-42.667 12.8-8.533 8.533-12.8 17.067-12.8 29.867 0 8.533 4.267 17.067 8.533 25.6l17.067 29.867c8.533 12.8 8.533 21.333 8.533 25.6 0 8.533 0 12.8-4.267 21.333-4.267 12.8-17.067 17.067-29.867 21.333-8.533 4.267-25.6 4.267-42.667 4.267 0 0-145.067 0-145.067 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["components"],"grid":0},"attrs":[{}],"properties":{"order":312,"id":33,"name":"components","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M409.6 1024v-349.867h204.8v349.867h256v-563.2h153.6l-512-460.8-512 460.8h153.6v563.2h256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["consignatarios"],"grid":0},"attrs":[{}],"properties":{"order":313,"id":34,"name":"consignatarios","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M418.133 644.267l-128 123.733 256 256 469.333-469.333-128-128-341.333 341.333z","M546.133 648.533l34.133-34.133h-68.267z","M230.4 832l-59.733-64 153.6-153.6h-68.267v-102.4h426.667l204.8-204.8 85.333 85.333v-187.733c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h273.067l-196.267-192zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2zM256 307.2h512v102.4h-512v-102.4z","M665.6 1024h204.8c55.467 0 102.4-46.933 102.4-102.4v-204.8l-307.2 307.2z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["control"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":314,"id":35,"name":"control","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M921.6 110.933h-819.2c-55.467 0-102.4 42.667-102.4 98.133v601.6c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-42.667 102.4-102.4v-601.6c0-55.467-46.933-98.133-102.4-98.133zM921.6 814.933h-819.2v-302.933h819.2v302.933zM921.6 311.467h-819.2v-102.4h819.2v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["credit"],"grid":0},"attrs":[{}],"properties":{"order":315,"id":36,"name":"credit","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M677.973 1024c-30.72-35.84-61.867-70.827-91.307-107.52-40.96-51.2-80.64-103.253-121.173-154.88-16.64-21.333-21.76-20.48-30.72 4.693-13.227 36.693-25.6 73.387-40.107 109.653-5.12 12.8-13.227 26.88-24.32 34.56-51.627 34.987-104.107 69.12-157.867 100.693-10.667 6.4-30.72 5.547-41.813-0.853-8.107-4.693-12.373-23.893-11.093-35.84 0.853-8.96 11.093-19.627 19.627-25.6 39.253-26.453 78.933-51.627 119.040-76.8 18.347-11.52 30.293-26.027 35.84-47.787 12.373-48.213 27.307-95.573 39.253-143.36 8.533-33.707 26.88-58.88 56.32-77.227 40.533-25.173 80.64-52.053 120.747-78.507 6.4-4.267 10.24-11.52 15.36-17.493-7.253-2.56-14.933-7.253-22.187-6.827-75.52 6.4-151.467 13.227-226.987 20.48-2.133 0-4.693 0.853-6.827 0.853-22.613 1.707-39.253-10.24-40.96-29.867s12.373-33.707 35.413-35.84c45.227-4.267 90.88-8.96 136.107-12.8 65.707-5.547 131.84-10.667 197.547-15.36 26.027-1.707 53.76 21.76 67.413 55.467 9.813 23.893 5.12 46.080-18.347 65.28-49.92 40.107-100.693 78.933-151.040 118.187-23.040 17.92-23.893 23.467-6.4 46.507 58.453 78.080 116.48 156.587 174.933 234.667 27.307 36.693 25.173 50.773-12.373 75.52-5.12 0-9.813 0-14.080 0zM791.893 310.187c-43.093-1.28-76.373 31.573-77.227 75.52-0.853 44.373 29.44 76.8 72.107 77.653 45.227 1.28 77.653-29.44 78.080-73.813 0.427-45.227-29.44-78.080-72.96-79.36zM671.147 222.293c0 72.107-34.133 136.107-87.467 176.64l-235.52 21.76c-72.107-36.693-122.027-111.787-122.027-198.4 0-122.88 99.84-222.293 222.72-222.293 122.453 0 222.293 99.413 222.293 222.293zM592.213 279.467l-50.347-18.347c-2.133 8.533-5.12 16.213-9.813 22.613-5.12 6.4-10.24 11.947-16.213 17.067-5.973 4.267-12.373 8.107-19.2 11.093s-13.653 4.693-20.053 5.547c-17.92 2.987-33.707 0.427-48.64-6.827s-26.88-18.347-36.693-32.853l76.373-12.373 7.253-32.427-97.28 15.787c-1.28-5.547-2.987-11.093-3.84-16.64l-0.853-4.267 99.413-16.213 7.253-32.427-106.667 17.493c0.853-9.387 2.987-17.493 6.4-26.027 3.84-8.533 8.107-16.213 14.080-23.040 5.547-6.827 12.8-12.373 21.333-17.067s17.92-8.107 28.587-9.813c6.827-1.28 13.227-1.707 20.907-1.28s14.507 1.707 21.333 3.84c6.827 2.133 13.653 5.973 20.053 10.24 5.973 4.693 11.947 11.093 17.493 18.773l38.827-37.973c-13.227-17.92-30.293-31.147-52.053-39.253-21.76-8.533-46.080-10.667-73.387-6.4-19.627 2.987-36.267 9.387-51.2 17.92-14.507 8.533-26.88 19.2-37.547 32-10.667 12.373-18.773 26.027-23.893 40.96-5.547 14.507-8.96 29.867-9.813 45.653l-21.76 3.84-7.253 32.427 29.013-4.693 0.427 2.987c1.28 6.827 2.56 12.8 4.267 18.347l-23.467 3.84-8.107 32.427 43.52-7.253c6.827 13.653 15.787 26.027 26.027 36.693 10.24 11.52 22.187 20.48 35.413 27.733 13.227 7.68 27.307 12.8 42.667 15.787s31.573 3.413 47.36 0.853c12.373-2.133 24.32-5.12 35.84-10.667s22.613-11.52 32.853-19.2c10.24-8.107 18.347-16.64 26.027-26.453 6.827-9.387 12.373-20.48 15.36-32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deaulter-01"],"grid":0},"attrs":[{}],"properties":{"order":316,"id":37,"name":"defaulter","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M160.672 874.304h693.248v-639.776c0 0-2.016-234.528-349.696-234.528s-343.552 234.528-343.552 234.528v639.776zM291.328 307.296h170.976v-152.256h102.336v152.256h171.008v102.336h-171.008v356.96h-102.336v-356.96h-170.976v-102.336zM64 898.944v123.456h899.008v-123.456h-899.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deletedTicketCross"],"grid":0},"attrs":[{}],"properties":{"order":317,"id":38,"name":"deletedTicket","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M354.133 768l-98.133-98.133 157.867-153.6-157.867-157.867 98.133-102.4 157.867 157.867 157.867-153.6 98.133 98.133-157.867 157.867 157.867 153.6-98.133 98.133-157.867-157.867-157.867 157.867zM780.8 452.267l-64 64 59.733 55.467h247.467v-119.467h-243.2zM307.2 516.267l-64-64h-243.2v119.467h251.733l55.467-55.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["deleteline"],"grid":0},"attrs":[{}],"properties":{"order":318,"id":39,"name":"deleteline","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM311.467 362.667c0-46.933 29.867-85.333 59.733-93.867 4.267 0 4.267 0 8.533 0l98.133-12.8v51.2c0 46.933-29.867 85.333-59.733 93.867-4.267 0-4.267 0-8.533 0l-98.133 17.067v-55.467zM311.467 443.733l46.933-8.533c17.067-4.267 29.867 17.067 29.867 38.4l4.267 29.867-51.2 4.267c-17.067 4.267-29.867-12.8-29.867-38.4v-25.6zM149.333 362.667v-51.2l85.333-12.8c34.133-4.267 55.467 25.6 55.467 72.533v51.2l-85.333 12.8c-34.133 0-59.733-29.867-55.467-72.533zM285.867 448v38.4c0 34.133-21.333 64-42.667 68.267h-4.267l-72.533 8.533v-38.4c0-34.133 21.333-64 42.667-68.267h4.267l72.533-8.533z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["delivery"],"grid":0},"attrs":[{},{},{}],"properties":{"order":319,"id":40,"name":"delivery","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z","M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM376.32 345.173v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147zM921.6 430.933h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["deliveryprices"],"grid":0},"attrs":[{},{},{}],"properties":{"order":320,"id":41,"name":"deliveryprices","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M908.8 115.2v797.867h-793.6v-797.867h793.6zM972.8 0h-921.6c-29.867 0-51.2 21.333-51.2 51.2v921.6c0 21.333 21.333 51.2 51.2 51.2h921.6c21.333 0 51.2-29.867 51.2-51.2v-921.6c0-29.867-29.867-51.2-51.2-51.2zM456.533 226.133h341.333v115.2h-341.333v-115.2zM456.533 456.533h341.333v115.2h-341.333v-115.2zM456.533 682.667h341.333v115.2h-341.333v-115.2zM226.133 226.133h115.2v115.2h-115.2v-115.2zM226.133 456.533h115.2v115.2h-115.2v-115.2zM226.133 682.667h115.2v115.2h-115.2v-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["details"],"grid":0},"attrs":[{}],"properties":{"order":322,"id":42,"name":"details","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M140.8 439.467v341.333h149.333v-341.333h-149.333zM439.467 439.467v341.333h149.333v-341.333h-149.333zM38.4 1024h942.933v-145.067h-942.933v145.067zM733.867 439.467v341.333h149.333v-341.333h-149.333zM512 0l-473.6 243.2v98.133h942.933v-98.133l-469.333-243.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["dfiscales"],"grid":0},"attrs":[{}],"properties":{"order":323,"id":43,"name":"dfiscales","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M1012.48 956.587c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067zM938.667 819.2v-37.973c0-87.467-105.813-148.48-220.16-183.040l220.16 221.013zM608 488.107c69.547-35.84 117.333-107.52 117.333-192.427 0-119.893-96-215.893-213.333-215.893-84.053 0-156.16 49.493-190.72 121.6l286.72 286.72zM449.707 569.173c-149.333 16.213-364.373 87.040-364.373 212.053v162.56h738.987l-374.613-374.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["Inactivo"],"grid":0},"attrs":[{}],"properties":{"order":324,"id":44,"name":"disabled","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M614.4 0h-409.6c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h614.4c55.467 0 102.4-46.933 102.4-102.4v-614.4l-307.2-307.2zM716.8 819.2h-409.6v-102.4h409.6v102.4zM716.8 614.4h-409.6v-102.4h409.6v102.4zM563.2 358.4v-281.6l281.6 281.6h-281.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["doc"],"grid":0},"attrs":[{}],"properties":{"order":325,"id":45,"name":"doc","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M0 631.118l392.882 392.882 265.404-265.404-100.31-100.31-102.4 100.31v-303.020h303.020l-100.31 102.4 100.31 100.31 265.404-265.404-392.882-392.882z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["entry"],"grid":0},"attrs":[{}],"properties":{"order":327,"id":46,"name":"entry","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M859.733 683.093c-90.027 0-162.56 72.533-162.56 162.56h-29.44l47.36 72.533 48.64-72.533h-29.44c0-69.547 56.32-125.867 125.867-125.867s125.867 56.32 125.867 125.867-56.32 125.867-125.867 125.867c-34.133 0-66.56-14.933-87.467-37.12l-25.173 25.173c29.44 29.44 69.547 47.36 115.2 47.36 90.027 0 161.28-72.533 161.28-161.28s-75.52-162.56-164.267-162.56v0zM842.24 773.12v90.027l76.8 45.653 11.947-22.187-62.293-37.12v-76.8l-26.453 0.427z","M0 574.293l346.88 346.453 234.24-234.24-88.747-88.32-90.453 88.32v-267.52h267.52l-88.32 90.453 88.32 88.747 234.24-234.24-346.453-346.88z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["entry_lastbuys"],"grid":0},"attrs":[{},{}],"properties":{"order":420,"id":47,"name":"entry_lastbuys","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["exit"],"grid":0},"attrs":[{}],"properties":{"order":328,"id":48,"name":"exit","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M512 162.133c-234.667 0-430.933 145.067-512 349.867 81.067 204.8 277.333 349.867 512 349.867s430.933-145.067 512-349.867c-81.067-204.8-277.333-349.867-512-349.867zM512 746.667c-128 0-234.667-102.4-234.667-234.667s106.667-234.667 234.667-234.667 234.667 106.667 234.667 234.667-106.667 234.667-234.667 234.667zM512 371.2c-76.8 0-140.8 64-140.8 140.8s64 140.8 140.8 140.8 140.8-64 140.8-140.8-64-140.8-140.8-140.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["eye"],"grid":0},"attrs":[{}],"properties":{"order":329,"id":49,"name":"eye","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M811.947 472.32v-172.8c0-79.787-31.147-154.88-87.893-211.627-57.173-56.747-132.267-87.893-212.053-87.893-165.12 0-299.947 134.4-299.947 299.52v172.373h-78.507v552.107h756.48v-551.68h-78.080zM629.76 873.813c-9.813 8.96-19.627 16.64-32 23.467-11.947 5.973-24.747 10.667-37.973 14.507-13.227 3.413-26.453 4.693-39.68 4.693-17.493 0-34.133-2.987-49.92-8.96s-29.44-13.653-42.24-23.893c-12.8-10.24-23.467-21.76-32.427-35.413-8.96-13.227-16.213-27.733-20.907-43.093h-46.933l13.653-32.853h25.173c-0.427-5.973-1.28-12.8-1.28-19.627v-2.987h-31.147l13.227-32.853h22.187c3.413-16.213 9.813-32 17.92-46.080 8.533-14.933 19.2-27.733 32.427-39.253s28.16-20.48 45.227-26.88c17.493-6.4 35.84-10.24 57.173-10.24 29.44 0 54.613 6.4 76.373 19.2s37.12 29.44 48.213 50.347l-47.36 32.853c-4.267-8.96-9.813-16.64-14.933-23.040-5.973-5.973-12.8-10.667-19.2-14.507-6.4-3.413-13.653-5.973-21.76-7.68-7.68-1.707-14.933-2.56-22.187-2.56-11.52 0-22.187 1.707-32 5.547-9.813 3.413-17.92 8.533-25.173 14.507s-13.227 13.227-18.773 21.76-8.96 16.64-11.52 26.453h115.2l-13.227 32.853h-107.52v4.693c0 5.973 0.427 11.947 1.28 17.92h104.96l-13.227 32.853h-82.347c7.68 16.64 18.773 30.72 32.853 40.96 14.507 10.24 30.72 15.787 49.92 15.787 7.253 0 14.507-0.427 22.187-2.56 7.68-1.707 14.933-4.693 22.187-8.533 7.253-4.267 13.227-8.96 19.627-14.933 5.973-5.973 10.667-13.653 14.507-22.187l49.92 28.16c-3.413 11.52-11.52 22.187-20.48 31.573zM667.307 472.32h-310.613v-165.973c0-85.333 69.547-155.307 154.88-155.307 41.387 0 80.213 16.213 109.653 45.653s45.653 68.267 45.653 109.653v165.973h0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["fixedPrice"],"grid":0},"attrs":[{}],"properties":{"order":330,"id":50,"name":"fixedPrice","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M511.147 346.027h-3.84c-44.373 0-86.187 16.64-117.76 47.36-32 31.573-49.493 73.813-49.493 119.040s17.493 87.467 49.067 118.187c30.72 30.72 72.96 47.36 116.053 47.36h4.267c43.093 0 84.907-17.493 116.053-47.36 31.573-30.72 49.067-72.96 49.067-118.187 0-90.88-72.107-163.84-163.413-166.4zM431.36 435.2c19.627-19.627 46.933-30.72 72.96-30.72h2.987c27.733-0.853 55.467 10.24 76.8 30.72s32.853 48.213 32.853 78.933c0 59.733-49.493 108.8-109.653 108.8h-0.853c-58.453 0-107.947-49.493-107.947-108.8-0.853-29.867 11.093-58.453 32.853-78.933z","M928 529.493l-1.28-1.28 1.28-1.28c0.853-0.853 1.28-1.28 2.133-2.133 44.373-47.36 64.853-105.387 59.307-169.387-5.12-57.6-29.867-105.813-72.96-143.787-37.12-32-79.787-49.493-126.293-53.333v0h-2.987c-12.373-0.853-24.747 0-37.973 0.853-5.973 0.853-11.093 0.853-16.213 1.28h-0.853c-0.853-0.853-1.28-2.987-2.987-7.253-12.373-39.253-34.133-72.96-64.853-99.413-49.493-42.24-107.947-59.733-172.373-51.2-47.36 5.547-89.6 26.453-125.013 61.867-21.76 21.76-38.827 48.213-49.493 78.080l-1.28 3.84-2.987-1.28c-32.427-8.533-64.427-8.533-95.573-2.56-48.213 10.24-88.747 32.853-119.467 68.693-47.36 56.32-64 121.173-48.64 194.133 7.253 33.707 21.76 63.573 44.373 90.453l2.133 2.987-2.133 1.28c-19.627 20.48-34.987 43.947-45.227 69.973v0c0 0.853-32.853 70.827-1.28 157.013 0 0.853 0 0.853 0.853 1.28 0 0.853 0.853 1.28 0.853 2.987 2.987 7.253 5.973 14.507 9.387 21.333 2.987 6.4 5.973 11.093 8.107 14.507 23.893 39.253 59.733 68.693 105.387 86.187 36.693 14.507 75.947 18.347 116.907 11.52l2.133-0.853 1.28 3.84c6.4 23.467 16.64 44.373 29.867 62.72 32 45.227 74.667 74.667 127.147 87.467 5.973 1.28 26.453 5.12 53.333 5.12 16.64 0 35.84-1.28 55.467-6.4l2.133-0.853c2.133-0.853 3.84-0.853 5.12-1.28 0.853 0 1.28-0.853 2.987-0.853l1.28-0.853c30.72-10.24 59.307-26.88 84.053-51.2 22.613-21.76 40.107-48.213 51.2-78.080 0.853-1.28 0.853-2.133 1.28-3.84l0.853-1.28h1.28c0.853 0 2.133 0.853 3.84 0.853 21.76 5.12 42.24 6.4 62.72 5.973 31.573-1.28 61.44-9.387 88.32-23.893 43.947-23.467 76.8-57.173 97.28-101.547 21.333-46.933 25.6-95.573 13.227-146.773-9.813-29.44-24.32-58.88-45.653-83.627zM868.267 502.613c-5.973 4.267-11.52 8.96-16.64 12.373l-12.373 8.96 2.987 3.84c5.12 6.4 11.52 11.52 16.64 16.213 2.987 2.133 5.973 4.267 8.107 7.253 33.707 30.72 51.2 66.987 54.187 111.787 2.133 43.093-11.093 81.067-38.827 112.64-34.987 39.253-78.933 57.6-131.413 54.613-19.2-1.28-37.973-6.4-59.307-16.213-4.267-1.28-8.107-3.84-12.373-5.12l-14.080-5.973-8.107 38.827c-14.080 67.84-71.68 119.893-141.653 126.293-5.12 0.853-10.24 0.853-15.36 0.853-36.693 0-72.107-13.227-101.547-37.12-28.587-23.893-48.213-57.6-54.613-94.293-1.28-8.96-2.987-18.347-3.84-26.88l-0.853-6.4c0-2.987-0.853-7.253-3.84-11.093l-2.133-2.133-13.227 4.267c-6.4 2.133-13.227 4.267-19.627 6.4-64.853 22.613-138.667-0.853-179.627-57.173-19.2-26.453-29.013-55.467-29.867-86.187-2.133-57.173 21.333-103.68 68.693-138.667l24.747-19.2-2.987-2.133c-5.12-5.12-11.093-10.24-16.213-14.507-6.4-5.12-12.373-11.093-18.347-16.64-29.013-30.72-44.373-66.56-45.227-107.947-0.853-39.253 11.52-74.667 36.693-104.533 25.6-30.72 58.453-49.493 97.707-56.32 30.72-5.12 61.44-0.853 92.16 13.227 5.973 2.987 11.52 5.12 19.2 8.107 4.267 1.28 6.4 2.987 9.387 1.28 2.987-1.28 3.84-4.267 4.267-8.96 0.853-4.267 1.28-8.96 2.133-13.227v-0.853c1.28-8.96 2.987-16.64 5.973-24.747 20.48-62.293 63.147-100.267 125.867-111.787 54.187-10.24 101.547 5.12 142.507 46.080 25.6 25.6 40.96 58.453 44.373 96.427 0.853 5.973 1.28 11.52 2.133 17.493l1.28 14.507 4.267-0.853c7.253-1.28 14.080-3.84 19.627-5.973l0.853-0.853c2.133-0.853 3.84-1.28 5.973-2.133 58.453-20.48 111.787-11.093 159.147 27.733 33.707 27.733 52.48 64.427 56.32 107.947 4.693 56.747-17.067 104.107-63.147 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["flor"],"grid":0},"attrs":[{},{}],"properties":{"order":331,"id":51,"name":"flower","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M1024 460.8h-213.333l166.4-166.4-72.533-72.533-238.933 238.933h-102.4v-102.4l238.933-238.933-72.533-72.533-166.4 166.4v-213.333h-102.4v213.333l-166.4-166.4-72.533 72.533 238.933 238.933v102.4h-102.4l-238.933-238.933-72.533 72.533 166.4 166.4h-213.333v102.4h213.333l-166.4 166.4 72.533 72.533 238.933-238.933h102.4v102.4l-238.933 238.933 72.533 72.533 166.4-166.4v213.333h102.4v-213.333l166.4 166.4 72.533-72.533-238.933-238.933v-102.4h102.4l238.933 238.933 72.533-72.533-166.4-166.4h213.333v-102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["frozen"],"grid":0},"attrs":[{}],"properties":{"order":332,"id":52,"name":"frozen","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M118.187 821.333c26.453 0 52.48 5.973 76.8 17.067 4.693 2.133 9.813 4.693 14.507 7.253l2.56 1.28c50.773 25.173 108.373 37.547 165.973 37.547 43.093 0 86.187-7.253 126.293-21.76h0.853l1.28 0.853c40.96 14.507 84.053 21.76 127.573 21.76 1.28 0 2.56 0 3.84 0h2.56c0.853 0 0.853 0 1.28 0s1.28 0 2.133 0h0.853c101.973-2.56 196.693-44.8 267.947-117.76s110.507-169.387 111.36-271.36c0-7.253-2.56-14.080-8.107-19.2-5.12-5.12-11.947-8.107-18.347-8.107h-241.493l-0.853-2.56c-7.253-64-30.293-125.867-68.267-177.92-5.973-8.533-13.227-17.92-21.76-27.307l-1.28-1.28 1.28-2.133c39.68-46.933 41.813-80.213 41.813-86.613 0-14.080-10.667-25.173-25.173-25.6v0c-13.227 0-25.6 11.093-27.307 24.32 0 0-2.133 19.2-26.453 49.493l-0.853 0.853-2.133 0.853-1.28-0.853c-73.387-63.147-168.107-94.72-265.387-89.6-101.12 5.12-193.707 50.347-261.547 125.867-102.827 114.773-126.293 279.893-58.027 418.56l1.28 2.56c2.56 4.693 5.12 9.387 8.107 15.36 14.507 31.573 20.053 66.987 15.36 101.12-1.28 8.107 1.28 16.64 7.253 22.613s14.507 8.533 22.613 7.253c7.68-1.707 16.213-2.56 24.747-2.56zM968.96 522.24l2.133 2.133v1.28c-5.973 67.413-31.573 130.987-74.667 183.893l-0.853 0.853h-2.56l-1.28-0.853-133.547-133.547c-9.813-9.813-26.453-11.093-36.267-2.56-5.973 4.693-9.387 11.947-9.387 19.2s2.56 14.507 8.107 20.053l136.107 136.107v2.56l-0.853 0.853c-51.627 44.8-115.2 72.96-182.613 80.213h-1.28l-2.133-1.28v-212.907c0-14.507-10.667-26.453-23.893-27.733-7.253-0.853-14.507 2.133-20.053 6.827-5.12 5.12-8.533 11.947-8.533 19.2v215.893l-2.133 2.133h-0.853c-32.427-2.133-63.573-8.533-93.867-19.2-3.413-2.133-5.973-2.56-8.533-3.413-31.573-12.373-61.013-29.867-87.467-50.773l-0.853-0.853v-2.56l0.853-1.28 142.080-142.080c9.813-9.813 11.093-26.453 2.56-36.267-4.693-5.973-11.947-9.387-19.2-9.387-7.253-0.853-14.507 2.56-20.053 8.107l-145.067 145.067h-2.56l-0.853-0.853c-47.787-54.187-75.947-121.173-82.773-193.28v-2.987l1.28-2.133 668.16-0.427zM85.76 650.667l-0.853-0.853c-57.6-119.040-37.547-259.84 50.773-358.827 58.453-64.427 138.24-102.827 225.28-107.52 86.613-4.693 170.667 24.32 235.52 82.773 3.413 2.56 5.973 5.12 9.387 8.533l4.693 4.693c3.84 3.84 8.107 8.107 11.947 12.373l0.853 0.853c8.107 8.533 15.36 18.347 22.613 27.733 31.147 43.093 50.773 93.867 57.6 146.773v1.28l-1.28 2.133h-431.36c-7.253 0-14.080 2.56-18.347 8.107-5.12 5.12-8.107 11.947-8.107 19.2 0 133.547 67.413 256 180.48 328.96l1.28 0.853-0.853 3.84-2.133 0.853c-15.787 2.133-31.147 3.413-46.933 3.413-49.067 0-96.427-10.667-140.8-32.427h-0.853c-5.973-3.84-13.227-7.253-19.2-9.813-30.293-14.507-62.72-21.76-96-21.76h-2.56v-2.56c0-33.28-8.107-65.707-21.333-95.147-2.56-10.24-5.973-17.067-9.813-23.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["fruit"],"grid":0},"attrs":[{}],"properties":{"order":333,"id":53,"name":"fruit","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M898.56 419.84c0-206.933-159.573-376.747-362.24-393.387v-18.347c0-4.267-3.84-8.107-8.107-8.107h-42.24c-4.267 0-8.107 3.84-8.107 8.107v17.493c-206.080 13.227-369.493 185.173-369.493 394.24 0 143.36 76.8 269.227 191.573 338.773l-68.693 198.827c-4.267 14.080 2.133 28.587 16.213 32.853l5.973 2.133c14.080 4.267 28.587-2.133 32.853-16.213l66.56-191.573c36.693 15.36 76.8 24.747 118.613 28.587v184.32c0 14.507 11.52 26.453 26.453 26.453h6.4c14.507 0 26.453-11.52 26.453-26.453v-183.467c42.24-2.987 83.2-12.373 120.747-27.733l66.56 192.427c4.267 14.080 19.627 20.48 32.853 16.213l5.973-2.133c14.080-4.267 20.48-19.627 16.213-32.853l-69.12-199.253c116.053-68.693 194.56-196.267 194.56-340.907zM840.107 419.84c0 10.24-0.853 20.48-1.28 30.72-40.96-3.84-79.787-14.080-117.76-27.733v-0.853c0-119.893-97.28-217.173-217.173-217.173-24.32 0-48.213 3.84-70.827 11.52-34.987-36.267-61.867-70.827-81.067-97.28 45.227-22.613 96.427-35.84 151.467-35.84 185.6 0 336.64 151.040 336.64 336.64zM480 264.96c7.253-1.28 15.36-1.28 23.467-1.28 78.933 0 144.213 57.6 156.587 133.12-68.267-36.267-129.707-83.627-180.053-131.84zM301.653 150.613c28.587 38.827 75.52 97.28 136.96 156.587 124.16 118.613 258.133 188.16 389.12 201.813-8.107 29.44-19.627 56.32-34.987 81.92-286.72-5.12-505.6-306.347-553.813-378.88 17.92-23.467 39.253-43.947 62.72-61.44zM350.72 437.333c60.587 58.453 123.733 105.387 187.307 140.373-11.093 2.133-22.613 3.84-34.56 3.84-84.907 0-153.6-66.56-158.72-149.76 2.133 2.133 3.84 3.413 5.973 5.547zM480 755.627c-171.093-11.52-308.053-154.453-313.173-325.547-1.28-59.307 11.52-114.773 37.12-163.84 19.2 26.88 48.213 66.56 87.040 109.653-3.84 15.36-5.12 31.573-5.12 46.933 0 119.893 97.28 217.173 217.173 217.173 37.973 0 74.667-9.387 106.667-27.733 46.933 18.347 94.293 30.72 141.227 34.987-65.28 72.533-163.413 115.627-270.933 108.373z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["funeral"],"grid":0},"attrs":[{}],"properties":{"order":334,"id":54,"name":"funeral","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M982.187 451.84c-4.267-45.227-16.64-88.747-36.693-129.28-19.2-38.827-45.227-74.24-76.373-104.533 14.507-57.173-17.493-107.093-17.493-107.093-55.040-3.413-90.027 17.067-103.253 26.453-2.133-0.853-4.267-1.707-6.4-2.56-9.387-3.84-19.2-7.253-29.013-10.667-9.813-2.987-20.053-5.973-30.293-8.533-12.373-2.987-24.747-5.12-37.547-6.827-23.893-76.8-93.013-108.8-93.013-108.8-76.8 48.64-91.733 116.907-91.733 116.907l-0.853 3.84c-4.267 1.28-8.533 2.56-12.8 3.84-5.973 1.707-11.52 3.84-17.493 5.973-5.973 2.56-11.52 4.693-17.493 7.253-23.467 10.24-45.653 22.613-66.56 37.12l-2.56-1.28c-106.667-40.533-201.387 8.533-201.387 8.533-8.533 113.493 42.667 184.747 52.907 197.973-12.8 36.267-21.76 74.24-26.027 112.64-98.56 48.64-127.573 148.053-127.573 148.053 82.347 94.293 177.92 100.267 177.92 100.267s0 0 0 0c11.947 21.76 26.027 42.24 42.24 61.867 6.827 8.107 13.653 15.787 20.907 23.467-29.867 85.76 4.267 157.013 4.267 157.013 91.307 3.413 151.467-40.107 164.267-49.92 43.52 14.507 89.173 21.76 134.827 21.333h5.973s4.693 0 4.693 0h4.267s0 0 0 0c43.093 61.44 119.040 70.4 119.040 70.4 53.76-56.747 57.173-113.067 57.173-125.44v-2.56c0-0.853 0-1.707 0-2.56 11.093-8.107 22.187-16.64 32.427-25.6 23.467-21.333 43.947-45.653 60.587-72.533 61.013 3.413 104.107-37.973 104.107-37.973-10.24-63.573-46.080-94.72-53.76-100.267h-0.853c0-0.427-0.853-1.28-0.853-1.28-0.427 0-0.853-0.427-1.28-0.853 0-3.84 0.853-7.68 0.853-11.52 0.427-6.827 0.853-13.653 0.853-20.48v-14.933s-0.427-5.973-0.427-5.973c0-1.707 0-3.84-0.427-5.547 0-1.707 0-3.413-0.427-5.12l-1.707-10.24c-9.387-61.44-40.107-117.76-86.613-159.147-38.4-34.133-86.613-55.893-137.387-62.293-11.947-1.707-24.32-2.133-36.267-2.133h-4.693s-2.56 0-2.56 0h-1.707s-4.267 0.427-4.267 0.427c-55.467 3.84-106.667 29.867-142.507 72.107-14.080 17.067-25.173 35.84-32.853 55.467-9.813 24.747-14.080 51.2-13.227 77.653v3.84c0 2.56 0.427 4.693 0.853 6.827 2.56 28.16 12.8 55.040 29.867 77.653 19.2 26.027 46.933 45.227 78.080 54.613 14.080 4.267 28.16 5.973 41.387 5.973 1.707 0 3.413 0 4.693 0h2.56c0.853 0 1.707 0 2.56 0 1.28 0 2.56 0 4.267-0.427 0 0 0.853 0 1.28 0h1.28s2.56-0.427 2.56-0.427c1.707 0 3.413-0.427 4.693-0.853 1.707 0 2.987-0.427 4.693-0.853 14.080-3.413 27.307-9.387 38.827-17.92 1.28-0.853 2.56-1.707 3.84-2.987 4.693-3.84 5.547-10.24 1.707-14.933 0 0 0 0 0 0-2.987-3.84-8.96-5.12-13.227-2.56l-3.413 1.707c-3.84 1.707-7.68 3.413-11.947 5.12-6.4 2.133-13.227 3.413-20.48 4.267-1.28 0-2.133 0-3.413 0h-3.413c-1.28 0-2.133 0-3.413 0h-4.267c0 0-0.427 0-0.427 0h-0.853c-0.853 0-1.28 0-1.707 0-1.28 0-2.56 0-3.84-0.427-10.667-1.707-20.907-4.693-30.72-8.96-10.24-4.693-20.053-11.093-28.587-18.773-18.347-16.64-30.293-38.827-34.56-63.147-0.853-6.4-1.28-12.8-1.28-18.773v-5.12c0 0 0-0.853 0-0.853v-1.28c0-0.853 0-1.707 0-2.56 3.84-39.253 25.173-75.093 57.6-97.707 12.373-8.107 25.6-14.507 40.107-18.347 10.667-2.987 21.76-4.267 33.28-4.267h5.547s2.133 0 2.133 0h4.267c24.32 2.133 48.213 9.387 69.547 20.907 29.44 16.213 53.333 40.96 68.267 70.827 9.387 18.773 15.36 39.253 17.067 60.16v3.413s0 2.987 0 2.987c0 1.28 0 2.133 0 2.987s0 2.133 0 2.987v5.973s-0.427 7.253-0.427 7.253c-0.853 8.96-1.707 18.347-3.413 27.307-2.56 13.653-6.4 26.88-11.52 39.68-6.827 17.067-15.787 33.28-26.453 48.213-32.853 45.653-82.773 76.373-138.24 85.76-8.96 1.707-18.347 2.56-27.733 2.987h-1.707s-12.373 0-12.373 0c-24.747-0.427-49.493-4.267-73.387-11.093-57.173-16.64-107.947-50.347-145.067-96.853-12.373-15.36-23.040-31.573-32-49.067-17.493-34.56-28.16-72.107-30.293-110.933v-3.413c0 0 0-0.853 0-0.853v-5.547s0-4.267 0-4.267v-4.267s0-2.987 0-2.987v-6.827c0.427-9.387 1.28-19.2 2.56-29.013 2.56-19.627 6.4-38.827 11.947-57.6s12.373-37.12 20.053-54.613c14.933-33.28 36.267-63.573 62.293-89.6 12.373-12.373 26.027-23.040 40.533-32.427 7.253-4.693 14.507-8.96 22.187-13.227 3.84-2.133 7.68-3.84 11.52-5.973 2.133-0.853 3.84-1.707 5.973-2.56 9.813-4.267 20.053-8.107 30.293-11.52l6.4-2.133c2.133-0.427 4.267-1.28 6.4-1.707 4.267-1.28 8.533-2.133 12.8-3.413 2.133-0.427 4.267-0.853 6.4-1.28l12.8-2.56h3.413c0-0.427 2.987-0.853 2.987-0.853l6.4-0.853c2.56-0.427 4.693-0.427 7.253-0.853l7.253-0.853c1.707 0 2.987 0 4.693-0.427h2.987c0 0 1.707-0.427 1.707-0.427h1.707c2.56 0 4.693 0 7.253-0.427h3.84c0 0 0.853 0 0.853 0h1.707s6.4 0 6.4 0c24.32-0.853 48.64 0.853 72.96 5.12 30.293 5.547 59.733 15.36 87.467 29.013 25.6 12.373 49.493 28.16 71.253 46.507l7.68 6.827c2.56 2.133 4.693 4.693 7.253 6.827s4.693 4.693 7.253 6.827c2.133 2.133 4.693 4.693 6.827 6.827 23.893 25.173 44.373 53.76 60.16 84.48 0.427 1.28 1.28 2.133 1.707 3.413l5.12 10.24c0.853 2.133 2.133 4.267 2.987 6.4l2.987 6.4c8.107 18.347 14.507 37.547 19.2 57.173 0.853 3.84 4.693 6.4 8.533 5.973 4.267 0 7.253-3.84 7.253-7.68 0.427-10.667 0-22.613-0.853-36.693v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["grafana"],"grid":0},"attrs":[{}],"properties":{"order":418,"id":55,"name":"grafana","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M871.68 540.16c-8.96-111.36-82.773-224.853-219.733-337.493-110.507-90.88-232.107-155.307-279.467-178.347l-0.853-1.28h-0.853l-0.853-0.853c-11.093-5.973-18.347-8.96-20.48-10.24l-27.307-11.947-14.080 26.88c-168.96 333.227-201.387 578.56-96 728.32 93.013 132.267 263.68 152.32 356.267 152.32 14.507 0 28.587-0.853 40.96-1.28h1.28l0.853 1.28c22.613 40.107 44.8 75.52 66.56 104.533 5.12 6.4 12.373 11.093 21.333 11.52 8.96 0.853 17.493-2.133 24.32-7.253l0.853-0.853c12.373-11.093 14.080-29.44 3.84-42.24-19.2-25.6-39.68-56.32-59.307-92.16l-1.28-2.133 2.133-1.28c143.787-103.253 211.2-216.747 201.813-337.493zM575.147 844.373c-1.28 0-2.987 0-5.12 0-190.293 0-273.92-78.507-305.92-125.013-81.067-116.48-59.307-319.573 64.427-587.52l2.987-7.253 2.133 7.253c43.093 165.547 131.84 477.867 243.627 708.267l2.133 3.84-4.267 0.427zM641.707 820.48l-2.987 2.133-1.28-2.987c-109.653-224-199.68-539.307-243.627-706.987l-1.707-5.973 5.973 2.987c67.413 37.12 165.547 97.28 248.747 172.8 101.12 90.027 155.307 178.773 161.707 263.68 7.253 93.44-49.067 186.453-166.827 274.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["verde"],"grid":0},"attrs":[{}],"properties":{"order":335,"id":56,"name":"greenery","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M921.6 230.4h-204.8v-102.4c0-55.467-46.933-102.4-102.4-102.4h-204.8c-55.467-0-102.4 46.933-102.4 102.4v102.4h-204.8c-55.467 0-102.4 46.933-102.4 102.4v563.2c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-46.933 102.4-102.4v-563.2c0-55.467-46.933-102.4-102.4-102.4zM614.4 230.4h-204.8v-102.4h204.8c0 0 0 102.4 0 102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["greuge"],"grid":0},"attrs":[{}],"properties":{"order":336,"id":57,"name":"greuge","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["grid"],"grid":0},"attrs":[{}],"properties":{"order":337,"id":58,"name":"grid","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M984.32 721.92c11.52-48.213 14.507-93.013 11.093-136.96-4.267-40.96-14.507-75.947-32.853-108.373-30.72-55.040-77.653-93.44-139.093-113.493-7.253-2.133-14.507-4.267-22.613-5.973l-13.227-2.987 14.080-2.133c10.24-1.28 20.48-3.84 29.867-5.12l5.12-0.853c32-5.973 65.28-11.52 97.28-21.333 24.32-7.253 45.227-19.627 64.427-32.853l5.973-4.267-5.12-5.12c-4.267-4.267-9.387-9.387-14.080-14.080-14.507-14.507-29.44-29.44-45.227-42.24-57.173-46.080-109.653-70.4-167.68-77.653-41.813-5.12-81.92-0.853-118.613 14.080-11.52 4.267-22.613 10.24-30.72 14.507l-2.133 1.28-1.28-2.133c-8.96-16.213-20.48-30.72-35.84-43.947-29.867-24.747-65.707-36.693-107.52-33.707h-2.987l-0.853-2.987c-7.253-20.48-19.2-38.827-35.84-55.040-49.493-46.507-123.307-54.187-180.907-17.493-24.32 15.36-42.667 35.84-54.187 62.293l-1.28 3.84-3.84-0.853c-14.080-2.133-27.733-2.133-43.093 0-35.84 4.267-69.547 23.467-93.44 52.48-25.6 31.573-36.693 70.827-31.573 111.787 2.987 24.747 11.52 46.933 25.6 66.56 0 0.853 0.853 0.853 0.853 0.853l0.853 1.28-1.28 2.133c-24.747 30.72-35.84 65.28-32.853 103.68 3.84 49.92 26.88 89.173 70.4 116.48 25.6 16.64 56.32 23.467 90.027 20.48l2.133-0.853 0.853 2.133c8.96 24.747 23.467 45.227 42.24 61.44 24.747 21.333 52.48 32 82.773 34.56 2.133 0 2.987 0.853 5.12 3.84l47.36 64.427c18.347 24.32 36.693 49.92 55.040 74.667 3.84 5.12 3.84 8.107 2.133 11.52-2.987 6.4-4.267 14.080-6.4 19.627v0.853c-0.853 2.987-1.28 5.973-2.133 8.96l-14.507 47.36c-9.387 29.867-18.347 60.16-27.733 89.173-3.84 11.52-2.133 21.76 2.987 29.867 5.973 8.107 15.36 11.52 27.733 11.52h176.213c7.253 0 14.507 0 21.76 0 19.627 0 39.68 0 59.307 0 8.96 0 16.213-2.133 21.76-7.253 12.373-11.093 11.093-24.747 7.253-35.84l-13.227-43.093c-12.373-40.96-24.747-82.773-37.12-125.013-0.853-3.84-0.853-5.973 1.28-9.387 31.573-49.92 62.293-100.267 93.013-149.333l37.973-60.587c1.28-2.133 2.987-5.12 5.12-7.253l2.133-2.987 57.6 66.56c22.613 26.453 46.933 54.187 72.96 78.080 18.347 16.64 40.107 27.733 61.44 37.973l6.4 2.987 5.12-21.333c1.28-8.107 3.413-16.213 5.973-24.747zM610.133 329.813c17.493-25.6 26.453-54.187 25.6-85.76 0-3.84 0.853-5.12 4.267-7.253 37.973-24.32 76.8-33.707 120.747-29.44 39.68 4.267 76.8 19.627 116.907 47.36 5.12 3.84 11.093 7.253 16.64 12.373l4.267 3.84-5.12 1.28c-11.093 2.987-21.76 5.12-31.573 6.4-22.613 4.267-44.8 8.107-66.56 11.52-29.44 5.12-59.307 10.24-89.173 16.64-25.6 5.12-59.307 13.227-93.013 25.6l-8.107 2.987 5.12-5.547zM320.427 603.307c-21.333 0-41.813-8.107-57.6-24.32-16.213-15.36-25.6-34.987-27.733-60.16-0.853-5.12-0.853-9.387-1.28-14.507l-1.28-14.080h-6.4c-8.96 0.853-16.64 4.267-24.32 7.253l-2.987 1.28c-21.76 8.96-46.933 8.107-67.84-2.133-21.76-10.24-39.68-29.867-46.933-53.333-11.52-33.707 0.853-72.533 30.293-94.72l29.44-21.76-3.84-5.12c-4.267-6.4-10.24-11.093-16.213-15.36l-0.853-0.853c-1.28-1.28-3.84-2.987-5.12-3.84-21.76-18.347-32.853-41.813-32-67.84 0.853-38.827 21.76-68.693 58.453-81.92 20.48-7.253 40.96-6.4 62.293 2.133l34.56 14.507 2.133-6.4c2.987-8.107 4.267-16.213 5.12-24.32l1.28-7.253c5.973-32 32.853-67.84 79.787-70.4 30.72-1.28 56.32 10.24 75.52 36.693 10.24 14.080 15.36 30.72 16.64 52.053 0.853 6.4 0.853 13.227 2.987 19.627l1.28 5.973 16.64-5.973c5.973-2.133 11.52-4.267 17.493-5.973 40.107-14.507 84.907 2.987 104.533 40.107 16.213 29.867 14.507 60.587-4.267 91.307-7.253 11.52-18.347 20.48-30.72 28.587l-3.84 2.987c-7.253 5.12-10.24 8.107-10.24 12.373s2.987 8.107 9.387 13.227c11.52 10.24 23.467 20.48 31.573 34.56 14.080 22.613 15.36 52.053 4.267 78.080s-32 44.8-60.587 51.2c-16.64 4.267-34.56 2.133-52.053-5.12-5.12-2.133-10.24-4.267-15.36-6.4l-18.347-8.107-1.28 5.12c-2.987 7.253-3.84 14.080-5.12 20.48l-0.853 5.12c-5.12 29.44-19.627 51.2-44.8 65.28-13.227 7.68-27.733 11.947-41.813 11.947zM657.067 655.787c-28.587 46.080-54.187 87.040-80.64 129.707-5.973 9.387-6.4 19.2-2.987 31.573l32.853 110.507c3.84 11.093 6.4 21.76 9.387 32.853l0.853 3.84h-3.84c-15.36 0-30.72 0-46.080 0h-19.627c-34.56 0-70.827 0-108.373 1.28h-3.413l0.853-3.84c1.28-5.12 2.987-10.24 4.267-15.36 0.853-2.987 2.133-6.4 2.987-9.387 13.227-43.947 24.747-80.64 35.84-114.773 5.12-15.36 2.133-29.44-7.253-42.24-23.467-31.573-47.36-63.573-68.693-93.013l-25.6-34.56 2.987-1.28c24.747-11.52 43.947-27.733 59.307-49.067 5.12-7.253 9.387-15.36 13.227-22.613l1.28-3.84 3.84 0.853c21.76 3.84 43.093 2.133 62.72-3.84 50.347-15.36 84.053-48.213 100.267-98.56l0.853-3.84 3.84 0.853c22.613 3.84 41.813 16.64 60.587 30.72 10.24 7.253 19.2 16.213 28.587 24.32 3.84 3.84 8.107 7.253 12.373 10.24l2.133 1.28-72.533 118.187zM935.68 632.747c-0.853 11.52-1.28 22.613-2.987 33.707l-0.853 5.973-9.387-10.24c-20.48-21.76-40.107-45.227-59.307-67.413-14.507-16.64-30.72-35.84-46.933-53.333-25.6-27.733-53.333-57.6-85.76-83.2-17.493-14.080-34.56-24.747-51.2-32.853l-6.4-2.987 6.4-2.133c5.973-1.28 11.52-2.987 18.347-4.267 46.933-8.107 90.88-2.987 129.707 16.213 52.053 25.6 85.76 67.84 100.267 128 7.68 22.613 9.813 46.933 8.107 72.533z","M328.533 215.467h-2.133c-63.573 0.853-113.493 52.053-113.493 116.48 0 31.573 11.52 60.587 33.707 82.773 21.333 21.333 50.347 33.707 81.92 33.707 64.427 0 115.627-51.2 115.627-115.627 0-31.573-11.52-60.587-33.707-81.92-21.76-23.040-51.2-35.413-81.92-35.413zM327.68 387.413c-14.507 0-28.587-5.973-38.827-16.64-9.813-11.093-15.787-25.173-15.787-39.68 0.853-31.573 24.32-55.467 55.467-55.467 14.507 0 27.733 5.973 37.973 16.213 11.093 11.093 16.64 25.6 16.64 40.107 0.427 30.72-24.747 55.467-55.467 55.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["confeccion"],"grid":0},"attrs":[{},{}],"properties":{"order":338,"id":59,"name":"handmade","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M459.093 418.987c0-1.28 0-2.133 0-2.987v-157.013c0-3.84-0.853-5.973-2.133-6.827-1.28-1.28-3.84-2.133-7.253-2.133-0.853 0-2.133 0-2.987 0h-149.76c-1.28 0-2.987 0-3.84 0-2.987 0-5.12 1.28-5.973 1.28-1.28 1.28-2.133 3.84-2.133 5.973 0 1.28 0 2.133 0 3.84v162.133h172.8l1.28-4.267zM403.627 307.627c0 6.827 0 13.227 0 20.053v17.067c0 6.827 0 13.227 0 20.48v2.987h-2.987c-19.2 0-38.4 0-58.027 0h-2.987v-2.987c0-19.2 0-38.4 0-58.027v-2.987h2.987c19.2 0 37.547 0 58.027 0h1.28l1.707 3.413z","M1008.213 669.013c-0.853-2.987-1.28-5.12-2.987-8.107l-102.4-282.88c-6.827-15.36-16.213-14.080-16.213-14.080l-124.587 29.44 8.96-6.827 70.827-49.493 144.213-101.547-289.28-72.107c-4.267-0.853-8.96-2.133-12.373-2.987-7.253-1.28-10.24 1.28-13.227 6.827-0.853 0.853-0.853 2.133-1.28 2.987v0l-2.987 5.12-66.56-115.627c-2.987-5.973-5.12-8.107-8.107-8.96s-5.973 0.853-11.093 3.84l-20.053 11.093c-14.933 8.96-29.44 17.067-44.373 25.6l-4.267 2.133-0.853-4.267v-17.067c0-10.24 0-20.053 0-30.293 0-3.84 0-7.253 0-11.093 0-8.96 0-17.493-0.853-25.6v-4.267h-262.827c-12.373 0.853-15.36 10.24-15.36 15.36v2.133c0 23.467 0 46.933 0 70.827v4.267l-4.267-2.133c-5.12-2.987-10.24-5.973-15.36-8.96l-12.373-6.827c-13.227-7.253-27.307-15.36-40.533-23.467-2.133-1.28-5.12-2.987-8.107-1.28-2.987 0.853-4.267 4.267-5.12 5.973 0 0.853-0.853 1.28-1.28 2.987l-134.827 230.4 2.987 1.28c12.373 8.107 25.6 15.36 38.827 22.613 1.28 0.853 2.987 1.28 3.84 2.133v0l36.693 18.347-20.48 11.947c0 0-0.853 0-0.853 0.853l-61.013 35.413 1.28 2.987c14.080 27.307 130.987 231.253 138.24 238.507l1.28 2.133 45.653-25.6 34.56-22.187-1.28 49.92c0 11.947 0 22.613 0 33.707 0 2.133 0 5.973 2.133 8.96 2.133 2.133 5.973 2.133 7.253 2.133 3.84 0 8.107 0 12.373 0.853h0.853c4.267 0.853 8.96 0.853 12.373 0.853 5.12 0 10.24 0 15.36 0 6.827 0 13.227 0 20.053 0 0.853 0 0.853 0 1.28 0 5.12 0 8.96 2.133 13.227 6.827 29.44 37.547 61.867 78.080 98.56 122.88 3.84 4.267 4.267 8.107 2.987 13.227-14.080 43.52-28.587 86.187-42.667 129.707l-20.48 58.027c-1.28 4.267-0.853 8.96 1.28 13.227 2.987 3.84 6.827 5.973 11.947 5.973h325.547l-1.28-7.253c-0.853-1.28-0.853-2.987-0.853-4.267l-13.227-44.8c-14.080-48.64-28.587-98.56-43.52-149.333-2.133-7.253-1.28-12.373 2.987-20.053 32.427-51.627 64.853-103.68 97.28-155.307l28.16-44.8c0.853-0.853 1.28-2.133 1.28-2.987l2.133 0.853 0.853-2.987c1.28 0 2.987 0.853 5.973 2.133l223.147 83.2c2.133 0.853 4.267 1.28 7.253 2.133l10.24 3.84-4.693-16.213zM727.893 294.4c3.84-2.133 4.267-5.973 2.987-9.387l-6.827-11.093c-5.12-9.387-11.093-18.347-16.213-28.16l-19.2-29.44 126.72 30.72 42.667 14.080-19.2 12.373-33.707 22.187c-33.707 22.187-67.84 43.52-101.547 65.707-1.28 1.28-2.987 1.28-4.267 1.28s-2.133-0.853-3.84-1.28c-11.093-6.827-22.187-13.227-33.28-20.053l-8.107-4.267 73.813-42.667zM293.547 617.387h-6.827v-133.547l-5.12 2.56c-12.373 5.973-24.32 13.227-36.267 20.053l-0.853 0.853c-6.827 3.84-13.227 8.107-20.053 11.947-13.227 7.253-27.307 15.36-38.827 22.613l-14.933 8.96-4.267-8.107c-4.267-7.253-8.96-14.933-13.227-22.187-22.187-37.547-43.52-75.947-64.853-113.493l-2.133-3.84 3.84-2.133 97.707-56.747c1.28-0.853 2.987-2.133 5.12-2.987l8.107-5.12-103.253-60.16c-5.973-3.84-8.107-11.093-4.267-17.067l72.96-125.867c3.84-5.973 11.093-8.107 17.067-4.267l93.44 53.76c2.133 1.28 4.267 1.28 6.827 0 2.133-1.28 3.84-3.84 3.84-5.973v-5.973c0-8.96 0.853-16.213 0.853-24.32 0-17.493 0-35.413 0-52.907v-38.4h3.84c53.76 0 108.373 0 162.133 0h3.84v121.6c0 2.133 1.28 5.12 3.84 5.973s5.12 1.28 7.253 0l94.293-53.76c5.973-3.84 14.080-1.28 17.067 4.267l49.92 87.467c8.96 14.933 17.067 29.44 25.6 44.8l2.133 4.267-105.387 60.16c-2.133 1.28-2.987 3.84-2.987 5.973s1.28 4.267 3.84 5.973l93.013 55.040c5.973 3.84 8.107 11.093 4.267 17.067l-72.96 125.867c-1.28 2.987-4.267 5.12-7.253 5.973s-6.827 0.853-9.387-1.28l-99.413-58.027-2.133 2.987c-2.987 2.987-2.987 6.827-2.133 10.24v89.173c0 9.387 0 17.493-1.28 26.453l-0.853 2.133h-3.84c-0.853 0-1.28 0-2.133 0-51.627-0-104.107 0.853-156.16-0zM704 584.533l-69.973 111.787c-20.053 30.72-38.827 62.72-58.88 93.44-3.84 5.973-4.267 11.093-2.133 18.347 11.093 38.827 22.613 77.227 33.707 116.48l12.373 43.52h-4.693l-148.907-0.853c-5.12 0-10.24 0-15.36 0h-22.613l9.387-30.293c13.227-41.813 28.16-85.333 41.813-127.147 2.987-8.107 1.28-13.227-3.84-20.053-25.173-30.72-49.493-61.867-78.933-97.707l-14.080-17.493h119.467c5.12 0 7.253 0 8.96-2.133 2.133-2.133 2.133-4.267 2.133-10.24v-81.067l4.267 2.987c1.28 0.853 2.133 1.28 3.84 2.133 11.947 6.827 22.613 13.227 34.56 20.053l28.587 17.067c8.107 4.267 10.24 3.84 14.933-3.84l40.533-69.12c0.853-0.853 0.853-1.28 1.28-2.133l1.28-1.28 4.267 1.28c17.493 6.827 34.56 13.227 52.48 19.2 3.84 1.28 6.827 4.267 7.253 7.253 1.28 2.133 0 5.973-1.707 9.813zM863.147 568.32l-193.707-72.107 2.133-4.267c3.84-6.827 7.253-13.227 11.093-20.053 0.853-1.28 2.133-1.28 5.12-2.133l119.893-28.587c14.933-3.84 28.587-6.827 43.52-10.24l7.253-0.853 7.253 7.253v0.853c11.093 30.293 21.333 59.733 32.427 89.6l26.453 64-61.44-23.467z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["handmadeArtificial"],"grid":0},"attrs":[{},{}],"properties":{"order":339,"id":60,"name":"handmadeArtificial","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M362.667 1024h302.933v-678.4h-302.933v678.4zM0 1024h302.933v-678.4h-302.933v678.4zM721.067 345.6v678.4h302.933v-678.4h-302.933z","M362.667 281.6h302.933v-281.6h-302.933v281.6zM0 281.6h302.933v-281.6h-302.933v281.6zM721.067 0v281.6h302.933v-281.6h-302.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["headercol"],"grid":0},"attrs":[{},{}],"properties":{"order":340,"id":61,"name":"headercol","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM563.2 768h-102.4v-307.2h102.4v307.2zM563.2 358.4h-102.4v-102.4h102.4v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["info"],"grid":0},"attrs":[{}],"properties":{"order":341,"id":62,"name":"info","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M273.067 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M512 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z","M750.933 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c4.267 8.533 8.533 12.8 12.8 12.8z","M644.267 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-217.6v-221.867h4.267z","M401.067 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M162.133 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z","M153.6 422.4h780.8v38.4h-844.8v-38.4z","M68.267 1002.667h-42.667v-981.333h42.667v908.8z","M89.6 921.6v-38.4h844.8v38.4z","M998.4 1002.667h-42.667v-981.333h42.667z"],"attrs":[{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{}]},"tags":["inventory"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{}],"properties":{"order":342,"id":63,"name":"inventory","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M320 384h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 490.667h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v682.667c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-682.667c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM42.667 917.333v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-554.667c-34.133 0-64-29.867-64-64z","M657.067 712.533c-12.8 8.533-25.6 12.8-42.667 12.8-12.8 0-25.6-4.267-38.4-12.8-8.533-4.267-12.8-12.8-21.333-21.333h64c4.267 0 8.533-4.267 12.8-4.267 0 0 4.267-4.267 4.267-12.8 0-4.267 0-8.533-4.267-12.8 0 0-4.267-4.267-12.8-4.267h-72.533c0 0 0 0 0-4.267 0 0 0-4.267 0-4.267h89.6c4.267 0 8.533-4.267 12.8-4.267 4.267-4.267 4.267-8.533 4.267-12.8s0-8.533-4.267-12.8c0 0-4.267-4.267-12.8-4.267h-76.8c4.267-8.533 12.8-12.8 17.067-21.333 12.8-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 0 21.333 4.267s12.8 4.267 17.067 8.533c4.267 4.267 12.8 4.267 17.067 4.267 0 0 4.267-4.267 4.267-4.267s4.267-4.267 4.267-4.267c0-4.267 4.267-4.267 4.267-8.533s0-8.533-4.267-12.8c-8.533-8.533-17.067-12.8-29.867-17.067-17.067 4.267-46.933 4.267-72.533 17.067-12.8 4.267-25.6 12.8-34.133 25.6-8.533 8.533-12.8 21.333-17.067 29.867h-17.067c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h8.533c0 0 0 4.267 0 4.267s0 0 0 4.267h-8.533c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h12.8c4.267 12.8 8.533 21.333 17.067 34.133s21.333 21.333 34.133 25.6c12.8 4.267 25.6 8.533 42.667 8.533 25.6 0 46.933-8.533 64-21.333 8.533-8.533 8.533-12.8 8.533-21.333 0-4.267 0-8.533-4.267-12.8-8.533-4.267-12.8-4.267-21.333 0z"],"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}],"125525525519595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}],"12043441125524245125525525513111218319595951":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]},"tags":["invoice"],"grid":0},"attrs":[{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"},{"fill":"rgb(95, 95, 95)"}],"properties":{"order":343,"id":64,"name":"invoice","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6 153.6-68.267 153.6-153.6-68.267-153.6-153.6-153.6zM243.2 379.733h-81.067v42.667c0 8.533-4.267 12.8-12.8 8.533l-98.133-55.467c-8.533-4.267-8.533-12.8 0-17.067l98.133-55.467c8.533-4.267 12.8 0 12.8 8.533v42.667h81.067c8.533 0 17.067 8.533 17.067 17.067 0 0-4.267 8.533-17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{}]},"tags":["invoiceIn"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":344,"id":65,"name":"invoice-in","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M153.6 516.267c-85.333 0-153.6-68.267-153.6-153.6s68.267-153.6 153.6-153.6 153.6 68.267 153.6 153.6-68.267 153.6-153.6 153.6zM243.2 354.133h-81.067v-42.667c0-8.533-4.267-12.8-12.8-8.533l-98.133 55.467c-8.533 4.267-8.533 12.8 0 17.067l98.133 55.467c8.533 4.267 12.8 0 12.8-8.533v-42.667h81.067c12.8 0 17.067-8.533 17.067-8.533 0-8.533-8.533-17.067-17.067-17.067zM153.6 554.667c5.547 0 11.52-0.427 17.067-0.853v235.52c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-236.373c8.533 1.28 17.067 1.707 25.6 1.707zM344.32 384c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-317.013zM917.333 149.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v317.44c-29.44-9.387-61.013-14.507-93.867-14.507-53.76 0-104.533 14.080-148.907 38.4h-241.92c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h189.013c-21.76 20.053-40.533 43.093-55.893 68.693-1.707-0.427-3.413-0.427-5.12-0.427h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h112.213c-14.507 35.413-22.613 74.24-22.613 115.2 0 49.067 11.52 95.573 32 136.533h-420.267c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c15.36 0 29.867-2.987 43.093-8.96 134.4-32.853 234.24-154.027 234.24-298.24 0-120.747-69.547-224.853-170.667-275.2v-334.933c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h424.533c24.747 34.56 56.747 63.573 93.44 85.333h-432.64zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["invoice-in-create"],"grid":0},"attrs":[{}],"properties":{"order":345,"id":66,"name":"invoice-in-create","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z","M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z","M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z","M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z","M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z","M153.6 209.067c85.333 0 153.6 68.267 153.6 153.6s-68.267 153.6-153.6 153.6-153.6-68.267-153.6-153.6 68.267-153.6 153.6-153.6zM64 379.733h81.067v42.667c0 8.533 4.267 12.8 12.8 8.533l98.133-55.467c8.533-4.267 8.533-12.8 0-17.067l-98.133-55.467c-8.533-4.267-12.8 0-12.8 8.533v42.667h-81.067c-8.533 0-17.067 8.533-17.067 17.067 0 0 4.267 8.533 17.067 8.533z"],"attrs":[{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{}]},"tags":["invoiceOut"],"grid":0},"attrs":[{},{},{},{},{},{},{}],"properties":{"order":346,"id":67,"name":"invoice-out","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M512 4.267c-279.893 0-507.733 227.84-507.733 507.733s227.84 507.733 507.733 507.733 507.733-227.84 507.733-507.733-227.84-507.733-507.733-507.733zM512 975.787c-255.573 0-463.787-207.787-463.787-463.787s208.213-463.787 463.787-463.787c255.573 0 463.787 207.787 463.787 463.787s-208.213 463.787-463.787 463.787z","M833.707 253.867c-95.147-79.36-198.827-120.32-308.053-122.453-167.253-3.413-290.56 88.747-349.013 143.787l-6.827 6.4 185.6 273.92 9.387-7.253c15.787-12.373 31.573-22.187 46.933-29.867l41.387 72.107c-5.973 11.947-8.107 25.6-5.973 39.68 5.547 36.267 39.68 61.013 75.52 55.040 36.267-5.547 61.013-39.68 55.040-75.52-5.547-36.267-39.68-61.013-75.52-55.040-3.413 0.427-6.4 1.28-9.387 2.133l-43.52-53.333c40.107-12.373 69.547-10.667 69.973-10.667 0.853 0 66.133 4.267 131.413 53.333l9.813 7.253 180.907-293.547-7.68-5.973zM540.16 615.68c2.133 14.933-8.107 29.013-23.040 31.573-14.933 2.133-29.013-8.107-31.573-23.040-2.133-14.933 8.107-29.013 23.040-31.573s29.013 7.68 31.573 23.040zM654.080 521.387c-67.413-46.507-130.987-50.347-133.547-50.773-2.133 0-38.4-2.56-86.613 14.507l-137.387-166.4 104.107 180.48c-13.227 6.4-26.453 14.507-40.107 24.32l-161.707-238.933c19.627-17.92 46.080-39.253 78.507-59.307l32 55.040 19.2-11.093-32.427-55.040c53.333-30.72 120.32-56.32 198.4-60.16v74.667h22.187v-75.093c2.987 0 5.547 0 8.533 0 65.28 1.28 128.427 17.493 189.013 47.787l-36.693 68.267 19.627 10.667 36.693-68.267c26.88 14.933 52.907 32.427 78.507 53.333l-158.293 256z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["isTooLittle"],"grid":0},"attrs":[{},{}],"properties":{"order":349,"id":68,"name":"isTooLittle","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M593.067 827.733v-29.867l8.533-12.8c42.667 38.4 102.4 59.733 166.4 59.733 140.8 0 251.733-115.2 251.733-251.733 0-140.8-115.2-251.733-251.733-251.733-140.8 0-251.733 115.2-251.733 251.733 0 64 21.333 119.467 59.733 166.4l-12.8 8.533h-29.867l-192 196.267 59.733 59.733 192-196.267zM772.267 418.133c98.133 0 174.933 76.8 174.933 174.933s-76.8 174.933-174.933 174.933c-98.133 0-174.933-76.8-174.933-174.933-4.267-93.867 76.8-174.933 174.933-174.933z","M460.8 849.067v0-4.267z","M0 0h102.4v849.067h-102.4v-849.067z","M1024 371.2v-371.2h-102.4v290.133c38.4 21.333 72.533 46.933 102.4 81.067z","M456.533 729.6c-17.067-42.667-25.6-85.333-25.6-132.267 0-51.2 12.8-93.867 29.867-136.533v-460.8h-153.6v849.067h29.867l119.467-119.467z","M204.8 0h51.2v849.067h-51.2v-849.067z","M772.267 256c17.067 0 34.133 0 46.933 4.267v-260.267h-51.2l4.267 256c-4.267 0-4.267 0 0 0z","M665.6 273.067v-273.067h-102.4c0 0 0 170.667 0 328.533 29.867-25.6 64-42.667 102.4-55.467z"],"attrs":[{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{}]},"tags":["item"],"grid":0},"attrs":[{},{},{},{},{},{},{},{}],"properties":{"order":350,"id":69,"name":"item","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M961.28 384.853c0-212.48-172.373-384.853-384.853-384.853s-384.427 172.373-384.427 384.853c0 26.88 3.413 52.907 7.68 77.653-75.52 0-136.96 61.44-136.96 136.96v159.573c0 75.52 61.44 136.96 136.96 136.96h23.893c-1.707 17.92-5.973 38.4-14.507 61.013-7.68 19.2-2.133 42.24 14.080 55.040 9.813 7.68 20.48 11.947 32.427 11.947 8.533 0 16.213-2.133 24.747-6.4 55.040-31.147 101.12-81.92 132.693-122.88h55.040c72.107 0 131.413-55.893 136.96-127.147 199.253-14.080 356.267-180.053 356.267-382.72zM855.893 556.373c-26.027-10.667-52.907-20.48-79.787-28.16 7.68-36.693 12.8-75.52 14.080-116.48h113.067c-4.267 53.76-21.333 102.4-47.36 144.64zM855.893 212.48c26.027 43.093 43.093 91.733 47.36 144.64h-113.067c-2.133-40.96-6.4-79.787-14.080-116.48 26.88-8.96 53.76-17.493 79.787-28.16zM820.48 165.12c-19.2 7.68-38.827 14.080-60.16 19.2-11.947-37.547-28.16-71.253-46.507-98.133 40.533 19.627 77.227 46.507 106.667 78.933zM605.867 62.72c37.547 16.213 75.52 63.573 98.987 134.827-32.427 5.547-64.853 8.533-98.987 10.667 0 0 0-145.493 0-145.493zM605.867 264.96c38.827-1.28 77.653-5.547 114.347-11.947 6.4 31.147 11.947 65.707 12.8 103.68h-127.147v-91.733zM605.867 413.013h127.147c-1.28 37.547-6.4 72.107-12.8 103.68-36.693-6.4-75.52-10.667-114.347-11.947 0-0.427 0-91.733 0-91.733zM425.813 461.227c-2.133-16.213-3.413-32.427-4.267-49.493h127.147v74.24c-22.613-16.213-49.493-26.027-79.787-26.027h-43.093v1.28zM548.693 355.84h-127.147c1.28-37.547 6.4-72.107 12.8-103.68 36.693 6.4 75.52 10.667 114.347 11.947 0 0 0 91.733 0 91.733zM548.693 62.72v145.493c-34.56-1.28-66.987-5.547-98.987-10.667 24.747-70.4 61.013-119.040 98.987-134.827zM440.747 86.187c-18.347 28.16-34.56 61.44-46.507 98.133-20.48-5.547-40.96-11.947-60.16-19.2 29.013-32.427 65.707-59.307 106.667-78.933zM298.667 212.48c26.027 10.667 52.907 20.48 80.64 28.16-8.533 36.693-12.8 75.52-14.080 116.48h-113.92c4.267-53.333 21.333-102.827 47.36-144.64zM364.373 413.013c1.28 17.067 2.133 33.28 3.413 49.493h-107.947c-4.267-16.213-7.68-32.427-8.533-49.493h113.067zM548.693 757.76c0 44.373-35.413 79.787-79.787 79.787h-69.12c-8.533 0-17.067 4.267-22.613 11.947-20.48 28.16-59.307 75.52-105.813 107.947 10.667-36.693 11.947-69.12 10.667-91.733-1.28-14.933-12.8-26.88-28.16-26.88h-52.48c-44.373 0-79.787-35.413-79.787-79.787v-160.427c0-44.373 35.413-79.787 79.787-79.787h267.52c44.373 0 79.787 35.413 79.787 79.787v159.147zM605.867 706.133v-107.947c0 0 0 0 0-1.28v-36.693c34.56 1.28 66.987 4.267 98.987 10.667-23.467 70.4-61.44 119.040-98.987 135.253zM713.387 682.24c18.347-28.16 34.56-60.16 46.507-98.133 20.48 5.547 40.96 11.947 60.16 19.2-29.013 32.853-65.707 59.733-106.667 78.933z","M442.88 593.92h-215.467c-16.213 0-28.16 12.8-28.16 28.16 0 14.933 12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z","M442.88 701.867h-215.467c-16.213 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["languaje"],"grid":0},"attrs":[{},{},{}],"properties":{"order":351,"id":70,"name":"languaje","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M0 145.067h1024v149.333h-1024v-149.333zM0 435.2h1024v149.333h-1024v-149.333zM0 729.6h1024v149.333h-1024v-149.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["lineas"],"grid":0},"attrs":[{}],"properties":{"order":352,"id":71,"name":"lines","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M870.4 102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h716.8c55.467 0 102.4-46.933 102.4-102.4v-716.8c0-55.467-46.933-102.4-102.4-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2 21.333-51.2 51.2-51.2zM614.4 819.2h-358.4v-102.4h358.4v102.4zM768 614.4h-512v-102.4h512v102.4zM768 409.6h-512v-102.4h512v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["linesprepaired"],"grid":0},"attrs":[{}],"properties":{"order":353,"id":72,"name":"linesprepaired","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M440.736 616.544l49.92 49.92-91.744 92.16h361.824v71.264h-361.376l91.744 91.744-49.92 50.336-177.92-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["link-to-corrected"],"grid":0},"attrs":[{},{}],"properties":{"order":415,"id":73,"name":"link-to-corrected","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z","M583.264 616.544l-49.92 49.92 91.744 92.16h-361.824v71.264h361.376l-91.744 91.744 50.336 50.336 177.504-177.504z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["link-to-correcting"],"grid":0},"attrs":[{},{}],"properties":{"order":416,"id":74,"name":"link-to-correcting","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["logout"],"grid":0},"attrs":[{}],"properties":{"order":354,"id":75,"name":"logout","prevSize":32,"code":59763},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M529.067 465.067c0-17.067 12.8-29.867 29.867-29.867s29.867 12.8 29.867 29.867c0 17.067-12.8 29.867-29.867 29.867s-29.867-12.8-29.867-29.867zM614.4 635.733c21.333 0 38.4-17.067 38.4-38.4s-17.067-38.4-38.4-38.4c-21.333 0-38.4 17.067-38.4 38.4 0 17.067 17.067 38.4 38.4 38.4zM473.6 345.6c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6-25.6 12.8-25.6 25.6c0 17.067 12.8 25.6 25.6 25.6zM802.133 657.067v4.267c-4.267 157.867-132.267 285.867-290.133 285.867s-285.867-128-290.133-285.867v-4.267h580.267zM584.533 721.067c0-17.067-12.8-29.867-29.867-29.867s-29.867 12.8-29.867 29.867 12.8 29.867 29.867 29.867c17.067 0 29.867-12.8 29.867-29.867zM401.067 695.467c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933zM456.533 605.867c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933zM878.933 657.067c0 200.533-162.133 366.933-366.933 366.933s-366.933-162.133-366.933-366.933c0-136.533 72.533-260.267 192-324.267v-187.733c-21.333-4.267-38.4-21.333-38.4-42.667v-59.733c0-25.6 21.333-42.667 42.667-42.667h332.8c25.6 0 42.667 21.333 42.667 42.667v55.467c0 21.333-17.067 42.667-38.4 42.667v192c123.733 68.267 200.533 192 200.533 324.267zM840.533 657.067c0-128-76.8-243.2-192-298.667h-4.267v-256h34.133c4.267 0 4.267-4.267 4.267-4.267v-55.467c0-4.267-4.267-4.267-4.267-4.267h-332.8c-4.267 0-8.533 4.267-8.533 4.267v55.467c0 4.267 4.267 4.267 4.267 4.267h34.133v256h-4.267c-115.2 51.2-192 170.667-192 298.667 0 179.2 145.067 328.533 328.533 328.533s332.8-145.067 332.8-328.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["mana"],"grid":0},"attrs":[{}],"properties":{"order":355,"id":76,"name":"mana","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M981.333 234.667v618.667c0 93.867-76.8 170.667-170.667 170.667h-311.467c-46.933 0-89.6-17.067-119.467-51.2l-337.067-341.333c0 0 55.467-51.2 55.467-55.467 8.533-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 4.267 25.6 8.533 0 0 183.467 106.667 183.467 106.667v-507.733c0-34.133 29.867-64 64-64s64 29.867 64 64v298.667h42.667v-405.333c0-34.133 29.867-64 64-64s64 29.867 64 64v405.333h42.667v-362.667c0-34.133 29.867-64 64-64s64 29.867 64 64v362.667h42.667v-234.667c0-34.133 29.867-64 64-64s64 29.867 64 64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["mandatory"],"grid":0},"attrs":[{}],"properties":{"order":356,"id":77,"name":"mandatory","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M487.253 870.827c-9.387-20.907-18.347-40.96-27.733-61.013-1.28-2.133-3.413-5.12-5.547-5.973-39.68-13.653-80.213-23.467-122.88-14.080-21.333 4.693-40.107 15.36-54.613 32-2.56 2.987-4.267 8.107-4.267 12.373-0.427 15.36 0 30.72 0 46.080 0 5.973 0.427 9.387 6.4 12.8 29.013 16.64 41.387 49.067 31.573 80.213s-39.68 49.92-73.387 46.507c-29.867-2.987-55.467-29.013-58.88-59.307-3.413-32.427 14.933-61.867 46.080-72.533 7.253-2.56 8.96-5.973 9.387-12.8 4.693-65.707-15.787-125.013-50.347-179.2-30.293-47.787-62.72-93.867-93.013-141.653-38.827-61.44-68.693-126.72-82.347-198.827-16.213-83.627-7.68-162.133 43.947-232.107 43.52-59.307 103.68-93.013 174.080-108.8 104.107-23.467 202.667-5.973 296.533 42.667 23.467 12.373 46.080 27.307 68.267 42.24 52.053 34.987 108.8 54.613 171.947 54.187 28.587 0 56.32-5.12 81.493-19.2 11.52-6.4 21.76-14.933 32-23.040 8.96-7.253 11.947-16.213 9.813-29.013-5.973-35.413 21.333-69.973 58.453-75.947 36.267-5.973 71.68 19.2 78.507 56.747 6.827 35.413-16.64 71.68-52.053 80.213-20.907 5.12-40.107 0-58.027-11.52-20.053 18.773-42.24 34.56-53.76 61.013-12.373 29.013-29.013 55.893-40.96 84.907-18.347 43.52-12.8 85.333 15.36 123.733 3.84 5.547 7.68 7.68 14.080 4.693 4.693-2.133 9.387-3.413 14.080-4.693 16.213-4.267 25.173-10.24 25.6-31.147 0-35.413 34.133-61.867 71.253-60.16 35.413 1.707 63.147 32 63.147 68.693 0 36.267-29.013 66.133-64.427 67.413-16.64 0.427-32-3.84-44.8-14.507-5.547-4.693-9.387-3.84-14.933-1.707-12.373 5.12-24.32 9.813-37.12 13.227-8.96 2.56-15.36 7.253-20.907 14.933-51.2 71.253-73.387 151.467-72.533 238.933 0 2.987 0.853 6.4 2.987 8.533 11.947 13.653 24.32 26.88 36.693 40.107 20.48-14.080 39.253-18.347 59.733-12.373 32 9.387 50.773 41.387 43.947 74.667-6.4 31.147-38.4 53.76-69.12 49.493-34.56-5.12-58.453-33.28-55.467-67.413 0.853-8.96-1.28-14.933-7.68-20.48-6.827-5.973-13.227-11.947-18.773-18.773-10.24-12.373-22.187-15.787-38.4-14.933-55.040 3.84-110.507 5.973-163.84 23.467-21.76 7.253-42.24 16.64-59.733 32.427 9.387 22.613 18.347 45.227 27.733 66.987 1.28 2.56 5.973 4.267 9.387 5.12 31.147 7.68 52.053 33.707 52.053 64.853s-20.907 57.6-50.773 64.853c-30.293 7.253-61.44-7.253-75.093-35.413s-6.4-61.013 18.347-81.493c2.133-1.707 4.693-3.413 8.533-6.4zM573.013 226.133c0 0.853-0.853 2.133-0.853 2.987 0 29.013 0 58.027 0.853 87.040 0 3.413 2.56 7.68 5.12 9.387 19.627 15.36 39.68 30.293 60.16 44.8 6.827 5.12 14.507 8.533 21.333 12.8 0-31.573 0-62.293 0-93.013 0-2.133-1.707-4.693-3.413-5.973-27.307-19.2-55.040-38.4-83.2-58.027zM636.16 542.293c-8.107 14.080-16.213 28.587-23.893 42.24 39.253 28.587 76.8 55.893 113.92 82.773 4.267-29.867 8.533-58.88 12.8-87.467-33.707-12.373-67.84-24.747-102.827-37.547zM697.173 695.040c-37.973-26.88-74.24-52.48-110.933-78.080-2.133-1.28-5.547-1.707-7.68-0.853-17.493 7.68-34.987 15.36-50.347 22.613 17.067 23.467 33.707 46.080 50.347 69.12 1.28 1.707 5.12 2.56 7.253 2.133 35.84-4.693 71.68-9.387 110.933-14.933zM561.067 365.653c-11.52 19.2-23.467 39.253-35.84 60.16 32.427 21.333 63.573 41.813 95.573 62.72 12.8-22.187 23.893-41.813 34.133-60.587-31.573-21.333-62.293-41.813-93.867-62.72zM699.307 188.16c0 23.893 0 46.933 0 69.973 0 2.133 2.56 5.547 4.693 5.973 20.48 6.4 41.387 11.947 62.293 17.92 5.547 1.707 7.68-1.28 9.813-6.827 6.827-18.347 14.507-36.267 22.187-54.187 4.693-11.093 11.093-21.333 17.493-33.707-40.107 8.533-78.933 7.68-116.48 0.853zM433.493 116.48c-0.853 0.853-1.707 1.707-2.987 2.56 8.107 30.72 16.213 61.44 24.32 91.733 0.853 3.413 3.84 6.827 6.4 9.387 21.333 19.627 42.667 39.253 64 58.88 1.707 1.707 4.267 2.987 6.827 5.12 0-30.293 0-59.307 0-87.893 0-2.56-1.28-5.973-3.413-7.253-31.573-24.32-63.573-48.213-95.573-72.107zM656.213 506.88c32.427 11.52 63.573 23.040 93.867 33.707 14.507-29.44 27.307-56.32 40.96-84.053-31.573 1.28-62.72-3.413-92.587-12.8-2.133-0.427-6.4 1.28-7.253 2.987-11.52 19.2-22.187 38.827-34.56 60.16zM452.693 267.093c-12.8 20.48-25.173 40.107-37.973 60.587 26.027 23.893 52.053 47.787 78.933 72.107 12.8-21.76 24.747-41.813 37.12-61.867-26.453-23.893-52.053-47.36-78.080-70.827zM284.587 258.133c-9.387 15.787-19.2 32.853-28.587 50.347-1.28 2.133 0 6.827 1.707 8.96 11.947 14.080 24.32 28.16 37.12 41.387 10.667 11.093 21.76 20.907 33.28 32 12.373-19.627 23.893-38.4 35.84-57.173-26.453-25.6-52.48-50.347-78.933-75.52zM766.72 324.267c-22.187-5.12-43.947-9.813-64.427-14.507 0 29.013 0 58.453 0 87.467 0 2.133 2.133 5.547 3.84 6.4 28.587 10.24 57.6 14.933 87.467 12.373-6.4-15.36-14.080-29.867-18.347-44.8-4.693-15.36-5.973-31.147-8.96-46.507zM386.987 296.533c6.827-11.093 14.080-22.187 21.333-33.707 14.507-23.467 14.933-23.893-6.4-41.387s-43.52-34.56-65.707-52.053c-10.24 17.493-19.2 33.28-28.587 49.493 26.88 26.027 52.907 52.053 79.36 77.653zM472.32 435.627c-27.307-24.32-53.333-47.787-79.787-72.107-11.093 17.92-22.187 35.413-33.28 53.76 29.44 20.907 58.027 41.387 87.040 62.293 9.387-15.787 17.92-29.867 26.453-44.373zM475.307 754.347c21.333-11.52 42.24-22.613 64-34.133-13.227-22.613-31.573-41.813-52.053-59.307-1.28-1.28-4.267-1.707-5.547-1.28-18.347 8.107-36.693 16.213-55.040 24.32 17.067 24.32 32.853 47.36 48.213 69.973zM479.573 501.333c32.853 20.907 64.853 41.387 98.133 62.293 8.107-14.080 15.36-26.88 22.613-39.253-32.853-21.333-64.427-41.813-96.427-62.72-7.68 13.227-15.787 26.027-23.893 40.107zM393.387 543.147c32.427 22.613 63.147 44.373 94.293 65.707 1.707 1.28 4.693 1.28 6.827 0.853 15.36-6.827 30.72-13.653 47.787-21.333-32.853-20.907-64-40.96-95.147-60.587-1.707-1.28-4.693-0.853-6.827 0-15.36 5.12-30.293 10.24-46.507 15.36zM164.267 138.24c-0.853 0.853-1.707 1.28-2.56 2.133 15.787 48.213 37.12 93.44 66.133 136.96 10.24-17.493 19.627-34.133 29.867-52.053-31.147-29.44-62.293-58.027-93.013-87.040zM186.027 352.853c14.507 27.307 33.28 50.347 53.76 71.68 1.707 1.707 5.547 2.133 7.68 1.707 14.080-4.693 28.587-9.813 42.24-14.933-21.333-23.893-42.667-46.933-63.573-69.973-1.707-1.707-5.973-2.56-8.107-1.707-10.24 3.84-20.48 8.533-31.573 13.227zM401.067 498.347c-24.747-18.773-48.213-36.693-71.68-54.613-1.28-1.28-4.267-2.133-5.973-1.28-15.36 5.12-30.72 10.667-49.067 17.493 25.6 18.773 49.067 36.267 72.96 53.333 1.707 1.28 5.547 1.707 7.68 0.853 14.933-4.693 29.44-9.813 46.080-15.36zM449.28 630.187c-31.147-20.907-61.013-39.68-89.173-60.587-13.653-10.24-25.173-9.387-38.4-1.28 26.027 27.733 52.48 55.467 78.933 83.627 15.36-6.827 31.147-14.080 49.067-22.187zM657.493 238.507c0-19.2 0-35.413 0-52.053 0-6.827-2.133-9.387-8.533-12.373-23.467-10.667-46.080-22.187-69.12-33.707-2.56-1.28-4.693-2.133-8.107-3.84 0 11.093 0 20.48 0 30.293 0 2.56 1.28 5.973 3.413 7.253 26.88 21.333 53.76 42.24 82.347 64.427zM226.987 584.107c23.467 24.747 45.653 47.787 68.267 71.253 1.28 1.28 2.987 2.987 4.267 2.987 16.64 0 32.853 0 52.053 0-25.173-26.027-48.213-49.92-71.68-73.387-1.707-1.707-5.12-2.987-7.253-2.987-14.933 0-29.867 1.28-45.653 2.133zM74.24 366.080l-3.84 2.56c8.96 22.613 18.347 45.227 27.733 67.84 0.853 2.133 3.84 5.12 5.973 5.12 17.92 1.707 35.84 2.987 54.187 4.267-12.8-23.467-24.747-45.653-36.693-67.84-0.853-1.707-2.987-2.987-5.12-3.413-13.653-2.987-27.733-5.973-41.813-8.96zM264.107 776.96c15.787-8.107 32.427-17.067 50.773-26.027-10.667-15.36-21.333-31.573-32.427-46.933-1.28-2.133-4.267-4.267-6.4-4.693-14.080 0-28.16 0-42.667 0 10.667 26.88 21.333 52.907 31.147 78.080zM131.84 484.267c-0.427 0.853-1.28 2.133-1.707 2.987 17.067 17.92 34.133 36.267 51.2 54.187 1.28 1.28 3.413 2.987 5.547 2.987 16.64 0 33.707-0.853 52.053-1.707-16.213-18.347-30.293-34.56-44.8-50.773-1.707-1.707-3.84-3.413-6.4-3.413-18.773-1.707-37.547-2.987-56.32-4.267zM401.92 167.68c-6.827-25.6-12.8-49.493-19.2-73.387-0.427-1.707-1.28-3.84-2.56-4.267-17.067-6.827-34.56-13.227-52.053-19.627-0.427 0.853-1.28 2.133-1.707 2.987 4.693 16.64 9.387 33.28 14.507 49.92 0 1.28 1.28 2.56 2.56 3.413 19.2 13.227 38.4 26.88 58.88 40.96zM426.24 751.787c-12.8-17.067-25.173-33.28-37.547-49.92-0.853-1.28-2.56-2.987-4.267-2.987-17.92 0-35.84 0-54.613 0 8.533 15.36 16.213 29.013 23.893 42.667 1.28 2.133 3.84 4.267 6.4 4.693 21.333 2.133 42.24 3.84 65.707 5.973zM301.227 149.333c-34.133-19.2-68.693-33.28-108.373-39.68 29.44 27.307 57.173 52.48 85.76 78.933 7.68-12.8 14.933-25.6 22.613-39.253zM531.627 136.96c0-5.547-0.427-10.667 0-15.787 1.28-9.813-1.707-16.213-11.52-20.053-30.293-12.8-60.587-26.027-91.307-38.827-4.267-1.707-8.533-2.133-14.080-3.413 39.253 26.453 77.227 52.053 116.48 78.080zM67.84 323.84c11.52 2.56 22.187 4.693 31.147 6.4-6.4-39.68-12.8-78.933-19.2-115.627-8.96 33.707-13.653 70.4-12.373 109.227zM241.493 656.64c-23.893-23.040-47.36-46.080-71.253-68.267-2.133-2.133-6.4-1.707-12.373-2.987 12.373 18.347 24.32 32.427 32.853 49.067 10.667 21.333 25.6 29.867 50.773 22.187zM197.12 304.64c-15.36-26.453-29.867-51.627-45.227-78.507 1.707 32 6.4 61.44 17.92 90.027 9.813-4.267 18.347-7.68 27.733-11.52zM290.987 97.28c-2.56-9.387-5.12-18.347-7.68-26.88-0.853-2.133-3.84-4.693-5.547-4.693-19.627 0-38.827 1.28-57.6 7.253 23.467 8.107 46.507 16.213 71.253 24.747zM301.227 530.773c-20.48-16.64-40.96-32.853-61.44-49.067 13.227 16.213 27.733 31.147 41.387 46.933 6.827 7.68 12.373 7.68 20.053 2.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["net"],"grid":0},"attrs":[{}],"properties":{"order":357,"id":78,"name":"net","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M819.2 0h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h622.933c55.467 0 102.4-46.933 102.4-102.4v-819.2c0-55.467-46.933-102.4-102.4-102.4zM358.4 785.067h-102.4v-102.4h503.467v102.4h-401.067zM256 580.267v-102.4h503.467v102.4h-503.467zM759.467 375.467h-503.467v-102.4h503.467v102.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["newalbaran"],"grid":0},"attrs":[{}],"properties":{"order":358,"id":79,"name":"newalbaran","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M512 0c-196.267 0-358.4 162.133-358.4 358.4 0 268.8 358.4 665.6 358.4 665.6s358.4-396.8 358.4-665.6c0-196.267-162.133-358.4-358.4-358.4zM512 486.4c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["niche"],"grid":0},"attrs":[{}],"properties":{"order":360,"id":80,"name":"niche","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M555.947 439.893h116.907c19.627 0 35.413 15.787 35.413 35.413s-15.787 35.413-35.413 35.413h-46.080l52.053 52.053c14.933 2.56 26.453 14.080 29.013 29.013l145.92 145.92c4.267-9.813 6.827-20.48 6.827-32v-355.413c0-20.48-8.107-40.533-22.613-54.613l-188.16-187.307c-14.933-14.933-34.56-23.040-55.467-23.040h-240.213c-42.24 0-76.373 33.707-77.653 75.52l279.467 279.040zM587.947 143.36l214.613 213.333h-175.36c-21.333 0-38.827-17.493-38.827-38.827v-174.507z","M353.707 783.36h313.6l-150.187-150.187h-58.027c-19.627 0-35.413-15.787-35.413-35.413 0-15.787 10.24-29.013 24.32-33.707l-171.52-171.52-0.427 313.173c0 43.093 34.987 77.653 77.653 77.653z","M627.2 861.013h-389.973c-21.333 0-38.827-17.493-38.827-38.827v-465.493c0-21.333-17.493-38.827-38.827-38.827s-38.827 17.493-38.827 38.827v504.32c0 42.667 34.987 77.653 78.080 77.653h428.373c21.333 0 38.827-17.493 38.827-38.827s-17.493-38.827-38.827-38.827z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["no036"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":361,"id":81,"name":"no036","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M957.013 1012.48l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52zM346.88 231.253c17.493-10.24 37.12-15.36 56.747-20.053 63.573-14.507 128.427-16.213 193.28-10.667 34.56 2.987 69.12 8.107 102.4 19.627 13.227 4.693 26.027 11.52 37.973 18.773 7.68 4.693 8.107 8.533 0 13.227-11.947 7.253-24.747 14.080-37.973 18.773-35.84 12.8-73.387 17.92-110.933 20.48-20.053 1.28-40.107 1.707-60.587 2.56-45.653-1.28-90.88-5.12-135.253-17.067l55.893 55.893c29.867 3.413 59.733 4.693 90.027 4.693 70.827-0.427 140.373-7.68 207.36-37.12-1.28 19.627 2.56 38.827-2.987 57.6-0.853 3.413-4.267 6.4-7.253 8.533-13.227 9.813-28.16 15.36-43.947 20.053-37.12 11.093-75.52 16.213-113.92 18.773-18.773 1.28-37.12 1.707-55.893 1.28l43.947 43.947c61.013-2.133 120.747-11.947 179.2-36.267 0 15.36 0 31.147 0 46.933-18.347 1.28-36.267 2.56-54.187 4.693-31.147 3.413-62.293 8.107-91.733 18.347l36.267 36.267c54.187-12.8 109.227-15.36 164.693-13.227 40.96 1.707 81.92 5.973 121.6 17.067 16.64 4.693 33.28 10.24 47.787 20.053 11.093 7.68 11.093 10.667 0 17.92-18.773 12.8-40.107 18.773-61.867 24.32-45.227 10.667-90.88 14.507-147.627 14.507-14.080 0-29.44-0.427-45.653-1.707l46.080 46.080c4.267 0 8.107 0 12.373 0 70.4-0.427 139.52-7.253 205.653-36.267 0 17.067 0 33.707 0 50.347 0 6.827-4.267 11.52-9.813 15.36-16.64 11.52-35.84 17.493-55.040 22.613-28.587 7.253-57.6 11.52-86.613 14.080l40.533 40.533c37.973-5.12 75.52-14.507 111.787-31.147 0 18.773 0.427 37.12-0.427 55.467 0 2.987-2.987 7.253-5.547 9.387-8.96 5.973-18.347 11.52-28.16 15.787-6.827 2.987-14.080 5.12-21.333 7.253l34.987 34.987c14.080-5.547 27.733-12.373 40.107-21.76 16.213-12.373 24.747-28.587 24.747-49.92-0.427-70.4 0-141.227 0-211.627 0-18.773-6.4-35.413-21.76-46.507-11.947-8.96-25.173-16.64-38.827-22.613-39.253-16.213-80.64-23.040-122.453-26.88-16.64-1.707-32.853-2.133-50.347-3.413 0-2.987 0-5.973 0-8.533 0-65.707-0.427-131.413 0-197.12 0-18.347-6.827-33.28-19.627-45.227-8.533-8.107-18.773-14.507-29.44-20.053-30.72-15.36-64.427-23.040-98.133-28.16-69.12-10.667-138.667-11.093-208.213-1.28-33.28 4.693-65.707 11.947-96.427 25.6-8.533 3.84-16.64 8.107-23.893 13.227l32.427 31.573zM754.773 870.4c-3.413 0-6.827 0-10.24-0.427-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-96-11.093-178.773-83.627-203.947-177.92-37.547-141.227 52.907-282.027 197.12-306.773 5.973-0.853 11.52-1.707 17.493-2.133l45.227 45.227c-7.68-0.853-15.787-1.28-23.893-1.28-110.507 0-200.107 90.027-200.107 200.533 0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-8.107-0.427-15.787-1.28-23.467l43.947 43.947c-0.427 8.533-0.853 17.067-1.28 25.6 8.96 0 17.92 0 26.88 0l112.64 112.64c-19.2-4.693-37.973-10.667-56.32-18.347 0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 9.813 1.28 20.053 2.56 29.867 3.84l47.787 46.933zM524.373 675.84c-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.56 59.307 5.12 88.32 7.68 0-23.893 0-46.080 0-69.12zM184.32 525.653c26.027-37.973 73.387-53.333 116.907-38.4 4.693 1.707 9.387 2.56 14.080 2.133 10.24-1.28 17.493-9.387 18.347-19.2 1.28-10.667-4.267-19.627-15.36-23.893-69.547-27.307-151.893 5.973-183.040 74.24-3.84 8.107-7.253 12.373-17.067 11.947-11.093-0.853-19.627 8.533-20.907 19.2-0.853 11.52 5.547 20.907 16.64 23.893 2.133 0.427 4.267 0.853 6.827 1.28 0 5.973 0 11.52 0 17.493-1.707 0.427-2.987 0.427-4.693 0.853-12.373 2.133-20.053 11.52-19.2 23.893 0.853 11.093 9.813 19.627 21.76 20.053 2.56 0 5.12 0.427 7.68 0 4.267-0.427 6.4 0.853 8.107 5.12 9.813 22.187 24.747 40.96 43.947 55.040 43.093 31.573 89.6 37.973 139.947 20.48 7.68-2.56 12.8-7.68 14.507-15.787 2.133-8.533 0-16.213-6.827-22.187-7.253-6.4-15.36-6.827-24.32-3.84-43.093 13.653-79.787 3.84-110.933-28.587-2.987-2.987-5.12-6.4-8.533-11.093 3.84 0 6.4 0 8.533 0 30.72 0 61.013 0 91.733 0 11.093 0 19.2-5.547 22.187-14.507 5.12-14.933-5.547-29.867-22.187-29.867-36.267 0-72.107 0-108.373 0-2.56 0-5.12 0-8.107 0 0-6.4 0-12.373 0-18.347 3.413 0 5.973 0 8.96 0 39.253 0 78.507 0 117.76 0 11.947 0 20.907-6.827 23.040-17.067 3.413-14.080-7.253-27.307-22.187-27.307-35.84 0-71.253 0-107.093 0-2.133 0-4.267 0-7.253 0 2.987-1.707 3.84-3.413 5.12-5.547z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["noPayMethod"],"grid":0},"attrs":[{}],"properties":{"order":362,"id":82,"name":"noPayMethod","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M614.4 0h-413.867c-59.733 0-106.667 46.933-106.667 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-614.4l-311.467-307.2zM563.2 358.4v-281.6l290.133 281.6h-290.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["notes"],"grid":0},"attrs":[{}],"properties":{"order":363,"id":83,"name":"notes","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M873.387 757.333c40.107-32.427 65.28-81.92 65.28-138.667 0-92.587-71.253-170.667-163.413-177.92-24.747-120.747-131.413-213.333-263.253-213.333-48.64 0-94.293 12.8-133.547 34.987l494.933 494.933z","M256.853 372.907c-98.133 20.907-171.52 106.24-171.52 210.347 0 117.333 96 213.333 213.333 213.333h381.867l-423.68-423.68z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["noweb"],"grid":0},"attrs":[{},{},{}],"properties":{"order":364,"id":84,"name":"noweb","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M721.067 418.133c-166.4 0-298.667 136.533-298.667 302.933s132.267 302.933 298.667 302.933 298.667-136.533 298.667-302.933c0-170.667-132.267-302.933-298.667-302.933zM773.12 672.427v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147z","M874.667 149.333c-98.133-98.133-226.133-149.333-362.667-149.333 0 0 0 0-4.267 0-136.533 0-260.267 55.467-358.4 149.333-98.133 98.133-149.333 226.133-149.333 362.667 0 281.6 230.4 512 512 512 8.533 0 12.8 0 21.333 0-21.333-12.8-42.667-29.867-59.733-46.933-68.267-21.333-132.267-98.133-166.4-204.8 21.333-4.267 42.667-8.533 59.733-12.8 0-12.8-4.267-25.6-4.267-38.4-21.333 0-46.933 4.267-68.267 8.533-17.067-59.733-25.6-128-29.867-196.267h153.6c8.533-12.8 17.067-29.867 29.867-42.667h-183.467c0-81.067 12.8-153.6 34.133-221.867 59.733 12.8 123.733 21.333 187.733 21.333v153.6c12.8-12.8 25.6-21.333 42.667-29.867v-119.467c68.267 0 132.267-12.8 192-25.6 8.533 29.867 17.067 64 25.6 93.867 12.8 0 29.867 4.267 42.667 4.267-8.533-38.4-17.067-76.8-25.6-110.933 42.667-12.8 81.067-25.6 110.933-42.667 59.733 72.533 98.133 166.4 106.667 260.267 17.067 17.067 29.867 38.4 42.667 55.467 0-4.267 0-12.8 0-17.067 0-136.533-55.467-264.533-149.333-362.667zM145.067 217.6c34.133 17.067 72.533 29.867 115.2 38.4-21.333 68.267-34.133 149.333-38.4 230.4h-179.2c4.267-93.867 38.4-187.733 102.4-268.8zM132.267 789.333c-51.2-72.533-85.333-162.133-89.6-256h179.2c0 76.8 12.8 145.067 29.867 209.067-42.667 12.8-85.333 29.867-119.467 46.933zM268.8 780.8c21.333 76.8 59.733 136.533 102.4 179.2-81.067-25.6-153.6-72.533-209.067-136.533 29.867-17.067 68.267-29.867 106.667-42.667zM273.067 221.867c-34.133-12.8-68.267-21.333-98.133-34.133 0-4.267 4.267-4.267 4.267-8.533 55.467-55.467 119.467-93.867 192-115.2-25.6 21.333-46.933 55.467-68.267 89.6-8.533 21.333-21.333 42.667-29.867 68.267zM490.667 251.733h-4.267c-55.467 0-115.2-8.533-174.933-21.333 12.8-21.333 21.333-38.4 29.867-55.467 42.667-76.8 93.867-119.467 149.333-132.267v209.067zM529.067 251.733v-209.067c59.733 8.533 110.933 55.467 153.6 132.267 8.533 17.067 17.067 34.133 25.6 51.2-55.467 12.8-115.2 21.333-179.2 25.6zM746.667 217.6c-8.533-21.333-17.067-42.667-29.867-59.733-21.333-38.4-42.667-68.267-68.267-89.6 76.8 17.067 140.8 55.467 196.267 110.933-25.6 12.8-59.733 25.6-98.133 38.4z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["onlinepayment-01"],"grid":0},"attrs":[{},{}],"properties":{"order":366,"id":85,"name":"onlinepayment","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M512 379.733l-448-204.8 448-174.933 448 174.933-448 204.8zM46.933 204.8l448 204.8v614.4l-448-238.933v-580.267zM977.067 785.067l-448 238.933v-614.4l448-204.8v580.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["package"],"grid":0},"attrs":[{}],"properties":{"order":367,"id":86,"name":"package","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M790.187 460.373c17.493 1.28 34.133 2.133 50.347 3.413 41.813 3.84 83.627 10.667 122.453 26.88 13.653 5.547 26.88 13.653 38.827 22.613 15.36 11.093 21.76 27.733 21.76 46.507 0 70.4-0.427 141.227 0 211.627 0 21.333-8.107 37.12-24.747 49.92-20.907 15.787-44.8 24.32-69.973 31.147-60.587 16.213-122.453 20.053-185.173 17.92-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-95.147-11.52-177.92-84.053-203.093-178.347-37.547-141.227 52.907-282.027 197.12-306.773 27.307-4.693 54.613-3.84 82.347 0.853 0-2.133 0.427-3.84 0.427-5.547-0.853-29.867-1.707-59.733-2.56-90.027-0.427-14.080 5.12-26.027 14.933-36.267 10.667-11.093 23.893-18.773 37.973-25.173 30.72-13.653 63.147-20.907 96.427-25.6 69.547-9.813 138.667-9.387 208.213 1.28 33.707 5.12 67.413 12.373 98.133 28.16 10.667 5.12 20.907 11.947 29.44 20.053 12.8 11.947 19.627 26.88 19.627 45.227-0.427 65.707 0 131.413 0 197.12-0.427 2.987-0.427 5.547-0.427 8.96zM44.373 583.68c0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-110.933-90.027-200.96-200.96-200.96-110.507-0-200.533 90.027-200.533 200.533zM527.787 293.973c20.053-0.853 40.107-1.28 60.587-2.56 37.547-2.987 75.093-8.107 110.933-20.48 13.227-4.693 26.027-11.52 37.973-18.773 7.68-4.693 7.68-8.533 0-13.227-12.373-7.253-24.747-14.080-37.973-18.773-32.853-11.947-67.413-16.64-102.4-19.627-64.853-5.547-129.28-3.413-193.28 10.667-22.187 5.12-44.373 11.52-64 24.32-11.947 8.107-12.373 12.8 0.427 19.627 14.080 7.68 29.013 14.507 43.947 19.2 46.933 14.507 95.147 18.347 143.787 19.627zM760.32 600.32c56.747 0 102.4-3.84 147.627-14.507 21.76-5.12 43.093-11.52 61.867-24.32 11.093-7.253 11.093-10.667 0-17.92-14.507-9.813-31.147-15.36-47.787-20.053-39.68-11.093-80.213-15.787-121.6-17.067-55.467-2.133-110.933 0.427-165.12 13.653-19.627 4.693-38.827 10.667-56.32 20.907-16.213 9.813-16.213 14.507 0 23.467 11.947 6.4 24.747 12.373 37.973 16.213 49.92 15.36 101.547 19.627 143.36 19.627zM979.2 720.213c-65.707 30.293-134.827 36.693-204.8 37.12s-139.093-5.973-204.373-33.28c0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 54.187 8.107 108.8 8.96 163.413 3.84 35.84-3.413 71.253-9.387 104.533-22.613 9.813-3.84 19.2-9.813 28.16-15.787 2.987-1.707 5.547-5.973 5.547-9.387 1.28-17.92 0.853-36.267 0.853-55.040zM978.773 608.427c-66.133 29.013-135.253 36.267-205.653 36.267-69.973 0.427-139.52-6.4-204.8-34.133 0 17.067 0.427 34.133 0 51.2 0 6.827 2.133 11.52 8.107 14.507 14.507 6.4 28.587 13.653 43.947 18.347 44.373 13.653 90.453 17.92 136.533 18.773 52.907 0.853 105.813-2.56 157.44-16.213 19.2-5.12 38.4-11.093 55.040-22.613 5.547-3.84 9.813-8.533 9.813-15.36-0-17.067-0.427-33.707-0.427-50.773zM745.813 299.947c-66.987 29.44-136.533 36.693-207.36 37.12-70.4 0.427-140.373-6.4-205.653-33.707 0 16.213 0 32.427 0 48.64 0 1.707 2.56 3.84 4.693 4.693 16.213 9.387 33.28 17.92 49.067 27.733 6.827 4.267 13.653 7.68 21.333 8.96 55.893 11.947 112.213 14.507 169.387 11.093 38.827-2.133 76.8-7.253 113.92-18.773 15.36-4.693 30.72-10.24 43.947-20.053 2.987-2.133 5.973-5.12 7.253-8.533 5.973-18.347 2.133-37.547 3.413-57.173zM745.387 413.44c-96 40.533-195.84 40.96-297.813 32.427 14.507 21.76 25.173 43.947 32.427 67.84 0.427 1.28 3.413 2.987 5.12 2.987 15.36 0.853 31.147 1.28 46.507 1.707 2.133 0 4.693-1.28 6.827-2.56 11.52-7.253 22.187-16.213 34.133-21.76 37.547-17.92 78.080-24.747 118.613-29.013 17.92-2.133 35.84-2.987 54.187-4.693 0-15.36 0-31.147 0-46.933zM524.373 745.387c0-24.32 0-46.933 0-69.547-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.987 58.88 5.547 88.32 8.107zM486.827 630.187c11.947 0 23.893 0 35.413 0 0-22.187 0-44.373 0-67.413-11.52 0-22.187 0-31.573 0-1.28 22.187-2.56 43.947-3.84 67.413z","M189.013 532.48c2.987 0 5.12 0 7.253 0 35.84 0 71.253 0 107.093 0 15.36 0 25.6 13.227 22.187 27.307-2.56 10.24-11.52 17.067-23.040 17.067-39.253 0-78.507 0-117.76 0-2.56 0-5.547 0-8.96 0 0 5.973 0 11.947 0 18.347 2.987 0 5.547 0 8.107 0 36.267 0 72.107 0 108.373 0 16.64 0 27.733 14.507 22.187 29.867-3.413 9.387-11.093 14.507-22.187 14.507-30.72 0-61.013 0-91.733 0-2.133 0-4.693 0-8.533 0 3.413 4.267 5.547 8.107 8.533 11.093 31.147 32 68.267 42.24 110.933 28.587 8.96-2.987 17.067-2.56 24.32 3.84 6.4 5.973 8.533 13.227 6.827 22.187-1.707 7.68-6.827 12.8-14.507 15.787-50.347 17.493-96.853 10.667-139.947-20.48-19.627-14.507-34.133-32.853-43.947-55.040-1.707-4.267-3.84-5.547-8.107-5.12-2.56 0.427-5.12 0-7.68 0-11.947-0.427-20.907-8.96-21.76-20.053-0.853-12.373 6.827-21.76 19.2-23.893 1.28-0.427 2.987-0.427 4.693-0.853 0-5.973 0-11.52 0-17.493-2.56-0.427-4.693-0.853-6.827-1.28-11.093-2.987-17.493-12.373-16.64-23.893 0.853-10.667 9.813-20.053 20.907-19.2 9.813 0.853 13.227-3.413 17.067-11.947 31.573-68.267 113.493-101.547 183.040-74.24 10.667 4.267 16.213 13.227 15.36 23.893-1.28 9.813-8.533 17.92-18.347 19.2-4.693 0.427-9.813-0.427-14.080-2.133-43.52-14.933-90.88 0.427-116.907 38.4-2.56 0.853-3.413 2.56-5.12 5.547z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["payment"],"grid":0},"attrs":[{},{}],"properties":{"order":368,"id":87,"name":"payment","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M512 0c-230.4 0-418.133 187.733-418.133 418.133v324.267c0 76.8 64 140.8 140.8 140.8h140.8v-371.2h-187.733v-93.867c0-179.2 145.067-324.267 324.267-324.267s324.267 145.067 324.267 324.267v93.867h-187.733v371.2h187.733v46.933h-324.267v93.867h277.333c76.8 0 140.8-64 140.8-140.8v-465.067c0-230.4-187.733-418.133-418.133-418.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["pbx"],"grid":0},"attrs":[{}],"properties":{"order":370,"id":88,"name":"pbx","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M1024 388.267c-4.267-46.933-25.6-81.067-55.467-110.933-34.133-29.867-72.533-42.667-110.933-38.4 0 0-4.267 0-4.267 0 0-8.533 0-17.067-4.267-29.867-8.533-51.2-29.867-98.133-68.267-128-25.6-21.333-51.2-34.133-72.533-38.4-29.867-4.267-59.733 0-76.8 4.267-42.667 8.533-81.067 34.133-110.933 72.533-21.333-25.6-42.667-46.933-68.267-64-64-38.4-140.8-29.867-196.267 21.333-25.6 21.333-42.667 46.933-51.2 81.067-12.8 29.867-17.067 59.733-17.067 93.867-8.533 0-17.067 0-25.6 0-42.667 0-81.067 17.067-110.933 46.933-29.867 34.133-42.667 76.8-46.933 98.133-4.267 12.8-4.267 25.6-4.267 42.667 4.267 55.467 25.6 110.933 59.733 157.867 29.867 38.4 68.267 64 110.933 76.8-4.267 12.8-8.533 21.333-8.533 34.133 0 4.267-4.267 8.533-4.267 17.067-12.8 42.667-25.6 98.133 4.267 162.133 29.867 59.733 89.6 102.4 157.867 106.667 4.267 0 12.8 0 17.067 0 46.933 0 85.333-17.067 119.467-29.867 4.267 0 8.533-4.267 12.8-4.267 17.067-4.267 34.133-12.8 51.2-12.8 8.533 0 17.067 4.267 34.133 12.8s42.667 21.333 68.267 25.6c29.867 4.267 64 4.267 93.867 0 38.4-8.533 68.267-21.333 89.6-38.4 59.733-46.933 68.267-128 51.2-187.733-8.533-25.6-21.333-55.467-34.133-85.333 29.867-4.267 55.467-12.8 76.8-29.867 81.067-51.2 110.933-128 119.467-187.733 4.267-12.8 4.267-51.2 4.267-68.267zM541.867 285.867c4.267-42.667 21.333-81.067 42.667-115.2 34.133-42.667 93.867-68.267 136.533-25.6 0 0 0 0 0 0 21.333 21.333 34.133 51.2 34.133 81.067 4.267 38.4 0 72.533-17.067 106.667-17.067 38.4-38.4 68.267-76.8 89.6-46.933 25.6-102.4 8.533-119.467-42.667-4.267-29.867-4.267-68.267 0-93.867zM277.333 183.467c8.533-17.067 17.067-34.133 34.133-46.933 29.867-29.867 64-34.133 102.4-8.533 51.2 29.867 81.067 85.333 85.333 145.067 4.267 51.2-12.8 115.2-64 145.067-17.067 4.267-34.133 8.533-51.2 4.267-21.333-4.267-38.4-17.067-51.2-29.867-55.467-46.933-76.8-140.8-55.467-209.067zM123.733 546.133c-34.133-46.933-55.467-110.933-34.133-170.667 12.8-25.6 34.133-42.667 64-46.933 25.6-4.267 51.2 8.533 72.533 25.6 8.533 4.267 12.8 12.8 17.067 17.067 17.067 21.333 29.867 46.933 34.133 72.533 8.533 29.867 12.8 59.733 8.533 85.333-4.267 34.133-29.867 64-64 68.267-38.4 4.267-76.8-21.333-98.133-51.2zM755.2 883.2c-29.867 25.6-81.067 29.867-115.2 21.333-42.667-8.533-72.533-38.4-115.2-42.667-29.867 0-55.467 8.533-85.333 17.067-38.4 12.8-76.8 34.133-115.2 29.867-25.6 0-55.467-12.8-72.533-34.133-42.667-42.667-29.867-110.933-8.533-162.133 17.067-55.467 55.467-102.4 98.133-140.8 17.067-17.067 38.4-34.133 64-42.667 25.6-12.8 55.467-17.067 85.333-17.067 34.133 0 68.267 0 98.133 12.8s55.467 29.867 72.533 55.467c21.333 25.6 42.667 51.2 59.733 81.067 17.067 25.6 34.133 55.467 46.933 85.333 17.067 34.133 21.333 76.8 4.267 110.933 0 12.8-8.533 21.333-17.067 25.6zM942.933 443.733c-8.533 55.467-34.133 106.667-81.067 136.533-17.067 12.8-38.4 17.067-64 17.067-42.667 0-72.533-34.133-81.067-72.533-17.067-76.8 59.733-200.533 140.8-204.8 21.333 0 38.4 4.267 51.2 21.333 21.333 17.067 29.867 42.667 34.133 68.267-0-4.267 4.267 8.533-0 34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["pets"],"grid":0},"attrs":[{}],"properties":{"order":371,"id":89,"name":"pets","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M910.080 113.92v796.576h-796.16v-796.576h796.16zM910.080 0h-796.16c-62.72 0-113.92 51.2-113.92 113.92v796.576c0 62.304 51.2 113.504 113.92 113.504h796.576c62.72 0 113.92-51.2 113.92-113.92v-796.16c-0.416-62.72-51.616-113.92-114.336-113.92zM633.6 503.904l-170.656 220.16-121.6-147.2-170.656 219.744h682.656c0 0-219.744-292.704-219.744-292.704z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["photo"],"grid":0},"attrs":[{}],"properties":{"order":372,"id":90,"name":"photo","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M826.88 229.547l3.413-0.853c17.92-2.987 36.693-6.4 55.040-9.813 21.76-4.267 49.493-9.813 77.227-18.773 22.187-6.827 42.667-20.053 58.453-31.147l2.987-2.987-2.133-3.413c-0.853-1.28-1.28-2.133-2.133-2.133-24.32-25.173-54.187-54.187-87.893-77.227-60.16-40.96-119.467-60.587-180.907-59.307-67.413 1.28-125.867 27.733-175.36 78.080-26.453 27.307-47.36 59.733-60.587 96.853l-2.987 6.827-2.987-6.827c-4.693-14.507-11.947-29.44-20.907-44.373-27.307-47.787-64.853-83.2-111.36-105.387-62.72-29.867-129.28-33.28-199.68-8.96-35.413 12.373-69.547 31.147-103.68 58.453-27.307 20.907-50.347 42.24-70.4 66.133l-2.987 2.56 3.413 2.133c31.147 20.907 40.533 27.307 80.213 37.547 36.267 9.813 72.96 16.213 109.227 21.76 10.24 2.133 21.76 3.413 32 5.547 35.413 6.4 77.227 14.080 116.907 25.173h2.133v5.547h-2.987c-17.92-2.133-36.267-2.133-55.893 0-65.28 6.4-120.32 32-163.413 75.947-27.307 27.733-46.507 60.587-59.733 101.12s-17.493 86.187-12.373 139.093c2.987 32.853 9.813 64 20.053 101.12 0.853 2.133 1.28 4.693 4.693 5.547h1.28l1.28-0.853c11.947-5.547 25.173-11.947 36.693-19.627 25.173-16.213 45.227-38.4 62.72-57.173 17.92-20.053 36.267-40.96 53.76-61.44l25.6-29.867 0.853 5.547c0.853 4.693 1.28 8.96 2.133 14.080l26.453 188.587c9.813 64 20.053 128 30.72 188.16 2.987 17.493 11.093 31.147 25.6 43.093 14.080 11.093 30.72 19.627 54.187 26.453 36.693 11.093 77.227 16.213 123.307 15.36 34.987-0.853 64.853-4.267 92.587-10.24 20.907-4.693 45.227-12.373 67.413-27.733 17.493-12.373 26.453-25.173 28.587-40.96 3.413-20.053 6.4-40.96 8.96-61.44 2.133-12.373 3.413-25.6 5.547-38.4 4.267-26.453 7.68-53.76 11.947-80.213l13.227-89.6c5.547-38.4 11.093-77.227 17.493-115.627 0-2.133 0.853-3.413 0.853-5.547 0-1.28 0.853-3.413 0.853-4.693l0.853-5.547 32.853 38.4c24.32 28.587 49.92 58.453 77.227 85.76 18.773 17.92 40.533 32.853 69.547 46.080l2.133 0.853 3.413-2.987v-1.28c8.96-32.853 19.627-76.373 22.187-122.453 2.133-43.093-2.133-81.493-13.227-117.76-12.373-41.387-32.853-76.8-61.013-105.387-36.267-36.693-82.773-61.44-136.96-71.68-22.187-4.267-46.080-5.547-70.4-4.267-3.413 0-6.4 0.853-9.813 0.853l-0.853-4.693c18.773-4.693 36.693-8.96 50.773-12.373 31.147-8.533 63.147-14.080 93.867-19.627zM487.253 423.68v0 0c0.853 0 68.267 12.373 85.76-27.733 6.827-9.813 15.36-14.507 24.32-15.36v0h0.853c2.133 0 3.413 0.853 5.547 1.28 19.627 4.693 35.413 15.36 48.213 23.467 14.080 9.813 38.4 29.867 49.493 41.813l2.133 2.987-2.987 1.28c-11.947 6.4-24.32 10.24-35.413 14.080-28.587 8.533-59.733 14.080-98.133 17.493-17.92 1.28-36.267 2.133-55.893 2.133-15.36 0-30.72-0.853-46.507-1.28-49.493-2.987-89.173-9.813-124.587-22.187-6.4-2.133-13.227-4.693-19.627-8.533l-2.987-1.28 2.133-2.987c7.68-8.533 16.64-16.213 26.453-24.32 17.92-15.36 38.4-30.72 62.72-39.68 4.693-2.133 11.947-4.267 19.627-5.547 7.68 0 19.627 5.547 34.133 29.44 3.413 8.107 12.373 13.653 24.747 14.933zM211.627 174.933l-25.6-4.267c-28.587-4.693-58.027-9.387-87.040-17.067l-5.12-1.28 4.267-3.413c1.28-0.853 2.987-2.133 4.267-2.987l3.413-2.987c31.147-24.32 62.72-41.813 95.573-52.053 17.493-5.547 34.987-8.96 52.053-9.813 57.173-4.267 107.093 15.36 150.187 57.173 29.867 29.44 49.92 65.28 60.587 108.8l1.28 6.827-5.547-4.267c-35.413-25.173-75.093-37.547-113.493-48.213-44.373-11.093-90.453-18.773-134.827-26.453zM196.267 497.92l-5.547 6.4c-5.547 6.827-11.947 14.080-17.493 20.053-20.053 23.467-40.533 47.36-61.867 68.267l-3.413 3.413-1.28-4.693c-0.853-2.987-0.853-5.547-1.28-8.533l-0.853-4.693c-4.693-38.4-2.987-75.093 6.4-110.080 20.053-78.507 84.053-135.253 166.4-146.347 34.987-4.693 69.12-2.133 101.547 8.96l6.827 2.133-6.4 2.987c-31.147 14.080-57.173 34.133-77.227 52.053-38.827 33.707-72.96 72.533-105.813 110.080zM709.973 516.267v0c-1.28 8.96-2.987 17.92-3.413 26.453l-23.467 159.573c-4.693 29.867-8.96 59.733-13.227 90.453l-2.987 19.627c-4.267 29.867-8.96 59.307-12.373 88.32-0.853 6.827-4.267 11.947-10.24 15.36-14.080 8.533-29.867 14.507-52.053 18.773-17.493 3.413-36.267 5.547-60.587 6.827-6.827 0.853-14.080 0.853-20.907 0.853-33.28 0-66.987-4.693-98.987-14.080-10.24-2.987-20.907-7.68-31.147-14.080-4.693-2.987-6.827-6.827-8.533-12.373-7.68-42.667-15.36-89.173-24.32-145.493-8.533-55.040-16.64-110.507-25.173-165.547l-7.68-51.627c-1.28-7.68-2.133-14.507-3.413-22.187l-0.853-5.547 4.267 1.28c55.893 19.627 116.053 28.587 196.267 28.587h1.28c78.080 0 139.947-9.813 195.413-30.72l4.267-1.28-2.133 6.827zM705.707 320c41.813-1.28 80.64 8.533 114.347 27.733 48.64 29.44 80.64 73.813 93.44 133.12 4.693 23.467 6.827 48.213 6.4 71.68-0.853 11.947-1.28 25.6-4.267 40.533l-0.853 4.693-3.413-3.413c-4.267-4.267-8.96-8.533-13.227-13.227-14.080-16.213-27.733-31.147-40.96-47.36l-2.987-3.413c-23.040-26.453-47.36-54.187-70.827-80.64-22.187-24.32-52.053-56.32-88.32-83.627-13.227-9.813-31.147-22.187-51.627-31.147l-6.4-2.987 6.827-2.133c20.053-5.547 40.96-9.387 61.867-9.813zM660.48 206.507v0c-24.32 6.827-52.053 16.213-78.080 30.72v0c0 0-1.28 0.853-2.987 2.133-3.413 2.133-6.4 3.413-9.813 5.547s-7.68 4.693-11.947 7.68v-2.133c6.827-29.44 17.493-51.627 21.76-59.307 23.040-43.093 57.173-75.093 104.533-96 16.64-7.68 36.267-11.947 58.453-14.080 4.693-0.853 9.813-0.853 14.507-0.853 34.133 0 69.12 8.96 106.667 27.733 20.053 10.24 39.68 23.040 59.733 40.533l4.267 3.413-4.693 1.28c-23.467 6.4-48.213 10.24-74.667 15.36-11.093 2.133-21.76 3.413-32.853 5.547-51.627 9.387-104.533 17.92-154.88 32.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["planta"],"grid":0},"attrs":[{}],"properties":{"order":373,"id":91,"name":"plant","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M1011.2 503.467l-264.533-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267-0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-25.6 17.067-42.667 38.4-55.467 59.733-12.8-25.6-29.867-42.667-55.467-59.733-38.4-25.6-85.333-42.667-132.267-42.667-4.267 0-12.8 4.267-12.8 8.533l-81.067 153.6c-4.267 4.267-4.267 8.533 0 17.067 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-4.267 4.267 0 12.8 4.267 17.067l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8 0 0 0 0 0 0l98.133-4.267-76.8 98.133c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l362.667 145.067c0 0 4.267 0 4.267 0s4.267 0 4.267 0l362.667-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-72.533-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 0-8.533-4.267-12.8-12.8-17.067zM110.933 499.2l200.533-81.067 8.533 8.533-170.667 68.267-38.4 4.267zM153.6 665.6v-4.267l-72.533-29.867 72.533-98.133 328.533 132.267-72.533 98.133-256-102.4-0 4.267zM494.933 985.6l-328.533-132.267v-153.6l243.2 98.133c0 0 4.267 0 4.267 0h4.267c0 0 4.267 0 4.267 0v0c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333v277.333zM494.933 631.467l-302.933-119.467 149.333-59.733 153.6 162.133v17.067zM529.067 614.4l162.133-157.867 140.8 55.467-302.933 119.467v-17.067zM857.6 853.333l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0c0 0 4.267 0 4.267 0v0c0 0 4.267 0 4.267 0v0 0c0 0 4.267 0 4.267 0l243.2-98.133v157.867zM942.933 631.467l-328.533 132.267-72.533-98.133 328.533-132.267 72.533 98.133zM874.667 494.933l-162.133-64 12.8-8.533 187.733 76.8-38.4-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["polizon"],"grid":0},"attrs":[{}],"properties":{"order":374,"id":92,"name":"polizon","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M512 1024c16.213 0 28.587-13.227 28.587-28.587v-215.040h2.987c73.387-2.133 130.987-25.173 170.667-67.84 68.267-72.107 62.72-177.493 60.16-197.973v0c-1.28-15.36-14.080-28.16-29.44-29.44-7.253-0.853-33.707-2.987-67.84 2.133l-12.373 2.133 11.093-6.827c14.080-8.96 26.453-19.2 37.547-30.72 68.267-72.107 62.72-177.493 60.16-197.973-1.28-15.36-14.080-28.16-29.44-29.44-14.080-1.28-64-4.267-117.76 14.507l-4.267 1.28 0.853-5.12c2.987-15.36 4.267-31.573 4.267-46.933-2.56-98.56-78.933-168.107-93.867-180.48-12.373-10.24-29.44-10.24-41.813 0-15.36 11.947-92.16 81.067-94.72 180.48-0.853 16.213 0.853 31.573 4.267 47.787l0.853 5.12-4.267-1.28c-53.76-19.2-104.533-16.213-118.613-14.507-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.867 60.16 197.973 11.093 11.093 22.613 21.333 36.693 30.293l10.24 6.827-12.373-2.133c-16.213-2.133-30.293-2.987-41.387-2.987s-19.2 0.853-23.467 0.853c-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.013 60.16 197.973 39.68 41.813 97.28 64.853 169.813 67.84h2.987v215.040c0.427 14.933 12.8 28.16 29.013 28.16zM715.093 541.867h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.72-71.253 46.933-127.147 49.92h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 38.827-37.973 92.587-44.8 121.173-44.8zM713.813 280.747h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.293-71.253 46.933-127.147 49.493h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 39.253-37.12 93.013-43.52 121.173-44.373zM454.4 189.44c1.28-55.040 35.413-99.413 55.893-120.747l2.133-2.133 2.133 2.133c20.053 21.333 53.76 65.707 55.893 120.747 1.28 43.52-17.493 87.040-55.040 128.853l-2.133 2.133-2.133-2.133c-39.68-41.813-58.027-85.333-56.747-128.853zM351.573 411.733c-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c34.56 0.853 84.053 8.96 121.6 43.947v0c31.573 29.44 48.64 74.24 51.627 133.12v2.987h-2.987c-56.32-2.133-98.987-18.773-127.573-49.067zM479.573 722.347c-55.893-2.133-98.56-19.2-127.147-49.493-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c28.587 0.853 82.347 7.253 121.6 43.947 31.573 29.44 48.64 74.24 51.627 133.12v2.987h-3.413zM471.467 543.573c-8.96-8.107-18.347-15.36-29.44-22.613l-11.093-6.827 12.373 1.28c21.333 2.987 41.813 3.84 64 2.987 0.853 0 1.28 0 2.133 0h2.56c0.853 0 1.28 0 2.133 0 5.12 0 9.387 0 14.507 0 17.493 0 35.413-1.28 52.053-3.84l13.227-2.133-11.093 7.253c-11.093 6.827-20.48 14.507-29.44 22.613-14.507 14.080-28.16 31.573-38.827 51.627l-2.133 4.267-2.133-4.267c-10.667-18.773-23.893-36.267-38.827-50.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["preserved"],"grid":0},"attrs":[{}],"properties":{"order":376,"id":93,"name":"preserved","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M746.667 482.133c68.267 0 140.8 21.333 196.267 72.533 110.933 102.4 115.2 277.333 8.533 384s-277.333 115.2-384 8.533c-93.867-85.333-110.933-221.867-51.2-328.533l51.2 46.933c-34.133 76.8-17.067 170.667 46.933 230.4 81.067 76.8 209.067 72.533 290.133-8.533 76.8-81.067 72.533-209.067-8.533-290.133-42.667-38.4-93.867-55.467-145.067-55.467l4.267 153.6-170.667-162.133 162.133-170.667-0 119.467zM337.067 750.933c0 0 0 0 0 0-17.067-8.533-38.4-17.067-55.467-25.6-21.333-8.533-29.867-25.6-29.867-51.2s0-51.2 0-81.067c29.867 17.067 64 29.867 102.4 38.4 4.267-17.067 12.8-34.133 21.333-51.2-17.067-4.267-34.133-8.533-51.2-17.067-21.333-8.533-38.4-21.333-55.467-29.867-12.8-8.533-17.067-17.067-12.8-34.133 0-29.867 0-55.467 0-85.333 68.267 29.867 132.267 46.933 200.533 51.2 17.067-21.333 38.4-38.4 64-55.467 0 0-4.267 0-4.267 0-51.2 0-106.667-4.267-157.867-21.333-34.133 0-59.733-12.8-81.067-29.867-29.867-21.333-29.867-42.667 4.267-64 38.4-25.6 81.067-34.133 128-42.667 55.467-8.533 110.933-8.533 166.4-4.267 51.2 4.267 102.4 17.067 149.333 38.4 12.8 4.267 42.667 29.867 38.4 55.467 55.467 0 106.667 12.8 153.6 34.133 17.067-4.267 29.867-8.533 46.933-12.8 0 12.8 0 25.6 0 38.4 21.333 12.8 38.4 25.6 55.467 42.667 0-98.133 0-200.533 0-298.667 0-42.667-17.067-72.533-51.2-93.867-46.933-29.867-98.133-38.4-149.333-42.667-34.133-8.533-72.533-8.533-110.933-8.533-72.533 4.267-140.8 21.333-200.533 64-4.267 0-8.533-4.267-8.533-4.267-51.2-34.133-110.933-46.933-170.667-51.2-51.2 0-102.4 0-153.6 8.533-46.933 8.533-93.867 17.067-136.533 46.933-25.6 21.333-38.4 42.667-38.4 76.8 0 145.067 0 294.4 0 439.467 0 38.4 17.067 64 46.933 81.067 21.333 12.8 46.933 25.6 72.533 29.867 25.6 8.533 51.2 12.8 81.067 17.067 17.067 46.933 55.467 68.267 102.4 85.333 12.8 4.267 29.867 8.533 42.667 12.8-4.267-17.067-8.533-34.133-8.533-55.467zM964.267 273.067c0 8.533-8.533 21.333-17.067 25.6-34.133 21.333-76.8 34.133-119.467 38.4-4.267-38.4-17.067-68.267-55.467-89.6 68.267 0 128-12.8 192-42.667 4.267 25.6 4.267 46.933 0 68.267zM610.133 76.8c68.267-17.067 136.533-25.6 204.8-17.067 42.667 4.267 85.333 12.8 128 34.133 12.8 8.533 21.333 12.8 25.6 34.133-8.533 8.533-17.067 17.067-25.6 21.333-29.867 17.067-64 29.867-98.133 34.133-38.4 4.267-76.8 8.533-115.2 8.533-46.933 0-89.6-8.533-132.267-25.6-21.333-8.533-42.667-17.067-55.467-42.667 12.8-29.867 38.4-42.667 68.267-46.933zM68.267 115.2c25.6-25.6 64-34.133 98.133-38.4 29.867-4.267 59.733-12.8 85.333-12.8 68.267 0 132.267 4.267 196.267 34.133 8.533 4.267 17.067 8.533 25.6 17.067 12.8 8.533 12.8 21.333 0 34.133-8.533 8.533-17.067 12.8-29.867 21.333-42.667 21.333-85.333 29.867-132.267 34.133-17.067 0-29.867 0-42.667 0-55.467-4.267-110.933-12.8-162.133-29.867-12.8-4.267-29.867-12.8-42.667-21.333-12.8-17.067-8.533-25.6 4.267-38.4zM196.267 652.8c-25.6-8.533-51.2-12.8-72.533-21.333-8.533-4.267-21.333-8.533-29.867-12.8-25.6-12.8-38.4-29.867-34.133-59.733 0-17.067 0-29.867 0-51.2 46.933 25.6 89.6 34.133 136.533 38.4 0 42.667 0 72.533 0 106.667zM55.467 430.933c0-21.333 0-42.667 0-59.733 46.933 12.8 93.867 21.333 140.8 34.133 0 29.867 0 59.733 0 93.867-34.133-4.267-64-12.8-93.867-21.333-8.533-4.267-21.333-12.8-29.867-17.067-12.8-8.533-17.067-17.067-17.067-29.867zM196.267 341.333c-4.267 0-12.8 4.267-17.067 0-34.133 0-68.267-12.8-102.4-29.867-12.8-8.533-21.333-21.333-21.333-38.4s0-38.4 0-59.733c59.733 25.6 115.2 38.4 179.2 42.667-21.333 25.6-42.667 51.2-38.4 85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["recovery"],"grid":0},"attrs":[{}],"properties":{"order":377,"id":94,"name":"recovery","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M554.667 46.933c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 251.733-4.267 460.8-213.333 460.8-473.6s-213.333-460.8-469.333-460.8zM332.8 725.333h430.933v-179.2h-110.933v68.267l-106.667-102.4 102.4-102.4v68.267h110.933v-179.2h-426.667v426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["regentry"],"grid":0},"attrs":[{}],"properties":{"order":378,"id":95,"name":"regentry","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M841.6 96c48 0 86.4 38.4 86.4 86.4v662.4c0 48-38.4 86.4-86.4 86.4h-659.2c-48-3.2-86.4-41.6-86.4-89.6v-659.2c0-48 38.4-86.4 86.4-86.4h659.2zM841.6 0h-659.2c-99.2 0-182.4 83.2-182.4 182.4v662.4c0 96 83.2 179.2 182.4 179.2h662.4c99.2 0 182.4-83.2 182.4-182.4v-659.2c-3.2-99.2-86.4-182.4-185.6-182.4v0z","M611.2 768l-99.2-144h-108.8v144h-118.4v-512h220.8c44.8 0 83.2 6.4 118.4 22.4 32 16 57.6 35.2 76.8 64s25.6 60.8 25.6 99.2c0 38.4-9.6 70.4-28.8 99.2s-44.8 48-76.8 64l115.2 163.2h-124.8zM582.4 374.4c-19.2-16-44.8-22.4-80-22.4h-96v179.2h96c35.2 0 64-6.4 80-22.4 19.2-16 28.8-38.4 28.8-67.2-3.2-28.8-9.6-51.2-28.8-67.2z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["reserva"],"grid":0},"attrs":[{},{}],"properties":{"order":380,"id":96,"name":"reserva","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M358.4 819.2h-102.4v-102.4h81.067c0 0 0-4.267 0-4.267 0-34.133 8.533-68.267 21.333-98.133h-102.4v-102.4h170.667c51.2-51.2 123.733-85.333 200.533-102.4h-371.2v-102.4h512v93.867c76.8 8.533 149.333 34.133 204.8 72.533v-268.8c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h546.133c-157.867-8.533-290.133-89.6-341.333-204.8zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2z","M721.067 507.733c-136.533 0-251.733 85.333-302.933 204.8 46.933 119.467 162.133 204.8 302.933 204.8s251.733-85.333 302.933-204.8c-46.933-119.467-162.133-204.8-302.933-204.8zM721.067 849.067c-76.8 0-136.533-59.733-136.533-136.533s64-136.533 136.533-136.533 136.533 64 136.533 136.533-59.733 136.533-136.533 136.533zM721.067 631.467c-46.933 0-81.067 38.4-81.067 81.067s38.4 81.067 81.067 81.067c46.933 0 81.067-38.4 81.067-81.067s-34.133-81.067-81.067-81.067z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["revision"],"grid":0},"attrs":[{},{}],"properties":{"order":381,"id":97,"name":"revision","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M700.587 816.64c-20.48 3.84-42.24 5.973-64.427 5.973-69.973 0-131.84-17.92-184.747-54.187s-90.453-84.48-112.213-144.213h168.533l-64.853-64.853h-119.467c-2.133-15.36-3.413-31.147-3.413-47.36 0-17.067 1.28-32.853 3.413-47.36h25.173l-114.773-114.773c-6.4 16.213-12.373 32.853-17.067 49.92h-131.413v64.853h119.893c-1.707 20.053-2.133 35.84-2.133 47.36s0.853 27.307 2.133 47.36h-119.893v64.853h131.84c16.213 60.16 43.947 112.64 83.2 158.293 39.253 45.227 87.467 80.64 144.213 105.813s119.040 37.547 186.027 37.547c55.467 0 106.667-8.107 154.453-24.747l-84.48-84.48z","M580.693 464.64h124.587v-64.853h-189.44z","M407.467 291.84c13.227-13.227 27.733-25.173 43.947-35.84 52.907-36.267 114.773-54.187 184.747-54.187 91.733 0 167.68 32 228.693 96l73.813-72.533c-36.267-40.96-80.64-72.107-133.547-93.44s-110.933-32.427-174.933-32.427c-66.987 0-128.853 12.373-186.027 37.547-43.52 18.347-82.347 43.947-115.627 75.52l78.933 79.36z","M39.253 0c10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["riesgo"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":382,"id":98,"name":"risk","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M485.973 0.853c-258.987 12.8-470.187 222.293-485.12 481.28-5.547 100.693 17.92 195.84 62.72 277.333s0 170.667-13.653 198.4 19.2 61.867 44.373 45.227c14.507-9.813 65.707-32 116.053-45.653 20.907-5.547 42.667-2.987 61.867 7.253 80.64 43.093 174.080 64.853 273.493 58.453 257.28-16.213 465.067-226.56 477.867-484.267 14.933-303.787-234.24-553.387-537.6-538.027zM407.467 653.227c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-271.36c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v274.347zM544.427 734.72c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-439.467c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v442.453zM674.987 617.387c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-195.413c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v198.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["saysimple"],"grid":0},"attrs":[{}],"properties":{"order":419,"id":99,"name":"saysimple","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M951.467 742.4c0-8.533 0-21.333 0-29.867s0-21.333-4.267-29.867l64-51.2c4.267-4.267 8.533-12.8 4.267-21.333l-64-106.667c-4.267-8.533-12.8-8.533-17.067-8.533l-76.8 29.867c-17.067-12.8-34.133-21.333-51.2-29.867l-12.8-81.067c0-8.533-8.533-12.8-17.067-12.8h-123.733c-8.533 0-12.8 4.267-17.067 12.8l-12.8 81.067c-17.067 8.533-38.4 17.067-51.2 29.867l-76.8-29.867c-8.533-4.267-17.067 0-17.067 8.533l-64 106.667c-4.267 8.533-4.267 17.067 4.267 21.333l64 51.2c0 8.533-4.267 21.333-4.267 29.867s0 21.333 4.267 29.867l-55.467 51.2c-4.267 4.267-8.533 12.8-4.267 21.333l64 106.667c4.267 8.533 12.8 8.533 17.067 8.533l76.8-29.867c17.067 12.8 34.133 21.333 51.2 29.867l12.8 81.067c0 8.533 8.533 12.8 17.067 12.8h123.733c8.533 0 12.8-4.267 17.067-12.8l12.8-81.067c17.067-8.533 38.4-17.067 51.2-29.867l76.8 29.867c8.533 4.267 17.067 0 17.067-8.533l64-106.667c4.267-8.533 4.267-17.067-4.267-21.333 0 0-68.267-51.2-68.267-51.2zM721.067 827.733c-64 0-115.2-51.2-115.2-115.2s51.2-115.2 115.2-115.2 115.2 51.2 115.2 115.2c0 64-51.2 115.2-115.2 115.2z","M345.6 785.067h-89.6v-102.4h81.067c4.267-34.133 8.533-68.267 21.333-102.4h-102.4v-102.4h162.133c34.133-42.667 72.533-76.8 119.467-102.4h-281.6v-102.4h520.533v59.733c51.2 8.533 102.4 25.6 145.067 51.2v-281.6c0-55.467-46.933-102.4-102.4-102.4h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h302.933c-81.067-55.467-136.533-140.8-153.6-238.933z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["services"],"grid":0},"attrs":[{},{}],"properties":{"order":383,"id":100,"name":"services","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M891.733 563.2c0-17.067 4.267-34.133 4.267-51.2s0-34.133-4.267-51.2l106.667-85.333c8.533-8.533 12.8-21.333 4.267-34.133l-102.4-179.2c-4.267-12.8-21.333-17.067-29.867-12.8l-128 51.2c-25.6-21.333-55.467-38.4-85.333-51.2l-17.067-128c0-12.8-12.8-21.333-25.6-21.333h-204.8c-12.8 0-25.6 8.533-25.6 21.333l-17.067 136.533c-34.133 12.8-59.733 29.867-89.6 51.2l-128-51.2c-8.533-4.267-21.333 0-29.867 8.533l-102.4 179.2c-4.267 8.533-4.267 25.6 8.533 29.867l106.667 85.333c-4.267 17.067-4.267 34.133-4.267 51.2s0 34.133 4.267 51.2l-106.667 85.333c-8.533 8.533-12.8 21.333-4.267 34.133l102.4 179.2c4.267 12.8 21.333 17.067 29.867 12.8l128-51.2c25.6 21.333 55.467 38.4 85.333 51.2l17.067 128c0 12.8 12.8 21.333 25.6 21.333h204.8c12.8 0 25.6-8.533 25.6-21.333l21.333-136.533c29.867-12.8 59.733-29.867 85.333-51.2l128 51.2c12.8 4.267 25.6 0 29.867-12.8l102.4-179.2c4.267-12.8 4.267-25.6-4.267-34.133l-110.933-76.8zM512 691.2c-98.133 0-179.2-81.067-179.2-179.2s81.067-179.2 179.2-179.2 179.2 81.067 179.2 179.2-81.067 179.2-179.2 179.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["settings"],"grid":0},"attrs":[{}],"properties":{"order":384,"id":101,"name":"settings","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M725.76 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 5.973-11.52 17.493-23.040 17.493zM587.52 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040 0 5.973-11.52 17.493-23.040 17.493zM454.827 328.107h-23.040c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 11.52-11.52 23.040-23.040 23.040zM316.587 328.107h-17.493c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.547 11.52-17.067 23.040-28.587 23.040zM719.787 1002.24c-46.080-23.040-86.613-17.493-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM719.787 887.040c-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM875.52 380.16h-34.56v-230.4c0-11.52-11.52-23.040-23.040-23.040h-149.76v-103.68c0-11.52-11.52-23.040-23.040-23.040h-282.453c-11.52 0-23.040 11.52-23.040 23.040v103.68h-149.76c-11.52 0-23.040 11.52-23.040 23.040v230.4h-29.013c-5.973 0-11.52 5.973-17.493 5.973-5.973 5.973-5.973 11.52-5.973 17.493l115.2 391.68c5.973 11.52 17.493 17.493 29.013 11.52 11.52 5.973 17.493-5.973 11.52-17.493l-109.227-368.64h322.56v374.613c0 29.013 40.533 29.013 40.533 0v-374.613h328.533l-109.653 368.64c-5.973 11.52 5.973 23.040 11.52 29.013 11.52 5.973 23.040-5.973 29.013-11.52l115.2-391.68c5.547-23.467-5.973-34.987-23.040-34.987zM385.707 46.080h241.92v86.187h-241.92v-86.187zM800.427 380.16c-69.12 0-512.853 0-587.52 0v-213.333h587.52v213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["shipment-01"],"grid":0},"attrs":[{}],"properties":{"order":386,"id":102,"name":"shipment","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M725.333 0c72.533 72.533 145.067 145.067 217.6 217.6-4.267 4.267-8.533 12.8-17.067 17.067-179.2 179.2-358.4 362.667-537.6 541.867-8.533 8.533-25.6 17.067-38.4 21.333-81.067 21.333-166.4 42.667-247.467 64-4.267 0-12.8 4.267-21.333 4.267 0-8.533 0-17.067 4.267-21.333 21.333-85.333 42.667-166.4 64-251.733 4.267-8.533 8.533-21.333 17.067-25.6 183.467-187.733 371.2-371.2 554.667-554.667 0-8.533 0-12.8 4.267-12.8z","M849.067 934.4c-25.6 21.333-46.933 42.667-72.533 59.733-29.867 17.067-59.733 25.6-89.6 29.867-21.333 4.267-42.667 0-55.467-12.8-12.8-8.533-25.6-46.933-38.4-51.2-4.267 0-12.8 0-17.067 4.267-68.267 25.6-145.067 55.467-221.867 55.467-106.667 0-209.067 0-315.733 0-4.267 0-8.533 0-12.8 0-4.267-4.267-12.8-8.533-12.8-12.8s8.533-12.8 12.8-17.067c4.267-4.267 12.8 0 21.333 0 102.4 0 204.8 0 307.2-4.267 76.8 0 153.6-25.6 221.867-64 8.533-4.267 12.8-12.8 12.8-21.333 4.267-55.467 12.8-106.667 42.667-153.6 17.067-29.867 42.667-51.2 81.067-55.467 55.467 0 85.333 38.4 64 89.6-17.067 34.133-42.667 64-64 89.6-21.333 21.333-51.2 38.4-72.533 55.467-4.267 4.267-8.533 17.067-8.533 21.333 8.533 34.133 29.867 51.2 59.733 42.667 29.867-4.267 59.733-17.067 81.067-34.133 25.6-17.067 46.933-42.667 72.533-64 8.533-8.533 17.067-21.333 29.867-25.6 8.533-4.267 21.333-8.533 29.867-4.267 4.267 4.267 8.533 21.333 4.267 29.867-8.533 21.333-17.067 42.667-25.6 64-4.267 8.533-8.533 25.6 0 34.133s29.867 4.267 38.4-4.267c25.6-17.067 51.2-34.133 72.533-55.467 8.533-8.533 17.067-17.067 25.6-8.533 4.267 4.267 4.267 21.333 0 29.867-25.6 34.133-59.733 59.733-102.4 72.533-46.933 12.8-76.8-17.067-68.267-64-4.267-12.8-4.267-17.067 0-25.6zM618.667 887.467c0 0 0 4.267 0 4.267s4.267 0 4.267 0c29.867-25.6 59.733-51.2 85.333-81.067 12.8-12.8 21.333-34.133 29.867-51.2 8.533-21.333 0-34.133-21.333-38.4-25.6-4.267-42.667 8.533-55.467 25.6-29.867 46.933-38.4 93.867-42.667 140.8z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["sign"],"grid":0},"attrs":[{},{}],"properties":{"order":387,"id":103,"name":"sign","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M896 230.4h-443.733c-29.867 0-55.467 25.6-55.467 55.467v332.8c0 29.867 25.6 55.467 55.467 55.467h443.733c29.867 0 55.467-25.6 55.467-55.467v-332.8c0-29.867-25.6-55.467-55.467-55.467zM896 341.333l-221.867 140.8-221.867-140.8v-55.467l221.867 140.8 221.867-140.8v55.467zM640 738.133v55.467h-486.4v-652.8h486.4v25.6h85.333v-25.6c0-76.8-64-140.8-140.8-140.8h-371.2c-81.067 0-140.8 64-140.8 140.8v746.667c0 72.533 59.733 136.533 140.8 136.533h371.2c76.8 0 140.8-64 140.8-140.8v-145.067h-85.333zM490.667 930.133h-187.733v-46.933h187.733v46.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["sms"],"grid":0},"attrs":[{}],"properties":{"order":388,"id":104,"name":"sms","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M1024 42.667v938.667h-938.667v-68.267h234.667v-51.2h38.4c8.533 4.267 17.067 4.267 29.867 4.267h298.667c42.667 0 76.8-34.133 76.8-76.8 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533s-21.333-59.733-46.933-72.533c0 0 0 0 0 0 0-42.667-34.133-76.8-76.8-76.8h-106.667c21.333-21.333 29.867-55.467 17.067-89.6-12.8-25.6-38.4-42.667-68.267-42.667-12.8 0-21.333 4.267-34.133 8.533l-217.6 98.133v-29.867h-238.933v-396.8h362.667v209.067h209.067v-209.067h366.933zM0 870.4h281.6v-51.2h89.6c4.267 4.267 12.8 4.267 17.067 4.267h298.667c21.333 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-136.533v-12.8h183.467c21.333 0 34.133-12.8 34.133-29.867 0-21.333-12.8-29.867-34.133-29.867h-179.2v-12.8h234.667c21.333 0 34.133-8.533 34.133-29.867s-12.8-29.867-34.133-29.867h-230.4v-12.8h183.467c21.333 0 29.867-12.8 29.867-34.133s-12.8-34.133-34.133-34.133h-230.4l93.867-64c12.8-8.533 21.333-29.867 12.8-46.933s-29.867-25.6-51.2-17.067l-251.733 119.467c-4.267 0-4.267 4.267-8.533 4.267-4.267 4.267-8.533 8.533-12.8 12.8h-8.533v-55.467h-281.6v388.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["solclaim"],"grid":0},"attrs":[{}],"properties":{"order":389,"id":105,"name":"solclaim","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M759.467 89.6v136.533h-601.6c0 0-128 341.333 106.667 341.333s469.333 0 469.333 0 34.133 0 34.133 34.133-8.533 98.133-8.533 98.133h-541.867c0 0-247.467-29.867-204.8-320 0 0 8.533-140.8 72.533-298.667 0 0 21.333 8.533 85.333 8.533l588.8-0zM853.333 934.4c64 0 85.333 8.533 85.333 8.533 64-153.6 72.533-298.667 72.533-298.667 42.667-290.133-204.8-320-204.8-320h-541.867c0 0-8.533 64-8.533 98.133s34.133 34.133 34.133 34.133 238.933 0 469.333 0 106.667 341.333 106.667 341.333h-601.6v136.533h588.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["solunion"],"grid":0},"attrs":[{}],"properties":{"order":390,"id":106,"name":"solunion","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M686.933 742.4h-119.467l-268.8-230.4 268.8-230.4h119.467v153.6l337.067-196.267-337.067-238.933v153.6h-153.6l-290.133 251.733h-243.2v213.333h243.2l290.133 251.733h153.6v153.6l337.067-238.933-337.067-196.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["splitline"],"grid":0},"attrs":[{}],"properties":{"order":391,"id":107,"name":"splitline","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M640 0l145.067 145.067-183.467 183.467 89.6 89.6 183.467-183.467 149.333 149.333v-384h-384zM384 0h-384v384l145.067-145.067 302.933 302.933v482.133h128v-537.6l-337.067-341.333 145.067-145.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["splur"],"grid":0},"attrs":[{}],"properties":{"order":392,"id":108,"name":"splur","prevSize":32,"code":59764},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M1006.933 507.733l-260.267-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267 0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-21.333 17.067-42.667 38.4-55.467 59.733-12.8-21.333-29.867-42.667-55.467-59.733-34.133-12.8-81.067-34.133-128-34.133-4.267 0-12.8 4.267-12.8 8.533l-85.333 153.6c-4.267 4.267-4.267 4.267 0 12.8 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-8.533 4.267-4.267 17.067 0 21.333l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8v0l98.133-4.267-81.067 85.333c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l358.4 145.067h8.533l358.4-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-68.267-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 8.533 0 4.267-4.267-4.267-12.8zM110.933 503.467l196.267-76.8 8.533 8.533-166.4 64-38.4 4.267zM153.6 674.133v0l-68.267-34.133 68.267-98.133 328.533 132.267-68.267 98.133-260.267-98.133zM490.667 989.867l-328.533-132.267v-153.6l243.2 98.133h12.8c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333c0 4.267 0 277.333 0 277.333zM490.667 635.733l-298.667-115.2 149.333-64 153.6 157.867v17.067h-4.267zM529.067 622.933l157.867-157.867 140.8 55.467-298.667 115.2c-0 0-0-12.8-0-12.8zM849.067 857.6l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0h17.067l243.2-98.133v157.867zM938.667 635.733l-324.267 132.267-68.267-98.133 328.533-132.267 64 98.133zM870.4 499.2l-157.867-64 12.8-8.533 187.733 76.8-42.667-4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["stowaway 2"],"grid":0},"attrs":[{}],"properties":{"order":393,"id":109,"name":"stowaway","prevSize":32,"code":59765},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M797.867 554.667l98.133-34.133 21.333 59.733-98.133 34.133-21.333-59.733zM1019.733 618.667c-4.267 8.533-8.533 12.8-17.067 17.067l-332.8 119.467c4.267 4.267 8.533 12.8 12.8 17.067l277.333-102.4 21.333 59.733-277.333 102.4c0 8.533 4.267 12.8 4.267 21.333 0 85.333-68.267 157.867-157.867 157.867-85.333 0-157.867-68.267-157.867-157.867 0-55.467 29.867-106.667 72.533-132.267l-217.6-610.133c-8.533-25.6-38.4-42.667-68.267-29.867l-157.867 55.467-21.333-59.733 157.867-59.733c59.733-17.067 123.733 12.8 149.333 72.533l221.867 614.4c8.533 0 12.8 0 21.333-4.267l-119.467-332.8c-4.267-17.067 4.267-34.133 17.067-38.4l136.533-51.2c0 0 0 0 0 0l115.2-42.667c0 0 0 0 0 0l136.533-51.2c8.533-4.267 17.067-4.267 25.6 0s12.8 8.533 17.067 17.067l145.067 396.8c0 4.267 0 12.8-4.267 21.333zM695.467 302.933l-59.733 21.333 8.533 21.333 59.733-21.333-8.533-21.333zM644.267 853.333c0-51.2-42.667-93.867-93.867-93.867s-93.867 42.667-93.867 93.867c0 51.2 42.667 93.867 93.867 93.867s93.867-38.4 93.867-93.867zM951.467 588.8l-119.467-332.8-76.8 29.867 17.067 51.2c4.267 8.533 4.267 17.067 0 25.6s-8.533 12.8-17.067 17.067l-115.2 42.667c-4.267 0-8.533 0-12.8 0-12.8 0-25.6-8.533-29.867-21.333l-17.067-51.2-76.8 29.867 119.467 332.8 328.533-123.733z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["supplier"],"grid":0},"attrs":[{}],"properties":{"order":394,"id":110,"name":"supplier","prevSize":32,"code":59766},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M198.827 77.227c22.187-0.427 41.813 14.080 48.64 34.133l8.107 22.187 105.813 105.813-54.187-149.333c-25.6-59.733-89.6-89.6-149.333-72.533l-13.653 5.12 54.613 54.613z","M708.693 830.72l-173.653-173.653 15.36 43.093c-8.533 4.267-12.8 4.267-21.333 4.267l-29.867-83.2-108.373-108.373 74.24 208.64c-42.667 25.6-72.533 76.8-72.533 132.267 0 89.6 72.533 157.867 157.867 157.867 89.6 0 157.867-72.533 157.867-157.867 0-8.533-4.267-12.8-4.267-21.333l4.693-1.707zM550.4 947.627c-51.2 0-93.867-42.667-93.867-93.867s42.667-93.867 93.867-93.867 93.867 42.667 93.867 93.867c0 55.467-42.667 93.867-93.867 93.867z","M960 670.293l-122.453 45.227 49.493 49.067 94.293-34.56z","M504.32 382.293l-0.853-2.133 76.8-29.867 17.067 51.2c4.267 12.8 17.067 21.333 29.867 21.333 4.267 0 8.533 0 12.8 0l115.2-42.667c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 0-25.6l-17.067-51.2 76.8-29.867 119.467 332.8-174.507 65.707 45.653 45.653 180.053-64.427c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 4.267-21.333l-145.067-396.8c-4.267-8.533-8.533-12.8-17.067-17.067s-17.067-4.267-25.6 0l-136.533 51.2-115.2 42.667-134.4 50.347 54.187 54.187zM695.467 303.36l8.533 21.333-59.733 21.333-8.533-21.333 59.733-21.333z","M896 520.96l-98.133 34.133 21.333 59.733 98.133-34.133z","M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z"],"attrs":[{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{}]},"tags":["supplierfalse"],"grid":0},"attrs":[{},{},{},{},{},{}],"properties":{"order":396,"id":111,"name":"supplierfalse","prevSize":32,"code":59767},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M729.6 0c-42.667 0-89.6 0-132.267 0-21.333 0-38.4 8.533-51.2 21.333-140.8 140.8-281.6 281.6-422.4 422.4-25.6 25.6-25.6 51.2 0 76.8 93.867 93.867 187.733 187.733 281.6 281.6 25.6 25.6 51.2 25.6 76.8 0 140.8-140.8 281.6-281.6 422.4-422.4 17.067-12.8 21.333-29.867 21.333-51.2 0-93.867 0-183.467 0-277.333 0-34.133-17.067-51.2-51.2-51.2-51.2-0-98.133-0-145.067-0zM682.667 196.267c0-25.6 17.067-46.933 42.667-46.933s46.933 21.333 46.933 46.933c0 25.6-21.333 46.933-46.933 46.933-21.333 0-42.667-21.333-42.667-46.933zM878.933 477.867c4.267 12.8 0 21.333-8.533 29.867-34.133 51.2-64 98.133-98.133 149.333-76.8 115.2-153.6 234.667-230.4 349.867-12.8 17.067-21.333 21.333-38.4 8.533-115.2-76.8-226.133-149.333-337.067-226.133-17.067-8.533-17.067-21.333-8.533-38.4 12.8-21.333 29.867-46.933 42.667-68.267 8.533-12.8 8.533-12.8 17.067 0 55.467 55.467 115.2 115.2 170.667 170.667 8.533 8.533 17.067 17.067 29.867 21.333 29.867 12.8 55.467 4.267 76.8-21.333 123.733-123.733 247.467-247.467 371.2-371.2 4.267-4.267 4.267-8.533 8.533-12.8 0 8.533 0 8.533 4.267 8.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["tags"],"grid":0},"attrs":[{}],"properties":{"order":397,"id":112,"name":"tags","prevSize":32,"code":59769},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M448 768c0-174.933 145.067-320 320-320 76.8 0 145.067 25.6 196.267 68.267v-324.267c4.267-51.2-38.4-98.133-93.867-98.133h-204.8c-21.333-55.467-72.533-93.867-136.533-93.867s-115.2 38.4-136.533 98.133h-209.067c-55.467 0-98.133 42.667-98.133 93.867v674.133c0 51.2 42.667 98.133 98.133 98.133h332.8c-42.667-55.467-68.267-123.733-68.267-196.267zM529.067 98.133c29.867 0 46.933 21.333 46.933 46.933 0 29.867-25.6 46.933-46.933 46.933-29.867 0-46.933-21.333-46.933-46.933-4.267-29.867 17.067-46.933 46.933-46.933zM708.267 712.533c-8.533 0-12.8-4.267-17.067-8.533s-8.533-8.533-8.533-17.067v-17.067c0-8.533 0-12.8 4.267-17.067s8.533-8.533 17.067-8.533c8.533 0 12.8 4.267 17.067 8.533s4.267 12.8 4.267 17.067v12.8c4.267 21.333-4.267 29.867-17.067 29.867zM870.4 827.733c4.267 4.267 4.267 12.8 4.267 17.067v21.333c0 12.8-8.533 21.333-21.333 21.333-8.533 0-12.8-4.267-17.067-8.533s-8.533-12.8-8.533-17.067v-17.067c0-8.533 4.267-12.8 8.533-17.067s8.533-8.533 17.067-8.533c8.533-0 12.8 4.267 17.067 8.533zM768 512c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM635.733 686.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067c21.333 0 38.4 4.267 51.2 17.067s17.067 29.867 17.067 46.933v17.067c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-8.533-12.8-17.067-29.867-17.067-46.933zM721.067 900.267l-34.133-17.067 153.6-243.2 34.133 17.067-153.6 243.2zM925.867 861.867c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-12.8-12.8-21.333-25.6-21.333-46.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067 38.4 4.267 51.2 17.067c12.8 12.8 17.067 29.867 17.067 46.933v17.067h4.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["tax"],"grid":0},"attrs":[{}],"properties":{"order":398,"id":113,"name":"tax","prevSize":32,"code":59770},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M641.567 633.208v-35.527h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-121.208h64.784v-25.078h-64.784v-8.359c0-71.053-58.514-129.567-129.567-129.567s-129.567 58.514-129.567 129.567v503.641c-54.335 39.706-87.771 104.49-87.771 173.453 0 119.118 96.131 217.339 217.339 217.339 119.118 0 217.339-96.131 217.339-217.339 0-66.873-33.437-131.657-87.771-173.453zM512 988.473c-100.31 0-179.722-81.502-179.722-179.722 0-64.784 33.437-123.298 87.771-154.645v-524.539c0-50.155 41.796-91.951 91.951-91.951s91.951 41.796 91.951 91.951v522.449c54.335 31.347 87.771 89.861 87.771 154.645 0 100.31-79.412 181.812-179.722 181.812zM652.016 524.539v-25.078h35.527v25.078h-35.527zM652.016 380.343v-25.078h35.527v25.078h-35.527zM652.016 236.147v-25.078h35.527v25.078h-35.527zM568.424 675.004v-543.347c0 0 0 0 0 0s0 0 0 0v0 0c0-31.347-25.078-56.424-56.424-56.424s-56.424 25.078-56.424 56.424v0 543.347c-52.245 20.898-87.771 73.143-87.771 131.657 0 79.412 64.784 144.196 144.196 144.196s144.196-64.784 144.196-144.196c0-58.514-35.527-108.669-87.771-131.657zM470.204 135.837v-4.18c0-22.988 18.808-41.796 41.796-41.796s41.796 18.808 41.796 41.796v219.429h-85.682v-215.249z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["thermometer"],"grid":0},"attrs":[{}],"properties":{"order":399,"id":114,"name":"thermometer","prevSize":32,"code":59771},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M200.533 648.533c12.8-38.4 25.6-76.8 38.4-115.2 8.533-25.6 17.067-55.467 29.867-81.067 29.867-81.067 55.467-166.4 85.333-247.467 21.333-55.467 38.4-110.933 59.733-166.4 4.267-12.8 8.533-21.333 12.8-34.133 0-4.267 4.267-4.267 8.533-4.267 59.733 12.8 115.2 21.333 174.933 34.133 81.067 17.067 157.867 34.133 238.933 46.933 55.467 12.8 110.933 21.333 170.667 34.133 4.267 4.267 4.267 4.267 4.267 12.8-29.867 89.6-59.733 179.2-89.6 264.533-21.333 64-42.667 128-64 187.733-25.6 68.267-46.933 140.8-76.8 209.067-17.067 51.2-38.4 98.133-59.733 145.067-12.8 25.6-25.6 51.2-46.933 68.267-17.067 17.067-34.133 21.333-59.733 12.8-59.733-17.067-93.867-59.733-106.667-119.467-4.267-25.6-8.533-51.2-8.533-76.8 0-12.8 0-25.6 0-38.4s-8.533-21.333-17.067-25.6c-76.8-29.867-153.6-64-234.667-93.867-25.6 0-42.667-4.267-59.733-12.8zM554.667 409.6c-17.067 0-29.867 4.267-29.867 17.067-4.267 12.8 4.267 25.6 17.067 29.867 59.733 21.333 123.733 42.667 183.467 59.733 12.8 4.267 25.6 0 29.867-8.533 8.533-17.067 4.267-29.867-12.8-38.4-46.933-17.067-98.133-34.133-145.067-46.933-17.067-4.267-34.133-8.533-42.667-12.8zM477.867 584.533c-4.267 0-8.533 0-12.8 4.267-8.533 4.267-12.8 12.8-12.8 21.333 0 12.8 8.533 21.333 21.333 25.6 59.733 21.333 119.467 38.4 183.467 59.733 17.067 4.267 29.867 0 34.133-12.8s-4.267-25.6-17.067-29.867c-42.667-12.8-85.333-29.867-132.267-42.667-25.6-12.8-46.933-21.333-64-25.6zM806.4 328.533c21.333 0 29.867-4.267 34.133-21.333 4.267-8.533-8.533-21.333-21.333-25.6-21.333-4.267-42.667-12.8-68.267-17.067-38.4-12.8-76.8-21.333-119.467-34.133-17.067-4.267-34.133 8.533-29.867 25.6 0 12.8 12.8 17.067 25.6 21.333 42.667 12.8 89.6 25.6 132.267 38.4 17.067 4.267 34.133 8.533 46.933 12.8zM516.267 213.333c0-12.8-12.8-25.6-25.6-25.6-17.067 0-25.6 8.533-25.6 21.333s12.8 25.6 29.867 25.6c12.8 4.267 21.333-4.267 21.333-21.333zM426.667 418.133c12.8 0 25.6-8.533 25.6-21.333s-12.8-25.6-25.6-25.6c-17.067 0-29.867 8.533-25.6 21.333-4.267 12.8 4.267 25.6 25.6 25.6zM354.133 537.6c-17.067 0-25.6 8.533-25.6 25.6s12.8 25.6 29.867 25.6c12.8 0 25.6-8.533 25.6-21.333-4.267-17.067-17.067-29.867-29.867-29.867z","M4.267 618.667c25.6 12.8 55.467 21.333 81.067 34.133 59.733 25.6 119.467 46.933 174.933 72.533 51.2 21.333 102.4 42.667 157.867 64 8.533 4.267 17.067 8.533 25.6 12.8s12.8 8.533 12.8 17.067c0 42.667 4.267 89.6 21.333 128 8.533 17.067 17.067 38.4 25.6 55.467-12.8-4.267-29.867-8.533-42.667-17.067-46.933-17.067-93.867-38.4-145.067-55.467-42.667-17.067-85.333-38.4-128-55.467-29.867-12.8-59.733-25.6-89.6-38.4s-55.467-38.4-72.533-64c-21.333-42.667-25.6-85.333-25.6-132.267 0-4.267 4.267-12.8 4.267-21.333z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["ticket"],"grid":0},"attrs":[{},{}],"properties":{"order":400,"id":115,"name":"ticket","prevSize":32,"code":59772},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M714.667 405.333c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333 309.333-138.667 309.333-309.333-138.667-309.333-309.333-309.333zM897.28 761.6h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427v89.173z","M353.707 765.867c-31.573-12.8-62.72-25.6-93.44-38.4-55.467-25.6-115.2-46.933-174.933-72.533-25.6-12.8-55.467-21.333-81.067-34.133v0c0 8.533-4.267 17.067-4.267 21.333 0 46.933 4.267 89.6 25.6 132.267 17.067 25.6 42.667 51.2 72.533 64s59.733 25.6 89.6 38.4c42.667 17.067 85.333 38.4 128 55.467 51.2 17.067 98.133 38.4 145.067 55.467 7.68 5.12 17.493 8.96 26.453 11.947-71.253-56.747-120.32-139.52-133.547-233.813z","M372.907 587.093c-4.267 2.56-9.387 3.84-14.507 3.84-17.067 0-29.867-8.533-29.867-25.6s8.533-25.6 25.6-25.6c11.52 0 23.040 10.24 28.16 24.747 57.173-126.293 184.747-214.613 332.373-214.613 78.933 0 152.32 25.173 212.053 68.267 2.56-7.68 5.12-15.36 7.68-23.467 29.867-85.333 59.733-174.933 89.6-264.533 0-8.533 0-8.533-4.267-12.8-59.733-12.8-115.2-21.333-170.667-34.133-81.067-12.8-157.867-29.867-238.933-46.933-59.733-12.8-115.2-21.333-174.933-34.133-4.267 0-8.533 0-8.533 4.267-4.267 12.8-8.533 21.333-12.8 34.133-21.333 55.467-38.4 110.933-59.733 166.4-29.867 81.067-55.467 166.4-85.333 247.467-12.8 25.6-21.333 55.467-29.867 81.067-12.8 38.4-25.6 76.8-38.4 115.2v0c17.067 8.533 34.133 12.8 59.733 12.8 30.72 11.093 60.587 23.040 90.027 34.987 1.707-38.827 9.387-76.373 22.613-111.36zM631.467 232.533c42.667 12.8 81.067 21.333 119.467 34.133 25.6 4.267 46.933 12.8 68.267 17.067 12.8 4.267 25.6 17.067 21.333 25.6-4.267 17.067-12.8 21.333-34.133 21.333-12.8-4.267-29.867-8.533-46.933-12.8-42.667-12.8-89.6-25.6-132.267-38.4-12.8-4.267-25.6-8.533-25.6-21.333-4.267-17.067 12.8-29.867 29.867-25.6zM490.667 189.867c12.8 0 25.6 12.8 25.6 25.6 0 17.067-8.533 25.6-21.333 21.333-17.067 0-29.867-12.8-29.867-25.6s8.533-21.333 25.6-21.333zM426.667 373.333c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.333-25.6 21.333c-21.333 0-29.867-12.8-25.6-25.6-4.267-12.8 8.533-21.333 25.6-21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["ticketAdd"],"grid":0},"attrs":[{},{},{}],"properties":{"order":401,"id":116,"name":"ticketAdd","prevSize":32,"code":59774},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M256 128c0 72.533-55.467 128-128 128s-128-55.467-128-128 55.467-128 128-128 128 55.467 128 128zM512 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM896 768c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM981.333 85.333h-580.267v-85.333h-68.267v256h68.267v-85.333h537.6v298.667h-226.133v85.333h268.8c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM563.2 1024v-85.333h-520.533c-25.6 0-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667h268.8v85.333h-226.133v298.667h477.867v-85.333l128 128-128 128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["traceability"],"grid":0},"attrs":[{}],"properties":{"order":402,"id":117,"name":"traceability","prevSize":32,"code":59775},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M595.2 380.8c32 0 60.8 12.8 83.2 32l6.4 6.4 51.2-51.2-9.6-6.4c-35.2-35.2-83.2-51.2-134.4-51.2-83.2 0-156.8 51.2-188.8 128h-76.8v60.8h64c0 3.2 0 9.6 0 12.8s0 9.6 0 12.8h-64v60.8h80c32 80 105.6 128 188.8 128 51.2 0 99.2-19.2 134.4-51.2l9.6-6.4-51.2-48-6.4 6.4c-22.4 19.2-54.4 32-83.2 32-44.8 0-83.2-22.4-105.6-57.6h118.4v-60.8h-140.8c0-6.4 0-9.6 0-12.8s0-9.6 0-12.8h140.8v-60.8h-118.4c19.2-38.4 57.6-60.8 102.4-60.8zM553.6 48c-256 0-464 208-464 467.2h-86.4l134.4 208 140.8-208h-86.4c0-198.4 163.2-361.6 361.6-361.6s361.6 163.2 361.6 361.6-163.2 361.6-361.6 361.6c-99.2 0-188.8-41.6-252.8-108.8l-73.6 73.6c86.4 86.4 198.4 134.4 329.6 134.4 256 0 464-208 464-464s-208-464-467.2-464z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["transaction"],"grid":0},"attrs":[{}],"properties":{"order":403,"id":118,"name":"transaction","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M420.267 131.84c-78.507 22.613-121.173 80.213-121.173 161.707v730.027h443.307c0-0.853 0-1.28 0-2.133 0-64.853 0-129.28 0-194.133 0-177.92 0-362.24-0.853-544.853 0-56.747-27.307-101.973-78.080-133.12v0c-9.387-5.973-20.48-10.24-32.427-14.507h-0.853c-5.12-2.133-10.24-4.267-16.213-6.827l-1.28-0.853v-128h-186.027v129.28l-3.84 1.28c-0.853 1.28-1.707 2.133-2.56 2.133zM682.667 965.12h-324.693v-649.813h324.693c0 0 0 649.813 0 649.813zM486.4 58.027h68.267v69.12h-68.267v-69.12zM454.827 186.027h25.173c35.413 0 71.253-0.853 106.667 0 38.4 0.853 67.84 19.2 86.613 54.187 1.28 2.133 2.133 5.12 3.84 7.253v0.853c0.853 1.28 0 2.133 0 2.987v2.987h-314.88l1.28-3.84c5.12-16.213 14.507-30.293 28.587-41.813 18.773-14.507 40.107-22.613 62.72-22.613z","M613.547 738.133c0.853-22.613 0-45.653 0-68.267v-7.253c0-8.107 0-16.213 0-23.467v-0.853c0-8.107 0-17.067 0-25.173v-1.28c0-22.187 0-44.8 0-66.987 0-10.24-1.28-19.2-2.987-26.453-10.24-40.533-47.787-69.973-89.6-69.973-3.84 0-7.253 0-10.24 0.853-47.787 5.973-83.2 44.8-83.627 91.733-0.853 61.867 0 125.867 0 182.187v14.080c0 6.827 0.853 14.080 2.987 21.333 11.093 44.8 53.76 75.093 99.413 70.4 47.36-4.693 83.627-43.947 84.053-90.88zM555.52 666.88c0 22.187 0 43.947 0 66.133s-14.080 38.4-34.56 38.4c-9.387 0-17.493-3.84-24.32-9.387-7.253-6.827-11.093-17.067-11.093-27.733 0-62.293 0-126.293 0-189.013 0-11.093 3.84-21.333 11.093-27.733 6.827-5.973 14.507-9.387 24.32-9.387 20.48 0 34.56 16.213 34.56 38.4s0 43.947 0 66.133v54.187z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{}],"125525525519595951":[{},{}],"12043441125524245125525525513111218319595951":[{},{}]},"tags":["treatments"],"grid":0},"attrs":[{},{}],"properties":{"order":405,"id":119,"name":"treatments","prevSize":32,"code":59776},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M972.8 902.4v-902.4h-44.384v153.184h-832.864v-153.184h-44.384v902.4c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-17.056-49.92-40.544-58.88v-9.376h832.864v9.376c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-16.64-49.92-40.544-58.88zM928.416 192.864v314.464h-832.864v-314.464h832.864zM139.936 852.896h-44.384v-305.504h832.864v305.504h-788.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["trolley"],"grid":0},"attrs":[{}],"properties":{"order":417,"id":120,"name":"trolley","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M696.747 646.827c-0.427 7.253-1.707 14.080-3.413 20.907-5.547 12.373-13.653 22.613-25.173 29.867-20.48 10.24-40.107 9.813-59.733-2.133-9.813-7.253-17.067-16.64-22.187-28.16-1.707-6.827-2.987-13.653-3.413-20.907 0.427-7.253 2.133-14.080 4.267-20.907 0.427-0.427 0.427-0.427 0.427-0.853 3.413-6.4 7.68-12.373 12.8-17.92 2.133-1.707 4.693-3.84 6.827-5.973 6.4-3.84 13.227-6.827 20.907-8.96 6.827-1.28 13.653-0.853 20.907-0.853 7.253 2.133 14.080 3.84 20.48 8.107v0c17.067 11.52 25.6 27.733 27.307 47.787zM897.28 602.88v0c-12.373-8.96-26.027-12.373-40.96-11.52-7.253 1.28-14.080 3.413-20.907 6.4-11.093 6.827-19.627 16.213-25.173 27.733-2.133 6.827-3.84 13.653-4.267 20.907 0 7.253 1.28 14.080 3.413 20.907 1.707 3.84 3.413 7.253 5.547 11.093 2.56 2.987 5.12 6.4 7.68 9.387 4.267 3.413 8.533 6.4 12.8 9.813 4.267 1.707 8.533 3.84 13.227 4.693 17.92 4.693 34.133 0.853 49.067-9.813 1.707-1.707 3.413-2.987 5.547-4.693 10.667-11.947 16.213-25.6 16.64-41.813-0.853-4.693-1.28-9.813-2.133-14.507-4.267-10.667-10.24-20.907-20.48-28.587zM277.76 593.067c-1.28-0.427-2.56-0.853-3.84-1.28-6.827-0.427-13.653-0.427-20.48 0.853-7.253 1.707-14.507 5.12-20.907 8.96-1.707 1.28-3.413 2.56-5.12 3.84-11.947 11.52-18.347 25.173-19.2 41.387 0 6.4 1.28 12.8 2.987 19.2 0.427 1.707 1.28 2.987 1.707 4.693 3.413 6.4 7.253 12.373 11.947 17.92 2.56 2.133 5.12 4.267 7.68 6.4 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 13.653 1.28 20.907 0.427 6.827-1.28 13.227-3.84 19.2-6.827 14.933-9.813 25.173-23.040 27.733-41.387 3.84-29.013-14.507-56.32-43.52-63.147zM190.72 622.080v0c-3.84-5.973-8.107-11.947-13.227-17.067-2.56-1.707-4.693-3.413-7.253-5.547-20.907-11.52-41.813-11.093-62.293 1.28-1.707 1.28-3.413 2.56-5.12 4.267-11.947 11.52-18.773 25.173-19.2 41.813 0 7.253 1.28 14.080 2.987 20.48 0.427 1.28 1.28 2.987 1.707 4.267 2.987 5.547 6.4 10.667 10.24 15.36 2.987 2.56 5.973 5.12 9.387 8.107 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 14.080 1.28 20.907 0.427 6.827-1.707 13.227-3.84 19.2-6.827 11.52-7.253 19.627-17.493 25.173-29.867 2.133-6.827 2.987-13.653 3.413-20.48-0.853-6.827-2.133-14.080-4.267-20.48-1.707-1.707-2.133-3.413-2.56-4.693zM47.787 536.747h686.933c1.28 0 2.56-1.28 2.56-2.56v-212.48c0-1.28-1.28-2.56-2.56-2.56h-686.933c-1.28 0-2.56 1.28-2.56 2.56v212.053c0 1.707 0.853 2.987 2.56 2.987zM981.333 505.6v133.12c-3.84 9.387-11.093 12.8-20.907 12.373-6.827-0.427-13.653-0.427-20.907 0-2.987 0-2.987-2.56-4.267-4.267-1.28-7.253-4.267-14.507-7.68-20.907-10.667-22.187-25.6-39.253-50.347-46.080-6.827-2.133-13.653-2.56-20.907-1.707-18.773 1.28-33.28 11.093-45.227 24.32-5.12 5.547-9.387 11.52-12.8 18.347-1.28 2.56-2.987 3.413-5.547 3.413-27.307 0-54.613 0-81.92 0-3.413 0-5.547-1.28-7.253-4.267-14.507-21.76-33.707-35.84-60.16-39.253-13.227-1.707-26.027 0-37.547 6.827-16.64 8.107-26.88 21.333-32.427 38.4-2.987 6.827-3.84 13.653-4.267 20.907 0 2.133-1.28 3.413-3.413 3.413-6.827 0-14.080 0-20.907 0-1.28-0.427-1.28-2.133-1.707-3.413 1.707-14.507 6.4-28.16 12.373-41.387 4.267-7.253 8.107-14.507 13.227-20.907 3.84-5.12 8.107-9.813 12.8-14.080 15.36-17.067 30.293-17.067 30.293-17.067h180.48v-180.907h0.427v-0.853h137.813c0 0 3.413 2.133 4.693 8.96 2.133 5.973 4.693 11.947 6.827 17.92 2.133 6.4 4.267 13.227 7.253 19.2 4.693 14.080 9.813 27.733 15.36 41.813 2.133 6.827 4.693 14.080 7.68 20.48v0c2.133 8.96 5.12 17.493 8.96 25.6zM949.76 497.067l-34.56-92.587h-16.64c-0.427 0-0.427 0-0.853 0s-0.427 0-0.853 0h-49.493v81.92c0.853 0.427 1.707 0.427 2.987 0.427 1.707 0 3.84 0 5.547 0 6.827 1.28 13.653 2.133 20.907 2.133 6.827 1.28 14.080 2.133 20.907 2.133 6.827 0.853 13.653 1.707 20.907 2.133v0l20.907 2.133c3.413 0.853 6.827 1.28 10.24 1.707zM340.907 597.333v0c-7.253-12.373-15.787-23.467-26.453-31.573-13.227-11.52-25.173-12.8-25.173-12.8h-172.373c0 0-4.267 0.427-8.96 1.707 0 0-0.427 0-0.427 0-0.427 0-0.427 0-0.853 0.427-4.267 1.28-8.533 2.987-11.093 5.12-8.533 4.693-15.36 11.52-22.187 18.773-6.827 8.107-11.947 17.067-17.493 26.027-4.267 9.387-7.68 19.2-10.667 29.013-5.547 15.787 0 15.787 0 15.787l20.907 0.427c2.133 0 3.413-1.28 3.413-3.413 0.427-7.253 1.707-14.080 4.267-20.907 5.547-17.92 16.64-31.147 33.707-39.253 20.48-10.667 41.387-11.947 62.72-2.56 7.68 3.413 14.933 7.253 17.92 15.787 0.427 1.28 1.707 0.853 2.56 1.28 0 0 0 0 0 0h20.48c0.427-0.427 1.28-0.427 1.28-0.853 2.987-8.533 10.667-12.373 18.347-16.213 1.707-0.853 3.413-2.133 5.547-2.56 23.040-6.827 44.373-4.267 64.427 8.96 19.627 12.8 28.587 32.427 30.72 55.040 0.427 3.413 1.28 4.693 5.12 4.693 6.827 0 13.653 0 20.053 0 0.853-0.853 0.853-2.56 0.853-3.413-1.707-14.507-6.4-28.16-12.8-41.387-0.853-2.56-2.133-5.547-3.84-8.107z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["troncales"],"grid":0},"attrs":[{}],"properties":{"order":406,"id":121,"name":"troncales","prevSize":32,"code":59778},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z","M469.333 353.28v-267.947h-128v139.947z","M640 85.333h-85.333c0 0 0 142.080 0 273.92 24.747-21.333 53.333-35.413 85.333-46.080v-227.84z","M563.2 447.147l46.933 46.933c26.453-36.267 69.973-60.587 118.613-60.587 81.92 0 145.92 64 145.92 145.92 0 49.493-23.893 92.16-60.587 118.187l43.947 43.947c47.36-38.827 77.227-97.707 77.227-162.133 0-117.333-96-209.92-209.92-209.92-66.133 0.427-124.16 30.72-162.133 77.653z","M938.667 394.667v-309.333h-85.333v241.92c32 17.493 60.587 38.827 85.333 67.413z","M768 302.080v-216.747h-42.667l3.413 213.333c14.507 0 28.587 0 39.253 3.413z","M298.667 182.613v-97.28h-42.667v54.613z","M524.373 640c8.107 28.587 22.187 54.613 40.96 78.080l-10.667 7.253h-24.747l-160 163.413 49.493 49.92 160-163.413v-24.747l7.253-10.667c21.76 19.627 48.64 33.28 78.507 41.387l-140.8-141.227z","M444.587 583.253c0-7.253 0.427-14.507 1.28-21.333l-104.533-104.533v335.36h24.747l99.413-99.413c-14.080-35.413-20.907-71.253-20.907-110.080z","M85.333 201.387v591.36h85.333v-506.027z","M256 372.053v420.693h42.667v-378.027z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["unavailable"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":407,"id":122,"name":"unavailable","prevSize":32,"code":59779},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M317.013 122.027h-256.853c-33.28 0-60.16 26.88-60.16 60.16v586.24c0 32.853 26.88 60.16 60.16 60.16h257.28c32.853 0 60.16-26.88 60.16-60.16v-586.24c-0.427-32.853-27.307-60.16-60.587-60.16zM307.2 758.613h-237.653v-566.613h237.653v566.613z","M811.093 580.267v-398.080c0-32.853-26.88-60.16-60.16-60.16h-257.28c-32.853 0-59.733 26.88-59.733 60.16v586.24c0 32.853 26.88 60.16 59.733 60.16h110.080v-69.547h-100.267v-567.040h237.653v457.813l69.973-69.547z","M887.040 639.573l-189.44 188.587v73.813h73.813l189.013-189.44z","M903.253 623.36l73.387 72.96 42.667-42.667c2.133-2.133 2.56-3.413 2.987-4.693 1.28-3.413 1.707-6.827 1.707-9.813 0-2.133-0.427-4.267-1.28-6.4v0c-1.28-3.413-2.987-6.4-5.547-9.387l-42.24-41.813c-2.133-2.133-4.267-3.84-6.827-4.693-5.12-2.133-10.24-2.133-16.64 0-1.707 0.427-2.987 1.707-5.12 3.413l-43.093 43.093z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{}],"125525525519595951":[{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{}]},"tags":["visible_columns"],"grid":0},"attrs":[{},{},{},{}],"properties":{"order":408,"id":123,"name":"visible_columns","prevSize":32,"code":59780},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M1024 337.067c0 42.667-17.067 72.533-46.933 98.133s-72.533 38.4-123.733 38.4c-17.067 0-34.133-4.267-46.933-4.267v554.667h-174.933v-605.867c0-29.867-4.267-46.933-12.8-64-8.533-12.8-25.6-21.333-51.2-21.333-34.133 0-59.733 17.067-76.8 46.933v644.267h-174.933v-605.867c0-29.867-4.267-51.2-12.8-64-12.8-12.8-29.867-17.067-55.467-17.067-34.133 0-59.733 12.8-76.8 42.667v644.267h-170.667v-810.667h162.133l4.267 64c38.4-51.2 93.867-76.8 157.867-76.8 68.267 0 115.2 29.867 140.8 85.333 38.4-55.467 93.867-85.333 162.133-85.333 93.867 0 145.067 46.933 166.4 136.533v0c0 12.8 4.267 25.6 17.067 38.4 12.8 8.533 25.6 17.067 42.667 17.067s34.133-4.267 46.933-17.067 17.067-25.6 17.067-38.4c0-21.333-4.267-38.4-17.067-51.2-12.8-8.533-25.6-12.8-46.933-12.8h-51.2v-81.067h51.2c38.4 0 59.733-21.333 59.733-59.733 0-17.067-4.267-25.6-12.8-38.4-12.8-8.533-25.6-12.8-46.933-12.8-12.8 0-25.6 4.267-38.4 12.8-8.533 8.533-17.067 17.067-17.067 29.867h-106.667c0-25.6 8.533-46.933 21.333-64s34.133-34.133 55.467-42.667 55.467-17.067 85.333-17.067c51.2 0 93.867 12.8 119.467 34.133 29.867 25.6 42.667 55.467 42.667 98.133 0 21.333-4.267 38.4-17.067 55.467s-29.867 29.867-51.2 42.667c25.6 8.533 42.667 21.333 59.733 38.4 8.533 21.333 17.067 42.667 17.067 68.267z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["volume"],"grid":0},"attrs":[{}],"properties":{"order":409,"id":124,"name":"volume","prevSize":32,"code":59781},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M829.649 394.971l-18.808 50.155-50.155 18.808 50.155 18.808 18.808 50.155 18.808-50.155 50.155-18.808-50.155-18.808-18.808-50.155zM624.849 89.861l-35.527-89.861-33.437 89.861-89.861 35.527 89.861 33.437 33.437 89.861 33.437-89.861 91.951-33.437-89.861-35.527zM969.665 140.016l-20.898-54.335-20.898 54.335-52.245 20.898 52.245 20.898 20.898 52.245 20.898-52.245 54.335-20.898-54.335-20.898zM783.673 311.38l-71.053-71.053c-4.18-4.18-8.359-4.18-12.539-4.18s-8.359 2.090-12.539 4.18l-681.273 681.273c0 0 0 0 0 0v0c-6.269 6.269-6.269 18.808 0 25.078l71.053 71.053c6.269 6.269 16.718 6.269 22.988 0v0c0 0 0 0 0 0l683.363-683.363c6.269-6.269 6.269-16.718 0-22.988zM626.939 453.486l-56.424-56.424 129.567-129.567 56.424 56.424-129.567 129.567z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["wand"],"grid":0},"attrs":[{}],"properties":{"order":410,"id":125,"name":"wand","prevSize":32,"code":59782},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M827.733 426.667c-29.867-145.067-157.867-256-315.733-256-123.733 0-230.4 68.267-285.867 170.667-128 17.067-226.133 123.733-226.133 256 0 140.8 115.2 256 256 256h554.667c119.467 0 213.333-93.867 213.333-213.333 0-110.933-85.333-204.8-196.267-213.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["web"],"grid":0},"attrs":[{}],"properties":{"order":411,"id":126,"name":"web","prevSize":32,"code":59783},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M793.6 226.133c0 0 4.267 0 4.267 0l76.8-12.8v42.667c0 34.133-21.333 68.267-46.933 72.533 0 0-4.267 0-4.267 0l-76.8 12.8v-42.667c0-34.133 21.333-64 46.933-72.533z","M742.4 362.667l38.4-4.267c12.8 0 25.6 12.8 25.6 29.867v21.333l-38.4 4.267c-12.8 0-25.6-12.8-25.6-29.867v-21.333z","M618.667 260.267l68.267-8.533c25.6-4.267 42.667 21.333 42.667 55.467v38.4l-68.267 8.533c-25.6 4.267-42.667-21.333-42.667-55.467l-0-38.4z","M665.6 371.2c4.267 0 4.267 0 0 0l59.733-4.267v29.867c0 25.6-17.067 46.933-34.133 55.467 0 0-4.267 0-4.267 0l-55.467 8.533v-29.867c4.267-29.867 17.067-51.2 34.133-59.733z","M443.733 311.467c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 4.267-8.533 4.267-12.8 4.267z","M443.733 448c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267-0-8.533 4.267-12.8 4.267z","M443.733 580.267c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M443.733 712.533c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z","M588.8 580.267c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M588.8 712.533c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z","M985.6 221.867v-64l-8.533-4.267c-4.267 0-81.067-29.867-179.2-29.867-106.667 0-200.533 34.133-277.333 98.133-76.8-64-170.667-98.133-277.333-98.133-102.4 0-174.933 29.867-179.2 29.867l-12.8 4.267v59.733c-34.133 4.267-51.2 17.067-51.2 34.133v614.4h452.267c17.067 12.8 38.4 21.333 64 21.333s46.933-8.533 64-21.333h443.733v-614.4c0-17.067-17.067-25.6-38.4-29.867v0zM512 814.933c-38.4-17.067-166.4-64-298.667-64-51.2 0-98.133 8.533-136.533 21.333v-597.333c21.333-8.533 85.333-25.6 162.133-25.6 98.133 0 183.467 29.867 256 89.6v358.4l17.067-17.067v234.667zM955.733 776.533c-42.667-17.067-89.6-25.6-140.8-25.6-128 0-251.733 51.2-290.133 64v-238.933l17.067 17.067v-349.867c68.267-59.733 153.6-89.6 256-89.6 76.8 0 136.533 17.067 162.133 25.6v597.333zM955.733 776.533z"],"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"125525525519595951":[{},{},{},{},{},{},{},{},{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{},{},{},{},{},{},{},{},{}]},"tags":["wiki"],"grid":0},"attrs":[{},{},{},{},{},{},{},{},{},{},{}],"properties":{"order":412,"id":127,"name":"wiki","prevSize":32,"code":59785},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M297.6 454.4c-44.8 0-80 35.2-80 83.2s35.2 83.2 80 83.2 80-35.2 80-83.2-35.2-83.2-80-83.2zM297.6 640c-54.4 0-163.2 28.8-163.2 83.2v60.8h326.4v-60.8c0-54.4-108.8-83.2-163.2-83.2zM880 515.2h-316.8c-16 0-28.8-12.8-28.8-28.8s12.8-28.8 28.8-28.8h316.8c16 0 25.6 12.8 25.6 28.8s-12.8 28.8-25.6 28.8zM880 784h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM880 649.6h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM624 48v236.8c0 25.6-22.4 48-48 48h-131.2c-25.6 0-48-22.4-48-48v-236.8c0-25.6 22.4-48 48-48h131.2c28.8 0 48 22.4 48 48zM1024 294.4v640c0 51.2-41.6 89.6-89.6 89.6h-844.8c-48 0-89.6-41.6-89.6-89.6v-640c0-51.2 41.6-89.6 89.6-89.6h275.2v54.4h-275.2c-19.2 0-35.2 16-35.2 35.2v640c0 19.2 16 35.2 35.2 35.2h841.6c19.2 0 35.2-16 35.2-35.2v-640c0-19.2-16-35.2-35.2-35.2h-275.2v-54.4h275.2c51.2 0 92.8 38.4 92.8 89.6z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{}],"125525525519595951":[{}],"12043441125524245125525525513111218319595951":[{}]},"tags":["worker"],"grid":0},"attrs":[{}],"properties":{"order":413,"id":128,"name":"worker","prevSize":32,"code":59786},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M243.2 512c-12.8-17.067-25.6-34.133-38.4-51.2-34.133-46.933-68.267-98.133-89.6-153.6-17.067-34.133-25.6-72.533-17.067-110.933 8.533-51.2 38.4-89.6 85.333-110.933 59.733-25.6 132.267-8.533 174.933 34.133 34.133 38.4 42.667 81.067 34.133 132.267-8.533 46.933-29.867 85.333-51.2 123.733-29.867 46.933-59.733 89.6-89.6 132.267-4.267 0-4.267 0-8.533 4.267zM247.467 136.533c-46.933 0-89.6 38.4-89.6 89.6 0 46.933 38.4 89.6 85.333 89.6s89.6-38.4 89.6-85.333c0-55.467-38.4-93.867-85.333-93.867z","M490.667 580.267l-17.067-25.6 12.8-8.533-34.133-183.467c0 0 0-8.533-8.533-8.533l-42.667-4.267c0 0-68.267 110.933-157.867 217.6 4.267-4.267-93.867-110.933-132.267-187.733l-110.933 51.2c0 0-4.267 0-4.267 8.533l25.6 145.067 34.133 21.333-8.533 21.333-17.067-8.533 59.733 332.8 213.333-102.4 238.933 21.333-51.2-290.133zM149.333 674.133c-12.8-4.267-29.867-12.8-42.667-17.067 4.267-8.533 4.267-17.067 8.533-21.333 17.067 0 29.867 4.267 42.667 12.8-4.267 8.533-4.267 17.067-8.533 25.6zM256 691.2c-17.067 0-34.133-4.267-46.933-4.267 0-8.533 4.267-17.067 4.267-25.6 12.8 0 29.867 4.267 42.667 4.267 0 8.533 0 17.067 0 25.6zM315.733 682.667c-4.267-8.533-4.267-12.8-8.533-21.333 17.067-8.533 29.867-17.067 42.667-21.333 4.267 8.533 8.533 12.8 8.533 21.333-12.8 8.533-25.6 12.8-42.667 21.333zM405.333 631.467c-4.267-8.533-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 4.267 4.267 8.533 12.8 12.8 21.333-8.533 8.533-21.333 17.067-38.4 25.6z","M972.8 499.2l-29.867-25.6 12.8-21.333 12.8 8.533-34.133-187.733c0 0 0-8.533-8.533-8.533l-226.133-17.067-209.067 93.867c0 0-8.533 4.267-4.267 12.8l29.867 170.667 21.333 12.8-17.067 17.067 55.467 307.2 213.333-102.4 234.667 21.333-51.2-281.6zM580.267 494.933c-4.267-4.267-8.533-12.8-12.8-17.067 12.8-12.8 21.333-21.333 29.867-34.133 4.267 4.267 12.8 12.8 17.067 17.067-12.8 8.533-25.6 21.333-34.133 34.133zM657.067 418.133c-4.267-4.267-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 8.533 8.533 12.8 17.067 12.8 21.333-12.8 8.533-25.6 17.067-38.4 25.6zM797.867 388.267c-12.8-4.267-25.6-4.267-42.667-4.267 0-8.533 0-17.067 0-25.6 17.067 0 34.133 0 51.2 4.267-4.267 8.533-4.267 17.067-8.533 25.6zM891.733 439.467c-12.8-8.533-25.6-17.067-38.4-25.6 4.267-8.533 8.533-12.8 12.8-21.333 12.8 8.533 25.6 17.067 38.4 25.6-4.267 8.533-8.533 12.8-12.8 21.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1155155154125525525519595951":[{},{},{}],"125525525519595951":[{},{},{}],"12043441125524245125525525513111218319595951":[{},{},{}]},"tags":["zone"],"grid":0},"attrs":[{},{},{}],"properties":{"order":414,"id":129,"name":"zone","prevSize":32,"code":59787},"setIdx":0,"setId":0,"iconIdx":132}],"height":1024,"metadata":{"name":"icon"},"preferences":{"showGlyphs":true,"showCodes":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icon","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"autoHost":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"name":"SalixFont","classSelector":".icon","height":32,"columns":16,"margin":16},"historySize":50,"quickUsageToken":{"UntitledProject":"YjQzY2VlNmE5OSMxNzM4MjQ1NTYwIzdnTTkrckdJWW0xUjdYNHVWbDJHUlpCKzdCZXpHWHpQbG5nbnRkWXZQeTNa"},"gridSize":16}}
\ No newline at end of file
+{
+ "IcoMoonType": "selection",
+ "icons": [
+ {
+ "icon": {
+ "paths": [
+ "M1024 59.733l-59.733-59.733-964.267 964.267 59.733 59.733 964.267-964.267zM0 904.107v-448.853l119.467-341.333c5.547-17.067 15.787-30.72 30.72-41.387 14.507-10.24 31.147-15.787 49.067-15.787h625.92c6.827 0 13.653 0.853 20.053 2.133l-111.36 111.36h-514.987l-59.733 170.667h403.2l-113.92 113.92h-334.507v284.587h50.773l-164.693 164.693zM316.587 536.747c8.96 8.96 15.787 19.627 19.627 30.72l-110.080 110.080c-11.52-4.267-21.76-10.667-30.72-19.627-16.64-16.64-24.747-36.693-24.747-60.587s8.107-43.947 24.747-60.587c16.64-16.64 36.693-24.747 60.587-24.747s43.947 8.107 60.587 24.747zM768 682.667c-23.893 0-43.947-8.107-60.587-24.747s-24.747-36.693-24.747-60.587 8.107-43.947 24.747-60.587c16.64-16.64 36.693-24.747 60.587-24.747s43.947 8.107 60.587 24.747c16.64 16.64 24.747 36.693 24.747 60.587s-8.107 43.947-24.747 60.587c-16.64 16.64-36.693 24.747-60.587 24.747zM936.96 206.933l87.040 248.32v455.253c0 16.213-5.547 29.44-16.213 40.533s-24.32 16.213-40.533 16.213h-56.747c-16.213 0-29.44-5.547-40.533-16.213s-16.213-24.32-16.213-40.533v-56.747h-563.2l113.92-113.92h505.6v-284.587h-221.44l113.92-113.92h61.867l-16.213-46.080 88.32-88.32z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["inactive-car"],
+ "colorPermutations": { "125525525519595951": [{}] }
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 427,
+ "id": 132,
+ "name": "inactive-car",
+ "prevSize": 32,
+ "code": 59768
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 0
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 197.12c2.987 0 8.96 0.853 12.373 7.253l270.080 467.627c3.413 6.4 1.707 11.52 0 14.507-1.707 2.56-5.12 7.253-12.373 7.253h-540.16c-7.253 0-11.093-4.693-12.373-7.253-1.707-2.56-3.413-8.107 0-14.507l270.080-467.627c3.413-6.4 9.387-7.253 12.373-7.253zM512 154.88c-19.2 0-38.4 9.387-49.493 28.587l-270.080 467.627c-21.76 37.973 5.547 85.333 49.493 85.333h539.733c43.947 0 71.253-47.36 49.493-85.333l-270.080-467.627c-11.093-18.773-30.293-28.587-49.493-28.587v0z",
+ "M480.853 612.693c0-16.64 13.653-31.573 31.147-31.573s31.147 14.933 31.147 31.573-13.653 31.147-31.147 31.147-31.147-14.507-31.147-31.147z",
+ "M543.147 331.52c0 26.027-2.987 52.48-5.12 78.507-2.56 35.413-5.547 70.827-8.107 106.24s0 25.6-4.693 36.693-3.413 5.973-6.4 7.68c-2.133 1.28-4.693 1.28-7.253 1.28s-5.12-0.427-7.253-1.707c-3.413-2.133-5.547-5.547-6.827-9.813-3.84-13.227-3.413-29.013-4.267-42.667s-2.987-37.973-4.267-56.747c-2.56-36.267-5.547-72.107-7.68-108.373s-0.427-7.68-0.427-11.52c0-23.040 11.947-32.427 31.147-32.427s31.147 9.813 31.147 32.853z",
+ "M972.8 902.4v-902.4h-44.373v153.173h-346.453c3.413 3.84 6.4 8.533 8.96 12.8l15.36 26.88h322.133v314.453h-140.8l23.040 40.107h117.333v305.493h-832.427v-305.493h117.333l23.040-40.107h-140.373v-314.453h322.133l15.36-26.88c2.56-4.693 5.973-8.96 8.96-12.8h-346.453v-153.173h-44.373v902.4c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-17.067-49.92-40.533-58.88v-9.387h832.853v9.387c-23.893 8.96-40.533 32-40.533 58.88s28.16 62.72 62.72 62.72 62.72-28.16 62.72-62.72-16.64-49.92-40.533-58.88z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hasItemLost"],
+ "colorPermutations": { "125525525519595951": [{}, {}, {}, {}] }
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 425,
+ "id": 131,
+ "name": "hasItemLost",
+ "prevSize": 32,
+ "code": 59735
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 1
+ },
+ {
+ "icon": {
+ "paths": [
+ "M921.6 469.333c-21.333-170.667-157.867-302.933-324.267-324.267-226.133-25.6-418.133 149.333-418.133 371.2h-68.267l106.667 166.4 110.933-166.4h-68.267c0-162.133 132.267-290.133 290.133-285.867 153.6 0 281.6 132.267 281.6 281.6 0 162.133-128 290.133-285.867 290.133s-153.6-34.133-200.533-85.333l-55.467 55.467c68.267 68.267 157.867 106.667 264.533 106.667 221.867 0 392.533-192 366.933-413.867z",
+ "M507.733 349.867v204.8l174.933 106.667 25.6-51.2-140.8-85.333v-174.933h-59.733z",
+ "M256 226.133v-226.133h-51.2v290.133c17.067-21.333 34.133-42.667 51.2-64z",
+ "M460.8 115.2v-115.2h-153.6v183.467c46.933-34.133 98.133-55.467 153.6-68.267z",
+ "M921.6 0v345.6c38.4 85.333 51.2 183.467 21.333 281.6-4.267 21.333-12.8 38.4-21.333 59.733v337.067h102.4v-1024h-102.4z",
+ "M819.2 209.067v-209.067h-51.2v170.667c17.067 12.8 34.133 25.6 51.2 38.4z",
+ "M665.6 123.733v-123.733h-102.4v106.667c34.133 0 68.267 8.533 102.4 17.067z",
+ "M76.8 533.333l-38.4-55.467h64v-477.867h-102.4v1024h102.4v-448l-25.6-42.667z",
+ "M768 857.6v166.4h51.2v-204.8c-17.067 12.8-34.133 25.6-51.2 38.4z",
+ "M584.533 917.333c-8.533 0-12.8 0-21.333 0v106.667h102.4v-119.467c-25.6 8.533-55.467 12.8-81.067 12.8z",
+ "M307.2 836.267v187.733h153.6v-115.2c-55.467-12.8-106.667-38.4-153.6-72.533z",
+ "M204.8 733.867v290.133h51.2v-230.4c-21.333-17.067-38.4-38.4-51.2-59.733z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 0,
+ "tags": ["hasItemDelay"],
+ "colorPermutations": {
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]
+ }
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 426,
+ "id": 130,
+ "name": "hasItemDelay",
+ "prevSize": 32,
+ "code": 59757
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 2
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 567.467l345.6 345.173 233.387-233.387-88.32-88.32-90.027 88.32v-266.667h266.667l-88.32 90.453 88.32 87.893 233.387-233.387-345.6-345.6-555.093 555.52z",
+ "M836.267 637.013c-104.533 0-187.733 83.2-188.587 187.307 0.853 104.107 83.2 187.307 187.733 187.733 104.96 0 188.16-83.2 188.16-187.307s-83.2-187.307-187.733-187.733zM929.707 842.667c-2.56 0.853-5.12 0.853-7.253 0.853h-67.413v68.693c0 9.387-7.253 17.92-16.213 18.773-0.853 0-1.707 0-2.56 0-8.533 0-15.787-5.547-18.347-13.653-0.853-2.56-0.853-4.693-0.853-6.827v-67.413c-18.347 0-37.12 0-57.173 0h-11.52c-9.387 0-17.493-6.827-18.773-15.36-1.28-9.813 4.267-18.773 13.227-21.333 2.56-0.853 4.693-0.853 6.827-0.853h67.84v-68.693c0-9.813 6.827-17.493 16.213-18.773s18.347 4.267 20.907 13.227c0.853 2.56 0.853 4.693 0.853 6.827v67.413c20.48 0 40.96 0 63.147 0h5.973c8.96 0 17.067 6.4 18.347 15.36 1.28 9.813-4.267 18.773-13.227 21.76z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": { "125525525519595951": [{}, {}] },
+ "tags": ["add_entries"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 424,
+ "id": 0,
+ "name": "add_entries",
+ "prevSize": 32,
+ "code": 59731
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 3
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 921.6l-17.067 17.067h-213.333v-153.6h-153.6v-102.4h200.533l102.4-102.4h-302.933v-102.4h405.333l102.4-102.4h-507.733v-102.4h520.533v89.6l72.533-72.533c17.067-17.067 42.667-29.867 68.267-29.867 4.267 0 8.533 0 8.533 0v-157.867c0-55.467-46.933-102.4-102.4-102.4h-627.2c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-285.867l-285.867 285.867z",
+ "M917.333 324.267c8.533 0 17.067 4.267 21.333 8.533l76.8 76.8c12.8 12.8 12.8 34.133 0 46.933l-64 64-119.467-119.467 64-64c4.267-8.533 12.8-12.8 21.333-12.8z",
+ "M797.867 430.933l119.467 123.733-320 320h-123.733v-119.467l324.267-324.267z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["100"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 279,
+ "id": 1,
+ "name": "100",
+ "prevSize": 32,
+ "code": 59649
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 4
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1135.232 1024v-47.84h-84.352v-927.424l8.576-0.416c3.104-0.192 6.304-0.352 9.472-0.352h23.68c14.208-0.064 28.352-0.064 42.56-0.064v-47.904c-314.72 0.192-629.472 0.224-944.256 0.224h-190.912v47.712h83.168s0 928.064 0 928.064h-83.168v47.712h140.896c331.456 0 662.88 0 994.336 0.256zM821.536 48.736h180.16v926.944h-180.16v-926.944zM591.904 48.256h180.096v926.944h-180.096v-926.88zM362.272 48.256h180.16v926.944h-180.16v-926.944zM132.608 48.736h180.16v926.944h-180.16v-926.944z",
+ "M748.128 240.32c4.928 1.088 9.664 2.592 14.272 4.192v-142.144c-7.552-1.728-15.168-3.36-22.976-4.736-16.672-2.816-33.568-4.448-50.368-6.592h-52.64c-2.944 0.48-5.888 1.184-8.8 1.44-8.768 0.704-17.504 1.664-26.144 3.008v144.736c47.776-14.56 97.184-10.72 146.656 0.064z",
+ "M878.56 332.384c27.808-34.784 55.936-69.984 84.192-105.28-38.080-44.416-81.664-78.528-131.616-101.44v162.848c16.384 13.6 31.36 28.896 47.424 43.84z",
+ "M467.008 676.192c-0.288-0.608 0-1.568 0-3.072h65.888v-101.792h-97.44c-6.528-32.448-3.488-64.704-4.256-97.856h101.696v-101.856h-74.72c0.064-1.44 0-2.048 0.192-2.464 18.112-37.664 42.496-69.44 74.528-93.664v-161.408c-3.296 1.376-6.656 2.816-9.888 4.32-60.48 28.608-111.328 66.016-151.104 113.44v564.608c37.952 46.656 87.008 82.784 147.2 108.352 4.544 1.92 9.184 3.712 13.792 5.472v-153.504c-26.912-20.512-48.448-48.096-65.824-80.704z",
+ "M297.92 368.192c-1.92 6.048-4.608 7.808-10.848 7.744-35.072-0.288-70.144-0.192-105.216-0.192h-9.28v93.664h100.8c0.896 33.152 1.792 65.248 2.752 98.144h-103.616v101.76h9.28c36.704 0 73.44 0.352 110.144-0.256 5.28-0.128 8.704 0.832 11.2 3.232v-319.392c-1.792 5.024-3.648 10.080-5.28 15.296z",
+ "M736.672 673.12v-101.792h-135.2v101.792h135.2z",
+ "M736.8 371.68h-135.328v101.856h135.328v-101.856z",
+ "M954.272 796.768c-28.416-34.048-56.544-67.808-84-100.736-13.312 10.976-26.208 21.888-39.168 32.544v169.248c13.504-6.4 26.688-13.792 39.584-22.304 32.256-21.344 59.776-47.712 83.584-78.784z",
+ "M615.2 792.512c-4.672-0.832-9.248-1.792-13.728-2.944v138.688c32.032 5.024 64.64 5.824 97.792 3.168 21.536-1.728 42.624-4.928 63.136-9.76v-145.696c-45.44 21.536-95.040 25.792-147.2 16.544z"
+ ],
+ "width": 1120,
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["Client_unpaid"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 280,
+ "id": 2,
+ "name": "Client_unpaid",
+ "prevSize": 32,
+ "code": 59788
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 5
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 25.6c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 260.267 0 465.067-209.067 465.067-465.067s-217.6-469.333-473.6-469.333zM503.467 285.867v260.267l221.867 132.267 34.133-64-179.2-106.667v-221.867h-76.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["History"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 281,
+ "id": 3,
+ "name": "History",
+ "prevSize": 32,
+ "code": 59650
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 6
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c-140.8 0-256 115.2-256 259.2s115.2 259.2 256 259.2 256-115.2 256-259.2c0-144-115.2-259.2-256-259.2zM512 582.4c-169.6 0-512 86.4-512 259.2v195.2h1024v-195.2c0-172.8-342.4-259.2-512-259.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["Person"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 282,
+ "id": 4,
+ "name": "Person",
+ "prevSize": 32,
+ "code": 59651
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 7
+ },
+ {
+ "icon": {
+ "paths": [
+ "M955.307 27.733h-885.76c-37.973 0-69.547 30.72-69.547 69.547v130.56c0 37.973 30.72 69.547 69.547 69.547h53.333v2.133l81.493 567.040c10.667 75.093 67.413 129.707 133.973 129.707h346.88c67.413 0 123.733-54.613 133.973-129.707l81.92-569.173h53.333c37.973 0 69.547-30.72 69.547-69.547v-131.413c0-37.973-30.72-68.693-68.693-68.693zM843.093 299.947l-80.64 558.080c-6.827 46.507-39.253 80.213-77.227 80.213h-346.027c-37.973 0-70.827-33.707-77.227-80.213l-81.067-561.493h663.040l-0.853 3.413zM966.4 227.84c0 6.4-5.12 11.947-11.947 11.947h-884.907c-6.4 0-11.947-5.12-11.947-11.947v-131.413c0-6.4 5.12-11.947 11.947-11.947h885.76c6.4 0 11.947 5.12 11.947 11.947v131.413h-0.853z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["complementos"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 283,
+ "id": 5,
+ "name": "accessory",
+ "prevSize": 32,
+ "code": 59652
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 8
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 214.4c73.6 0 137.6 60.8 137.6 137.6s-60.8 137.6-137.6 137.6-137.6-60.8-137.6-137.6c0-76.8 64-137.6 137.6-137.6zM512 896c-134.4 0-252.8-70.4-323.2-176 48-89.6 227.2-131.2 323.2-131.2s272 44.8 323.2 131.2c-70.4 105.6-188.8 176-323.2 176z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [],
+ "125525525519595951": [],
+ "12043441125524245125525525513111218319595951": []
+ },
+ "tags": ["account"],
+ "grid": 0
+ },
+ "attrs": [],
+ "properties": {
+ "order": 284,
+ "id": 6,
+ "name": "account",
+ "prevSize": 32,
+ "code": 59653
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 9
+ },
+ {
+ "icon": {
+ "paths": [
+ "M354.133 401.067v-183.467c0-68.267 55.467-123.733 123.733-123.733s119.467 59.733 119.467 123.733v183.467c59.733-38.4 98.133-106.667 98.133-183.467 0-119.467-98.133-217.6-221.867-217.6s-217.6 98.133-217.6 217.6c0 76.8 38.4 145.067 98.133 183.467zM832 627.2l-221.867-110.933c-8.533-4.267-17.067-4.267-25.6-4.267h-38.4v-294.4c0-38.4-34.133-72.533-72.533-72.533s-72.533 34.133-72.533 72.533v524.8l-166.4-34.133c-4.267 0-8.533 0-12.8 0-17.067 0-29.867 4.267-38.4 17.067l-38.4 38.4 238.933 238.933c12.8 12.8 29.867 21.333 51.2 21.333h332.8c38.4 0 64-25.6 68.267-64l38.4-256c0-4.267 0-8.533 0-8.533 4.267-29.867-17.067-55.467-42.667-68.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["actions"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 285,
+ "id": 7,
+ "name": "actions",
+ "prevSize": 32,
+ "code": 59655
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 10
+ },
+ {
+ "icon": {
+ "paths": [
+ "M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2 307.2-137.387 307.2-307.2-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z",
+ "M354.133 716.8c0-96.853 37.547-187.733 105.813-256-20.907-2.133-40.107-2.987-56.747-2.987-134.4 0-403.2 70.4-403.2 204.8v153.6h367.787c-8.96-32-13.653-65.28-13.653-99.413z",
+ "M605.013 204.8c0 113.108-90.355 204.8-201.813 204.8s-201.813-91.692-201.813-204.8c0-113.108 90.355-204.8 201.813-204.8s201.813 91.692 201.813 204.8z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["addperson"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 286,
+ "id": 8,
+ "name": "addperson",
+ "prevSize": 32,
+ "code": 59656
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 11
+ },
+ {
+ "icon": {
+ "paths": [
+ "M89.173 881.493l51.2 79.36c455.68-25.6 821.333-398.933 856.32-659.627l-57.6-72.107c-74.667 355.413-532.053 630.613-849.92 652.373zM212.48 389.973l42.667 85.76c-50.347 46.507-75.52 77.653-110.507 136.107-47.36 78.507-66.56 129.707-81.067 221.013l-63.573-102.4c20.907-65.707 36.693-101.973 71.253-161.707 44.8-75.947 76.8-116.907 141.227-178.773 0 0-64 61.867 0 0zM478.72 727.893l-393.813-664.747h420.693l256.853 440.32c-77.653 88.32-177.067 165.12-283.733 224.853zM843.947 643.413l180.053 308.053h-412.587l-50.773-86.187c64.427-34.987 125.867-77.227 183.467-125.867 35.84-30.293 69.547-62.72 100.267-96.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "12043441125524245125525525513111218319595951": [{}],
+ "125525525519595951": [{}]
+ },
+ "tags": ["agencia_tributaria"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 422,
+ "id": 9,
+ "name": "agencia_tributaria",
+ "prevSize": 32,
+ "code": 59720
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 12
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z",
+ "M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z",
+ "M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["agency"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 287,
+ "id": 10,
+ "name": "agency",
+ "prevSize": 32,
+ "code": 59690
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 13
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM789.333 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2 0 25.6-25.6 51.2-51.2 51.2z",
+ "M251.733 693.333c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 846.933c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z",
+ "M1006.933 420.267l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933v0zM725.333 275.2c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM509.013 403.627c0 113.92-92.16 206.080-206.080 206.080s-206.080-92.16-206.080-206.080 92.16-206.507 206.080-206.507 206.080 92.587 206.080 206.507zM342.613 465.92h-87.893l-15.36 40.107h-78.933l100.693-230.827h76.373l100.693 230.827h-80.213l-15.36-40.107zM321.28 409.6l-22.613-58.027-22.187 58.027h44.8z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["agency-term"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 288,
+ "id": 11,
+ "name": "agency-term",
+ "prevSize": 32,
+ "code": 59657
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 14
+ },
+ {
+ "icon": {
+ "paths": [
+ "M878.933 102.4h-217.6c-25.6-59.733-81.067-102.4-149.333-102.4s-123.733 42.667-145.067 102.4h-221.867c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h729.6c55.467 0 102.4-46.933 102.4-102.4v-716.8c4.267-55.467-42.667-102.4-98.133-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2zM614.4 819.2h-362.667v-102.4h366.933v102.4zM772.267 614.4h-520.533v-102.4h520.533v102.4zM772.267 409.6h-520.533v-102.4h520.533v102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["albaran"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 289,
+ "id": 12,
+ "name": "albaran",
+ "prevSize": 32,
+ "code": 59692
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 15
+ },
+ {
+ "icon": {
+ "paths": [
+ "M230.4 354.133c12.8-46.933 29.867-93.867 46.933-140.8 8.533-34.133 21.333-64 29.867-98.133 4.267-12.8 8.533-12.8 21.333-12.8 38.4 12.8 72.533 21.333 110.933 25.6 12.8 4.267 29.867 0 46.933 0 34.133-4.267 68.267-8.533 102.4-12.8s72.533-12.8 106.667-17.067c4.267 0 8.533 0 12.8 0s8.533 0 12.8 8.533c12.8 46.933 29.867 93.867 42.667 136.533 12.8 38.4 25.6 76.8 34.133 115.2-192-4.267-379.733-4.267-567.467-4.267z",
+ "M456.533 712.533c34.133-8.533 64-12.8 98.133-4.267 8.533 0 12.8 0 12.8-8.533 17.067-34.133 42.667-59.733 76.8-72.533 38.4-17.067 76.8-21.333 115.2-8.533 34.133 8.533 59.733 29.867 81.067 55.467 25.6 34.133 38.4 72.533 34.133 119.467-8.533 51.2-34.133 89.6-76.8 115.2-51.2 34.133-132.267 29.867-179.2-12.8-42.667-34.133-59.733-76.8-64-128 0-8.533-4.267-12.8-12.8-17.067-21.333-4.267-42.667-4.267-64 0-8.533 4.267-8.533 4.267-8.533 12.8 0 21.333-4.267 46.933-12.8 68.267-12.8 29.867-34.133 55.467-64 72.533-55.467 38.4-136.533 34.133-183.467-8.533-42.667-34.133-64-76.8-59.733-128 0-59.733 29.867-106.667 85.333-136.533s115.2-25.6 170.667 12.8c12.8 8.533 21.333 17.067 34.133 29.867 0 8.533 8.533 21.333 17.067 38.4zM307.2 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2s115.2-46.933 115.2-110.933c4.267-64-46.933-115.2-110.933-115.2zM712.533 657.067c-64 0-115.2 51.2-115.2 110.933 0 64 46.933 115.2 110.933 115.2 59.733 0 115.2-46.933 115.2-110.933 0-59.733-46.933-115.2-110.933-115.2z",
+ "M1024 550.4c-341.333 0-682.667 0-1024 0 0 0 0 0 0 0 17.067-8.533 29.867-17.067 46.933-21.333 42.667-12.8 85.333-29.867 132.267-42.667 34.133-8.533 68.267-17.067 102.4-21.333 89.6-17.067 183.467-21.333 277.333-17.067 55.467 4.267 110.933 8.533 166.4 17.067 38.4 4.267 72.533 12.8 110.933 21.333s72.533 21.333 110.933 34.133c21.333 4.267 51.2 17.067 76.8 29.867 0 0 0 0 0 0z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["anonymous"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 290,
+ "id": 13,
+ "name": "anonymous",
+ "prevSize": 32,
+ "code": 59659
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 16
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["apps"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 291,
+ "id": 14,
+ "name": "apps",
+ "prevSize": 32,
+ "code": 59660
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 17
+ },
+ {
+ "icon": {
+ "paths": [
+ "M613.973 397.227c-28.16 0-56.32 0-85.333 0-35.84 0-71.253 0-107.093 0h-13.653c-10.24 0-12.373 1.28-12.373 12.373v207.36c0 4.267 0 5.973 2.133 8.107s4.267 2.133 8.96 2.133h207.36c10.24 0 11.52-2.133 11.52-11.52 0-68.693 0-137.813 0-206.507 0.853-10.667-1.28-11.947-11.52-11.947zM570.027 517.547v52.053h-4.267c-8.96 0-17.92 0-26.88 0h-42.24c-13.227 0-26.88 0-39.68 0h-2.56l-0.853-2.56c0-37.973 0-74.24 0-111.36v-2.56h3.413c43.947 0 78.080 0 109.653 0h2.133l1.28 2.133c0 0 0 0.853 0 1.28 0 21.333 0 40.96 0 61.013z",
+ "M834.987 911.787l177.067-306.773c2.133-3.413 4.267-6.827 5.973-11.093l5.547-9.813-124.587-72.107 125.013-72.107-2.56-5.547c-0.853-2.133-2.133-3.413-2.56-5.547l-180.48-314.453c-2.56-5.547-5.547-7.68-7.68-8.107-2.133-0.853-5.547 0.853-10.24 3.413l-31.573 17.92c-26.027 14.933-51.627 29.44-77.653 44.8l-4.693 3.413v-132.693c0-4.693 0-7.68-2.133-9.813s-4.267-2.133-9.813-2.133h-363.52c-0.853 0-2.133 0-3.413 0-3.413 0-5.547 0.853-7.68 2.133-1.28 1.28-2.133 4.267-2.133 6.827 0 1.28 0 2.56 0 4.267v27.307c0 32.853 0 65.707 0 98.987v4.693l-121.173-69.973-3.413-0.853-2.133 2.56c-0.853 0.853-1.28 1.28-2.133 2.133l-183.467 316.587c-6.827 11.52-5.973 13.653 5.547 20.48l112.64 65.707-70.827 39.68c-15.787 8.96-30.72 17.92-46.507 26.88-2.56 1.28-5.547 3.413-5.973 6.827-0.853 2.133 0 4.693 2.133 7.68 0.853 1.28 1.28 2.133 2.133 3.413l177.92 308.907c2.133 4.267 4.693 8.107 8.107 12.373l2.133 2.133 124.16-71.253v17.067c0 11.093 0 21.333 0 31.573l-0.853 83.2c0 10.24 1.28 11.52 11.093 11.52h17.067c11.093 0 21.333 0.853 32.427 0.853h309.76c16.64 0 17.92-1.28 17.92-18.347v-125.44l4.267 2.133c19.2 11.093 38.4 21.76 57.173 32.853l13.227 7.68c14.507 8.107 29.013 16.64 43.093 24.747 1.28 0.853 4.693 2.56 7.68 1.28 1.707-0 3.413-1.28 5.12-5.973zM808.96 843.093l-2.133-1.28-155.733-90.027-1.28 3.413c-2.133 4.267-2.133 7.68-1.28 11.093v2.133c0 43.947 0 87.893 0 132.693v28.16c0 1.28 0 2.56 0 4.693v2.56h-274.773v-4.693c0-12.373 0-24.747 0-36.267l0.853-143.36-4.693 2.133c-13.227 5.547-23.893 12.373-35.84 19.2-5.973 3.413-12.373 6.827-17.92 10.24-11.093 5.973-21.76 12.373-34.133 20.053l-68.693 39.68-136.533-237.653 100.267-57.6 61.867-35.84-44.8-25.6-118.187-68.693 2.133-4.267 131.84-227.413c0.853-1.28 1.28-2.133 2.133-3.413l1.28-2.133 3.413 1.28c8.96 5.547 18.347 11.093 27.307 16.64l119.467 69.547c2.133 1.28 4.693 2.56 8.107 0.853l2.133-1.28c1.28-2.133 1.28-4.693 1.28-8.107 0-5.973 0-11.52 0-17.067s0-10.24 0-15.787l0.853-138.667h4.267c14.507 0 29.013 0 42.667 0.853h2.133c15.787 0.853 29.013 0.853 40.533 0.853 39.68 0 78.080 0 124.16 0h55.040c0.853 0 1.28 0 2.133 0h2.133v186.027l162.133-92.587 136.533 237.653-161.28 92.587 160.853 92.16-1.28 2.133-136.96 235.093z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["artificial"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 292,
+ "id": 15,
+ "name": "artificial",
+ "prevSize": 32,
+ "code": 59661
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 18
+ },
+ {
+ "icon": {
+ "paths": [
+ "M960 93.867c-42.667-42.667-98.133-64-157.867-64s-115.2 21.333-157.867 64l-593.067 593.067c-34.133 34.133-55.467 85.333-51.2 136.533 0 42.667 17.067 81.067 46.933 110.933 34.133 38.4 81.067 59.733 132.267 59.733 46.933 0 93.867-17.067 128-51.2l541.867-546.133c25.6-25.6 42.667-64 42.667-98.133s-12.8-68.267-38.4-93.867c-25.6-25.6-59.733-38.4-98.133-38.4-34.133 0-72.533 17.067-98.133 42.667l-354.133 354.133c-4.267-0-4.267 4.267-4.267 12.8s4.267 12.8 8.533 17.067 25.6 8.533 34.133 0l354.133-354.133c12.8-17.067 38.4-25.6 59.733-25.6 25.6 0 51.2 12.8 68.267 34.133 8.533 12.8 17.067 25.6 17.067 42.667 4.267 25.6-4.267 55.467-25.6 72.533l-541.867 541.867c-25.6 25.6-55.467 38.4-93.867 38.4-34.133 0-68.267-12.8-93.867-38.4s-38.4-59.733-38.4-93.867c0-34.133 12.8-68.267 38.4-93.867l588.8-584.533c34.133-34.133 76.8-51.2 123.733-51.2s89.6 17.067 123.733 51.2c34.133 34.133 51.2 76.8 51.2 123.733s-17.067 89.6-51.2 123.733l-401.067 401.067c-4.267 4.267-8.533 12.8-8.533 17.067 0 8.533 4.267 12.8 8.533 17.067 8.533 8.533 25.6 8.533 34.133 0l401.067-401.067c89.6-89.6 89.6-230.4 4.267-320z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["attach"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 293,
+ "id": 16,
+ "name": "attach",
+ "prevSize": 32,
+ "code": 59662
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 19
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 102.4h102.4v819.2h-102.4v-819.2zM307.2 102.4h153.6v819.2h-153.6v-819.2zM768 102.4h51.2v819.2h-51.2v-819.2zM204.8 102.4h51.2v819.2h-51.2v-819.2zM921.6 102.4h102.4v819.2h-102.4v-819.2zM563.2 102.4h102.4v819.2h-102.4v-819.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["barcode"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 295,
+ "id": 17,
+ "name": "barcode",
+ "prevSize": 32,
+ "code": 59663
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 20
+ },
+ {
+ "icon": {
+ "paths": [
+ "M235.093 920.32l-18.773-321.28c0-18.773 12.8-34.56 31.573-37.973 18.773 0 34.56 12.8 37.973 31.573l15.787 317.867c0 18.773-12.8 34.56-31.573 37.973h-2.987c-16.213 2.987-32-12.8-32-28.16zM389.12 948.48c18.773 0 34.56-15.787 34.56-34.56v-324.267c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v324.267c-0 21.76 15.787 34.56 34.56 34.56zM512 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c0 18.773 15.787 34.56 34.56 34.56zM760.747 945.493v0c18.773 0 34.56-15.787 34.56-31.573 6.4-148.053 9.387-311.467 9.387-314.88 0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56c0 6.4-6.4 226.56-9.387 311.467-0 15.787 15.787 34.987 34.56 34.987zM634.88 945.493c18.773 0 34.56-15.787 34.56-34.56v-321.28c0-18.773-15.787-34.56-34.56-34.56s-34.56 15.787-34.56 34.56v321.28c-0 18.773 15.36 34.56 34.56 34.56zM1015.893 419.413v78.507c0 18.773-15.787 34.56-34.56 34.56h-28.16l-63.147 462.933c-2.987 15.787-15.787 28.16-34.56 28.16h-686.507c-15.787 0-31.573-12.8-34.56-28.16l-63.147-465.493h-28.16c-18.773 0-34.56-15.787-34.56-34.56v-78.933c0-18.773 15.787-34.56 34.56-34.56h169.813l138.667-286.293c-2.987-9.387-6.4-22.187-6.4-34.56 6.4-37.973 40.96-66.133 78.507-59.733s66.133 40.96 59.733 78.507-40.96 66.133-78.507 59.733v0l-110.080 245.333h431.36l-110.080-245.76c-37.973 6.4-72.533-22.187-78.507-59.733s22.187-72.533 59.733-78.507c37.973-6.4 72.533 22.187 78.507 59.733 2.987 12.8 0 25.173-6.4 34.56l138.667 286.293h169.813c22.187 3.413 37.973 19.2 37.973 37.973zM880.213 529.92h-736.427l53.333 427.947h629.76l53.333-427.947z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["basket"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 296,
+ "id": 18,
+ "name": "basket",
+ "prevSize": 32,
+ "code": 59664
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 21
+ },
+ {
+ "icon": {
+ "paths": [
+ "M197.973 454.827c-15.787 2.987-25.6 15.787-25.6 32l15.787 261.973c0 12.8 12.8 25.6 25.6 22.187h2.987c15.787-2.987 25.6-15.787 25.6-32l-12.8-258.987c-2.56-12.373-18.773-25.173-31.573-25.173z",
+ "M284.587 480.427v261.973c0 19.2 12.8 28.587 28.587 28.587s28.587-12.8 28.587-28.587v-261.973c0-15.787-12.8-28.587-28.587-28.587s-28.587 12.8-28.587 28.587z",
+ "M359.68 777.813h-203.093l-44.8-348.16h384.427c61.44-47.36 137.813-75.52 220.587-75.52 39.68 0 78.080 6.4 113.92 18.347v-35.84c0-15.787-12.8-28.587-32-32h-140.8l-115.2-226.987c6.4-6.4 6.4-19.2 6.4-28.587-6.4-32-34.987-54.187-64-47.787-32 6.4-54.187 32-47.787 64s34.987 54.187 64 47.787l89.6 197.973h-354.56l89.6-197.973c32 6.4 60.587-19.2 64-47.787 2.987-28.587-19.2-57.6-47.787-64-32-6.4-60.587 19.2-64 47.787 0 9.387 2.987 19.2 6.4 28.587l-115.2 233.387h-140.8c-15.787 0-28.587 12.8-28.587 28.587v64c0 15.787 12.8 28.587 28.587 28.587h22.613l51.2 377.173c2.987 12.8 15.787 22.187 28.587 22.187h242.347c-5.973-17.067-10.667-35.413-13.653-53.76z",
+ "M444.16 478.293v-0.853c0-12.8-12.8-25.6-28.587-25.6s-28.587 12.8-28.587 28.587v87.040c14.507-32.853 34.133-62.72 57.173-89.173z",
+ "M716.8 409.6c-169.813 0-307.2 137.387-307.2 307.2s137.387 307.2 307.2 307.2c169.813 0 307.2-137.387 307.2-307.2s-137.387-307.2-307.2-307.2zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h135.68v0.427z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}, {}]
+ },
+ "tags": ["basketadd"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}],
+ "properties": {
+ "order": 297,
+ "id": 19,
+ "name": "basketadd",
+ "prevSize": 32,
+ "code": 59665
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 22
+ },
+ {
+ "icon": {
+ "paths": [
+ "M238.933 955.733c0 0 17.067 68.267 93.867 68.267h354.133c76.8 0 93.867-68.267 93.867-68.267l68.267-682.667h-678.4l68.267 682.667zM648.533 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133l-34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l34.133-512zM477.867 375.467c0-17.067 17.067-34.133 34.133-34.133s34.133 17.067 34.133 34.133v512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133c0 0 0-512 0-512zM341.333 341.333c17.067 0 34.133 17.067 34.133 34.133l34.133 512c0 17.067-17.067 34.133-34.133 34.133s-34.133-17.067-34.133-34.133l-34.133-512c0-17.067 17.067-34.133 34.133-34.133zM832 136.533h-149.333v-68.267c0-51.2-17.067-68.267-68.267-68.267h-204.8c-46.933 0-68.267 21.333-68.267 68.267v68.267h-149.333c-29.867 0-55.467 21.333-55.467 51.2s25.6 51.2 55.467 51.2h640c29.867 0 55.467-21.333 55.467-51.2s-25.6-51.2-55.467-51.2zM614.4 136.533h-204.8v-68.267h204.8l0 68.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["bin"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 298,
+ "id": 20,
+ "name": "bin",
+ "prevSize": 32,
+ "code": 59667
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 23
+ },
+ {
+ "icon": {
+ "paths": [
+ "M819.2 529.067c-12.8-8.533-25.6-12.8-38.4-17.067 12.8-4.267 25.6-12.8 38.4-17.067 89.6-51.2 136.533-140.8 136.533-238.933-81.067-46.933-187.733-51.2-273.067 0-12.8 8.533-25.6 17.067-34.133 25.6 4.267-12.8 4.267-29.867 4.267-42.667 0-102.4-55.467-192-136.533-238.933-81.067 46.933-136.533 136.533-136.533 238.933 0 12.8 0 29.867 4.267 42.667-17.067-8.533-29.867-17.067-42.667-25.6-85.333-51.2-192-46.933-273.067 0 0 93.867 46.933 187.733 136.533 238.933 12.8 8.533 25.6 12.8 38.4 17.067-12.8 4.267-25.6 12.8-38.4 17.067-89.6 51.2-136.533 140.8-136.533 238.933 81.067 46.933 187.733 51.2 273.067 0 12.8-8.533 25.6-17.067 34.133-25.6-4.267 12.8-4.267 29.867-4.267 42.667 0 102.4 55.467 192 136.533 238.933 81.067-46.933 136.533-136.533 136.533-238.933 0-12.8 0-29.867-4.267-42.667 12.8 8.533 21.333 17.067 34.133 25.6 89.6 51.2 192 46.933 273.067 0 8.533-93.867-42.667-187.733-128-238.933zM512 695.467c-102.4 0-183.467-81.067-183.467-183.467s81.067-183.467 183.467-183.467 183.467 81.067 183.467 183.467-81.067 183.467-183.467 183.467z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["botanical"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 299,
+ "id": 21,
+ "name": "botanical",
+ "prevSize": 32,
+ "code": 59668
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 24
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.733 746.667l-17.067 140.8v4.267c0 81.067-115.2 132.267-298.667 132.267-217.6 0-320-68.267-320-132.267l-59.733-622.933c81.067 55.467 217.6 93.867 379.733 93.867 157.867 0 294.4-34.133 375.467-89.6l-51.2 401.067-8.533 72.533zM891.733 145.067c0 81.067-170.667 145.067-379.733 145.067s-379.733-68.267-379.733-145.067 170.667-145.067 379.733-145.067 379.733 64 379.733 145.067z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [],
+ "125525525519595951": [],
+ "12043441125524245125525525513111218319595951": []
+ },
+ "tags": ["bucket"],
+ "grid": 0
+ },
+ "attrs": [],
+ "properties": {
+ "order": 300,
+ "id": 22,
+ "name": "bucket",
+ "prevSize": 32,
+ "code": 59669
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 25
+ },
+ {
+ "icon": {
+ "paths": [
+ "M774.4 892.8c0 19.2-16 38.4-38.4 38.4s-38.4-16-38.4-38.4 16-38.4 38.4-38.4 38.4 19.2 38.4 38.4zM262.4 857.6c-19.2 0-38.4 16-38.4 38.4s16 38.4 38.4 38.4c19.2 0 38.4-16 38.4-38.4s-16-38.4-38.4-38.4zM809.6 784c0 0 0 0 0 0 35.2 22.4 57.6 64 57.6 108.8 0 70.4-57.6 131.2-131.2 131.2-70.4 0-131.2-57.6-131.2-131.2 0 0 0 3.2 0 3.2-64 3.2-137.6 9.6-214.4 12.8 0 0 0 0 0 0-6.4 64-64 115.2-128 115.2-70.4 0-131.2-57.6-131.2-131.2 0-54.4 32-99.2 80-121.6 0 0 0 0 0 0-3.2-89.6 0-198.4 16-275.2 0 0 73.6-73.6 243.2-86.4 6.4 16 19.2 28.8 38.4 28.8s32-12.8 38.4-28.8c12.8 0 25.6 3.2 38.4 3.2v249.6c0 0 48 60.8 220.8 67.2zM345.6 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 44.8 3.2 80-35.2 80-80zM416 505.6c0-9.6-6.4-16-16-16s-16 6.4-16 16c3.2 48-6.4 80-28.8 99.2-28.8 25.6-73.6 12.8-73.6 12.8-9.6-3.2-16 3.2-19.2 12.8s3.2 16 12.8 19.2c0 0 12.8 3.2 32 3.2s48-3.2 70.4-22.4c25.6-25.6 38.4-67.2 38.4-124.8zM819.2 892.8c0-44.8-35.2-80-80-80s-80 35.2-80 80c0 44.8 35.2 80 80 80 41.6 3.2 80-35.2 80-80zM886.4 153.6c-118.4-102.4-243.2-156.8-377.6-153.6-214.4 3.2-368 150.4-374.4 156.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 140.8-137.6 332.8-137.6 115.2 0 230.4 44.8 336 140.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8zM806.4 240c-92.8-83.2-192-121.6-297.6-121.6-169.6 3.2-291.2 118.4-294.4 121.6-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 108.8-102.4 252.8-105.6 0 0 3.2 0 3.2 0 86.4 0 172.8 35.2 252.8 105.6 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 12.8-9.6 12.8-28.8 0-38.4zM732.8 323.2c-70.4-60.8-144-92.8-220.8-89.6-128 0-217.6 89.6-220.8 92.8-12.8 12.8-12.8 28.8 0 41.6s28.8 12.8 41.6 0c0 0 76.8-73.6 179.2-73.6 64 0 124.8 25.6 182.4 76.8 6.4 6.4 12.8 6.4 19.2 6.4 9.6 0 16-3.2 22.4-9.6 9.6-12.8 9.6-32-3.2-44.8zM512 374.4c-16 0-28.8 12.8-28.8 28.8s12.8 28.8 28.8 28.8c16 0 28.8-12.8 28.8-28.8-3.2-16-16-28.8-28.8-28.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["buscaman"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 301,
+ "id": 23,
+ "name": "buscaman",
+ "prevSize": 32,
+ "code": 59670
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 26
+ },
+ {
+ "icon": {
+ "paths": [
+ "M520.533 81.067c-34.133 0-55.467 25.6-55.467 55.467s25.6 55.467 55.467 55.467 55.467-25.6 55.467-55.467-21.333-55.467-55.467-55.467zM520.533 153.6c-12.8 0-17.067-8.533-17.067-17.067s8.533-17.067 17.067-17.067 17.067 8.533 17.067 17.067-4.267 17.067-17.067 17.067z",
+ "M588.8 712.533l-4.267-12.8v-4.267l-17.067-59.733h-273.067v89.6h298.667z",
+ "M294.4 273.067h452.267v89.6h-452.267v-89.6z",
+ "M571.733 529.067c17.067-12.8 38.4-17.067 59.733-8.533l64 25.6h55.467v-89.6h-456.533v89.6h264.533c4.267-8.533 8.533-12.8 12.8-17.067z",
+ "M643.985 703.872l95.27-85.478 202.299 225.473-95.27 85.478-202.299-225.473z",
+ "M855.196 944.408l95.283-85.466 22.791 25.409-95.283 85.466-22.791-25.409z",
+ "M1015.467 930.133l-34.133-38.4-93.867 85.333 34.133 38.4c4.267 4.267 12.8 8.533 17.067 8.533 8.533 0 12.8 0 17.067-8.533l59.733-51.2c8.533-8.533 12.8-25.6 0-34.133z",
+ "M614.4 558.933c-4.267 0-8.533 0-12.8 4.267-4.267 0-4.267 8.533-4.267 12.8l34.133 119.467 93.867-85.333-110.933-51.2z",
+ "M729.6 866.133h-524.8c-29.867 0-51.2-25.6-51.2-51.2v-635.733c0-25.6 21.333-51.2 51.2-51.2h213.333l8.533-25.6c12.8-38.4 51.2-64 93.867-64s76.8 25.6 93.867 64l8.533 25.6h213.333c29.867 0 51.2 25.6 51.2 51.2v541.867l38.4 42.667v-584.533c0-46.933-42.667-89.6-89.6-89.6h-187.733c-17.067-51.2-68.267-89.6-128-89.6s-110.933 38.4-128 89.6h-187.733c-46.933 0-89.6 42.667-89.6 89.6v635.733c0 46.933 42.667 89.6 89.6 89.6h554.667l-29.867-38.4z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["buyrequest"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 302,
+ "id": 24,
+ "name": "buyrequest",
+ "prevSize": 32,
+ "code": 59671
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 27
+ },
+ {
+ "icon": {
+ "paths": [
+ "M830.72 10.667h-727.040c-56.747 0-103.68 46.933-103.68 104.107v727.040c0 57.173 46.933 103.68 103.68 103.68h727.040c57.173 0 103.68-46.933 103.68-103.68v-727.040c0.427-57.173-46.507-104.107-103.68-104.107zM830.72 841.813h-727.040v-727.040h727.040v727.040z",
+ "M168.96 256h259.84v78.080h-259.84v-78.080z",
+ "M259.84 789.76h77.653v-103.68h104.107v-78.080h-104.107v-103.68h-77.653v103.68h-104.107v78.080h104.107z",
+ "M576 423.68l72.96-73.387 73.387 73.387 55.040-55.040-73.387-73.813 73.387-73.387-55.040-55.040-73.387 73.387-72.96-73.387-55.040 55.040 72.96 73.387-72.96 73.813z",
+ "M1024 728.32c0 157.409-127.605 285.013-285.013 285.013s-285.013-127.605-285.013-285.013c0-157.409 127.605-285.013 285.013-285.013s285.013 127.605 285.013 285.013z",
+ "M925.867 632.32c-1.28-4.267-3.84-7.68-7.68-10.24l-168.107-96.853c-5.12-2.987-11.52-2.987-16.64 0l-168.107 96.853c-5.12 2.987-8.533 8.533-8.533 14.507v194.133c0 5.973 2.987 11.52 8.533 14.507l168.107 96.853c2.56 1.28 5.547 2.133 8.533 2.133 0.853 0 1.707 0 2.56 0 1.28 0 2.56-0.427 3.84-0.853 0.427 0 0.853-0.427 1.28-0.427s0.427 0 0.853-0.427v0c0 0 0 0 0 0l168.107-96.853c5.12-2.987 8.533-8.533 8.533-14.507v-194.133c-0.853-1.707-0.853-2.987-1.28-4.693zM606.72 637.013l134.827-77.653 134.827 77.653-134.4 77.653-126.293-72.96-8.96-4.693zM590.080 665.6l134.827 77.653v155.733l-134.827-77.653v-155.733zM758.187 898.987v-155.733l134.827-77.653v155.733l-134.827 77.653z"
+ ],
+ "attrs": [
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(255, 255, 255)" }
+ ],
+ "isMulticolor": true,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 3 }
+ ],
+ "125525525519595951": [
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 2 }
+ ],
+ "12043441125524245125525525513111218319595951": [
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 0 },
+ { "f": 5 }
+ ]
+ },
+ "tags": ["calc_volum"],
+ "grid": 0
+ },
+ "attrs": [
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(0, 0, 0)" },
+ { "fill": "rgb(255, 255, 255)" }
+ ],
+ "properties": {
+ "order": 303,
+ "id": 25,
+ "name": "calc_volum",
+ "prevSize": 32,
+ "codes": [59672, 59673, 59676, 59677, 59678, 59679],
+ "code": 59672
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 28
+ },
+ {
+ "icon": {
+ "paths": [
+ "M883.2 93.867h-46.933v-93.867h-93.867v93.867h-465.067v-93.867h-89.6v93.867h-46.933c-51.2 0-93.867 42.667-93.867 93.867v746.667c0 51.2 42.667 93.867 93.867 93.867h746.667c51.2 0 93.867-42.667 93.867-93.867v-746.667c-4.267-51.2-46.933-93.867-98.133-93.867zM883.2 930.133h-742.4v-605.867h746.667v605.867z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["calendar"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 304,
+ "id": 26,
+ "name": "calendar",
+ "prevSize": 32,
+ "code": 59680
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 29
+ },
+ {
+ "icon": {
+ "paths": [
+ "M60.8 355.2h64v310.4h-64v-310.4zM979.2 0h-873.6c-25.6 0-44.8 19.2-44.8 44.8v176h64v-156.8h835.2v896h-835.2v-156.8h-64v176c0 25.6 19.2 44.8 44.8 44.8h873.6c25.6 0 44.8-19.2 44.8-44.8v-934.4c0-25.6-19.2-44.8-44.8-44.8zM230.4 272c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM230.4 720c0-9.6-9.6-19.2-19.2-19.2h-192c-9.6 0-19.2 9.6-19.2 19.2v35.2c0 9.6 9.6 19.2 19.2 19.2h195.2c9.6 0 19.2-9.6 19.2-19.2v-35.2zM876.8 217.6h-275.2v275.2h275.2v-275.2zM876.8 531.2h-275.2v275.2h275.2v-275.2zM528 249.6h-211.2v211.2h211.2v-211.2zM560 217.6v275.2h-275.2v-275.2h275.2zM560 531.2h-275.2v275.2h275.2v-275.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["catalog"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 305,
+ "id": 27,
+ "name": "catalog",
+ "prevSize": 32,
+ "code": 59681
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 30
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.4 966.4c12.8-28.8 38.4-51.2 73.6-51.2v-57.6c-64 0-118.4 48-131.2 108.8h-54.4c9.6-96 89.6-166.4 185.6-166.4v-57.6c-76.8 0-144 35.2-188.8 92.8v-262.4c57.6-6.4 115.2-35.2 156.8-80 51.2-51.2 76.8-118.4 76.8-192v-28.8h-28.8c-70.4 0-134.4 28.8-185.6 80-6.4 9.6-16 16-22.4 25.6v-204.8c0-48-16-89.6-48-124.8-32-32-73.6-51.2-118.4-51.2-83.2 3.2-153.6 67.2-166.4 150.4-86.4 12.8-153.6 89.6-153.6 185.6v198.4l112-83.2 67.2 67.2 73.6-67.2 108.8 86.4v-201.6c0-92.8-64-169.6-147.2-182.4 12.8-51.2 57.6-89.6 108.8-89.6 28.8 0 57.6 12.8 80 35.2s32 51.2 32 83.2v691.2c-28.8-28.8-70.4-44.8-115.2-44.8v57.6c54.4 0 99.2 38.4 112 89.6h-342.4v51.2h755.2v-57.6h-240zM640 393.6c32-32 70.4-54.4 115.2-60.8-6.4 44.8-28.8 86.4-57.6 118.4-32 32-70.4 54.4-115.2 60.8 3.2-44.8 25.6-86.4 57.6-118.4zM393.6 332.8v83.2l-51.2-41.6-70.4 60.8-60.8-60.8-64 44.8v-86.4c0-70.4 54.4-128 124.8-128 64 0 121.6 57.6 121.6 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["claims"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 306,
+ "id": 28,
+ "name": "claims",
+ "prevSize": 32,
+ "code": 59682
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 31
+ },
+ {
+ "icon": {
+ "paths": [
+ "M608 204.8c0 113.108-90.259 204.8-201.6 204.8s-201.6-91.692-201.6-204.8c0-113.108 90.259-204.8 201.6-204.8s201.6 91.692 201.6 204.8z",
+ "M342.4 633.6c0-67.2 54.4-121.6 121.6-121.6h198.4c-83.2-35.2-185.6-51.2-252.8-51.2-137.6 0-409.6 67.2-409.6 204.8v144h342.4v-176z",
+ "M912 969.6c32 0 57.6-25.6 57.6-57.6v-281.6c0-32-25.6-57.6-57.6-57.6h-451.2c-32 0-57.6 25.6-57.6 57.6v281.6c0 32 25.6 57.6 57.6 57.6h-112v57.6h675.2v-57.6h-112zM460.8 633.6h451.2v281.6h-451.2v-281.6z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["client"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 307,
+ "id": 29,
+ "name": "client",
+ "prevSize": 32,
+ "code": 59683
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 32
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 691.2v-64h-213.333v-115.2h213.333v-136.533l-204.8-204.8h-281.6c-38.4 0-68.267 29.867-68.267 68.267v546.133c0 38.4 29.867 68.267 68.267 68.267h418.133c38.4 0 68.267-29.867 68.267-68.267v0-93.867zM311.467 221.867l192 187.733h-192v-187.733z",
+ "M814.933 170.667h-277.333c-29.867 0-55.467 17.067-64 42.667l123.733 119.467 17.067 17.067v162.133h68.267v-85.333l247.467 145.067-247.467 140.8v-85.333h-72.533v153.6c0 25.6-8.533 46.933-21.333 68.267h362.667c38.4 0 68.267-29.867 68.267-68.267v-405.333l-204.8-204.8zM780.8 409.6v-187.733l192 187.733h-192z",
+ "M371.2 597.333h341.333v68.267l162.133-93.867-162.133-93.867v64h-341.333z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["clone"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 309,
+ "id": 30,
+ "name": "clone",
+ "prevSize": 32,
+ "code": 59684
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 33
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 0h256v256h-256v-256z",
+ "M0 768h256v256h-256v-256z",
+ "M0 384h256v256h-256v-256z",
+ "M913.067 448v132.267h-204.8v204.8h-136.533v-204.8h-204.8v-132.267h204.8v-204.8h136.533v204.8z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["columnadd"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 310,
+ "id": 31,
+ "name": "columnadd",
+ "prevSize": 32,
+ "code": 59685
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 34
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 0h256v256h-256v-256z",
+ "M0 768h256v256h-256v-256z",
+ "M0 384h256v256h-256v-256z",
+ "M785.067 273.067l93.867 98.133-140.8 140.8 140.8 145.067-93.867 98.133-145.067-145.067-145.067 145.067-93.867-98.133 140.8-145.067-140.8-140.8 93.867-98.133 145.067 145.067z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["columndelete"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 311,
+ "id": 32,
+ "name": "columndelete",
+ "prevSize": 32,
+ "code": 59686
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 35
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.667 302.933c-4.267 8.533-4.267 25.6-4.267 42.667v140.8h-140.8c-17.067 0-25.6 0-34.133-4.267v0l17.067-25.6c12.8-12.8 21.333-29.867 17.067-51.2 0-25.6-12.8-51.2-29.867-68.267-17.067-12.8-42.667-21.333-72.533-21.333-25.6 0-51.2 8.533-72.533 25.6s-29.867 42.667-29.867 68.267c0 17.067 4.267 34.133 17.067 51.2l17.067 25.6c-4.267 0-17.067 4.267-34.133 4.267v0h-140.8v-490.667h486.4v145.067c0 21.333 0 34.133 4.267 42.667 0 12.8 8.533 25.6 21.333 29.867 4.267 4.267 12.8 4.267 21.333 4.267v0c4.267 0 17.067 0 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 21.333 4.267 29.867 17.067s12.8 25.6 12.8 42.667-4.267 29.867-12.8 42.667c-8.533 8.533-21.333 17.067-29.867 17.067s-17.067-4.267-25.6-8.533l-29.867-21.333c-8.533-4.267-21.333-8.533-25.6-8.533-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 34.133zM1019.733 345.6c0-8.533 0-38.4-8.533-42.667v0c-4.267 0-4.267 0-8.533 0l-29.867 21.333c-12.8 8.533-25.6 17.067-42.667 17.067-46.933 0-85.333-42.667-85.333-93.867s38.4-93.867 85.333-93.867c17.067 0 34.133 4.267 46.933 17.067l29.867 21.333c0 0 4.267 0 8.533 0 8.533-4.267 8.533-34.133 8.533-42.667v-149.333h-494.933v145.067c0 17.067 0 25.6 4.267 34.133v0 0l25.6-17.067c12.8-12.8 34.133-17.067 51.2-17.067 25.6 0 51.2 12.8 68.267 29.867 17.067 21.333 25.6 46.933 25.6 72.533s-8.533 51.2-25.6 72.533-42.667 29.867-68.267 29.867c-17.067 0-34.133-4.267-51.2-17.067l-25.6-17.067c0 4.267-4.267 17.067-4.267 34.133v140.8h145.067c21.333 0 34.133 0 42.667 4.267 12.8 4.267 25.6 12.8 29.867 21.333 4.267 4.267 4.267 12.8 4.267 21.333s0 17.067-8.533 25.6l-21.333 29.867c-4.267 8.533-8.533 17.067-8.533 25.6 0 12.8 4.267 21.333 17.067 29.867s25.6 12.8 42.667 12.8 29.867-4.267 42.667-12.8c8.533-8.533 17.067-21.333 17.067-29.867s-4.267-17.067-8.533-25.6l-12.8-29.867c-8.533-12.8-8.533-21.333-8.533-25.6 0-8.533 0-12.8 4.267-21.333s17.067-17.067 29.867-21.333c8.533-4.267 25.6-4.267 42.667-4.267h140.8v-145.067zM874.667 1019.733c25.6 0 115.2 4.267 149.333 4.267v-490.667h-140.8c-17.067 0-25.6 0-34.133 4.267v0 0l17.067 25.6c12.8 12.8 17.067 34.133 17.067 51.2 0 25.6-12.8 51.2-29.867 68.267-21.333 17.067-46.933 25.6-72.533 25.6s-51.2-8.533-72.533-25.6c-21.333-17.067-29.867-42.667-29.867-68.267 0-17.067 4.267-34.133 17.067-51.2l17.067-29.867c-4.267 0-17.067-4.267-34.133-4.267h-149.333v140.8c0 21.333 0 34.133-4.267 42.667-4.267 12.8-12.8 25.6-21.333 29.867-4.267 4.267-12.8 4.267-21.333 4.267s-17.067 0-25.6-8.533l-29.867-12.8c-8.533-4.267-17.067-8.533-25.6-8.533-12.8 0-21.333 4.267-29.867 17.067s-12.8 25.6-12.8 42.667 4.267 29.867 12.8 42.667c8.533 8.533 21.333 17.067 29.867 17.067s17.067-4.267 25.6-8.533l29.867-21.333c8.533-4.267 17.067-8.533 25.6-8.533v0c8.533 0 12.8 0 21.333 4.267 12.8 4.267 17.067 17.067 21.333 29.867 4.267 8.533 4.267 25.6 4.267 42.667v140.8h140.8c8.533 0 38.4 0 42.667-8.533 0-4.267 0-8.533 0-8.533l-21.333-29.867c-8.533-12.8-17.067-29.867-17.067-46.933 0-46.933 42.667-85.333 93.867-85.333s93.867 38.4 93.867 85.333c0 17.067-4.267 34.133-17.067 46.933l-21.333 29.867c0 0-4.267 4.267 0 8.533 12.8 12.8 42.667 12.8 51.2 12.8zM0 533.333v490.667h486.4v-145.067c0-17.067 0-25.6-4.267-34.133v0 0l-25.6 17.067c-12.8 12.8-34.133 17.067-51.2 17.067-25.6 0-51.2-12.8-68.267-29.867-17.067-21.333-25.6-46.933-25.6-72.533s8.533-51.2 25.6-72.533c17.067-21.333 42.667-29.867 68.267-29.867 17.067 0 34.133 4.267 51.2 17.067l29.867 17.067c0-4.267 4.267-17.067 4.267-34.133v-140.8h-145.067c-21.333 0-34.133 0-42.667-4.267-12.8-4.267-25.6-12.8-29.867-21.333-4.267-4.267-4.267-12.8-4.267-21.333s0-17.067 8.533-25.6l21.333-29.867c0-8.533 4.267-17.067 4.267-25.6 0-12.8-4.267-21.333-17.067-29.867s-25.6-12.8-42.667-12.8v0c-17.067 0-29.867 4.267-42.667 12.8-8.533 8.533-12.8 17.067-12.8 29.867 0 8.533 4.267 17.067 8.533 25.6l17.067 29.867c8.533 12.8 8.533 21.333 8.533 25.6 0 8.533 0 12.8-4.267 21.333-4.267 12.8-17.067 17.067-29.867 21.333-8.533 4.267-25.6 4.267-42.667 4.267 0 0-145.067 0-145.067 0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["components"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 312,
+ "id": 33,
+ "name": "components",
+ "prevSize": 32,
+ "code": 59687
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 36
+ },
+ {
+ "icon": {
+ "paths": [
+ "M409.6 1024v-349.867h204.8v349.867h256v-563.2h153.6l-512-460.8-512 460.8h153.6v563.2h256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["consignatarios"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 313,
+ "id": 34,
+ "name": "consignatarios",
+ "prevSize": 32,
+ "code": 59688
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 37
+ },
+ {
+ "icon": {
+ "paths": [
+ "M418.133 644.267l-128 123.733 256 256 469.333-469.333-128-128-341.333 341.333z",
+ "M546.133 648.533l34.133-34.133h-68.267z",
+ "M230.4 832l-59.733-64 153.6-153.6h-68.267v-102.4h426.667l204.8-204.8 85.333 85.333v-187.733c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h273.067l-196.267-192zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2zM256 307.2h512v102.4h-512v-102.4z",
+ "M665.6 1024h204.8c55.467 0 102.4-46.933 102.4-102.4v-204.8l-307.2 307.2z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["control"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 314,
+ "id": 35,
+ "name": "control",
+ "prevSize": 32,
+ "code": 59689
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 38
+ },
+ {
+ "icon": {
+ "paths": [
+ "M921.6 110.933h-819.2c-55.467 0-102.4 42.667-102.4 98.133v601.6c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-42.667 102.4-102.4v-601.6c0-55.467-46.933-98.133-102.4-98.133zM921.6 814.933h-819.2v-302.933h819.2v302.933zM921.6 311.467h-819.2v-102.4h819.2v102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["credit"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 315,
+ "id": 36,
+ "name": "credit",
+ "prevSize": 32,
+ "code": 59691
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 39
+ },
+ {
+ "icon": {
+ "paths": [
+ "M677.973 1024c-30.72-35.84-61.867-70.827-91.307-107.52-40.96-51.2-80.64-103.253-121.173-154.88-16.64-21.333-21.76-20.48-30.72 4.693-13.227 36.693-25.6 73.387-40.107 109.653-5.12 12.8-13.227 26.88-24.32 34.56-51.627 34.987-104.107 69.12-157.867 100.693-10.667 6.4-30.72 5.547-41.813-0.853-8.107-4.693-12.373-23.893-11.093-35.84 0.853-8.96 11.093-19.627 19.627-25.6 39.253-26.453 78.933-51.627 119.040-76.8 18.347-11.52 30.293-26.027 35.84-47.787 12.373-48.213 27.307-95.573 39.253-143.36 8.533-33.707 26.88-58.88 56.32-77.227 40.533-25.173 80.64-52.053 120.747-78.507 6.4-4.267 10.24-11.52 15.36-17.493-7.253-2.56-14.933-7.253-22.187-6.827-75.52 6.4-151.467 13.227-226.987 20.48-2.133 0-4.693 0.853-6.827 0.853-22.613 1.707-39.253-10.24-40.96-29.867s12.373-33.707 35.413-35.84c45.227-4.267 90.88-8.96 136.107-12.8 65.707-5.547 131.84-10.667 197.547-15.36 26.027-1.707 53.76 21.76 67.413 55.467 9.813 23.893 5.12 46.080-18.347 65.28-49.92 40.107-100.693 78.933-151.040 118.187-23.040 17.92-23.893 23.467-6.4 46.507 58.453 78.080 116.48 156.587 174.933 234.667 27.307 36.693 25.173 50.773-12.373 75.52-5.12 0-9.813 0-14.080 0zM791.893 310.187c-43.093-1.28-76.373 31.573-77.227 75.52-0.853 44.373 29.44 76.8 72.107 77.653 45.227 1.28 77.653-29.44 78.080-73.813 0.427-45.227-29.44-78.080-72.96-79.36zM671.147 222.293c0 72.107-34.133 136.107-87.467 176.64l-235.52 21.76c-72.107-36.693-122.027-111.787-122.027-198.4 0-122.88 99.84-222.293 222.72-222.293 122.453 0 222.293 99.413 222.293 222.293zM592.213 279.467l-50.347-18.347c-2.133 8.533-5.12 16.213-9.813 22.613-5.12 6.4-10.24 11.947-16.213 17.067-5.973 4.267-12.373 8.107-19.2 11.093s-13.653 4.693-20.053 5.547c-17.92 2.987-33.707 0.427-48.64-6.827s-26.88-18.347-36.693-32.853l76.373-12.373 7.253-32.427-97.28 15.787c-1.28-5.547-2.987-11.093-3.84-16.64l-0.853-4.267 99.413-16.213 7.253-32.427-106.667 17.493c0.853-9.387 2.987-17.493 6.4-26.027 3.84-8.533 8.107-16.213 14.080-23.040 5.547-6.827 12.8-12.373 21.333-17.067s17.92-8.107 28.587-9.813c6.827-1.28 13.227-1.707 20.907-1.28s14.507 1.707 21.333 3.84c6.827 2.133 13.653 5.973 20.053 10.24 5.973 4.693 11.947 11.093 17.493 18.773l38.827-37.973c-13.227-17.92-30.293-31.147-52.053-39.253-21.76-8.533-46.080-10.667-73.387-6.4-19.627 2.987-36.267 9.387-51.2 17.92-14.507 8.533-26.88 19.2-37.547 32-10.667 12.373-18.773 26.027-23.893 40.96-5.547 14.507-8.96 29.867-9.813 45.653l-21.76 3.84-7.253 32.427 29.013-4.693 0.427 2.987c1.28 6.827 2.56 12.8 4.267 18.347l-23.467 3.84-8.107 32.427 43.52-7.253c6.827 13.653 15.787 26.027 26.027 36.693 10.24 11.52 22.187 20.48 35.413 27.733 13.227 7.68 27.307 12.8 42.667 15.787s31.573 3.413 47.36 0.853c12.373-2.133 24.32-5.12 35.84-10.667s22.613-11.52 32.853-19.2c10.24-8.107 18.347-16.64 26.027-26.453 6.827-9.387 12.373-20.48 15.36-32.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["deaulter-01"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 316,
+ "id": 37,
+ "name": "defaulter",
+ "prevSize": 32,
+ "code": 59693
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 40
+ },
+ {
+ "icon": {
+ "paths": [
+ "M160.672 874.304h693.248v-639.776c0 0-2.016-234.528-349.696-234.528s-343.552 234.528-343.552 234.528v639.776zM291.328 307.296h170.976v-152.256h102.336v152.256h171.008v102.336h-171.008v356.96h-102.336v-356.96h-170.976v-102.336zM64 898.944v123.456h899.008v-123.456h-899.008z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["deletedTicketCross"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 317,
+ "id": 38,
+ "name": "deletedTicket",
+ "prevSize": 32,
+ "code": 59694
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 41
+ },
+ {
+ "icon": {
+ "paths": [
+ "M354.133 768l-98.133-98.133 157.867-153.6-157.867-157.867 98.133-102.4 157.867 157.867 157.867-153.6 98.133 98.133-157.867 157.867 157.867 153.6-98.133 98.133-157.867-157.867-157.867 157.867zM780.8 452.267l-64 64 59.733 55.467h247.467v-119.467h-243.2zM307.2 516.267l-64-64h-243.2v119.467h251.733l55.467-55.467z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["deleteline"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 318,
+ "id": 39,
+ "name": "deleteline",
+ "prevSize": 32,
+ "code": 59695
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 42
+ },
+ {
+ "icon": {
+ "paths": [
+ "M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z",
+ "M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4c55.467 0 102.4-46.933 102.4-102.4 0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2c29.867 0 51.2 21.333 51.2 51.2-0 25.6-25.6 51.2-51.2 51.2z",
+ "M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM725.333 277.333c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067zM311.467 362.667c0-46.933 29.867-85.333 59.733-93.867 4.267 0 4.267 0 8.533 0l98.133-12.8v51.2c0 46.933-29.867 85.333-59.733 93.867-4.267 0-4.267 0-8.533 0l-98.133 17.067v-55.467zM311.467 443.733l46.933-8.533c17.067-4.267 29.867 17.067 29.867 38.4l4.267 29.867-51.2 4.267c-17.067 4.267-29.867-12.8-29.867-38.4v-25.6zM149.333 362.667v-51.2l85.333-12.8c34.133-4.267 55.467 25.6 55.467 72.533v51.2l-85.333 12.8c-34.133 0-59.733-29.867-55.467-72.533zM285.867 448v38.4c0 34.133-21.333 64-42.667 68.267h-4.267l-72.533 8.533v-38.4c0-34.133 21.333-64 42.667-68.267h4.267l72.533-8.533z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["delivery"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 319,
+ "id": 40,
+ "name": "delivery",
+ "prevSize": 32,
+ "code": 59696
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 43
+ },
+ {
+ "icon": {
+ "paths": [
+ "M251.733 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM251.733 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z",
+ "M789.333 695.467c-55.467 0-102.4 46.933-102.4 102.4s46.933 102.4 102.4 102.4 102.4-46.933 102.4-102.4c0-59.733-46.933-102.4-102.4-102.4zM789.333 849.067c-29.867 0-51.2-21.333-51.2-51.2s21.333-51.2 51.2-51.2 51.2 21.333 51.2 51.2c0 25.6-25.6 51.2-51.2 51.2z",
+ "M1006.933 422.4l-196.267-192c-12.8-12.8-29.867-17.067-46.933-17.067h-98.133v-38.4c0-25.6-21.333-51.2-51.2-51.2h-563.2c-29.867 0-51.2 21.333-51.2 51.2v554.667c0 29.867 25.6 51.2 51.2 51.2h68.267c8.533-64 64-115.2 132.267-115.2 64 0 123.733 51.2 132.267 115.2h268.8c8.533-64 64-115.2 132.267-115.2s128 51.2 136.533 115.2h51.2c29.867 0 51.2-25.6 51.2-51.2v-260.267c0-17.067-8.533-34.133-17.067-46.933zM376.32 345.173v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147zM921.6 430.933h-187.733c-8.533 0-8.533-4.267-8.533-8.533v-145.067c0-4.267 4.267-8.533 8.533-8.533h34.133c0 0 4.267 0 4.267 4.267l153.6 145.067c4.267 0 0 12.8-4.267 12.8z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["deliveryprices"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 320,
+ "id": 41,
+ "name": "deliveryprices",
+ "prevSize": 32,
+ "code": 59698
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 44
+ },
+ {
+ "icon": {
+ "paths": [
+ "M908.8 115.2v797.867h-793.6v-797.867h793.6zM972.8 0h-921.6c-29.867 0-51.2 21.333-51.2 51.2v921.6c0 21.333 21.333 51.2 51.2 51.2h921.6c21.333 0 51.2-29.867 51.2-51.2v-921.6c0-29.867-29.867-51.2-51.2-51.2zM456.533 226.133h341.333v115.2h-341.333v-115.2zM456.533 456.533h341.333v115.2h-341.333v-115.2zM456.533 682.667h341.333v115.2h-341.333v-115.2zM226.133 226.133h115.2v115.2h-115.2v-115.2zM226.133 456.533h115.2v115.2h-115.2v-115.2zM226.133 682.667h115.2v115.2h-115.2v-115.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["details"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 322,
+ "id": 42,
+ "name": "details",
+ "prevSize": 32,
+ "code": 59699
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 45
+ },
+ {
+ "icon": {
+ "paths": [
+ "M140.8 439.467v341.333h149.333v-341.333h-149.333zM439.467 439.467v341.333h149.333v-341.333h-149.333zM38.4 1024h942.933v-145.067h-942.933v145.067zM733.867 439.467v341.333h149.333v-341.333h-149.333zM512 0l-473.6 243.2v98.133h942.933v-98.133l-469.333-243.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["dfiscales"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 323,
+ "id": 43,
+ "name": "dfiscales",
+ "prevSize": 32,
+ "code": 59700
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 46
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1012.48 956.587c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067zM938.667 819.2v-37.973c0-87.467-105.813-148.48-220.16-183.040l220.16 221.013zM608 488.107c69.547-35.84 117.333-107.52 117.333-192.427 0-119.893-96-215.893-213.333-215.893-84.053 0-156.16 49.493-190.72 121.6l286.72 286.72zM449.707 569.173c-149.333 16.213-364.373 87.040-364.373 212.053v162.56h738.987l-374.613-374.613z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["Inactivo"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 324,
+ "id": 44,
+ "name": "disabled",
+ "prevSize": 32,
+ "code": 59701
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 47
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.4 0h-409.6c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h614.4c55.467 0 102.4-46.933 102.4-102.4v-614.4l-307.2-307.2zM716.8 819.2h-409.6v-102.4h409.6v102.4zM716.8 614.4h-409.6v-102.4h409.6v102.4zM563.2 358.4v-281.6l281.6 281.6h-281.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["doc"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 325,
+ "id": 45,
+ "name": "doc",
+ "prevSize": 32,
+ "code": 59702
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 48
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 631.118l392.882 392.882 265.404-265.404-100.31-100.31-102.4 100.31v-303.020h303.020l-100.31 102.4 100.31 100.31 265.404-265.404-392.882-392.882z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["entry"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 327,
+ "id": 46,
+ "name": "entry",
+ "prevSize": 32,
+ "code": 59703
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 49
+ },
+ {
+ "icon": {
+ "paths": [
+ "M859.733 683.093c-90.027 0-162.56 72.533-162.56 162.56h-29.44l47.36 72.533 48.64-72.533h-29.44c0-69.547 56.32-125.867 125.867-125.867s125.867 56.32 125.867 125.867-56.32 125.867-125.867 125.867c-34.133 0-66.56-14.933-87.467-37.12l-25.173 25.173c29.44 29.44 69.547 47.36 115.2 47.36 90.027 0 161.28-72.533 161.28-161.28s-75.52-162.56-164.267-162.56v0zM842.24 773.12v90.027l76.8 45.653 11.947-22.187-62.293-37.12v-76.8l-26.453 0.427z",
+ "M0 574.293l346.88 346.453 234.24-234.24-88.747-88.32-90.453 88.32v-267.52h267.52l-88.32 90.453 88.32 88.747 234.24-234.24-346.453-346.88z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["entry_lastbuys"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 420,
+ "id": 47,
+ "name": "entry_lastbuys",
+ "prevSize": 32,
+ "code": 59674
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 50
+ },
+ {
+ "icon": {
+ "paths": [
+ "M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["exit"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 328,
+ "id": 48,
+ "name": "exit",
+ "prevSize": 32,
+ "code": 59704
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 51
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 162.133c-234.667 0-430.933 145.067-512 349.867 81.067 204.8 277.333 349.867 512 349.867s430.933-145.067 512-349.867c-81.067-204.8-277.333-349.867-512-349.867zM512 746.667c-128 0-234.667-102.4-234.667-234.667s106.667-234.667 234.667-234.667 234.667 106.667 234.667 234.667-106.667 234.667-234.667 234.667zM512 371.2c-76.8 0-140.8 64-140.8 140.8s64 140.8 140.8 140.8 140.8-64 140.8-140.8-64-140.8-140.8-140.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["eye"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 329,
+ "id": 49,
+ "name": "eye",
+ "prevSize": 32,
+ "code": 59705
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 52
+ },
+ {
+ "icon": {
+ "paths": [
+ "M811.947 472.32v-172.8c0-79.787-31.147-154.88-87.893-211.627-57.173-56.747-132.267-87.893-212.053-87.893-165.12 0-299.947 134.4-299.947 299.52v172.373h-78.507v552.107h756.48v-551.68h-78.080zM629.76 873.813c-9.813 8.96-19.627 16.64-32 23.467-11.947 5.973-24.747 10.667-37.973 14.507-13.227 3.413-26.453 4.693-39.68 4.693-17.493 0-34.133-2.987-49.92-8.96s-29.44-13.653-42.24-23.893c-12.8-10.24-23.467-21.76-32.427-35.413-8.96-13.227-16.213-27.733-20.907-43.093h-46.933l13.653-32.853h25.173c-0.427-5.973-1.28-12.8-1.28-19.627v-2.987h-31.147l13.227-32.853h22.187c3.413-16.213 9.813-32 17.92-46.080 8.533-14.933 19.2-27.733 32.427-39.253s28.16-20.48 45.227-26.88c17.493-6.4 35.84-10.24 57.173-10.24 29.44 0 54.613 6.4 76.373 19.2s37.12 29.44 48.213 50.347l-47.36 32.853c-4.267-8.96-9.813-16.64-14.933-23.040-5.973-5.973-12.8-10.667-19.2-14.507-6.4-3.413-13.653-5.973-21.76-7.68-7.68-1.707-14.933-2.56-22.187-2.56-11.52 0-22.187 1.707-32 5.547-9.813 3.413-17.92 8.533-25.173 14.507s-13.227 13.227-18.773 21.76-8.96 16.64-11.52 26.453h115.2l-13.227 32.853h-107.52v4.693c0 5.973 0.427 11.947 1.28 17.92h104.96l-13.227 32.853h-82.347c7.68 16.64 18.773 30.72 32.853 40.96 14.507 10.24 30.72 15.787 49.92 15.787 7.253 0 14.507-0.427 22.187-2.56 7.68-1.707 14.933-4.693 22.187-8.533 7.253-4.267 13.227-8.96 19.627-14.933 5.973-5.973 10.667-13.653 14.507-22.187l49.92 28.16c-3.413 11.52-11.52 22.187-20.48 31.573zM667.307 472.32h-310.613v-165.973c0-85.333 69.547-155.307 154.88-155.307 41.387 0 80.213 16.213 109.653 45.653s45.653 68.267 45.653 109.653v165.973h0.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["fixedPrice"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 330,
+ "id": 50,
+ "name": "fixedPrice",
+ "prevSize": 32,
+ "code": 59706
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 53
+ },
+ {
+ "icon": {
+ "paths": [
+ "M511.147 346.027h-3.84c-44.373 0-86.187 16.64-117.76 47.36-32 31.573-49.493 73.813-49.493 119.040s17.493 87.467 49.067 118.187c30.72 30.72 72.96 47.36 116.053 47.36h4.267c43.093 0 84.907-17.493 116.053-47.36 31.573-30.72 49.067-72.96 49.067-118.187 0-90.88-72.107-163.84-163.413-166.4zM431.36 435.2c19.627-19.627 46.933-30.72 72.96-30.72h2.987c27.733-0.853 55.467 10.24 76.8 30.72s32.853 48.213 32.853 78.933c0 59.733-49.493 108.8-109.653 108.8h-0.853c-58.453 0-107.947-49.493-107.947-108.8-0.853-29.867 11.093-58.453 32.853-78.933z",
+ "M928 529.493l-1.28-1.28 1.28-1.28c0.853-0.853 1.28-1.28 2.133-2.133 44.373-47.36 64.853-105.387 59.307-169.387-5.12-57.6-29.867-105.813-72.96-143.787-37.12-32-79.787-49.493-126.293-53.333v0h-2.987c-12.373-0.853-24.747 0-37.973 0.853-5.973 0.853-11.093 0.853-16.213 1.28h-0.853c-0.853-0.853-1.28-2.987-2.987-7.253-12.373-39.253-34.133-72.96-64.853-99.413-49.493-42.24-107.947-59.733-172.373-51.2-47.36 5.547-89.6 26.453-125.013 61.867-21.76 21.76-38.827 48.213-49.493 78.080l-1.28 3.84-2.987-1.28c-32.427-8.533-64.427-8.533-95.573-2.56-48.213 10.24-88.747 32.853-119.467 68.693-47.36 56.32-64 121.173-48.64 194.133 7.253 33.707 21.76 63.573 44.373 90.453l2.133 2.987-2.133 1.28c-19.627 20.48-34.987 43.947-45.227 69.973v0c0 0.853-32.853 70.827-1.28 157.013 0 0.853 0 0.853 0.853 1.28 0 0.853 0.853 1.28 0.853 2.987 2.987 7.253 5.973 14.507 9.387 21.333 2.987 6.4 5.973 11.093 8.107 14.507 23.893 39.253 59.733 68.693 105.387 86.187 36.693 14.507 75.947 18.347 116.907 11.52l2.133-0.853 1.28 3.84c6.4 23.467 16.64 44.373 29.867 62.72 32 45.227 74.667 74.667 127.147 87.467 5.973 1.28 26.453 5.12 53.333 5.12 16.64 0 35.84-1.28 55.467-6.4l2.133-0.853c2.133-0.853 3.84-0.853 5.12-1.28 0.853 0 1.28-0.853 2.987-0.853l1.28-0.853c30.72-10.24 59.307-26.88 84.053-51.2 22.613-21.76 40.107-48.213 51.2-78.080 0.853-1.28 0.853-2.133 1.28-3.84l0.853-1.28h1.28c0.853 0 2.133 0.853 3.84 0.853 21.76 5.12 42.24 6.4 62.72 5.973 31.573-1.28 61.44-9.387 88.32-23.893 43.947-23.467 76.8-57.173 97.28-101.547 21.333-46.933 25.6-95.573 13.227-146.773-9.813-29.44-24.32-58.88-45.653-83.627zM868.267 502.613c-5.973 4.267-11.52 8.96-16.64 12.373l-12.373 8.96 2.987 3.84c5.12 6.4 11.52 11.52 16.64 16.213 2.987 2.133 5.973 4.267 8.107 7.253 33.707 30.72 51.2 66.987 54.187 111.787 2.133 43.093-11.093 81.067-38.827 112.64-34.987 39.253-78.933 57.6-131.413 54.613-19.2-1.28-37.973-6.4-59.307-16.213-4.267-1.28-8.107-3.84-12.373-5.12l-14.080-5.973-8.107 38.827c-14.080 67.84-71.68 119.893-141.653 126.293-5.12 0.853-10.24 0.853-15.36 0.853-36.693 0-72.107-13.227-101.547-37.12-28.587-23.893-48.213-57.6-54.613-94.293-1.28-8.96-2.987-18.347-3.84-26.88l-0.853-6.4c0-2.987-0.853-7.253-3.84-11.093l-2.133-2.133-13.227 4.267c-6.4 2.133-13.227 4.267-19.627 6.4-64.853 22.613-138.667-0.853-179.627-57.173-19.2-26.453-29.013-55.467-29.867-86.187-2.133-57.173 21.333-103.68 68.693-138.667l24.747-19.2-2.987-2.133c-5.12-5.12-11.093-10.24-16.213-14.507-6.4-5.12-12.373-11.093-18.347-16.64-29.013-30.72-44.373-66.56-45.227-107.947-0.853-39.253 11.52-74.667 36.693-104.533 25.6-30.72 58.453-49.493 97.707-56.32 30.72-5.12 61.44-0.853 92.16 13.227 5.973 2.987 11.52 5.12 19.2 8.107 4.267 1.28 6.4 2.987 9.387 1.28 2.987-1.28 3.84-4.267 4.267-8.96 0.853-4.267 1.28-8.96 2.133-13.227v-0.853c1.28-8.96 2.987-16.64 5.973-24.747 20.48-62.293 63.147-100.267 125.867-111.787 54.187-10.24 101.547 5.12 142.507 46.080 25.6 25.6 40.96 58.453 44.373 96.427 0.853 5.973 1.28 11.52 2.133 17.493l1.28 14.507 4.267-0.853c7.253-1.28 14.080-3.84 19.627-5.973l0.853-0.853c2.133-0.853 3.84-1.28 5.973-2.133 58.453-20.48 111.787-11.093 159.147 27.733 33.707 27.733 52.48 64.427 56.32 107.947 4.693 56.747-17.067 104.107-63.147 140.8z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["flor"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 331,
+ "id": 51,
+ "name": "flower",
+ "prevSize": 32,
+ "code": 59707
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 54
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 460.8h-213.333l166.4-166.4-72.533-72.533-238.933 238.933h-102.4v-102.4l238.933-238.933-72.533-72.533-166.4 166.4v-213.333h-102.4v213.333l-166.4-166.4-72.533 72.533 238.933 238.933v102.4h-102.4l-238.933-238.933-72.533 72.533 166.4 166.4h-213.333v102.4h213.333l-166.4 166.4 72.533 72.533 238.933-238.933h102.4v102.4l-238.933 238.933 72.533 72.533 166.4-166.4v213.333h102.4v-213.333l166.4 166.4 72.533-72.533-238.933-238.933v-102.4h102.4l238.933 238.933 72.533-72.533-166.4-166.4h213.333v-102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["frozen"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 332,
+ "id": 52,
+ "name": "frozen",
+ "prevSize": 32,
+ "code": 59708
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 55
+ },
+ {
+ "icon": {
+ "paths": [
+ "M118.187 821.333c26.453 0 52.48 5.973 76.8 17.067 4.693 2.133 9.813 4.693 14.507 7.253l2.56 1.28c50.773 25.173 108.373 37.547 165.973 37.547 43.093 0 86.187-7.253 126.293-21.76h0.853l1.28 0.853c40.96 14.507 84.053 21.76 127.573 21.76 1.28 0 2.56 0 3.84 0h2.56c0.853 0 0.853 0 1.28 0s1.28 0 2.133 0h0.853c101.973-2.56 196.693-44.8 267.947-117.76s110.507-169.387 111.36-271.36c0-7.253-2.56-14.080-8.107-19.2-5.12-5.12-11.947-8.107-18.347-8.107h-241.493l-0.853-2.56c-7.253-64-30.293-125.867-68.267-177.92-5.973-8.533-13.227-17.92-21.76-27.307l-1.28-1.28 1.28-2.133c39.68-46.933 41.813-80.213 41.813-86.613 0-14.080-10.667-25.173-25.173-25.6v0c-13.227 0-25.6 11.093-27.307 24.32 0 0-2.133 19.2-26.453 49.493l-0.853 0.853-2.133 0.853-1.28-0.853c-73.387-63.147-168.107-94.72-265.387-89.6-101.12 5.12-193.707 50.347-261.547 125.867-102.827 114.773-126.293 279.893-58.027 418.56l1.28 2.56c2.56 4.693 5.12 9.387 8.107 15.36 14.507 31.573 20.053 66.987 15.36 101.12-1.28 8.107 1.28 16.64 7.253 22.613s14.507 8.533 22.613 7.253c7.68-1.707 16.213-2.56 24.747-2.56zM968.96 522.24l2.133 2.133v1.28c-5.973 67.413-31.573 130.987-74.667 183.893l-0.853 0.853h-2.56l-1.28-0.853-133.547-133.547c-9.813-9.813-26.453-11.093-36.267-2.56-5.973 4.693-9.387 11.947-9.387 19.2s2.56 14.507 8.107 20.053l136.107 136.107v2.56l-0.853 0.853c-51.627 44.8-115.2 72.96-182.613 80.213h-1.28l-2.133-1.28v-212.907c0-14.507-10.667-26.453-23.893-27.733-7.253-0.853-14.507 2.133-20.053 6.827-5.12 5.12-8.533 11.947-8.533 19.2v215.893l-2.133 2.133h-0.853c-32.427-2.133-63.573-8.533-93.867-19.2-3.413-2.133-5.973-2.56-8.533-3.413-31.573-12.373-61.013-29.867-87.467-50.773l-0.853-0.853v-2.56l0.853-1.28 142.080-142.080c9.813-9.813 11.093-26.453 2.56-36.267-4.693-5.973-11.947-9.387-19.2-9.387-7.253-0.853-14.507 2.56-20.053 8.107l-145.067 145.067h-2.56l-0.853-0.853c-47.787-54.187-75.947-121.173-82.773-193.28v-2.987l1.28-2.133 668.16-0.427zM85.76 650.667l-0.853-0.853c-57.6-119.040-37.547-259.84 50.773-358.827 58.453-64.427 138.24-102.827 225.28-107.52 86.613-4.693 170.667 24.32 235.52 82.773 3.413 2.56 5.973 5.12 9.387 8.533l4.693 4.693c3.84 3.84 8.107 8.107 11.947 12.373l0.853 0.853c8.107 8.533 15.36 18.347 22.613 27.733 31.147 43.093 50.773 93.867 57.6 146.773v1.28l-1.28 2.133h-431.36c-7.253 0-14.080 2.56-18.347 8.107-5.12 5.12-8.107 11.947-8.107 19.2 0 133.547 67.413 256 180.48 328.96l1.28 0.853-0.853 3.84-2.133 0.853c-15.787 2.133-31.147 3.413-46.933 3.413-49.067 0-96.427-10.667-140.8-32.427h-0.853c-5.973-3.84-13.227-7.253-19.2-9.813-30.293-14.507-62.72-21.76-96-21.76h-2.56v-2.56c0-33.28-8.107-65.707-21.333-95.147-2.56-10.24-5.973-17.067-9.813-23.467z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["fruit"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 333,
+ "id": 53,
+ "name": "fruit",
+ "prevSize": 32,
+ "code": 59709
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 56
+ },
+ {
+ "icon": {
+ "paths": [
+ "M898.56 419.84c0-206.933-159.573-376.747-362.24-393.387v-18.347c0-4.267-3.84-8.107-8.107-8.107h-42.24c-4.267 0-8.107 3.84-8.107 8.107v17.493c-206.080 13.227-369.493 185.173-369.493 394.24 0 143.36 76.8 269.227 191.573 338.773l-68.693 198.827c-4.267 14.080 2.133 28.587 16.213 32.853l5.973 2.133c14.080 4.267 28.587-2.133 32.853-16.213l66.56-191.573c36.693 15.36 76.8 24.747 118.613 28.587v184.32c0 14.507 11.52 26.453 26.453 26.453h6.4c14.507 0 26.453-11.52 26.453-26.453v-183.467c42.24-2.987 83.2-12.373 120.747-27.733l66.56 192.427c4.267 14.080 19.627 20.48 32.853 16.213l5.973-2.133c14.080-4.267 20.48-19.627 16.213-32.853l-69.12-199.253c116.053-68.693 194.56-196.267 194.56-340.907zM840.107 419.84c0 10.24-0.853 20.48-1.28 30.72-40.96-3.84-79.787-14.080-117.76-27.733v-0.853c0-119.893-97.28-217.173-217.173-217.173-24.32 0-48.213 3.84-70.827 11.52-34.987-36.267-61.867-70.827-81.067-97.28 45.227-22.613 96.427-35.84 151.467-35.84 185.6 0 336.64 151.040 336.64 336.64zM480 264.96c7.253-1.28 15.36-1.28 23.467-1.28 78.933 0 144.213 57.6 156.587 133.12-68.267-36.267-129.707-83.627-180.053-131.84zM301.653 150.613c28.587 38.827 75.52 97.28 136.96 156.587 124.16 118.613 258.133 188.16 389.12 201.813-8.107 29.44-19.627 56.32-34.987 81.92-286.72-5.12-505.6-306.347-553.813-378.88 17.92-23.467 39.253-43.947 62.72-61.44zM350.72 437.333c60.587 58.453 123.733 105.387 187.307 140.373-11.093 2.133-22.613 3.84-34.56 3.84-84.907 0-153.6-66.56-158.72-149.76 2.133 2.133 3.84 3.413 5.973 5.547zM480 755.627c-171.093-11.52-308.053-154.453-313.173-325.547-1.28-59.307 11.52-114.773 37.12-163.84 19.2 26.88 48.213 66.56 87.040 109.653-3.84 15.36-5.12 31.573-5.12 46.933 0 119.893 97.28 217.173 217.173 217.173 37.973 0 74.667-9.387 106.667-27.733 46.933 18.347 94.293 30.72 141.227 34.987-65.28 72.533-163.413 115.627-270.933 108.373z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["funeral"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 334,
+ "id": 54,
+ "name": "funeral",
+ "prevSize": 32,
+ "code": 59710
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 57
+ },
+ {
+ "icon": {
+ "paths": [
+ "M982.187 451.84c-4.267-45.227-16.64-88.747-36.693-129.28-19.2-38.827-45.227-74.24-76.373-104.533 14.507-57.173-17.493-107.093-17.493-107.093-55.040-3.413-90.027 17.067-103.253 26.453-2.133-0.853-4.267-1.707-6.4-2.56-9.387-3.84-19.2-7.253-29.013-10.667-9.813-2.987-20.053-5.973-30.293-8.533-12.373-2.987-24.747-5.12-37.547-6.827-23.893-76.8-93.013-108.8-93.013-108.8-76.8 48.64-91.733 116.907-91.733 116.907l-0.853 3.84c-4.267 1.28-8.533 2.56-12.8 3.84-5.973 1.707-11.52 3.84-17.493 5.973-5.973 2.56-11.52 4.693-17.493 7.253-23.467 10.24-45.653 22.613-66.56 37.12l-2.56-1.28c-106.667-40.533-201.387 8.533-201.387 8.533-8.533 113.493 42.667 184.747 52.907 197.973-12.8 36.267-21.76 74.24-26.027 112.64-98.56 48.64-127.573 148.053-127.573 148.053 82.347 94.293 177.92 100.267 177.92 100.267s0 0 0 0c11.947 21.76 26.027 42.24 42.24 61.867 6.827 8.107 13.653 15.787 20.907 23.467-29.867 85.76 4.267 157.013 4.267 157.013 91.307 3.413 151.467-40.107 164.267-49.92 43.52 14.507 89.173 21.76 134.827 21.333h5.973s4.693 0 4.693 0h4.267s0 0 0 0c43.093 61.44 119.040 70.4 119.040 70.4 53.76-56.747 57.173-113.067 57.173-125.44v-2.56c0-0.853 0-1.707 0-2.56 11.093-8.107 22.187-16.64 32.427-25.6 23.467-21.333 43.947-45.653 60.587-72.533 61.013 3.413 104.107-37.973 104.107-37.973-10.24-63.573-46.080-94.72-53.76-100.267h-0.853c0-0.427-0.853-1.28-0.853-1.28-0.427 0-0.853-0.427-1.28-0.853 0-3.84 0.853-7.68 0.853-11.52 0.427-6.827 0.853-13.653 0.853-20.48v-14.933s-0.427-5.973-0.427-5.973c0-1.707 0-3.84-0.427-5.547 0-1.707 0-3.413-0.427-5.12l-1.707-10.24c-9.387-61.44-40.107-117.76-86.613-159.147-38.4-34.133-86.613-55.893-137.387-62.293-11.947-1.707-24.32-2.133-36.267-2.133h-4.693s-2.56 0-2.56 0h-1.707s-4.267 0.427-4.267 0.427c-55.467 3.84-106.667 29.867-142.507 72.107-14.080 17.067-25.173 35.84-32.853 55.467-9.813 24.747-14.080 51.2-13.227 77.653v3.84c0 2.56 0.427 4.693 0.853 6.827 2.56 28.16 12.8 55.040 29.867 77.653 19.2 26.027 46.933 45.227 78.080 54.613 14.080 4.267 28.16 5.973 41.387 5.973 1.707 0 3.413 0 4.693 0h2.56c0.853 0 1.707 0 2.56 0 1.28 0 2.56 0 4.267-0.427 0 0 0.853 0 1.28 0h1.28s2.56-0.427 2.56-0.427c1.707 0 3.413-0.427 4.693-0.853 1.707 0 2.987-0.427 4.693-0.853 14.080-3.413 27.307-9.387 38.827-17.92 1.28-0.853 2.56-1.707 3.84-2.987 4.693-3.84 5.547-10.24 1.707-14.933 0 0 0 0 0 0-2.987-3.84-8.96-5.12-13.227-2.56l-3.413 1.707c-3.84 1.707-7.68 3.413-11.947 5.12-6.4 2.133-13.227 3.413-20.48 4.267-1.28 0-2.133 0-3.413 0h-3.413c-1.28 0-2.133 0-3.413 0h-4.267c0 0-0.427 0-0.427 0h-0.853c-0.853 0-1.28 0-1.707 0-1.28 0-2.56 0-3.84-0.427-10.667-1.707-20.907-4.693-30.72-8.96-10.24-4.693-20.053-11.093-28.587-18.773-18.347-16.64-30.293-38.827-34.56-63.147-0.853-6.4-1.28-12.8-1.28-18.773v-5.12c0 0 0-0.853 0-0.853v-1.28c0-0.853 0-1.707 0-2.56 3.84-39.253 25.173-75.093 57.6-97.707 12.373-8.107 25.6-14.507 40.107-18.347 10.667-2.987 21.76-4.267 33.28-4.267h5.547s2.133 0 2.133 0h4.267c24.32 2.133 48.213 9.387 69.547 20.907 29.44 16.213 53.333 40.96 68.267 70.827 9.387 18.773 15.36 39.253 17.067 60.16v3.413s0 2.987 0 2.987c0 1.28 0 2.133 0 2.987s0 2.133 0 2.987v5.973s-0.427 7.253-0.427 7.253c-0.853 8.96-1.707 18.347-3.413 27.307-2.56 13.653-6.4 26.88-11.52 39.68-6.827 17.067-15.787 33.28-26.453 48.213-32.853 45.653-82.773 76.373-138.24 85.76-8.96 1.707-18.347 2.56-27.733 2.987h-1.707s-12.373 0-12.373 0c-24.747-0.427-49.493-4.267-73.387-11.093-57.173-16.64-107.947-50.347-145.067-96.853-12.373-15.36-23.040-31.573-32-49.067-17.493-34.56-28.16-72.107-30.293-110.933v-3.413c0 0 0-0.853 0-0.853v-5.547s0-4.267 0-4.267v-4.267s0-2.987 0-2.987v-6.827c0.427-9.387 1.28-19.2 2.56-29.013 2.56-19.627 6.4-38.827 11.947-57.6s12.373-37.12 20.053-54.613c14.933-33.28 36.267-63.573 62.293-89.6 12.373-12.373 26.027-23.040 40.533-32.427 7.253-4.693 14.507-8.96 22.187-13.227 3.84-2.133 7.68-3.84 11.52-5.973 2.133-0.853 3.84-1.707 5.973-2.56 9.813-4.267 20.053-8.107 30.293-11.52l6.4-2.133c2.133-0.427 4.267-1.28 6.4-1.707 4.267-1.28 8.533-2.133 12.8-3.413 2.133-0.427 4.267-0.853 6.4-1.28l12.8-2.56h3.413c0-0.427 2.987-0.853 2.987-0.853l6.4-0.853c2.56-0.427 4.693-0.427 7.253-0.853l7.253-0.853c1.707 0 2.987 0 4.693-0.427h2.987c0 0 1.707-0.427 1.707-0.427h1.707c2.56 0 4.693 0 7.253-0.427h3.84c0 0 0.853 0 0.853 0h1.707s6.4 0 6.4 0c24.32-0.853 48.64 0.853 72.96 5.12 30.293 5.547 59.733 15.36 87.467 29.013 25.6 12.373 49.493 28.16 71.253 46.507l7.68 6.827c2.56 2.133 4.693 4.693 7.253 6.827s4.693 4.693 7.253 6.827c2.133 2.133 4.693 4.693 6.827 6.827 23.893 25.173 44.373 53.76 60.16 84.48 0.427 1.28 1.28 2.133 1.707 3.413l5.12 10.24c0.853 2.133 2.133 4.267 2.987 6.4l2.987 6.4c8.107 18.347 14.507 37.547 19.2 57.173 0.853 3.84 4.693 6.4 8.533 5.973 4.267 0 7.253-3.84 7.253-7.68 0.427-10.667 0-22.613-0.853-36.693v0z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["grafana"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 418,
+ "id": 55,
+ "name": "grafana",
+ "prevSize": 32,
+ "code": 59654
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 58
+ },
+ {
+ "icon": {
+ "paths": [
+ "M871.68 540.16c-8.96-111.36-82.773-224.853-219.733-337.493-110.507-90.88-232.107-155.307-279.467-178.347l-0.853-1.28h-0.853l-0.853-0.853c-11.093-5.973-18.347-8.96-20.48-10.24l-27.307-11.947-14.080 26.88c-168.96 333.227-201.387 578.56-96 728.32 93.013 132.267 263.68 152.32 356.267 152.32 14.507 0 28.587-0.853 40.96-1.28h1.28l0.853 1.28c22.613 40.107 44.8 75.52 66.56 104.533 5.12 6.4 12.373 11.093 21.333 11.52 8.96 0.853 17.493-2.133 24.32-7.253l0.853-0.853c12.373-11.093 14.080-29.44 3.84-42.24-19.2-25.6-39.68-56.32-59.307-92.16l-1.28-2.133 2.133-1.28c143.787-103.253 211.2-216.747 201.813-337.493zM575.147 844.373c-1.28 0-2.987 0-5.12 0-190.293 0-273.92-78.507-305.92-125.013-81.067-116.48-59.307-319.573 64.427-587.52l2.987-7.253 2.133 7.253c43.093 165.547 131.84 477.867 243.627 708.267l2.133 3.84-4.267 0.427zM641.707 820.48l-2.987 2.133-1.28-2.987c-109.653-224-199.68-539.307-243.627-706.987l-1.707-5.973 5.973 2.987c67.413 37.12 165.547 97.28 248.747 172.8 101.12 90.027 155.307 178.773 161.707 263.68 7.253 93.44-49.067 186.453-166.827 274.347z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["verde"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 335,
+ "id": 56,
+ "name": "greenery",
+ "prevSize": 32,
+ "code": 59711
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 59
+ },
+ {
+ "icon": {
+ "paths": [
+ "M921.6 230.4h-204.8v-102.4c0-55.467-46.933-102.4-102.4-102.4h-204.8c-55.467-0-102.4 46.933-102.4 102.4v102.4h-204.8c-55.467 0-102.4 46.933-102.4 102.4v563.2c0 55.467 46.933 102.4 102.4 102.4h819.2c55.467 0 102.4-46.933 102.4-102.4v-563.2c0-55.467-46.933-102.4-102.4-102.4zM614.4 230.4h-204.8v-102.4h204.8c0 0 0 102.4 0 102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["greuge"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 336,
+ "id": 57,
+ "name": "greuge",
+ "prevSize": 32,
+ "code": 59712
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 60
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 256h256v-256h-256v256zM384 1024h256v-256h-256v256zM0 1024h256v-256h-256v256zM0 640h256v-256h-256v256zM384 640h256v-256h-256v256zM768 0v256h256v-256h-256zM384 256h256v-256h-256v256zM768 640h256v-256h-256v256zM768 1024h256v-256h-256v256z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["grid"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 337,
+ "id": 58,
+ "name": "grid",
+ "prevSize": 32,
+ "code": 59713
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 61
+ },
+ {
+ "icon": {
+ "paths": [
+ "M984.32 721.92c11.52-48.213 14.507-93.013 11.093-136.96-4.267-40.96-14.507-75.947-32.853-108.373-30.72-55.040-77.653-93.44-139.093-113.493-7.253-2.133-14.507-4.267-22.613-5.973l-13.227-2.987 14.080-2.133c10.24-1.28 20.48-3.84 29.867-5.12l5.12-0.853c32-5.973 65.28-11.52 97.28-21.333 24.32-7.253 45.227-19.627 64.427-32.853l5.973-4.267-5.12-5.12c-4.267-4.267-9.387-9.387-14.080-14.080-14.507-14.507-29.44-29.44-45.227-42.24-57.173-46.080-109.653-70.4-167.68-77.653-41.813-5.12-81.92-0.853-118.613 14.080-11.52 4.267-22.613 10.24-30.72 14.507l-2.133 1.28-1.28-2.133c-8.96-16.213-20.48-30.72-35.84-43.947-29.867-24.747-65.707-36.693-107.52-33.707h-2.987l-0.853-2.987c-7.253-20.48-19.2-38.827-35.84-55.040-49.493-46.507-123.307-54.187-180.907-17.493-24.32 15.36-42.667 35.84-54.187 62.293l-1.28 3.84-3.84-0.853c-14.080-2.133-27.733-2.133-43.093 0-35.84 4.267-69.547 23.467-93.44 52.48-25.6 31.573-36.693 70.827-31.573 111.787 2.987 24.747 11.52 46.933 25.6 66.56 0 0.853 0.853 0.853 0.853 0.853l0.853 1.28-1.28 2.133c-24.747 30.72-35.84 65.28-32.853 103.68 3.84 49.92 26.88 89.173 70.4 116.48 25.6 16.64 56.32 23.467 90.027 20.48l2.133-0.853 0.853 2.133c8.96 24.747 23.467 45.227 42.24 61.44 24.747 21.333 52.48 32 82.773 34.56 2.133 0 2.987 0.853 5.12 3.84l47.36 64.427c18.347 24.32 36.693 49.92 55.040 74.667 3.84 5.12 3.84 8.107 2.133 11.52-2.987 6.4-4.267 14.080-6.4 19.627v0.853c-0.853 2.987-1.28 5.973-2.133 8.96l-14.507 47.36c-9.387 29.867-18.347 60.16-27.733 89.173-3.84 11.52-2.133 21.76 2.987 29.867 5.973 8.107 15.36 11.52 27.733 11.52h176.213c7.253 0 14.507 0 21.76 0 19.627 0 39.68 0 59.307 0 8.96 0 16.213-2.133 21.76-7.253 12.373-11.093 11.093-24.747 7.253-35.84l-13.227-43.093c-12.373-40.96-24.747-82.773-37.12-125.013-0.853-3.84-0.853-5.973 1.28-9.387 31.573-49.92 62.293-100.267 93.013-149.333l37.973-60.587c1.28-2.133 2.987-5.12 5.12-7.253l2.133-2.987 57.6 66.56c22.613 26.453 46.933 54.187 72.96 78.080 18.347 16.64 40.107 27.733 61.44 37.973l6.4 2.987 5.12-21.333c1.28-8.107 3.413-16.213 5.973-24.747zM610.133 329.813c17.493-25.6 26.453-54.187 25.6-85.76 0-3.84 0.853-5.12 4.267-7.253 37.973-24.32 76.8-33.707 120.747-29.44 39.68 4.267 76.8 19.627 116.907 47.36 5.12 3.84 11.093 7.253 16.64 12.373l4.267 3.84-5.12 1.28c-11.093 2.987-21.76 5.12-31.573 6.4-22.613 4.267-44.8 8.107-66.56 11.52-29.44 5.12-59.307 10.24-89.173 16.64-25.6 5.12-59.307 13.227-93.013 25.6l-8.107 2.987 5.12-5.547zM320.427 603.307c-21.333 0-41.813-8.107-57.6-24.32-16.213-15.36-25.6-34.987-27.733-60.16-0.853-5.12-0.853-9.387-1.28-14.507l-1.28-14.080h-6.4c-8.96 0.853-16.64 4.267-24.32 7.253l-2.987 1.28c-21.76 8.96-46.933 8.107-67.84-2.133-21.76-10.24-39.68-29.867-46.933-53.333-11.52-33.707 0.853-72.533 30.293-94.72l29.44-21.76-3.84-5.12c-4.267-6.4-10.24-11.093-16.213-15.36l-0.853-0.853c-1.28-1.28-3.84-2.987-5.12-3.84-21.76-18.347-32.853-41.813-32-67.84 0.853-38.827 21.76-68.693 58.453-81.92 20.48-7.253 40.96-6.4 62.293 2.133l34.56 14.507 2.133-6.4c2.987-8.107 4.267-16.213 5.12-24.32l1.28-7.253c5.973-32 32.853-67.84 79.787-70.4 30.72-1.28 56.32 10.24 75.52 36.693 10.24 14.080 15.36 30.72 16.64 52.053 0.853 6.4 0.853 13.227 2.987 19.627l1.28 5.973 16.64-5.973c5.973-2.133 11.52-4.267 17.493-5.973 40.107-14.507 84.907 2.987 104.533 40.107 16.213 29.867 14.507 60.587-4.267 91.307-7.253 11.52-18.347 20.48-30.72 28.587l-3.84 2.987c-7.253 5.12-10.24 8.107-10.24 12.373s2.987 8.107 9.387 13.227c11.52 10.24 23.467 20.48 31.573 34.56 14.080 22.613 15.36 52.053 4.267 78.080s-32 44.8-60.587 51.2c-16.64 4.267-34.56 2.133-52.053-5.12-5.12-2.133-10.24-4.267-15.36-6.4l-18.347-8.107-1.28 5.12c-2.987 7.253-3.84 14.080-5.12 20.48l-0.853 5.12c-5.12 29.44-19.627 51.2-44.8 65.28-13.227 7.68-27.733 11.947-41.813 11.947zM657.067 655.787c-28.587 46.080-54.187 87.040-80.64 129.707-5.973 9.387-6.4 19.2-2.987 31.573l32.853 110.507c3.84 11.093 6.4 21.76 9.387 32.853l0.853 3.84h-3.84c-15.36 0-30.72 0-46.080 0h-19.627c-34.56 0-70.827 0-108.373 1.28h-3.413l0.853-3.84c1.28-5.12 2.987-10.24 4.267-15.36 0.853-2.987 2.133-6.4 2.987-9.387 13.227-43.947 24.747-80.64 35.84-114.773 5.12-15.36 2.133-29.44-7.253-42.24-23.467-31.573-47.36-63.573-68.693-93.013l-25.6-34.56 2.987-1.28c24.747-11.52 43.947-27.733 59.307-49.067 5.12-7.253 9.387-15.36 13.227-22.613l1.28-3.84 3.84 0.853c21.76 3.84 43.093 2.133 62.72-3.84 50.347-15.36 84.053-48.213 100.267-98.56l0.853-3.84 3.84 0.853c22.613 3.84 41.813 16.64 60.587 30.72 10.24 7.253 19.2 16.213 28.587 24.32 3.84 3.84 8.107 7.253 12.373 10.24l2.133 1.28-72.533 118.187zM935.68 632.747c-0.853 11.52-1.28 22.613-2.987 33.707l-0.853 5.973-9.387-10.24c-20.48-21.76-40.107-45.227-59.307-67.413-14.507-16.64-30.72-35.84-46.933-53.333-25.6-27.733-53.333-57.6-85.76-83.2-17.493-14.080-34.56-24.747-51.2-32.853l-6.4-2.987 6.4-2.133c5.973-1.28 11.52-2.987 18.347-4.267 46.933-8.107 90.88-2.987 129.707 16.213 52.053 25.6 85.76 67.84 100.267 128 7.68 22.613 9.813 46.933 8.107 72.533z",
+ "M328.533 215.467h-2.133c-63.573 0.853-113.493 52.053-113.493 116.48 0 31.573 11.52 60.587 33.707 82.773 21.333 21.333 50.347 33.707 81.92 33.707 64.427 0 115.627-51.2 115.627-115.627 0-31.573-11.52-60.587-33.707-81.92-21.76-23.040-51.2-35.413-81.92-35.413zM327.68 387.413c-14.507 0-28.587-5.973-38.827-16.64-9.813-11.093-15.787-25.173-15.787-39.68 0.853-31.573 24.32-55.467 55.467-55.467 14.507 0 27.733 5.973 37.973 16.213 11.093 11.093 16.64 25.6 16.64 40.107 0.427 30.72-24.747 55.467-55.467 55.467z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["confeccion"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 338,
+ "id": 59,
+ "name": "handmade",
+ "prevSize": 32,
+ "code": 59714
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 62
+ },
+ {
+ "icon": {
+ "paths": [
+ "M459.093 418.987c0-1.28 0-2.133 0-2.987v-157.013c0-3.84-0.853-5.973-2.133-6.827-1.28-1.28-3.84-2.133-7.253-2.133-0.853 0-2.133 0-2.987 0h-149.76c-1.28 0-2.987 0-3.84 0-2.987 0-5.12 1.28-5.973 1.28-1.28 1.28-2.133 3.84-2.133 5.973 0 1.28 0 2.133 0 3.84v162.133h172.8l1.28-4.267zM403.627 307.627c0 6.827 0 13.227 0 20.053v17.067c0 6.827 0 13.227 0 20.48v2.987h-2.987c-19.2 0-38.4 0-58.027 0h-2.987v-2.987c0-19.2 0-38.4 0-58.027v-2.987h2.987c19.2 0 37.547 0 58.027 0h1.28l1.707 3.413z",
+ "M1008.213 669.013c-0.853-2.987-1.28-5.12-2.987-8.107l-102.4-282.88c-6.827-15.36-16.213-14.080-16.213-14.080l-124.587 29.44 8.96-6.827 70.827-49.493 144.213-101.547-289.28-72.107c-4.267-0.853-8.96-2.133-12.373-2.987-7.253-1.28-10.24 1.28-13.227 6.827-0.853 0.853-0.853 2.133-1.28 2.987v0l-2.987 5.12-66.56-115.627c-2.987-5.973-5.12-8.107-8.107-8.96s-5.973 0.853-11.093 3.84l-20.053 11.093c-14.933 8.96-29.44 17.067-44.373 25.6l-4.267 2.133-0.853-4.267v-17.067c0-10.24 0-20.053 0-30.293 0-3.84 0-7.253 0-11.093 0-8.96 0-17.493-0.853-25.6v-4.267h-262.827c-12.373 0.853-15.36 10.24-15.36 15.36v2.133c0 23.467 0 46.933 0 70.827v4.267l-4.267-2.133c-5.12-2.987-10.24-5.973-15.36-8.96l-12.373-6.827c-13.227-7.253-27.307-15.36-40.533-23.467-2.133-1.28-5.12-2.987-8.107-1.28-2.987 0.853-4.267 4.267-5.12 5.973 0 0.853-0.853 1.28-1.28 2.987l-134.827 230.4 2.987 1.28c12.373 8.107 25.6 15.36 38.827 22.613 1.28 0.853 2.987 1.28 3.84 2.133v0l36.693 18.347-20.48 11.947c0 0-0.853 0-0.853 0.853l-61.013 35.413 1.28 2.987c14.080 27.307 130.987 231.253 138.24 238.507l1.28 2.133 45.653-25.6 34.56-22.187-1.28 49.92c0 11.947 0 22.613 0 33.707 0 2.133 0 5.973 2.133 8.96 2.133 2.133 5.973 2.133 7.253 2.133 3.84 0 8.107 0 12.373 0.853h0.853c4.267 0.853 8.96 0.853 12.373 0.853 5.12 0 10.24 0 15.36 0 6.827 0 13.227 0 20.053 0 0.853 0 0.853 0 1.28 0 5.12 0 8.96 2.133 13.227 6.827 29.44 37.547 61.867 78.080 98.56 122.88 3.84 4.267 4.267 8.107 2.987 13.227-14.080 43.52-28.587 86.187-42.667 129.707l-20.48 58.027c-1.28 4.267-0.853 8.96 1.28 13.227 2.987 3.84 6.827 5.973 11.947 5.973h325.547l-1.28-7.253c-0.853-1.28-0.853-2.987-0.853-4.267l-13.227-44.8c-14.080-48.64-28.587-98.56-43.52-149.333-2.133-7.253-1.28-12.373 2.987-20.053 32.427-51.627 64.853-103.68 97.28-155.307l28.16-44.8c0.853-0.853 1.28-2.133 1.28-2.987l2.133 0.853 0.853-2.987c1.28 0 2.987 0.853 5.973 2.133l223.147 83.2c2.133 0.853 4.267 1.28 7.253 2.133l10.24 3.84-4.693-16.213zM727.893 294.4c3.84-2.133 4.267-5.973 2.987-9.387l-6.827-11.093c-5.12-9.387-11.093-18.347-16.213-28.16l-19.2-29.44 126.72 30.72 42.667 14.080-19.2 12.373-33.707 22.187c-33.707 22.187-67.84 43.52-101.547 65.707-1.28 1.28-2.987 1.28-4.267 1.28s-2.133-0.853-3.84-1.28c-11.093-6.827-22.187-13.227-33.28-20.053l-8.107-4.267 73.813-42.667zM293.547 617.387h-6.827v-133.547l-5.12 2.56c-12.373 5.973-24.32 13.227-36.267 20.053l-0.853 0.853c-6.827 3.84-13.227 8.107-20.053 11.947-13.227 7.253-27.307 15.36-38.827 22.613l-14.933 8.96-4.267-8.107c-4.267-7.253-8.96-14.933-13.227-22.187-22.187-37.547-43.52-75.947-64.853-113.493l-2.133-3.84 3.84-2.133 97.707-56.747c1.28-0.853 2.987-2.133 5.12-2.987l8.107-5.12-103.253-60.16c-5.973-3.84-8.107-11.093-4.267-17.067l72.96-125.867c3.84-5.973 11.093-8.107 17.067-4.267l93.44 53.76c2.133 1.28 4.267 1.28 6.827 0 2.133-1.28 3.84-3.84 3.84-5.973v-5.973c0-8.96 0.853-16.213 0.853-24.32 0-17.493 0-35.413 0-52.907v-38.4h3.84c53.76 0 108.373 0 162.133 0h3.84v121.6c0 2.133 1.28 5.12 3.84 5.973s5.12 1.28 7.253 0l94.293-53.76c5.973-3.84 14.080-1.28 17.067 4.267l49.92 87.467c8.96 14.933 17.067 29.44 25.6 44.8l2.133 4.267-105.387 60.16c-2.133 1.28-2.987 3.84-2.987 5.973s1.28 4.267 3.84 5.973l93.013 55.040c5.973 3.84 8.107 11.093 4.267 17.067l-72.96 125.867c-1.28 2.987-4.267 5.12-7.253 5.973s-6.827 0.853-9.387-1.28l-99.413-58.027-2.133 2.987c-2.987 2.987-2.987 6.827-2.133 10.24v89.173c0 9.387 0 17.493-1.28 26.453l-0.853 2.133h-3.84c-0.853 0-1.28 0-2.133 0-51.627-0-104.107 0.853-156.16-0zM704 584.533l-69.973 111.787c-20.053 30.72-38.827 62.72-58.88 93.44-3.84 5.973-4.267 11.093-2.133 18.347 11.093 38.827 22.613 77.227 33.707 116.48l12.373 43.52h-4.693l-148.907-0.853c-5.12 0-10.24 0-15.36 0h-22.613l9.387-30.293c13.227-41.813 28.16-85.333 41.813-127.147 2.987-8.107 1.28-13.227-3.84-20.053-25.173-30.72-49.493-61.867-78.933-97.707l-14.080-17.493h119.467c5.12 0 7.253 0 8.96-2.133 2.133-2.133 2.133-4.267 2.133-10.24v-81.067l4.267 2.987c1.28 0.853 2.133 1.28 3.84 2.133 11.947 6.827 22.613 13.227 34.56 20.053l28.587 17.067c8.107 4.267 10.24 3.84 14.933-3.84l40.533-69.12c0.853-0.853 0.853-1.28 1.28-2.133l1.28-1.28 4.267 1.28c17.493 6.827 34.56 13.227 52.48 19.2 3.84 1.28 6.827 4.267 7.253 7.253 1.28 2.133 0 5.973-1.707 9.813zM863.147 568.32l-193.707-72.107 2.133-4.267c3.84-6.827 7.253-13.227 11.093-20.053 0.853-1.28 2.133-1.28 5.12-2.133l119.893-28.587c14.933-3.84 28.587-6.827 43.52-10.24l7.253-0.853 7.253 7.253v0.853c11.093 30.293 21.333 59.733 32.427 89.6l26.453 64-61.44-23.467z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["handmadeArtificial"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 339,
+ "id": 60,
+ "name": "handmadeArtificial",
+ "prevSize": 32,
+ "code": 59715
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 63
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362.667 1024h302.933v-678.4h-302.933v678.4zM0 1024h302.933v-678.4h-302.933v678.4zM721.067 345.6v678.4h302.933v-678.4h-302.933z",
+ "M362.667 281.6h302.933v-281.6h-302.933v281.6zM0 281.6h302.933v-281.6h-302.933v281.6zM721.067 0v281.6h302.933v-281.6h-302.933z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["headercol"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 340,
+ "id": 61,
+ "name": "headercol",
+ "prevSize": 32,
+ "code": 59717
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 64
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM563.2 768h-102.4v-307.2h102.4v307.2zM563.2 358.4h-102.4v-102.4h102.4v102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["info"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 341,
+ "id": 62,
+ "name": "info",
+ "prevSize": 32,
+ "code": 59718
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 65
+ },
+ {
+ "icon": {
+ "paths": [
+ "M273.067 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z",
+ "M512 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c0 8.533 8.533 12.8 12.8 12.8z",
+ "M750.933 733.867c4.267 0 8.533-4.267 8.533-8.533v-85.333h98.133v221.867h-217.6v-221.867h98.133v81.067c4.267 8.533 8.533 12.8 12.8 12.8z",
+ "M644.267 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-217.6v-221.867h4.267z",
+ "M401.067 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z",
+ "M162.133 179.2h98.133v81.067c0 4.267 4.267 8.533 8.533 8.533s8.533-4.267 8.533-8.533v-81.067h98.133v221.867h-213.333v-221.867z",
+ "M153.6 422.4h780.8v38.4h-844.8v-38.4z",
+ "M68.267 1002.667h-42.667v-981.333h42.667v908.8z",
+ "M89.6 921.6v-38.4h844.8v38.4z",
+ "M998.4 1002.667h-42.667v-981.333h42.667z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["inventory"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 342,
+ "id": 63,
+ "name": "inventory",
+ "prevSize": 32,
+ "code": 59719
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 66
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 384h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z",
+ "M320 490.667h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-341.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z",
+ "M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z",
+ "M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v682.667c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-682.667c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM42.667 917.333v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-554.667c-34.133 0-64-29.867-64-64z",
+ "M657.067 712.533c-12.8 8.533-25.6 12.8-42.667 12.8-12.8 0-25.6-4.267-38.4-12.8-8.533-4.267-12.8-12.8-21.333-21.333h64c4.267 0 8.533-4.267 12.8-4.267 0 0 4.267-4.267 4.267-12.8 0-4.267 0-8.533-4.267-12.8 0 0-4.267-4.267-12.8-4.267h-72.533c0 0 0 0 0-4.267 0 0 0-4.267 0-4.267h89.6c4.267 0 8.533-4.267 12.8-4.267 4.267-4.267 4.267-8.533 4.267-12.8s0-8.533-4.267-12.8c0 0-4.267-4.267-12.8-4.267h-76.8c4.267-8.533 12.8-12.8 17.067-21.333 12.8-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 0 21.333 4.267s12.8 4.267 17.067 8.533c4.267 4.267 12.8 4.267 17.067 4.267 0 0 4.267-4.267 4.267-4.267s4.267-4.267 4.267-4.267c0-4.267 4.267-4.267 4.267-8.533s0-8.533-4.267-12.8c-8.533-8.533-17.067-12.8-29.867-17.067-17.067 4.267-46.933 4.267-72.533 17.067-12.8 4.267-25.6 12.8-34.133 25.6-8.533 8.533-12.8 21.333-17.067 29.867h-17.067c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h8.533c0 0 0 4.267 0 4.267s0 0 0 4.267h-8.533c-4.267 0-8.533 0-12.8 4.267s-4.267 8.533-4.267 12.8c0 4.267 0 8.533 4.267 12.8s8.533 4.267 12.8 4.267h12.8c4.267 12.8 8.533 21.333 17.067 34.133s21.333 21.333 34.133 25.6c12.8 4.267 25.6 8.533 42.667 8.533 25.6 0 46.933-8.533 64-21.333 8.533-8.533 8.533-12.8 8.533-21.333 0-4.267 0-8.533-4.267-12.8-8.533-4.267-12.8-4.267-21.333 0z"
+ ],
+ "attrs": [
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" }
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 }
+ ],
+ "125525525519595951": [
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 }
+ ],
+ "12043441125524245125525525513111218319595951": [
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 },
+ { "f": 1 }
+ ]
+ },
+ "tags": ["invoice"],
+ "grid": 0
+ },
+ "attrs": [
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" },
+ { "fill": "rgb(95, 95, 95)" }
+ ],
+ "properties": {
+ "order": 343,
+ "id": 64,
+ "name": "invoice",
+ "prevSize": 32,
+ "code": 59752
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 67
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z",
+ "M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z",
+ "M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z",
+ "M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
+ "M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
+ "M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z",
+ "M153.6 209.067c-85.333 0-153.6 68.267-153.6 153.6s68.267 153.6 153.6 153.6 153.6-68.267 153.6-153.6-68.267-153.6-153.6-153.6zM243.2 379.733h-81.067v42.667c0 8.533-4.267 12.8-12.8 8.533l-98.133-55.467c-8.533-4.267-8.533-12.8 0-17.067l98.133-55.467c8.533-4.267 12.8 0 12.8 8.533v42.667h81.067c8.533 0 17.067 8.533 17.067 17.067 0 0-4.267 8.533-17.067 8.533z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["invoiceIn"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 344,
+ "id": 65,
+ "name": "invoice-in",
+ "prevSize": 32,
+ "code": 59721
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 68
+ },
+ {
+ "icon": {
+ "paths": [
+ "M153.6 516.267c-85.333 0-153.6-68.267-153.6-153.6s68.267-153.6 153.6-153.6 153.6 68.267 153.6 153.6-68.267 153.6-153.6 153.6zM243.2 354.133h-81.067v-42.667c0-8.533-4.267-12.8-12.8-8.533l-98.133 55.467c-8.533 4.267-8.533 12.8 0 17.067l98.133 55.467c8.533 4.267 12.8 0 12.8-8.533v-42.667h81.067c12.8 0 17.067-8.533 17.067-8.533 0-8.533-8.533-17.067-17.067-17.067zM153.6 554.667c5.547 0 11.52-0.427 17.067-0.853v235.52c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-236.373c8.533 1.28 17.067 1.707 25.6 1.707zM344.32 384c0.853-6.827 1.28-14.080 1.28-21.333s-0.427-14.507-1.28-21.333h317.013c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-317.013zM917.333 149.333c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v317.44c-29.44-9.387-61.013-14.507-93.867-14.507-53.76 0-104.533 14.080-148.907 38.4h-241.92c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h189.013c-21.76 20.053-40.533 43.093-55.893 68.693-1.707-0.427-3.413-0.427-5.12-0.427h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h112.213c-14.507 35.413-22.613 74.24-22.613 115.2 0 49.067 11.52 95.573 32 136.533h-420.267c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c15.36 0 29.867-2.987 43.093-8.96 134.4-32.853 234.24-154.027 234.24-298.24 0-120.747-69.547-224.853-170.667-275.2v-334.933c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h424.533c24.747 34.56 56.747 63.573 93.44 85.333h-432.64zM897.28 672.427v89.173h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["invoice-in-create"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 345,
+ "id": 66,
+ "name": "invoice-in-create",
+ "prevSize": 32,
+ "code": 59722
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 69
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 601.6h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333z",
+ "M149.333 810.667c12.8 0 21.333-8.533 21.333-21.333v-235.52c-5.547 0.427-11.52 0.853-17.067 0.853-8.533 0-17.067-0.427-25.6-1.707v236.373c0 12.8 8.533 21.333 21.333 21.333z",
+ "M917.333 0h-682.667c-59.733 0-106.667 46.933-106.667 106.667v65.707c8.533-1.28 17.067-1.707 25.6-1.707 5.547 0 11.52 0.427 17.067 0.853v-64.853c0-34.133 29.867-64 64-64h597.333c-12.8 17.067-21.333 38.4-21.333 64v810.667c0 34.133-29.867 64-64 64s-64-29.867-64-64v-42.667c0-12.8-8.533-21.333-21.333-21.333h-640c-12.8 0-21.333 8.533-21.333 21.333v42.667c0 59.733 46.933 106.667 106.667 106.667h640c59.733 0 106.667-46.933 106.667-106.667v-810.667c0-34.133 29.867-64 64-64s64 29.867 64 64v42.667h-64c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h85.333c12.8 0 21.333-8.533 21.333-21.333v-64c0-59.733-46.933-106.667-106.667-106.667zM128 981.333h-21.333c-34.133 0-64-29.867-64-64v-21.333h597.333v21.333c0 25.6 8.533 46.933 21.333 64h-533.333z",
+ "M661.333 341.333h-317.013c0.853 6.827 1.28 14.080 1.28 21.333s-0.427 14.507-1.28 21.333h317.013c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
+ "M661.333 448h-335.36c-5.973 12.373-13.653 24.32-22.613 35.413 3.84 4.693 9.387 7.253 16.64 7.253h341.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
+ "M720.64 728.32c-3.413 8.533-8.96 16.213-15.36 22.613-6.827 6.4-14.080 11.947-22.613 16.64-8.533 4.267-17.493 7.68-26.88 10.24s-18.773 3.413-28.16 3.413c-12.373 0-24.32-2.133-35.413-6.4s-20.907-9.813-29.867-17.067c-8.96-7.253-16.64-15.36-23.040-25.173-6.4-9.387-11.52-19.627-14.933-30.72h-33.28l9.813-23.467h17.92c-0.427-4.267-0.853-8.96-0.853-14.080v-2.133h-22.187l9.387-23.467h15.787c2.56-11.52 6.827-22.613 12.8-32.853 5.973-10.667 13.653-19.627 23.040-27.733s20.053-14.507 32-19.2c12.373-4.693 25.6-7.253 40.533-7.253 20.907 0 38.827 4.693 54.187 13.653s26.453 20.907 34.133 35.84l-33.707 23.467c-2.987-6.4-6.827-11.947-10.667-16.213-4.267-4.267-8.96-7.68-13.653-10.24s-9.813-4.267-15.36-5.547c-5.547-1.28-10.667-1.707-15.787-1.707-8.107 0-15.787 1.28-22.613 3.84s-12.8 5.973-17.92 10.24c-5.12 4.267-9.387 9.387-13.227 15.36s-6.4 11.947-8.107 18.773h81.92l-9.387 23.467h-76.373v3.413c0 4.267 0.427 8.533 0.853 12.8h74.667l-9.387 23.467h-58.453c5.547 11.947 13.227 21.76 23.467 29.013s21.76 11.093 35.413 11.093c5.12 0 10.24-0.427 15.787-1.707s10.667-3.413 15.787-5.973c5.12-2.987 9.387-6.4 14.080-10.667 4.267-4.267 7.68-9.813 10.24-15.787l35.413 20.053z",
+ "M153.6 209.067c85.333 0 153.6 68.267 153.6 153.6s-68.267 153.6-153.6 153.6-153.6-68.267-153.6-153.6 68.267-153.6 153.6-153.6zM64 379.733h81.067v42.667c0 8.533 4.267 12.8 12.8 8.533l98.133-55.467c8.533-4.267 8.533-12.8 0-17.067l-98.133-55.467c-8.533-4.267-12.8 0-12.8 8.533v42.667h-81.067c-8.533 0-17.067 8.533-17.067 17.067 0 0 4.267 8.533 17.067 8.533z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["invoiceOut"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 346,
+ "id": 67,
+ "name": "invoice-out",
+ "prevSize": 32,
+ "code": 59723
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 70
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 4.267c-279.893 0-507.733 227.84-507.733 507.733s227.84 507.733 507.733 507.733 507.733-227.84 507.733-507.733-227.84-507.733-507.733-507.733zM512 975.787c-255.573 0-463.787-207.787-463.787-463.787s208.213-463.787 463.787-463.787c255.573 0 463.787 207.787 463.787 463.787s-208.213 463.787-463.787 463.787z",
+ "M833.707 253.867c-95.147-79.36-198.827-120.32-308.053-122.453-167.253-3.413-290.56 88.747-349.013 143.787l-6.827 6.4 185.6 273.92 9.387-7.253c15.787-12.373 31.573-22.187 46.933-29.867l41.387 72.107c-5.973 11.947-8.107 25.6-5.973 39.68 5.547 36.267 39.68 61.013 75.52 55.040 36.267-5.547 61.013-39.68 55.040-75.52-5.547-36.267-39.68-61.013-75.52-55.040-3.413 0.427-6.4 1.28-9.387 2.133l-43.52-53.333c40.107-12.373 69.547-10.667 69.973-10.667 0.853 0 66.133 4.267 131.413 53.333l9.813 7.253 180.907-293.547-7.68-5.973zM540.16 615.68c2.133 14.933-8.107 29.013-23.040 31.573-14.933 2.133-29.013-8.107-31.573-23.040-2.133-14.933 8.107-29.013 23.040-31.573s29.013 7.68 31.573 23.040zM654.080 521.387c-67.413-46.507-130.987-50.347-133.547-50.773-2.133 0-38.4-2.56-86.613 14.507l-137.387-166.4 104.107 180.48c-13.227 6.4-26.453 14.507-40.107 24.32l-161.707-238.933c19.627-17.92 46.080-39.253 78.507-59.307l32 55.040 19.2-11.093-32.427-55.040c53.333-30.72 120.32-56.32 198.4-60.16v74.667h22.187v-75.093c2.987 0 5.547 0 8.533 0 65.28 1.28 128.427 17.493 189.013 47.787l-36.693 68.267 19.627 10.667 36.693-68.267c26.88 14.933 52.907 32.427 78.507 53.333l-158.293 256z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["isTooLittle"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 349,
+ "id": 68,
+ "name": "isTooLittle",
+ "prevSize": 32,
+ "code": 59724
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 71
+ },
+ {
+ "icon": {
+ "paths": [
+ "M593.067 827.733v-29.867l8.533-12.8c42.667 38.4 102.4 59.733 166.4 59.733 140.8 0 251.733-115.2 251.733-251.733 0-140.8-115.2-251.733-251.733-251.733-140.8 0-251.733 115.2-251.733 251.733 0 64 21.333 119.467 59.733 166.4l-12.8 8.533h-29.867l-192 196.267 59.733 59.733 192-196.267zM772.267 418.133c98.133 0 174.933 76.8 174.933 174.933s-76.8 174.933-174.933 174.933c-98.133 0-174.933-76.8-174.933-174.933-4.267-93.867 76.8-174.933 174.933-174.933z",
+ "M460.8 849.067v0-4.267z",
+ "M0 0h102.4v849.067h-102.4v-849.067z",
+ "M1024 371.2v-371.2h-102.4v290.133c38.4 21.333 72.533 46.933 102.4 81.067z",
+ "M456.533 729.6c-17.067-42.667-25.6-85.333-25.6-132.267 0-51.2 12.8-93.867 29.867-136.533v-460.8h-153.6v849.067h29.867l119.467-119.467z",
+ "M204.8 0h51.2v849.067h-51.2v-849.067z",
+ "M772.267 256c17.067 0 34.133 0 46.933 4.267v-260.267h-51.2l4.267 256c-4.267 0-4.267 0 0 0z",
+ "M665.6 273.067v-273.067h-102.4c0 0 0 170.667 0 328.533 29.867-25.6 64-42.667 102.4-55.467z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["item"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 350,
+ "id": 69,
+ "name": "item",
+ "prevSize": 32,
+ "code": 59725
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 72
+ },
+ {
+ "icon": {
+ "paths": [
+ "M961.28 384.853c0-212.48-172.373-384.853-384.853-384.853s-384.427 172.373-384.427 384.853c0 26.88 3.413 52.907 7.68 77.653-75.52 0-136.96 61.44-136.96 136.96v159.573c0 75.52 61.44 136.96 136.96 136.96h23.893c-1.707 17.92-5.973 38.4-14.507 61.013-7.68 19.2-2.133 42.24 14.080 55.040 9.813 7.68 20.48 11.947 32.427 11.947 8.533 0 16.213-2.133 24.747-6.4 55.040-31.147 101.12-81.92 132.693-122.88h55.040c72.107 0 131.413-55.893 136.96-127.147 199.253-14.080 356.267-180.053 356.267-382.72zM855.893 556.373c-26.027-10.667-52.907-20.48-79.787-28.16 7.68-36.693 12.8-75.52 14.080-116.48h113.067c-4.267 53.76-21.333 102.4-47.36 144.64zM855.893 212.48c26.027 43.093 43.093 91.733 47.36 144.64h-113.067c-2.133-40.96-6.4-79.787-14.080-116.48 26.88-8.96 53.76-17.493 79.787-28.16zM820.48 165.12c-19.2 7.68-38.827 14.080-60.16 19.2-11.947-37.547-28.16-71.253-46.507-98.133 40.533 19.627 77.227 46.507 106.667 78.933zM605.867 62.72c37.547 16.213 75.52 63.573 98.987 134.827-32.427 5.547-64.853 8.533-98.987 10.667 0 0 0-145.493 0-145.493zM605.867 264.96c38.827-1.28 77.653-5.547 114.347-11.947 6.4 31.147 11.947 65.707 12.8 103.68h-127.147v-91.733zM605.867 413.013h127.147c-1.28 37.547-6.4 72.107-12.8 103.68-36.693-6.4-75.52-10.667-114.347-11.947 0-0.427 0-91.733 0-91.733zM425.813 461.227c-2.133-16.213-3.413-32.427-4.267-49.493h127.147v74.24c-22.613-16.213-49.493-26.027-79.787-26.027h-43.093v1.28zM548.693 355.84h-127.147c1.28-37.547 6.4-72.107 12.8-103.68 36.693 6.4 75.52 10.667 114.347 11.947 0 0 0 91.733 0 91.733zM548.693 62.72v145.493c-34.56-1.28-66.987-5.547-98.987-10.667 24.747-70.4 61.013-119.040 98.987-134.827zM440.747 86.187c-18.347 28.16-34.56 61.44-46.507 98.133-20.48-5.547-40.96-11.947-60.16-19.2 29.013-32.427 65.707-59.307 106.667-78.933zM298.667 212.48c26.027 10.667 52.907 20.48 80.64 28.16-8.533 36.693-12.8 75.52-14.080 116.48h-113.92c4.267-53.333 21.333-102.827 47.36-144.64zM364.373 413.013c1.28 17.067 2.133 33.28 3.413 49.493h-107.947c-4.267-16.213-7.68-32.427-8.533-49.493h113.067zM548.693 757.76c0 44.373-35.413 79.787-79.787 79.787h-69.12c-8.533 0-17.067 4.267-22.613 11.947-20.48 28.16-59.307 75.52-105.813 107.947 10.667-36.693 11.947-69.12 10.667-91.733-1.28-14.933-12.8-26.88-28.16-26.88h-52.48c-44.373 0-79.787-35.413-79.787-79.787v-160.427c0-44.373 35.413-79.787 79.787-79.787h267.52c44.373 0 79.787 35.413 79.787 79.787v159.147zM605.867 706.133v-107.947c0 0 0 0 0-1.28v-36.693c34.56 1.28 66.987 4.267 98.987 10.667-23.467 70.4-61.44 119.040-98.987 135.253zM713.387 682.24c18.347-28.16 34.56-60.16 46.507-98.133 20.48 5.547 40.96 11.947 60.16 19.2-29.013 32.853-65.707 59.733-106.667 78.933z",
+ "M442.88 593.92h-215.467c-16.213 0-28.16 12.8-28.16 28.16 0 14.933 12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z",
+ "M442.88 701.867h-215.467c-16.213 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h215.467c16.213 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["languaje"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 351,
+ "id": 70,
+ "name": "languaje",
+ "prevSize": 32,
+ "code": 59760
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 73
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 145.067h1024v149.333h-1024v-149.333zM0 435.2h1024v149.333h-1024v-149.333zM0 729.6h1024v149.333h-1024v-149.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["lineas"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 352,
+ "id": 71,
+ "name": "lines",
+ "prevSize": 32,
+ "code": 59726
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 74
+ },
+ {
+ "icon": {
+ "paths": [
+ "M870.4 102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h716.8c55.467 0 102.4-46.933 102.4-102.4v-716.8c0-55.467-46.933-102.4-102.4-102.4zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2 21.333-51.2 51.2-51.2zM614.4 819.2h-358.4v-102.4h358.4v102.4zM768 614.4h-512v-102.4h512v102.4zM768 409.6h-512v-102.4h512v102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["linesprepaired"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 353,
+ "id": 72,
+ "name": "linesprepaired",
+ "prevSize": 32,
+ "code": 59727
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 75
+ },
+ {
+ "icon": {
+ "paths": [
+ "M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z",
+ "M440.736 616.544l49.92 49.92-91.744 92.16h361.824v71.264h-361.376l91.744 91.744-49.92 50.336-177.92-177.504z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["link-to-corrected"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 415,
+ "id": 73,
+ "name": "link-to-corrected",
+ "prevSize": 32,
+ "code": 59697
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 76
+ },
+ {
+ "icon": {
+ "paths": [
+ "M108.8 300.8c0-85.344 69.12-154.464 154.464-154.464h199.264v-94.304h-199.264c-137.376 0-248.736 111.36-248.736 248.736s111.36 248.736 248.736 248.736h199.264v-94.72h-199.264c-85.344 0.416-154.464-69.12-154.464-154.016zM312.736 350.72h398.080v-99.84h-398.080v99.84zM760.736 52.064h-199.264v94.72h199.264c84.896 0 154.464 69.12 154.464 154.464s-69.12 154.464-154.464 154.464h-199.264v94.72h199.264c137.376 0 248.736-111.36 248.736-248.736s-111.36-249.6-248.736-249.6z",
+ "M583.264 616.544l-49.92 49.92 91.744 92.16h-361.824v71.264h361.376l-91.744 91.744 50.336 50.336 177.504-177.504z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["link-to-correcting"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 416,
+ "id": 74,
+ "name": "link-to-correcting",
+ "prevSize": 32,
+ "code": 59716
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 77
+ },
+ {
+ "icon": {
+ "paths": [
+ "M405.333 716.8l81.067 81.067 281.6-285.867-285.867-285.867-76.8 81.067 145.067 149.333h-550.4v115.2h550.4l-145.067 145.067zM908.8 0h-793.6c-64 0-115.2 51.2-115.2 115.2v226.133h115.2v-226.133h797.867v797.867h-797.867v-230.4h-115.2v226.133c0 64 51.2 115.2 115.2 115.2h797.867c64 0 115.2-51.2 115.2-115.2v-793.6c-4.267-64-55.467-115.2-119.467-115.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["logout"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 354,
+ "id": 75,
+ "name": "logout",
+ "prevSize": 32,
+ "code": 59763
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 78
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.067 465.067c0-17.067 12.8-29.867 29.867-29.867s29.867 12.8 29.867 29.867c0 17.067-12.8 29.867-29.867 29.867s-29.867-12.8-29.867-29.867zM614.4 635.733c21.333 0 38.4-17.067 38.4-38.4s-17.067-38.4-38.4-38.4c-21.333 0-38.4 17.067-38.4 38.4 0 17.067 17.067 38.4 38.4 38.4zM473.6 345.6c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6-25.6 12.8-25.6 25.6c0 17.067 12.8 25.6 25.6 25.6zM802.133 657.067v4.267c-4.267 157.867-132.267 285.867-290.133 285.867s-285.867-128-290.133-285.867v-4.267h580.267zM584.533 721.067c0-17.067-12.8-29.867-29.867-29.867s-29.867 12.8-29.867 29.867 12.8 29.867 29.867 29.867c17.067 0 29.867-12.8 29.867-29.867zM401.067 695.467c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933zM456.533 605.867c25.6 0 46.933-21.333 46.933-46.933s-21.333-46.933-46.933-46.933c-25.6 0-46.933 21.333-46.933 46.933s21.333 46.933 46.933 46.933zM878.933 657.067c0 200.533-162.133 366.933-366.933 366.933s-366.933-162.133-366.933-366.933c0-136.533 72.533-260.267 192-324.267v-187.733c-21.333-4.267-38.4-21.333-38.4-42.667v-59.733c0-25.6 21.333-42.667 42.667-42.667h332.8c25.6 0 42.667 21.333 42.667 42.667v55.467c0 21.333-17.067 42.667-38.4 42.667v192c123.733 68.267 200.533 192 200.533 324.267zM840.533 657.067c0-128-76.8-243.2-192-298.667h-4.267v-256h34.133c4.267 0 4.267-4.267 4.267-4.267v-55.467c0-4.267-4.267-4.267-4.267-4.267h-332.8c-4.267 0-8.533 4.267-8.533 4.267v55.467c0 4.267 4.267 4.267 4.267 4.267h34.133v256h-4.267c-115.2 51.2-192 170.667-192 298.667 0 179.2 145.067 328.533 328.533 328.533s332.8-145.067 332.8-328.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["mana"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 355,
+ "id": 76,
+ "name": "mana",
+ "prevSize": 32,
+ "code": 59728
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 79
+ },
+ {
+ "icon": {
+ "paths": [
+ "M981.333 234.667v618.667c0 93.867-76.8 170.667-170.667 170.667h-311.467c-46.933 0-89.6-17.067-119.467-51.2l-337.067-341.333c0 0 55.467-51.2 55.467-55.467 8.533-8.533 21.333-12.8 34.133-12.8 8.533 0 17.067 4.267 25.6 8.533 0 0 183.467 106.667 183.467 106.667v-507.733c0-34.133 29.867-64 64-64s64 29.867 64 64v298.667h42.667v-405.333c0-34.133 29.867-64 64-64s64 29.867 64 64v405.333h42.667v-362.667c0-34.133 29.867-64 64-64s64 29.867 64 64v362.667h42.667v-234.667c0-34.133 29.867-64 64-64s64 29.867 64 64z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["mandatory"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 356,
+ "id": 77,
+ "name": "mandatory",
+ "prevSize": 32,
+ "code": 59729
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 80
+ },
+ {
+ "icon": {
+ "paths": [
+ "M487.253 870.827c-9.387-20.907-18.347-40.96-27.733-61.013-1.28-2.133-3.413-5.12-5.547-5.973-39.68-13.653-80.213-23.467-122.88-14.080-21.333 4.693-40.107 15.36-54.613 32-2.56 2.987-4.267 8.107-4.267 12.373-0.427 15.36 0 30.72 0 46.080 0 5.973 0.427 9.387 6.4 12.8 29.013 16.64 41.387 49.067 31.573 80.213s-39.68 49.92-73.387 46.507c-29.867-2.987-55.467-29.013-58.88-59.307-3.413-32.427 14.933-61.867 46.080-72.533 7.253-2.56 8.96-5.973 9.387-12.8 4.693-65.707-15.787-125.013-50.347-179.2-30.293-47.787-62.72-93.867-93.013-141.653-38.827-61.44-68.693-126.72-82.347-198.827-16.213-83.627-7.68-162.133 43.947-232.107 43.52-59.307 103.68-93.013 174.080-108.8 104.107-23.467 202.667-5.973 296.533 42.667 23.467 12.373 46.080 27.307 68.267 42.24 52.053 34.987 108.8 54.613 171.947 54.187 28.587 0 56.32-5.12 81.493-19.2 11.52-6.4 21.76-14.933 32-23.040 8.96-7.253 11.947-16.213 9.813-29.013-5.973-35.413 21.333-69.973 58.453-75.947 36.267-5.973 71.68 19.2 78.507 56.747 6.827 35.413-16.64 71.68-52.053 80.213-20.907 5.12-40.107 0-58.027-11.52-20.053 18.773-42.24 34.56-53.76 61.013-12.373 29.013-29.013 55.893-40.96 84.907-18.347 43.52-12.8 85.333 15.36 123.733 3.84 5.547 7.68 7.68 14.080 4.693 4.693-2.133 9.387-3.413 14.080-4.693 16.213-4.267 25.173-10.24 25.6-31.147 0-35.413 34.133-61.867 71.253-60.16 35.413 1.707 63.147 32 63.147 68.693 0 36.267-29.013 66.133-64.427 67.413-16.64 0.427-32-3.84-44.8-14.507-5.547-4.693-9.387-3.84-14.933-1.707-12.373 5.12-24.32 9.813-37.12 13.227-8.96 2.56-15.36 7.253-20.907 14.933-51.2 71.253-73.387 151.467-72.533 238.933 0 2.987 0.853 6.4 2.987 8.533 11.947 13.653 24.32 26.88 36.693 40.107 20.48-14.080 39.253-18.347 59.733-12.373 32 9.387 50.773 41.387 43.947 74.667-6.4 31.147-38.4 53.76-69.12 49.493-34.56-5.12-58.453-33.28-55.467-67.413 0.853-8.96-1.28-14.933-7.68-20.48-6.827-5.973-13.227-11.947-18.773-18.773-10.24-12.373-22.187-15.787-38.4-14.933-55.040 3.84-110.507 5.973-163.84 23.467-21.76 7.253-42.24 16.64-59.733 32.427 9.387 22.613 18.347 45.227 27.733 66.987 1.28 2.56 5.973 4.267 9.387 5.12 31.147 7.68 52.053 33.707 52.053 64.853s-20.907 57.6-50.773 64.853c-30.293 7.253-61.44-7.253-75.093-35.413s-6.4-61.013 18.347-81.493c2.133-1.707 4.693-3.413 8.533-6.4zM573.013 226.133c0 0.853-0.853 2.133-0.853 2.987 0 29.013 0 58.027 0.853 87.040 0 3.413 2.56 7.68 5.12 9.387 19.627 15.36 39.68 30.293 60.16 44.8 6.827 5.12 14.507 8.533 21.333 12.8 0-31.573 0-62.293 0-93.013 0-2.133-1.707-4.693-3.413-5.973-27.307-19.2-55.040-38.4-83.2-58.027zM636.16 542.293c-8.107 14.080-16.213 28.587-23.893 42.24 39.253 28.587 76.8 55.893 113.92 82.773 4.267-29.867 8.533-58.88 12.8-87.467-33.707-12.373-67.84-24.747-102.827-37.547zM697.173 695.040c-37.973-26.88-74.24-52.48-110.933-78.080-2.133-1.28-5.547-1.707-7.68-0.853-17.493 7.68-34.987 15.36-50.347 22.613 17.067 23.467 33.707 46.080 50.347 69.12 1.28 1.707 5.12 2.56 7.253 2.133 35.84-4.693 71.68-9.387 110.933-14.933zM561.067 365.653c-11.52 19.2-23.467 39.253-35.84 60.16 32.427 21.333 63.573 41.813 95.573 62.72 12.8-22.187 23.893-41.813 34.133-60.587-31.573-21.333-62.293-41.813-93.867-62.72zM699.307 188.16c0 23.893 0 46.933 0 69.973 0 2.133 2.56 5.547 4.693 5.973 20.48 6.4 41.387 11.947 62.293 17.92 5.547 1.707 7.68-1.28 9.813-6.827 6.827-18.347 14.507-36.267 22.187-54.187 4.693-11.093 11.093-21.333 17.493-33.707-40.107 8.533-78.933 7.68-116.48 0.853zM433.493 116.48c-0.853 0.853-1.707 1.707-2.987 2.56 8.107 30.72 16.213 61.44 24.32 91.733 0.853 3.413 3.84 6.827 6.4 9.387 21.333 19.627 42.667 39.253 64 58.88 1.707 1.707 4.267 2.987 6.827 5.12 0-30.293 0-59.307 0-87.893 0-2.56-1.28-5.973-3.413-7.253-31.573-24.32-63.573-48.213-95.573-72.107zM656.213 506.88c32.427 11.52 63.573 23.040 93.867 33.707 14.507-29.44 27.307-56.32 40.96-84.053-31.573 1.28-62.72-3.413-92.587-12.8-2.133-0.427-6.4 1.28-7.253 2.987-11.52 19.2-22.187 38.827-34.56 60.16zM452.693 267.093c-12.8 20.48-25.173 40.107-37.973 60.587 26.027 23.893 52.053 47.787 78.933 72.107 12.8-21.76 24.747-41.813 37.12-61.867-26.453-23.893-52.053-47.36-78.080-70.827zM284.587 258.133c-9.387 15.787-19.2 32.853-28.587 50.347-1.28 2.133 0 6.827 1.707 8.96 11.947 14.080 24.32 28.16 37.12 41.387 10.667 11.093 21.76 20.907 33.28 32 12.373-19.627 23.893-38.4 35.84-57.173-26.453-25.6-52.48-50.347-78.933-75.52zM766.72 324.267c-22.187-5.12-43.947-9.813-64.427-14.507 0 29.013 0 58.453 0 87.467 0 2.133 2.133 5.547 3.84 6.4 28.587 10.24 57.6 14.933 87.467 12.373-6.4-15.36-14.080-29.867-18.347-44.8-4.693-15.36-5.973-31.147-8.96-46.507zM386.987 296.533c6.827-11.093 14.080-22.187 21.333-33.707 14.507-23.467 14.933-23.893-6.4-41.387s-43.52-34.56-65.707-52.053c-10.24 17.493-19.2 33.28-28.587 49.493 26.88 26.027 52.907 52.053 79.36 77.653zM472.32 435.627c-27.307-24.32-53.333-47.787-79.787-72.107-11.093 17.92-22.187 35.413-33.28 53.76 29.44 20.907 58.027 41.387 87.040 62.293 9.387-15.787 17.92-29.867 26.453-44.373zM475.307 754.347c21.333-11.52 42.24-22.613 64-34.133-13.227-22.613-31.573-41.813-52.053-59.307-1.28-1.28-4.267-1.707-5.547-1.28-18.347 8.107-36.693 16.213-55.040 24.32 17.067 24.32 32.853 47.36 48.213 69.973zM479.573 501.333c32.853 20.907 64.853 41.387 98.133 62.293 8.107-14.080 15.36-26.88 22.613-39.253-32.853-21.333-64.427-41.813-96.427-62.72-7.68 13.227-15.787 26.027-23.893 40.107zM393.387 543.147c32.427 22.613 63.147 44.373 94.293 65.707 1.707 1.28 4.693 1.28 6.827 0.853 15.36-6.827 30.72-13.653 47.787-21.333-32.853-20.907-64-40.96-95.147-60.587-1.707-1.28-4.693-0.853-6.827 0-15.36 5.12-30.293 10.24-46.507 15.36zM164.267 138.24c-0.853 0.853-1.707 1.28-2.56 2.133 15.787 48.213 37.12 93.44 66.133 136.96 10.24-17.493 19.627-34.133 29.867-52.053-31.147-29.44-62.293-58.027-93.013-87.040zM186.027 352.853c14.507 27.307 33.28 50.347 53.76 71.68 1.707 1.707 5.547 2.133 7.68 1.707 14.080-4.693 28.587-9.813 42.24-14.933-21.333-23.893-42.667-46.933-63.573-69.973-1.707-1.707-5.973-2.56-8.107-1.707-10.24 3.84-20.48 8.533-31.573 13.227zM401.067 498.347c-24.747-18.773-48.213-36.693-71.68-54.613-1.28-1.28-4.267-2.133-5.973-1.28-15.36 5.12-30.72 10.667-49.067 17.493 25.6 18.773 49.067 36.267 72.96 53.333 1.707 1.28 5.547 1.707 7.68 0.853 14.933-4.693 29.44-9.813 46.080-15.36zM449.28 630.187c-31.147-20.907-61.013-39.68-89.173-60.587-13.653-10.24-25.173-9.387-38.4-1.28 26.027 27.733 52.48 55.467 78.933 83.627 15.36-6.827 31.147-14.080 49.067-22.187zM657.493 238.507c0-19.2 0-35.413 0-52.053 0-6.827-2.133-9.387-8.533-12.373-23.467-10.667-46.080-22.187-69.12-33.707-2.56-1.28-4.693-2.133-8.107-3.84 0 11.093 0 20.48 0 30.293 0 2.56 1.28 5.973 3.413 7.253 26.88 21.333 53.76 42.24 82.347 64.427zM226.987 584.107c23.467 24.747 45.653 47.787 68.267 71.253 1.28 1.28 2.987 2.987 4.267 2.987 16.64 0 32.853 0 52.053 0-25.173-26.027-48.213-49.92-71.68-73.387-1.707-1.707-5.12-2.987-7.253-2.987-14.933 0-29.867 1.28-45.653 2.133zM74.24 366.080l-3.84 2.56c8.96 22.613 18.347 45.227 27.733 67.84 0.853 2.133 3.84 5.12 5.973 5.12 17.92 1.707 35.84 2.987 54.187 4.267-12.8-23.467-24.747-45.653-36.693-67.84-0.853-1.707-2.987-2.987-5.12-3.413-13.653-2.987-27.733-5.973-41.813-8.96zM264.107 776.96c15.787-8.107 32.427-17.067 50.773-26.027-10.667-15.36-21.333-31.573-32.427-46.933-1.28-2.133-4.267-4.267-6.4-4.693-14.080 0-28.16 0-42.667 0 10.667 26.88 21.333 52.907 31.147 78.080zM131.84 484.267c-0.427 0.853-1.28 2.133-1.707 2.987 17.067 17.92 34.133 36.267 51.2 54.187 1.28 1.28 3.413 2.987 5.547 2.987 16.64 0 33.707-0.853 52.053-1.707-16.213-18.347-30.293-34.56-44.8-50.773-1.707-1.707-3.84-3.413-6.4-3.413-18.773-1.707-37.547-2.987-56.32-4.267zM401.92 167.68c-6.827-25.6-12.8-49.493-19.2-73.387-0.427-1.707-1.28-3.84-2.56-4.267-17.067-6.827-34.56-13.227-52.053-19.627-0.427 0.853-1.28 2.133-1.707 2.987 4.693 16.64 9.387 33.28 14.507 49.92 0 1.28 1.28 2.56 2.56 3.413 19.2 13.227 38.4 26.88 58.88 40.96zM426.24 751.787c-12.8-17.067-25.173-33.28-37.547-49.92-0.853-1.28-2.56-2.987-4.267-2.987-17.92 0-35.84 0-54.613 0 8.533 15.36 16.213 29.013 23.893 42.667 1.28 2.133 3.84 4.267 6.4 4.693 21.333 2.133 42.24 3.84 65.707 5.973zM301.227 149.333c-34.133-19.2-68.693-33.28-108.373-39.68 29.44 27.307 57.173 52.48 85.76 78.933 7.68-12.8 14.933-25.6 22.613-39.253zM531.627 136.96c0-5.547-0.427-10.667 0-15.787 1.28-9.813-1.707-16.213-11.52-20.053-30.293-12.8-60.587-26.027-91.307-38.827-4.267-1.707-8.533-2.133-14.080-3.413 39.253 26.453 77.227 52.053 116.48 78.080zM67.84 323.84c11.52 2.56 22.187 4.693 31.147 6.4-6.4-39.68-12.8-78.933-19.2-115.627-8.96 33.707-13.653 70.4-12.373 109.227zM241.493 656.64c-23.893-23.040-47.36-46.080-71.253-68.267-2.133-2.133-6.4-1.707-12.373-2.987 12.373 18.347 24.32 32.427 32.853 49.067 10.667 21.333 25.6 29.867 50.773 22.187zM197.12 304.64c-15.36-26.453-29.867-51.627-45.227-78.507 1.707 32 6.4 61.44 17.92 90.027 9.813-4.267 18.347-7.68 27.733-11.52zM290.987 97.28c-2.56-9.387-5.12-18.347-7.68-26.88-0.853-2.133-3.84-4.693-5.547-4.693-19.627 0-38.827 1.28-57.6 7.253 23.467 8.107 46.507 16.213 71.253 24.747zM301.227 530.773c-20.48-16.64-40.96-32.853-61.44-49.067 13.227 16.213 27.733 31.147 41.387 46.933 6.827 7.68 12.373 7.68 20.053 2.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["net"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 357,
+ "id": 78,
+ "name": "net",
+ "prevSize": 32,
+ "code": 59730
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 81
+ },
+ {
+ "icon": {
+ "paths": [
+ "M819.2 0h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h622.933c55.467 0 102.4-46.933 102.4-102.4v-819.2c0-55.467-46.933-102.4-102.4-102.4zM358.4 785.067h-102.4v-102.4h503.467v102.4h-401.067zM256 580.267v-102.4h503.467v102.4h-503.467zM759.467 375.467h-503.467v-102.4h503.467v102.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["newalbaran"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 358,
+ "id": 79,
+ "name": "newalbaran",
+ "prevSize": 32,
+ "code": 59732
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 82
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c-196.267 0-358.4 162.133-358.4 358.4 0 268.8 358.4 665.6 358.4 665.6s358.4-396.8 358.4-665.6c0-196.267-162.133-358.4-358.4-358.4zM512 486.4c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["niche"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 360,
+ "id": 80,
+ "name": "niche",
+ "prevSize": 32,
+ "code": 59733
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 83
+ },
+ {
+ "icon": {
+ "paths": [
+ "M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z",
+ "M555.947 439.893h116.907c19.627 0 35.413 15.787 35.413 35.413s-15.787 35.413-35.413 35.413h-46.080l52.053 52.053c14.933 2.56 26.453 14.080 29.013 29.013l145.92 145.92c4.267-9.813 6.827-20.48 6.827-32v-355.413c0-20.48-8.107-40.533-22.613-54.613l-188.16-187.307c-14.933-14.933-34.56-23.040-55.467-23.040h-240.213c-42.24 0-76.373 33.707-77.653 75.52l279.467 279.040zM587.947 143.36l214.613 213.333h-175.36c-21.333 0-38.827-17.493-38.827-38.827v-174.507z",
+ "M353.707 783.36h313.6l-150.187-150.187h-58.027c-19.627 0-35.413-15.787-35.413-35.413 0-15.787 10.24-29.013 24.32-33.707l-171.52-171.52-0.427 313.173c0 43.093 34.987 77.653 77.653 77.653z",
+ "M627.2 861.013h-389.973c-21.333 0-38.827-17.493-38.827-38.827v-465.493c0-21.333-17.493-38.827-38.827-38.827s-38.827 17.493-38.827 38.827v504.32c0 42.667 34.987 77.653 78.080 77.653h428.373c21.333 0 38.827-17.493 38.827-38.827s-17.493-38.827-38.827-38.827z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["no036"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 361,
+ "id": 81,
+ "name": "no036",
+ "prevSize": 32,
+ "code": 59734
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 84
+ },
+ {
+ "icon": {
+ "paths": [
+ "M957.013 1012.48l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52 10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52zM346.88 231.253c17.493-10.24 37.12-15.36 56.747-20.053 63.573-14.507 128.427-16.213 193.28-10.667 34.56 2.987 69.12 8.107 102.4 19.627 13.227 4.693 26.027 11.52 37.973 18.773 7.68 4.693 8.107 8.533 0 13.227-11.947 7.253-24.747 14.080-37.973 18.773-35.84 12.8-73.387 17.92-110.933 20.48-20.053 1.28-40.107 1.707-60.587 2.56-45.653-1.28-90.88-5.12-135.253-17.067l55.893 55.893c29.867 3.413 59.733 4.693 90.027 4.693 70.827-0.427 140.373-7.68 207.36-37.12-1.28 19.627 2.56 38.827-2.987 57.6-0.853 3.413-4.267 6.4-7.253 8.533-13.227 9.813-28.16 15.36-43.947 20.053-37.12 11.093-75.52 16.213-113.92 18.773-18.773 1.28-37.12 1.707-55.893 1.28l43.947 43.947c61.013-2.133 120.747-11.947 179.2-36.267 0 15.36 0 31.147 0 46.933-18.347 1.28-36.267 2.56-54.187 4.693-31.147 3.413-62.293 8.107-91.733 18.347l36.267 36.267c54.187-12.8 109.227-15.36 164.693-13.227 40.96 1.707 81.92 5.973 121.6 17.067 16.64 4.693 33.28 10.24 47.787 20.053 11.093 7.68 11.093 10.667 0 17.92-18.773 12.8-40.107 18.773-61.867 24.32-45.227 10.667-90.88 14.507-147.627 14.507-14.080 0-29.44-0.427-45.653-1.707l46.080 46.080c4.267 0 8.107 0 12.373 0 70.4-0.427 139.52-7.253 205.653-36.267 0 17.067 0 33.707 0 50.347 0 6.827-4.267 11.52-9.813 15.36-16.64 11.52-35.84 17.493-55.040 22.613-28.587 7.253-57.6 11.52-86.613 14.080l40.533 40.533c37.973-5.12 75.52-14.507 111.787-31.147 0 18.773 0.427 37.12-0.427 55.467 0 2.987-2.987 7.253-5.547 9.387-8.96 5.973-18.347 11.52-28.16 15.787-6.827 2.987-14.080 5.12-21.333 7.253l34.987 34.987c14.080-5.547 27.733-12.373 40.107-21.76 16.213-12.373 24.747-28.587 24.747-49.92-0.427-70.4 0-141.227 0-211.627 0-18.773-6.4-35.413-21.76-46.507-11.947-8.96-25.173-16.64-38.827-22.613-39.253-16.213-80.64-23.040-122.453-26.88-16.64-1.707-32.853-2.133-50.347-3.413 0-2.987 0-5.973 0-8.533 0-65.707-0.427-131.413 0-197.12 0-18.347-6.827-33.28-19.627-45.227-8.533-8.107-18.773-14.507-29.44-20.053-30.72-15.36-64.427-23.040-98.133-28.16-69.12-10.667-138.667-11.093-208.213-1.28-33.28 4.693-65.707 11.947-96.427 25.6-8.533 3.84-16.64 8.107-23.893 13.227l32.427 31.573zM754.773 870.4c-3.413 0-6.827 0-10.24-0.427-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-96-11.093-178.773-83.627-203.947-177.92-37.547-141.227 52.907-282.027 197.12-306.773 5.973-0.853 11.52-1.707 17.493-2.133l45.227 45.227c-7.68-0.853-15.787-1.28-23.893-1.28-110.507 0-200.107 90.027-200.107 200.533 0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-8.107-0.427-15.787-1.28-23.467l43.947 43.947c-0.427 8.533-0.853 17.067-1.28 25.6 8.96 0 17.92 0 26.88 0l112.64 112.64c-19.2-4.693-37.973-10.667-56.32-18.347 0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 9.813 1.28 20.053 2.56 29.867 3.84l47.787 46.933zM524.373 675.84c-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.56 59.307 5.12 88.32 7.68 0-23.893 0-46.080 0-69.12zM184.32 525.653c26.027-37.973 73.387-53.333 116.907-38.4 4.693 1.707 9.387 2.56 14.080 2.133 10.24-1.28 17.493-9.387 18.347-19.2 1.28-10.667-4.267-19.627-15.36-23.893-69.547-27.307-151.893 5.973-183.040 74.24-3.84 8.107-7.253 12.373-17.067 11.947-11.093-0.853-19.627 8.533-20.907 19.2-0.853 11.52 5.547 20.907 16.64 23.893 2.133 0.427 4.267 0.853 6.827 1.28 0 5.973 0 11.52 0 17.493-1.707 0.427-2.987 0.427-4.693 0.853-12.373 2.133-20.053 11.52-19.2 23.893 0.853 11.093 9.813 19.627 21.76 20.053 2.56 0 5.12 0.427 7.68 0 4.267-0.427 6.4 0.853 8.107 5.12 9.813 22.187 24.747 40.96 43.947 55.040 43.093 31.573 89.6 37.973 139.947 20.48 7.68-2.56 12.8-7.68 14.507-15.787 2.133-8.533 0-16.213-6.827-22.187-7.253-6.4-15.36-6.827-24.32-3.84-43.093 13.653-79.787 3.84-110.933-28.587-2.987-2.987-5.12-6.4-8.533-11.093 3.84 0 6.4 0 8.533 0 30.72 0 61.013 0 91.733 0 11.093 0 19.2-5.547 22.187-14.507 5.12-14.933-5.547-29.867-22.187-29.867-36.267 0-72.107 0-108.373 0-2.56 0-5.12 0-8.107 0 0-6.4 0-12.373 0-18.347 3.413 0 5.973 0 8.96 0 39.253 0 78.507 0 117.76 0 11.947 0 20.907-6.827 23.040-17.067 3.413-14.080-7.253-27.307-22.187-27.307-35.84 0-71.253 0-107.093 0-2.133 0-4.267 0-7.253 0 2.987-1.707 3.84-3.413 5.12-5.547z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["noPayMethod"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 362,
+ "id": 82,
+ "name": "noPayMethod",
+ "prevSize": 32,
+ "code": 59736
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 85
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.4 0h-413.867c-59.733 0-106.667 46.933-106.667 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h627.2c55.467 0 102.4-46.933 102.4-102.4v-614.4l-311.467-307.2zM563.2 358.4v-281.6l290.133 281.6h-290.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["notes"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 363,
+ "id": 83,
+ "name": "notes",
+ "prevSize": 32,
+ "code": 59737
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 86
+ },
+ {
+ "icon": {
+ "paths": [
+ "M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z",
+ "M873.387 757.333c40.107-32.427 65.28-81.92 65.28-138.667 0-92.587-71.253-170.667-163.413-177.92-24.747-120.747-131.413-213.333-263.253-213.333-48.64 0-94.293 12.8-133.547 34.987l494.933 494.933z",
+ "M256.853 372.907c-98.133 20.907-171.52 106.24-171.52 210.347 0 117.333 96 213.333 213.333 213.333h381.867l-423.68-423.68z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["noweb"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 364,
+ "id": 84,
+ "name": "noweb",
+ "prevSize": 32,
+ "code": 59738
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 87
+ },
+ {
+ "icon": {
+ "paths": [
+ "M721.067 418.133c-166.4 0-298.667 136.533-298.667 302.933s132.267 302.933 298.667 302.933 298.667-136.533 298.667-302.933c0-170.667-132.267-302.933-298.667-302.933zM773.12 672.427v28.16h-166.4c-0.853 6.4-1.707 13.227-1.707 20.48 0 6.827 0.427 14.080 1.707 20.48h166.4v28.16h-159.147c9.387 26.027 25.6 46.933 48.64 62.72s49.92 23.467 80.213 23.467c39.68 0 72.533-14.080 99.413-42.24l32 31.573c-15.787 17.92-34.987 32-58.453 40.96-23.040 9.387-48.213 14.080-75.947 14.080-29.013 0-55.893-5.547-80.64-16.213s-45.653-26.027-62.72-46.080c-17.067-19.627-29.013-42.667-36.267-68.693h-56.747v-28.16h52.053c-0.853-8.533-0.853-15.36-0.853-20.48s0.427-11.947 0.853-20.48h-52.053v-28.16h57.173c6.827-26.027 19.2-49.067 36.267-68.693s37.973-34.987 62.72-46.080c24.747-10.667 51.627-16.213 80.64-16.213 27.733 0 53.333 4.693 75.947 14.080 23.040 9.387 42.24 23.040 58.027 40.533l-32 31.573c-26.453-27.733-59.733-41.813-99.413-41.813-30.293 0-57.173 7.68-80.213 23.467s-39.253 36.693-48.64 62.72h159.147z",
+ "M874.667 149.333c-98.133-98.133-226.133-149.333-362.667-149.333 0 0 0 0-4.267 0-136.533 0-260.267 55.467-358.4 149.333-98.133 98.133-149.333 226.133-149.333 362.667 0 281.6 230.4 512 512 512 8.533 0 12.8 0 21.333 0-21.333-12.8-42.667-29.867-59.733-46.933-68.267-21.333-132.267-98.133-166.4-204.8 21.333-4.267 42.667-8.533 59.733-12.8 0-12.8-4.267-25.6-4.267-38.4-21.333 0-46.933 4.267-68.267 8.533-17.067-59.733-25.6-128-29.867-196.267h153.6c8.533-12.8 17.067-29.867 29.867-42.667h-183.467c0-81.067 12.8-153.6 34.133-221.867 59.733 12.8 123.733 21.333 187.733 21.333v153.6c12.8-12.8 25.6-21.333 42.667-29.867v-119.467c68.267 0 132.267-12.8 192-25.6 8.533 29.867 17.067 64 25.6 93.867 12.8 0 29.867 4.267 42.667 4.267-8.533-38.4-17.067-76.8-25.6-110.933 42.667-12.8 81.067-25.6 110.933-42.667 59.733 72.533 98.133 166.4 106.667 260.267 17.067 17.067 29.867 38.4 42.667 55.467 0-4.267 0-12.8 0-17.067 0-136.533-55.467-264.533-149.333-362.667zM145.067 217.6c34.133 17.067 72.533 29.867 115.2 38.4-21.333 68.267-34.133 149.333-38.4 230.4h-179.2c4.267-93.867 38.4-187.733 102.4-268.8zM132.267 789.333c-51.2-72.533-85.333-162.133-89.6-256h179.2c0 76.8 12.8 145.067 29.867 209.067-42.667 12.8-85.333 29.867-119.467 46.933zM268.8 780.8c21.333 76.8 59.733 136.533 102.4 179.2-81.067-25.6-153.6-72.533-209.067-136.533 29.867-17.067 68.267-29.867 106.667-42.667zM273.067 221.867c-34.133-12.8-68.267-21.333-98.133-34.133 0-4.267 4.267-4.267 4.267-8.533 55.467-55.467 119.467-93.867 192-115.2-25.6 21.333-46.933 55.467-68.267 89.6-8.533 21.333-21.333 42.667-29.867 68.267zM490.667 251.733h-4.267c-55.467 0-115.2-8.533-174.933-21.333 12.8-21.333 21.333-38.4 29.867-55.467 42.667-76.8 93.867-119.467 149.333-132.267v209.067zM529.067 251.733v-209.067c59.733 8.533 110.933 55.467 153.6 132.267 8.533 17.067 17.067 34.133 25.6 51.2-55.467 12.8-115.2 21.333-179.2 25.6zM746.667 217.6c-8.533-21.333-17.067-42.667-29.867-59.733-21.333-38.4-42.667-68.267-68.267-89.6 76.8 17.067 140.8 55.467 196.267 110.933-25.6 12.8-59.733 25.6-98.133 38.4z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["onlinepayment-01"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 366,
+ "id": 85,
+ "name": "onlinepayment",
+ "prevSize": 32,
+ "code": 59739
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 88
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 379.733l-448-204.8 448-174.933 448 174.933-448 204.8zM46.933 204.8l448 204.8v614.4l-448-238.933v-580.267zM977.067 785.067l-448 238.933v-614.4l448-204.8v580.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["package"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 367,
+ "id": 86,
+ "name": "package",
+ "prevSize": 32,
+ "code": 59740
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 89
+ },
+ {
+ "icon": {
+ "paths": [
+ "M790.187 460.373c17.493 1.28 34.133 2.133 50.347 3.413 41.813 3.84 83.627 10.667 122.453 26.88 13.653 5.547 26.88 13.653 38.827 22.613 15.36 11.093 21.76 27.733 21.76 46.507 0 70.4-0.427 141.227 0 211.627 0 21.333-8.107 37.12-24.747 49.92-20.907 15.787-44.8 24.32-69.973 31.147-60.587 16.213-122.453 20.053-185.173 17.92-48.64-1.707-96.427-7.253-142.933-23.040-12.8-4.267-25.6-10.24-37.973-16.64-20.48-11.093-28.587-20.907-37.12-41.387-20.48-1.28-40.96-2.133-61.013-4.267-20.48-2.133-40.533-5.973-61.013-9.387-4.267-0.853-7.253 0-10.24 2.133-54.187 40.533-114.773 56.747-181.76 48.64-95.147-11.52-177.92-84.053-203.093-178.347-37.547-141.227 52.907-282.027 197.12-306.773 27.307-4.693 54.613-3.84 82.347 0.853 0-2.133 0.427-3.84 0.427-5.547-0.853-29.867-1.707-59.733-2.56-90.027-0.427-14.080 5.12-26.027 14.933-36.267 10.667-11.093 23.893-18.773 37.973-25.173 30.72-13.653 63.147-20.907 96.427-25.6 69.547-9.813 138.667-9.387 208.213 1.28 33.707 5.12 67.413 12.373 98.133 28.16 10.667 5.12 20.907 11.947 29.44 20.053 12.8 11.947 19.627 26.88 19.627 45.227-0.427 65.707 0 131.413 0 197.12-0.427 2.987-0.427 5.547-0.427 8.96zM44.373 583.68c0 110.933 89.6 200.96 200.533 200.96 110.507 0.427 200.96-90.027 200.96-200.533 0-110.933-90.027-200.96-200.96-200.96-110.507-0-200.533 90.027-200.533 200.533zM527.787 293.973c20.053-0.853 40.107-1.28 60.587-2.56 37.547-2.987 75.093-8.107 110.933-20.48 13.227-4.693 26.027-11.52 37.973-18.773 7.68-4.693 7.68-8.533 0-13.227-12.373-7.253-24.747-14.080-37.973-18.773-32.853-11.947-67.413-16.64-102.4-19.627-64.853-5.547-129.28-3.413-193.28 10.667-22.187 5.12-44.373 11.52-64 24.32-11.947 8.107-12.373 12.8 0.427 19.627 14.080 7.68 29.013 14.507 43.947 19.2 46.933 14.507 95.147 18.347 143.787 19.627zM760.32 600.32c56.747 0 102.4-3.84 147.627-14.507 21.76-5.12 43.093-11.52 61.867-24.32 11.093-7.253 11.093-10.667 0-17.92-14.507-9.813-31.147-15.36-47.787-20.053-39.68-11.093-80.213-15.787-121.6-17.067-55.467-2.133-110.933 0.427-165.12 13.653-19.627 4.693-38.827 10.667-56.32 20.907-16.213 9.813-16.213 14.507 0 23.467 11.947 6.4 24.747 12.373 37.973 16.213 49.92 15.36 101.547 19.627 143.36 19.627zM979.2 720.213c-65.707 30.293-134.827 36.693-204.8 37.12s-139.093-5.973-204.373-33.28c0 13.653 1.28 26.453-0.427 39.253-2.133 17.067 6.4 25.6 20.053 31.573 2.987 1.28 5.547 2.987 8.533 3.84 25.173 10.667 51.627 16.64 78.507 20.48 54.187 8.107 108.8 8.96 163.413 3.84 35.84-3.413 71.253-9.387 104.533-22.613 9.813-3.84 19.2-9.813 28.16-15.787 2.987-1.707 5.547-5.973 5.547-9.387 1.28-17.92 0.853-36.267 0.853-55.040zM978.773 608.427c-66.133 29.013-135.253 36.267-205.653 36.267-69.973 0.427-139.52-6.4-204.8-34.133 0 17.067 0.427 34.133 0 51.2 0 6.827 2.133 11.52 8.107 14.507 14.507 6.4 28.587 13.653 43.947 18.347 44.373 13.653 90.453 17.92 136.533 18.773 52.907 0.853 105.813-2.56 157.44-16.213 19.2-5.12 38.4-11.093 55.040-22.613 5.547-3.84 9.813-8.533 9.813-15.36-0-17.067-0.427-33.707-0.427-50.773zM745.813 299.947c-66.987 29.44-136.533 36.693-207.36 37.12-70.4 0.427-140.373-6.4-205.653-33.707 0 16.213 0 32.427 0 48.64 0 1.707 2.56 3.84 4.693 4.693 16.213 9.387 33.28 17.92 49.067 27.733 6.827 4.267 13.653 7.68 21.333 8.96 55.893 11.947 112.213 14.507 169.387 11.093 38.827-2.133 76.8-7.253 113.92-18.773 15.36-4.693 30.72-10.24 43.947-20.053 2.987-2.133 5.973-5.12 7.253-8.533 5.973-18.347 2.133-37.547 3.413-57.173zM745.387 413.44c-96 40.533-195.84 40.96-297.813 32.427 14.507 21.76 25.173 43.947 32.427 67.84 0.427 1.28 3.413 2.987 5.12 2.987 15.36 0.853 31.147 1.28 46.507 1.707 2.133 0 4.693-1.28 6.827-2.56 11.52-7.253 22.187-16.213 34.133-21.76 37.547-17.92 78.080-24.747 118.613-29.013 17.92-2.133 35.84-2.987 54.187-4.693 0-15.36 0-31.147 0-46.933zM524.373 745.387c0-24.32 0-46.933 0-69.547-15.787-0.853-30.72-1.28-45.653-2.56-4.267-0.427-5.547 0.853-7.68 4.267-9.387 17.067-19.2 34.133-28.587 50.773-1.28 2.56-3.413 4.693-6.4 8.96 30.293 2.987 58.88 5.547 88.32 8.107zM486.827 630.187c11.947 0 23.893 0 35.413 0 0-22.187 0-44.373 0-67.413-11.52 0-22.187 0-31.573 0-1.28 22.187-2.56 43.947-3.84 67.413z",
+ "M189.013 532.48c2.987 0 5.12 0 7.253 0 35.84 0 71.253 0 107.093 0 15.36 0 25.6 13.227 22.187 27.307-2.56 10.24-11.52 17.067-23.040 17.067-39.253 0-78.507 0-117.76 0-2.56 0-5.547 0-8.96 0 0 5.973 0 11.947 0 18.347 2.987 0 5.547 0 8.107 0 36.267 0 72.107 0 108.373 0 16.64 0 27.733 14.507 22.187 29.867-3.413 9.387-11.093 14.507-22.187 14.507-30.72 0-61.013 0-91.733 0-2.133 0-4.693 0-8.533 0 3.413 4.267 5.547 8.107 8.533 11.093 31.147 32 68.267 42.24 110.933 28.587 8.96-2.987 17.067-2.56 24.32 3.84 6.4 5.973 8.533 13.227 6.827 22.187-1.707 7.68-6.827 12.8-14.507 15.787-50.347 17.493-96.853 10.667-139.947-20.48-19.627-14.507-34.133-32.853-43.947-55.040-1.707-4.267-3.84-5.547-8.107-5.12-2.56 0.427-5.12 0-7.68 0-11.947-0.427-20.907-8.96-21.76-20.053-0.853-12.373 6.827-21.76 19.2-23.893 1.28-0.427 2.987-0.427 4.693-0.853 0-5.973 0-11.52 0-17.493-2.56-0.427-4.693-0.853-6.827-1.28-11.093-2.987-17.493-12.373-16.64-23.893 0.853-10.667 9.813-20.053 20.907-19.2 9.813 0.853 13.227-3.413 17.067-11.947 31.573-68.267 113.493-101.547 183.040-74.24 10.667 4.267 16.213 13.227 15.36 23.893-1.28 9.813-8.533 17.92-18.347 19.2-4.693 0.427-9.813-0.427-14.080-2.133-43.52-14.933-90.88 0.427-116.907 38.4-2.56 0.853-3.413 2.56-5.12 5.547z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["payment"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 368,
+ "id": 87,
+ "name": "payment",
+ "prevSize": 32,
+ "code": 59741
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 90
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c-230.4 0-418.133 187.733-418.133 418.133v324.267c0 76.8 64 140.8 140.8 140.8h140.8v-371.2h-187.733v-93.867c0-179.2 145.067-324.267 324.267-324.267s324.267 145.067 324.267 324.267v93.867h-187.733v371.2h187.733v46.933h-324.267v93.867h277.333c76.8 0 140.8-64 140.8-140.8v-465.067c0-230.4-187.733-418.133-418.133-418.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["pbx"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 370,
+ "id": 88,
+ "name": "pbx",
+ "prevSize": 32,
+ "code": 59742
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 91
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 388.267c-4.267-46.933-25.6-81.067-55.467-110.933-34.133-29.867-72.533-42.667-110.933-38.4 0 0-4.267 0-4.267 0 0-8.533 0-17.067-4.267-29.867-8.533-51.2-29.867-98.133-68.267-128-25.6-21.333-51.2-34.133-72.533-38.4-29.867-4.267-59.733 0-76.8 4.267-42.667 8.533-81.067 34.133-110.933 72.533-21.333-25.6-42.667-46.933-68.267-64-64-38.4-140.8-29.867-196.267 21.333-25.6 21.333-42.667 46.933-51.2 81.067-12.8 29.867-17.067 59.733-17.067 93.867-8.533 0-17.067 0-25.6 0-42.667 0-81.067 17.067-110.933 46.933-29.867 34.133-42.667 76.8-46.933 98.133-4.267 12.8-4.267 25.6-4.267 42.667 4.267 55.467 25.6 110.933 59.733 157.867 29.867 38.4 68.267 64 110.933 76.8-4.267 12.8-8.533 21.333-8.533 34.133 0 4.267-4.267 8.533-4.267 17.067-12.8 42.667-25.6 98.133 4.267 162.133 29.867 59.733 89.6 102.4 157.867 106.667 4.267 0 12.8 0 17.067 0 46.933 0 85.333-17.067 119.467-29.867 4.267 0 8.533-4.267 12.8-4.267 17.067-4.267 34.133-12.8 51.2-12.8 8.533 0 17.067 4.267 34.133 12.8s42.667 21.333 68.267 25.6c29.867 4.267 64 4.267 93.867 0 38.4-8.533 68.267-21.333 89.6-38.4 59.733-46.933 68.267-128 51.2-187.733-8.533-25.6-21.333-55.467-34.133-85.333 29.867-4.267 55.467-12.8 76.8-29.867 81.067-51.2 110.933-128 119.467-187.733 4.267-12.8 4.267-51.2 4.267-68.267zM541.867 285.867c4.267-42.667 21.333-81.067 42.667-115.2 34.133-42.667 93.867-68.267 136.533-25.6 0 0 0 0 0 0 21.333 21.333 34.133 51.2 34.133 81.067 4.267 38.4 0 72.533-17.067 106.667-17.067 38.4-38.4 68.267-76.8 89.6-46.933 25.6-102.4 8.533-119.467-42.667-4.267-29.867-4.267-68.267 0-93.867zM277.333 183.467c8.533-17.067 17.067-34.133 34.133-46.933 29.867-29.867 64-34.133 102.4-8.533 51.2 29.867 81.067 85.333 85.333 145.067 4.267 51.2-12.8 115.2-64 145.067-17.067 4.267-34.133 8.533-51.2 4.267-21.333-4.267-38.4-17.067-51.2-29.867-55.467-46.933-76.8-140.8-55.467-209.067zM123.733 546.133c-34.133-46.933-55.467-110.933-34.133-170.667 12.8-25.6 34.133-42.667 64-46.933 25.6-4.267 51.2 8.533 72.533 25.6 8.533 4.267 12.8 12.8 17.067 17.067 17.067 21.333 29.867 46.933 34.133 72.533 8.533 29.867 12.8 59.733 8.533 85.333-4.267 34.133-29.867 64-64 68.267-38.4 4.267-76.8-21.333-98.133-51.2zM755.2 883.2c-29.867 25.6-81.067 29.867-115.2 21.333-42.667-8.533-72.533-38.4-115.2-42.667-29.867 0-55.467 8.533-85.333 17.067-38.4 12.8-76.8 34.133-115.2 29.867-25.6 0-55.467-12.8-72.533-34.133-42.667-42.667-29.867-110.933-8.533-162.133 17.067-55.467 55.467-102.4 98.133-140.8 17.067-17.067 38.4-34.133 64-42.667 25.6-12.8 55.467-17.067 85.333-17.067 34.133 0 68.267 0 98.133 12.8s55.467 29.867 72.533 55.467c21.333 25.6 42.667 51.2 59.733 81.067 17.067 25.6 34.133 55.467 46.933 85.333 17.067 34.133 21.333 76.8 4.267 110.933 0 12.8-8.533 21.333-17.067 25.6zM942.933 443.733c-8.533 55.467-34.133 106.667-81.067 136.533-17.067 12.8-38.4 17.067-64 17.067-42.667 0-72.533-34.133-81.067-72.533-17.067-76.8 59.733-200.533 140.8-204.8 21.333 0 38.4 4.267 51.2 21.333 21.333 17.067 29.867 42.667 34.133 68.267-0-4.267 4.267 8.533-0 34.133z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["pets"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 371,
+ "id": 89,
+ "name": "pets",
+ "prevSize": 32,
+ "code": 59743
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 92
+ },
+ {
+ "icon": {
+ "paths": [
+ "M910.080 113.92v796.576h-796.16v-796.576h796.16zM910.080 0h-796.16c-62.72 0-113.92 51.2-113.92 113.92v796.576c0 62.304 51.2 113.504 113.92 113.504h796.576c62.72 0 113.92-51.2 113.92-113.92v-796.16c-0.416-62.72-51.616-113.92-114.336-113.92zM633.6 503.904l-170.656 220.16-121.6-147.2-170.656 219.744h682.656c0 0-219.744-292.704-219.744-292.704z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["photo"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 372,
+ "id": 90,
+ "name": "photo",
+ "prevSize": 32,
+ "code": 59744
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 93
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826.88 229.547l3.413-0.853c17.92-2.987 36.693-6.4 55.040-9.813 21.76-4.267 49.493-9.813 77.227-18.773 22.187-6.827 42.667-20.053 58.453-31.147l2.987-2.987-2.133-3.413c-0.853-1.28-1.28-2.133-2.133-2.133-24.32-25.173-54.187-54.187-87.893-77.227-60.16-40.96-119.467-60.587-180.907-59.307-67.413 1.28-125.867 27.733-175.36 78.080-26.453 27.307-47.36 59.733-60.587 96.853l-2.987 6.827-2.987-6.827c-4.693-14.507-11.947-29.44-20.907-44.373-27.307-47.787-64.853-83.2-111.36-105.387-62.72-29.867-129.28-33.28-199.68-8.96-35.413 12.373-69.547 31.147-103.68 58.453-27.307 20.907-50.347 42.24-70.4 66.133l-2.987 2.56 3.413 2.133c31.147 20.907 40.533 27.307 80.213 37.547 36.267 9.813 72.96 16.213 109.227 21.76 10.24 2.133 21.76 3.413 32 5.547 35.413 6.4 77.227 14.080 116.907 25.173h2.133v5.547h-2.987c-17.92-2.133-36.267-2.133-55.893 0-65.28 6.4-120.32 32-163.413 75.947-27.307 27.733-46.507 60.587-59.733 101.12s-17.493 86.187-12.373 139.093c2.987 32.853 9.813 64 20.053 101.12 0.853 2.133 1.28 4.693 4.693 5.547h1.28l1.28-0.853c11.947-5.547 25.173-11.947 36.693-19.627 25.173-16.213 45.227-38.4 62.72-57.173 17.92-20.053 36.267-40.96 53.76-61.44l25.6-29.867 0.853 5.547c0.853 4.693 1.28 8.96 2.133 14.080l26.453 188.587c9.813 64 20.053 128 30.72 188.16 2.987 17.493 11.093 31.147 25.6 43.093 14.080 11.093 30.72 19.627 54.187 26.453 36.693 11.093 77.227 16.213 123.307 15.36 34.987-0.853 64.853-4.267 92.587-10.24 20.907-4.693 45.227-12.373 67.413-27.733 17.493-12.373 26.453-25.173 28.587-40.96 3.413-20.053 6.4-40.96 8.96-61.44 2.133-12.373 3.413-25.6 5.547-38.4 4.267-26.453 7.68-53.76 11.947-80.213l13.227-89.6c5.547-38.4 11.093-77.227 17.493-115.627 0-2.133 0.853-3.413 0.853-5.547 0-1.28 0.853-3.413 0.853-4.693l0.853-5.547 32.853 38.4c24.32 28.587 49.92 58.453 77.227 85.76 18.773 17.92 40.533 32.853 69.547 46.080l2.133 0.853 3.413-2.987v-1.28c8.96-32.853 19.627-76.373 22.187-122.453 2.133-43.093-2.133-81.493-13.227-117.76-12.373-41.387-32.853-76.8-61.013-105.387-36.267-36.693-82.773-61.44-136.96-71.68-22.187-4.267-46.080-5.547-70.4-4.267-3.413 0-6.4 0.853-9.813 0.853l-0.853-4.693c18.773-4.693 36.693-8.96 50.773-12.373 31.147-8.533 63.147-14.080 93.867-19.627zM487.253 423.68v0 0c0.853 0 68.267 12.373 85.76-27.733 6.827-9.813 15.36-14.507 24.32-15.36v0h0.853c2.133 0 3.413 0.853 5.547 1.28 19.627 4.693 35.413 15.36 48.213 23.467 14.080 9.813 38.4 29.867 49.493 41.813l2.133 2.987-2.987 1.28c-11.947 6.4-24.32 10.24-35.413 14.080-28.587 8.533-59.733 14.080-98.133 17.493-17.92 1.28-36.267 2.133-55.893 2.133-15.36 0-30.72-0.853-46.507-1.28-49.493-2.987-89.173-9.813-124.587-22.187-6.4-2.133-13.227-4.693-19.627-8.533l-2.987-1.28 2.133-2.987c7.68-8.533 16.64-16.213 26.453-24.32 17.92-15.36 38.4-30.72 62.72-39.68 4.693-2.133 11.947-4.267 19.627-5.547 7.68 0 19.627 5.547 34.133 29.44 3.413 8.107 12.373 13.653 24.747 14.933zM211.627 174.933l-25.6-4.267c-28.587-4.693-58.027-9.387-87.040-17.067l-5.12-1.28 4.267-3.413c1.28-0.853 2.987-2.133 4.267-2.987l3.413-2.987c31.147-24.32 62.72-41.813 95.573-52.053 17.493-5.547 34.987-8.96 52.053-9.813 57.173-4.267 107.093 15.36 150.187 57.173 29.867 29.44 49.92 65.28 60.587 108.8l1.28 6.827-5.547-4.267c-35.413-25.173-75.093-37.547-113.493-48.213-44.373-11.093-90.453-18.773-134.827-26.453zM196.267 497.92l-5.547 6.4c-5.547 6.827-11.947 14.080-17.493 20.053-20.053 23.467-40.533 47.36-61.867 68.267l-3.413 3.413-1.28-4.693c-0.853-2.987-0.853-5.547-1.28-8.533l-0.853-4.693c-4.693-38.4-2.987-75.093 6.4-110.080 20.053-78.507 84.053-135.253 166.4-146.347 34.987-4.693 69.12-2.133 101.547 8.96l6.827 2.133-6.4 2.987c-31.147 14.080-57.173 34.133-77.227 52.053-38.827 33.707-72.96 72.533-105.813 110.080zM709.973 516.267v0c-1.28 8.96-2.987 17.92-3.413 26.453l-23.467 159.573c-4.693 29.867-8.96 59.733-13.227 90.453l-2.987 19.627c-4.267 29.867-8.96 59.307-12.373 88.32-0.853 6.827-4.267 11.947-10.24 15.36-14.080 8.533-29.867 14.507-52.053 18.773-17.493 3.413-36.267 5.547-60.587 6.827-6.827 0.853-14.080 0.853-20.907 0.853-33.28 0-66.987-4.693-98.987-14.080-10.24-2.987-20.907-7.68-31.147-14.080-4.693-2.987-6.827-6.827-8.533-12.373-7.68-42.667-15.36-89.173-24.32-145.493-8.533-55.040-16.64-110.507-25.173-165.547l-7.68-51.627c-1.28-7.68-2.133-14.507-3.413-22.187l-0.853-5.547 4.267 1.28c55.893 19.627 116.053 28.587 196.267 28.587h1.28c78.080 0 139.947-9.813 195.413-30.72l4.267-1.28-2.133 6.827zM705.707 320c41.813-1.28 80.64 8.533 114.347 27.733 48.64 29.44 80.64 73.813 93.44 133.12 4.693 23.467 6.827 48.213 6.4 71.68-0.853 11.947-1.28 25.6-4.267 40.533l-0.853 4.693-3.413-3.413c-4.267-4.267-8.96-8.533-13.227-13.227-14.080-16.213-27.733-31.147-40.96-47.36l-2.987-3.413c-23.040-26.453-47.36-54.187-70.827-80.64-22.187-24.32-52.053-56.32-88.32-83.627-13.227-9.813-31.147-22.187-51.627-31.147l-6.4-2.987 6.827-2.133c20.053-5.547 40.96-9.387 61.867-9.813zM660.48 206.507v0c-24.32 6.827-52.053 16.213-78.080 30.72v0c0 0-1.28 0.853-2.987 2.133-3.413 2.133-6.4 3.413-9.813 5.547s-7.68 4.693-11.947 7.68v-2.133c6.827-29.44 17.493-51.627 21.76-59.307 23.040-43.093 57.173-75.093 104.533-96 16.64-7.68 36.267-11.947 58.453-14.080 4.693-0.853 9.813-0.853 14.507-0.853 34.133 0 69.12 8.96 106.667 27.733 20.053 10.24 39.68 23.040 59.733 40.533l4.267 3.413-4.693 1.28c-23.467 6.4-48.213 10.24-74.667 15.36-11.093 2.133-21.76 3.413-32.853 5.547-51.627 9.387-104.533 17.92-154.88 32.427z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["planta"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 373,
+ "id": 91,
+ "name": "plant",
+ "prevSize": 32,
+ "code": 59745
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 94
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1011.2 503.467l-264.533-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267-0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-25.6 17.067-42.667 38.4-55.467 59.733-12.8-25.6-29.867-42.667-55.467-59.733-38.4-25.6-85.333-42.667-132.267-42.667-4.267 0-12.8 4.267-12.8 8.533l-81.067 153.6c-4.267 4.267-4.267 8.533 0 17.067 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-4.267 4.267 0 12.8 4.267 17.067l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8 0 0 0 0 0 0l98.133-4.267-76.8 98.133c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l362.667 145.067c0 0 4.267 0 4.267 0s4.267 0 4.267 0l362.667-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-72.533-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 0-8.533-4.267-12.8-12.8-17.067zM110.933 499.2l200.533-81.067 8.533 8.533-170.667 68.267-38.4 4.267zM153.6 665.6v-4.267l-72.533-29.867 72.533-98.133 328.533 132.267-72.533 98.133-256-102.4-0 4.267zM494.933 985.6l-328.533-132.267v-153.6l243.2 98.133c0 0 4.267 0 4.267 0h4.267c0 0 4.267 0 4.267 0v0c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333v277.333zM494.933 631.467l-302.933-119.467 149.333-59.733 153.6 162.133v17.067zM529.067 614.4l162.133-157.867 140.8 55.467-302.933 119.467v-17.067zM857.6 853.333l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0c0 0 4.267 0 4.267 0v0c0 0 4.267 0 4.267 0v0 0c0 0 4.267 0 4.267 0l243.2-98.133v157.867zM942.933 631.467l-328.533 132.267-72.533-98.133 328.533-132.267 72.533 98.133zM874.667 494.933l-162.133-64 12.8-8.533 187.733 76.8-38.4-4.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["polizon"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 374,
+ "id": 92,
+ "name": "polizon",
+ "prevSize": 32,
+ "code": 59746
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 95
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 1024c16.213 0 28.587-13.227 28.587-28.587v-215.040h2.987c73.387-2.133 130.987-25.173 170.667-67.84 68.267-72.107 62.72-177.493 60.16-197.973v0c-1.28-15.36-14.080-28.16-29.44-29.44-7.253-0.853-33.707-2.987-67.84 2.133l-12.373 2.133 11.093-6.827c14.080-8.96 26.453-19.2 37.547-30.72 68.267-72.107 62.72-177.493 60.16-197.973-1.28-15.36-14.080-28.16-29.44-29.44-14.080-1.28-64-4.267-117.76 14.507l-4.267 1.28 0.853-5.12c2.987-15.36 4.267-31.573 4.267-46.933-2.56-98.56-78.933-168.107-93.867-180.48-12.373-10.24-29.44-10.24-41.813 0-15.36 11.947-92.16 81.067-94.72 180.48-0.853 16.213 0.853 31.573 4.267 47.787l0.853 5.12-4.267-1.28c-53.76-19.2-104.533-16.213-118.613-14.507-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.867 60.16 197.973 11.093 11.093 22.613 21.333 36.693 30.293l10.24 6.827-12.373-2.133c-16.213-2.133-30.293-2.987-41.387-2.987s-19.2 0.853-23.467 0.853c-15.36 1.28-28.16 14.080-29.44 29.44-2.133 20.48-8.107 125.013 60.16 197.973 39.68 41.813 97.28 64.853 169.813 67.84h2.987v215.040c0.427 14.933 12.8 28.16 29.013 28.16zM715.093 541.867h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.72-71.253 46.933-127.147 49.92h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 38.827-37.973 92.587-44.8 121.173-44.8zM713.813 280.747h2.987v2.987c-0.853 30.72-7.253 87.467-45.653 128-28.587 30.293-71.253 46.933-127.147 49.493h-2.987v-2.987c2.133-58.88 20.053-103.68 51.627-133.12 39.253-37.12 93.013-43.52 121.173-44.373zM454.4 189.44c1.28-55.040 35.413-99.413 55.893-120.747l2.133-2.133 2.133 2.133c20.053 21.333 53.76 65.707 55.893 120.747 1.28 43.52-17.493 87.040-55.040 128.853l-2.133 2.133-2.133-2.133c-39.68-41.813-58.027-85.333-56.747-128.853zM351.573 411.733c-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c34.56 0.853 84.053 8.96 121.6 43.947v0c31.573 29.44 48.64 74.24 51.627 133.12v2.987h-2.987c-56.32-2.133-98.987-18.773-127.573-49.067zM479.573 722.347c-55.893-2.133-98.56-19.2-127.147-49.493-37.547-39.68-44.8-97.28-45.653-128v-2.987h2.987c28.587 0.853 82.347 7.253 121.6 43.947 31.573 29.44 48.64 74.24 51.627 133.12v2.987h-3.413zM471.467 543.573c-8.96-8.107-18.347-15.36-29.44-22.613l-11.093-6.827 12.373 1.28c21.333 2.987 41.813 3.84 64 2.987 0.853 0 1.28 0 2.133 0h2.56c0.853 0 1.28 0 2.133 0 5.12 0 9.387 0 14.507 0 17.493 0 35.413-1.28 52.053-3.84l13.227-2.133-11.093 7.253c-11.093 6.827-20.48 14.507-29.44 22.613-14.507 14.080-28.16 31.573-38.827 51.627l-2.133 4.267-2.133-4.267c-10.667-18.773-23.893-36.267-38.827-50.347z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["preserved"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 376,
+ "id": 93,
+ "name": "preserved",
+ "prevSize": 32,
+ "code": 59747
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 96
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746.667 482.133c68.267 0 140.8 21.333 196.267 72.533 110.933 102.4 115.2 277.333 8.533 384s-277.333 115.2-384 8.533c-93.867-85.333-110.933-221.867-51.2-328.533l51.2 46.933c-34.133 76.8-17.067 170.667 46.933 230.4 81.067 76.8 209.067 72.533 290.133-8.533 76.8-81.067 72.533-209.067-8.533-290.133-42.667-38.4-93.867-55.467-145.067-55.467l4.267 153.6-170.667-162.133 162.133-170.667-0 119.467zM337.067 750.933c0 0 0 0 0 0-17.067-8.533-38.4-17.067-55.467-25.6-21.333-8.533-29.867-25.6-29.867-51.2s0-51.2 0-81.067c29.867 17.067 64 29.867 102.4 38.4 4.267-17.067 12.8-34.133 21.333-51.2-17.067-4.267-34.133-8.533-51.2-17.067-21.333-8.533-38.4-21.333-55.467-29.867-12.8-8.533-17.067-17.067-12.8-34.133 0-29.867 0-55.467 0-85.333 68.267 29.867 132.267 46.933 200.533 51.2 17.067-21.333 38.4-38.4 64-55.467 0 0-4.267 0-4.267 0-51.2 0-106.667-4.267-157.867-21.333-34.133 0-59.733-12.8-81.067-29.867-29.867-21.333-29.867-42.667 4.267-64 38.4-25.6 81.067-34.133 128-42.667 55.467-8.533 110.933-8.533 166.4-4.267 51.2 4.267 102.4 17.067 149.333 38.4 12.8 4.267 42.667 29.867 38.4 55.467 55.467 0 106.667 12.8 153.6 34.133 17.067-4.267 29.867-8.533 46.933-12.8 0 12.8 0 25.6 0 38.4 21.333 12.8 38.4 25.6 55.467 42.667 0-98.133 0-200.533 0-298.667 0-42.667-17.067-72.533-51.2-93.867-46.933-29.867-98.133-38.4-149.333-42.667-34.133-8.533-72.533-8.533-110.933-8.533-72.533 4.267-140.8 21.333-200.533 64-4.267 0-8.533-4.267-8.533-4.267-51.2-34.133-110.933-46.933-170.667-51.2-51.2 0-102.4 0-153.6 8.533-46.933 8.533-93.867 17.067-136.533 46.933-25.6 21.333-38.4 42.667-38.4 76.8 0 145.067 0 294.4 0 439.467 0 38.4 17.067 64 46.933 81.067 21.333 12.8 46.933 25.6 72.533 29.867 25.6 8.533 51.2 12.8 81.067 17.067 17.067 46.933 55.467 68.267 102.4 85.333 12.8 4.267 29.867 8.533 42.667 12.8-4.267-17.067-8.533-34.133-8.533-55.467zM964.267 273.067c0 8.533-8.533 21.333-17.067 25.6-34.133 21.333-76.8 34.133-119.467 38.4-4.267-38.4-17.067-68.267-55.467-89.6 68.267 0 128-12.8 192-42.667 4.267 25.6 4.267 46.933 0 68.267zM610.133 76.8c68.267-17.067 136.533-25.6 204.8-17.067 42.667 4.267 85.333 12.8 128 34.133 12.8 8.533 21.333 12.8 25.6 34.133-8.533 8.533-17.067 17.067-25.6 21.333-29.867 17.067-64 29.867-98.133 34.133-38.4 4.267-76.8 8.533-115.2 8.533-46.933 0-89.6-8.533-132.267-25.6-21.333-8.533-42.667-17.067-55.467-42.667 12.8-29.867 38.4-42.667 68.267-46.933zM68.267 115.2c25.6-25.6 64-34.133 98.133-38.4 29.867-4.267 59.733-12.8 85.333-12.8 68.267 0 132.267 4.267 196.267 34.133 8.533 4.267 17.067 8.533 25.6 17.067 12.8 8.533 12.8 21.333 0 34.133-8.533 8.533-17.067 12.8-29.867 21.333-42.667 21.333-85.333 29.867-132.267 34.133-17.067 0-29.867 0-42.667 0-55.467-4.267-110.933-12.8-162.133-29.867-12.8-4.267-29.867-12.8-42.667-21.333-12.8-17.067-8.533-25.6 4.267-38.4zM196.267 652.8c-25.6-8.533-51.2-12.8-72.533-21.333-8.533-4.267-21.333-8.533-29.867-12.8-25.6-12.8-38.4-29.867-34.133-59.733 0-17.067 0-29.867 0-51.2 46.933 25.6 89.6 34.133 136.533 38.4 0 42.667 0 72.533 0 106.667zM55.467 430.933c0-21.333 0-42.667 0-59.733 46.933 12.8 93.867 21.333 140.8 34.133 0 29.867 0 59.733 0 93.867-34.133-4.267-64-12.8-93.867-21.333-8.533-4.267-21.333-12.8-29.867-17.067-12.8-8.533-17.067-17.067-17.067-29.867zM196.267 341.333c-4.267 0-12.8 4.267-17.067 0-34.133 0-68.267-12.8-102.4-29.867-12.8-8.533-21.333-21.333-21.333-38.4s0-38.4 0-59.733c59.733 25.6 115.2 38.4 179.2 42.667-21.333 25.6-42.667 51.2-38.4 85.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["recovery"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 377,
+ "id": 94,
+ "name": "recovery",
+ "prevSize": 32,
+ "code": 59748
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 97
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.667 46.933c-260.267 0-469.333 209.067-469.333 469.333h-85.333l136.533 209.067 140.8-209.067h-85.333c0-200.533 162.133-362.667 362.667-362.667s362.667 162.133 362.667 362.667-162.133 362.667-362.667 362.667c-98.133 0-192-42.667-251.733-106.667l-72.533 72.533c85.333 85.333 200.533 136.533 332.8 136.533 251.733-4.267 460.8-213.333 460.8-473.6s-213.333-460.8-469.333-460.8zM332.8 725.333h430.933v-179.2h-110.933v68.267l-106.667-102.4 102.4-102.4v68.267h110.933v-179.2h-426.667v426.667z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["regentry"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 378,
+ "id": 95,
+ "name": "regentry",
+ "prevSize": 32,
+ "code": 59749
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 98
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.6 96c48 0 86.4 38.4 86.4 86.4v662.4c0 48-38.4 86.4-86.4 86.4h-659.2c-48-3.2-86.4-41.6-86.4-89.6v-659.2c0-48 38.4-86.4 86.4-86.4h659.2zM841.6 0h-659.2c-99.2 0-182.4 83.2-182.4 182.4v662.4c0 96 83.2 179.2 182.4 179.2h662.4c99.2 0 182.4-83.2 182.4-182.4v-659.2c-3.2-99.2-86.4-182.4-185.6-182.4v0z",
+ "M611.2 768l-99.2-144h-108.8v144h-118.4v-512h220.8c44.8 0 83.2 6.4 118.4 22.4 32 16 57.6 35.2 76.8 64s25.6 60.8 25.6 99.2c0 38.4-9.6 70.4-28.8 99.2s-44.8 48-76.8 64l115.2 163.2h-124.8zM582.4 374.4c-19.2-16-44.8-22.4-80-22.4h-96v179.2h96c35.2 0 64-6.4 80-22.4 19.2-16 28.8-38.4 28.8-67.2-3.2-28.8-9.6-51.2-28.8-67.2z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["reserva"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 380,
+ "id": 96,
+ "name": "reserva",
+ "prevSize": 32,
+ "code": 59750
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 99
+ },
+ {
+ "icon": {
+ "paths": [
+ "M358.4 819.2h-102.4v-102.4h81.067c0 0 0-4.267 0-4.267 0-34.133 8.533-68.267 21.333-98.133h-102.4v-102.4h170.667c51.2-51.2 123.733-85.333 200.533-102.4h-371.2v-102.4h512v93.867c76.8 8.533 149.333 34.133 204.8 72.533v-268.8c0-55.467-46.933-102.4-102.4-102.4h-213.333c-21.333-59.733-76.8-102.4-145.067-102.4s-123.733 42.667-145.067 102.4h-213.333c-55.467 0-102.4 46.933-102.4 102.4v716.8c0 55.467 46.933 102.4 102.4 102.4h546.133c-157.867-8.533-290.133-89.6-341.333-204.8zM512 102.4c29.867 0 51.2 21.333 51.2 51.2s-21.333 51.2-51.2 51.2-51.2-21.333-51.2-51.2c0-29.867 21.333-51.2 51.2-51.2z",
+ "M721.067 507.733c-136.533 0-251.733 85.333-302.933 204.8 46.933 119.467 162.133 204.8 302.933 204.8s251.733-85.333 302.933-204.8c-46.933-119.467-162.133-204.8-302.933-204.8zM721.067 849.067c-76.8 0-136.533-59.733-136.533-136.533s64-136.533 136.533-136.533 136.533 64 136.533 136.533-59.733 136.533-136.533 136.533zM721.067 631.467c-46.933 0-81.067 38.4-81.067 81.067s38.4 81.067 81.067 81.067c46.933 0 81.067-38.4 81.067-81.067s-34.133-81.067-81.067-81.067z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["revision"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 381,
+ "id": 97,
+ "name": "revision",
+ "prevSize": 32,
+ "code": 59751
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M700.587 816.64c-20.48 3.84-42.24 5.973-64.427 5.973-69.973 0-131.84-17.92-184.747-54.187s-90.453-84.48-112.213-144.213h168.533l-64.853-64.853h-119.467c-2.133-15.36-3.413-31.147-3.413-47.36 0-17.067 1.28-32.853 3.413-47.36h25.173l-114.773-114.773c-6.4 16.213-12.373 32.853-17.067 49.92h-131.413v64.853h119.893c-1.707 20.053-2.133 35.84-2.133 47.36s0.853 27.307 2.133 47.36h-119.893v64.853h131.84c16.213 60.16 43.947 112.64 83.2 158.293 39.253 45.227 87.467 80.64 144.213 105.813s119.040 37.547 186.027 37.547c55.467 0 106.667-8.107 154.453-24.747l-84.48-84.48z",
+ "M580.693 464.64h124.587v-64.853h-189.44z",
+ "M407.467 291.84c13.227-13.227 27.733-25.173 43.947-35.84 52.907-36.267 114.773-54.187 184.747-54.187 91.733 0 167.68 32 228.693 96l73.813-72.533c-36.267-40.96-80.64-72.107-133.547-93.44s-110.933-32.427-174.933-32.427c-66.987 0-128.853 12.373-186.027 37.547-43.52 18.347-82.347 43.947-115.627 75.52l78.933 79.36z",
+ "M39.253 0c10.24 0 20.053 3.84 27.733 11.52l945.493 945.067c15.36 15.36 15.36 40.107 0 55.893-7.68 7.68-17.92 11.52-27.733 11.52-10.24 0-20.053-3.84-27.733-11.52l-945.493-945.067c-15.36-15.36-15.36-40.107 0-55.893 7.68-7.68 17.92-11.52 27.733-11.52z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["riesgo"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 382,
+ "id": 98,
+ "name": "risk",
+ "prevSize": 32,
+ "code": 59753
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M485.973 0.853c-258.987 12.8-470.187 222.293-485.12 481.28-5.547 100.693 17.92 195.84 62.72 277.333s0 170.667-13.653 198.4 19.2 61.867 44.373 45.227c14.507-9.813 65.707-32 116.053-45.653 20.907-5.547 42.667-2.987 61.867 7.253 80.64 43.093 174.080 64.853 273.493 58.453 257.28-16.213 465.067-226.56 477.867-484.267 14.933-303.787-234.24-553.387-537.6-538.027zM407.467 653.227c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-271.36c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v274.347zM544.427 734.72c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-439.467c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v442.453zM674.987 617.387c0 20.48-19.2 36.693-40.533 31.573-14.507-3.413-24.32-17.92-24.32-32.853v-195.413c0-14.933 9.813-29.44 24.32-32.853 21.333-5.12 40.533 11.093 40.533 31.573v198.4z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["saysimple"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 419,
+ "id": 99,
+ "name": "saysimple",
+ "prevSize": 32,
+ "code": 59666
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M951.467 742.4c0-8.533 0-21.333 0-29.867s0-21.333-4.267-29.867l64-51.2c4.267-4.267 8.533-12.8 4.267-21.333l-64-106.667c-4.267-8.533-12.8-8.533-17.067-8.533l-76.8 29.867c-17.067-12.8-34.133-21.333-51.2-29.867l-12.8-81.067c0-8.533-8.533-12.8-17.067-12.8h-123.733c-8.533 0-12.8 4.267-17.067 12.8l-12.8 81.067c-17.067 8.533-38.4 17.067-51.2 29.867l-76.8-29.867c-8.533-4.267-17.067 0-17.067 8.533l-64 106.667c-4.267 8.533-4.267 17.067 4.267 21.333l64 51.2c0 8.533-4.267 21.333-4.267 29.867s0 21.333 4.267 29.867l-55.467 51.2c-4.267 4.267-8.533 12.8-4.267 21.333l64 106.667c4.267 8.533 12.8 8.533 17.067 8.533l76.8-29.867c17.067 12.8 34.133 21.333 51.2 29.867l12.8 81.067c0 8.533 8.533 12.8 17.067 12.8h123.733c8.533 0 12.8-4.267 17.067-12.8l12.8-81.067c17.067-8.533 38.4-17.067 51.2-29.867l76.8 29.867c8.533 4.267 17.067 0 17.067-8.533l64-106.667c4.267-8.533 4.267-17.067-4.267-21.333 0 0-68.267-51.2-68.267-51.2zM721.067 827.733c-64 0-115.2-51.2-115.2-115.2s51.2-115.2 115.2-115.2 115.2 51.2 115.2 115.2c0 64-51.2 115.2-115.2 115.2z",
+ "M345.6 785.067h-89.6v-102.4h81.067c4.267-34.133 8.533-68.267 21.333-102.4h-102.4v-102.4h162.133c34.133-42.667 72.533-76.8 119.467-102.4h-281.6v-102.4h520.533v59.733c51.2 8.533 102.4 25.6 145.067 51.2v-281.6c0-55.467-46.933-102.4-102.4-102.4h-622.933c-55.467 0-102.4 46.933-102.4 102.4v819.2c0 55.467 46.933 102.4 102.4 102.4h302.933c-81.067-55.467-136.533-140.8-153.6-238.933z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["services"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 383,
+ "id": 100,
+ "name": "services",
+ "prevSize": 32,
+ "code": 59754
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M891.733 563.2c0-17.067 4.267-34.133 4.267-51.2s0-34.133-4.267-51.2l106.667-85.333c8.533-8.533 12.8-21.333 4.267-34.133l-102.4-179.2c-4.267-12.8-21.333-17.067-29.867-12.8l-128 51.2c-25.6-21.333-55.467-38.4-85.333-51.2l-17.067-128c0-12.8-12.8-21.333-25.6-21.333h-204.8c-12.8 0-25.6 8.533-25.6 21.333l-17.067 136.533c-34.133 12.8-59.733 29.867-89.6 51.2l-128-51.2c-8.533-4.267-21.333 0-29.867 8.533l-102.4 179.2c-4.267 8.533-4.267 25.6 8.533 29.867l106.667 85.333c-4.267 17.067-4.267 34.133-4.267 51.2s0 34.133 4.267 51.2l-106.667 85.333c-8.533 8.533-12.8 21.333-4.267 34.133l102.4 179.2c4.267 12.8 21.333 17.067 29.867 12.8l128-51.2c25.6 21.333 55.467 38.4 85.333 51.2l17.067 128c0 12.8 12.8 21.333 25.6 21.333h204.8c12.8 0 25.6-8.533 25.6-21.333l21.333-136.533c29.867-12.8 59.733-29.867 85.333-51.2l128 51.2c12.8 4.267 25.6 0 29.867-12.8l102.4-179.2c4.267-12.8 4.267-25.6-4.267-34.133l-110.933-76.8zM512 691.2c-98.133 0-179.2-81.067-179.2-179.2s81.067-179.2 179.2-179.2 179.2 81.067 179.2 179.2-81.067 179.2-179.2 179.2z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["settings"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 384,
+ "id": 101,
+ "name": "settings",
+ "prevSize": 32,
+ "code": 59755
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.76 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 5.973-11.52 17.493-23.040 17.493zM587.52 328.107h-23.040c-29.013 0-29.013-40.533 0-40.533h23.040c11.52 0 23.040 11.52 23.040 23.040 0 5.973-11.52 17.493-23.040 17.493zM454.827 328.107h-23.040c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.973 11.52-11.52 23.040-23.040 23.040zM316.587 328.107h-17.493c-11.52 0-23.040-11.52-23.040-23.040s11.52-23.040 23.040-23.040h23.040c11.52 0 23.040 11.52 23.040 23.040-5.547 11.52-17.067 23.040-28.587 23.040zM719.787 1002.24c-46.080-23.040-86.613-17.493-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM719.787 887.040c-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-40.533-17.493-80.64-23.040-126.72 0-52.053 23.040-103.68 29.013-161.28 0-17.493-5.973-34.56-17.493-63.573-17.493-11.52 0-23.040-11.52-23.040-23.040 0-34.56 69.12-17.493 103.68 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 52.053-23.040 103.68-29.013 161.28 0 40.533 17.493 80.64 23.040 126.72 0 34.56-17.493 103.68-34.56 103.68 0 0 11.52-11.52 23.040-23.040 23.040-34.56 0-46.080 5.973-63.573 17.493-51.2 29.013-103.253 29.013-160.853 0zM875.52 380.16h-34.56v-230.4c0-11.52-11.52-23.040-23.040-23.040h-149.76v-103.68c0-11.52-11.52-23.040-23.040-23.040h-282.453c-11.52 0-23.040 11.52-23.040 23.040v103.68h-149.76c-11.52 0-23.040 11.52-23.040 23.040v230.4h-29.013c-5.973 0-11.52 5.973-17.493 5.973-5.973 5.973-5.973 11.52-5.973 17.493l115.2 391.68c5.973 11.52 17.493 17.493 29.013 11.52 11.52 5.973 17.493-5.973 11.52-17.493l-109.227-368.64h322.56v374.613c0 29.013 40.533 29.013 40.533 0v-374.613h328.533l-109.653 368.64c-5.973 11.52 5.973 23.040 11.52 29.013 11.52 5.973 23.040-5.973 29.013-11.52l115.2-391.68c5.547-23.467-5.973-34.987-23.040-34.987zM385.707 46.080h241.92v86.187h-241.92v-86.187zM800.427 380.16c-69.12 0-512.853 0-587.52 0v-213.333h587.52v213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["shipment-01"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 386,
+ "id": 102,
+ "name": "shipment",
+ "prevSize": 32,
+ "code": 59756
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M725.333 0c72.533 72.533 145.067 145.067 217.6 217.6-4.267 4.267-8.533 12.8-17.067 17.067-179.2 179.2-358.4 362.667-537.6 541.867-8.533 8.533-25.6 17.067-38.4 21.333-81.067 21.333-166.4 42.667-247.467 64-4.267 0-12.8 4.267-21.333 4.267 0-8.533 0-17.067 4.267-21.333 21.333-85.333 42.667-166.4 64-251.733 4.267-8.533 8.533-21.333 17.067-25.6 183.467-187.733 371.2-371.2 554.667-554.667 0-8.533 0-12.8 4.267-12.8z",
+ "M849.067 934.4c-25.6 21.333-46.933 42.667-72.533 59.733-29.867 17.067-59.733 25.6-89.6 29.867-21.333 4.267-42.667 0-55.467-12.8-12.8-8.533-25.6-46.933-38.4-51.2-4.267 0-12.8 0-17.067 4.267-68.267 25.6-145.067 55.467-221.867 55.467-106.667 0-209.067 0-315.733 0-4.267 0-8.533 0-12.8 0-4.267-4.267-12.8-8.533-12.8-12.8s8.533-12.8 12.8-17.067c4.267-4.267 12.8 0 21.333 0 102.4 0 204.8 0 307.2-4.267 76.8 0 153.6-25.6 221.867-64 8.533-4.267 12.8-12.8 12.8-21.333 4.267-55.467 12.8-106.667 42.667-153.6 17.067-29.867 42.667-51.2 81.067-55.467 55.467 0 85.333 38.4 64 89.6-17.067 34.133-42.667 64-64 89.6-21.333 21.333-51.2 38.4-72.533 55.467-4.267 4.267-8.533 17.067-8.533 21.333 8.533 34.133 29.867 51.2 59.733 42.667 29.867-4.267 59.733-17.067 81.067-34.133 25.6-17.067 46.933-42.667 72.533-64 8.533-8.533 17.067-21.333 29.867-25.6 8.533-4.267 21.333-8.533 29.867-4.267 4.267 4.267 8.533 21.333 4.267 29.867-8.533 21.333-17.067 42.667-25.6 64-4.267 8.533-8.533 25.6 0 34.133s29.867 4.267 38.4-4.267c25.6-17.067 51.2-34.133 72.533-55.467 8.533-8.533 17.067-17.067 25.6-8.533 4.267 4.267 4.267 21.333 0 29.867-25.6 34.133-59.733 59.733-102.4 72.533-46.933 12.8-76.8-17.067-68.267-64-4.267-12.8-4.267-17.067 0-25.6zM618.667 887.467c0 0 0 4.267 0 4.267s4.267 0 4.267 0c29.867-25.6 59.733-51.2 85.333-81.067 12.8-12.8 21.333-34.133 29.867-51.2 8.533-21.333 0-34.133-21.333-38.4-25.6-4.267-42.667 8.533-55.467 25.6-29.867 46.933-38.4 93.867-42.667 140.8z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["sign"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 387,
+ "id": 103,
+ "name": "sign",
+ "prevSize": 32,
+ "code": 59658
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 230.4h-443.733c-29.867 0-55.467 25.6-55.467 55.467v332.8c0 29.867 25.6 55.467 55.467 55.467h443.733c29.867 0 55.467-25.6 55.467-55.467v-332.8c0-29.867-25.6-55.467-55.467-55.467zM896 341.333l-221.867 140.8-221.867-140.8v-55.467l221.867 140.8 221.867-140.8v55.467zM640 738.133v55.467h-486.4v-652.8h486.4v25.6h85.333v-25.6c0-76.8-64-140.8-140.8-140.8h-371.2c-81.067 0-140.8 64-140.8 140.8v746.667c0 72.533 59.733 136.533 140.8 136.533h371.2c76.8 0 140.8-64 140.8-140.8v-145.067h-85.333zM490.667 930.133h-187.733v-46.933h187.733v46.933z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["sms"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 388,
+ "id": 104,
+ "name": "sms",
+ "prevSize": 32,
+ "code": 59758
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 42.667v938.667h-938.667v-68.267h234.667v-51.2h38.4c8.533 4.267 17.067 4.267 29.867 4.267h298.667c42.667 0 76.8-34.133 76.8-76.8 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533 0 0 0 0 0 0 29.867-12.8 46.933-38.4 46.933-72.533s-21.333-59.733-46.933-72.533c0 0 0 0 0 0 0-42.667-34.133-76.8-76.8-76.8h-106.667c21.333-21.333 29.867-55.467 17.067-89.6-12.8-25.6-38.4-42.667-68.267-42.667-12.8 0-21.333 4.267-34.133 8.533l-217.6 98.133v-29.867h-238.933v-396.8h362.667v209.067h209.067v-209.067h366.933zM0 870.4h281.6v-51.2h89.6c4.267 4.267 12.8 4.267 17.067 4.267h298.667c21.333 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-136.533v-12.8h183.467c21.333 0 34.133-12.8 34.133-29.867 0-21.333-12.8-29.867-34.133-29.867h-179.2v-12.8h234.667c21.333 0 34.133-8.533 34.133-29.867s-12.8-29.867-34.133-29.867h-230.4v-12.8h183.467c21.333 0 29.867-12.8 29.867-34.133s-12.8-34.133-34.133-34.133h-230.4l93.867-64c12.8-8.533 21.333-29.867 12.8-46.933s-29.867-25.6-51.2-17.067l-251.733 119.467c-4.267 0-4.267 4.267-8.533 4.267-4.267 4.267-8.533 8.533-12.8 12.8h-8.533v-55.467h-281.6v388.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["solclaim"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 389,
+ "id": 105,
+ "name": "solclaim",
+ "prevSize": 32,
+ "code": 59759
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 108
+ },
+ {
+ "icon": {
+ "paths": [
+ "M759.467 89.6v136.533h-601.6c0 0-128 341.333 106.667 341.333s469.333 0 469.333 0 34.133 0 34.133 34.133-8.533 98.133-8.533 98.133h-541.867c0 0-247.467-29.867-204.8-320 0 0 8.533-140.8 72.533-298.667 0 0 21.333 8.533 85.333 8.533l588.8-0zM853.333 934.4c64 0 85.333 8.533 85.333 8.533 64-153.6 72.533-298.667 72.533-298.667 42.667-290.133-204.8-320-204.8-320h-541.867c0 0-8.533 64-8.533 98.133s34.133 34.133 34.133 34.133 238.933 0 469.333 0 106.667 341.333 106.667 341.333h-601.6v136.533h588.8z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["solunion"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 390,
+ "id": 106,
+ "name": "solunion",
+ "prevSize": 32,
+ "code": 59761
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M686.933 742.4h-119.467l-268.8-230.4 268.8-230.4h119.467v153.6l337.067-196.267-337.067-238.933v153.6h-153.6l-290.133 251.733h-243.2v213.333h243.2l290.133 251.733h153.6v153.6l337.067-238.933-337.067-196.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["splitline"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 391,
+ "id": 107,
+ "name": "splitline",
+ "prevSize": 32,
+ "code": 59762
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 0l145.067 145.067-183.467 183.467 89.6 89.6 183.467-183.467 149.333 149.333v-384h-384zM384 0h-384v384l145.067-145.067 302.933 302.933v482.133h128v-537.6l-337.067-341.333 145.067-145.067z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["splur"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 392,
+ "id": 108,
+ "name": "splur",
+ "prevSize": 32,
+ "code": 59764
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1006.933 507.733l-260.267-106.667 29.867-29.867c4.267-4.267 4.267-12.8 4.267-17.067-4.267-4.267-8.533-8.533-12.8-8.533h-157.867c0-93.867 76.8-157.867 174.933-157.867 4.267 0 8.533-4.267 12.8-8.533s4.267-8.533 0-17.067l-81.067-153.6c-4.267 0-12.8-4.267-17.067-4.267-46.933 0-93.867 17.067-132.267 42.667-21.333 17.067-42.667 38.4-55.467 59.733-12.8-21.333-29.867-42.667-55.467-59.733-34.133-12.8-81.067-34.133-128-34.133-4.267 0-12.8 4.267-12.8 8.533l-85.333 153.6c-4.267 4.267-4.267 4.267 0 12.8 4.267 4.267 8.533 8.533 12.8 8.533 98.133 0 174.933 59.733 174.933 153.6v0h-140.8c-4.267 0-12.8 4.267-12.8 8.533-8.533 4.267-4.267 17.067 0 21.333l21.333 21.333-277.333 110.933c-8.533 8.533-12.8 12.8-8.533 21.333 0 8.533 8.533 12.8 17.067 12.8v0l98.133-4.267-81.067 85.333c0 4.267-4.267 8.533 0 12.8 0 4.267 4.267 8.533 8.533 8.533l85.333 34.133v179.2c0 8.533 4.267 12.8 8.533 12.8l358.4 145.067h8.533l358.4-145.067c4.267-4.267 8.533-8.533 8.533-12.8v-179.2l85.333-34.133c4.267 0 8.533-4.267 8.533-8.533s0-8.533-4.267-12.8l-68.267-98.133 102.4 4.267c8.533 0 12.8-4.267 17.067-12.8 8.533 0 4.267-4.267-4.267-12.8zM110.933 503.467l196.267-76.8 8.533 8.533-166.4 64-38.4 4.267zM153.6 674.133v0l-68.267-34.133 68.267-98.133 328.533 132.267-68.267 98.133-260.267-98.133zM490.667 989.867l-328.533-132.267v-153.6l243.2 98.133h12.8c0 0 0 0 4.267 0v0c0 0 4.267 0 4.267-4.267l64-85.333c0 4.267 0 277.333 0 277.333zM490.667 635.733l-298.667-115.2 149.333-64 153.6 157.867v17.067h-4.267zM529.067 622.933l157.867-157.867 140.8 55.467-298.667 115.2c-0 0-0-12.8-0-12.8zM849.067 857.6l-328.533 132.267v-281.6l64 85.333c0 0 0 4.267 4.267 4.267v0h17.067l243.2-98.133v157.867zM938.667 635.733l-324.267 132.267-68.267-98.133 328.533-132.267 64 98.133zM870.4 499.2l-157.867-64 12.8-8.533 187.733 76.8-42.667-4.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["stowaway 2"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 393,
+ "id": 109,
+ "name": "stowaway",
+ "prevSize": 32,
+ "code": 59765
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M797.867 554.667l98.133-34.133 21.333 59.733-98.133 34.133-21.333-59.733zM1019.733 618.667c-4.267 8.533-8.533 12.8-17.067 17.067l-332.8 119.467c4.267 4.267 8.533 12.8 12.8 17.067l277.333-102.4 21.333 59.733-277.333 102.4c0 8.533 4.267 12.8 4.267 21.333 0 85.333-68.267 157.867-157.867 157.867-85.333 0-157.867-68.267-157.867-157.867 0-55.467 29.867-106.667 72.533-132.267l-217.6-610.133c-8.533-25.6-38.4-42.667-68.267-29.867l-157.867 55.467-21.333-59.733 157.867-59.733c59.733-17.067 123.733 12.8 149.333 72.533l221.867 614.4c8.533 0 12.8 0 21.333-4.267l-119.467-332.8c-4.267-17.067 4.267-34.133 17.067-38.4l136.533-51.2c0 0 0 0 0 0l115.2-42.667c0 0 0 0 0 0l136.533-51.2c8.533-4.267 17.067-4.267 25.6 0s12.8 8.533 17.067 17.067l145.067 396.8c0 4.267 0 12.8-4.267 21.333zM695.467 302.933l-59.733 21.333 8.533 21.333 59.733-21.333-8.533-21.333zM644.267 853.333c0-51.2-42.667-93.867-93.867-93.867s-93.867 42.667-93.867 93.867c0 51.2 42.667 93.867 93.867 93.867s93.867-38.4 93.867-93.867zM951.467 588.8l-119.467-332.8-76.8 29.867 17.067 51.2c4.267 8.533 4.267 17.067 0 25.6s-8.533 12.8-17.067 17.067l-115.2 42.667c-4.267 0-8.533 0-12.8 0-12.8 0-25.6-8.533-29.867-21.333l-17.067-51.2-76.8 29.867 119.467 332.8 328.533-123.733z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["supplier"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 394,
+ "id": 110,
+ "name": "supplier",
+ "prevSize": 32,
+ "code": 59766
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M198.827 77.227c22.187-0.427 41.813 14.080 48.64 34.133l8.107 22.187 105.813 105.813-54.187-149.333c-25.6-59.733-89.6-89.6-149.333-72.533l-13.653 5.12 54.613 54.613z",
+ "M708.693 830.72l-173.653-173.653 15.36 43.093c-8.533 4.267-12.8 4.267-21.333 4.267l-29.867-83.2-108.373-108.373 74.24 208.64c-42.667 25.6-72.533 76.8-72.533 132.267 0 89.6 72.533 157.867 157.867 157.867 89.6 0 157.867-72.533 157.867-157.867 0-8.533-4.267-12.8-4.267-21.333l4.693-1.707zM550.4 947.627c-51.2 0-93.867-42.667-93.867-93.867s42.667-93.867 93.867-93.867 93.867 42.667 93.867 93.867c0 55.467-42.667 93.867-93.867 93.867z",
+ "M960 670.293l-122.453 45.227 49.493 49.067 94.293-34.56z",
+ "M504.32 382.293l-0.853-2.133 76.8-29.867 17.067 51.2c4.267 12.8 17.067 21.333 29.867 21.333 4.267 0 8.533 0 12.8 0l115.2-42.667c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 0-25.6l-17.067-51.2 76.8-29.867 119.467 332.8-174.507 65.707 45.653 45.653 180.053-64.427c8.533-4.267 12.8-8.533 17.067-17.067s4.267-17.067 4.267-21.333l-145.067-396.8c-4.267-8.533-8.533-12.8-17.067-17.067s-17.067-4.267-25.6 0l-136.533 51.2-115.2 42.667-134.4 50.347 54.187 54.187zM695.467 303.36l8.533 21.333-59.733 21.333-8.533-21.333 59.733-21.333z",
+ "M896 520.96l-98.133 34.133 21.333 59.733 98.133-34.133z",
+ "M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["supplierfalse"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 396,
+ "id": 111,
+ "name": "supplierfalse",
+ "prevSize": 32,
+ "code": 59767
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M729.6 0c-42.667 0-89.6 0-132.267 0-21.333 0-38.4 8.533-51.2 21.333-140.8 140.8-281.6 281.6-422.4 422.4-25.6 25.6-25.6 51.2 0 76.8 93.867 93.867 187.733 187.733 281.6 281.6 25.6 25.6 51.2 25.6 76.8 0 140.8-140.8 281.6-281.6 422.4-422.4 17.067-12.8 21.333-29.867 21.333-51.2 0-93.867 0-183.467 0-277.333 0-34.133-17.067-51.2-51.2-51.2-51.2-0-98.133-0-145.067-0zM682.667 196.267c0-25.6 17.067-46.933 42.667-46.933s46.933 21.333 46.933 46.933c0 25.6-21.333 46.933-46.933 46.933-21.333 0-42.667-21.333-42.667-46.933zM878.933 477.867c4.267 12.8 0 21.333-8.533 29.867-34.133 51.2-64 98.133-98.133 149.333-76.8 115.2-153.6 234.667-230.4 349.867-12.8 17.067-21.333 21.333-38.4 8.533-115.2-76.8-226.133-149.333-337.067-226.133-17.067-8.533-17.067-21.333-8.533-38.4 12.8-21.333 29.867-46.933 42.667-68.267 8.533-12.8 8.533-12.8 17.067 0 55.467 55.467 115.2 115.2 170.667 170.667 8.533 8.533 17.067 17.067 29.867 21.333 29.867 12.8 55.467 4.267 76.8-21.333 123.733-123.733 247.467-247.467 371.2-371.2 4.267-4.267 4.267-8.533 8.533-12.8 0 8.533 0 8.533 4.267 8.533z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["tags"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 397,
+ "id": 112,
+ "name": "tags",
+ "prevSize": 32,
+ "code": 59769
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 768c0-174.933 145.067-320 320-320 76.8 0 145.067 25.6 196.267 68.267v-324.267c4.267-51.2-38.4-98.133-93.867-98.133h-204.8c-21.333-55.467-72.533-93.867-136.533-93.867s-115.2 38.4-136.533 98.133h-209.067c-55.467 0-98.133 42.667-98.133 93.867v674.133c0 51.2 42.667 98.133 98.133 98.133h332.8c-42.667-55.467-68.267-123.733-68.267-196.267zM529.067 98.133c29.867 0 46.933 21.333 46.933 46.933 0 29.867-25.6 46.933-46.933 46.933-29.867 0-46.933-21.333-46.933-46.933-4.267-29.867 17.067-46.933 46.933-46.933zM708.267 712.533c-8.533 0-12.8-4.267-17.067-8.533s-8.533-8.533-8.533-17.067v-17.067c0-8.533 0-12.8 4.267-17.067s8.533-8.533 17.067-8.533c8.533 0 12.8 4.267 17.067 8.533s4.267 12.8 4.267 17.067v12.8c4.267 21.333-4.267 29.867-17.067 29.867zM870.4 827.733c4.267 4.267 4.267 12.8 4.267 17.067v21.333c0 12.8-8.533 21.333-21.333 21.333-8.533 0-12.8-4.267-17.067-8.533s-8.533-12.8-8.533-17.067v-17.067c0-8.533 4.267-12.8 8.533-17.067s8.533-8.533 17.067-8.533c8.533-0 12.8 4.267 17.067 8.533zM768 512c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM635.733 686.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067c21.333 0 38.4 4.267 51.2 17.067s17.067 29.867 17.067 46.933v17.067c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-8.533-12.8-17.067-29.867-17.067-46.933zM721.067 900.267l-34.133-17.067 153.6-243.2 34.133 17.067-153.6 243.2zM925.867 861.867c0 21.333-4.267 34.133-17.067 46.933s-29.867 17.067-51.2 17.067-38.4-4.267-51.2-17.067c-12.8-12.8-21.333-25.6-21.333-46.933v-17.067c0-21.333 4.267-34.133 17.067-46.933s29.867-17.067 51.2-17.067 38.4 4.267 51.2 17.067c12.8 12.8 17.067 29.867 17.067 46.933v17.067h4.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["tax"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 398,
+ "id": 113,
+ "name": "tax",
+ "prevSize": 32,
+ "code": 59770
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M641.567 633.208v-35.527h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-119.118h64.784v-25.078h-64.784v-121.208h64.784v-25.078h-64.784v-8.359c0-71.053-58.514-129.567-129.567-129.567s-129.567 58.514-129.567 129.567v503.641c-54.335 39.706-87.771 104.49-87.771 173.453 0 119.118 96.131 217.339 217.339 217.339 119.118 0 217.339-96.131 217.339-217.339 0-66.873-33.437-131.657-87.771-173.453zM512 988.473c-100.31 0-179.722-81.502-179.722-179.722 0-64.784 33.437-123.298 87.771-154.645v-524.539c0-50.155 41.796-91.951 91.951-91.951s91.951 41.796 91.951 91.951v522.449c54.335 31.347 87.771 89.861 87.771 154.645 0 100.31-79.412 181.812-179.722 181.812zM652.016 524.539v-25.078h35.527v25.078h-35.527zM652.016 380.343v-25.078h35.527v25.078h-35.527zM652.016 236.147v-25.078h35.527v25.078h-35.527zM568.424 675.004v-543.347c0 0 0 0 0 0s0 0 0 0v0 0c0-31.347-25.078-56.424-56.424-56.424s-56.424 25.078-56.424 56.424v0 543.347c-52.245 20.898-87.771 73.143-87.771 131.657 0 79.412 64.784 144.196 144.196 144.196s144.196-64.784 144.196-144.196c0-58.514-35.527-108.669-87.771-131.657zM470.204 135.837v-4.18c0-22.988 18.808-41.796 41.796-41.796s41.796 18.808 41.796 41.796v219.429h-85.682v-215.249z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["thermometer"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 399,
+ "id": 114,
+ "name": "thermometer",
+ "prevSize": 32,
+ "code": 59771
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M200.533 648.533c12.8-38.4 25.6-76.8 38.4-115.2 8.533-25.6 17.067-55.467 29.867-81.067 29.867-81.067 55.467-166.4 85.333-247.467 21.333-55.467 38.4-110.933 59.733-166.4 4.267-12.8 8.533-21.333 12.8-34.133 0-4.267 4.267-4.267 8.533-4.267 59.733 12.8 115.2 21.333 174.933 34.133 81.067 17.067 157.867 34.133 238.933 46.933 55.467 12.8 110.933 21.333 170.667 34.133 4.267 4.267 4.267 4.267 4.267 12.8-29.867 89.6-59.733 179.2-89.6 264.533-21.333 64-42.667 128-64 187.733-25.6 68.267-46.933 140.8-76.8 209.067-17.067 51.2-38.4 98.133-59.733 145.067-12.8 25.6-25.6 51.2-46.933 68.267-17.067 17.067-34.133 21.333-59.733 12.8-59.733-17.067-93.867-59.733-106.667-119.467-4.267-25.6-8.533-51.2-8.533-76.8 0-12.8 0-25.6 0-38.4s-8.533-21.333-17.067-25.6c-76.8-29.867-153.6-64-234.667-93.867-25.6 0-42.667-4.267-59.733-12.8zM554.667 409.6c-17.067 0-29.867 4.267-29.867 17.067-4.267 12.8 4.267 25.6 17.067 29.867 59.733 21.333 123.733 42.667 183.467 59.733 12.8 4.267 25.6 0 29.867-8.533 8.533-17.067 4.267-29.867-12.8-38.4-46.933-17.067-98.133-34.133-145.067-46.933-17.067-4.267-34.133-8.533-42.667-12.8zM477.867 584.533c-4.267 0-8.533 0-12.8 4.267-8.533 4.267-12.8 12.8-12.8 21.333 0 12.8 8.533 21.333 21.333 25.6 59.733 21.333 119.467 38.4 183.467 59.733 17.067 4.267 29.867 0 34.133-12.8s-4.267-25.6-17.067-29.867c-42.667-12.8-85.333-29.867-132.267-42.667-25.6-12.8-46.933-21.333-64-25.6zM806.4 328.533c21.333 0 29.867-4.267 34.133-21.333 4.267-8.533-8.533-21.333-21.333-25.6-21.333-4.267-42.667-12.8-68.267-17.067-38.4-12.8-76.8-21.333-119.467-34.133-17.067-4.267-34.133 8.533-29.867 25.6 0 12.8 12.8 17.067 25.6 21.333 42.667 12.8 89.6 25.6 132.267 38.4 17.067 4.267 34.133 8.533 46.933 12.8zM516.267 213.333c0-12.8-12.8-25.6-25.6-25.6-17.067 0-25.6 8.533-25.6 21.333s12.8 25.6 29.867 25.6c12.8 4.267 21.333-4.267 21.333-21.333zM426.667 418.133c12.8 0 25.6-8.533 25.6-21.333s-12.8-25.6-25.6-25.6c-17.067 0-29.867 8.533-25.6 21.333-4.267 12.8 4.267 25.6 25.6 25.6zM354.133 537.6c-17.067 0-25.6 8.533-25.6 25.6s12.8 25.6 29.867 25.6c12.8 0 25.6-8.533 25.6-21.333-4.267-17.067-17.067-29.867-29.867-29.867z",
+ "M4.267 618.667c25.6 12.8 55.467 21.333 81.067 34.133 59.733 25.6 119.467 46.933 174.933 72.533 51.2 21.333 102.4 42.667 157.867 64 8.533 4.267 17.067 8.533 25.6 12.8s12.8 8.533 12.8 17.067c0 42.667 4.267 89.6 21.333 128 8.533 17.067 17.067 38.4 25.6 55.467-12.8-4.267-29.867-8.533-42.667-17.067-46.933-17.067-93.867-38.4-145.067-55.467-42.667-17.067-85.333-38.4-128-55.467-29.867-12.8-59.733-25.6-89.6-38.4s-55.467-38.4-72.533-64c-21.333-42.667-25.6-85.333-25.6-132.267 0-4.267 4.267-12.8 4.267-21.333z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["ticket"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 400,
+ "id": 115,
+ "name": "ticket",
+ "prevSize": 32,
+ "code": 59772
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M714.667 405.333c-170.667 0-309.333 138.667-309.333 309.333s138.667 309.333 309.333 309.333 309.333-138.667 309.333-309.333-138.667-309.333-309.333-309.333zM897.28 761.6h-135.68v135.68h-89.173v-136.107h-135.68v-89.173h135.68v-135.68h89.173v135.68h92.16l43.52 0.427v89.173z",
+ "M353.707 765.867c-31.573-12.8-62.72-25.6-93.44-38.4-55.467-25.6-115.2-46.933-174.933-72.533-25.6-12.8-55.467-21.333-81.067-34.133v0c0 8.533-4.267 17.067-4.267 21.333 0 46.933 4.267 89.6 25.6 132.267 17.067 25.6 42.667 51.2 72.533 64s59.733 25.6 89.6 38.4c42.667 17.067 85.333 38.4 128 55.467 51.2 17.067 98.133 38.4 145.067 55.467 7.68 5.12 17.493 8.96 26.453 11.947-71.253-56.747-120.32-139.52-133.547-233.813z",
+ "M372.907 587.093c-4.267 2.56-9.387 3.84-14.507 3.84-17.067 0-29.867-8.533-29.867-25.6s8.533-25.6 25.6-25.6c11.52 0 23.040 10.24 28.16 24.747 57.173-126.293 184.747-214.613 332.373-214.613 78.933 0 152.32 25.173 212.053 68.267 2.56-7.68 5.12-15.36 7.68-23.467 29.867-85.333 59.733-174.933 89.6-264.533 0-8.533 0-8.533-4.267-12.8-59.733-12.8-115.2-21.333-170.667-34.133-81.067-12.8-157.867-29.867-238.933-46.933-59.733-12.8-115.2-21.333-174.933-34.133-4.267 0-8.533 0-8.533 4.267-4.267 12.8-8.533 21.333-12.8 34.133-21.333 55.467-38.4 110.933-59.733 166.4-29.867 81.067-55.467 166.4-85.333 247.467-12.8 25.6-21.333 55.467-29.867 81.067-12.8 38.4-25.6 76.8-38.4 115.2v0c17.067 8.533 34.133 12.8 59.733 12.8 30.72 11.093 60.587 23.040 90.027 34.987 1.707-38.827 9.387-76.373 22.613-111.36zM631.467 232.533c42.667 12.8 81.067 21.333 119.467 34.133 25.6 4.267 46.933 12.8 68.267 17.067 12.8 4.267 25.6 17.067 21.333 25.6-4.267 17.067-12.8 21.333-34.133 21.333-12.8-4.267-29.867-8.533-46.933-12.8-42.667-12.8-89.6-25.6-132.267-38.4-12.8-4.267-25.6-8.533-25.6-21.333-4.267-17.067 12.8-29.867 29.867-25.6zM490.667 189.867c12.8 0 25.6 12.8 25.6 25.6 0 17.067-8.533 25.6-21.333 21.333-17.067 0-29.867-12.8-29.867-25.6s8.533-21.333 25.6-21.333zM426.667 373.333c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.333-25.6 21.333c-21.333 0-29.867-12.8-25.6-25.6-4.267-12.8 8.533-21.333 25.6-21.333z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["ticketAdd"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 401,
+ "id": 116,
+ "name": "ticketAdd",
+ "prevSize": 32,
+ "code": 59774
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 128c0 72.533-55.467 128-128 128s-128-55.467-128-128 55.467-128 128-128 128 55.467 128 128zM512 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM896 768c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM981.333 85.333h-580.267v-85.333h-68.267v256h68.267v-85.333h537.6v298.667h-226.133v85.333h268.8c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM563.2 1024v-85.333h-520.533c-25.6 0-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667h268.8v85.333h-226.133v298.667h477.867v-85.333l128 128-128 128z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["traceability"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 402,
+ "id": 117,
+ "name": "traceability",
+ "prevSize": 32,
+ "code": 59775
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M595.2 380.8c32 0 60.8 12.8 83.2 32l6.4 6.4 51.2-51.2-9.6-6.4c-35.2-35.2-83.2-51.2-134.4-51.2-83.2 0-156.8 51.2-188.8 128h-76.8v60.8h64c0 3.2 0 9.6 0 12.8s0 9.6 0 12.8h-64v60.8h80c32 80 105.6 128 188.8 128 51.2 0 99.2-19.2 134.4-51.2l9.6-6.4-51.2-48-6.4 6.4c-22.4 19.2-54.4 32-83.2 32-44.8 0-83.2-22.4-105.6-57.6h118.4v-60.8h-140.8c0-6.4 0-9.6 0-12.8s0-9.6 0-12.8h140.8v-60.8h-118.4c19.2-38.4 57.6-60.8 102.4-60.8zM553.6 48c-256 0-464 208-464 467.2h-86.4l134.4 208 140.8-208h-86.4c0-198.4 163.2-361.6 361.6-361.6s361.6 163.2 361.6 361.6-163.2 361.6-361.6 361.6c-99.2 0-188.8-41.6-252.8-108.8l-73.6 73.6c86.4 86.4 198.4 134.4 329.6 134.4 256 0 464-208 464-464s-208-464-467.2-464z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["transaction"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 403,
+ "id": 118,
+ "name": "transaction",
+ "prevSize": 32,
+ "code": 59675
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420.267 131.84c-78.507 22.613-121.173 80.213-121.173 161.707v730.027h443.307c0-0.853 0-1.28 0-2.133 0-64.853 0-129.28 0-194.133 0-177.92 0-362.24-0.853-544.853 0-56.747-27.307-101.973-78.080-133.12v0c-9.387-5.973-20.48-10.24-32.427-14.507h-0.853c-5.12-2.133-10.24-4.267-16.213-6.827l-1.28-0.853v-128h-186.027v129.28l-3.84 1.28c-0.853 1.28-1.707 2.133-2.56 2.133zM682.667 965.12h-324.693v-649.813h324.693c0 0 0 649.813 0 649.813zM486.4 58.027h68.267v69.12h-68.267v-69.12zM454.827 186.027h25.173c35.413 0 71.253-0.853 106.667 0 38.4 0.853 67.84 19.2 86.613 54.187 1.28 2.133 2.133 5.12 3.84 7.253v0.853c0.853 1.28 0 2.133 0 2.987v2.987h-314.88l1.28-3.84c5.12-16.213 14.507-30.293 28.587-41.813 18.773-14.507 40.107-22.613 62.72-22.613z",
+ "M613.547 738.133c0.853-22.613 0-45.653 0-68.267v-7.253c0-8.107 0-16.213 0-23.467v-0.853c0-8.107 0-17.067 0-25.173v-1.28c0-22.187 0-44.8 0-66.987 0-10.24-1.28-19.2-2.987-26.453-10.24-40.533-47.787-69.973-89.6-69.973-3.84 0-7.253 0-10.24 0.853-47.787 5.973-83.2 44.8-83.627 91.733-0.853 61.867 0 125.867 0 182.187v14.080c0 6.827 0.853 14.080 2.987 21.333 11.093 44.8 53.76 75.093 99.413 70.4 47.36-4.693 83.627-43.947 84.053-90.88zM555.52 666.88c0 22.187 0 43.947 0 66.133s-14.080 38.4-34.56 38.4c-9.387 0-17.493-3.84-24.32-9.387-7.253-6.827-11.093-17.067-11.093-27.733 0-62.293 0-126.293 0-189.013 0-11.093 3.84-21.333 11.093-27.733 6.827-5.973 14.507-9.387 24.32-9.387 20.48 0 34.56 16.213 34.56 38.4s0 43.947 0 66.133v54.187z"
+ ],
+ "attrs": [{}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}],
+ "125525525519595951": [{}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}]
+ },
+ "tags": ["treatments"],
+ "grid": 0
+ },
+ "attrs": [{}, {}],
+ "properties": {
+ "order": 405,
+ "id": 119,
+ "name": "treatments",
+ "prevSize": 32,
+ "code": 59776
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M972.8 902.4v-902.4h-44.384v153.184h-832.864v-153.184h-44.384v902.4c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-17.056-49.92-40.544-58.88v-9.376h832.864v9.376c-23.904 8.96-40.544 32-40.544 58.88 0 34.56 28.16 62.72 62.72 62.72s62.72-28.16 62.72-62.72c0-26.88-16.64-49.92-40.544-58.88zM928.416 192.864v314.464h-832.864v-314.464h832.864zM139.936 852.896h-44.384v-305.504h832.864v305.504h-788.48z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["trolley"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 417,
+ "id": 120,
+ "name": "trolley",
+ "prevSize": 32,
+ "code": 59648
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M696.747 646.827c-0.427 7.253-1.707 14.080-3.413 20.907-5.547 12.373-13.653 22.613-25.173 29.867-20.48 10.24-40.107 9.813-59.733-2.133-9.813-7.253-17.067-16.64-22.187-28.16-1.707-6.827-2.987-13.653-3.413-20.907 0.427-7.253 2.133-14.080 4.267-20.907 0.427-0.427 0.427-0.427 0.427-0.853 3.413-6.4 7.68-12.373 12.8-17.92 2.133-1.707 4.693-3.84 6.827-5.973 6.4-3.84 13.227-6.827 20.907-8.96 6.827-1.28 13.653-0.853 20.907-0.853 7.253 2.133 14.080 3.84 20.48 8.107v0c17.067 11.52 25.6 27.733 27.307 47.787zM897.28 602.88v0c-12.373-8.96-26.027-12.373-40.96-11.52-7.253 1.28-14.080 3.413-20.907 6.4-11.093 6.827-19.627 16.213-25.173 27.733-2.133 6.827-3.84 13.653-4.267 20.907 0 7.253 1.28 14.080 3.413 20.907 1.707 3.84 3.413 7.253 5.547 11.093 2.56 2.987 5.12 6.4 7.68 9.387 4.267 3.413 8.533 6.4 12.8 9.813 4.267 1.707 8.533 3.84 13.227 4.693 17.92 4.693 34.133 0.853 49.067-9.813 1.707-1.707 3.413-2.987 5.547-4.693 10.667-11.947 16.213-25.6 16.64-41.813-0.853-4.693-1.28-9.813-2.133-14.507-4.267-10.667-10.24-20.907-20.48-28.587zM277.76 593.067c-1.28-0.427-2.56-0.853-3.84-1.28-6.827-0.427-13.653-0.427-20.48 0.853-7.253 1.707-14.507 5.12-20.907 8.96-1.707 1.28-3.413 2.56-5.12 3.84-11.947 11.52-18.347 25.173-19.2 41.387 0 6.4 1.28 12.8 2.987 19.2 0.427 1.707 1.28 2.987 1.707 4.693 3.413 6.4 7.253 12.373 11.947 17.92 2.56 2.133 5.12 4.267 7.68 6.4 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 13.653 1.28 20.907 0.427 6.827-1.28 13.227-3.84 19.2-6.827 14.933-9.813 25.173-23.040 27.733-41.387 3.84-29.013-14.507-56.32-43.52-63.147zM190.72 622.080v0c-3.84-5.973-8.107-11.947-13.227-17.067-2.56-1.707-4.693-3.413-7.253-5.547-20.907-11.52-41.813-11.093-62.293 1.28-1.707 1.28-3.413 2.56-5.12 4.267-11.947 11.52-18.773 25.173-19.2 41.813 0 7.253 1.28 14.080 2.987 20.48 0.427 1.28 1.28 2.987 1.707 4.267 2.987 5.547 6.4 10.667 10.24 15.36 2.987 2.56 5.973 5.12 9.387 8.107 6.4 3.84 13.653 6.827 20.907 8.96 6.827 0.853 14.080 1.28 20.907 0.427 6.827-1.707 13.227-3.84 19.2-6.827 11.52-7.253 19.627-17.493 25.173-29.867 2.133-6.827 2.987-13.653 3.413-20.48-0.853-6.827-2.133-14.080-4.267-20.48-1.707-1.707-2.133-3.413-2.56-4.693zM47.787 536.747h686.933c1.28 0 2.56-1.28 2.56-2.56v-212.48c0-1.28-1.28-2.56-2.56-2.56h-686.933c-1.28 0-2.56 1.28-2.56 2.56v212.053c0 1.707 0.853 2.987 2.56 2.987zM981.333 505.6v133.12c-3.84 9.387-11.093 12.8-20.907 12.373-6.827-0.427-13.653-0.427-20.907 0-2.987 0-2.987-2.56-4.267-4.267-1.28-7.253-4.267-14.507-7.68-20.907-10.667-22.187-25.6-39.253-50.347-46.080-6.827-2.133-13.653-2.56-20.907-1.707-18.773 1.28-33.28 11.093-45.227 24.32-5.12 5.547-9.387 11.52-12.8 18.347-1.28 2.56-2.987 3.413-5.547 3.413-27.307 0-54.613 0-81.92 0-3.413 0-5.547-1.28-7.253-4.267-14.507-21.76-33.707-35.84-60.16-39.253-13.227-1.707-26.027 0-37.547 6.827-16.64 8.107-26.88 21.333-32.427 38.4-2.987 6.827-3.84 13.653-4.267 20.907 0 2.133-1.28 3.413-3.413 3.413-6.827 0-14.080 0-20.907 0-1.28-0.427-1.28-2.133-1.707-3.413 1.707-14.507 6.4-28.16 12.373-41.387 4.267-7.253 8.107-14.507 13.227-20.907 3.84-5.12 8.107-9.813 12.8-14.080 15.36-17.067 30.293-17.067 30.293-17.067h180.48v-180.907h0.427v-0.853h137.813c0 0 3.413 2.133 4.693 8.96 2.133 5.973 4.693 11.947 6.827 17.92 2.133 6.4 4.267 13.227 7.253 19.2 4.693 14.080 9.813 27.733 15.36 41.813 2.133 6.827 4.693 14.080 7.68 20.48v0c2.133 8.96 5.12 17.493 8.96 25.6zM949.76 497.067l-34.56-92.587h-16.64c-0.427 0-0.427 0-0.853 0s-0.427 0-0.853 0h-49.493v81.92c0.853 0.427 1.707 0.427 2.987 0.427 1.707 0 3.84 0 5.547 0 6.827 1.28 13.653 2.133 20.907 2.133 6.827 1.28 14.080 2.133 20.907 2.133 6.827 0.853 13.653 1.707 20.907 2.133v0l20.907 2.133c3.413 0.853 6.827 1.28 10.24 1.707zM340.907 597.333v0c-7.253-12.373-15.787-23.467-26.453-31.573-13.227-11.52-25.173-12.8-25.173-12.8h-172.373c0 0-4.267 0.427-8.96 1.707 0 0-0.427 0-0.427 0-0.427 0-0.427 0-0.853 0.427-4.267 1.28-8.533 2.987-11.093 5.12-8.533 4.693-15.36 11.52-22.187 18.773-6.827 8.107-11.947 17.067-17.493 26.027-4.267 9.387-7.68 19.2-10.667 29.013-5.547 15.787 0 15.787 0 15.787l20.907 0.427c2.133 0 3.413-1.28 3.413-3.413 0.427-7.253 1.707-14.080 4.267-20.907 5.547-17.92 16.64-31.147 33.707-39.253 20.48-10.667 41.387-11.947 62.72-2.56 7.68 3.413 14.933 7.253 17.92 15.787 0.427 1.28 1.707 0.853 2.56 1.28 0 0 0 0 0 0h20.48c0.427-0.427 1.28-0.427 1.28-0.853 2.987-8.533 10.667-12.373 18.347-16.213 1.707-0.853 3.413-2.133 5.547-2.56 23.040-6.827 44.373-4.267 64.427 8.96 19.627 12.8 28.587 32.427 30.72 55.040 0.427 3.413 1.28 4.693 5.12 4.693 6.827 0 13.653 0 20.053 0 0.853-0.853 0.853-2.56 0.853-3.413-1.707-14.507-6.4-28.16-12.8-41.387-0.853-2.56-2.133-5.547-3.84-8.107z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["troncales"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 406,
+ "id": 121,
+ "name": "troncales",
+ "prevSize": 32,
+ "code": 59778
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M39.253 0c-9.813 0-20.053 3.84-27.733 11.52-15.36 15.787-15.36 40.533 0 55.893l945.493 945.067c7.68 7.68 17.493 11.52 27.733 11.52 9.813 0 20.053-3.84 27.733-11.52 15.36-15.787 15.36-40.533 0-55.893l-945.493-945.067c-7.68-7.68-17.493-11.52-27.733-11.52z",
+ "M469.333 353.28v-267.947h-128v139.947z",
+ "M640 85.333h-85.333c0 0 0 142.080 0 273.92 24.747-21.333 53.333-35.413 85.333-46.080v-227.84z",
+ "M563.2 447.147l46.933 46.933c26.453-36.267 69.973-60.587 118.613-60.587 81.92 0 145.92 64 145.92 145.92 0 49.493-23.893 92.16-60.587 118.187l43.947 43.947c47.36-38.827 77.227-97.707 77.227-162.133 0-117.333-96-209.92-209.92-209.92-66.133 0.427-124.16 30.72-162.133 77.653z",
+ "M938.667 394.667v-309.333h-85.333v241.92c32 17.493 60.587 38.827 85.333 67.413z",
+ "M768 302.080v-216.747h-42.667l3.413 213.333c14.507 0 28.587 0 39.253 3.413z",
+ "M298.667 182.613v-97.28h-42.667v54.613z",
+ "M524.373 640c8.107 28.587 22.187 54.613 40.96 78.080l-10.667 7.253h-24.747l-160 163.413 49.493 49.92 160-163.413v-24.747l7.253-10.667c21.76 19.627 48.64 33.28 78.507 41.387l-140.8-141.227z",
+ "M444.587 583.253c0-7.253 0.427-14.507 1.28-21.333l-104.533-104.533v335.36h24.747l99.413-99.413c-14.080-35.413-20.907-71.253-20.907-110.080z",
+ "M85.333 201.387v591.36h85.333v-506.027z",
+ "M256 372.053v420.693h42.667v-378.027z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["unavailable"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 407,
+ "id": 122,
+ "name": "unavailable",
+ "prevSize": 32,
+ "code": 59779
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M317.013 122.027h-256.853c-33.28 0-60.16 26.88-60.16 60.16v586.24c0 32.853 26.88 60.16 60.16 60.16h257.28c32.853 0 60.16-26.88 60.16-60.16v-586.24c-0.427-32.853-27.307-60.16-60.587-60.16zM307.2 758.613h-237.653v-566.613h237.653v566.613z",
+ "M811.093 580.267v-398.080c0-32.853-26.88-60.16-60.16-60.16h-257.28c-32.853 0-59.733 26.88-59.733 60.16v586.24c0 32.853 26.88 60.16 59.733 60.16h110.080v-69.547h-100.267v-567.040h237.653v457.813l69.973-69.547z",
+ "M887.040 639.573l-189.44 188.587v73.813h73.813l189.013-189.44z",
+ "M903.253 623.36l73.387 72.96 42.667-42.667c2.133-2.133 2.56-3.413 2.987-4.693 1.28-3.413 1.707-6.827 1.707-9.813 0-2.133-0.427-4.267-1.28-6.4v0c-1.28-3.413-2.987-6.4-5.547-9.387l-42.24-41.813c-2.133-2.133-4.267-3.84-6.827-4.693-5.12-2.133-10.24-2.133-16.64 0-1.707 0.427-2.987 1.707-5.12 3.413l-43.093 43.093z"
+ ],
+ "attrs": [{}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}, {}],
+ "125525525519595951": [{}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}, {}]
+ },
+ "tags": ["visible_columns"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}],
+ "properties": {
+ "order": 408,
+ "id": 123,
+ "name": "visible_columns",
+ "prevSize": 32,
+ "code": 59780
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 337.067c0 42.667-17.067 72.533-46.933 98.133s-72.533 38.4-123.733 38.4c-17.067 0-34.133-4.267-46.933-4.267v554.667h-174.933v-605.867c0-29.867-4.267-46.933-12.8-64-8.533-12.8-25.6-21.333-51.2-21.333-34.133 0-59.733 17.067-76.8 46.933v644.267h-174.933v-605.867c0-29.867-4.267-51.2-12.8-64-12.8-12.8-29.867-17.067-55.467-17.067-34.133 0-59.733 12.8-76.8 42.667v644.267h-170.667v-810.667h162.133l4.267 64c38.4-51.2 93.867-76.8 157.867-76.8 68.267 0 115.2 29.867 140.8 85.333 38.4-55.467 93.867-85.333 162.133-85.333 93.867 0 145.067 46.933 166.4 136.533v0c0 12.8 4.267 25.6 17.067 38.4 12.8 8.533 25.6 17.067 42.667 17.067s34.133-4.267 46.933-17.067 17.067-25.6 17.067-38.4c0-21.333-4.267-38.4-17.067-51.2-12.8-8.533-25.6-12.8-46.933-12.8h-51.2v-81.067h51.2c38.4 0 59.733-21.333 59.733-59.733 0-17.067-4.267-25.6-12.8-38.4-12.8-8.533-25.6-12.8-46.933-12.8-12.8 0-25.6 4.267-38.4 12.8-8.533 8.533-17.067 17.067-17.067 29.867h-106.667c0-25.6 8.533-46.933 21.333-64s34.133-34.133 55.467-42.667 55.467-17.067 85.333-17.067c51.2 0 93.867 12.8 119.467 34.133 29.867 25.6 42.667 55.467 42.667 98.133 0 21.333-4.267 38.4-17.067 55.467s-29.867 29.867-51.2 42.667c25.6 8.533 42.667 21.333 59.733 38.4 8.533 21.333 17.067 42.667 17.067 68.267z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["volume"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 409,
+ "id": 124,
+ "name": "volume",
+ "prevSize": 32,
+ "code": 59781
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M829.649 394.971l-18.808 50.155-50.155 18.808 50.155 18.808 18.808 50.155 18.808-50.155 50.155-18.808-50.155-18.808-18.808-50.155zM624.849 89.861l-35.527-89.861-33.437 89.861-89.861 35.527 89.861 33.437 33.437 89.861 33.437-89.861 91.951-33.437-89.861-35.527zM969.665 140.016l-20.898-54.335-20.898 54.335-52.245 20.898 52.245 20.898 20.898 52.245 20.898-52.245 54.335-20.898-54.335-20.898zM783.673 311.38l-71.053-71.053c-4.18-4.18-8.359-4.18-12.539-4.18s-8.359 2.090-12.539 4.18l-681.273 681.273c0 0 0 0 0 0v0c-6.269 6.269-6.269 18.808 0 25.078l71.053 71.053c6.269 6.269 16.718 6.269 22.988 0v0c0 0 0 0 0 0l683.363-683.363c6.269-6.269 6.269-16.718 0-22.988zM626.939 453.486l-56.424-56.424 129.567-129.567 56.424 56.424-129.567 129.567z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["wand"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 410,
+ "id": 125,
+ "name": "wand",
+ "prevSize": 32,
+ "code": 59782
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M827.733 426.667c-29.867-145.067-157.867-256-315.733-256-123.733 0-230.4 68.267-285.867 170.667-128 17.067-226.133 123.733-226.133 256 0 140.8 115.2 256 256 256h554.667c119.467 0 213.333-93.867 213.333-213.333 0-110.933-85.333-204.8-196.267-213.333z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["web"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 411,
+ "id": 126,
+ "name": "web",
+ "prevSize": 32,
+ "code": 59783
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M793.6 226.133c0 0 4.267 0 4.267 0l76.8-12.8v42.667c0 34.133-21.333 68.267-46.933 72.533 0 0-4.267 0-4.267 0l-76.8 12.8v-42.667c0-34.133 21.333-64 46.933-72.533z",
+ "M742.4 362.667l38.4-4.267c12.8 0 25.6 12.8 25.6 29.867v21.333l-38.4 4.267c-12.8 0-25.6-12.8-25.6-29.867v-21.333z",
+ "M618.667 260.267l68.267-8.533c25.6-4.267 42.667 21.333 42.667 55.467v38.4l-68.267 8.533c-25.6 4.267-42.667-21.333-42.667-55.467l-0-38.4z",
+ "M665.6 371.2c4.267 0 4.267 0 0 0l59.733-4.267v29.867c0 25.6-17.067 46.933-34.133 55.467 0 0-4.267 0-4.267 0l-55.467 8.533v-29.867c4.267-29.867 17.067-51.2 34.133-59.733z",
+ "M443.733 311.467c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 4.267-8.533 4.267-12.8 4.267z",
+ "M443.733 448c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267-0-8.533 4.267-12.8 4.267z",
+ "M443.733 580.267c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z",
+ "M443.733 712.533c0 0-4.267 0-4.267 0-119.467-85.333-273.067-46.933-277.333-46.933s-8.533 0-12.8-8.533c0-4.267 0-8.533 8.533-12.8 0 0 42.667-12.8 98.133-8.533 51.2 0 128 12.8 196.267 59.733 4.267 4.267 4.267 8.533 4.267 12.8-4.267 0-8.533 4.267-12.8 4.267z",
+ "M588.8 580.267c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z",
+ "M588.8 712.533c-4.267 0-4.267 0-8.533-4.267s0-8.533 4.267-12.8c68.267-46.933 140.8-59.733 196.267-59.733s93.867 8.533 98.133 8.533c4.267 0 8.533 8.533 8.533 12.8s-8.533 8.533-12.8 8.533v0c0 0-153.6-38.4-277.333 46.933-4.267-4.267-4.267 0-8.533 0z",
+ "M985.6 221.867v-64l-8.533-4.267c-4.267 0-81.067-29.867-179.2-29.867-106.667 0-200.533 34.133-277.333 98.133-76.8-64-170.667-98.133-277.333-98.133-102.4 0-174.933 29.867-179.2 29.867l-12.8 4.267v59.733c-34.133 4.267-51.2 17.067-51.2 34.133v614.4h452.267c17.067 12.8 38.4 21.333 64 21.333s46.933-8.533 64-21.333h443.733v-614.4c0-17.067-17.067-25.6-38.4-29.867v0zM512 814.933c-38.4-17.067-166.4-64-298.667-64-51.2 0-98.133 8.533-136.533 21.333v-597.333c21.333-8.533 85.333-25.6 162.133-25.6 98.133 0 183.467 29.867 256 89.6v358.4l17.067-17.067v234.667zM955.733 776.533c-42.667-17.067-89.6-25.6-140.8-25.6-128 0-251.733 51.2-290.133 64v-238.933l17.067 17.067v-349.867c68.267-59.733 153.6-89.6 256-89.6 76.8 0 136.533 17.067 162.133 25.6v597.333zM955.733 776.533z"
+ ],
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "125525525519595951": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "12043441125524245125525525513111218319595951": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": ["wiki"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}],
+ "properties": {
+ "order": 412,
+ "id": 127,
+ "name": "wiki",
+ "prevSize": 32,
+ "code": 59785
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M297.6 454.4c-44.8 0-80 35.2-80 83.2s35.2 83.2 80 83.2 80-35.2 80-83.2-35.2-83.2-80-83.2zM297.6 640c-54.4 0-163.2 28.8-163.2 83.2v60.8h326.4v-60.8c0-54.4-108.8-83.2-163.2-83.2zM880 515.2h-316.8c-16 0-28.8-12.8-28.8-28.8s12.8-28.8 28.8-28.8h316.8c16 0 25.6 12.8 25.6 28.8s-12.8 28.8-25.6 28.8zM880 784h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM880 649.6h-316.8c-16 0-28.8-12.8-28.8-25.6s12.8-25.6 28.8-25.6h316.8c16 0 25.6 12.8 25.6 25.6s-12.8 25.6-25.6 25.6zM624 48v236.8c0 25.6-22.4 48-48 48h-131.2c-25.6 0-48-22.4-48-48v-236.8c0-25.6 22.4-48 48-48h131.2c28.8 0 48 22.4 48 48zM1024 294.4v640c0 51.2-41.6 89.6-89.6 89.6h-844.8c-48 0-89.6-41.6-89.6-89.6v-640c0-51.2 41.6-89.6 89.6-89.6h275.2v54.4h-275.2c-19.2 0-35.2 16-35.2 35.2v640c0 19.2 16 35.2 35.2 35.2h841.6c19.2 0 35.2-16 35.2-35.2v-640c0-19.2-16-35.2-35.2-35.2h-275.2v-54.4h275.2c51.2 0 92.8 38.4 92.8 89.6z"
+ ],
+ "attrs": [{}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}],
+ "125525525519595951": [{}],
+ "12043441125524245125525525513111218319595951": [{}]
+ },
+ "tags": ["worker"],
+ "grid": 0
+ },
+ "attrs": [{}],
+ "properties": {
+ "order": 413,
+ "id": 128,
+ "name": "worker",
+ "prevSize": 32,
+ "code": 59786
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M243.2 512c-12.8-17.067-25.6-34.133-38.4-51.2-34.133-46.933-68.267-98.133-89.6-153.6-17.067-34.133-25.6-72.533-17.067-110.933 8.533-51.2 38.4-89.6 85.333-110.933 59.733-25.6 132.267-8.533 174.933 34.133 34.133 38.4 42.667 81.067 34.133 132.267-8.533 46.933-29.867 85.333-51.2 123.733-29.867 46.933-59.733 89.6-89.6 132.267-4.267 0-4.267 0-8.533 4.267zM247.467 136.533c-46.933 0-89.6 38.4-89.6 89.6 0 46.933 38.4 89.6 85.333 89.6s89.6-38.4 89.6-85.333c0-55.467-38.4-93.867-85.333-93.867z",
+ "M490.667 580.267l-17.067-25.6 12.8-8.533-34.133-183.467c0 0 0-8.533-8.533-8.533l-42.667-4.267c0 0-68.267 110.933-157.867 217.6 4.267-4.267-93.867-110.933-132.267-187.733l-110.933 51.2c0 0-4.267 0-4.267 8.533l25.6 145.067 34.133 21.333-8.533 21.333-17.067-8.533 59.733 332.8 213.333-102.4 238.933 21.333-51.2-290.133zM149.333 674.133c-12.8-4.267-29.867-12.8-42.667-17.067 4.267-8.533 4.267-17.067 8.533-21.333 17.067 0 29.867 4.267 42.667 12.8-4.267 8.533-4.267 17.067-8.533 25.6zM256 691.2c-17.067 0-34.133-4.267-46.933-4.267 0-8.533 4.267-17.067 4.267-25.6 12.8 0 29.867 4.267 42.667 4.267 0 8.533 0 17.067 0 25.6zM315.733 682.667c-4.267-8.533-4.267-12.8-8.533-21.333 17.067-8.533 29.867-17.067 42.667-21.333 4.267 8.533 8.533 12.8 8.533 21.333-12.8 8.533-25.6 12.8-42.667 21.333zM405.333 631.467c-4.267-8.533-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 4.267 4.267 8.533 12.8 12.8 21.333-8.533 8.533-21.333 17.067-38.4 25.6z",
+ "M972.8 499.2l-29.867-25.6 12.8-21.333 12.8 8.533-34.133-187.733c0 0 0-8.533-8.533-8.533l-226.133-17.067-209.067 93.867c0 0-8.533 4.267-4.267 12.8l29.867 170.667 21.333 12.8-17.067 17.067 55.467 307.2 213.333-102.4 234.667 21.333-51.2-281.6zM580.267 494.933c-4.267-4.267-8.533-12.8-12.8-17.067 12.8-12.8 21.333-21.333 29.867-34.133 4.267 4.267 12.8 12.8 17.067 17.067-12.8 8.533-25.6 21.333-34.133 34.133zM657.067 418.133c-4.267-4.267-8.533-12.8-12.8-21.333 12.8-8.533 25.6-17.067 38.4-25.6 8.533 8.533 12.8 17.067 12.8 21.333-12.8 8.533-25.6 17.067-38.4 25.6zM797.867 388.267c-12.8-4.267-25.6-4.267-42.667-4.267 0-8.533 0-17.067 0-25.6 17.067 0 34.133 0 51.2 4.267-4.267 8.533-4.267 17.067-8.533 25.6zM891.733 439.467c-12.8-8.533-25.6-17.067-38.4-25.6 4.267-8.533 8.533-12.8 12.8-21.333 12.8 8.533 25.6 17.067 38.4 25.6-4.267 8.533-8.533 12.8-12.8 21.333z"
+ ],
+ "attrs": [{}, {}, {}],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1155155154125525525519595951": [{}, {}, {}],
+ "125525525519595951": [{}, {}, {}],
+ "12043441125524245125525525513111218319595951": [{}, {}, {}]
+ },
+ "tags": ["zone"],
+ "grid": 0
+ },
+ "attrs": [{}, {}, {}],
+ "properties": {
+ "order": 414,
+ "id": 129,
+ "name": "zone",
+ "prevSize": 32,
+ "code": 59787
+ },
+ "setIdx": 0,
+ "setId": 0,
+ "iconIdx": 132
+ }
+ ],
+ "height": 1024,
+ "metadata": { "name": "icon" },
+ "preferences": {
+ "showGlyphs": true,
+ "showCodes": true,
+ "showQuickUse": true,
+ "showQuickUse2": true,
+ "showSVGs": true,
+ "fontPref": {
+ "prefix": "icon-",
+ "metadata": { "fontFamily": "icon", "majorVersion": 1, "minorVersion": 0 },
+ "metrics": { "emSize": 1024, "baseline": 6.25, "whitespace": 50 },
+ "embed": false,
+ "autoHost": true
+ },
+ "imagePref": {
+ "prefix": "icon-",
+ "png": true,
+ "useClassSelector": true,
+ "color": 0,
+ "bgColor": 16777215,
+ "name": "SalixFont",
+ "classSelector": ".icon",
+ "height": 32,
+ "columns": 16,
+ "margin": 16
+ },
+ "historySize": 50,
+ "quickUsageToken": {
+ "UntitledProject": "YjQzY2VlNmE5OSMxNzM4MjQ1NTYwIzdnTTkrckdJWW0xUjdYNHVWbDJHUlpCKzdCZXpHWHpQbG5nbnRkWXZQeTNa"
+ },
+ "gridSize": 16
+ }
+}
diff --git a/src/css/icons.scss b/src/css/icons.scss
index fcefe20a9..3a9c82a0c 100644
--- a/src/css/icons.scss
+++ b/src/css/icons.scss
@@ -1,453 +1,455 @@
@font-face {
- font-family: 'icon';
- src: url('fonts/icon.eot?uocffs');
- src: url('fonts/icon.eot?uocffs#iefix') format('embedded-opentype'),
- url('fonts/icon.ttf?uocffs') format('truetype'),
- url('fonts/icon.woff?uocffs') format('woff'),
- url('fonts/icon.svg?uocffs#icon') format('svg');
- font-weight: normal;
- font-style: normal;
- font-display: block;
+ font-family: 'icon';
+ src: url('fonts/icon.eot?uocffs');
+ src:
+ url('fonts/icon.eot?uocffs#iefix') format('embedded-opentype'),
+ url('fonts/icon.ttf?uocffs') format('truetype'),
+ url('fonts/icon.woff?uocffs') format('woff'),
+ url('fonts/icon.svg?uocffs#icon') format('svg');
+ font-weight: normal;
+ font-style: normal;
+ font-display: block;
}
-[class^="icon-"], [class*=" icon-"] {
- /* use !important to prevent issues with browser extensions that change fonts */
- font-family: 'icon' !important;
- speak: never;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
+[class^='icon-'],
+[class*=' icon-'] {
+ /* use !important to prevent issues with browser extensions that change fonts */
+ font-family: 'icon' !important;
+ speak: never;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
- /* Better Font Rendering =========== */
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
}
.icon-inactive-car:before {
- content: "\e978";
+ content: '\e978';
}
.icon-hasItemLost:before {
- content: "\e957";
+ content: '\e957';
}
.icon-hasItemDelay:before {
- content: "\e96d";
+ content: '\e96d';
}
.icon-add_entries:before {
- content: "\e953";
+ content: '\e953';
}
.icon-100:before {
- content: "\e901";
+ content: '\e901';
}
.icon-Client_unpaid:before {
- content: "\e98c";
+ content: '\e98c';
}
.icon-History:before {
- content: "\e902";
+ content: '\e902';
}
.icon-Person:before {
- content: "\e903";
+ content: '\e903';
}
.icon-accessory:before {
- content: "\e904";
+ content: '\e904';
}
.icon-account:before {
- content: "\e905";
+ content: '\e905';
}
.icon-actions:before {
- content: "\e907";
+ content: '\e907';
}
.icon-addperson:before {
- content: "\e908";
+ content: '\e908';
}
.icon-agencia_tributaria:before {
- content: "\e948";
+ content: '\e948';
}
.icon-agency:before {
- content: "\e92a";
+ content: '\e92a';
}
.icon-agency-term:before {
- content: "\e909";
+ content: '\e909';
}
.icon-albaran:before {
- content: "\e92c";
+ content: '\e92c';
}
.icon-anonymous:before {
- content: "\e90b";
+ content: '\e90b';
}
.icon-apps:before {
- content: "\e90c";
+ content: '\e90c';
}
.icon-artificial:before {
- content: "\e90d";
+ content: '\e90d';
}
.icon-attach:before {
- content: "\e90e";
+ content: '\e90e';
}
.icon-barcode:before {
- content: "\e90f";
+ content: '\e90f';
}
.icon-basket:before {
- content: "\e910";
+ content: '\e910';
}
.icon-basketadd:before {
- content: "\e911";
+ content: '\e911';
}
.icon-bin:before {
- content: "\e913";
+ content: '\e913';
}
.icon-botanical:before {
- content: "\e914";
+ content: '\e914';
}
.icon-bucket:before {
- content: "\e915";
+ content: '\e915';
}
.icon-buscaman:before {
- content: "\e916";
+ content: '\e916';
}
.icon-buyrequest:before {
- content: "\e917";
+ content: '\e917';
}
.icon-calc_volum .path1:before {
- content: "\e918";
- color: rgb(0, 0, 0);
+ content: '\e918';
+ color: rgb(0, 0, 0);
}
.icon-calc_volum .path2:before {
- content: "\e919";
- margin-left: -1em;
- color: rgb(0, 0, 0);
+ content: '\e919';
+ margin-left: -1em;
+ color: rgb(0, 0, 0);
}
.icon-calc_volum .path3:before {
- content: "\e91c";
- margin-left: -1em;
- color: rgb(0, 0, 0);
+ content: '\e91c';
+ margin-left: -1em;
+ color: rgb(0, 0, 0);
}
.icon-calc_volum .path4:before {
- content: "\e91d";
- margin-left: -1em;
- color: rgb(0, 0, 0);
+ content: '\e91d';
+ margin-left: -1em;
+ color: rgb(0, 0, 0);
}
.icon-calc_volum .path5:before {
- content: "\e91e";
- margin-left: -1em;
- color: rgb(0, 0, 0);
+ content: '\e91e';
+ margin-left: -1em;
+ color: rgb(0, 0, 0);
}
.icon-calc_volum .path6:before {
- content: "\e91f";
- margin-left: -1em;
- color: rgb(255, 255, 255);
+ content: '\e91f';
+ margin-left: -1em;
+ color: rgb(255, 255, 255);
}
.icon-calendar:before {
- content: "\e920";
+ content: '\e920';
}
.icon-catalog:before {
- content: "\e921";
+ content: '\e921';
}
.icon-claims:before {
- content: "\e922";
+ content: '\e922';
}
.icon-client:before {
- content: "\e923";
+ content: '\e923';
}
.icon-clone:before {
- content: "\e924";
+ content: '\e924';
}
.icon-columnadd:before {
- content: "\e925";
+ content: '\e925';
}
.icon-columndelete:before {
- content: "\e926";
+ content: '\e926';
}
.icon-components:before {
- content: "\e927";
+ content: '\e927';
}
.icon-consignatarios:before {
- content: "\e928";
+ content: '\e928';
}
.icon-control:before {
- content: "\e929";
+ content: '\e929';
}
.icon-credit:before {
- content: "\e92b";
+ content: '\e92b';
}
.icon-defaulter:before {
- content: "\e92d";
+ content: '\e92d';
}
.icon-deletedTicket:before {
- content: "\e92e";
+ content: '\e92e';
}
.icon-deleteline:before {
- content: "\e92f";
+ content: '\e92f';
}
.icon-delivery:before {
- content: "\e930";
+ content: '\e930';
}
.icon-deliveryprices:before {
- content: "\e932";
+ content: '\e932';
}
.icon-details:before {
- content: "\e933";
+ content: '\e933';
}
.icon-dfiscales:before {
- content: "\e934";
+ content: '\e934';
}
.icon-disabled:before {
- content: "\e935";
+ content: '\e935';
}
.icon-doc:before {
- content: "\e936";
+ content: '\e936';
}
.icon-entry:before {
- content: "\e937";
+ content: '\e937';
}
.icon-entry_lastbuys:before {
- content: "\e91a";
+ content: '\e91a';
}
.icon-exit:before {
- content: "\e938";
+ content: '\e938';
}
.icon-eye:before {
- content: "\e939";
+ content: '\e939';
}
.icon-fixedPrice:before {
- content: "\e93a";
+ content: '\e93a';
}
.icon-flower:before {
- content: "\e93b";
+ content: '\e93b';
}
.icon-frozen:before {
- content: "\e93c";
+ content: '\e93c';
}
.icon-fruit:before {
- content: "\e93d";
+ content: '\e93d';
}
.icon-funeral:before {
- content: "\e93e";
+ content: '\e93e';
}
.icon-grafana:before {
- content: "\e906";
+ content: '\e906';
}
.icon-greenery:before {
- content: "\e93f";
+ content: '\e93f';
}
.icon-greuge:before {
- content: "\e940";
+ content: '\e940';
}
.icon-grid:before {
- content: "\e941";
+ content: '\e941';
}
.icon-handmade:before {
- content: "\e942";
+ content: '\e942';
}
.icon-handmadeArtificial:before {
- content: "\e943";
+ content: '\e943';
}
.icon-headercol:before {
- content: "\e945";
+ content: '\e945';
}
.icon-info:before {
- content: "\e946";
+ content: '\e946';
}
.icon-inventory:before {
- content: "\e947";
+ content: '\e947';
}
.icon-invoice:before {
- content: "\e968";
- color: #5f5f5f;
+ content: '\e968';
+ color: #5f5f5f;
}
.icon-invoice-in:before {
- content: "\e949";
+ content: '\e949';
}
.icon-invoice-in-create:before {
- content: "\e94a";
+ content: '\e94a';
}
.icon-invoice-out:before {
- content: "\e94b";
+ content: '\e94b';
}
.icon-isTooLittle:before {
- content: "\e94c";
+ content: '\e94c';
}
.icon-item:before {
- content: "\e94d";
+ content: '\e94d';
}
.icon-languaje:before {
- content: "\e970";
+ content: '\e970';
}
.icon-lines:before {
- content: "\e94e";
+ content: '\e94e';
}
.icon-linesprepaired:before {
- content: "\e94f";
+ content: '\e94f';
}
.icon-link-to-corrected:before {
- content: "\e931";
+ content: '\e931';
}
.icon-link-to-correcting:before {
- content: "\e944";
+ content: '\e944';
}
.icon-logout:before {
- content: "\e973";
+ content: '\e973';
}
.icon-mana:before {
- content: "\e950";
+ content: '\e950';
}
.icon-mandatory:before {
- content: "\e951";
+ content: '\e951';
}
.icon-net:before {
- content: "\e952";
+ content: '\e952';
}
.icon-newalbaran:before {
- content: "\e954";
+ content: '\e954';
}
.icon-niche:before {
- content: "\e955";
+ content: '\e955';
}
.icon-no036:before {
- content: "\e956";
+ content: '\e956';
}
.icon-noPayMethod:before {
- content: "\e958";
+ content: '\e958';
}
.icon-notes:before {
- content: "\e959";
+ content: '\e959';
}
.icon-noweb:before {
- content: "\e95a";
+ content: '\e95a';
}
.icon-onlinepayment:before {
- content: "\e95b";
+ content: '\e95b';
}
.icon-package:before {
- content: "\e95c";
+ content: '\e95c';
}
.icon-payment:before {
- content: "\e95d";
+ content: '\e95d';
}
.icon-pbx:before {
- content: "\e95e";
+ content: '\e95e';
}
.icon-pets:before {
- content: "\e95f";
+ content: '\e95f';
}
.icon-photo:before {
- content: "\e960";
+ content: '\e960';
}
.icon-plant:before {
- content: "\e961";
+ content: '\e961';
}
.icon-polizon:before {
- content: "\e962";
+ content: '\e962';
}
.icon-preserved:before {
- content: "\e963";
+ content: '\e963';
}
.icon-recovery:before {
- content: "\e964";
+ content: '\e964';
}
.icon-regentry:before {
- content: "\e965";
+ content: '\e965';
}
.icon-reserva:before {
- content: "\e966";
+ content: '\e966';
}
.icon-revision:before {
- content: "\e967";
+ content: '\e967';
}
.icon-risk:before {
- content: "\e969";
+ content: '\e969';
}
.icon-saysimple:before {
- content: "\e912";
+ content: '\e912';
}
.icon-services:before {
- content: "\e96a";
+ content: '\e96a';
}
.icon-settings:before {
- content: "\e96b";
+ content: '\e96b';
}
.icon-shipment:before {
- content: "\e96c";
+ content: '\e96c';
}
.icon-sign:before {
- content: "\e90a";
+ content: '\e90a';
}
.icon-sms:before {
- content: "\e96e";
+ content: '\e96e';
}
.icon-solclaim:before {
- content: "\e96f";
+ content: '\e96f';
}
.icon-solunion:before {
- content: "\e971";
+ content: '\e971';
}
.icon-splitline:before {
- content: "\e972";
+ content: '\e972';
}
.icon-splur:before {
- content: "\e974";
+ content: '\e974';
}
.icon-stowaway:before {
- content: "\e975";
+ content: '\e975';
}
.icon-supplier:before {
- content: "\e976";
+ content: '\e976';
}
.icon-supplierfalse:before {
- content: "\e977";
+ content: '\e977';
}
.icon-tags:before {
- content: "\e979";
+ content: '\e979';
}
.icon-tax:before {
- content: "\e97a";
+ content: '\e97a';
}
.icon-thermometer:before {
- content: "\e97b";
+ content: '\e97b';
}
.icon-ticket:before {
- content: "\e97c";
+ content: '\e97c';
}
.icon-ticketAdd:before {
- content: "\e97e";
+ content: '\e97e';
}
.icon-traceability:before {
- content: "\e97f";
+ content: '\e97f';
}
.icon-transaction:before {
- content: "\e91b";
+ content: '\e91b';
}
.icon-treatments:before {
- content: "\e980";
+ content: '\e980';
}
.icon-trolley:before {
- content: "\e900";
+ content: '\e900';
}
.icon-troncales:before {
- content: "\e982";
+ content: '\e982';
}
.icon-unavailable:before {
- content: "\e983";
+ content: '\e983';
}
.icon-visible_columns:before {
- content: "\e984";
+ content: '\e984';
}
.icon-volume:before {
- content: "\e985";
+ content: '\e985';
}
.icon-wand:before {
- content: "\e986";
+ content: '\e986';
}
.icon-web:before {
- content: "\e987";
+ content: '\e987';
}
.icon-wiki:before {
- content: "\e989";
+ content: '\e989';
}
.icon-worker:before {
- content: "\e98a";
+ content: '\e98a';
}
.icon-zone:before {
- content: "\e98b";
+ content: '\e98b';
}
diff --git a/src/filters/date.js b/src/filters/date.js
index 058c90060..81e51039c 100644
--- a/src/filters/date.js
+++ b/src/filters/date.js
@@ -30,10 +30,12 @@ export function isValidDate(date) {
export function toDateFormat(date, locale = 'es-ES', opts = {}) {
if (!isValidDate(date)) return '';
- const format = Object.assign(
- { year: 'numeric', month: '2-digit', day: '2-digit' },
- opts
- );
+ const format = {
+ year: 'numeric',
+ month: '2-digit',
+ day: '2-digit',
+ ...opts,
+ };
return new Date(date).toLocaleDateString(locale, format);
}
@@ -104,17 +106,17 @@ export function secondsToHoursMinutes(seconds, includeHSuffix = true) {
const hours = Math.floor(seconds / 3600);
const remainingMinutes = seconds % 3600;
const minutes = Math.floor(remainingMinutes / 60);
- const formattedHours = hours < 10 ? '0' + hours : hours;
- const formattedMinutes = minutes < 10 ? '0' + minutes : minutes;
+ const formattedHours = hours < 10 ? `0${hours}` : hours;
+ const formattedMinutes = minutes < 10 ? `0${minutes}` : minutes;
// Append "h." if includeHSuffix is true
const suffix = includeHSuffix ? ' h.' : '';
// Return formatted string
- return formattedHours + ':' + formattedMinutes + suffix;
+ return `${formattedHours}:${formattedMinutes}${suffix}`;
}
export function getTimeDifferenceWithToday(date) {
- let today = Date.vnNew();
+ const today = Date.vnNew();
today.setHours(0, 0, 0, 0);
date = new Date(date);
diff --git a/src/filters/filterPanel.js b/src/filters/filterPanel.js
index ee91e6749..7046c88c6 100644
--- a/src/filters/filterPanel.js
+++ b/src/filters/filterPanel.js
@@ -5,12 +5,12 @@
* @return {Object} The fields as object
*/
function fieldsToObject(fields) {
- let fieldsObj = {};
+ const fieldsObj = {};
if (Array.isArray(fields)) {
- for (let field of fields) fieldsObj[field] = true;
+ for (const field of fields) fieldsObj[field] = true;
} else if (typeof fields == 'object') {
- for (let field in fields) {
+ for (const field in fields) {
if (fields[field]) fieldsObj[field] = true;
}
}
@@ -26,7 +26,7 @@ function fieldsToObject(fields) {
* @return {Array} The merged fields as an array
*/
function mergeFields(src, dst) {
- let fields = {};
+ const fields = {};
Object.assign(fields, fieldsToObject(src), fieldsToObject(dst));
return Object.keys(fields);
}
@@ -39,7 +39,7 @@ function mergeFields(src, dst) {
* @return {Array} The merged wheres
*/
function mergeWhere(src, dst) {
- let and = [];
+ const and = [];
if (src) and.push(src);
if (dst) and.push(dst);
return simplifyOperation(and, 'and');
@@ -53,7 +53,7 @@ function mergeWhere(src, dst) {
* @return {Object} The result filter
*/
function mergeFilters(src, dst) {
- let res = Object.assign({}, dst);
+ const res = { ...dst };
if (!src) return res;
@@ -80,12 +80,12 @@ function simplifyOperation(operation, operator) {
}
function buildFilter(params, builderFunc) {
- let and = [];
+ const and = [];
- for (let param in params) {
- let value = params[param];
+ for (const param in params) {
+ const value = params[param];
if (value == null) continue;
- let expr = builderFunc(param, value);
+ const expr = builderFunc(param, value);
if (expr) and.push(expr);
}
return simplifyOperation(and, 'and');
diff --git a/src/filters/getDifferences.js b/src/filters/getDifferences.js
index 3e1061aba..ec172feaa 100644
--- a/src/filters/getDifferences.js
+++ b/src/filters/getDifferences.js
@@ -1,14 +1,14 @@
export default function getDifferences(obj1, obj2) {
- let diff = {};
+ const diff = {};
delete obj1.$index;
delete obj2.$index;
- for (let key in obj1) {
+ for (const key in obj1) {
if (obj2[key] && JSON.stringify(obj1[key]) !== JSON.stringify(obj2[key])) {
diff[key] = obj2[key];
}
}
- for (let key in obj2) {
+ for (const key in obj2) {
if (
obj1[key] === undefined ||
JSON.stringify(obj1[key]) !== JSON.stringify(obj2[key])
diff --git a/src/filters/toDateString.js b/src/filters/toDateString.js
index 86d2a68e1..0387a542d 100644
--- a/src/filters/toDateString.js
+++ b/src/filters/toDateString.js
@@ -1,10 +1,10 @@
export default function toDateString(date) {
let day = date.getDate();
let month = date.getMonth() + 1;
- let year = date.getFullYear();
+ const year = date.getFullYear();
if (day < 10) day = `0${day}`;
if (month < 10) month = `0${month}`;
- return `${year}-${month}-${day}`
-}
\ No newline at end of file
+ return `${year}-${month}-${day}`;
+}
diff --git a/src/filters/toLowerCamel.js b/src/filters/toLowerCamel.js
index ebfe28bc2..c9cdf2544 100644
--- a/src/filters/toLowerCamel.js
+++ b/src/filters/toLowerCamel.js
@@ -1,5 +1,5 @@
export default function toLowerCamel(value) {
if (!value) return;
- if (typeof (value) !== 'string') return value;
+ if (typeof value !== 'string') return value;
return value.charAt(0).toLowerCase() + value.slice(1);
-}
\ No newline at end of file
+}
diff --git a/src/filters/toRelativeDate.js b/src/filters/toRelativeDate.js
index 76e67dbea..ccc8a010c 100644
--- a/src/filters/toRelativeDate.js
+++ b/src/filters/toRelativeDate.js
@@ -9,7 +9,7 @@ export default function formatDate(dateVal) {
const dateZeroTime = new Date(dateVal);
dateZeroTime.setHours(0, 0, 0, 0);
const diff = Math.trunc(
- (today.getTime() - dateZeroTime.getTime()) / (1000 * 3600 * 24)
+ (today.getTime() - dateZeroTime.getTime()) / (1000 * 3600 * 24),
);
let format;
if (diff === 0) format = t('globals.today');
diff --git a/src/i18n/index.js b/src/i18n/index.js
index aa25fcc14..a55a33217 100644
--- a/src/i18n/index.js
+++ b/src/i18n/index.js
@@ -11,14 +11,14 @@ for (const file in files) {
translations[lang] = g.default;
})
.finally(() => {
- const actualLang = lang + '.yml';
+ const actualLang = `${lang}.yml`;
for (const module in modules) {
if (!module.endsWith(actualLang)) continue;
modules[module]().then((t) => {
Object.assign(translations[lang], t.default);
- })
+ });
}
- });
+ });
}
export const localeEquivalence = {
diff --git a/src/pages/Account/AccountConnections.vue b/src/pages/Account/AccountConnections.vue
index a0568acc4..afc5021e5 100644
--- a/src/pages/Account/AccountConnections.vue
+++ b/src/pages/Account/AccountConnections.vue
@@ -80,7 +80,7 @@ const killSession = async ({ userId, created }) => {
openConfirmationModal(
t('Session will be killed'),
t('Are you sure you want to continue?'),
- () => killSession(row)
+ () => killSession(row),
)
"
outline
diff --git a/src/pages/Account/AccountList.vue b/src/pages/Account/AccountList.vue
index 4f3f544c1..4b39bcfca 100644
--- a/src/pages/Account/AccountList.vue
+++ b/src/pages/Account/AccountList.vue
@@ -149,12 +149,12 @@ const columns = computed(() => [
:right-search="false"
>
-
+
diff --git a/src/pages/Account/Alias/Card/AliasUsers.vue b/src/pages/Account/Alias/Card/AliasUsers.vue
index 6a2f6df90..c10a42c88 100644
--- a/src/pages/Account/Alias/Card/AliasUsers.vue
+++ b/src/pages/Account/Alias/Card/AliasUsers.vue
@@ -57,7 +57,7 @@ watch(
store.url = urlPath.value;
store.filter = filter;
fetchAliases();
- }
+ },
);
const fetchAliases = () => paginateRef.value.fetch();
@@ -91,7 +91,7 @@ const fetchAliases = () => paginateRef.value.fetch();
openConfirmationModal(
t('User will be removed from alias'),
t('Are you sure you want to continue?'),
- () => deleteAlias(row)
+ () => deleteAlias(row),
)
"
>
diff --git a/src/pages/Account/Card/AccountMailForwarding.vue b/src/pages/Account/Card/AccountMailForwarding.vue
index 0e5ae3122..4980e2a40 100644
--- a/src/pages/Account/Card/AccountMailForwarding.vue
+++ b/src/pages/Account/Card/AccountMailForwarding.vue
@@ -28,7 +28,7 @@ const loading = ref(false);
const hasDataChanged = computed(
() =>
formData.value.forwardTo !== initialData.value.forwardTo ||
- initialData.value.hasData !== hasData.value
+ initialData.value.hasData !== hasData.value,
);
const fetchMailForwards = async () => {
@@ -77,7 +77,7 @@ const setInitialData = async () => {
watch(
() => route.params.id,
- () => setInitialData()
+ () => setInitialData(),
);
onMounted(async () => await setInitialData());
diff --git a/src/pages/Account/Card/AccountPrivileges.vue b/src/pages/Account/Card/AccountPrivileges.vue
index fea57105b..a75e27c0a 100644
--- a/src/pages/Account/Card/AccountPrivileges.vue
+++ b/src/pages/Account/Card/AccountPrivileges.vue
@@ -14,7 +14,7 @@ const rolesOptions = ref([]);
const formModelRef = ref();
watch(
() => route.params.id,
- () => formModelRef.value.reset()
+ () => formModelRef.value.reset(),
);
diff --git a/src/pages/Account/InheritedRoles.vue b/src/pages/Account/InheritedRoles.vue
index 2ae857c9b..60c92f6ce 100644
--- a/src/pages/Account/InheritedRoles.vue
+++ b/src/pages/Account/InheritedRoles.vue
@@ -44,7 +44,7 @@ watch(
store.filter = filter.value;
store.limit = 0;
fetchSubRoles();
- }
+ },
);
const fetchSubRoles = () => paginateRef.value.fetch();
diff --git a/src/pages/Account/Role/Card/InheritedRoles.vue b/src/pages/Account/Role/Card/InheritedRoles.vue
index 95a9eb12a..0c0d0a657 100644
--- a/src/pages/Account/Role/Card/InheritedRoles.vue
+++ b/src/pages/Account/Role/Card/InheritedRoles.vue
@@ -43,7 +43,7 @@ watch(
store.url = urlPath.value;
store.filter = filter.value;
fetchSubRoles();
- }
+ },
);
const fetchSubRoles = () => paginateRef.value.fetch();
diff --git a/src/pages/Claim/Card/ClaimAction.vue b/src/pages/Claim/Card/ClaimAction.vue
index bab041daa..8106d6bb5 100644
--- a/src/pages/Claim/Card/ClaimAction.vue
+++ b/src/pages/Claim/Card/ClaimAction.vue
@@ -178,7 +178,7 @@ async function save(data) {
}
async function importToNewRefundTicket() {
- try{
+ try {
await post(`ClaimBeginnings/${claimId}/importToNewRefundTicket`);
await claimActionsForm.value.reload();
quasar.notify({
@@ -187,7 +187,7 @@ async function importToNewRefundTicket() {
});
} catch (error) {
const errorMessage = error.response?.data?.error?.message;
- notify( t(errorMessage), 'negative' );
+ notify(t(errorMessage), 'negative');
}
}
diff --git a/src/pages/Claim/Card/ClaimDevelopment.vue b/src/pages/Claim/Card/ClaimDevelopment.vue
index d17c6b4e6..d099acb3e 100644
--- a/src/pages/Claim/Card/ClaimDevelopment.vue
+++ b/src/pages/Claim/Card/ClaimDevelopment.vue
@@ -238,7 +238,9 @@ const columns = computed(() => [
diff --git a/src/pages/Claim/Card/ClaimLines.vue b/src/pages/Claim/Card/ClaimLines.vue
index 755c70460..3a8c81b04 100644
--- a/src/pages/Claim/Card/ClaimLines.vue
+++ b/src/pages/Claim/Card/ClaimLines.vue
@@ -79,7 +79,7 @@ const columns = computed(() => [
field: ({ sale }) => sale.quantity,
sortable: true,
style: 'padding-right: 2%;',
- headerStyle: 'padding-right: 2%;'
+ headerStyle: 'padding-right: 2%;',
},
{
name: 'claimed',
@@ -113,7 +113,7 @@ const columns = computed(() => [
format: (value) => toCurrency(value),
sortable: true,
style: 'padding-right: 2%;',
- headerStyle: 'padding-right: 2%;'
+ headerStyle: 'padding-right: 2%;',
},
]);
@@ -160,7 +160,7 @@ function fillClaimedQuantities() {
const formData = claimLinesForm.value.formData;
let hasChanges = false;
- const selectedRows = formData.filter(row => selected.value.includes(row));
+ const selectedRows = formData.filter((row) => selected.value.includes(row));
for (const row of selectedRows) {
if (row.quantity === 0 || row.quantity === null) {
@@ -170,10 +170,10 @@ function fillClaimedQuantities() {
}
if (hasChanges) {
- quasar.notify({
- message: t('Quantities filled automatically'),
- type: 'positive',
- });
+ quasar.notify({
+ message: t('Quantities filled automatically'),
+ type: 'positive',
+ });
} else {
quasar.notify({
message: t('No quantities to fill'),
@@ -181,8 +181,6 @@ function fillClaimedQuantities() {
});
}
}
-
-
@@ -210,7 +208,6 @@ function fillClaimedQuantities() {
auto-load
/>
-
-
+
@@ -297,7 +289,6 @@ function fillClaimedQuantities() {
type="number"
dense
autofocus
-
/>
diff --git a/src/pages/Claim/Card/ClaimNotes.vue b/src/pages/Claim/Card/ClaimNotes.vue
index ba2dc8ee6..4f87d3ee5 100644
--- a/src/pages/Claim/Card/ClaimNotes.vue
+++ b/src/pages/Claim/Card/ClaimNotes.vue
@@ -35,7 +35,7 @@ const body = {
workerFk: user.value.id,
};
-
+
diff --git a/src/pages/Claim/Card/__tests__/ClaimDescriptorMenu.spec.js b/src/pages/Claim/Card/__tests__/ClaimDescriptorMenu.spec.js
index 2142f41f2..6cf297a2d 100644
--- a/src/pages/Claim/Card/__tests__/ClaimDescriptorMenu.spec.js
+++ b/src/pages/Claim/Card/__tests__/ClaimDescriptorMenu.spec.js
@@ -27,7 +27,7 @@ describe('ClaimDescriptorMenu', () => {
await vm.remove();
expect(vm.quasar.notify).toHaveBeenCalledWith(
- expect.objectContaining({ type: 'positive' })
+ expect.objectContaining({ type: 'positive' }),
);
});
});
diff --git a/src/pages/Customer/Card/CustomerUnpaid.vue b/src/pages/Customer/Card/CustomerUnpaid.vue
index f76e35821..4041e1efa 100644
--- a/src/pages/Customer/Card/CustomerUnpaid.vue
+++ b/src/pages/Customer/Card/CustomerUnpaid.vue
@@ -50,8 +50,11 @@ const filterClientFindOne = {
>
-
+
diff --git a/src/pages/Customer/components/CustomerFileManagementCreate.vue b/src/pages/Customer/components/CustomerFileManagementCreate.vue
index f33a47bcc..84933ea37 100644
--- a/src/pages/Customer/components/CustomerFileManagementCreate.vue
+++ b/src/pages/Customer/components/CustomerFileManagementCreate.vue
@@ -224,7 +224,7 @@ const toCustomerFileManagement = () => {
{{
`${t(
- 'Allowed content types'
+ 'Allowed content types',
)}: ${allowedContentTypes.join(', ')}`
}}
diff --git a/src/pages/Customer/components/CustomerFileManagementEdit.vue b/src/pages/Customer/components/CustomerFileManagementEdit.vue
index 107f41330..4e53672b4 100644
--- a/src/pages/Customer/components/CustomerFileManagementEdit.vue
+++ b/src/pages/Customer/components/CustomerFileManagementEdit.vue
@@ -200,7 +200,7 @@ const toCustomerFileManagement = () => {
{{
`${t(
- 'Allowed content types'
+ 'Allowed content types',
)}: ${allowedContentTypes.join(', ')}`
}}
diff --git a/src/pages/Customer/composables/getClient.js b/src/pages/Customer/composables/getClient.js
index 3b9e811de..20b587a8f 100644
--- a/src/pages/Customer/composables/getClient.js
+++ b/src/pages/Customer/composables/getClient.js
@@ -13,4 +13,4 @@ export async function getClient(clientId, _filter = {}) {
};
const params = { filter: JSON.stringify(filter) };
return await axios.get('Clients', { params });
-};
\ No newline at end of file
+}
diff --git a/src/pages/Entry/Card/EntryBuysImport.vue b/src/pages/Entry/Card/EntryBuysImport.vue
index 726fec07d..9ed8340be 100644
--- a/src/pages/Entry/Card/EntryBuysImport.vue
+++ b/src/pages/Entry/Card/EntryBuysImport.vue
@@ -126,7 +126,7 @@ const fetchBuys = async (buys) => {
const params = { buys };
const { data } = await axios.post(
`Entries/${route.params.id}/importBuysPreview`,
- params
+ params,
);
importData.value.buys = data;
};
diff --git a/src/pages/InvoiceIn/composables/setRectificative.js b/src/pages/InvoiceIn/composables/setRectificative.js
index a1afb8fb0..01038d91a 100644
--- a/src/pages/InvoiceIn/composables/setRectificative.js
+++ b/src/pages/InvoiceIn/composables/setRectificative.js
@@ -3,7 +3,7 @@ import axios from 'axios';
export async function setRectificative(route) {
const card = route.matched.find((route) => route.name === 'InvoiceInCard');
const corrective = card.children.find(
- (route) => route.name === 'InvoiceInCorrective'
+ (route) => route.name === 'InvoiceInCorrective',
);
corrective.meta.hidden = !(
diff --git a/src/pages/Login/ResetPassword.vue b/src/pages/Login/ResetPassword.vue
index 081801e0e..58e10c390 100644
--- a/src/pages/Login/ResetPassword.vue
+++ b/src/pages/Login/ResetPassword.vue
@@ -37,7 +37,7 @@ async function onSubmit() {
await axios.post(
'VnUsers/reset-password',
{ newPassword: newPassword.value },
- { headers }
+ { headers },
);
router.push('Login');
quasar.notify({
diff --git a/src/pages/Order/Card/OrderVolume.vue b/src/pages/Order/Card/OrderVolume.vue
index fb104157e..a09be8c32 100644
--- a/src/pages/Order/Card/OrderVolume.vue
+++ b/src/pages/Order/Card/OrderVolume.vue
@@ -71,9 +71,7 @@ onMounted(async () => (stateStore.rightDrawer = false));
auto-load
/>
-
+
-
+
diff --git a/src/pages/Route/Agency/composables/getAgencies.js b/src/pages/Route/Agency/composables/getAgencies.js
index 180ac943e..7fc7c1997 100644
--- a/src/pages/Route/Agency/composables/getAgencies.js
+++ b/src/pages/Route/Agency/composables/getAgencies.js
@@ -9,7 +9,7 @@ export async function getAgencies(formData, client, _filter = {}) {
};
let agency = null;
- let params = {
+ const params = {
filter: JSON.stringify(filter),
warehouseFk: formData.warehouseId,
addressFk: formData.addressId,
diff --git a/src/pages/Route/Card/RouteDescriptorMenu.vue b/src/pages/Route/Card/RouteDescriptorMenu.vue
index d1a70c868..dabd38583 100644
--- a/src/pages/Route/Card/RouteDescriptorMenu.vue
+++ b/src/pages/Route/Card/RouteDescriptorMenu.vue
@@ -23,7 +23,7 @@ async function openRouteReport() {
const token = getTokenMultimedia();
window.open(
`${url}/api/Routes/${routeId}/driver-route-pdf?access_token=${token}`,
- '_blank'
+ '_blank',
);
}
diff --git a/src/pages/Route/Card/RouteListTicketsDialog.vue b/src/pages/Route/Card/RouteListTicketsDialog.vue
index b9b2ee36b..bf2c7d420 100644
--- a/src/pages/Route/Card/RouteListTicketsDialog.vue
+++ b/src/pages/Route/Card/RouteListTicketsDialog.vue
@@ -106,8 +106,8 @@ const setTicketsRoute = async () => {
(selectedRows.value || [])
.filter((ticket) => ticket?.id)
.map((ticket) =>
- axios.patch(`Routes/${$props.id}/insertTicket`, { ticketId: ticket.id })
- )
+ axios.patch(`Routes/${$props.id}/insertTicket`, { ticketId: ticket.id }),
+ ),
);
await axios.post(`Routes/${$props.id}/updateVolume`);
emit('ok');
diff --git a/src/pages/Route/Cmr/locale/en.yml b/src/pages/Route/Cmr/locale/en.yml
index 49b9895f8..fc6f28373 100644
--- a/src/pages/Route/Cmr/locale/en.yml
+++ b/src/pages/Route/Cmr/locale/en.yml
@@ -1,31 +1,31 @@
cmr:
- search: Search Cmr
- searchInfo: You can search Cmr by Id
- params:
- agency: Agency
- client: Client
- cmrFk: CMR id
- country: Country
- created: Created
- destination: Destination
- downloadCmrs: Download CMRs
- etd: ETD
- etdTooltip: Estimated Time Delivery
- hasCmrDms: Attached in gestdoc
- observation: Observation
- packageList: Package List
- paymentInstructions: Payment instructions
- routeFk: Route id
- results: results
- search: General search
- sender: Sender
- senderInstructions: Sender instructions
- shipped: Shipped
- specialAgreements: Special agreements
- supplier: Carrier
- ticketFk: Ticket id
- vehiclePlate: Vehicle plate
- viewCmr: View CMR
- warehouse: Warehouse
- 'true': 'Yes'
- 'false': 'No'
\ No newline at end of file
+ search: Search Cmr
+ searchInfo: You can search Cmr by Id
+ params:
+ agency: Agency
+ client: Client
+ cmrFk: CMR id
+ country: Country
+ created: Created
+ destination: Destination
+ downloadCmrs: Download CMRs
+ etd: ETD
+ etdTooltip: Estimated Time Delivery
+ hasCmrDms: Attached in gestdoc
+ observation: Observation
+ packageList: Package List
+ paymentInstructions: Payment instructions
+ routeFk: Route id
+ results: results
+ search: General search
+ sender: Sender
+ senderInstructions: Sender instructions
+ shipped: Shipped
+ specialAgreements: Special agreements
+ supplier: Carrier
+ ticketFk: Ticket id
+ vehiclePlate: Vehicle plate
+ viewCmr: View CMR
+ warehouse: Warehouse
+ 'true': 'Yes'
+ 'false': 'No'
diff --git a/src/pages/Route/Cmr/locale/es.yml b/src/pages/Route/Cmr/locale/es.yml
index b419a238b..417b50967 100644
--- a/src/pages/Route/Cmr/locale/es.yml
+++ b/src/pages/Route/Cmr/locale/es.yml
@@ -1,31 +1,31 @@
cmr:
- search: Buscar Cmr
- searchInfo: Puedes buscar cmr por id
- params:
- agency: Agencia
- client: Cliente
- cmrFk: Id cmr
- country: País
- created: Creado
- destination: Destinatario
- downloadCmrs: Descargar CMRs
- etd: ETD
- etdTooltip: Fecha estimada de entrega
- hasCmrDms: Adjunto en gestdoc
- observation: Observaciones
- packageList: Listado embalajes
- paymentInstructions: Instrucciones de pago
- routeFk: Id ruta
- results: Resultados
- search: Busqueda general
- sender: Remitente
- senderInstructions: Instrucciones de envío
- shipped: F. envío
- specialAgreements: Acuerdos especiales
- supplier: Transportista
- ticketFk: Id ticket
- vehiclePlate: Matrícula
- viewCmr: Ver CMR
- warehouse: Almacén
- 'true': 'Si'
- 'false': 'No'
\ No newline at end of file
+ search: Buscar Cmr
+ searchInfo: Puedes buscar cmr por id
+ params:
+ agency: Agencia
+ client: Cliente
+ cmrFk: Id cmr
+ country: País
+ created: Creado
+ destination: Destinatario
+ downloadCmrs: Descargar CMRs
+ etd: ETD
+ etdTooltip: Fecha estimada de entrega
+ hasCmrDms: Adjunto en gestdoc
+ observation: Observaciones
+ packageList: Listado embalajes
+ paymentInstructions: Instrucciones de pago
+ routeFk: Id ruta
+ results: Resultados
+ search: Busqueda general
+ sender: Remitente
+ senderInstructions: Instrucciones de envío
+ shipped: F. envío
+ specialAgreements: Acuerdos especiales
+ supplier: Transportista
+ ticketFk: Id ticket
+ vehiclePlate: Matrícula
+ viewCmr: Ver CMR
+ warehouse: Almacén
+ 'true': 'Si'
+ 'false': 'No'
diff --git a/src/pages/Route/Vehicle/Card/VehicleEventInclusionForm.vue b/src/pages/Route/Vehicle/Card/VehicleEventInclusionForm.vue
index 06141736c..fefd296e4 100644
--- a/src/pages/Route/Vehicle/Card/VehicleEventInclusionForm.vue
+++ b/src/pages/Route/Vehicle/Card/VehicleEventInclusionForm.vue
@@ -68,17 +68,13 @@ onMounted(() => {
const createVehicleEvent = async () => {
vehicleFormData.value.vehicleFk = route.params.id;
vehicleFormData.value.userFk = user.value.id;
-
+
if (isNew.value) {
await axios.post(`VehicleEvents`, vehicleFormData.value);
} else {
- await axios.patch(
- `VehicleEvents/${props.event?.id}`,
- vehicleFormData.value,
- );
+ await axios.patch(`VehicleEvents/${props.event?.id}`, vehicleFormData.value);
}
await refetchEvents();
-
};
const deleteVehicleEvent = async () => {
@@ -88,36 +84,34 @@ const deleteVehicleEvent = async () => {
};
const refetchEvents = async () => {
- await arrayData.refresh({
+ await arrayData.refresh({
append: false,
params: {
filter: {
where: {
vehicleFk: route.params.id,
and: [
- {
+ {
or: [
{ started: { lte: props.lastDay?.toISOString() } },
- { started: null }
- ]
+ { started: null },
+ ],
},
- {
+ {
or: [
{ finished: { gte: props.firstDay?.toISOString() } },
- { finished: null }
- ]
- }
- ]
- }
- }
- }
+ { finished: null },
+ ],
+ },
+ ],
+ },
+ },
+ },
});
emit('refresh-events');
notify(t('globals.dataSaved'), 'positive');
emit('closeForm');
};
-
-
@@ -139,8 +133,8 @@ const refetchEvents = async () => {
/>
diff --git a/src/pages/Route/Vehicle/Card/VehicleEvents.vue b/src/pages/Route/Vehicle/Card/VehicleEvents.vue
index 5a90c9586..e72a746c3 100644
--- a/src/pages/Route/Vehicle/Card/VehicleEvents.vue
+++ b/src/pages/Route/Vehicle/Card/VehicleEvents.vue
@@ -24,7 +24,7 @@ const vehicleEventsFormProps = reactive({
});
const refreshEvents = async () => {
- await vehicleEventsPanelRef.value.fetchData();
+ await vehicleEventsPanelRef.value.fetchData();
};
const openForm = (data) => {
@@ -38,21 +38,20 @@ const onVehicleEventFormClose = () => {
showVehicleEventForm.value = false;
vehicleEventsFormProps.value = {};
};
-
-
-
-
-
-
+
+
+
+
+
{
if (!params.value.vehicleFk || !props.firstDay || !props.lastDay) return;
-
+
try {
await arrayData.applyFilter({
params: {
@@ -63,18 +63,22 @@ const fetchData = async () => {
where: {
vehicleFk: route.params.id,
and: [
- { or: [
- { started: { lte: props.lastDay } },
- { started: null }
- ]},
- { or: [
- { finished: { gte: props.firstDay } },
- { finished: null }
- ]}
- ]
- }
- }
- }
+ {
+ or: [
+ { started: { lte: props.lastDay } },
+ { started: null },
+ ],
+ },
+ {
+ or: [
+ { finished: { gte: props.firstDay } },
+ { finished: null },
+ ],
+ },
+ ],
+ },
+ },
+ },
});
emit('update:events', arrayData.store.data || []);
} catch (error) {
@@ -95,7 +99,7 @@ watch(
(newEvents) => {
emit('update:events', newEvents);
},
- { deep: true }
+ { deep: true },
);
const deleteEvent = async (id) => {
@@ -119,9 +123,8 @@ onMounted(async () => {
});
defineExpose({
- fetchData
+ fetchData,
});
-
diff --git a/src/pages/Route/Vehicle/VehicleCalendar.vue b/src/pages/Route/Vehicle/VehicleCalendar.vue
index 681bb966a..6adb62dd0 100644
--- a/src/pages/Route/Vehicle/VehicleCalendar.vue
+++ b/src/pages/Route/Vehicle/VehicleCalendar.vue
@@ -2,12 +2,8 @@
import EntityCalendar from 'src/components/EntityCalendar.vue';
const emit = defineEmits(['onDateSelected']);
-
- emit('onDateSelected', e)"
- />
-
\ No newline at end of file
+ emit('onDateSelected', e)" />
+
diff --git a/src/pages/Route/Vehicle/VehicleCalendarGrid.vue b/src/pages/Route/Vehicle/VehicleCalendarGrid.vue
index 99b6602c8..525809f7f 100644
--- a/src/pages/Route/Vehicle/VehicleCalendarGrid.vue
+++ b/src/pages/Route/Vehicle/VehicleCalendarGrid.vue
@@ -24,26 +24,26 @@ const events = ref([]);
const refreshEvents = () => {
days.value = {};
if (!events.value?.length || !firstDay.value || !lastDay.value) return;
-
+
let day = new Date(firstDay.value.getTime());
let endDate = new Date(lastDay.value.getTime());
while (day <= endDate) {
let stamp = day.getTime();
let dayEvents = [];
-
+
for (let event of events.value) {
const eventStart = event.started ? new Date(event.started).getTime() : null;
const eventEnd = event.finished ? new Date(event.finished).getTime() : null;
-
- let match = (!eventStart || stamp >= eventStart) &&
- (!eventEnd || stamp <= eventEnd);
-
+
+ let match =
+ (!eventStart || stamp >= eventStart) && (!eventEnd || stamp <= eventEnd);
+
if (match) {
dayEvents.push(event);
}
}
-
+
if (dayEvents.length) {
days.value[stamp] = dayEvents;
}
@@ -57,7 +57,7 @@ watch(
(value) => {
_data.value = value;
events.value = Array.isArray(value) ? value : [];
-
+
function toStamp(date) {
return date && new Date(date).setHours(0, 0, 0, 0);
}
@@ -75,14 +75,19 @@ watch(
{ immediate: true },
);
-watch(() => entityCalendarRef.value?.firstDay, (newVal) => {
- if (newVal) firstDay.value = new Date(newVal);
-});
-
-watch(() => entityCalendarRef.value?.lastDay, (newVal) => {
- if (newVal) lastDay.value = new Date(newVal);
-});
+watch(
+ () => entityCalendarRef.value?.firstDay,
+ (newVal) => {
+ if (newVal) firstDay.value = new Date(newVal);
+ },
+);
+watch(
+ () => entityCalendarRef.value?.lastDay,
+ (newVal) => {
+ if (newVal) lastDay.value = new Date(newVal);
+ },
+);
@@ -94,4 +99,4 @@ watch(() => entityCalendarRef.value?.lastDay, (newVal) => {
@refresh-events="refreshEvents"
v-bind="$attrs"
/>
-
\ No newline at end of file
+
diff --git a/src/pages/Shelving/Parking/locale/en.yml b/src/pages/Shelving/Parking/locale/en.yml
index 2076f38b4..297d25993 100644
--- a/src/pages/Shelving/Parking/locale/en.yml
+++ b/src/pages/Shelving/Parking/locale/en.yml
@@ -2,4 +2,4 @@ parking:
pickingOrder: Picking order
sector: Sector
search: Search parking
- searchInfo: You can search by parking code
\ No newline at end of file
+ searchInfo: You can search by parking code
diff --git a/src/pages/Shelving/Parking/locale/es.yml b/src/pages/Shelving/Parking/locale/es.yml
index 17fe3af53..2cffdc5de 100644
--- a/src/pages/Shelving/Parking/locale/es.yml
+++ b/src/pages/Shelving/Parking/locale/es.yml
@@ -2,4 +2,4 @@ parking:
pickingOrder: Orden de recogida
sector: Sector
search: Buscar parking
- searchInfo: Puedes buscar por código de parking
\ No newline at end of file
+ searchInfo: Puedes buscar por código de parking
diff --git a/src/pages/Shelving/locale/en.yml b/src/pages/Shelving/locale/en.yml
index bd031f50c..47c571023 100644
--- a/src/pages/Shelving/locale/en.yml
+++ b/src/pages/Shelving/locale/en.yml
@@ -6,4 +6,4 @@ shelving:
summary:
recyclable: Recyclable
search: Search shelving
- searchInfo: You can search by shelving reference
\ No newline at end of file
+ searchInfo: You can search by shelving reference
diff --git a/src/pages/Shelving/locale/es.yml b/src/pages/Shelving/locale/es.yml
index 729485e70..4031c5326 100644
--- a/src/pages/Shelving/locale/es.yml
+++ b/src/pages/Shelving/locale/es.yml
@@ -6,4 +6,4 @@ shelving:
summary:
recyclable: Reciclable
search: Buscar carro
- searchInfo: Puedes buscar por referencia del carro
\ No newline at end of file
+ searchInfo: Puedes buscar por referencia del carro
diff --git a/src/pages/Supplier/Card/SupplierSummary.vue b/src/pages/Supplier/Card/SupplierSummary.vue
index b658ca5fb..cdb7d94e5 100644
--- a/src/pages/Supplier/Card/SupplierSummary.vue
+++ b/src/pages/Supplier/Card/SupplierSummary.vue
@@ -76,7 +76,7 @@ const getUrl = (section) => `#/supplier/${entityId.value}/${section}`;
{{
dashIfEmpty(
supplier.companySize &&
- t('globals.' + supplier.companySize)
+ t('globals.' + supplier.companySize),
)
}}
diff --git a/src/pages/Ticket/Card/TicketComponents.vue b/src/pages/Ticket/Card/TicketComponents.vue
index 5936ffc28..9a3a94ebb 100644
--- a/src/pages/Ticket/Card/TicketComponents.vue
+++ b/src/pages/Ticket/Card/TicketComponents.vue
@@ -38,7 +38,7 @@ watch(
if (ticketData.value?.zone && ticketData.value?.zone?.isVolumetric)
getTicketVolume();
},
- { immediate: true }
+ { immediate: true },
);
const salesFilter = computed(() => ({
diff --git a/src/pages/Ticket/Card/TicketDescriptor.vue b/src/pages/Ticket/Card/TicketDescriptor.vue
index c6c6e6c6b..3cab54b98 100644
--- a/src/pages/Ticket/Card/TicketDescriptor.vue
+++ b/src/pages/Ticket/Card/TicketDescriptor.vue
@@ -46,7 +46,9 @@ async function getClaims() {
originalTicket.value = data[0]?.originalTicketFk;
}
async function getProblems() {
- const { data } = await axios.get(`Tickets/getTicketProblems`, {params: { ids: [entityId.value] }});
+ const { data } = await axios.get(`Tickets/getTicketProblems`, {
+ params: { ids: [entityId.value] },
+ });
if (!data) return;
problems.value = data[0];
}
diff --git a/src/pages/Ticket/Card/TicketPurchaseRequest.vue b/src/pages/Ticket/Card/TicketPurchaseRequest.vue
index 4e77c7277..19debf81b 100644
--- a/src/pages/Ticket/Card/TicketPurchaseRequest.vue
+++ b/src/pages/Ticket/Card/TicketPurchaseRequest.vue
@@ -30,7 +30,7 @@ watch(
async (val) => {
crudModelFilter.where.ticketFk = val;
tableRef.value.reload();
- }
+ },
);
const crudModelFilter = reactive({
@@ -149,9 +149,9 @@ const columns = computed(() => [
openConfirmationModal(
t('You are going to delete this ticket purchase request'),
t(
- 'This ticket will be removed from ticket purchase requests! Continue anyway?'
+ 'This ticket will be removed from ticket purchase requests! Continue anyway?',
),
- () => removeLine(row.id)
+ () => removeLine(row.id),
),
},
],
diff --git a/src/pages/Ticket/Card/TicketTransferForm.vue b/src/pages/Ticket/Card/TicketTransferForm.vue
index ece3a3b97..dfa230f65 100644
--- a/src/pages/Ticket/Card/TicketTransferForm.vue
+++ b/src/pages/Ticket/Card/TicketTransferForm.vue
@@ -41,7 +41,7 @@ const transferSales = async (ticketId) => {
const { data } = await axios.post(
`tickets/${$props.ticket.id}/transferSales`,
- params
+ params,
);
if (data && data.id === $props.ticket.id) emit('refreshData');
diff --git a/src/pages/Ticket/Card/__tests__/TicketBoxing.spec.js b/src/pages/Ticket/Card/__tests__/TicketBoxing.spec.js
index a1dd7775d..d556ba2ff 100644
--- a/src/pages/Ticket/Card/__tests__/TicketBoxing.spec.js
+++ b/src/pages/Ticket/Card/__tests__/TicketBoxing.spec.js
@@ -50,7 +50,7 @@ describe('TicketBoxing', () => {
await vm.getVideoList(expeditionId, timed);
expect(vm.quasar.notify).toHaveBeenCalledWith(
- expect.objectContaining({ type: 'negative' })
+ expect.objectContaining({ type: 'negative' }),
);
});
});
diff --git a/src/pages/Wagon/Type/WagonTypeEdit.vue b/src/pages/Wagon/Type/WagonTypeEdit.vue
index cfa1c76cd..8cf53ff4b 100644
--- a/src/pages/Wagon/Type/WagonTypeEdit.vue
+++ b/src/pages/Wagon/Type/WagonTypeEdit.vue
@@ -70,7 +70,7 @@ watch(
await loadTrays();
}
},
- { deep: true }
+ { deep: true },
);
diff --git a/src/pages/Wagon/WagonCreate.vue b/src/pages/Wagon/WagonCreate.vue
index ac2aab6ce..a9814e392 100644
--- a/src/pages/Wagon/WagonCreate.vue
+++ b/src/pages/Wagon/WagonCreate.vue
@@ -81,7 +81,7 @@ function filterType(val, update) {
update(() => {
const needle = val.toLowerCase();
filteredWagonTypes.value = wagonTypes.filter(
- (v) => v.name.toLowerCase().indexOf(needle) > -1
+ (v) => v.name.toLowerCase().indexOf(needle) > -1,
);
});
}
diff --git a/src/pages/Wagon/__tests__/WagonCreate.spec.js b/src/pages/Wagon/__tests__/WagonCreate.spec.js
index 9be19e027..ed78f9550 100644
--- a/src/pages/Wagon/__tests__/WagonCreate.spec.js
+++ b/src/pages/Wagon/__tests__/WagonCreate.spec.js
@@ -4,7 +4,8 @@ import { createWrapper } from 'app/test/vitest/helper';
import WagonCreate from 'pages/Wagon/WagonCreate.vue';
describe('WagonCreate', () => {
- let vmEdit, vmCreate;
+ let vmEdit;
+ let vmCreate;
const entityId = 1;
beforeAll(() => {
diff --git a/src/pages/Worker/Card/WorkerNotificationsManager.vue b/src/pages/Worker/Card/WorkerNotificationsManager.vue
index 27c71e6d4..402d945ed 100644
--- a/src/pages/Worker/Card/WorkerNotificationsManager.vue
+++ b/src/pages/Worker/Card/WorkerNotificationsManager.vue
@@ -41,7 +41,7 @@ async function toggleNotification(notification) {
quasar.notify({
type: 'positive',
message: t(
- `worker.notificationsManager.${notification.active ? '' : 'un'}subscribed`
+ `worker.notificationsManager.${notification.active ? '' : 'un'}subscribed`,
),
});
} catch (e) {
diff --git a/src/pages/Worker/Card/WorkerTimeControlCalendar.vue b/src/pages/Worker/Card/WorkerTimeControlCalendar.vue
index e9b9cc915..31c1e6315 100644
--- a/src/pages/Worker/Card/WorkerTimeControlCalendar.vue
+++ b/src/pages/Worker/Card/WorkerTimeControlCalendar.vue
@@ -95,12 +95,12 @@ watch(
() => {
getWorkWeekElements();
paintWorkWeeks();
- }
+ },
);
const getWorkWeekElements = () => {
workWeeksElements.value = document.getElementsByClassName(
- 'q-calendar-month__workweek'
+ 'q-calendar-month__workweek',
);
};
diff --git a/src/pages/Worker/Card/WorkerTimeHourChip.vue b/src/pages/Worker/Card/WorkerTimeHourChip.vue
index 5ca04bce0..d38b321b7 100644
--- a/src/pages/Worker/Card/WorkerTimeHourChip.vue
+++ b/src/pages/Worker/Card/WorkerTimeHourChip.vue
@@ -86,7 +86,7 @@ const showWorkerTimeForm = () => emit('showWorkerTimeForm');
openConfirmationModal(
t('This time entry will be deleted'),
t('Are you sure you want to delete this entry?'),
- deleteHourEntry
+ deleteHourEntry,
)
"
/>
diff --git a/src/pages/Zone/Card/ZoneDescriptorMenuItems.vue b/src/pages/Zone/Card/ZoneDescriptorMenuItems.vue
index f8683773d..df774dd2c 100644
--- a/src/pages/Zone/Card/ZoneDescriptorMenuItems.vue
+++ b/src/pages/Zone/Card/ZoneDescriptorMenuItems.vue
@@ -36,7 +36,12 @@ function openConfirmDialog(callback) {
}
-
+
diff --git a/src/router/modules/claim.js b/src/router/modules/claim.js
index aa0fc2819..582c53deb 100644
--- a/src/router/modules/claim.js
+++ b/src/router/modules/claim.js
@@ -17,7 +17,7 @@ const claimCard = {
],
},
children: [
- {
+ {
path: 'summary',
name: 'ClaimSummary',
meta: {
@@ -98,7 +98,7 @@ const claimCard = {
component: () => import('src/pages/Claim/Card/ClaimLog.vue'),
},
],
-}
+};
export default {
name: 'Claim',
diff --git a/src/router/modules/invoiceOut.js b/src/router/modules/invoiceOut.js
index 10ed00285..c1409a5be 100644
--- a/src/router/modules/invoiceOut.js
+++ b/src/router/modules/invoiceOut.js
@@ -17,7 +17,7 @@ const invoiceOutCard = {
icon: 'launch',
},
component: () => import('src/pages/InvoiceOut/Card/InvoiceOutSummary.vue'),
- }
+ },
],
};
@@ -78,4 +78,4 @@ export default {
],
},
],
-};
\ No newline at end of file
+};
diff --git a/src/router/modules/order.js b/src/router/modules/order.js
index bdd080e7f..2162bd689 100644
--- a/src/router/modules/order.js
+++ b/src/router/modules/order.js
@@ -6,12 +6,7 @@ const orderCard = {
component: () => import('src/pages/Order/Card/OrderCard.vue'),
redirect: { name: 'OrderSummary' },
meta: {
- menu: [
- 'OrderBasicData',
- 'OrderCatalog',
- 'OrderVolume',
- 'OrderLines',
- ],
+ menu: ['OrderBasicData', 'OrderCatalog', 'OrderVolume', 'OrderLines'],
},
children: [
{
@@ -83,7 +78,7 @@ export default {
children: [
{
path: '',
- name: 'OrderIndexMain',
+ name: 'OrderIndexMain',
redirect: { name: 'OrderList' },
component: () => import('src/pages/Order/OrderList.vue'),
children: [
@@ -110,4 +105,4 @@ export default {
],
},
],
-};
\ No newline at end of file
+};
diff --git a/src/router/modules/route.js b/src/router/modules/route.js
index 08ba1701f..24e24d8cd 100644
--- a/src/router/modules/route.js
+++ b/src/router/modules/route.js
@@ -166,12 +166,7 @@ const vehicleCard = {
component: () => import('src/pages/Route/Vehicle/Card/VehicleCard.vue'),
redirect: { name: 'VehicleSummary' },
meta: {
- menu: [
- 'VehicleBasicData',
- 'VehicleNotes',
- 'VehicleDms',
- 'VehicleEvents'
- ],
+ menu: ['VehicleBasicData', 'VehicleNotes', 'VehicleDms', 'VehicleEvents'],
},
children: [
{
diff --git a/src/router/modules/travel.js b/src/router/modules/travel.js
index 317c15b0d..c7f371ecf 100644
--- a/src/router/modules/travel.js
+++ b/src/router/modules/travel.js
@@ -57,22 +57,18 @@ const travelCard = {
path: 'create',
props: { viewAction: 'create' },
component: () =>
- import(
- 'src/pages/Travel/Card/TravelThermographsForm.vue'
- ),
+ import('src/pages/Travel/Card/TravelThermographsForm.vue'),
},
{
name: 'TravelThermographsEdit',
path: 'edit',
props: { viewAction: 'edit' },
component: () =>
- import(
- 'src/pages/Travel/Card/TravelThermographsForm.vue'
- ),
+ import('src/pages/Travel/Card/TravelThermographsForm.vue'),
},
],
},
- ]
+ ],
};
export default {
diff --git a/src/stores/__tests__/useStateQueryStore.spec.js b/src/stores/__tests__/useStateQueryStore.spec.js
index 7bdb87ced..3ef9bf382 100644
--- a/src/stores/__tests__/useStateQueryStore.spec.js
+++ b/src/stores/__tests__/useStateQueryStore.spec.js
@@ -5,7 +5,10 @@ import { useStateQueryStore } from 'src/stores/useStateQueryStore';
describe('useStateQueryStore', () => {
let stateQueryStore;
- let add, isLoading, remove, reset;
+ let add;
+ let isLoading;
+ let remove;
+ let reset;
const firstQuery = { url: 'myQuery' };
function getQueries() {
diff --git a/src/stores/invoiceOutGlobal.js b/src/stores/invoiceOutGlobal.js
index d8e061f84..df52dab0c 100644
--- a/src/stores/invoiceOutGlobal.js
+++ b/src/stores/invoiceOutGlobal.js
@@ -47,7 +47,7 @@ export const useInvoiceOutGlobalStore = defineStore({
this.formInitialData.maxShipped = new Date(
date.getFullYear(),
date.getMonth(),
- 0
+ 0,
)
.toISOString()
.substring(0, 10);
@@ -115,7 +115,7 @@ export const useInvoiceOutGlobalStore = defineStore({
if (!this.addresses || !this.addresses.length > 0) {
notify(
'invoiceOut.globalInvoices.errors.noTicketsToInvoice',
- 'negative'
+ 'negative',
);
throw new Error("There aren't addresses to invoice");
}
@@ -143,7 +143,7 @@ export const useInvoiceOutGlobalStore = defineStore({
if (params.invoiceDate < params.maxShipped) {
notify(
'invoiceOut.globalInvoices.errors.invoiceDateLessThanMaxDate',
- 'negative'
+ 'negative',
);
throw new Error('Invalid date range');
}
@@ -154,14 +154,14 @@ export const useInvoiceOutGlobalStore = defineStore({
if (this.minInvoicingDate && invoiceDateTime < minInvoiceDateTime) {
notify(
'invoiceOut.globalInvoices.errors.invoiceWithFutureDate',
- 'negative'
+ 'negative',
);
throw new Error('Invoice date in the future');
}
if (!params.serialType) {
notify(
'invoiceOut.globalInvoices.errors.chooseValidSerialType',
- 'negative'
+ 'negative',
);
throw new Error('Invalid Serial Type');
}
@@ -169,7 +169,7 @@ export const useInvoiceOutGlobalStore = defineStore({
if (clientsToInvoice === 'all' && params.serialType !== 'global') {
notify(
'invoiceOut.globalInvoices.errors.invalidSerialTypeForAll',
- 'negative'
+ 'negative',
);
throw new Error('For "all" clients, the serialType must be "global"');
}
@@ -213,7 +213,7 @@ export const useInvoiceOutGlobalStore = defineStore({
} else {
notify(
'invoiceOut.globalInvoices.errors.criticalInvoiceError',
- 'negative'
+ 'negative',
);
}
} finally {
@@ -288,7 +288,7 @@ export const useInvoiceOutGlobalStore = defineStore({
if (this.getNAdresses <= 0 || !state.addressIndex) {
return 0;
}
- let porcentaje = (state.addressIndex / this.getNAddresses) * 100;
+ const porcentaje = (state.addressIndex / this.getNAddresses) * 100;
return porcentaje?.toFixed(2);
},
getAddressNumber(state) {
diff --git a/src/stores/store-flag.d.ts b/src/stores/store-flag.d.ts
index 7677175b0..dca086a36 100644
--- a/src/stores/store-flag.d.ts
+++ b/src/stores/store-flag.d.ts
@@ -1,10 +1,10 @@
/* eslint-disable */
// THIS FEATURE-FLAG FILE IS AUTOGENERATED,
// REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING
-import "quasar/dist/types/feature-flag";
+import 'quasar/dist/types/feature-flag';
-declare module "quasar/dist/types/feature-flag" {
- interface QuasarFeatureFlags {
- store: true;
- }
+declare module 'quasar/dist/types/feature-flag' {
+ interface QuasarFeatureFlags {
+ store: true;
+ }
}
diff --git a/src/stores/useDescriptorStore.js b/src/stores/useDescriptorStore.js
index be342b016..69c80d71f 100644
--- a/src/stores/useDescriptorStore.js
+++ b/src/stores/useDescriptorStore.js
@@ -16,7 +16,7 @@ export const useDescriptorStore = defineStore('descriptorStore', () => {
for (const file in files) {
const name = file.split('/').at(-1).slice(0, -19).toLowerCase();
const descriptor = moduleParser[name] ?? name;
- currentDescriptors[descriptor + 'Fk'] = defineAsyncComponent(files[file]);
+ currentDescriptors[`${descriptor}Fk`] = defineAsyncComponent(files[file]);
}
setDescriptors(currentDescriptors);
return currentDescriptors;
diff --git a/src/stores/useWeekdayStore.js b/src/stores/useWeekdayStore.js
index bf6b2704d..d7114ae69 100644
--- a/src/stores/useWeekdayStore.js
+++ b/src/stores/useWeekdayStore.js
@@ -59,7 +59,7 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
const getLocales = computed(() => {
// El día de mañana esto permitirá ordenar los weekdays en base a el locale si se lo desea reemplazando localeOrder.es por localeOrder[locale]
const locales = [];
- for (let code of localeOrder.es) {
+ for (const code of localeOrder.es) {
const weekDay = weekdaysMap[code];
const locale = t(`weekdays.${weekdaysMap[code].code}`);
const obj = {
@@ -75,7 +75,7 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
const getLocalesMap = computed(() => {
const locales = {};
- for (let code of localeOrder.es) {
+ for (const code of localeOrder.es) {
const weekDay = weekdaysMap[code];
const locale = t(`weekdays.${weekDay?.code}`);
const obj = {
@@ -91,7 +91,7 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
const getLocaleMonths = computed(() => {
const locales = [];
- for (let code of monthCodes) {
+ for (const code of monthCodes) {
const obj = {
code: code,
locale: t(`months.${code}`),
@@ -109,12 +109,12 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
* @return {Array} Array with selected days set to %true
*/
const fromSet = (_weekDays) => {
- let wdays = [];
+ const wdays = [];
if (_weekDays) {
- let codes = _weekDays.split(',');
- for (let code of codes) {
- let data = weekdaysMap[code];
+ const codes = _weekDays.split(',');
+ for (const code of codes) {
+ const data = weekdaysMap[code];
if (data) wdays[data.index] = true;
}
}
@@ -131,12 +131,12 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
* @return {String} weekDays Weekday codes separated by commas
*/
const toSet = (_weekDays) => {
- let wdays = [];
+ const wdays = [];
if (_weekDays) {
for (let i = 0; i < _weekDays.length; i++) {
if (!_weekDays[i]) continue;
- let data = weekdays[i];
+ const data = weekdays[i];
if (data) wdays.push(data.code);
}
}
diff --git a/src/utils/dataByOrder.js b/src/utils/dataByOrder.js
index eb4a4f586..664e5a03c 100644
--- a/src/utils/dataByOrder.js
+++ b/src/utils/dataByOrder.js
@@ -3,10 +3,10 @@ function orderData(data, order) {
if (typeof order === 'string') order = [order];
if (!Array.isArray(data)) return [];
if (Array.isArray(order)) {
- let orderComp = [];
+ const orderComp = [];
- for (let field of order) {
- let split = field.split(/\s+/);
+ for (const field of order) {
+ const split = field.split(/\s+/);
orderComp.push({
field: split[0],
way: split[1] === 'DESC' ? -1 : 1,
@@ -19,8 +19,8 @@ function orderData(data, order) {
}
function sortFunc(a, b, order) {
- for (let { field, way } of order) {
- let compRes = compareFunc(a[field], b[field]) * way;
+ for (const { field, way } of order) {
+ const compRes = compareFunc(a[field], b[field]) * way;
if (compRes !== 0) return compRes;
}
@@ -29,7 +29,7 @@ function sortFunc(a, b, order) {
function compareFunc(a, b) {
if (a === b) return 0;
- let aType = typeof a;
+ const aType = typeof a;
if (aType === typeof b) {
switch (aType) {
case 'string':
diff --git a/test/cypress/back/datasources.json b/test/cypress/back/datasources.json
index fa7b81e1c..5c1a39afe 100644
--- a/test/cypress/back/datasources.json
+++ b/test/cypress/back/datasources.json
@@ -75,12 +75,7 @@
"provider": "filesystem",
"root": "./storage/image",
"maxFileSize": "52428800",
- "allowedContentTypes": [
- "image/png",
- "image/jpeg",
- "image/jpg",
- "image/webp"
- ]
+ "allowedContentTypes": ["image/png", "image/jpeg", "image/jpg", "image/webp"]
},
"invoiceStorage": {
"name": "invoiceStorage",
@@ -88,10 +83,7 @@
"provider": "filesystem",
"root": "./storage/pdfs/invoice",
"maxFileSize": "52428800",
- "allowedContentTypes": [
- "application/octet-stream",
- "application/pdf"
- ]
+ "allowedContentTypes": ["application/octet-stream", "application/pdf"]
},
"claimStorage": {
"name": "claimStorage",
@@ -142,8 +134,6 @@
"provider": "filesystem",
"root": "./storage/access",
"maxFileSize": "524288000",
- "allowedContentTypes": [
- "application/x-7z-compressed"
- ]
+ "allowedContentTypes": ["application/x-7z-compressed"]
}
-}
\ No newline at end of file
+}
diff --git a/test/cypress/integration/claim/claimLines.spec.js b/test/cypress/integration/claim/claimLines.spec.js
index 7ac8410ca..45a8bf074 100644
--- a/test/cypress/integration/claim/claimLines.spec.js
+++ b/test/cypress/integration/claim/claimLines.spec.js
@@ -10,16 +10,20 @@ describe('ClaimLines', () => {
it('should add new line', () => {
cy.get('.q-page-sticky > div > .q-btn').click();
- cy.get('.q-card > .q-table__container > .q-table__middle > .q-table > thead > tr > .q-table--col-auto-width > .q-checkbox > .q-checkbox__inner > .q-checkbox__bg').click();
+ cy.get(
+ '.q-card > .q-table__container > .q-table__middle > .q-table > thead > tr > .q-table--col-auto-width > .q-checkbox > .q-checkbox__inner > .q-checkbox__bg',
+ ).click();
cy.get('.q-card__actions > .q-btn--unelevated').click();
cy.get('.q-notification__message').should('have.text', 'Lines added to claim');
- })
+ });
it('should autofill claimed quantity if 0 or null', () => {
- cy.get('thead > tr > .q-table--col-auto-width > .q-checkbox > .q-checkbox__inner > .q-checkbox__bg').click();
+ cy.get(
+ 'thead > tr > .q-table--col-auto-width > .q-checkbox > .q-checkbox__inner > .q-checkbox__bg',
+ ).click();
cy.get('.q-btn--unelevated').click();
cy.checkNotification('Quantities filled automatically');
cy.get('.q-btn--unelevated').click();
cy.checkNotification('No quantities to fill');
- })
+ });
});
diff --git a/test/cypress/integration/claim/claimNotes.spec.js b/test/cypress/integration/claim/claimNotes.spec.js
index aa2b04e4e..aaf5be4c6 100644
--- a/test/cypress/integration/claim/claimNotes.spec.js
+++ b/test/cypress/integration/claim/claimNotes.spec.js
@@ -10,9 +10,9 @@ describe('ClaimNotes', () => {
cy.get('.q-textarea')
.should('be.visible')
.should('not.be.disabled')
- .type(message, "{{enter}}");
+ .type(message, '{{enter}}');
- cy.dataCy("saveContinueNoteButton").click();
+ cy.dataCy('saveContinueNoteButton').click();
cy.get(firstNote).should('have.text', message);
});
});
diff --git a/test/cypress/integration/customer/clientAddress.spec.js b/test/cypress/integration/customer/clientAddress.spec.js
index 5d82aa4bc..1d4361f93 100644
--- a/test/cypress/integration/customer/clientAddress.spec.js
+++ b/test/cypress/integration/customer/clientAddress.spec.js
@@ -9,9 +9,9 @@ describe('Client consignee', () => {
cy.get('.q-card').should('be.visible');
});
- it('check as equalizated', function () {
+ it('check as equalizated', () => {
cy.get('.q-card__section > .address-card').then(($el) => {
- let addressCards_before = $el.length;
+ const addressCards_before = $el.length;
cy.get('.q-page-sticky > div > .q-btn').click();
const addressName = 'test';
diff --git a/test/cypress/integration/login/recoverPassword.spec.js b/test/cypress/integration/login/recoverPassword.spec.js
index 48f6f8563..4b97bf21a 100755
--- a/test/cypress/integration/login/recoverPassword.spec.js
+++ b/test/cypress/integration/login/recoverPassword.spec.js
@@ -14,7 +14,7 @@ describe('Recover Password', () => {
cy.waitForElement('input[aria-label="User or recovery email"]');
cy.get('input[aria-label="User or recovery email"]').should(
'have.value',
- username
+ username,
);
cy.get('button[type="submit"]').click();
@@ -24,12 +24,12 @@ describe('Recover Password', () => {
it('should change password to user', () => {
// Get token from mail
cy.request(
- `/api/Mails?filter=%7B%22where%22%3A%20%7B%22receiver%22%3A%20%22${username}%40mydomain.com%22%7D%2C%20%22order%22%3A%20%5B%22id%20DESC%22%5D%7D&access_token=DEFAULT_TOKEN`
+ `/api/Mails?filter=%7B%22where%22%3A%20%7B%22receiver%22%3A%20%22${username}%40mydomain.com%22%7D%2C%20%22order%22%3A%20%5B%22id%20DESC%22%5D%7D&access_token=DEFAULT_TOKEN`,
).then((response) => {
const regex = /access_token=([a-zA-Z0-9]+)/;
const [match] = response.body[0].body.match(regex);
- const resetUrl = '/#/resetPassword?' + match;
+ const resetUrl = `/#/resetPassword?${match}`;
cy.visit(resetUrl);
});
diff --git a/test/cypress/integration/login/twoFactor.spec.js b/test/cypress/integration/login/twoFactor.spec.js
index 6a8ac9c06..5f2aa4582 100755
--- a/test/cypress/integration/login/twoFactor.spec.js
+++ b/test/cypress/integration/login/twoFactor.spec.js
@@ -12,7 +12,7 @@ describe('Two Factor', () => {
cy.request(
'PATCH',
`/api/VnUsers/${userId}/update-user?access_token=DEFAULT_TOKEN`,
- { twoFactor: 'email' }
+ { twoFactor: 'email' },
);
});
@@ -22,7 +22,7 @@ describe('Two Factor', () => {
cy.get('button[type="submit"]').click();
cy.get('.q-notification__message').should(
'have.text',
- 'Two-factor verification required'
+ 'Two-factor verification required',
);
cy.get('input[type="text"]').type('123456');
@@ -36,12 +36,12 @@ describe('Two Factor', () => {
cy.get('button[type="submit"]').click();
cy.get('.q-notification__message').should(
'have.text',
- 'Two-factor verification required'
+ 'Two-factor verification required',
);
// Get code from mail
cy.request(
- `/api/Mails?filter=%7B%22where%22%3A%20%7B%22receiver%22%3A%20%22${username}%40mydomain.com%22%7D%2C%20%22order%22%3A%20%5B%22id%20DESC%22%5D%7D&access_token=DEFAULT_TOKEN`
+ `/api/Mails?filter=%7B%22where%22%3A%20%7B%22receiver%22%3A%20%22${username}%40mydomain.com%22%7D%2C%20%22order%22%3A%20%5B%22id%20DESC%22%5D%7D&access_token=DEFAULT_TOKEN`,
).then((response) => {
const tempDiv = document.createElement('div');
tempDiv.innerHTML = response.body[0].body;
diff --git a/test/cypress/integration/order/orderList.spec.js b/test/cypress/integration/order/orderList.spec.js
index 56c4b6a32..061a4d15a 100644
--- a/test/cypress/integration/order/orderList.spec.js
+++ b/test/cypress/integration/order/orderList.spec.js
@@ -17,7 +17,7 @@ describe('OrderList', () => {
cy.get(
'.q-menu > div> div.q-item:nth-child(1) >div.q-item__section--avatar > i',
).should('have.text', 'star');
- cy.get('.q-menu > div> .q-item:nth-child(1)').click();
+ cy.get('.q-menu > div> .q-item:nth-child(1)').click();
cy.get('.q-card [data-cy="Agency_select"]').click();
cy.get('.q-menu > div> .q-item:nth-child(1)').click();
cy.intercept('GET', /\/api\/Orders\/\d/).as('orderSale');
@@ -48,7 +48,7 @@ describe('OrderList', () => {
cy.url().should('include', `/order`);
});
- it('create order from customer summary', function () {
+ it('create order from customer summary', () => {
const clientId = 1101;
cy.dataCy('Customer ID_input').type(`${clientId}{enter}`);
cy.get(
diff --git a/test/cypress/integration/route/routeAutonomous.spec.js b/test/cypress/integration/route/routeAutonomous.spec.js
index b61431bfb..978eae19a 100644
--- a/test/cypress/integration/route/routeAutonomous.spec.js
+++ b/test/cypress/integration/route/routeAutonomous.spec.js
@@ -1,6 +1,8 @@
describe('RouteAutonomous', () => {
const getLinkSelector = (colField, link = true) =>
- `tr:first-child > [data-col-field="${colField}"] > .no-padding${link ? ' > .link' : ''}`;
+ `tr:first-child > [data-col-field="${colField}"] > .no-padding${
+ link ? ' > .link' : ''
+ }`;
const selectors = {
total: '.value > .text-h6',
diff --git a/test/cypress/integration/route/routeExtendedList.spec.js b/test/cypress/integration/route/routeExtendedList.spec.js
index d2b4e2108..b9c052531 100644
--- a/test/cypress/integration/route/routeExtendedList.spec.js
+++ b/test/cypress/integration/route/routeExtendedList.spec.js
@@ -69,7 +69,7 @@ describe.skip('Route extended list', () => {
.type(`{selectall}{backspace}${value}`);
break;
case 'checkbox':
- cy.get(selector).should('be.visible').click()
+ cy.get(selector).should('be.visible').click();
cy.get(selector).click();
break;
}
diff --git a/test/cypress/integration/route/vehicle/vehicleEvents.spec.js b/test/cypress/integration/route/vehicle/vehicleEvents.spec.js
index f03e11b29..c91749f2a 100644
--- a/test/cypress/integration/route/vehicle/vehicleEvents.spec.js
+++ b/test/cypress/integration/route/vehicle/vehicleEvents.spec.js
@@ -1,5 +1,4 @@
describe('Vehicle', () => {
-
beforeEach(() => {
cy.viewport(1920, 1080);
cy.login('deliveryAssistant');
@@ -10,18 +9,24 @@ describe('Vehicle', () => {
cy.get('.q-page-sticky > div > .q-btn').click();
cy.dataCy('Started_inputDate').type('01/01/2001');
cy.dataCy('Finished_inputDate').type('08/02/2001');
- cy.get(':nth-child(5)').find('[data-cy="Description_input"]').clear().type('Test');
+ cy.get(':nth-child(5)')
+ .find('[data-cy="Description_input"]')
+ .clear()
+ .type('Test');
cy.selectOption('[data-cy="State_input"]', 3);
cy.get('.q-mt-lg > .q-btn--standard').click();
cy.get('.q-current-day > .q-calendar-month__day--content > .q-btn').click();
cy.dataCy('Started_inputDate').clear().type('03/02/2001');
cy.dataCy('Finished_inputDate').clear().type('15/03/2001');
- cy.get(':nth-child(5)').find('[data-cy="Description_input"]').clear().type('Test2');
+ cy.get(':nth-child(5)')
+ .find('[data-cy="Description_input"]')
+ .clear()
+ .type('Test2');
cy.selectOption('[data-cy="State_input"]', 5);
cy.get('.q-mt-lg > .q-btn--standard').click();
cy.dataCy('delete_event').eq(0).click();
cy.dataCy('VnConfirm_confirm').click();
});
-});
\ No newline at end of file
+});
diff --git a/test/cypress/integration/ticket/ticketFilter.spec.js b/test/cypress/integration/ticket/ticketFilter.spec.js
index 60ad7f287..dec03b393 100644
--- a/test/cypress/integration/ticket/ticketFilter.spec.js
+++ b/test/cypress/integration/ticket/ticketFilter.spec.js
@@ -5,7 +5,7 @@ describe('TicketFilter', () => {
cy.visit('/#/ticket/list');
});
- it('use search button', function () {
+ it('use search button', () => {
cy.waitForElement('.q-page');
cy.get('[data-cy="Customer ID_input"]').type('1105');
cy.searchBtnFilterPanel();
diff --git a/test/cypress/integration/vnComponent/VnLocation.spec.js b/test/cypress/integration/vnComponent/VnLocation.spec.js
index ee49d6065..f39b2c0a6 100644
--- a/test/cypress/integration/vnComponent/VnLocation.spec.js
+++ b/test/cypress/integration/vnComponent/VnLocation.spec.js
@@ -53,15 +53,15 @@ describe('VnLocation', () => {
cy.waitForElement('.q-card');
cy.get(inputLocation).click();
});
- it('Show all options', function () {
+ it('Show all options', () => {
cy.get(locationOptions).should('have.length.at.least', 5);
});
- it('input filter location as "al"', function () {
+ it('input filter location as "al"', () => {
cy.get(inputLocation).clear();
cy.get(inputLocation).type('al');
cy.get(locationOptions).should('have.length.at.least', 4);
});
- it('input filter location as "ecuador"', function () {
+ it('input filter location as "ecuador"', () => {
cy.get(inputLocation).clear();
cy.get(inputLocation).type('ecuador');
cy.get(locationOptions).should('have.length.at.least', 1);
diff --git a/test/cypress/integration/vnComponent/VnShortcut.spec.js b/test/cypress/integration/vnComponent/VnShortcut.spec.js
index 83249d15e..1832a2ab9 100644
--- a/test/cypress/integration/vnComponent/VnShortcut.spec.js
+++ b/test/cypress/integration/vnComponent/VnShortcut.spec.js
@@ -1,6 +1,6 @@
///
// https://redmine.verdnatura.es/issues/8848
-describe('VnShortcuts', () => {
+describe.skip('VnShortcuts', () => {
const modules = {
item: 'a',
customer: 'c',
@@ -17,6 +17,7 @@ describe('VnShortcuts', () => {
beforeEach(() => {
cy.login('developer');
cy.visit('/');
+ cy.waitSpinner();
});
for (const [module, shortcut] of Object.entries(modules)) {
diff --git a/test/cypress/support/index.js b/test/cypress/support/index.js
index e9042c8fc..06ccb0281 100644
--- a/test/cypress/support/index.js
+++ b/test/cypress/support/index.js
@@ -16,12 +16,12 @@
import './commands';
function randomString(options = { length: 10 }) {
- let possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
+ const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
return randomizeValue(possible, options);
}
function randomNumber(options = { length: 10 }) {
- let possible = '0123456789';
+ const possible = '0123456789';
return randomizeValue(possible, options);
}
diff --git a/test/cypress/support/waitUntil.js b/test/cypress/support/waitUntil.js
index 359f8643f..307ec4527 100644
--- a/test/cypress/support/waitUntil.js
+++ b/test/cypress/support/waitUntil.js
@@ -1,7 +1,7 @@
const waitUntil = (subject, checkFunction, originalOptions = {}) => {
if (!(checkFunction instanceof Function)) {
throw new Error(
- '`checkFunction` parameter should be a function. Found: ' + checkFunction,
+ `\`checkFunction\` parameter should be a function. Found: ${checkFunction}`,
);
}
diff --git a/vitest.config.js b/vitest.config.js
index c2c3661a9..541373dd9 100644
--- a/vitest.config.js
+++ b/vitest.config.js
@@ -5,7 +5,8 @@ import jsconfigPaths from 'vite-jsconfig-paths';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import path from 'path';
-let reporters, outputFile;
+let reporters;
+let outputFile;
if (process.env.CI) {
reporters = ['junit', 'default'];