@layers-app/shared 0.0.40 → 0.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{KanbanLayout-Cgno2syU.js → KanbanLayout-_7CnQOIn.js} +1 -1
- package/dist/components/AttachmentsGalleryModal/ShakaPlayer.d.ts +13 -3
- package/dist/components/CommentComposer/index.d.ts +2 -1
- package/dist/components/CommentsPanel/index.d.ts +2 -1
- package/dist/components/EmojiPicker/EmojiPicker.d.ts +3 -1
- package/dist/components/FormViewer/hooks/useFormGlobalTheme.d.ts +1 -0
- package/dist/components/SearchFilters/components/{Date.d.ts → DateFilter.d.ts} +1 -1
- package/dist/components/UserAvatar/index.d.ts +0 -3
- package/dist/helpers/dates.d.ts +1 -0
- package/dist/hooks/useMenu.d.ts +3 -3
- package/dist/hooks/useOutsideClick.d.ts +4 -0
- package/dist/{index-jQFbCQG3.js → index-BMtIEojG.js} +1008 -500
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -2
- package/dist/index.umd.cjs +59 -59
- package/package.json +9 -9
- package/dist/components/OnBoarding/steps/AddMembers/AddMembers.d.ts +0 -2
|
@@ -8,7 +8,7 @@ import React__default, { useState, useMemo, useEffect, useCallback, forwardRef,
|
|
|
8
8
|
import { IconSearch, IconPhoto, IconDownload, IconBrandUnsplash, IconUpload, IconGif, IconLink, IconPhotoPlus, IconTrash, IconArrowsShuffle, IconFileText, IconCheckbox, IconX, IconBell, IconArrowsSort, IconBuilding, IconGripVertical, IconSettings, IconPlus, IconDotsCircleHorizontal, IconPinnedOff, IconPin, IconUser, IconLayoutSidebarLeftCollapse, IconLayoutSidebarLeftExpand, IconListSearch, IconUserCircle, IconArrowLeft, IconLayoutGrid, IconLogin2, IconUserPlus, IconChevronLeft, IconHome2, IconReload, IconBold, IconListCheck, IconLetterA, IconChevronDown, IconCheck, IconItalic, IconUnderline, IconInfoCircle, IconList, IconLayoutCards, IconGitMerge, IconSettings2, IconHelp, IconListDetails, IconArrowRight, IconBug, IconSquareRotated, IconLayoutKanban, IconEqual, IconChevronUp, IconSquareCheck, IconPalette, IconPencil, IconCalendarEvent, IconClockEdit, IconForms, IconCloudComputing, IconFileUnknown, IconChevronRight, IconVideo, IconChevronsRight, IconPaperclip, IconSend, IconShieldCheckFilled, IconDotsVertical, IconMoodSmile, IconMessages, IconFilter, IconArrowBackUp, IconMessage, IconFile, IconSortDescending, IconSortAscending, IconFileDownload, IconFileTypeCsv, IconFileExcel, IconAmpersand, IconBrandDiscord, IconBrandTelegram, IconAlertSquareRounded, IconCornerDownLeft, IconStar, IconClick, IconKeyframeAlignHorizontal, IconNumber, IconSelector, IconCards, IconVersions, IconCircleDashedCheck, IconMapPin, IconCalendarMonth, IconMail, IconPhone, IconTextPlus, IconCloudUpload } from "@tabler/icons-react";
|
|
9
9
|
import { Link as Link$1, useSearchParams, useParams, useNavigate, useLocation, matchPath } from "react-router-dom";
|
|
10
10
|
import { useTranslation, Trans } from "react-i18next";
|
|
11
|
-
import { useDebouncedValue, useDebouncedCallback, useMediaQuery, useHover, useDebouncedState, useDisclosure, randomId,
|
|
11
|
+
import { useDebouncedValue, useDebouncedCallback, useMediaQuery, useHover, useDebouncedState, useDisclosure, randomId, useWindowEvent, useElementSize } from "@mantine/hooks";
|
|
12
12
|
import { useQuery } from "@tanstack/react-query";
|
|
13
13
|
import queryString from "query-string";
|
|
14
14
|
import { useForm, useField } from "@mantine/form";
|
|
@@ -158,9 +158,11 @@ const NoData = ({
|
|
|
158
158
|
}
|
|
159
159
|
);
|
|
160
160
|
};
|
|
161
|
-
const itemImage = "
|
|
161
|
+
const itemImage = "_itemImage_1y7vg_1";
|
|
162
|
+
const button$2 = "_button_1y7vg_14";
|
|
162
163
|
const styles$o = {
|
|
163
|
-
itemImage
|
|
164
|
+
itemImage,
|
|
165
|
+
button: button$2
|
|
164
166
|
};
|
|
165
167
|
const FilePickerGallery = ({
|
|
166
168
|
galleryCollection,
|
|
@@ -413,6 +415,7 @@ const FilePickerLink = ({
|
|
|
413
415
|
{
|
|
414
416
|
leftSection: /* @__PURE__ */ jsx$1(IconPhoto, { size: 16 }),
|
|
415
417
|
onClick: handleSubmit,
|
|
418
|
+
className: styles$o.button,
|
|
416
419
|
disabled: !form.values.url,
|
|
417
420
|
children: locales.submitLink
|
|
418
421
|
}
|
|
@@ -3158,10 +3161,12 @@ const EmojiPicker = ({
|
|
|
3158
3161
|
showColors,
|
|
3159
3162
|
defaultActiveTab = null,
|
|
3160
3163
|
showEmojis = true,
|
|
3164
|
+
withinPortal = false,
|
|
3161
3165
|
locales: _locales,
|
|
3162
3166
|
openWhen = "click",
|
|
3163
3167
|
triggerRegex = /(^|\s):([^\s:]{1,})$/,
|
|
3164
|
-
typingSeq
|
|
3168
|
+
typingSeq,
|
|
3169
|
+
showRemoveButton = true
|
|
3165
3170
|
}) => {
|
|
3166
3171
|
const { t } = useTranslation("ui");
|
|
3167
3172
|
const [opened, setOpened] = useState(false);
|
|
@@ -3219,7 +3224,7 @@ const EmojiPicker = ({
|
|
|
3219
3224
|
return /* @__PURE__ */ jsxs(
|
|
3220
3225
|
Popover,
|
|
3221
3226
|
{
|
|
3222
|
-
withinPortal
|
|
3227
|
+
withinPortal,
|
|
3223
3228
|
opened,
|
|
3224
3229
|
onChange: setOpened,
|
|
3225
3230
|
position: position2,
|
|
@@ -3278,7 +3283,7 @@ const EmojiPicker = ({
|
|
|
3278
3283
|
!isQuerySearch && /* @__PURE__ */ jsxs(Tabs.List, { children: [
|
|
3279
3284
|
showEmojis && /* @__PURE__ */ jsx$1(Tabs.Tab, { value: "emojis", children: locales.emojis }),
|
|
3280
3285
|
showIcons && /* @__PURE__ */ jsx$1(Tabs.Tab, { value: "icons", children: locales.icons }),
|
|
3281
|
-
!!String(value) && /* @__PURE__ */ jsx$1(
|
|
3286
|
+
!!String(value) && showRemoveButton && /* @__PURE__ */ jsx$1(
|
|
3282
3287
|
Button,
|
|
3283
3288
|
{
|
|
3284
3289
|
variant: "default",
|
|
@@ -8373,7 +8378,7 @@ const WorkspaceItem = ({
|
|
|
8373
8378
|
children: /* @__PURE__ */ jsxs(
|
|
8374
8379
|
Box,
|
|
8375
8380
|
{
|
|
8376
|
-
maw: hovered && workspace.invitation ?
|
|
8381
|
+
maw: hovered && workspace.invitation ? 60 : 150,
|
|
8377
8382
|
style: {
|
|
8378
8383
|
height: 30,
|
|
8379
8384
|
display: "flex",
|
|
@@ -8805,7 +8810,6 @@ const DesktopNavbar = (props) => {
|
|
|
8805
8810
|
var _a, _b, _c;
|
|
8806
8811
|
const { t } = useTranslation("appContainer");
|
|
8807
8812
|
const { navbar, navbarTitle, displayType, onTitleChange } = props;
|
|
8808
|
-
console.log("🚀 ~ DesktopNavbar ~ navbarTitle:", navbarTitle);
|
|
8809
8813
|
const location2 = useLocation();
|
|
8810
8814
|
const { isMobile: isMobile2 } = useMenu();
|
|
8811
8815
|
const { setTourState } = useAppTour((s) => s);
|
|
@@ -8822,9 +8826,16 @@ const DesktopNavbar = (props) => {
|
|
|
8822
8826
|
}, [tools, location2.pathname]);
|
|
8823
8827
|
const entityTitle = navbarTitle || (selectedTool == null ? void 0 : selectedTool.entityName) || (selectedTool == null ? void 0 : selectedTool.name);
|
|
8824
8828
|
const [lockNavbar, setLockNavbar] = useState(false);
|
|
8829
|
+
const onTitleChangeRef = useRef(onTitleChange);
|
|
8830
|
+
useEffect(() => {
|
|
8831
|
+
onTitleChangeRef.current = onTitleChange;
|
|
8832
|
+
}, [onTitleChange]);
|
|
8825
8833
|
const titleField = useField({
|
|
8826
8834
|
initialValue: entityTitle,
|
|
8827
|
-
onValueChange:
|
|
8835
|
+
onValueChange: (value) => {
|
|
8836
|
+
var _a2;
|
|
8837
|
+
(_a2 = onTitleChangeRef.current) == null ? void 0 : _a2.call(onTitleChangeRef, value);
|
|
8838
|
+
}
|
|
8828
8839
|
});
|
|
8829
8840
|
useEffect(() => {
|
|
8830
8841
|
titleField.setValue(navbarTitle);
|
|
@@ -9054,6 +9065,8 @@ const DesktopNavbar = (props) => {
|
|
|
9054
9065
|
{
|
|
9055
9066
|
...titleField.getInputProps(),
|
|
9056
9067
|
placeholder: t("noName"),
|
|
9068
|
+
maxLength: 50,
|
|
9069
|
+
minLength: 1,
|
|
9057
9070
|
unstyled: true,
|
|
9058
9071
|
classNames: {
|
|
9059
9072
|
input: styles$i.toolTitleInput
|
|
@@ -9583,26 +9596,34 @@ function isDraftable(value) {
|
|
|
9583
9596
|
return isPlainObject$1(value) || Array.isArray(value) || !!value[DRAFTABLE] || !!((_a = value.constructor) == null ? void 0 : _a[DRAFTABLE]) || isMap(value) || isSet(value);
|
|
9584
9597
|
}
|
|
9585
9598
|
var objectCtorString = Object.prototype.constructor.toString();
|
|
9599
|
+
var cachedCtorStrings = /* @__PURE__ */ new WeakMap();
|
|
9586
9600
|
function isPlainObject$1(value) {
|
|
9587
9601
|
if (!value || typeof value !== "object")
|
|
9588
9602
|
return false;
|
|
9589
|
-
const proto = getPrototypeOf(value);
|
|
9590
|
-
if (proto === null)
|
|
9603
|
+
const proto = Object.getPrototypeOf(value);
|
|
9604
|
+
if (proto === null || proto === Object.prototype)
|
|
9591
9605
|
return true;
|
|
9592
|
-
}
|
|
9593
9606
|
const Ctor = Object.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
|
9594
9607
|
if (Ctor === Object)
|
|
9595
9608
|
return true;
|
|
9596
|
-
|
|
9609
|
+
if (typeof Ctor !== "function")
|
|
9610
|
+
return false;
|
|
9611
|
+
let ctorString = cachedCtorStrings.get(Ctor);
|
|
9612
|
+
if (ctorString === void 0) {
|
|
9613
|
+
ctorString = Function.toString.call(Ctor);
|
|
9614
|
+
cachedCtorStrings.set(Ctor, ctorString);
|
|
9615
|
+
}
|
|
9616
|
+
return ctorString === objectCtorString;
|
|
9597
9617
|
}
|
|
9598
9618
|
function original(value) {
|
|
9599
9619
|
if (!isDraft(value))
|
|
9600
9620
|
die(15, value);
|
|
9601
9621
|
return value[DRAFT_STATE].base_;
|
|
9602
9622
|
}
|
|
9603
|
-
function each$1(obj, iter) {
|
|
9623
|
+
function each$1(obj, iter, strict = true) {
|
|
9604
9624
|
if (getArchtype(obj) === 0) {
|
|
9605
|
-
Reflect.ownKeys(obj).
|
|
9625
|
+
const keys2 = strict ? Reflect.ownKeys(obj) : Object.keys(obj);
|
|
9626
|
+
keys2.forEach((key) => {
|
|
9606
9627
|
iter(key, obj[key], obj);
|
|
9607
9628
|
});
|
|
9608
9629
|
} else {
|
|
@@ -9689,10 +9710,10 @@ function freeze(obj, deep = false) {
|
|
|
9689
9710
|
return obj;
|
|
9690
9711
|
if (getArchtype(obj) > 1) {
|
|
9691
9712
|
Object.defineProperties(obj, {
|
|
9692
|
-
set:
|
|
9693
|
-
add:
|
|
9694
|
-
clear:
|
|
9695
|
-
delete:
|
|
9713
|
+
set: dontMutateMethodOverride,
|
|
9714
|
+
add: dontMutateMethodOverride,
|
|
9715
|
+
clear: dontMutateMethodOverride,
|
|
9716
|
+
delete: dontMutateMethodOverride
|
|
9696
9717
|
});
|
|
9697
9718
|
}
|
|
9698
9719
|
Object.freeze(obj);
|
|
@@ -9703,7 +9724,12 @@ function freeze(obj, deep = false) {
|
|
|
9703
9724
|
function dontMutateFrozenCollections() {
|
|
9704
9725
|
die(2);
|
|
9705
9726
|
}
|
|
9727
|
+
var dontMutateMethodOverride = {
|
|
9728
|
+
value: dontMutateFrozenCollections
|
|
9729
|
+
};
|
|
9706
9730
|
function isFrozen(obj) {
|
|
9731
|
+
if (obj === null || typeof obj !== "object")
|
|
9732
|
+
return true;
|
|
9707
9733
|
return Object.isFrozen(obj);
|
|
9708
9734
|
}
|
|
9709
9735
|
var plugins = {};
|
|
@@ -9795,11 +9821,13 @@ function processResult(result, scope) {
|
|
|
9795
9821
|
function finalize(rootScope, value, path) {
|
|
9796
9822
|
if (isFrozen(value))
|
|
9797
9823
|
return value;
|
|
9824
|
+
const useStrictIteration = rootScope.immer_.shouldUseStrictIteration();
|
|
9798
9825
|
const state = value[DRAFT_STATE];
|
|
9799
9826
|
if (!state) {
|
|
9800
9827
|
each$1(
|
|
9801
9828
|
value,
|
|
9802
|
-
(key, childValue) => finalizeProperty(rootScope, state, value, key, childValue, path)
|
|
9829
|
+
(key, childValue) => finalizeProperty(rootScope, state, value, key, childValue, path),
|
|
9830
|
+
useStrictIteration
|
|
9803
9831
|
);
|
|
9804
9832
|
return value;
|
|
9805
9833
|
}
|
|
@@ -9822,7 +9850,16 @@ function finalize(rootScope, value, path) {
|
|
|
9822
9850
|
}
|
|
9823
9851
|
each$1(
|
|
9824
9852
|
resultEach,
|
|
9825
|
-
(key, childValue) => finalizeProperty(
|
|
9853
|
+
(key, childValue) => finalizeProperty(
|
|
9854
|
+
rootScope,
|
|
9855
|
+
state,
|
|
9856
|
+
result,
|
|
9857
|
+
key,
|
|
9858
|
+
childValue,
|
|
9859
|
+
path,
|
|
9860
|
+
isSet2
|
|
9861
|
+
),
|
|
9862
|
+
useStrictIteration
|
|
9826
9863
|
);
|
|
9827
9864
|
maybeFreeze(rootScope, result, false);
|
|
9828
9865
|
if (path && rootScope.patches_) {
|
|
@@ -9837,6 +9874,16 @@ function finalize(rootScope, value, path) {
|
|
|
9837
9874
|
return state.copy_;
|
|
9838
9875
|
}
|
|
9839
9876
|
function finalizeProperty(rootScope, parentState, targetObject, prop, childValue, rootPath, targetIsSet) {
|
|
9877
|
+
if (childValue == null) {
|
|
9878
|
+
return;
|
|
9879
|
+
}
|
|
9880
|
+
if (typeof childValue !== "object" && !targetIsSet) {
|
|
9881
|
+
return;
|
|
9882
|
+
}
|
|
9883
|
+
const childIsFrozen = isFrozen(childValue);
|
|
9884
|
+
if (childIsFrozen && !targetIsSet) {
|
|
9885
|
+
return;
|
|
9886
|
+
}
|
|
9840
9887
|
if (process.env.NODE_ENV !== "production" && childValue === targetObject)
|
|
9841
9888
|
die(5);
|
|
9842
9889
|
if (isDraft(childValue)) {
|
|
@@ -9851,10 +9898,13 @@ function finalizeProperty(rootScope, parentState, targetObject, prop, childValue
|
|
|
9851
9898
|
} else if (targetIsSet) {
|
|
9852
9899
|
targetObject.add(childValue);
|
|
9853
9900
|
}
|
|
9854
|
-
if (isDraftable(childValue) && !
|
|
9901
|
+
if (isDraftable(childValue) && !childIsFrozen) {
|
|
9855
9902
|
if (!rootScope.immer_.autoFreeze_ && rootScope.unfinalizedDrafts_ < 1) {
|
|
9856
9903
|
return;
|
|
9857
9904
|
}
|
|
9905
|
+
if (parentState && parentState.base_ && parentState.base_[prop] === childValue && childIsFrozen) {
|
|
9906
|
+
return;
|
|
9907
|
+
}
|
|
9858
9908
|
finalize(rootScope, childValue);
|
|
9859
9909
|
if ((!parentState || !parentState.scope_.parent_) && typeof prop !== "symbol" && (isMap(targetObject) ? targetObject.has(prop) : Object.prototype.propertyIsEnumerable.call(targetObject, prop)))
|
|
9860
9910
|
maybeFreeze(rootScope, childValue);
|
|
@@ -10052,6 +10102,7 @@ var Immer2 = class {
|
|
|
10052
10102
|
constructor(config) {
|
|
10053
10103
|
this.autoFreeze_ = true;
|
|
10054
10104
|
this.useStrictShallowCopy_ = false;
|
|
10105
|
+
this.useStrictIteration_ = true;
|
|
10055
10106
|
this.produce = (base2, recipe, patchListener) => {
|
|
10056
10107
|
if (typeof base2 === "function" && typeof recipe !== "function") {
|
|
10057
10108
|
const defaultBase = recipe;
|
|
@@ -10114,6 +10165,8 @@ var Immer2 = class {
|
|
|
10114
10165
|
this.setAutoFreeze(config.autoFreeze);
|
|
10115
10166
|
if (typeof (config == null ? void 0 : config.useStrictShallowCopy) === "boolean")
|
|
10116
10167
|
this.setUseStrictShallowCopy(config.useStrictShallowCopy);
|
|
10168
|
+
if (typeof (config == null ? void 0 : config.useStrictIteration) === "boolean")
|
|
10169
|
+
this.setUseStrictIteration(config.useStrictIteration);
|
|
10117
10170
|
}
|
|
10118
10171
|
createDraft(base2) {
|
|
10119
10172
|
if (!isDraftable(base2))
|
|
@@ -10150,6 +10203,18 @@ var Immer2 = class {
|
|
|
10150
10203
|
setUseStrictShallowCopy(value) {
|
|
10151
10204
|
this.useStrictShallowCopy_ = value;
|
|
10152
10205
|
}
|
|
10206
|
+
/**
|
|
10207
|
+
* Pass false to use faster iteration that skips non-enumerable properties
|
|
10208
|
+
* but still handles symbols for compatibility.
|
|
10209
|
+
*
|
|
10210
|
+
* By default, strict iteration is enabled (includes all own properties).
|
|
10211
|
+
*/
|
|
10212
|
+
setUseStrictIteration(value) {
|
|
10213
|
+
this.useStrictIteration_ = value;
|
|
10214
|
+
}
|
|
10215
|
+
shouldUseStrictIteration() {
|
|
10216
|
+
return this.useStrictIteration_;
|
|
10217
|
+
}
|
|
10153
10218
|
applyPatches(base2, patches) {
|
|
10154
10219
|
let i;
|
|
10155
10220
|
for (i = patches.length - 1; i >= 0; i--) {
|
|
@@ -10188,17 +10253,23 @@ function currentImpl(value) {
|
|
|
10188
10253
|
return value;
|
|
10189
10254
|
const state = value[DRAFT_STATE];
|
|
10190
10255
|
let copy2;
|
|
10256
|
+
let strict = true;
|
|
10191
10257
|
if (state) {
|
|
10192
10258
|
if (!state.modified_)
|
|
10193
10259
|
return state.base_;
|
|
10194
10260
|
state.finalized_ = true;
|
|
10195
10261
|
copy2 = shallowCopy(value, state.scope_.immer_.useStrictShallowCopy_);
|
|
10262
|
+
strict = state.scope_.immer_.shouldUseStrictIteration();
|
|
10196
10263
|
} else {
|
|
10197
10264
|
copy2 = shallowCopy(value, true);
|
|
10198
10265
|
}
|
|
10199
|
-
each$1(
|
|
10200
|
-
|
|
10201
|
-
|
|
10266
|
+
each$1(
|
|
10267
|
+
copy2,
|
|
10268
|
+
(key, childValue) => {
|
|
10269
|
+
set(copy2, key, currentImpl(childValue));
|
|
10270
|
+
},
|
|
10271
|
+
strict
|
|
10272
|
+
);
|
|
10202
10273
|
if (state) {
|
|
10203
10274
|
state.finalized_ = false;
|
|
10204
10275
|
}
|
|
@@ -11520,13 +11591,6 @@ function copyWithStructuralSharing(oldObj, newObj) {
|
|
|
11520
11591
|
}
|
|
11521
11592
|
return isSameObject ? oldObj : mergeObj;
|
|
11522
11593
|
}
|
|
11523
|
-
function countObjectKeys(obj) {
|
|
11524
|
-
let count = 0;
|
|
11525
|
-
for (const _key in obj) {
|
|
11526
|
-
count++;
|
|
11527
|
-
}
|
|
11528
|
-
return count;
|
|
11529
|
-
}
|
|
11530
11594
|
var flatten = (arr) => [].concat(...arr);
|
|
11531
11595
|
function isDocumentVisible() {
|
|
11532
11596
|
if (typeof document === "undefined") {
|
|
@@ -11537,13 +11601,12 @@ function isDocumentVisible() {
|
|
|
11537
11601
|
function isNotNullish(v2) {
|
|
11538
11602
|
return v2 != null;
|
|
11539
11603
|
}
|
|
11604
|
+
function filterNullishValues(map2) {
|
|
11605
|
+
return [...(map2 == null ? void 0 : map2.values()) ?? []].filter(isNotNullish);
|
|
11606
|
+
}
|
|
11540
11607
|
function isOnline() {
|
|
11541
11608
|
return typeof navigator === "undefined" ? true : navigator.onLine === void 0 ? true : navigator.onLine;
|
|
11542
11609
|
}
|
|
11543
|
-
function getOrInsert(map2, key, value) {
|
|
11544
|
-
if (map2.has(key)) return map2.get(key);
|
|
11545
|
-
return map2.set(key, value).get(key);
|
|
11546
|
-
}
|
|
11547
11610
|
function getOrInsertComputed(map2, key, compute) {
|
|
11548
11611
|
if (map2.has(key)) return map2.get(key);
|
|
11549
11612
|
return map2.set(key, compute(key)).get(key);
|
|
@@ -11600,12 +11663,16 @@ function buildInitiate({
|
|
|
11600
11663
|
mutationThunk,
|
|
11601
11664
|
api,
|
|
11602
11665
|
context,
|
|
11603
|
-
|
|
11666
|
+
getInternalState
|
|
11604
11667
|
}) {
|
|
11605
|
-
const {
|
|
11606
|
-
|
|
11607
|
-
|
|
11608
|
-
}
|
|
11668
|
+
const getRunningQueries = (dispatch) => {
|
|
11669
|
+
var _a;
|
|
11670
|
+
return (_a = getInternalState(dispatch)) == null ? void 0 : _a.runningQueries;
|
|
11671
|
+
};
|
|
11672
|
+
const getRunningMutations = (dispatch) => {
|
|
11673
|
+
var _a;
|
|
11674
|
+
return (_a = getInternalState(dispatch)) == null ? void 0 : _a.runningMutations;
|
|
11675
|
+
};
|
|
11609
11676
|
const {
|
|
11610
11677
|
unsubscribeQueryResult,
|
|
11611
11678
|
removeMutationResult,
|
|
@@ -11629,20 +11696,20 @@ function buildInitiate({
|
|
|
11629
11696
|
endpointDefinition,
|
|
11630
11697
|
endpointName
|
|
11631
11698
|
});
|
|
11632
|
-
return (_a =
|
|
11699
|
+
return (_a = getRunningQueries(dispatch)) == null ? void 0 : _a.get(queryCacheKey);
|
|
11633
11700
|
};
|
|
11634
11701
|
}
|
|
11635
11702
|
function getRunningMutationThunk(_endpointName, fixedCacheKeyOrRequestId) {
|
|
11636
11703
|
return (dispatch) => {
|
|
11637
11704
|
var _a;
|
|
11638
|
-
return (_a =
|
|
11705
|
+
return (_a = getRunningMutations(dispatch)) == null ? void 0 : _a.get(fixedCacheKeyOrRequestId);
|
|
11639
11706
|
};
|
|
11640
11707
|
}
|
|
11641
11708
|
function getRunningQueriesThunk() {
|
|
11642
|
-
return (dispatch) =>
|
|
11709
|
+
return (dispatch) => filterNullishValues(getRunningQueries(dispatch));
|
|
11643
11710
|
}
|
|
11644
11711
|
function getRunningMutationsThunk() {
|
|
11645
|
-
return (dispatch) =>
|
|
11712
|
+
return (dispatch) => filterNullishValues(getRunningMutations(dispatch));
|
|
11646
11713
|
}
|
|
11647
11714
|
function middlewareWarning(dispatch) {
|
|
11648
11715
|
if (process.env.NODE_ENV !== "production") {
|
|
@@ -11705,7 +11772,7 @@ You must add the middleware for RTK-Query to function correctly!`);
|
|
|
11705
11772
|
abort
|
|
11706
11773
|
} = thunkResult;
|
|
11707
11774
|
const skippedSynchronously = stateAfter.requestId !== requestId;
|
|
11708
|
-
const runningQuery = (_a =
|
|
11775
|
+
const runningQuery = (_a = getRunningQueries(dispatch)) == null ? void 0 : _a.get(queryCacheKey);
|
|
11709
11776
|
const selectFromState = () => selector(getState());
|
|
11710
11777
|
const statePromise = Object.assign(forceQueryFn ? (
|
|
11711
11778
|
// a query has been forced (upsertQueryData)
|
|
@@ -11753,13 +11820,10 @@ You must add the middleware for RTK-Query to function correctly!`);
|
|
|
11753
11820
|
}
|
|
11754
11821
|
});
|
|
11755
11822
|
if (!runningQuery && !skippedSynchronously && !forceQueryFn) {
|
|
11756
|
-
const
|
|
11757
|
-
|
|
11823
|
+
const runningQueries = getRunningQueries(dispatch);
|
|
11824
|
+
runningQueries.set(queryCacheKey, statePromise);
|
|
11758
11825
|
statePromise.then(() => {
|
|
11759
|
-
delete
|
|
11760
|
-
if (!countObjectKeys(running)) {
|
|
11761
|
-
runningQueries.delete(dispatch);
|
|
11762
|
-
}
|
|
11826
|
+
runningQueries.delete(queryCacheKey);
|
|
11763
11827
|
});
|
|
11764
11828
|
}
|
|
11765
11829
|
return statePromise;
|
|
@@ -11811,23 +11875,16 @@ You must add the middleware for RTK-Query to function correctly!`);
|
|
|
11811
11875
|
unwrap,
|
|
11812
11876
|
reset: reset2
|
|
11813
11877
|
});
|
|
11814
|
-
const
|
|
11815
|
-
runningMutations.set(
|
|
11816
|
-
running[requestId] = ret;
|
|
11878
|
+
const runningMutations = getRunningMutations(dispatch);
|
|
11879
|
+
runningMutations.set(requestId, ret);
|
|
11817
11880
|
ret.then(() => {
|
|
11818
|
-
delete
|
|
11819
|
-
if (!countObjectKeys(running)) {
|
|
11820
|
-
runningMutations.delete(dispatch);
|
|
11821
|
-
}
|
|
11881
|
+
runningMutations.delete(requestId);
|
|
11822
11882
|
});
|
|
11823
11883
|
if (fixedCacheKey) {
|
|
11824
|
-
|
|
11884
|
+
runningMutations.set(fixedCacheKey, ret);
|
|
11825
11885
|
ret.then(() => {
|
|
11826
|
-
if (
|
|
11827
|
-
delete
|
|
11828
|
-
if (!countObjectKeys(running)) {
|
|
11829
|
-
runningMutations.delete(dispatch);
|
|
11830
|
-
}
|
|
11886
|
+
if (runningMutations.get(fixedCacheKey) === ret) {
|
|
11887
|
+
runningMutations.delete(fixedCacheKey);
|
|
11831
11888
|
}
|
|
11832
11889
|
});
|
|
11833
11890
|
}
|
|
@@ -12261,13 +12318,13 @@ In the case of an unhandled error, no tags will be "provided" or "invalidated".`
|
|
|
12261
12318
|
});
|
|
12262
12319
|
const hasTheForce = (options) => "force" in options;
|
|
12263
12320
|
const hasMaxAge = (options) => "ifOlderThan" in options;
|
|
12264
|
-
const prefetch = (endpointName, arg, options) => (dispatch, getState) => {
|
|
12321
|
+
const prefetch = (endpointName, arg, options = {}) => (dispatch, getState) => {
|
|
12265
12322
|
const force = hasTheForce(options) && options.force;
|
|
12266
12323
|
const maxAge = hasMaxAge(options) && options.ifOlderThan;
|
|
12267
12324
|
const queryAction = (force2 = true) => {
|
|
12268
12325
|
const options2 = {
|
|
12269
12326
|
forceRefetch: force2,
|
|
12270
|
-
|
|
12327
|
+
subscribe: false
|
|
12271
12328
|
};
|
|
12272
12329
|
return api.endpoints[endpointName].initiate(arg, options2);
|
|
12273
12330
|
};
|
|
@@ -13273,7 +13330,6 @@ var buildCacheCollectionHandler = ({
|
|
|
13273
13330
|
unsubscribeQueryResult,
|
|
13274
13331
|
cacheEntriesUpserted
|
|
13275
13332
|
} = api.internalActions;
|
|
13276
|
-
const runningQueries = internalState.runningQueries.get(mwApi.dispatch);
|
|
13277
13333
|
const canTriggerUnsubscribe = isAnyOf(unsubscribeQueryResult.match, queryThunk.fulfilled, queryThunk.rejected, cacheEntriesUpserted.match);
|
|
13278
13334
|
function anySubscriptionsRemainingForKey(queryCacheKey) {
|
|
13279
13335
|
const subscriptions = internalState.currentSubscriptions.get(queryCacheKey);
|
|
@@ -13281,11 +13337,16 @@ var buildCacheCollectionHandler = ({
|
|
|
13281
13337
|
return false;
|
|
13282
13338
|
}
|
|
13283
13339
|
const hasSubscriptions = subscriptions.size > 0;
|
|
13284
|
-
|
|
13285
|
-
return hasSubscriptions || isRunning;
|
|
13340
|
+
return hasSubscriptions;
|
|
13286
13341
|
}
|
|
13287
13342
|
const currentRemovalTimeouts = {};
|
|
13288
|
-
|
|
13343
|
+
function abortAllPromises(promiseMap) {
|
|
13344
|
+
var _a;
|
|
13345
|
+
for (const promise of promiseMap.values()) {
|
|
13346
|
+
(_a = promise == null ? void 0 : promise.abort) == null ? void 0 : _a.call(promise);
|
|
13347
|
+
}
|
|
13348
|
+
}
|
|
13349
|
+
const handler = (action, mwApi2) => {
|
|
13289
13350
|
const state = mwApi2.getState();
|
|
13290
13351
|
const config = selectConfig(state);
|
|
13291
13352
|
if (canTriggerUnsubscribe(action)) {
|
|
@@ -13305,6 +13366,8 @@ var buildCacheCollectionHandler = ({
|
|
|
13305
13366
|
if (timeout) clearTimeout(timeout);
|
|
13306
13367
|
delete currentRemovalTimeouts[key];
|
|
13307
13368
|
}
|
|
13369
|
+
abortAllPromises(internalState.runningQueries);
|
|
13370
|
+
abortAllPromises(internalState.runningMutations);
|
|
13308
13371
|
}
|
|
13309
13372
|
if (context.hasRehydrationInfo(action)) {
|
|
13310
13373
|
const {
|
|
@@ -13814,7 +13877,7 @@ function buildMiddleware(input2) {
|
|
|
13814
13877
|
queryThunk,
|
|
13815
13878
|
api,
|
|
13816
13879
|
context,
|
|
13817
|
-
|
|
13880
|
+
getInternalState
|
|
13818
13881
|
} = input2;
|
|
13819
13882
|
const {
|
|
13820
13883
|
apiUid
|
|
@@ -13826,6 +13889,7 @@ function buildMiddleware(input2) {
|
|
|
13826
13889
|
const handlerBuilders = [buildDevCheckHandler, buildCacheCollectionHandler, buildInvalidationByTagsHandler, buildPollingHandler, buildCacheLifecycleHandler, buildQueryLifecycleHandler];
|
|
13827
13890
|
const middleware2 = (mwApi) => {
|
|
13828
13891
|
let initialized2 = false;
|
|
13892
|
+
const internalState = getInternalState(mwApi.dispatch);
|
|
13829
13893
|
const builderArgs = {
|
|
13830
13894
|
...input2,
|
|
13831
13895
|
internalState,
|
|
@@ -13984,11 +14048,15 @@ var coreModule = ({
|
|
|
13984
14048
|
upsertQueryEntries: sliceActions.cacheEntriesUpserted
|
|
13985
14049
|
});
|
|
13986
14050
|
safeAssign(api.internalActions, sliceActions);
|
|
13987
|
-
const
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
|
|
14051
|
+
const internalStateMap = /* @__PURE__ */ new WeakMap();
|
|
14052
|
+
const getInternalState = (dispatch) => {
|
|
14053
|
+
const state = getOrInsertComputed(internalStateMap, dispatch, () => ({
|
|
14054
|
+
currentSubscriptions: /* @__PURE__ */ new Map(),
|
|
14055
|
+
currentPolls: /* @__PURE__ */ new Map(),
|
|
14056
|
+
runningQueries: /* @__PURE__ */ new Map(),
|
|
14057
|
+
runningMutations: /* @__PURE__ */ new Map()
|
|
14058
|
+
}));
|
|
14059
|
+
return state;
|
|
13992
14060
|
};
|
|
13993
14061
|
const {
|
|
13994
14062
|
buildInitiateQuery,
|
|
@@ -14005,7 +14073,7 @@ var coreModule = ({
|
|
|
14005
14073
|
api,
|
|
14006
14074
|
serializeQueryArgs,
|
|
14007
14075
|
context,
|
|
14008
|
-
|
|
14076
|
+
getInternalState
|
|
14009
14077
|
});
|
|
14010
14078
|
safeAssign(api.util, {
|
|
14011
14079
|
getRunningMutationThunk,
|
|
@@ -14026,7 +14094,7 @@ var coreModule = ({
|
|
|
14026
14094
|
assertTagType,
|
|
14027
14095
|
selectors,
|
|
14028
14096
|
getRunningQueryThunk,
|
|
14029
|
-
|
|
14097
|
+
getInternalState
|
|
14030
14098
|
});
|
|
14031
14099
|
safeAssign(api.util, middlewareActions);
|
|
14032
14100
|
safeAssign(api, {
|
|
@@ -16813,7 +16881,7 @@ function toDate(argument, options = {}) {
|
|
|
16813
16881
|
}
|
|
16814
16882
|
const dateStrings = splitDateString(argument);
|
|
16815
16883
|
const { year, restDateString } = parseYear(dateStrings.date, additionalDigits);
|
|
16816
|
-
const date = parseDate(restDateString, year);
|
|
16884
|
+
const date = parseDate$1(restDateString, year);
|
|
16817
16885
|
if (date === null || isNaN(date.getTime())) {
|
|
16818
16886
|
return /* @__PURE__ */ new Date(NaN);
|
|
16819
16887
|
}
|
|
@@ -16894,7 +16962,7 @@ function parseYear(dateString, additionalDigits) {
|
|
|
16894
16962
|
year: null
|
|
16895
16963
|
};
|
|
16896
16964
|
}
|
|
16897
|
-
function parseDate(dateString, year) {
|
|
16965
|
+
function parseDate$1(dateString, year) {
|
|
16898
16966
|
if (year === null) {
|
|
16899
16967
|
return null;
|
|
16900
16968
|
}
|
|
@@ -17288,8 +17356,8 @@ function getDefaultExportFromCjs$1(x2) {
|
|
|
17288
17356
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
17289
17357
|
}
|
|
17290
17358
|
var propTypes = { exports: {} };
|
|
17291
|
-
var reactIs = { exports: {} };
|
|
17292
|
-
var reactIs_production_min = {};
|
|
17359
|
+
var reactIs$1 = { exports: {} };
|
|
17360
|
+
var reactIs_production_min$1 = {};
|
|
17293
17361
|
/** @license React v16.13.1
|
|
17294
17362
|
* react-is.production.min.js
|
|
17295
17363
|
*
|
|
@@ -17298,10 +17366,10 @@ var reactIs_production_min = {};
|
|
|
17298
17366
|
* This source code is licensed under the MIT license found in the
|
|
17299
17367
|
* LICENSE file in the root directory of this source tree.
|
|
17300
17368
|
*/
|
|
17301
|
-
var hasRequiredReactIs_production_min;
|
|
17302
|
-
function requireReactIs_production_min() {
|
|
17303
|
-
if (hasRequiredReactIs_production_min) return reactIs_production_min;
|
|
17304
|
-
hasRequiredReactIs_production_min = 1;
|
|
17369
|
+
var hasRequiredReactIs_production_min$1;
|
|
17370
|
+
function requireReactIs_production_min$1() {
|
|
17371
|
+
if (hasRequiredReactIs_production_min$1) return reactIs_production_min$1;
|
|
17372
|
+
hasRequiredReactIs_production_min$1 = 1;
|
|
17305
17373
|
var b = "function" === typeof Symbol && Symbol.for, c = b ? Symbol.for("react.element") : 60103, d = b ? Symbol.for("react.portal") : 60106, e = b ? Symbol.for("react.fragment") : 60107, f2 = b ? Symbol.for("react.strict_mode") : 60108, g2 = b ? Symbol.for("react.profiler") : 60114, h = b ? Symbol.for("react.provider") : 60109, k2 = b ? Symbol.for("react.context") : 60110, l = b ? Symbol.for("react.async_mode") : 60111, m2 = b ? Symbol.for("react.concurrent_mode") : 60111, n = b ? Symbol.for("react.forward_ref") : 60112, p = b ? Symbol.for("react.suspense") : 60113, q2 = b ? Symbol.for("react.suspense_list") : 60120, r2 = b ? Symbol.for("react.memo") : 60115, t = b ? Symbol.for("react.lazy") : 60116, v2 = b ? Symbol.for("react.block") : 60121, w2 = b ? Symbol.for("react.fundamental") : 60117, x2 = b ? Symbol.for("react.responder") : 60118, y2 = b ? Symbol.for("react.scope") : 60119;
|
|
17306
17374
|
function z2(a) {
|
|
17307
17375
|
if ("object" === typeof a && null !== a) {
|
|
@@ -17336,63 +17404,63 @@ function requireReactIs_production_min() {
|
|
|
17336
17404
|
function A2(a) {
|
|
17337
17405
|
return z2(a) === m2;
|
|
17338
17406
|
}
|
|
17339
|
-
reactIs_production_min.AsyncMode = l;
|
|
17340
|
-
reactIs_production_min.ConcurrentMode = m2;
|
|
17341
|
-
reactIs_production_min.ContextConsumer = k2;
|
|
17342
|
-
reactIs_production_min.ContextProvider = h;
|
|
17343
|
-
reactIs_production_min.Element = c;
|
|
17344
|
-
reactIs_production_min.ForwardRef = n;
|
|
17345
|
-
reactIs_production_min.Fragment = e;
|
|
17346
|
-
reactIs_production_min.Lazy = t;
|
|
17347
|
-
reactIs_production_min.Memo = r2;
|
|
17348
|
-
reactIs_production_min.Portal = d;
|
|
17349
|
-
reactIs_production_min.Profiler = g2;
|
|
17350
|
-
reactIs_production_min.StrictMode = f2;
|
|
17351
|
-
reactIs_production_min.Suspense = p;
|
|
17352
|
-
reactIs_production_min.isAsyncMode = function(a) {
|
|
17407
|
+
reactIs_production_min$1.AsyncMode = l;
|
|
17408
|
+
reactIs_production_min$1.ConcurrentMode = m2;
|
|
17409
|
+
reactIs_production_min$1.ContextConsumer = k2;
|
|
17410
|
+
reactIs_production_min$1.ContextProvider = h;
|
|
17411
|
+
reactIs_production_min$1.Element = c;
|
|
17412
|
+
reactIs_production_min$1.ForwardRef = n;
|
|
17413
|
+
reactIs_production_min$1.Fragment = e;
|
|
17414
|
+
reactIs_production_min$1.Lazy = t;
|
|
17415
|
+
reactIs_production_min$1.Memo = r2;
|
|
17416
|
+
reactIs_production_min$1.Portal = d;
|
|
17417
|
+
reactIs_production_min$1.Profiler = g2;
|
|
17418
|
+
reactIs_production_min$1.StrictMode = f2;
|
|
17419
|
+
reactIs_production_min$1.Suspense = p;
|
|
17420
|
+
reactIs_production_min$1.isAsyncMode = function(a) {
|
|
17353
17421
|
return A2(a) || z2(a) === l;
|
|
17354
17422
|
};
|
|
17355
|
-
reactIs_production_min.isConcurrentMode = A2;
|
|
17356
|
-
reactIs_production_min.isContextConsumer = function(a) {
|
|
17423
|
+
reactIs_production_min$1.isConcurrentMode = A2;
|
|
17424
|
+
reactIs_production_min$1.isContextConsumer = function(a) {
|
|
17357
17425
|
return z2(a) === k2;
|
|
17358
17426
|
};
|
|
17359
|
-
reactIs_production_min.isContextProvider = function(a) {
|
|
17427
|
+
reactIs_production_min$1.isContextProvider = function(a) {
|
|
17360
17428
|
return z2(a) === h;
|
|
17361
17429
|
};
|
|
17362
|
-
reactIs_production_min.isElement = function(a) {
|
|
17430
|
+
reactIs_production_min$1.isElement = function(a) {
|
|
17363
17431
|
return "object" === typeof a && null !== a && a.$$typeof === c;
|
|
17364
17432
|
};
|
|
17365
|
-
reactIs_production_min.isForwardRef = function(a) {
|
|
17433
|
+
reactIs_production_min$1.isForwardRef = function(a) {
|
|
17366
17434
|
return z2(a) === n;
|
|
17367
17435
|
};
|
|
17368
|
-
reactIs_production_min.isFragment = function(a) {
|
|
17436
|
+
reactIs_production_min$1.isFragment = function(a) {
|
|
17369
17437
|
return z2(a) === e;
|
|
17370
17438
|
};
|
|
17371
|
-
reactIs_production_min.isLazy = function(a) {
|
|
17439
|
+
reactIs_production_min$1.isLazy = function(a) {
|
|
17372
17440
|
return z2(a) === t;
|
|
17373
17441
|
};
|
|
17374
|
-
reactIs_production_min.isMemo = function(a) {
|
|
17442
|
+
reactIs_production_min$1.isMemo = function(a) {
|
|
17375
17443
|
return z2(a) === r2;
|
|
17376
17444
|
};
|
|
17377
|
-
reactIs_production_min.isPortal = function(a) {
|
|
17445
|
+
reactIs_production_min$1.isPortal = function(a) {
|
|
17378
17446
|
return z2(a) === d;
|
|
17379
17447
|
};
|
|
17380
|
-
reactIs_production_min.isProfiler = function(a) {
|
|
17448
|
+
reactIs_production_min$1.isProfiler = function(a) {
|
|
17381
17449
|
return z2(a) === g2;
|
|
17382
17450
|
};
|
|
17383
|
-
reactIs_production_min.isStrictMode = function(a) {
|
|
17451
|
+
reactIs_production_min$1.isStrictMode = function(a) {
|
|
17384
17452
|
return z2(a) === f2;
|
|
17385
17453
|
};
|
|
17386
|
-
reactIs_production_min.isSuspense = function(a) {
|
|
17454
|
+
reactIs_production_min$1.isSuspense = function(a) {
|
|
17387
17455
|
return z2(a) === p;
|
|
17388
17456
|
};
|
|
17389
|
-
reactIs_production_min.isValidElementType = function(a) {
|
|
17457
|
+
reactIs_production_min$1.isValidElementType = function(a) {
|
|
17390
17458
|
return "string" === typeof a || "function" === typeof a || a === e || a === m2 || a === g2 || a === f2 || a === p || a === q2 || "object" === typeof a && null !== a && (a.$$typeof === t || a.$$typeof === r2 || a.$$typeof === h || a.$$typeof === k2 || a.$$typeof === n || a.$$typeof === w2 || a.$$typeof === x2 || a.$$typeof === y2 || a.$$typeof === v2);
|
|
17391
17459
|
};
|
|
17392
|
-
reactIs_production_min.typeOf = z2;
|
|
17393
|
-
return reactIs_production_min;
|
|
17460
|
+
reactIs_production_min$1.typeOf = z2;
|
|
17461
|
+
return reactIs_production_min$1;
|
|
17394
17462
|
}
|
|
17395
|
-
var reactIs_development = {};
|
|
17463
|
+
var reactIs_development$1 = {};
|
|
17396
17464
|
/** @license React v16.13.1
|
|
17397
17465
|
* react-is.development.js
|
|
17398
17466
|
*
|
|
@@ -17401,10 +17469,10 @@ var reactIs_development = {};
|
|
|
17401
17469
|
* This source code is licensed under the MIT license found in the
|
|
17402
17470
|
* LICENSE file in the root directory of this source tree.
|
|
17403
17471
|
*/
|
|
17404
|
-
var hasRequiredReactIs_development;
|
|
17405
|
-
function requireReactIs_development() {
|
|
17406
|
-
if (hasRequiredReactIs_development) return reactIs_development;
|
|
17407
|
-
hasRequiredReactIs_development = 1;
|
|
17472
|
+
var hasRequiredReactIs_development$1;
|
|
17473
|
+
function requireReactIs_development$1() {
|
|
17474
|
+
if (hasRequiredReactIs_development$1) return reactIs_development$1;
|
|
17475
|
+
hasRequiredReactIs_development$1 = 1;
|
|
17408
17476
|
if (process.env.NODE_ENV !== "production") {
|
|
17409
17477
|
(function() {
|
|
17410
17478
|
var hasSymbol = typeof Symbol === "function" && Symbol.for;
|
|
@@ -17522,48 +17590,48 @@ function requireReactIs_development() {
|
|
|
17522
17590
|
function isSuspense(object) {
|
|
17523
17591
|
return typeOf(object) === REACT_SUSPENSE_TYPE;
|
|
17524
17592
|
}
|
|
17525
|
-
reactIs_development.AsyncMode = AsyncMode;
|
|
17526
|
-
reactIs_development.ConcurrentMode = ConcurrentMode;
|
|
17527
|
-
reactIs_development.ContextConsumer = ContextConsumer;
|
|
17528
|
-
reactIs_development.ContextProvider = ContextProvider;
|
|
17529
|
-
reactIs_development.Element = Element2;
|
|
17530
|
-
reactIs_development.ForwardRef = ForwardRef;
|
|
17531
|
-
reactIs_development.Fragment = Fragment2;
|
|
17532
|
-
reactIs_development.Lazy = Lazy;
|
|
17533
|
-
reactIs_development.Memo = Memo;
|
|
17534
|
-
reactIs_development.Portal = Portal;
|
|
17535
|
-
reactIs_development.Profiler = Profiler;
|
|
17536
|
-
reactIs_development.StrictMode = StrictMode;
|
|
17537
|
-
reactIs_development.Suspense = Suspense2;
|
|
17538
|
-
reactIs_development.isAsyncMode = isAsyncMode;
|
|
17539
|
-
reactIs_development.isConcurrentMode = isConcurrentMode;
|
|
17540
|
-
reactIs_development.isContextConsumer = isContextConsumer;
|
|
17541
|
-
reactIs_development.isContextProvider = isContextProvider;
|
|
17542
|
-
reactIs_development.isElement = isElement;
|
|
17543
|
-
reactIs_development.isForwardRef = isForwardRef;
|
|
17544
|
-
reactIs_development.isFragment = isFragment2;
|
|
17545
|
-
reactIs_development.isLazy = isLazy;
|
|
17546
|
-
reactIs_development.isMemo = isMemo;
|
|
17547
|
-
reactIs_development.isPortal = isPortal;
|
|
17548
|
-
reactIs_development.isProfiler = isProfiler;
|
|
17549
|
-
reactIs_development.isStrictMode = isStrictMode;
|
|
17550
|
-
reactIs_development.isSuspense = isSuspense;
|
|
17551
|
-
reactIs_development.isValidElementType = isValidElementType;
|
|
17552
|
-
reactIs_development.typeOf = typeOf;
|
|
17593
|
+
reactIs_development$1.AsyncMode = AsyncMode;
|
|
17594
|
+
reactIs_development$1.ConcurrentMode = ConcurrentMode;
|
|
17595
|
+
reactIs_development$1.ContextConsumer = ContextConsumer;
|
|
17596
|
+
reactIs_development$1.ContextProvider = ContextProvider;
|
|
17597
|
+
reactIs_development$1.Element = Element2;
|
|
17598
|
+
reactIs_development$1.ForwardRef = ForwardRef;
|
|
17599
|
+
reactIs_development$1.Fragment = Fragment2;
|
|
17600
|
+
reactIs_development$1.Lazy = Lazy;
|
|
17601
|
+
reactIs_development$1.Memo = Memo;
|
|
17602
|
+
reactIs_development$1.Portal = Portal;
|
|
17603
|
+
reactIs_development$1.Profiler = Profiler;
|
|
17604
|
+
reactIs_development$1.StrictMode = StrictMode;
|
|
17605
|
+
reactIs_development$1.Suspense = Suspense2;
|
|
17606
|
+
reactIs_development$1.isAsyncMode = isAsyncMode;
|
|
17607
|
+
reactIs_development$1.isConcurrentMode = isConcurrentMode;
|
|
17608
|
+
reactIs_development$1.isContextConsumer = isContextConsumer;
|
|
17609
|
+
reactIs_development$1.isContextProvider = isContextProvider;
|
|
17610
|
+
reactIs_development$1.isElement = isElement;
|
|
17611
|
+
reactIs_development$1.isForwardRef = isForwardRef;
|
|
17612
|
+
reactIs_development$1.isFragment = isFragment2;
|
|
17613
|
+
reactIs_development$1.isLazy = isLazy;
|
|
17614
|
+
reactIs_development$1.isMemo = isMemo;
|
|
17615
|
+
reactIs_development$1.isPortal = isPortal;
|
|
17616
|
+
reactIs_development$1.isProfiler = isProfiler;
|
|
17617
|
+
reactIs_development$1.isStrictMode = isStrictMode;
|
|
17618
|
+
reactIs_development$1.isSuspense = isSuspense;
|
|
17619
|
+
reactIs_development$1.isValidElementType = isValidElementType;
|
|
17620
|
+
reactIs_development$1.typeOf = typeOf;
|
|
17553
17621
|
})();
|
|
17554
17622
|
}
|
|
17555
|
-
return reactIs_development;
|
|
17623
|
+
return reactIs_development$1;
|
|
17556
17624
|
}
|
|
17557
|
-
var hasRequiredReactIs;
|
|
17558
|
-
function requireReactIs() {
|
|
17559
|
-
if (hasRequiredReactIs) return reactIs.exports;
|
|
17560
|
-
hasRequiredReactIs = 1;
|
|
17625
|
+
var hasRequiredReactIs$1;
|
|
17626
|
+
function requireReactIs$1() {
|
|
17627
|
+
if (hasRequiredReactIs$1) return reactIs$1.exports;
|
|
17628
|
+
hasRequiredReactIs$1 = 1;
|
|
17561
17629
|
if (process.env.NODE_ENV === "production") {
|
|
17562
|
-
reactIs.exports = requireReactIs_production_min();
|
|
17630
|
+
reactIs$1.exports = requireReactIs_production_min$1();
|
|
17563
17631
|
} else {
|
|
17564
|
-
reactIs.exports = requireReactIs_development();
|
|
17632
|
+
reactIs$1.exports = requireReactIs_development$1();
|
|
17565
17633
|
}
|
|
17566
|
-
return reactIs.exports;
|
|
17634
|
+
return reactIs$1.exports;
|
|
17567
17635
|
}
|
|
17568
17636
|
/*
|
|
17569
17637
|
object-assign
|
|
@@ -17725,7 +17793,7 @@ var hasRequiredFactoryWithTypeCheckers;
|
|
|
17725
17793
|
function requireFactoryWithTypeCheckers() {
|
|
17726
17794
|
if (hasRequiredFactoryWithTypeCheckers) return factoryWithTypeCheckers;
|
|
17727
17795
|
hasRequiredFactoryWithTypeCheckers = 1;
|
|
17728
|
-
var ReactIs = requireReactIs();
|
|
17796
|
+
var ReactIs = requireReactIs$1();
|
|
17729
17797
|
var assign2 = requireObjectAssign();
|
|
17730
17798
|
var ReactPropTypesSecret = /* @__PURE__ */ requireReactPropTypesSecret();
|
|
17731
17799
|
var has2 = /* @__PURE__ */ requireHas();
|
|
@@ -18222,7 +18290,7 @@ function requirePropTypes() {
|
|
|
18222
18290
|
if (hasRequiredPropTypes) return propTypes.exports;
|
|
18223
18291
|
hasRequiredPropTypes = 1;
|
|
18224
18292
|
if (process.env.NODE_ENV !== "production") {
|
|
18225
|
-
var ReactIs = requireReactIs();
|
|
18293
|
+
var ReactIs = requireReactIs$1();
|
|
18226
18294
|
var throwOnDirectAccess = true;
|
|
18227
18295
|
propTypes.exports = /* @__PURE__ */ requireFactoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
|
18228
18296
|
} else {
|
|
@@ -22068,6 +22136,7 @@ class ParseContext {
|
|
|
22068
22136
|
addTextNode(dom, marks) {
|
|
22069
22137
|
let value = dom.nodeValue;
|
|
22070
22138
|
let top = this.top, preserveWS = top.options & OPT_PRESERVE_WS_FULL ? "full" : this.localPreserveWS || (top.options & OPT_PRESERVE_WS) > 0;
|
|
22139
|
+
let { schema } = this.parser;
|
|
22071
22140
|
if (preserveWS === "full" || top.inlineContext(dom) || /[^ \t\r\n\u000c]/.test(value)) {
|
|
22072
22141
|
if (!preserveWS) {
|
|
22073
22142
|
value = value.replace(/[ \t\r\n\u000c]+/g, " ");
|
|
@@ -22077,13 +22146,22 @@ class ParseContext {
|
|
|
22077
22146
|
if (!nodeBefore || domNodeBefore && domNodeBefore.nodeName == "BR" || nodeBefore.isText && /[ \t\r\n\u000c]$/.test(nodeBefore.text))
|
|
22078
22147
|
value = value.slice(1);
|
|
22079
22148
|
}
|
|
22080
|
-
} else if (preserveWS
|
|
22081
|
-
value = value.replace(/\r?\n|\r/g, " ");
|
|
22082
|
-
} else {
|
|
22149
|
+
} else if (preserveWS === "full") {
|
|
22083
22150
|
value = value.replace(/\r\n?/g, "\n");
|
|
22151
|
+
} else if (schema.linebreakReplacement && /[\r\n]/.test(value) && this.top.findWrapping(schema.linebreakReplacement.create())) {
|
|
22152
|
+
let lines = value.split(/\r?\n|\r/);
|
|
22153
|
+
for (let i = 0; i < lines.length; i++) {
|
|
22154
|
+
if (i)
|
|
22155
|
+
this.insertNode(schema.linebreakReplacement.create(), marks, true);
|
|
22156
|
+
if (lines[i])
|
|
22157
|
+
this.insertNode(schema.text(lines[i]), marks, !/\S/.test(lines[i]));
|
|
22158
|
+
}
|
|
22159
|
+
value = "";
|
|
22160
|
+
} else {
|
|
22161
|
+
value = value.replace(/\r?\n|\r/g, " ");
|
|
22084
22162
|
}
|
|
22085
22163
|
if (value)
|
|
22086
|
-
this.insertNode(
|
|
22164
|
+
this.insertNode(schema.text(value), marks, !/\S/.test(value));
|
|
22087
22165
|
this.findInText(dom);
|
|
22088
22166
|
} else {
|
|
22089
22167
|
this.findInside(dom);
|
|
@@ -25051,7 +25129,6 @@ class Transaction extends Transform {
|
|
|
25051
25129
|
} else {
|
|
25052
25130
|
if (to == null)
|
|
25053
25131
|
to = from3;
|
|
25054
|
-
to = to == null ? from3 : to;
|
|
25055
25132
|
if (!text)
|
|
25056
25133
|
return this.deleteRange(from3, to);
|
|
25057
25134
|
let marks = this.storedMarks;
|
|
@@ -25060,7 +25137,7 @@ class Transaction extends Transform {
|
|
|
25060
25137
|
marks = to == from3 ? $from.marks() : $from.marksAcross(this.doc.resolve(to));
|
|
25061
25138
|
}
|
|
25062
25139
|
this.replaceRangeWith(from3, to, schema.text(text, marks));
|
|
25063
|
-
if (!this.selection.empty)
|
|
25140
|
+
if (!this.selection.empty && this.selection.to == from3 + text.length)
|
|
25064
25141
|
this.setSelection(Selection.near(this.selection.$to));
|
|
25065
25142
|
return this;
|
|
25066
25143
|
}
|
|
@@ -25252,7 +25329,7 @@ class EditorState {
|
|
|
25252
25329
|
return newInstance;
|
|
25253
25330
|
}
|
|
25254
25331
|
/**
|
|
25255
|
-
|
|
25332
|
+
Accessor that constructs and returns a new [transaction](https://prosemirror.net/docs/ref/#state.Transaction) from this state.
|
|
25256
25333
|
*/
|
|
25257
25334
|
get tr() {
|
|
25258
25335
|
return new Transaction(this);
|
|
@@ -29882,8 +29959,7 @@ function readDOMChange(view, from3, to, typeOver, addedNodes) {
|
|
|
29882
29959
|
let $to = parse2.doc.resolveNoCache(change.endB - parse2.from);
|
|
29883
29960
|
let $fromA = doc2.resolve(change.start);
|
|
29884
29961
|
let inlineChange = $from.sameParent($to) && $from.parent.inlineContent && $fromA.end() >= change.endA;
|
|
29885
|
-
|
|
29886
|
-
if ((ios && view.input.lastIOSEnter > Date.now() - 225 && (!inlineChange || addedNodes.some((n) => n.nodeName == "DIV" || n.nodeName == "P")) || !inlineChange && $from.pos < parse2.doc.content.size && (!$from.sameParent($to) || !$from.parent.inlineContent) && !/\S/.test(parse2.doc.textBetween($from.pos, $to.pos, "", "")) && (nextSel = Selection.findFrom(parse2.doc.resolve($from.pos + 1), 1, true)) && nextSel.head > $from.pos) && view.someProp("handleKeyDown", (f2) => f2(view, keyEvent(13, "Enter")))) {
|
|
29962
|
+
if ((ios && view.input.lastIOSEnter > Date.now() - 225 && (!inlineChange || addedNodes.some((n) => n.nodeName == "DIV" || n.nodeName == "P")) || !inlineChange && $from.pos < parse2.doc.content.size && (!$from.sameParent($to) || !$from.parent.inlineContent) && $from.pos < $to.pos && !/\S/.test(parse2.doc.textBetween($from.pos, $to.pos, "", ""))) && view.someProp("handleKeyDown", (f2) => f2(view, keyEvent(13, "Enter")))) {
|
|
29887
29963
|
view.input.lastIOSEnter = 0;
|
|
29888
29964
|
return;
|
|
29889
29965
|
}
|
|
@@ -29942,6 +30018,8 @@ function readDOMChange(view, from3, to, typeOver, addedNodes) {
|
|
|
29942
30018
|
let deflt = () => mkTr(view.state.tr.insertText(text, chFrom, chTo));
|
|
29943
30019
|
if (!view.someProp("handleTextInput", (f2) => f2(view, chFrom, chTo, text, deflt)))
|
|
29944
30020
|
view.dispatch(deflt());
|
|
30021
|
+
} else {
|
|
30022
|
+
view.dispatch(mkTr());
|
|
29945
30023
|
}
|
|
29946
30024
|
} else {
|
|
29947
30025
|
view.dispatch(mkTr());
|
|
@@ -38790,6 +38868,9 @@ class GapBookmark {
|
|
|
38790
38868
|
return GapCursor.valid($pos) ? new GapCursor($pos) : Selection.near($pos);
|
|
38791
38869
|
}
|
|
38792
38870
|
}
|
|
38871
|
+
function needsGap(type2) {
|
|
38872
|
+
return type2.isAtom || type2.spec.isolating || type2.spec.createGapCursor;
|
|
38873
|
+
}
|
|
38793
38874
|
function closedBefore($pos) {
|
|
38794
38875
|
for (let d = $pos.depth; d >= 0; d--) {
|
|
38795
38876
|
let index2 = $pos.index(d), parent = $pos.node(d);
|
|
@@ -38799,7 +38880,7 @@ function closedBefore($pos) {
|
|
|
38799
38880
|
continue;
|
|
38800
38881
|
}
|
|
38801
38882
|
for (let before = parent.child(index2 - 1); ; before = before.lastChild) {
|
|
38802
|
-
if (before.childCount == 0 && !before.inlineContent || before.
|
|
38883
|
+
if (before.childCount == 0 && !before.inlineContent || needsGap(before.type))
|
|
38803
38884
|
return true;
|
|
38804
38885
|
if (before.inlineContent)
|
|
38805
38886
|
return false;
|
|
@@ -38816,7 +38897,7 @@ function closedAfter($pos) {
|
|
|
38816
38897
|
continue;
|
|
38817
38898
|
}
|
|
38818
38899
|
for (let after = parent.child(index2); ; after = after.firstChild) {
|
|
38819
|
-
if (after.childCount == 0 && !after.inlineContent || after.
|
|
38900
|
+
if (after.childCount == 0 && !after.inlineContent || needsGap(after.type))
|
|
38820
38901
|
return true;
|
|
38821
38902
|
if (after.inlineContent)
|
|
38822
38903
|
return false;
|
|
@@ -47451,7 +47532,7 @@ const StatusesListBoard = () => {
|
|
|
47451
47532
|
}
|
|
47452
47533
|
) });
|
|
47453
47534
|
};
|
|
47454
|
-
const KanbanLayout = lazy(() => import("./KanbanLayout-
|
|
47535
|
+
const KanbanLayout = lazy(() => import("./KanbanLayout-_7CnQOIn.js"));
|
|
47455
47536
|
const DifferentLayoutsBoard = () => {
|
|
47456
47537
|
const { layoutView } = useOnboardingState();
|
|
47457
47538
|
switch (layoutView) {
|
|
@@ -49482,7 +49563,7 @@ const styles$e = {
|
|
|
49482
49563
|
filterPill,
|
|
49483
49564
|
filterPillLabel
|
|
49484
49565
|
};
|
|
49485
|
-
const
|
|
49566
|
+
const DateFilter = ({ setSelectedFilter, selectedFilter }) => {
|
|
49486
49567
|
const { t, i18n } = useTranslation("searchPage");
|
|
49487
49568
|
const [dateValue, setDateValue] = useState([
|
|
49488
49569
|
null,
|
|
@@ -49517,15 +49598,19 @@ const Date$1 = ({ setSelectedFilter, selectedFilter }) => {
|
|
|
49517
49598
|
}
|
|
49518
49599
|
};
|
|
49519
49600
|
const handlePickRange = (range) => {
|
|
49520
|
-
|
|
49601
|
+
const dateRange = [
|
|
49602
|
+
parseDate(range[0]),
|
|
49603
|
+
parseDate(range[1])
|
|
49604
|
+
];
|
|
49605
|
+
setDateValue(dateRange);
|
|
49521
49606
|
setSelectedFilter(
|
|
49522
49607
|
(prev2) => {
|
|
49523
49608
|
var _a, _b;
|
|
49524
49609
|
return {
|
|
49525
49610
|
...prev2,
|
|
49526
49611
|
range: {
|
|
49527
|
-
createdAtFrom: ((_a =
|
|
49528
|
-
createdAtTo: ((_b =
|
|
49612
|
+
createdAtFrom: ((_a = dateRange[0]) == null ? void 0 : _a.getTime()) || 0,
|
|
49613
|
+
createdAtTo: ((_b = dateRange[1]) == null ? void 0 : _b.getTime()) || 0
|
|
49529
49614
|
}
|
|
49530
49615
|
};
|
|
49531
49616
|
}
|
|
@@ -49928,7 +50013,7 @@ const SearchFilters = ({
|
|
|
49928
50013
|
}
|
|
49929
50014
|
),
|
|
49930
50015
|
allowedFilters.includes("range") && /* @__PURE__ */ jsx$1(
|
|
49931
|
-
|
|
50016
|
+
DateFilter,
|
|
49932
50017
|
{
|
|
49933
50018
|
selectedFilter,
|
|
49934
50019
|
setSelectedFilter
|
|
@@ -71511,7 +71596,13 @@ const styles$d = {
|
|
|
71511
71596
|
"vod-player": "_vod-player_1lmjo_1",
|
|
71512
71597
|
"vod-player__player": "_vod-player__player_1lmjo_13"
|
|
71513
71598
|
};
|
|
71514
|
-
const ShakaVideoPlayer = ({
|
|
71599
|
+
const ShakaVideoPlayer = ({
|
|
71600
|
+
attachmentId,
|
|
71601
|
+
stylesContainer,
|
|
71602
|
+
src,
|
|
71603
|
+
autoPlay,
|
|
71604
|
+
loader
|
|
71605
|
+
}) => {
|
|
71515
71606
|
const [vodUrl, setVodUrl] = useState(null);
|
|
71516
71607
|
const [isError2, setIsError] = useState(false);
|
|
71517
71608
|
const isMounted = useRef(true);
|
|
@@ -71546,6 +71637,10 @@ const ShakaVideoPlayer = ({ attachmentId }) => {
|
|
|
71546
71637
|
isMounted.current = true;
|
|
71547
71638
|
setVodUrl(null);
|
|
71548
71639
|
setIsError(false);
|
|
71640
|
+
if (src) {
|
|
71641
|
+
setVodUrl(src);
|
|
71642
|
+
return;
|
|
71643
|
+
}
|
|
71549
71644
|
fetchVodUrl();
|
|
71550
71645
|
return () => {
|
|
71551
71646
|
isMounted.current = false;
|
|
@@ -71553,21 +71648,28 @@ const ShakaVideoPlayer = ({ attachmentId }) => {
|
|
|
71553
71648
|
clearTimeout(retryTimeoutRef.current);
|
|
71554
71649
|
}
|
|
71555
71650
|
};
|
|
71556
|
-
}, [attachmentId]);
|
|
71651
|
+
}, [attachmentId, src]);
|
|
71557
71652
|
if (isError2) {
|
|
71558
71653
|
return /* @__PURE__ */ jsx$1("div", { className: "vod-player__status vod-player__status--error", children: "❌ Video loading error" });
|
|
71559
71654
|
}
|
|
71560
71655
|
if (!vodUrl) {
|
|
71561
|
-
return /* @__PURE__ */ jsx$1(
|
|
71656
|
+
return /* @__PURE__ */ jsx$1(Fragment$1, { children: loader ?? /* @__PURE__ */ jsx$1(BouncingLogo, {}) });
|
|
71562
71657
|
}
|
|
71563
|
-
return /* @__PURE__ */ jsx$1(
|
|
71564
|
-
|
|
71658
|
+
return /* @__PURE__ */ jsx$1(
|
|
71659
|
+
"div",
|
|
71565
71660
|
{
|
|
71566
|
-
|
|
71567
|
-
|
|
71568
|
-
|
|
71661
|
+
className: styles$d["vod-player"],
|
|
71662
|
+
style: { ...stylesContainer || {} },
|
|
71663
|
+
children: /* @__PURE__ */ jsx$1(
|
|
71664
|
+
ShakaPlayer,
|
|
71665
|
+
{
|
|
71666
|
+
autoPlay: autoPlay ?? true,
|
|
71667
|
+
className: styles$d["vod-player__player"],
|
|
71668
|
+
src: vodUrl || ""
|
|
71669
|
+
}
|
|
71670
|
+
)
|
|
71569
71671
|
}
|
|
71570
|
-
)
|
|
71672
|
+
);
|
|
71571
71673
|
};
|
|
71572
71674
|
const AttachImage = ({
|
|
71573
71675
|
attachment,
|
|
@@ -71635,7 +71737,7 @@ const AttachImage = ({
|
|
|
71635
71737
|
zIndex: 99
|
|
71636
71738
|
},
|
|
71637
71739
|
children: [
|
|
71638
|
-
/* @__PURE__ */ jsxs(Flex, { align: "center", gap: 12, miw: 0, children: [
|
|
71740
|
+
attachment.originalFileName ? /* @__PURE__ */ jsxs(Flex, { align: "center", gap: 12, miw: 0, children: [
|
|
71639
71741
|
/* @__PURE__ */ jsx$1(
|
|
71640
71742
|
Flex,
|
|
71641
71743
|
{
|
|
@@ -71654,14 +71756,14 @@ const AttachImage = ({
|
|
|
71654
71756
|
}
|
|
71655
71757
|
),
|
|
71656
71758
|
/* @__PURE__ */ jsxs(Stack, { gap: 0, miw: 0, children: [
|
|
71657
|
-
|
|
71759
|
+
/* @__PURE__ */ jsx$1(Text$2, { size: "md", c: "white", truncate: "end", children: attachment.originalFileName }),
|
|
71658
71760
|
attachment.fileSize ? /* @__PURE__ */ jsxs(Text$2, { size: "sm", c: "dark.1", truncate: "end", children: [
|
|
71659
71761
|
attachment.contentType,
|
|
71660
71762
|
" / ",
|
|
71661
71763
|
formatBytes(attachment.fileSize)
|
|
71662
71764
|
] }) : null
|
|
71663
71765
|
] })
|
|
71664
|
-
] }),
|
|
71766
|
+
] }) : /* @__PURE__ */ jsx$1("div", {}),
|
|
71665
71767
|
/* @__PURE__ */ jsxs(Flex, { gap: 4, children: [
|
|
71666
71768
|
/* @__PURE__ */ jsx$1(
|
|
71667
71769
|
Tooltip,
|
|
@@ -71777,7 +71879,7 @@ const AttachmentsGalleryModal = memo$1(
|
|
|
71777
71879
|
}
|
|
71778
71880
|
},
|
|
71779
71881
|
children: [
|
|
71780
|
-
showAttach && /* @__PURE__ */ jsx$1(
|
|
71882
|
+
showAttach && /* @__PURE__ */ jsx$1(
|
|
71781
71883
|
AttachImage,
|
|
71782
71884
|
{
|
|
71783
71885
|
attachment: showAttach,
|
|
@@ -71785,7 +71887,7 @@ const AttachmentsGalleryModal = memo$1(
|
|
|
71785
71887
|
onClose: () => onOpenChange(false),
|
|
71786
71888
|
translation
|
|
71787
71889
|
}
|
|
71788
|
-
)
|
|
71890
|
+
),
|
|
71789
71891
|
!isFirst && !isVideo && /* @__PURE__ */ jsx$1(
|
|
71790
71892
|
ActionIcon,
|
|
71791
71893
|
{
|
|
@@ -72015,58 +72117,58 @@ const Icon = ({
|
|
|
72015
72117
|
const CurrentIcon = iconsBlockTypeToBlockName[name] || iconsBlockTypeToBlockName["bullet"];
|
|
72016
72118
|
return /* @__PURE__ */ jsx$1(Flex, { gap: 0, justify: "center", align: "center", ...rest, children: /* @__PURE__ */ jsx$1(CurrentIcon, { size: 18, stroke: 2, style: iconStyle, ...rest }) });
|
|
72017
72119
|
};
|
|
72018
|
-
const commentPluginCommentsPanelSidebar = "
|
|
72019
|
-
const commentPluginThreadWrapper = "
|
|
72020
|
-
const commentsBodyWrapper = "
|
|
72021
|
-
const commentsPanelBody = "
|
|
72022
|
-
const commentPluginImagePreviewList = "
|
|
72023
|
-
const commentPluginCommentsPanelList = "
|
|
72024
|
-
const commentPluginImagePreviewItem = "
|
|
72025
|
-
const commentPluginCommentsPanelEmpty = "
|
|
72026
|
-
const commentPluginGeneralCommentWrapper = "
|
|
72027
|
-
const commentPluginCommentsPanel = "
|
|
72028
|
-
const commentPluginCommentsPanelListThreadEditor = "
|
|
72029
|
-
const commentPluginImagePreviewContainer = "
|
|
72030
|
-
const commentPluginImagePreviewImage = "
|
|
72031
|
-
const commentPluginInputFooterContainer = "
|
|
72032
|
-
const edited = "
|
|
72033
|
-
const commentPluginEditorContainer = "
|
|
72034
|
-
const commentPluginCommentsPanelListDetails = "
|
|
72035
|
-
const commentPluginCommentsPanelListCommentAuthor = "
|
|
72036
|
-
const commentPluginCommentsPanelListCommentTime = "
|
|
72037
|
-
const commentPluginCommentsPanelListThread = "
|
|
72038
|
-
const commentPluginCommentsPanelListThreadComments = "
|
|
72039
|
-
const commentPluginThreadContainer = "
|
|
72040
|
-
const commentPluginShowMoreBtn = "
|
|
72041
|
-
const commentPluginCommentsPanelListThreadQuoteBox = "
|
|
72042
|
-
const commentPluginCommentsPanelListThreadQuote = "
|
|
72043
|
-
const commentPluginCommentsPanelListThreadQuoteText = "
|
|
72044
|
-
const commentPluginCommentsPanelReactionsContainer = "
|
|
72045
|
-
const commentPluginCommentsPanelListContentContainer = "
|
|
72046
|
-
const commentPluginFilePreviewList = "
|
|
72047
|
-
const commentPluginFilePreviewItem = "
|
|
72048
|
-
const threadActionIcon = "
|
|
72049
|
-
const commentPluginCommentsPanelActionContainer = "
|
|
72050
|
-
const commentEmojiPopupIcon = "
|
|
72051
|
-
const commentPluginCommentsPanelListThreadAccepted = "
|
|
72052
|
-
const commentsHeaderTitle = "
|
|
72053
|
-
const commentsHeaderWrapper = "
|
|
72054
|
-
const commentPluginThreadEditorControls = "
|
|
72055
|
-
const commentSubmitButton = "
|
|
72056
|
-
const threadEditorControlsUpload = "
|
|
72057
|
-
const threadEditorControlsFileInput = "
|
|
72058
|
-
const threadEditorControlsActionIcon = "
|
|
72059
|
-
const commentPluginCommentThreadResponses = "
|
|
72060
|
-
const guest = "
|
|
72061
|
-
const commentPluginImagePreviewWrapper = "
|
|
72062
|
-
const commentPluginImagePreviewRemoveButton = "
|
|
72063
|
-
const commentPluginFilePreviewContainer = "
|
|
72064
|
-
const commentPluginFileCard = "
|
|
72065
|
-
const commentPluginFileCardIcon = "
|
|
72066
|
-
const commentPluginFileCardInfo = "
|
|
72067
|
-
const commentPluginFileCardName = "
|
|
72068
|
-
const commentPluginFileCardSize = "
|
|
72069
|
-
const commentPluginCommentsPanelEmptyTitle = "
|
|
72120
|
+
const commentPluginCommentsPanelSidebar = "_commentPluginCommentsPanelSidebar_gdfwu_12";
|
|
72121
|
+
const commentPluginThreadWrapper = "_commentPluginThreadWrapper_gdfwu_32";
|
|
72122
|
+
const commentsBodyWrapper = "_commentsBodyWrapper_gdfwu_36";
|
|
72123
|
+
const commentsPanelBody = "_commentsPanelBody_gdfwu_40";
|
|
72124
|
+
const commentPluginImagePreviewList = "_commentPluginImagePreviewList_gdfwu_46";
|
|
72125
|
+
const commentPluginCommentsPanelList = "_commentPluginCommentsPanelList_gdfwu_50";
|
|
72126
|
+
const commentPluginImagePreviewItem = "_commentPluginImagePreviewItem_gdfwu_54";
|
|
72127
|
+
const commentPluginCommentsPanelEmpty = "_commentPluginCommentsPanelEmpty_gdfwu_60";
|
|
72128
|
+
const commentPluginGeneralCommentWrapper = "_commentPluginGeneralCommentWrapper_gdfwu_64";
|
|
72129
|
+
const commentPluginCommentsPanel = "_commentPluginCommentsPanel_gdfwu_12";
|
|
72130
|
+
const commentPluginCommentsPanelListThreadEditor = "_commentPluginCommentsPanelListThreadEditor_gdfwu_86";
|
|
72131
|
+
const commentPluginImagePreviewContainer = "_commentPluginImagePreviewContainer_gdfwu_94";
|
|
72132
|
+
const commentPluginImagePreviewImage = "_commentPluginImagePreviewImage_gdfwu_98";
|
|
72133
|
+
const commentPluginInputFooterContainer = "_commentPluginInputFooterContainer_gdfwu_109";
|
|
72134
|
+
const edited = "_edited_gdfwu_177";
|
|
72135
|
+
const commentPluginEditorContainer = "_commentPluginEditorContainer_gdfwu_183";
|
|
72136
|
+
const commentPluginCommentsPanelListDetails = "_commentPluginCommentsPanelListDetails_gdfwu_191";
|
|
72137
|
+
const commentPluginCommentsPanelListCommentAuthor = "_commentPluginCommentsPanelListCommentAuthor_gdfwu_197";
|
|
72138
|
+
const commentPluginCommentsPanelListCommentTime = "_commentPluginCommentsPanelListCommentTime_gdfwu_201";
|
|
72139
|
+
const commentPluginCommentsPanelListThread = "_commentPluginCommentsPanelListThread_gdfwu_86";
|
|
72140
|
+
const commentPluginCommentsPanelListThreadComments = "_commentPluginCommentsPanelListThreadComments_gdfwu_211";
|
|
72141
|
+
const commentPluginThreadContainer = "_commentPluginThreadContainer_gdfwu_215";
|
|
72142
|
+
const commentPluginShowMoreBtn = "_commentPluginShowMoreBtn_gdfwu_219";
|
|
72143
|
+
const commentPluginCommentsPanelListThreadQuoteBox = "_commentPluginCommentsPanelListThreadQuoteBox_gdfwu_247";
|
|
72144
|
+
const commentPluginCommentsPanelListThreadQuote = "_commentPluginCommentsPanelListThreadQuote_gdfwu_247";
|
|
72145
|
+
const commentPluginCommentsPanelListThreadQuoteText = "_commentPluginCommentsPanelListThreadQuoteText_gdfwu_265";
|
|
72146
|
+
const commentPluginCommentsPanelReactionsContainer = "_commentPluginCommentsPanelReactionsContainer_gdfwu_294";
|
|
72147
|
+
const commentPluginCommentsPanelListContentContainer = "_commentPluginCommentsPanelListContentContainer_gdfwu_307";
|
|
72148
|
+
const commentPluginFilePreviewList = "_commentPluginFilePreviewList_gdfwu_352";
|
|
72149
|
+
const commentPluginFilePreviewItem = "_commentPluginFilePreviewItem_gdfwu_352";
|
|
72150
|
+
const threadActionIcon = "_threadActionIcon_gdfwu_417";
|
|
72151
|
+
const commentPluginCommentsPanelActionContainer = "_commentPluginCommentsPanelActionContainer_gdfwu_423";
|
|
72152
|
+
const commentEmojiPopupIcon = "_commentEmojiPopupIcon_gdfwu_484";
|
|
72153
|
+
const commentPluginCommentsPanelListThreadAccepted = "_commentPluginCommentsPanelListThreadAccepted_gdfwu_495";
|
|
72154
|
+
const commentsHeaderTitle = "_commentsHeaderTitle_gdfwu_502";
|
|
72155
|
+
const commentsHeaderWrapper = "_commentsHeaderWrapper_gdfwu_528";
|
|
72156
|
+
const commentPluginThreadEditorControls = "_commentPluginThreadEditorControls_gdfwu_610";
|
|
72157
|
+
const commentSubmitButton = "_commentSubmitButton_gdfwu_615";
|
|
72158
|
+
const threadEditorControlsUpload = "_threadEditorControlsUpload_gdfwu_620";
|
|
72159
|
+
const threadEditorControlsFileInput = "_threadEditorControlsFileInput_gdfwu_628";
|
|
72160
|
+
const threadEditorControlsActionIcon = "_threadEditorControlsActionIcon_gdfwu_642";
|
|
72161
|
+
const commentPluginCommentThreadResponses = "_commentPluginCommentThreadResponses_gdfwu_652";
|
|
72162
|
+
const guest = "_guest_gdfwu_672";
|
|
72163
|
+
const commentPluginImagePreviewWrapper = "_commentPluginImagePreviewWrapper_gdfwu_727";
|
|
72164
|
+
const commentPluginImagePreviewRemoveButton = "_commentPluginImagePreviewRemoveButton_gdfwu_751";
|
|
72165
|
+
const commentPluginFilePreviewContainer = "_commentPluginFilePreviewContainer_gdfwu_774";
|
|
72166
|
+
const commentPluginFileCard = "_commentPluginFileCard_gdfwu_584";
|
|
72167
|
+
const commentPluginFileCardIcon = "_commentPluginFileCardIcon_gdfwu_838";
|
|
72168
|
+
const commentPluginFileCardInfo = "_commentPluginFileCardInfo_gdfwu_846";
|
|
72169
|
+
const commentPluginFileCardName = "_commentPluginFileCardName_gdfwu_854";
|
|
72170
|
+
const commentPluginFileCardSize = "_commentPluginFileCardSize_gdfwu_863";
|
|
72171
|
+
const commentPluginCommentsPanelEmptyTitle = "_commentPluginCommentsPanelEmptyTitle_gdfwu_1079";
|
|
72070
72172
|
const styles$c = {
|
|
72071
72173
|
commentPluginCommentsPanelSidebar,
|
|
72072
72174
|
commentPluginThreadWrapper,
|
|
@@ -72388,83 +72490,6 @@ const CommentsEmptyPlaceholder = ({
|
|
|
72388
72490
|
/* @__PURE__ */ jsx$1("div", { className: styles$c.commentPluginCommentsPanelEmptyTitle, children: title })
|
|
72389
72491
|
] });
|
|
72390
72492
|
};
|
|
72391
|
-
function CommentEditorBehavior({
|
|
72392
|
-
children,
|
|
72393
|
-
onSubmit,
|
|
72394
|
-
handleBlur,
|
|
72395
|
-
autoFocus = true,
|
|
72396
|
-
registerClearEditor
|
|
72397
|
-
}) {
|
|
72398
|
-
const editorRef = useRef(null);
|
|
72399
|
-
useEffect(() => {
|
|
72400
|
-
const editor = editorRef.current;
|
|
72401
|
-
if (!editor || !autoFocus) return;
|
|
72402
|
-
setTimeout(() => {
|
|
72403
|
-
editor.focus(() => {
|
|
72404
|
-
return {
|
|
72405
|
-
defaultSelection: "rootEnd"
|
|
72406
|
-
};
|
|
72407
|
-
});
|
|
72408
|
-
}, 0);
|
|
72409
|
-
}, [autoFocus]);
|
|
72410
|
-
useEffect(() => {
|
|
72411
|
-
const handleMouseDown = (event) => {
|
|
72412
|
-
const target = event.target;
|
|
72413
|
-
const editor = editorRef.current;
|
|
72414
|
-
if (!editor || !target) return;
|
|
72415
|
-
if (target.classList.contains(styles$c.commentPluginInputFooterContainer) || target.classList.contains("editor-scroller") || target.classList.contains("doc-space-styles-provider")) {
|
|
72416
|
-
const hasPreview = target.querySelector(`.${styles$c.commentPluginImagePreviewList}`) || target.querySelector(`.${styles$c.commentPluginFilePreviewContainer}`);
|
|
72417
|
-
if (hasPreview) {
|
|
72418
|
-
return;
|
|
72419
|
-
}
|
|
72420
|
-
setTimeout(() => {
|
|
72421
|
-
editor.focus(() => {
|
|
72422
|
-
return {
|
|
72423
|
-
defaultSelection: "rootEnd"
|
|
72424
|
-
};
|
|
72425
|
-
});
|
|
72426
|
-
}, 0);
|
|
72427
|
-
}
|
|
72428
|
-
};
|
|
72429
|
-
document.addEventListener("mousedown", handleMouseDown);
|
|
72430
|
-
return () => {
|
|
72431
|
-
document.removeEventListener("mousedown", handleMouseDown);
|
|
72432
|
-
};
|
|
72433
|
-
}, []);
|
|
72434
|
-
useEffect(() => {
|
|
72435
|
-
const editor = editorRef.current;
|
|
72436
|
-
if (!editor) return;
|
|
72437
|
-
const clearEditor = () => {
|
|
72438
|
-
editor.update(() => {
|
|
72439
|
-
const root2 = editor._editorState._nodeMap.get("root");
|
|
72440
|
-
if (!root2) return;
|
|
72441
|
-
root2.clear();
|
|
72442
|
-
const nodeEntry = editor._nodes.get("paragraph");
|
|
72443
|
-
if (!nodeEntry) return;
|
|
72444
|
-
const paragraph = new nodeEntry.klass();
|
|
72445
|
-
root2.append(paragraph);
|
|
72446
|
-
paragraph.select();
|
|
72447
|
-
});
|
|
72448
|
-
};
|
|
72449
|
-
registerClearEditor == null ? void 0 : registerClearEditor(clearEditor);
|
|
72450
|
-
const handleKeyDown2 = (event) => {
|
|
72451
|
-
const isSubmit = (event.metaKey || event.ctrlKey) && event.code === "Enter";
|
|
72452
|
-
if (isSubmit) {
|
|
72453
|
-
if (document.activeElement === editor.getRootElement()) {
|
|
72454
|
-
onSubmit();
|
|
72455
|
-
setTimeout(() => {
|
|
72456
|
-
editor.blur();
|
|
72457
|
-
});
|
|
72458
|
-
}
|
|
72459
|
-
}
|
|
72460
|
-
};
|
|
72461
|
-
document.addEventListener("keydown", handleKeyDown2);
|
|
72462
|
-
return () => {
|
|
72463
|
-
document.removeEventListener("keydown", handleKeyDown2);
|
|
72464
|
-
};
|
|
72465
|
-
}, [onSubmit, handleBlur, registerClearEditor]);
|
|
72466
|
-
return /* @__PURE__ */ jsx$1(Fragment$1, { children: children(editorRef) });
|
|
72467
|
-
}
|
|
72468
72493
|
const CommentTabFilter = ({
|
|
72469
72494
|
commentsFilter,
|
|
72470
72495
|
setCommentsFilter,
|
|
@@ -72578,24 +72603,15 @@ const CommentsFilterHeader = ({
|
|
|
72578
72603
|
updateThreadId,
|
|
72579
72604
|
submitAddComment,
|
|
72580
72605
|
placeholder: locales.generalComment,
|
|
72581
|
-
children: ({ onSubmit, handleBlur: handleBlur2, autoFocus, setCommentValue: setCommentValue2, commentValue: commentValue2, registerClearEditor }) =>
|
|
72582
|
-
|
|
72583
|
-
|
|
72584
|
-
|
|
72585
|
-
|
|
72586
|
-
|
|
72587
|
-
|
|
72588
|
-
|
|
72589
|
-
|
|
72590
|
-
handleBlur: handleBlur2,
|
|
72591
|
-
autoFocus,
|
|
72592
|
-
setCommentValue: setCommentValue2,
|
|
72593
|
-
commentValue: commentValue2,
|
|
72594
|
-
registerClearEditor,
|
|
72595
|
-
editorRef
|
|
72596
|
-
})
|
|
72597
|
-
}
|
|
72598
|
-
)
|
|
72606
|
+
children: ({ onSubmit, handleBlur: handleBlur2, autoFocus, setCommentValue: setCommentValue2, commentValue: commentValue2, registerClearEditor, editorRef }) => renderEditor == null ? void 0 : renderEditor({
|
|
72607
|
+
onSubmit,
|
|
72608
|
+
handleBlur: handleBlur2,
|
|
72609
|
+
autoFocus,
|
|
72610
|
+
setCommentValue: setCommentValue2,
|
|
72611
|
+
commentValue: commentValue2,
|
|
72612
|
+
registerClearEditor,
|
|
72613
|
+
editorRef
|
|
72614
|
+
})
|
|
72599
72615
|
}
|
|
72600
72616
|
) })
|
|
72601
72617
|
] })
|
|
@@ -72651,6 +72667,28 @@ const CommentsListItemMenu = ({
|
|
|
72651
72667
|
] })
|
|
72652
72668
|
] });
|
|
72653
72669
|
};
|
|
72670
|
+
function useOutsideClick(handler, options) {
|
|
72671
|
+
const ref = useRef(null);
|
|
72672
|
+
const { events: events2 = ["pointerdown"], enabled = true } = {};
|
|
72673
|
+
useEffect(() => {
|
|
72674
|
+
if (!enabled) return;
|
|
72675
|
+
const listener = (event) => {
|
|
72676
|
+
const el = ref.current;
|
|
72677
|
+
if (!el) return;
|
|
72678
|
+
if (el.contains(event.target)) return;
|
|
72679
|
+
handler(event);
|
|
72680
|
+
};
|
|
72681
|
+
events2.forEach((ev) => {
|
|
72682
|
+
document.addEventListener(ev, listener, true);
|
|
72683
|
+
});
|
|
72684
|
+
return () => {
|
|
72685
|
+
events2.forEach((ev) => {
|
|
72686
|
+
document.removeEventListener(ev, listener, true);
|
|
72687
|
+
});
|
|
72688
|
+
};
|
|
72689
|
+
}, [handler, enabled]);
|
|
72690
|
+
return ref;
|
|
72691
|
+
}
|
|
72654
72692
|
const animationMenu = {
|
|
72655
72693
|
transition: "fade",
|
|
72656
72694
|
duration: 300
|
|
@@ -72679,8 +72717,14 @@ const CommentActions = ({
|
|
|
72679
72717
|
const [emojiColor, setEmojiColor] = useState(null);
|
|
72680
72718
|
const locales = useCommentsStore((s) => s.commentsLocales);
|
|
72681
72719
|
const isAdmin = useCommentsStore((s) => s.adminPermission);
|
|
72682
|
-
const disableReactions =
|
|
72683
|
-
const ref =
|
|
72720
|
+
const disableReactions = new Set(commentOrThread.reactions.map((r2) => r2.reaction)).size > 4;
|
|
72721
|
+
const ref = useOutsideClick((event) => {
|
|
72722
|
+
const target = event.target;
|
|
72723
|
+
if (target.closest(".mantine-Popover-dropdown")) {
|
|
72724
|
+
return;
|
|
72725
|
+
}
|
|
72726
|
+
setShowEmojiPicker(false);
|
|
72727
|
+
});
|
|
72684
72728
|
const handleEmojiChange = (emoji2) => {
|
|
72685
72729
|
if (emoji2.startsWith("c=") && !emoji2.includes("&")) {
|
|
72686
72730
|
setEmojiColor(emoji2);
|
|
@@ -72723,7 +72767,7 @@ const CommentActions = ({
|
|
|
72723
72767
|
/* @__PURE__ */ jsx$1(
|
|
72724
72768
|
Tooltip,
|
|
72725
72769
|
{
|
|
72726
|
-
label: locales.actionTooltips.addReaction,
|
|
72770
|
+
label: disableReactions ? locales.actionTooltips.reactionLimit : locales.actionTooltips.addReaction,
|
|
72727
72771
|
children: /* @__PURE__ */ jsx$1(
|
|
72728
72772
|
ActionIcon,
|
|
72729
72773
|
{
|
|
@@ -72784,9 +72828,11 @@ const CommentActions = ({
|
|
|
72784
72828
|
value: emojiColor,
|
|
72785
72829
|
position: "left-start",
|
|
72786
72830
|
showColors: true,
|
|
72831
|
+
withinPortal: true,
|
|
72787
72832
|
popoverProps: {
|
|
72788
72833
|
transitionProps: animationMenu
|
|
72789
72834
|
},
|
|
72835
|
+
showRemoveButton: false,
|
|
72790
72836
|
children: /* @__PURE__ */ jsx$1(Tooltip, { label: locales.actionTooltips.addReaction, children: /* @__PURE__ */ jsx$1(
|
|
72791
72837
|
ActionIcon,
|
|
72792
72838
|
{
|
|
@@ -73076,14 +73122,19 @@ const CommentPanelListItem = ({
|
|
|
73076
73122
|
const removeImage = async (id2) => {
|
|
73077
73123
|
const stringId = String(id2);
|
|
73078
73124
|
const imageId = cutDeleteImageId(stringId);
|
|
73079
|
-
|
|
73080
|
-
|
|
73081
|
-
|
|
73082
|
-
|
|
73083
|
-
|
|
73084
|
-
|
|
73125
|
+
const files = (commentOrThread == null ? void 0 : commentOrThread.files) || [];
|
|
73126
|
+
const isLastAttach = files.length === 1;
|
|
73127
|
+
const textContent = (commentOrThread == null ? void 0 : commentOrThread.text) || "";
|
|
73128
|
+
const cleanText = textContent.replace(/<[^>]*>/g, "").replace(/\s| /g, "");
|
|
73129
|
+
const willBeEmpty = isLastAttach && cleanText.length === 0;
|
|
73130
|
+
if (willBeEmpty) {
|
|
73131
|
+
deleteCommentOrThread(commentOrThread, parentThreadOrGeneral);
|
|
73085
73132
|
} else {
|
|
73086
|
-
|
|
73133
|
+
if (parentThreadOrGeneral) {
|
|
73134
|
+
deleteCommentImage(imageId, parentThreadOrGeneral.id, commentOrThread == null ? void 0 : commentOrThread.id);
|
|
73135
|
+
} else {
|
|
73136
|
+
deleteCommentImage(imageId, commentOrThread == null ? void 0 : commentOrThread.id);
|
|
73137
|
+
}
|
|
73087
73138
|
}
|
|
73088
73139
|
};
|
|
73089
73140
|
const accepted = commentOrThread.type !== "comment" && commentOrThread.resolution === "ACCEPTED";
|
|
@@ -73158,7 +73209,7 @@ const CommentPanelListItem = ({
|
|
|
73158
73209
|
};
|
|
73159
73210
|
const newText = {
|
|
73160
73211
|
value: changesData.value,
|
|
73161
|
-
restore: commentOrThread.text
|
|
73212
|
+
restore: commentOrThread.text !== changesData.value
|
|
73162
73213
|
};
|
|
73163
73214
|
updateCommentTextOrImage(
|
|
73164
73215
|
newText,
|
|
@@ -73332,26 +73383,18 @@ const CommentPanelListItem = ({
|
|
|
73332
73383
|
autoFocus,
|
|
73333
73384
|
setCommentValue: setCommentValue2,
|
|
73334
73385
|
commentValue: commentValue2,
|
|
73335
|
-
registerClearEditor
|
|
73336
|
-
|
|
73337
|
-
|
|
73338
|
-
|
|
73339
|
-
|
|
73340
|
-
|
|
73341
|
-
|
|
73342
|
-
|
|
73343
|
-
|
|
73344
|
-
|
|
73345
|
-
|
|
73346
|
-
|
|
73347
|
-
setCommentValue: setCommentValue2,
|
|
73348
|
-
commentValue: commentValue2,
|
|
73349
|
-
initialContent: commentOrThread.text,
|
|
73350
|
-
registerClearEditor,
|
|
73351
|
-
editorRef
|
|
73352
|
-
})
|
|
73353
|
-
}
|
|
73354
|
-
)
|
|
73386
|
+
registerClearEditor,
|
|
73387
|
+
editorRef
|
|
73388
|
+
}) => getEditor == null ? void 0 : getEditor({
|
|
73389
|
+
onSubmit,
|
|
73390
|
+
handleBlur: handleBlur2,
|
|
73391
|
+
autoFocus,
|
|
73392
|
+
setCommentValue: setCommentValue2,
|
|
73393
|
+
commentValue: commentValue2,
|
|
73394
|
+
initialContent: commentOrThread.text,
|
|
73395
|
+
registerClearEditor,
|
|
73396
|
+
editorRef
|
|
73397
|
+
})
|
|
73355
73398
|
}
|
|
73356
73399
|
),
|
|
73357
73400
|
/* @__PURE__ */ jsx$1(LoadingOverlay, { visible: isTemporaryComment }),
|
|
@@ -73394,25 +73437,17 @@ const CommentPanelListItem = ({
|
|
|
73394
73437
|
autoFocus,
|
|
73395
73438
|
setCommentValue: setCommentValue2,
|
|
73396
73439
|
commentValue: commentValue2,
|
|
73397
|
-
registerClearEditor
|
|
73398
|
-
|
|
73399
|
-
|
|
73400
|
-
|
|
73401
|
-
|
|
73402
|
-
|
|
73403
|
-
|
|
73404
|
-
|
|
73405
|
-
|
|
73406
|
-
|
|
73407
|
-
|
|
73408
|
-
autoFocus,
|
|
73409
|
-
setCommentValue: setCommentValue2,
|
|
73410
|
-
commentValue: commentValue2,
|
|
73411
|
-
registerClearEditor,
|
|
73412
|
-
editorRef
|
|
73413
|
-
})
|
|
73414
|
-
}
|
|
73415
|
-
)
|
|
73440
|
+
registerClearEditor,
|
|
73441
|
+
editorRef
|
|
73442
|
+
}) => getEditor == null ? void 0 : getEditor({
|
|
73443
|
+
onSubmit,
|
|
73444
|
+
handleBlur: handleBlur2,
|
|
73445
|
+
autoFocus,
|
|
73446
|
+
setCommentValue: setCommentValue2,
|
|
73447
|
+
commentValue: commentValue2,
|
|
73448
|
+
registerClearEditor,
|
|
73449
|
+
editorRef
|
|
73450
|
+
})
|
|
73416
73451
|
}
|
|
73417
73452
|
),
|
|
73418
73453
|
commentOrThread.type !== "comment" && children.length - 1 > 0 ? /* @__PURE__ */ jsx$1(
|
|
@@ -73506,6 +73541,7 @@ function CommentsPanel({
|
|
|
73506
73541
|
deleteCommentImage,
|
|
73507
73542
|
addCommentReaction,
|
|
73508
73543
|
removeCommentReactions,
|
|
73544
|
+
restoreComment,
|
|
73509
73545
|
updateCommentTextOrImage,
|
|
73510
73546
|
listRef,
|
|
73511
73547
|
resolveThreat,
|
|
@@ -73522,6 +73558,7 @@ function CommentsPanel({
|
|
|
73522
73558
|
const initializeComments = useCommentsStore(
|
|
73523
73559
|
(state) => state.initializeComments
|
|
73524
73560
|
);
|
|
73561
|
+
const deletedSubComments = useRef([]);
|
|
73525
73562
|
useEffect(() => {
|
|
73526
73563
|
initializeComments({
|
|
73527
73564
|
...storeOptions,
|
|
@@ -73549,6 +73586,38 @@ function CommentsPanel({
|
|
|
73549
73586
|
isEmpty: sorted.length === 0
|
|
73550
73587
|
};
|
|
73551
73588
|
}, [comments, commentsFilter]);
|
|
73589
|
+
useEffect(() => {
|
|
73590
|
+
if (!restoreComment) return;
|
|
73591
|
+
const handleRestoreComment = (e) => {
|
|
73592
|
+
const isUndo = (e.ctrlKey || e.metaKey) && e.code === "KeyZ";
|
|
73593
|
+
if (!isUndo) return;
|
|
73594
|
+
const active = document.activeElement;
|
|
73595
|
+
if (!active || active.tagName === "INPUT" || active.tagName === "TEXTAREA" || active.getAttribute("contenteditable") === "true" || active.classList.contains("ContentEditable__root")) {
|
|
73596
|
+
return;
|
|
73597
|
+
}
|
|
73598
|
+
const lastDeleted = deletedSubComments.current.at(-1);
|
|
73599
|
+
if (!lastDeleted) return;
|
|
73600
|
+
e.preventDefault();
|
|
73601
|
+
e.stopPropagation();
|
|
73602
|
+
e.stopImmediatePropagation();
|
|
73603
|
+
deletedSubComments.current = deletedSubComments.current.filter(
|
|
73604
|
+
(item2) => item2.id !== lastDeleted.id
|
|
73605
|
+
);
|
|
73606
|
+
restoreComment(lastDeleted.comment.id, lastDeleted.threadId);
|
|
73607
|
+
};
|
|
73608
|
+
window.addEventListener("keydown", handleRestoreComment);
|
|
73609
|
+
return () => {
|
|
73610
|
+
window.removeEventListener("keydown", handleRestoreComment);
|
|
73611
|
+
};
|
|
73612
|
+
}, [restoreComment]);
|
|
73613
|
+
const handleDeleteCommentOrThread = async (commentOrThread, thread) => {
|
|
73614
|
+
deletedSubComments.current.push({
|
|
73615
|
+
id: commentOrThread.id,
|
|
73616
|
+
comment: commentOrThread,
|
|
73617
|
+
threadId: thread == null ? void 0 : thread.id
|
|
73618
|
+
});
|
|
73619
|
+
await deleteCommentOrThread(commentOrThread, thread);
|
|
73620
|
+
};
|
|
73552
73621
|
return /* @__PURE__ */ jsxs(
|
|
73553
73622
|
"div",
|
|
73554
73623
|
{
|
|
@@ -73584,7 +73653,7 @@ function CommentsPanel({
|
|
|
73584
73653
|
addCommentReaction,
|
|
73585
73654
|
comments: filteredComments,
|
|
73586
73655
|
updateThreadId,
|
|
73587
|
-
deleteCommentOrThread,
|
|
73656
|
+
deleteCommentOrThread: handleDeleteCommentOrThread,
|
|
73588
73657
|
listRef,
|
|
73589
73658
|
removeCommentReactions,
|
|
73590
73659
|
submitAddComment,
|
|
@@ -73747,6 +73816,83 @@ const openRemoveConfirmModal = (props) => {
|
|
|
73747
73816
|
};
|
|
73748
73817
|
window.addEventListener("keydown", handleKeyDown2);
|
|
73749
73818
|
};
|
|
73819
|
+
function CommentEditorBehavior({
|
|
73820
|
+
children,
|
|
73821
|
+
onSubmit,
|
|
73822
|
+
handleBlur,
|
|
73823
|
+
autoFocus = true,
|
|
73824
|
+
registerClearEditor
|
|
73825
|
+
}) {
|
|
73826
|
+
const editorRef = useRef(null);
|
|
73827
|
+
useEffect(() => {
|
|
73828
|
+
const editor = editorRef.current;
|
|
73829
|
+
if (!editor || !autoFocus) return;
|
|
73830
|
+
setTimeout(() => {
|
|
73831
|
+
editor.focus(() => {
|
|
73832
|
+
return {
|
|
73833
|
+
defaultSelection: "rootEnd"
|
|
73834
|
+
};
|
|
73835
|
+
});
|
|
73836
|
+
}, 0);
|
|
73837
|
+
}, [autoFocus]);
|
|
73838
|
+
useEffect(() => {
|
|
73839
|
+
const handleMouseDown = (event) => {
|
|
73840
|
+
const target = event.target;
|
|
73841
|
+
const editor = editorRef.current;
|
|
73842
|
+
if (!editor || !target) return;
|
|
73843
|
+
if (target.classList.contains(styles$c.commentPluginInputFooterContainer) || target.classList.contains("editor-scroller") || target.classList.contains("doc-space-styles-provider")) {
|
|
73844
|
+
const hasPreview = target.querySelector(`.${styles$c.commentPluginImagePreviewList}`) || target.querySelector(`.${styles$c.commentPluginFilePreviewContainer}`);
|
|
73845
|
+
if (hasPreview) {
|
|
73846
|
+
return;
|
|
73847
|
+
}
|
|
73848
|
+
setTimeout(() => {
|
|
73849
|
+
editor.focus(() => {
|
|
73850
|
+
return {
|
|
73851
|
+
defaultSelection: "rootEnd"
|
|
73852
|
+
};
|
|
73853
|
+
});
|
|
73854
|
+
}, 0);
|
|
73855
|
+
}
|
|
73856
|
+
};
|
|
73857
|
+
document.addEventListener("mousedown", handleMouseDown);
|
|
73858
|
+
return () => {
|
|
73859
|
+
document.removeEventListener("mousedown", handleMouseDown);
|
|
73860
|
+
};
|
|
73861
|
+
}, []);
|
|
73862
|
+
useEffect(() => {
|
|
73863
|
+
const editor = editorRef.current;
|
|
73864
|
+
if (!editor) return;
|
|
73865
|
+
const clearEditor = () => {
|
|
73866
|
+
editor.update(() => {
|
|
73867
|
+
const root2 = editor._editorState._nodeMap.get("root");
|
|
73868
|
+
if (!root2) return;
|
|
73869
|
+
root2.clear();
|
|
73870
|
+
const nodeEntry = editor._nodes.get("paragraph");
|
|
73871
|
+
if (!nodeEntry) return;
|
|
73872
|
+
const paragraph = new nodeEntry.klass();
|
|
73873
|
+
root2.append(paragraph);
|
|
73874
|
+
paragraph.select();
|
|
73875
|
+
});
|
|
73876
|
+
};
|
|
73877
|
+
registerClearEditor == null ? void 0 : registerClearEditor(clearEditor);
|
|
73878
|
+
const handleKeyDown2 = (event) => {
|
|
73879
|
+
const isSubmit = event.code === "Enter" && !event.shiftKey;
|
|
73880
|
+
if (isSubmit) {
|
|
73881
|
+
if (document.activeElement === editor.getRootElement()) {
|
|
73882
|
+
onSubmit();
|
|
73883
|
+
setTimeout(() => {
|
|
73884
|
+
editor.blur();
|
|
73885
|
+
});
|
|
73886
|
+
}
|
|
73887
|
+
}
|
|
73888
|
+
};
|
|
73889
|
+
document.addEventListener("keydown", handleKeyDown2);
|
|
73890
|
+
return () => {
|
|
73891
|
+
document.removeEventListener("keydown", handleKeyDown2);
|
|
73892
|
+
};
|
|
73893
|
+
}, [onSubmit, handleBlur, registerClearEditor]);
|
|
73894
|
+
return /* @__PURE__ */ jsx$1(Fragment$1, { children: children(editorRef) });
|
|
73895
|
+
}
|
|
73750
73896
|
const MAX_FILE_SIZE = 5 * 1024 * 1024;
|
|
73751
73897
|
const MAX_FILES_LENGTH = 10;
|
|
73752
73898
|
const CommentComposer = ({
|
|
@@ -74056,16 +74202,25 @@ const CommentComposer = ({
|
|
|
74056
74202
|
["--placeholder-text"]: `"${placeholderText}..."`
|
|
74057
74203
|
},
|
|
74058
74204
|
children: [
|
|
74059
|
-
|
|
74060
|
-
|
|
74061
|
-
|
|
74062
|
-
|
|
74063
|
-
|
|
74064
|
-
|
|
74065
|
-
|
|
74066
|
-
|
|
74205
|
+
/* @__PURE__ */ jsx$1(
|
|
74206
|
+
CommentEditorBehavior,
|
|
74207
|
+
{
|
|
74208
|
+
onSubmit,
|
|
74209
|
+
handleBlur,
|
|
74210
|
+
autoFocus,
|
|
74211
|
+
registerClearEditor: (fn) => {
|
|
74212
|
+
clearEditorRef.current = fn;
|
|
74213
|
+
},
|
|
74214
|
+
children: (editorRef) => typeof children === "function" ? children({
|
|
74215
|
+
onSubmit,
|
|
74216
|
+
handleBlur,
|
|
74217
|
+
autoFocus,
|
|
74218
|
+
setCommentValue,
|
|
74219
|
+
commentValue,
|
|
74220
|
+
editorRef
|
|
74221
|
+
}) : children
|
|
74067
74222
|
}
|
|
74068
|
-
|
|
74223
|
+
),
|
|
74069
74224
|
/* @__PURE__ */ jsxs("div", { className: styles$c.commentPluginInputFooterContainer, children: [
|
|
74070
74225
|
/* @__PURE__ */ jsx$1(
|
|
74071
74226
|
CommentsUploadFilesPreview,
|
|
@@ -74410,7 +74565,7 @@ const StorageUsageProgress = ({
|
|
|
74410
74565
|
const FlagEs = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='flag-icons-es'%20viewBox='0%200%20640%20480'%3e%3cpath%20fill='%23AA151B'%20d='M0%200h640v480H0z'/%3e%3cpath%20fill='%23F1BF00'%20d='M0%20120h640v240H0z'/%3e%3cpath%20fill='%23ad1519'%20d='m127.3%20213.3-.8-.1-1-1-.7-.4-.6-.8s-.7-1.1-.4-2q.5-1.2%201.4-1.5l1.5-.5%201-.4%201.3-.3.5-.3%201-.2%201-.2%201.6.1h4.8c.4%200%201.2.3%201.4.4l2%20.7c.5.1%201.6.3%202.2.6q.8.5%201.1%201l.5%201v1.1l-.5.8-.6%201-.8.6s-.5.5-1%20.4-4.8-.8-7.6-.8-7.3.9-7.3.9'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='m127.3%20213.3-.8-.1-1-1-.7-.4-.6-.8s-.7-1.1-.4-2q.5-1.2%201.4-1.5l1.5-.5%201-.4%201.3-.3.5-.3%201-.2%201-.2%201.6.1h4.8c.4%200%201.2.3%201.4.4l2%20.7c.5.1%201.6.3%202.2.6q.8.5%201.1%201l.5%201v1.1l-.5.8-.6%201-.8.6s-.5.5-1%20.4-4.8-.8-7.6-.8-7.3.9-7.3.9z'/%3e%3cpath%20fill='%23c8b100'%20d='M133.3%20207q.1-2.1%201.3-2.3%201.3.1%201.4%202.4c0%201.3-.6%202.4-1.4%202.4s-1.3-1.1-1.3-2.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M133.3%20207q.1-2.1%201.3-2.3%201.3.1%201.4%202.4c0%201.3-.6%202.4-1.4%202.4s-1.3-1.1-1.3-2.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M134%20207q0-2%20.7-2.1c.3%200%20.6%201%20.6%202.1q0%202-.6%202.2c-.4%200-.6-1-.6-2.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134%20207q0-2%20.7-2.1c.3%200%20.6%201%20.6%202.1q0%202-.6%202.2c-.4%200-.6-1-.6-2.2z'/%3e%3cpath%20fill='%23c8b100'%20d='M133.8%20204.5q.1-.7.8-.8%201%200%201%20.8-.1.8-1%20.9c-.9.1-.8-.4-.8-.9'/%3e%3cpath%20fill='%23c8b100'%20d='M135.3%20204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M135.3%20204.2v.6h-1.4v-.6h.5V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h.4'/%3e%3cpath%20fill='%23c8b100'%20d='M135.9%20204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M135.9%20204.2v.6h-2.5v-.6h1V203h-.7v-.6h.7v-.5h.5v.5h.6v.6h-.6v1.2h1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134.9%20203.7q.6.2.6.8-.1.8-.8.9-1%200-1-.9%200-.6.7-.8'/%3e%3cpath%20fill='%23c8b100'%20d='M134.7%20213.2H130v-1.1l-.3-1.2-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5q.1-.5.5-.7c1.1-.7%203.5%201%205.2%203.6l.5.7h3.8l.4-.7c1.8-2.7%204.1-4.3%205.2-3.6q.4.2.5.7c-.4-.3-1.6.8-2.9%202.5l-.2%201.5-.2%201.2-.1%201.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134.7%20213.2H130v-1.1l-.3-1.2-.2-1.5c-1.3-1.7-2.5-2.8-2.9-2.5q.1-.5.5-.7c1.1-.7%203.5%201%205.2%203.6l.5.7h3.8l.4-.7c1.8-2.7%204.1-4.3%205.2-3.6q.4.2.5.7c-.4-.3-1.6.8-2.9%202.5l-.2%201.5-.2%201.2-.1%201.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M126.8%20206.8c1-.5%203%201.1%204.6%203.6m11-3.6c-.8-.5-2.8%201.1-4.5%203.6'/%3e%3cpath%20fill='%23c8b100'%20d='m127.8%20215.3-.5-1a27%2027%200%200%201%2014.7%200l-.5.8-.3.8a23%2023%200%200%200-6.6-.8c-2.6%200-5.2.3-6.5.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m127.8%20215.3-.5-1a27%2027%200%200%201%2014.7%200l-.5.8-.3.8a23%2023%200%200%200-6.6-.8c-2.6%200-5.2.3-6.5.8l-.3-.6'/%3e%3cpath%20fill='%23c8b100'%20d='M134.6%20217.7c2.4%200%205-.4%205.9-.6q1-.3%201-.8%200-.3-.4-.4c-1.4-.5-4-.8-6.5-.8s-5%20.3-6.4.8q-.3%200-.4.3%200%20.6%201%20.9c1%20.2%203.5.6%205.8.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134.6%20217.7c2.4%200%205-.4%205.9-.6q1-.3%201-.8%200-.3-.4-.4c-1.4-.5-4-.8-6.5-.8s-5%20.3-6.4.8q-.3%200-.4.3%200%20.6%201%20.9c1%20.2%203.5.6%205.8.6z'/%3e%3cpath%20fill='%23c8b100'%20d='m142.1%20213.2-.5-.5s-.6.3-1.3.2c-.6%200-.9-1-.9-1s-.7.7-1.3.7-1-.6-1-.6-.7.5-1.3.4-1.2-.8-1.2-.8-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7-1.4-.6-1.4-.6-.5.7-1%201c-.5%200-1.2-.4-1.2-.4l-.2.5-.3.1.2.5a27%2027%200%200%201%207.2-.9q4.5%200%207.4%201z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m142.1%20213.2-.5-.5s-.6.3-1.3.2c-.6%200-.9-1-.9-1s-.7.7-1.3.7-1-.6-1-.6-.7.5-1.3.4-1.2-.8-1.2-.8-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.4.6-1.1.7-1.4-.6-1.4-.6-.5.7-1%201c-.5%200-1.2-.4-1.2-.4l-.2.5-.3.1.2.5a27%2027%200%200%201%207.2-.9q4.5%200%207.4%201z'/%3e%3cpath%20fill='%23c8b100'%20d='M134.7%20210.7h.2v.4q0%201%201%201a1%201%200%200%200%201-.7l.2-.3v.4q.3.8%201.1.8%201%200%201-1v-.1l.4-.4.2.5-.1.4a1%201%200%200%200%201%201q.6%200%20.9-.5l.2-.2v.3q0%20.5.4.7l1-.4.7-.7v.4s-.5.8-1%201q-.3.4-.8.3-.5%200-.7-.6-.3.3-.7.2-1%200-1.4-.8-.5.5-1.1.5a2%202%200%200%201-1.2-.6l-1%20.4a2%202%200%200%201-1.3-.6%201.6%201.6%200%200%201-2.4.2%202%202%200%200%201-1.2.6l-1.1-.5q-.4.8-1.4.8l-.7-.2q-.2.5-.7.6t-.9-.2l-1-1%20.1-.5.8.7q.8.5.9.4.4-.1.4-.7v-.3l.2.2q.3.5.9.5a1%201%200%200%200%201-1v-.9l.4.4v.1q.1%201%201%201t1.1-.9v-.3l.2.3q.3.6%201%20.7%201%200%201.1-1v-.3h.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134.7%20210.7h.2v.4q0%201%201%201a1%201%200%200%200%201-.7l.2-.3v.4q.3.8%201.1.8%201%200%201-1v-.1l.4-.4.2.5-.1.4a1%201%200%200%200%201%201q.6%200%20.9-.5l.2-.2v.3q0%20.5.4.7l1-.4.7-.7v.4s-.5.8-1%201q-.3.4-.8.3-.5%200-.7-.6-.3.3-.7.2-1%200-1.4-.8-.5.5-1.1.5a2%202%200%200%201-1.2-.6l-1%20.4a2%202%200%200%201-1.3-.6%201.6%201.6%200%200%201-2.4.2%202%202%200%200%201-1.2.6l-1.1-.5q-.4.8-1.4.8l-.7-.2q-.2.5-.7.6t-.9-.2l-1-1%20.1-.5.8.7q.8.5.9.4.4-.1.4-.7v-.3l.2.2q.3.5.9.5a1%201%200%200%200%201-1v-.9l.4.4v.1q.1%201%201%201t1.1-.9v-.3l.2.3q.3.6%201%20.7%201%200%201.1-1v-.3h.3z'/%3e%3cpath%20fill='%23c8b100'%20d='M134.6%20213.3q-4.5%200-7.3%201l-.3-.2.1-.3a27%2027%200%200%201%207.5-1q4.6%200%207.6%201l.1.3-.3.2a27%2027%200%200%200-7.4-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M134.6%20213.3q-4.5%200-7.3%201l-.3-.2.1-.3a27%2027%200%200%201%207.5-1q4.6%200%207.6%201l.1.3-.3.2a27%2027%200%200%200-7.4-1z'/%3e%3cpath%20fill='%23fff'%20d='M131.8%20214.4q0-.4.5-.4a.4.4%200%200%201%20.4.4q0%20.3-.4.4a.4.4%200%200%201-.5-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M131.8%20214.4q0-.4.5-.4a.4.4%200%200%201%20.4.4q0%20.3-.4.4a.4.4%200%200%201-.5-.4z'/%3e%3cpath%20fill='%23ad1519'%20d='M134.7%20214.5h-1q-.2%200-.3-.3l.3-.3h2l.2.3-.3.3h-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M134.7%20214.5h-1q-.2%200-.3-.3l.3-.3h2l.2.3-.3.3h-1'/%3e%3cpath%20fill='%23058e6e'%20d='M130%20214.9h-.7q-.2%200-.3-.2l.2-.3.7-.1.7-.1q.3%200%20.4.2a.3.3%200%200%201-.3.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M130%20214.9h-.7q-.2%200-.3-.2l.2-.3.7-.1.7-.1q.3%200%20.4.2a.3.3%200%200%201-.3.4h-.7'/%3e%3cpath%20fill='%23ad1519'%20d='m127.3%20215.3.3-.4h.7l-.4.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m127.3%20215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath%20fill='%23fff'%20d='M136.6%20214.4q0-.4.4-.4a.4.4%200%200%201%20.5.4.4.4%200%200%201-.5.4.4.4%200%200%201-.4-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M136.6%20214.4q0-.4.4-.4a.4.4%200%200%201%20.5.4.4.4%200%200%201-.5.4.4.4%200%200%201-.4-.4z'/%3e%3cpath%20fill='%23058e6e'%20d='M139.3%20214.9h.6a.3.3%200%200%200%20.4-.2l-.3-.3-.6-.1-.7-.1q-.3%200-.4.2%200%20.3.3.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M139.3%20214.9h.6a.3.3%200%200%200%20.4-.2l-.3-.3-.6-.1-.7-.1q-.3%200-.4.2%200%20.3.3.4h.7'/%3e%3cpath%20fill='%23ad1519'%20d='m142%20215.4-.3-.5h-.7l.3.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m142%20215.4-.3-.5h-.7l.3.6.6-.1'/%3e%3cpath%20fill='%23ad1519'%20d='M134.6%20217.1a25%2025%200%200%201-6-.6%2026%2026%200%200%201%2012.1%200q-2.5.6-6%20.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M134.6%20217.1a25%2025%200%200%201-6-.6%2026%2026%200%200%201%2012.1%200q-2.5.6-6%20.6z'/%3e%3cpath%20fill='%23c8b100'%20d='m142%20212-.1-.3q-.3%200-.4.2%200%20.4.2.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m142%20212-.1-.3q-.3%200-.4.2%200%20.4.2.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M137.3%20211.2q0-.3-.2-.4l-.2.3q0%20.3.2.4l.3-.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M137.3%20211.2q0-.3-.2-.4l-.2.3q0%20.3.2.4l.3-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m132%20211.2.1-.4q.3%200%20.3.3t-.2.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m132%20211.2.1-.4q.3%200%20.3.3t-.2.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m127.3%20212%20.1-.3q.3%200%20.4.2%200%20.4-.2.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m127.3%20212%20.1-.3q.3%200%20.4.2%200%20.4-.2.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m134.6%20208.5-.8.5.6%201.3.2.1.2-.1.7-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m134.6%20208.5-.8.5.6%201.3.2.1.2-.1.7-1.3-.9-.5'/%3e%3cpath%20fill='%23c8b100'%20d='m132.8%20210.5.4.5%201.3-.4.1-.2-.1-.2-1.3-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m132.8%20210.5.4.5%201.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath%20fill='%23c8b100'%20d='m136.4%20210.5-.3.5-1.3-.4-.2-.2.2-.2%201.3-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m136.4%20210.5-.3.5-1.3-.4-.2-.2.2-.2%201.3-.3.3.6'/%3e%3cpath%20fill='%23c8b100'%20d='m129.3%20209-.7.7.9%201%20.2.1.1-.1.3-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m129.3%20209-.7.7.9%201%20.2.1.1-.1.3-1.3-.8-.3'/%3e%3cpath%20fill='%23c8b100'%20d='m128%20211.2.4.5%201.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m128%20211.2.4.5%201.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath%20fill='%23c8b100'%20d='m131.5%20210.5-.3.6H130l-.2-.2.1-.3%201.2-.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m131.5%20210.5-.3.6H130l-.2-.2.1-.3%201.2-.6.5.5'/%3e%3cpath%20fill='%23c8b100'%20d='M126.6%20211.4v.6l-1.4.2-.2-.1v-.2l1-.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M126.6%20211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath%20fill='%23c8b100'%20d='M129.2%20210.9q0-.5.5-.5t.5.5l-.5.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M129.2%20210.9q0-.5.5-.5t.5.5l-.5.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m140%20209%20.7.7-.9%201-.2.1-.1-.1-.3-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m140%20209%20.7.7-.9%201-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath%20fill='%23c8b100'%20d='m141.4%20211.2-.5.5-1.2-.6v-.2l.1-.2%201.3-.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m141.4%20211.2-.5.5-1.2-.6v-.2l.1-.2%201.3-.1.3.6'/%3e%3cpath%20fill='%23c8b100'%20d='m137.8%20210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m137.8%20210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath%20fill='%23c8b100'%20d='m142.5%20211.4.1.6%201.3.2.2-.1v-.2l-1-.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m142.5%20211.4.1.6%201.3.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath%20fill='%23c8b100'%20d='m134.2%20210.4.4-.4q.5%200%20.5.4l-.5.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m134.2%20210.4.4-.4q.5%200%20.5.4l-.5.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M139.1%20210.9q.1-.5.5-.5l.5.5-.5.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M139.1%20210.9q.1-.5.5-.5l.5.5-.5.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m124.8%20212.2-.6-.7c-.2-.2-.7-.3-.7-.3q0-.2.6-.3l.4.2v-.2s.3%200%20.4.3v1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m124.8%20212.2-.6-.7c-.2-.2-.7-.3-.7-.3q0-.2.6-.3l.4.2v-.2s.3%200%20.4.3v1z'/%3e%3cpath%20fill='%23c8b100'%20d='M124.8%20212q.3-.3.5%200t.2.5l-.5-.1q-.3-.2-.2-.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M124.8%20212q.3-.3.5%200t.2.5l-.5-.1q-.3-.2-.2-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='m144.3%20212.2.6-.7.7-.3q0-.2-.6-.3l-.4.2v-.2s-.3%200-.4.3v.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m144.3%20212.2.6-.7.7-.3q0-.2-.6-.3l-.4.2v-.2s-.3%200-.4.3v.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M144.3%20212q-.1-.3-.5%200-.3.2-.1.5l.5-.1q.3-.2.1-.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M144.3%20212q-.1-.3-.5%200-.3.2-.1.5l.5-.1q.3-.2.1-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M124%20223h21.4v-5.5H124z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M124%20223h21.4v-5.5H124z'/%3e%3cpath%20fill='%23c8b100'%20d='M126.2%20226.8h16.9a1.4%201.4%200%200%201-1-1.2q.1-1%201-1.3h-16.9q1%20.3%201%201.3a1.3%201.3%200%200%201-1%201.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M126.2%20226.8h16.9a1.4%201.4%200%200%201-1-1.2q.1-1%201-1.3h-16.9q1%20.3%201%201.3a1.3%201.3%200%200%201-1%201.2z'/%3e%3cpath%20fill='%23c8b100'%20d='M126.6%20226.8h16q1%200%201%20.7t-1%20.8h-16q-.9-.1-1-.8%200-1%201-.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M126.6%20226.8h16q1%200%201%20.7t-1%20.8h-16q-.9-.1-1-.8%200-1%201-.8z'/%3e%3cpath%20fill='%23c8b100'%20d='M126.6%20223h16q1%20.1%201%20.7t-1%20.6h-16q-.9%200-1-.6.1-.5%201-.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M126.6%20223h16q1%20.1%201%20.7t-1%20.6h-16q-.9%200-1-.6.1-.5%201-.6z'/%3e%3cpath%20fill='%23005bbf'%20d='M149.6%20317.4q-2.2%200-3.7-.8a8%208%200%200%200-3.8-.8q-2.1%200-3.7.8a8%208%200%200%201-3.8.8q-2.3%200-3.7-.8a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8%208%208%200%200%201-3.8.8v2.4q2.3%200%203.8-.9a8%208%200%200%201%203.7-.8q2.2%200%203.7.8c1.5.8%202.2.9%203.7.9a8%208%200%200%200%203.8-.9q1.6-.8%203.7-.8%202.3%200%203.8.8c1.5.8%202.2.9%203.7.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M149.6%20317.4q-2.2%200-3.7-.8a8%208%200%200%200-3.8-.8q-2.1%200-3.7.8a8%208%200%200%201-3.8.8q-2.3%200-3.7-.8a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8%208%208%200%200%201-3.8.8v2.4q2.3%200%203.8-.9a8%208%200%200%201%203.7-.8q2.2%200%203.7.8c1.5.8%202.2.9%203.7.9a8%208%200%200%200%203.8-.9q1.6-.8%203.7-.8%202.3%200%203.8.8c1.5.8%202.2.9%203.7.9z'/%3e%3cpath%20fill='%23ccc'%20d='M149.6%20319.8a8%208%200%200%201-3.7-.9%208%208%200%200%200-3.8-.8q-2.1%200-3.7.8c-1.6.8-2.3.9-3.8.9s-2.8-.4-3.7-.9a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v2.3q2.3%200%203.8-.9a8%208%200%200%201%203.7-.7q2.2%200%203.7.7a8%208%200%200%200%207.5%200%209%209%200%200%201%207.5.1%208%208%200%200%200%203.7.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M149.6%20319.8a8%208%200%200%201-3.7-.9%208%208%200%200%200-3.8-.8q-2.1%200-3.7.8c-1.6.8-2.3.9-3.8.9s-2.8-.4-3.7-.9a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v2.3q2.3%200%203.8-.9a8%208%200%200%201%203.7-.7q2.2%200%203.7.7a8%208%200%200%200%207.5%200%209%209%200%200%201%207.5.1%208%208%200%200%200%203.7.8v-2.3'/%3e%3cpath%20fill='%23005bbf'%20d='M149.6%20322a7%207%200%200%201-3.7-.8%208%208%200%200%200-3.8-.7q-2.1%200-3.7.7-1.5.9-3.8.9c-2.3%200-2.8-.4-3.7-.9a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v2.3q2.3%200%203.8-.9a10%2010%200%200%201%207.4%200%207%207%200%200%200%203.7.9%208%208%200%200%200%203.8-.8q1.6-.8%203.7-.8%202.3%200%203.8.8c1.5.8%202.2.8%203.7.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M149.6%20322a7%207%200%200%201-3.7-.8%208%208%200%200%200-3.8-.7q-2.1%200-3.7.7-1.5.9-3.8.9c-2.3%200-2.8-.4-3.7-.9a8%208%200%200%200-3.7-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v2.3q2.3%200%203.8-.9a10%2010%200%200%201%207.4%200%207%207%200%200%200%203.7.9%208%208%200%200%200%203.8-.8q1.6-.8%203.7-.8%202.3%200%203.8.8c1.5.8%202.2.8%203.7.8V322'/%3e%3cpath%20fill='%23ccc'%20d='M149.6%20326.7a8%208%200%200%201-3.7-.8q-1.6-.8-3.7-.8a8%208%200%200%200-3.8.8q-1.5.8-3.8.8a7%207%200%200%201-3.7-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.7.8c-1.5.8-2.3.8-3.8.8v-2.3a8%208%200%200%200%203.8-.9%2010%2010%200%200%201%207.4%200%208%208%200%200%200%203.7.9%208%208%200%200%200%203.8-.8q1.5-.8%203.8-.8t3.7.8c1.5.8%202.3.8%203.7.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M149.6%20326.7a8%208%200%200%201-3.7-.8q-1.6-.8-3.7-.8a8%208%200%200%200-3.8.8q-1.5.8-3.8.8a7%207%200%200%201-3.7-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.7.8c-1.5.8-2.3.8-3.8.8v-2.3a8%208%200%200%200%203.8-.9%2010%2010%200%200%201%207.4%200%208%208%200%200%200%203.7.9%208%208%200%200%200%203.8-.8q1.5-.8%203.8-.8t3.7.8c1.5.8%202.3.8%203.7.8v2.3'/%3e%3cpath%20fill='%23005bbf'%20d='M149.6%20329a8%208%200%200%201-3.7-.8q-1.6-.8-3.7-.8a8%208%200%200%200-3.8.8q-1.5.8-3.8.8a7%207%200%200%201-3.7-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.7.8c-1.5.8-2.3.8-3.8.8v-2.3a8%208%200%200%200%203.8-.8q1.5-.8%203.7-.8t3.7.7a8%208%200%200%200%207.5%200q1.5-.6%203.8-.7t3.7.8c1.5.8%202.2.8%203.7.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M149.6%20329a8%208%200%200%201-3.7-.8q-1.6-.8-3.7-.8a8%208%200%200%200-3.8.8q-1.5.8-3.8.8a7%207%200%200%201-3.7-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.7.8c-1.5.8-2.3.8-3.8.8v-2.3a8%208%200%200%200%203.8-.8q1.5-.8%203.7-.8t3.7.7a8%208%200%200%200%207.5%200q1.5-.6%203.8-.7t3.7.8c1.5.8%202.2.8%203.7.8z'/%3e%3cpath%20fill='%23c8b100'%20d='m126.2%20308%20.2.5c0%201.5-1.3%202.6-2.7%202.6h22a3%203%200%200%201-2.7-2.6v-.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='m126.2%20308%20.2.5c0%201.5-1.3%202.6-2.7%202.6h22a3%203%200%200%201-2.7-2.6v-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M126.6%20306.5h16q1%200%201%20.8%200%20.6-1%20.7h-16q-.9%200-1-.8.1-.6%201-.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M126.6%20306.5h16q1%200%201%20.8%200%20.6-1%20.7h-16q-.9%200-1-.8.1-.6%201-.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M123.7%20316.7h22V311h-22z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M123.7%20316.7h22V311h-22z'/%3e%3cpath%20fill='%23ad1519'%20d='M122%20286.7c-2.2%201.2-3.7%202.5-3.4%203.2q.2.8%201.8%201.6c1.5%201.1%202.5%203%201.7%204a5.5%205.5%200%200%200-.1-8.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M122%20286.7c-2.2%201.2-3.7%202.5-3.4%203.2q.2.8%201.8%201.6c1.5%201.1%202.5%203%201.7%204a5.5%205.5%200%200%200-.1-8.8z'/%3e%3cpath%20fill='%23ccc'%20d='M126.8%20305.6h15.6V229h-15.6v76.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M138%20229.2v76.3m1.7-76.3v76.3m-12.9%200h15.6v-76.4h-15.6v76.5z'/%3e%3cpath%20fill='%23ad1519'%20d='M158.4%20257.7a50%2050%200%200%200-23.3-2c-9.4%201.6-16.5%205.3-15.9%208.4v.2l-3.5-8.2c-.6-3.3%207.2-7.5%2017.6-9.2a43%2043%200%200%201%209.2-.7c6.6%200%2012.4.8%2015.8%202.1v9.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M158.4%20257.7a50%2050%200%200%200-23.3-2c-9.4%201.6-16.5%205.3-15.9%208.4v.2l-3.5-8.2c-.6-3.3%207.2-7.5%2017.6-9.2a43%2043%200%200%201%209.2-.7c6.6%200%2012.4.8%2015.8%202.1v9.4'/%3e%3cpath%20fill='%23ad1519'%20d='M126.8%20267.3c-4.3-.3-7.3-1.4-7.6-3.2q-.3-2.2%203.8-4.5l3.8.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M126.8%20267.3c-4.3-.3-7.3-1.4-7.6-3.2q-.3-2.2%203.8-4.5l3.8.3v7.4'/%3e%3cpath%20fill='%23ad1519'%20d='M142.5%20261.5q4.1.6%205.7%201.9l.1.2c.5%201-1.9%203-5.9%205.4v-7.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M142.5%20261.5q4.1.6%205.7%201.9l.1.2c.5%201-1.9%203-5.9%205.4v-7.5'/%3e%3cpath%20fill='%23ad1519'%20d='M117.1%20282c-.4-1.2%203.8-3.6%209.8-5.8l7.8-3.2c8.3-3.7%2014.4-7.9%2013.6-9.4v-.2c.4.4%201%208%201%208%20.8%201.3-4.8%205.5-12.4%209.1-2.5%201.2-7.6%203-10%204-4.4%201.4-8.7%204.3-8.3%205.3l-1.5-7.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M117.1%20282c-.4-1.2%203.8-3.6%209.8-5.8l7.8-3.2c8.3-3.7%2014.4-7.9%2013.6-9.4v-.2c.4.4%201%208%201%208%20.8%201.3-4.8%205.5-12.4%209.1-2.5%201.2-7.6%203-10%204-4.4%201.4-8.7%204.3-8.3%205.3l-1.5-7.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M125.8%20254c1.9-.6%203.1-1.5%202.5-3q-.6-1.3-2.8-.6l-2.6%201%202.3%205.8.8-.3.8-.3zm-1.2-2.7.7-.3q1-.3%201.4.8.4.8-.5%201.5l-.6.3zm7.3-2.5-.9.3h-.8l1.3%206.1%204.3-.8-.2-.4v-.4l-2.5.6zm8.4%205.2q1.2-3.3%202.7-6.4h-1l-1.8%204.6-2.4-4.3-1%20.1h-1l3.5%206zm8.8-4.7.4-.9a3%203%200%200%200-1.7-.6q-2.6%200-2.8%201.7c-.2%202.1%203.2%202%203%203.4q-.2%201-1.4.8-1.3%200-1.4-1.2h-.3l-.4%201.1a4%204%200%200%200%201.8.6q2.7.2%203.2-1.7c.2-2-3.3-2.1-3.1-3.4q0-.8%201.3-.7%201%200%201.2.9z'/%3e%3cpath%20fill='%23ad1519'%20d='M277.9%20211.6s-.7.8-1.3.9c-.5%200-1.1-.5-1.1-.5s-.5.5-1%20.6-1.4-.6-1.4-.6l-1%201-1.1-.3c-.1-.1-.3.4-.7.6h-.4l-.6-.4-.7-.7-.5-.3-.4-1v-.5q0-1%202.2-1.7a4%204%200%200%201%202%200q.9-.8%203-.8c2.1%200%202.4.3%203%20.7a6%206%200%200%201%202.9-.7q2.1%200%203%20.8.8-.3%202%200%202.2.6%202.2%201.7v.5l-.4%201-.6.3-.6.7-.6.3s-.3.2-.4%200q-.6-.3-.7-.5c-.1-.2-.6.4-1%20.2s-1-1-1-1-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5-1.2-.9-1.2-.9'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.9%20211.6s-.7.8-1.3.9c-.5%200-1.1-.5-1.1-.5s-.5.5-1%20.6-1.4-.6-1.4-.6l-1%201-1.1-.3c-.1-.1-.3.4-.7.6h-.4l-.6-.4-.7-.7-.5-.3-.4-1v-.5q0-1%202.2-1.7a4%204%200%200%201%202%200q.9-.8%203-.8c2.1%200%202.4.3%203%20.7a6%206%200%200%201%202.9-.7q2.1%200%203%20.8.8-.3%202%200%202.2.6%202.2%201.7v.5l-.4%201-.6.3-.6.7-.6.3s-.3.2-.4%200q-.6-.3-.7-.5c-.1-.2-.6.4-1%20.2s-1-1-1-1-.9.8-1.4.7c-.6-.1-1-.6-1-.6s-.7.6-1.2.5-1.2-.9-1.2-.9z'/%3e%3cpath%20fill='%23c8b100'%20d='M276.5%20207.6c0-1%20.6-2%201.3-2s1.3%201%201.3%202-.5%201.8-1.3%201.8q-1.2-.1-1.3-1.9'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M276.5%20207.6c0-1%20.6-2%201.3-2s1.3%201%201.3%202-.5%201.8-1.3%201.8q-1.2-.1-1.3-1.9z'/%3e%3cpath%20fill='%23c8b100'%20d='M277.3%20207.6q0-1.7.5-1.8.6.2.7%201.8c.1%201.6-.3%201.7-.6%201.7q-.6-.2-.6-1.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.3%20207.6q0-1.7.5-1.8.6.2.7%201.8c.1%201.6-.3%201.7-.6%201.7q-.6-.2-.6-1.8z'/%3e%3cpath%20fill='%23c8b100'%20d='m271%20215.3-.5-1a27%2027%200%200%201%2014.8%200l-.6.8-.3.8a23%2023%200%200%200-6.6-.8c-2.6%200-5.2.3-6.6.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m271%20215.3-.5-1a27%2027%200%200%201%2014.8%200l-.6.8-.3.8a23%2023%200%200%200-6.6-.8c-2.6%200-5.2.3-6.6.8l-.2-.6'/%3e%3cpath%20fill='%23c8b100'%20d='M277.8%20217.7c2.4%200%205-.4%205.9-.6q1-.3%201-.8%200-.3-.4-.4a24%2024%200%200%200-6.5-.8c-2.5%200-5%20.3-6.4.8q-.3%200-.4.3%200%20.6%201%20.9c1%20.2%203.5.6%205.8.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.8%20217.7c2.4%200%205-.4%205.9-.6q1-.3%201-.8%200-.3-.4-.4a24%2024%200%200%200-6.5-.8c-2.5%200-5%20.3-6.4.8q-.3%200-.4.3%200%20.6%201%20.9c1%20.2%203.5.6%205.8.6z'/%3e%3cpath%20fill='%23fff'%20d='M283.5%20208.4q0-.3.4-.4.5%200%20.5.4t-.5.4a.4.4%200%200%201-.4-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M283.5%20208.4q0-.3.4-.4.5%200%20.5.4t-.5.4a.4.4%200%200%201-.4-.4zm-.2-1.4a.4.4%200%200%201%20.4-.4q.4%200%20.4.4t-.4.4a.4.4%200%200%201-.4-.4zm-1.1-1q0-.3.4-.3t.4.4-.4.4a.4.4%200%200%201-.4-.5zm-1.4-.4q0-.3.4-.4.5%200%20.5.4t-.4.4q-.5-.1-.5-.4zm-1.4%200q0-.3.5-.3t.4.4q0%20.3-.4.4a.4.4%200%200%201-.5-.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linecap='round'%20stroke-width='.3'%20d='m287.8%20211.2.2-1a2.7%202.7%200%200%200-2.7-2.8q-.8%200-1.3.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m283%20209.2.2-.8q-.2-1.8-2.5-2-1%200-1.6.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M288.2%20210q0-.5.4-.5t.4.4-.4.4q-.5%200-.4-.4zm-.2-1.6q0-.3.4-.4a.4.4%200%200%201%20.5.4q0%20.3-.4.4-.5%200-.5-.4zm-1-1.1a.4.4%200%200%201%20.5-.4q.3%200%20.4.4a.4.4%200%200%201-.4.4.4.4%200%200%201-.5-.4zm-1.3-.7q0-.4.5-.4t.4.4q0%20.5-.4.5a.4.4%200%200%201-.5-.5zm-1.4.1q0-.3.5-.4.6%200%20.4.4t-.4.4q-.4-.1-.5-.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m285.3%20213.2-.5-.5s-.6.3-1.3.2c-.6%200-.9-1-.9-1s-.7.7-1.3.7-1-.6-1-.6-.7.5-1.3.4-1.2-.8-1.2-.8-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7-1.4-.6-1.4-.6-.4.7-1%201c-.5%200-1.2-.4-1.2-.4l-.1.5-.3.1.1.5a27%2027%200%200%201%207.3-.9q4.3%200%207.3%201l.2-.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m285.3%20213.2-.5-.5s-.6.3-1.3.2c-.6%200-.9-1-.9-1s-.7.7-1.3.7-1-.6-1-.6-.7.5-1.3.4-1.2-.8-1.2-.8-.6.8-1.2.8c-.6.1-1-.5-1-.5s-.3.6-1.1.7-1.4-.6-1.4-.6-.4.7-1%201c-.5%200-1.2-.4-1.2-.4l-.1.5-.3.1.1.5a27%2027%200%200%201%207.3-.9q4.3%200%207.3%201l.2-.6z'/%3e%3cpath%20fill='%23fff'%20d='M271.3%20208.4q0-.3.4-.4.5%200%20.4.4a.4.4%200%200%201-.4.4.4.4%200%200%201-.4-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M271.3%20208.4q0-.3.4-.4.5%200%20.4.4a.4.4%200%200%201-.4.4.4.4%200%200%201-.4-.4zm.2-1.4q0-.4.4-.4t.5.4q0%20.5-.5.4a.4.4%200%200%201-.4-.4zm1-1q.1-.3.5-.3t.5.4q0%20.3-.5.4a.4.4%200%200%201-.4-.5zm1.4-.4q0-.3.5-.4.6%200%20.4.4t-.4.4q-.4-.1-.5-.4zm1.4%200q0-.3.5-.3.3%200%20.4.4%200%20.3-.4.4a.4.4%200%200%201-.5-.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linecap='round'%20stroke-width='.3'%20d='m267.8%20211.2-.2-1a2.7%202.7%200%200%201%202.7-2.8q.8%200%201.4.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m272.7%20209.2-.3-.8c0-1%201.2-2%202.6-2a3%203%200%200%201%201.5.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M266.6%20210q0-.5.4-.5t.4.4a.4.4%200%200%201-.4.4q-.3%200-.4-.4zm.1-1.6q.1-.3.5-.4.5%200%20.4.4t-.4.4q-.4-.1-.4-.4zm1-1.1q0-.4.5-.4a.4.4%200%200%201%20.4.4.4.4%200%200%201-.4.4.4.4%200%200%201-.5-.4zm1.3-.7q0-.4.5-.4.3%200%20.4.4%200%20.5-.4.5a.4.4%200%200%201-.5-.5zm1.4.1q0-.3.5-.4a.4.4%200%200%201%20.4.4.4.4%200%200%201-.4.4q-.5%200-.5-.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M277.9%20210.7h.2v.4q.1%201%201%201a1%201%200%200%200%201-.7l.2-.3v.4q.3.8%201.1.8%201%200%201-1v-.1l.4-.4.2.5-.1.4a1%201%200%200%200%201%201q.6%200%20.9-.5l.2-.2v.3q0%20.5.4.7l1-.4c1-.5.7-.7.7-.7v.4s-.5.8-1%201q-.3.4-.8.3-.5%200-.7-.6l-.7.2q-1%200-1.4-.8l-1.1.5q-.8%200-1.2-.6l-1%20.4q-.9%200-1.4-.6-.4.6-1.2.6-.6%200-1-.4a2%202%200%200%201-1.3.6q-.6%200-1.1-.5-.4.8-1.4.8-.4%200-.7-.2-.2.5-.7.6t-.9-.2l-1-1%20.1-.5.8.7q.8.5.9.4.4-.1.4-.7v-.3l.2.2q.3.5.9.5a1%201%200%200%200%201-1v-.9l.4.4v.1q.1%201%201%201t1.1-.9v-.3l.2.3q.4.6%201%20.7%201%200%201.1-1v-.3h.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.9%20210.7h.2v.4q.1%201%201%201a1%201%200%200%200%201-.7l.2-.3v.4q.3.8%201.1.8%201%200%201-1v-.1l.4-.4.2.5-.1.4a1%201%200%200%200%201%201q.6%200%20.9-.5l.2-.2v.3q0%20.5.4.7l1-.4c1-.5.7-.7.7-.7v.4s-.5.8-1%201q-.3.4-.8.3-.5%200-.7-.6l-.7.2q-1%200-1.4-.8l-1.1.5q-.8%200-1.2-.6l-1%20.4q-.9%200-1.4-.6-.4.6-1.2.6-.6%200-1-.4a2%202%200%200%201-1.3.6q-.6%200-1.1-.5-.4.8-1.4.8-.4%200-.7-.2-.2.5-.7.6t-.9-.2l-1-1%20.1-.5.8.7q.8.5.9.4.4-.1.4-.7v-.3l.2.2q.3.5.9.5a1%201%200%200%200%201-1v-.9l.4.4v.1q.1%201%201%201t1.1-.9v-.3l.2.3q.4.6%201%20.7%201%200%201.1-1v-.3h.2z'/%3e%3cpath%20fill='%23c8b100'%20d='M277.8%20213.3q-4.5%200-7.3%201l-.3-.2.1-.3q3-1%207.5-1t7.6%201l.1.3-.3.2a27%2027%200%200%200-7.4-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.8%20213.3q-4.5%200-7.3%201l-.3-.2.1-.3q3-1%207.5-1t7.6%201l.1.3-.3.2a27%2027%200%200%200-7.4-1z'/%3e%3cpath%20fill='%23fff'%20d='M275%20214.4q0-.4.5-.4a.4.4%200%200%201%20.4.4.4.4%200%200%201-.4.4q-.5%200-.5-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M275%20214.4q0-.4.5-.4a.4.4%200%200%201%20.4.4.4.4%200%200%201-.4.4q-.5%200-.5-.4z'/%3e%3cpath%20fill='%23ad1519'%20d='M277.9%20214.5h-1q-.2%200-.3-.3l.3-.3h2l.2.3-.3.3h-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.9%20214.5h-1q-.2%200-.3-.3l.3-.3h2l.2.3-.3.3h-1'/%3e%3cpath%20fill='%23058e6e'%20d='M273.2%20214.9h-.6a.3.3%200%200%201-.4-.2l.3-.3.6-.1.7-.1q.3%200%20.4.2a.3.3%200%200%201-.3.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M273.2%20214.9h-.6a.3.3%200%200%201-.4-.2l.3-.3.6-.1.7-.1q.3%200%20.4.2a.3.3%200%200%201-.3.4h-.7'/%3e%3cpath%20fill='%23ad1519'%20d='m270.5%20215.3.3-.4h.7l-.4.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m270.5%20215.3.3-.4h.7l-.4.6-.6-.2'/%3e%3cpath%20fill='%23fff'%20d='M279.8%20214.4q0-.4.4-.4t.5.4q0%20.3-.5.4a.4.4%200%200%201-.4-.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M279.8%20214.4q0-.4.4-.4t.5.4q0%20.3-.5.4a.4.4%200%200%201-.4-.4z'/%3e%3cpath%20fill='%23058e6e'%20d='M282.5%20214.9h.7l.3-.2-.2-.3-.7-.1-.7-.1q-.3%200-.4.2%200%20.3.3.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M282.5%20214.9h.7l.3-.2-.2-.3-.7-.1-.7-.1q-.3%200-.4.2%200%20.3.3.4h.7'/%3e%3cpath%20fill='%23ad1519'%20d='m285.1%20215.4-.2-.5h-.7l.3.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m285.1%20215.4-.2-.5h-.7l.3.6.6-.1'/%3e%3cpath%20fill='%23ad1519'%20d='M277.8%20217.1a25%2025%200%200%201-6-.6%2025%2025%200%200%201%206-.7q3.6%200%206.1.7-2.5.6-6%20.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M277.8%20217.1a25%2025%200%200%201-6-.6%2025%2025%200%200%201%206-.7q3.6%200%206.1.7-2.5.6-6%20.6z'/%3e%3cpath%20fill='%23c8b100'%20d='m285.2%20212-.1-.3q-.3%200-.4.2l.1.4q.3%200%20.4-.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m285.2%20212-.1-.3q-.3%200-.4.2l.1.4q.3%200%20.4-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='M280.6%20211.2q0-.3-.3-.4l-.2.3q0%20.3.2.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M280.6%20211.2q0-.3-.3-.4l-.2.3q0%20.3.2.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M275.2%20211.2q0-.3.2-.4l.3.3-.2.4q-.3%200-.3-.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M275.2%20211.2q0-.3.2-.4l.3.3-.2.4q-.3%200-.3-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m270.5%20212%20.1-.3q.3%200%20.4.2l-.1.4q-.3%200-.4-.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m270.5%20212%20.1-.3q.3%200%20.4.2l-.1.4q-.3%200-.4-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m277.8%20208.5-.8.5.6%201.3.2.1.3-.1.6-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m277.8%20208.5-.8.5.6%201.3.2.1.3-.1.6-1.3-.9-.5'/%3e%3cpath%20fill='%23c8b100'%20d='m276%20210.5.4.5%201.3-.4.1-.2-.1-.2-1.3-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m276%20210.5.4.5%201.3-.4.1-.2-.1-.2-1.3-.3-.4.6'/%3e%3cpath%20fill='%23c8b100'%20d='m279.6%20210.5-.3.5-1.3-.4-.1-.2v-.2l1.4-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m279.6%20210.5-.3.5-1.3-.4-.1-.2v-.2l1.4-.3.4.6'/%3e%3cpath%20fill='%23c8b100'%20d='m272.5%20209-.7.7.9%201%20.2.1.2-.1.2-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m272.5%20209-.7.7.9%201%20.2.1.2-.1.2-1.3-.8-.3'/%3e%3cpath%20fill='%23c8b100'%20d='m271.1%20211.2.5.5%201.2-.6v-.2l-.1-.2-1.3-.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m271.1%20211.2.5.5%201.2-.6v-.2l-.1-.2-1.3-.1-.3.6'/%3e%3cpath%20fill='%23c8b100'%20d='m274.7%20210.5-.3.6h-1.3l-.2-.2.1-.3%201.2-.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m274.7%20210.5-.3.6h-1.3l-.2-.2.1-.3%201.2-.6.5.5'/%3e%3cpath%20fill='%23c8b100'%20d='M269.8%20211.4v.6l-1.4.2-.2-.1v-.2l1-.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M269.8%20211.4v.6l-1.4.2-.2-.1v-.2l1-.9.6.4'/%3e%3cpath%20fill='%23c8b100'%20d='M272.4%20210.9q0-.5.5-.5l.5.5-.5.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M272.4%20210.9q0-.5.5-.5l.5.5-.5.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m283.2%20209%20.7.7-.9%201-.2.1-.1-.1-.3-1.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m283.2%20209%20.7.7-.9%201-.2.1-.1-.1-.3-1.3.8-.3'/%3e%3cpath%20fill='%23c8b100'%20d='m284.6%20211.2-.5.5-1.2-.6v-.2l.1-.2%201.3-.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m284.6%20211.2-.5.5-1.2-.6v-.2l.1-.2%201.3-.1.3.6'/%3e%3cpath%20fill='%23c8b100'%20d='m281%20210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m281%20210.5.3.6h1.3l.2-.2-.1-.3-1.2-.6-.5.5'/%3e%3cpath%20fill='%23c8b100'%20d='M285.7%20211.4v.6l1.4.2.2-.1v-.2l-1-.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M285.7%20211.4v.6l1.4.2.2-.1v-.2l-1-.9-.6.4'/%3e%3cpath%20fill='%23c8b100'%20d='M277.4%20210.4q0-.3.5-.4.4%200%20.4.4t-.4.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M277.4%20210.4q0-.3.5-.4.4%200%20.4.4t-.4.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M282.3%20210.9q.1-.5.5-.5t.5.5q0%20.6-.5.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M282.3%20210.9q.1-.5.5-.5t.5.5q0%20.6-.5.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M277%20205.4q.1-.8.8-.8%201%200%201%20.8c0%20.8-.5.8-1%20.8a1%201%200%200%201-.8-.8'/%3e%3cpath%20fill='%23c8b100'%20d='M278.5%20205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M278.5%20205.1v.6H277v-.6h.4v-1.3h-.5v-.5h.5v-.6h.6v.6h.6v.6h-.6v1.2h.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M279%20205.1v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M278.1%20204.6q.6.1.6.8t-.9.8a1%201%200%200%201-.8-.8q0-.6.6-.8'/%3e%3cpath%20fill='%23c8b100'%20d='m268%20212.2-.6-.7-.7-.3q0-.2.6-.3.3%200%20.4.2v-.2s.3%200%20.4.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m268%20212.2-.6-.7-.7-.3q0-.2.6-.3.3%200%20.4.2v-.2s.3%200%20.4.3z'/%3e%3cpath%20fill='%23c8b100'%20d='M268%20212q.3-.3.5%200%20.4.2.1.5l-.5-.1q-.2-.2%200-.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M268%20212q.3-.3.5%200%20.4.2.1.5l-.5-.1q-.2-.2%200-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='m287.5%20212.2.6-.7c.2-.2.7-.3.7-.3q0-.2-.6-.3l-.4.2v-.2s-.3%200-.4.3v.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m287.5%20212.2.6-.7c.2-.2.7-.3.7-.3q0-.2-.6-.3l-.4.2v-.2s-.3%200-.4.3v.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M287.5%20212q-.2-.3-.5%200t-.1.5l.5-.1q.3-.2.1-.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M287.5%20212q-.2-.3-.5%200t-.1.5l.5-.1q.3-.2.1-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M267.2%20223h21.4v-5.5h-21.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M267.2%20223h21.4v-5.5h-21.4z'/%3e%3cpath%20fill='%23c8b100'%20d='M286.3%20226.8h-16.9q1-.4%201-1.2%200-1-1-1.3h17-.1q-1%20.3-1%201.3%200%20.8%201%201.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M286.3%20226.8h-16.9q1-.4%201-1.2%200-1-1-1.3h17-.1q-1%20.3-1%201.3%200%20.8%201%201.2z'/%3e%3cpath%20fill='%23c8b100'%20d='M269.9%20226.8h16q1%200%201%20.7t-1%20.8h-16q-1-.1-1-.8.1-1%201-.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M269.9%20226.8h16q1%200%201%20.7t-1%20.8h-16q-1-.1-1-.8.1-1%201-.8z'/%3e%3cpath%20fill='%23c8b100'%20d='M269.9%20223h16q1%20.1%201%20.7t-1%20.6h-16q-1%200-1-.6t1-.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M269.9%20223h16q1%20.1%201%20.7t-1%20.6h-16q-1%200-1-.6t1-.6z'/%3e%3cpath%20fill='%23005bbf'%20d='M263%20317.4q2.1%200%203.7-.8a8%208%200%200%201%203.7-.8q2.2%200%203.8.8c1.6.8%202.3.8%203.7.8q2.3%200%203.8-.8a8%208%200%200%201%203.6-.8%208%208%200%200%201%203.7.8q1.6.8%203.8.8v2.4a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.8q-2.2%200-3.6.8-1.5.8-3.8.9a8%208%200%200%201-3.7-.9%208%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v-2.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M263%20317.4q2.1%200%203.7-.8a8%208%200%200%201%203.7-.8q2.2%200%203.8.8c1.6.8%202.3.8%203.7.8q2.3%200%203.8-.8a8%208%200%200%201%203.6-.8%208%208%200%200%201%203.7.8q1.6.8%203.8.8v2.4a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.8q-2.2%200-3.6.8-1.5.8-3.8.9a8%208%200%200%201-3.7-.9%208%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.9v-2.4z'/%3e%3cpath%20fill='%23ccc'%20d='M263%20319.8q2.1%200%203.7-.9c1.6-.9%202.3-.8%203.7-.8q2.2%200%203.8.8c1.6.8%202.3.9%203.7.9a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.8q2.3%200%203.7.8%201.6.8%203.8.9v2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.8-3.8.9a7%207%200%200%201-3.7-.9q-1.5-.6-3.8-.7a8%208%200%200%200-3.7.7%208%208%200%200%201-3.8.9v-2.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M263%20319.8q2.1%200%203.7-.9c1.6-.9%202.3-.8%203.7-.8q2.2%200%203.8.8c1.6.8%202.3.9%203.7.9a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.8q2.3%200%203.7.8%201.6.8%203.8.9v2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.8-3.8.9a7%207%200%200%201-3.7-.9q-1.5-.6-3.8-.7a8%208%200%200%200-3.7.7%208%208%200%200%201-3.8.9v-2.3'/%3e%3cpath%20fill='%23005bbf'%20d='M263%20322q2.1%200%203.7-.8%201.6-.6%203.7-.7%202.2%200%203.8.7c1.6.7%202.3.9%203.7.9a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.8%208%208%200%200%201%203.7.8q1.6.8%203.8.9v2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.9-3.8.9t-3.7-.8a8%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.8V322'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M263%20322q2.1%200%203.7-.8%201.6-.6%203.7-.7%202.2%200%203.8.7c1.6.7%202.3.9%203.7.9a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.8%208%208%200%200%201%203.7.8q1.6.8%203.8.9v2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.9-3.8.9t-3.7-.8a8%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.8V322'/%3e%3cpath%20fill='%23ccc'%20d='M263%20326.7a8%208%200%200%200%203.7-.8q1.6-.8%203.7-.8%202.2%200%203.8.8c1.6.8%202.3.8%203.7.8q2.3%200%203.8-.9a8%208%200%200%201%203.6-.7q2.3%200%203.7.8a8%208%200%200%200%203.8.8v-2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.8-3.8.9t-3.7-.8a8%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.8v2.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M263%20326.7a8%208%200%200%200%203.7-.8q1.6-.8%203.7-.8%202.2%200%203.8.8c1.6.8%202.3.8%203.7.8q2.3%200%203.8-.9a8%208%200%200%201%203.6-.7q2.3%200%203.7.8a8%208%200%200%200%203.8.8v-2.3a8%208%200%200%201-3.8-.9%208%208%200%200%200-3.7-.7q-2.2%200-3.6.7-1.5.8-3.8.9t-3.7-.8a8%208%200%200%200-3.8-.8%208%208%200%200%200-3.7.8q-1.5.8-3.8.8v2.3'/%3e%3cpath%20fill='%23005bbf'%20d='M263%20329a8%208%200%200%200%203.7-.8q1.6-.8%203.7-.8%202.2%200%203.8.8c1.6.8%202.3.8%203.7.8a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.7q2.3%200%203.7.8%201.6.8%203.8.8v-2.3a8%208%200%200%201-3.8-.8%208%208%200%200%200-3.7-.8%208%208%200%200%200-3.6.7%208%208%200%200%201-3.8.9q-2.2%200-3.7-.8t-3.8-.8q-2.1%200-3.7.8c-1.6.8-2.3.8-3.8.8v2.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M263%20329a8%208%200%200%200%203.7-.8q1.6-.8%203.7-.8%202.2%200%203.8.8c1.6.8%202.3.8%203.7.8a8%208%200%200%200%203.8-.9%208%208%200%200%201%203.6-.7q2.3%200%203.7.8%201.6.8%203.8.8v-2.3a8%208%200%200%201-3.8-.8%208%208%200%200%200-3.7-.8%208%208%200%200%200-3.6.7%208%208%200%200%201-3.8.9q-2.2%200-3.7-.8t-3.8-.8q-2.1%200-3.7.8c-1.6.8-2.3.8-3.8.8v2.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m286.3%20308-.1.5c0%201.5%201.2%202.6%202.7%202.6h-22c1.5%200%202.7-1.2%202.7-2.6l-.1-.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='m286.3%20308-.1.5c0%201.5%201.2%202.6%202.7%202.6h-22c1.5%200%202.7-1.2%202.7-2.6l-.1-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M269.9%20306.5h16q1%200%201%20.8%200%20.6-1%20.7h-16q-1%200-1-.8.1-.6%201-.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M269.9%20306.5h16q1%200%201%20.8%200%20.6-1%20.7h-16q-1%200-1-.8.1-.6%201-.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M266.9%20316.7h22V311h-22z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M266.9%20316.7h22V311h-22z'/%3e%3cpath%20fill='%23ad1519'%20d='M290.6%20286.7c2.1%201.2%203.6%202.5%203.4%203.2q-.2.8-1.8%201.6c-1.6%201.1-2.5%203-1.8%204a5.5%205.5%200%200%201%20.2-8.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M290.6%20286.7c2.1%201.2%203.6%202.5%203.4%203.2q-.2.8-1.8%201.6c-1.6%201.1-2.5%203-1.8%204a5.5%205.5%200%200%201%20.2-8.8z'/%3e%3cpath%20fill='%23ccc'%20d='M270.1%20305.6h15.6V229h-15.6v76.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M281.4%20229.1v76.3m1.8-76.3v76.3m-13%20.2h15.5V229h-15.6v76.5z'/%3e%3cpath%20fill='%23ad1519'%20d='M254.2%20257.7a50%2050%200%200%201%2023.3-2c9.3%201.6%2016.4%205.3%2015.9%208.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a54%2054%200%200%200-9.2-.7c-6.7%200-12.4.8-15.9%202.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M254.2%20257.7a50%2050%200%200%201%2023.3-2c9.3%201.6%2016.4%205.3%2015.9%208.4v.2l3.5-8.2c.6-3.3-7.3-7.5-17.6-9.2a54%2054%200%200%200-9.2-.7c-6.7%200-12.4.8-15.9%202.1v9.4'/%3e%3cpath%20fill='%23ad1519'%20d='M285.7%20267.3c4.4-.3%207.3-1.4%207.7-3.2q.2-2.2-3.8-4.5l-3.9.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M285.7%20267.3c4.4-.3%207.3-1.4%207.7-3.2q.2-2.2-3.8-4.5l-3.9.3v7.4'/%3e%3cpath%20fill='%23ad1519'%20d='M270%20261.5a13%2013%200%200%200-5.7%201.9v.2c-.5%201%201.8%203%205.8%205.4v-7.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M270%20261.5a13%2013%200%200%200-5.7%201.9v.2c-.5%201%201.8%203%205.8%205.4v-7.5'/%3e%3cpath%20fill='%23ad1519'%20d='M295.4%20282c.4-1.2-3.8-3.6-9.7-5.8-2.8-1-5-2-7.8-3.2-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1%208-1%208-.8%201.3%204.8%205.5%2012.4%209.1%202.4%201.2%207.6%203%2010%204%204.3%201.4%208.7%204.3%208.3%205.3l1.4-7.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M295.4%20282c.4-1.2-3.8-3.6-9.7-5.8-2.8-1-5-2-7.8-3.2-8.3-3.7-14.4-7.9-13.6-9.4v-.2c-.4.4-1%208-1%208-.8%201.3%204.8%205.5%2012.4%209.1%202.4%201.2%207.6%203%2010%204%204.3%201.4%208.7%204.3%208.3%205.3l1.4-7.7z'/%3e%3cpath%20fill='%23c8b100'%20d='m263.9%20254.4%202.1-6.6h-.5l-.5.1-1.4%204.8q-1.6-2-2.7-4.1l-1%20.2h-1l4%205.7h.5zm6-6.6h-1.8v6.2h4.2v-.7h-2.6zm6.8%201%202%20.3v-.7l-5.8-.5v.8h2l-.4%205.6h1.6l.5-5.4m2.4%206%20.8.2.8.2.7-2.9.6%201.2.8%202.1%201%20.2q.6%200%201%20.3l-.3-.7-1.3-2.9q1.6%200%202.1-1.2.3-.8-.7-1.5-.8-.4-1.7-.5l-2.4-.5zm3-5.2c.7.2%201.5.3%201.5%201v.5q-.5%201.3-2%20.9zm8%207-.2%202%20.8.5.9.5.5-7-.7-.3-6.1%203.8.5.3.4.2%201.7-1.2%202.3%201.3zm-1.7-1.5%202-1.4-.2%202.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M182.2%20192.4c0-1%201-2%202-2s2.2%201%202.2%202c0%201.1-1%202-2.1%202a2%202%200%200%201-2.1-2z'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.3'%20d='M205.7%20175.4c6.3%200%2012%201%2015.7%202.4a32%2032%200%200%200%2014.6%202.3c2.7%200%206.5.8%2010.3%202.4a27%2027%200%200%201%207.4%204.7l-1.5%201.4-.4%203.8-4.1%204.7-2%201.8-5%203.9-2.5.2-.7%202.1-31.6-3.7-31.7%203.7-.8-2.1-2.5-.2-4.9-4-2-1.7-4.1-4.7-.5-3.8-1.5-1.4a28%2028%200%200%201%207.5-4.7%2026%2026%200%200%201%2010.2-2.4q3%20.3%206.6-.2a30%2030%200%200%200%208-2q5.6-2.4%2015.5-2.5z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M206.2%20217.1c-11.8%200-22.4-1.4-29.9-3.6a1%201%200%200%201-.8-1.2q0-.8.8-1.2a109%20109%200%200%201%2029.9-3.6c11.7%200%2022.3%201.4%2029.8%203.6a1.3%201.3%200%200%201%200%202.4c-7.5%202.2-18%203.6-29.8%203.6'/%3e%3cpath%20fill='%23ad1519'%20d='M206.1%20215.6c-10.6%200-20.2-1.2-27.5-3.1%207.3-2%2016.9-3%2027.5-3.1a115%20115%200%200%201%2027.6%203c-7.3%202-17%203.2-27.6%203.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M206.9%20215.7v-6.3m-1.7%206.3v-6.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M203.6%20215.7v-6.3m-1.6%206.3v-6.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M200.6%20215.7v-6.3m-2.8%205.9v-5.7m1.3%205.8v-6m-3.8%205.6v-5.2m1.3%205.4v-5.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M192%20214.8V210m1%204.7V210m1.2%205v-5m-3.4%204.7v-4.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M189.7%20214.5v-4.2m-1.2%204.1v-4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.6'%20d='M186%20214v-3m1.3%203.2v-3.5m-2.5%203.1V211'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.7'%20d='M183.7%20213.6v-2.3m-1.3%202v-1.8m-1.2%201.6v-1.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.9'%20d='M179.8%20212.8v-.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M213.7%20215.3v-5.8m-2.9%206v-6.1m-2.1%206.2v-6.3'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M206%20207.4a108%20108%200%200%200-30%203.9c.6-.3.5-1-.3-3-1-2.5-2.4-2.4-2.4-2.4%208.3-2.5%2020-4%2032.8-4a123%20123%200%200%201%2033%204s-1.5-.1-2.5%202.3q-1.2%202.8-.2%203c-7.5-2.2-18.4-3.7-30.3-3.7'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M206.1%20201.9c-12.9%200-24.5%201.5-32.8%204a1%201%200%200%201-1.3-.6%201%201%200%200%201%20.7-1.3%20121%20121%200%200%201%2033.4-4.2c13.2%200%2025.2%201.7%2033.5%204.2q1%20.4.7%201.3t-1.3.6c-8.4-2.5-20-4-32.9-4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.4'%20d='M206.1%20215.6c-10.6%200-20.2-1.2-27.5-3.1%207.3-2%2016.9-3%2027.5-3.1a115%20115%200%200%201%2027.6%203c-7.3%202-17%203.2-27.6%203.2z'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M197%20204.8q0-.9%201-1%20.9.1%201%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='M206.1%20205.6H203a1%201%200%200%201%200-2h6.4q.9.1%201%201%200%201.2-1%201h-3.2'/%3e%3cpath%20fill='%23058e6e'%20stroke='%23000'%20stroke-width='.4'%20d='m190.3%20206.5-2.3.2q-.9%200-1.2-.8a1%201%200%200%201%201-1.1l2.2-.3%202.4-.3q.9%200%201.1.9%200%20.9-.9%201l-2.3.4'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M181%20206.7q.1-1%201.1-1t1%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='m174%20208.5%201.2-1.6%203.3.4-2.6%202-1.8-.8'/%3e%3cpath%20fill='%23058e6e'%20stroke='%23000'%20stroke-width='.4'%20d='m222%20206.5%202.3.2q.9%200%201.1-.8a1%201%200%200%200-.9-1.1l-2.2-.3-2.4-.3a1%201%200%200%200-1.1.9q0%20.9.9%201l2.3.4'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M213.3%20204.8q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1m15.8%201.9q.1-1%201-1t1.1%201q0%20.9-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='m238.2%20208.5-1.1-1.6-3.3.4%202.6%202%201.8-.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M177.3%20212.8c7.4-2.1%2017.6-3.4%2028.8-3.4%2011.3%200%2021.4%201.3%2028.9%203.4'/%3e%3cpath%20fill='%23c8b100'%20d='m182.3%20183.8%201.4%201%202-3.2a7%207%200%200%201-3.6-7.2c.2-4.1%205.2-7.6%2011.7-7.6q5%20.1%208.5%202.4l.2-1.8a17%2017%200%200%200-8.7-2.1c-7.4%200-13.2%204.1-13.5%209.1a9%209%200%200%200%203%207.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='m182.3%20183.8%201.4%201%202-3.2a7%207%200%200%201-3.6-7.2c.2-4.1%205.2-7.6%2011.7-7.6q5%20.1%208.5%202.4l.2-1.8a17%2017%200%200%200-8.7-2.1c-7.4%200-13.2%204.1-13.5%209.1a9%209%200%200%200%203%207.6l-1%201.8'/%3e%3cpath%20fill='%23c8b100'%20d='M182.4%20183.8a9%209%200%200%201-4-7.3q.2-5%205.3-8a9%209%200%200%200-3.4%206.8%209%209%200%200%200%203%206.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M182.4%20183.8a9%209%200%200%201-4-7.3q.2-5%205.3-8a9%209%200%200%200-3.4%206.8%209%209%200%200%200%203%206.7l-.9%201.8'/%3e%3cpath%20fill='%23c8b100'%20d='M160.1%20187.1a9%209%200%200%201-2.3-5.9q0-2%201-3.8c2-4.2%208.4-7.2%2016-7.2q3%200%205.9.6l-1%201.4a26%2026%200%200%200-4.9-.4c-7%200-12.8%202.7-14.5%206.3a7%207%200%200%200-.7%203.1%207%207%200%200%200%202.7%205.6l-2.6%204.1-1.3-1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M160.1%20187.1a9%209%200%200%201-2.3-5.9q0-2%201-3.8c2-4.2%208.4-7.2%2016-7.2q3%200%205.9.6l-1%201.4a26%2026%200%200%200-4.9-.4c-7%200-12.8%202.7-14.5%206.3a7%207%200%200%200-.7%203.1%207%207%200%200%200%202.7%205.6l-2.6%204.1-1.3-1z'/%3e%3cpath%20fill='%23c8b100'%20d='M162.7%20173.3a11%2011%200%200%200-4%204.1%209%209%200%200%200-.9%203.8q.1%203.5%202.3%205.9l-1.5%202.5a10%2010%200%200%201-2.3-6.5c0-4%202.5-7.5%206.4-9.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M162.7%20173.3a11%2011%200%200%200-4%204.1%209%209%200%200%200-.9%203.8q.1%203.5%202.3%205.9l-1.5%202.5a10%2010%200%200%201-2.3-6.5c0-4%202.5-7.5%206.4-9.8z'/%3e%3cpath%20fill='%23c8b100'%20d='M206%20164.4c1.7%200%203.2%201.1%203.5%202.6q.4%202.1.4%204.5v1.1c.1%203.3.6%206.3%201.3%208.1l-5.2%205-5.2-5c.7-1.8%201.2-4.8%201.3-8.1v-1.1q0-2.4.4-4.5c.3-1.5%201.8-2.6%203.5-2.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M206%20164.4c1.7%200%203.2%201.1%203.5%202.6q.4%202.1.4%204.5v1.1c.1%203.3.6%206.3%201.3%208.1l-5.2%205-5.2-5c.7-1.8%201.2-4.8%201.3-8.1v-1.1q0-2.4.4-4.5c.3-1.5%201.8-2.6%203.5-2.6z'/%3e%3cpath%20fill='%23c8b100'%20d='M206%20166q1.6.1%201.8%201.4.3%201.8.4%204.2v1q.2%205%201.2%207.7l-3.4%203.2-3.4-3.2q1-2.7%201.2-7.7v-1l.4-4.2a2%202%200%200%201%201.8-1.4'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M206%20166q1.6.1%201.8%201.4.3%201.8.4%204.2v1q.2%205%201.2%207.7l-3.4%203.2-3.4-3.2q1-2.7%201.2-7.7v-1l.4-4.2a2%202%200%200%201%201.8-1.4z'/%3e%3cpath%20fill='%23c8b100'%20d='m229.7%20183.8-1.3%201-2-3.2a7%207%200%200%200%203.6-6.3v-.9c-.2-4.1-5.3-7.6-11.7-7.6a15%2015%200%200%200-8.5%202.4l-.2-1.8a17%2017%200%200%201%208.7-2.1c7.4%200%2013.2%204.1%2013.4%209.1a9%209%200%200%201-3%207.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='m229.7%20183.8-1.3%201-2-3.2a7%207%200%200%200%203.6-6.3v-.9c-.2-4.1-5.3-7.6-11.7-7.6a15%2015%200%200%200-8.5%202.4l-.2-1.8a17%2017%200%200%201%208.7-2.1c7.4%200%2013.2%204.1%2013.4%209.1a9%209%200%200%201-3%207.6l1%201.8'/%3e%3cpath%20fill='%23c8b100'%20d='M229.6%20183.8a9%209%200%200%200%204.1-7.3c0-3.2-2.1-6.1-5.3-8a9%209%200%200%201%203.4%206.8%209%209%200%200%201-3.2%206.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M229.6%20183.8a9%209%200%200%200%204.1-7.3c0-3.2-2.1-6.1-5.3-8a9%209%200%200%201%203.4%206.8%209%209%200%200%201-3.2%206.7l1%201.8'/%3e%3cpath%20fill='%23c8b100'%20d='M252%20187.1a9%209%200%200%200%202.2-5.9%209%209%200%200%200-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29%2029%200%200%200-6%20.6l1%201.4a25%2025%200%200%201%205-.4c7%200%2012.8%202.7%2014.4%206.3q.7%201.5.7%203.1a7%207%200%200%201-2.6%205.6l2.5%204.1%201.3-1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M252%20187.1a9%209%200%200%200%202.2-5.9%209%209%200%200%200-.9-3.8c-2-4.2-8.4-7.2-16-7.2a29%2029%200%200%200-6%20.6l1%201.4a25%2025%200%200%201%205-.4c7%200%2012.8%202.7%2014.4%206.3q.7%201.5.7%203.1a7%207%200%200%201-2.6%205.6l2.5%204.1%201.3-1z'/%3e%3cpath%20fill='%23c8b100'%20d='M249.3%20173.3a11%2011%200%200%201%204%204.1%209%209%200%200%201%20.9%203.8%209%209%200%200%201-2.3%205.9l1.6%202.5a10%2010%200%200%200%202.3-6.5c0-4-2.6-7.5-6.5-9.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M249.3%20173.3a11%2011%200%200%201%204%204.1%209%209%200%200%201%20.9%203.8%209%209%200%200%201-2.3%205.9l1.6%202.5a10%2010%200%200%200%202.3-6.5c0-4-2.6-7.5-6.5-9.8z'/%3e%3cpath%20fill='%23fff'%20d='M204.2%20181.4q.1-1.7%201.8-1.8c1.7-.1%201.9.8%201.9%201.8s-.9%201.7-1.9%201.7a2%202%200%200%201-1.8-1.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M204.2%20181.4q.1-1.7%201.8-1.8c1.7-.1%201.9.8%201.9%201.8s-.9%201.7-1.9%201.7a2%202%200%200%201-1.8-1.7z'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M204.2%20178q.1-1.7%201.8-1.8c1.7-.1%201.9.8%201.9%201.8s-.9%201.7-1.9%201.7a2%202%200%200%201-1.8-1.7m.4-3.7q.1-1.2%201.4-1.3%201.4.1%201.5%201.3-.1%201.3-1.5%201.4c-1.4.1-1.4-.6-1.4-1.4m.4-3.3q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1m.2-2.8q.1-.8.8-.8t.9.8q0%20.7-.9.8a1%201%200%200%201-.8-.8'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='m206.2%20191.8%201.2.2a4.6%204.6%200%200%200%204.5%206%205%205%200%200%200%204.4-3c.1%200%20.5-1.7.7-1.7s.1%201.8.2%201.7c.3%202.3%202.4%203.8%204.7%203.8a4.6%204.6%200%200%200%204.7-5l1.5-1.5.7%202a4%204%200%200%200-.4%201.9%204.4%204.4%200%200%200%204.5%204.2q2.5%200%203.8-1.9l.9-1.2v1.5c0%201.5.6%202.8%202%203%200%200%201.7.1%204-1.6%202.1-1.7%203.3-3.1%203.3-3.1l.2%201.7s-1.8%202.8-3.8%204c-1%20.6-2.7%201.3-4%201q-2.1-.5-3-2.6a7%207%200%200%201-3.3%201%207%207%200%200%201-6.1-3.7%207%207%200%200%201-10.4-.3%207%207%200%200%201-4.6%201.8%207%207%200%200%201-5.7-3%207%207%200%200%201-5.7%203%207%207%200%200%201-4.7-1.8%207%207%200%200%201-10.4.3%207%207%200%200%201-6%203.7%207%207%200%200%201-3.4-1q-.8%202.1-3%202.7c-1.2.2-2.9-.5-4-1.1-2-1.2-3.8-4-3.8-4l.2-1.7s1.2%201.4%203.4%203.1%203.9%201.6%203.9%201.6c1.4-.2%202-1.5%202-3v-1.5l1%201.2a5%205%200%200%200%203.7%202c2.5%200%204.5-2%204.5-4.3a4%204%200%200%200-.4-2l.8-1.9%201.5%201.5v.6c0%202.4%202%204.4%204.6%204.4%202.4%200%204.4-1.5%204.7-3.8%200%200%200-1.6.2-1.7s.6%201.7.7%201.6a5%205%200%200%200%204.5%203.1%204.6%204.6%200%200%200%204.5-6l1.2-.2'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M238.6%20197.7q.4-1.4-.6-1.8-.9-.2-1.5%201.1-.4%201.4.6%201.8.9.2%201.5-1.1m-20.5-4c0-.8-.3-1.6-1-1.6q-.8%200-1.2%201.4%200%201.3.9%201.6%201-.1%201.3-1.4m-23.9%200c0-.8.4-1.6%201-1.6q1%200%201.2%201.4%200%201.3-.9%201.6-1-.1-1.2-1.4m-20.6%204q-.3-1.4.6-1.8%201-.2%201.5%201.1t-.5%201.8q-1%20.2-1.6-1.1'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M182.7%20184a5%205%200%200%201%202.2%202.9s0-.3.6-.6%201-.3%201-.3l-.1%201.3-.3%202.2-.7%201.6a2%202%200%200%200-1.5-.4%202%202%200%200%200-1.2.9s-.7-.6-1.2-1.3l-1.1-2-.7-1.1s.5-.2%201.1%200q.9.1.8.2a5%205%200%200%201%201-3.4m.4%209.8-.6-1q0-.7.3-1.2s-.9-.5-1.8-.7c-.7-.2-2-.2-2.3-.2h-1l.2.5.5.7a5%205%200%200%200-3%202%205%205%200%200%200%203.5%201l-.2.8v.6l1-.4c.3-.1%201.5-.5%202-1%20.8-.4%201.5-1.1%201.5-1.1m2.7-.5.2-1.1-.6-1%201.4-1.3%202-.9%201.1-.4v.6l-.2.8a5%205%200%200%201%203.4%201%205%205%200%200%201-2.9%202l.7%201.2h-1c-.4%200-1.6%200-2.3-.2l-1.8-.7'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='M182.2%20192.4c0-1%201-2%202-2s2.2%201%202.2%202c0%201.1-1%202-2.1%202a2%202%200%200%201-2.1-2'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M206.1%20180.8a6%206%200%200%201%201.9%203.7s.2-.3.9-.5q1.1-.3%201.2-.2l-.5%201.4-.8%202.4-1%201.7a2%202%200%200%200-1.7-.7q-1%200-1.6.7-.2-.1-1-1.7l-.8-2.4-.5-1.4%201.2.2q1%20.4.9.5.2-2.2%201.8-3.7'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M204.6%20191.8a2%202%200%200%201-.5-1.2q0-.8.4-1.3s-.8-.7-1.8-1c-.7-.4-2-.7-2.5-.7l-1.2-.2.2.6.4.9a6%206%200%200%200-3.7%201.7q1.6%201.5%203.7%201.6l-.4%201-.2.6%201.2-.2c.4-.1%201.8-.4%202.5-.7%201-.4%201.9-1%201.9-1m3%200a2%202%200%200%200%20.1-2.6s.9-.7%201.8-1a8%208%200%200%201%202.5-.7l1.2-.3-.1.7-.4.9q2.2.2%203.6%201.7a6%206%200%200%201-3.6%201.6l.5%201.6-1.2-.2-2.5-.7c-1-.4-1.8-1-1.8-1m22-8a5%205%200%200%200-2.2%203l-.7-.6-1-.3.2%201.3c0%20.3%200%201.3.3%202.2q.4%201.6.6%201.6a2%202%200%200%201%201.5-.4q.9.2%201.3.9l1.1-1.3q1-1.4%201.1-2l.7-1.1s-.4-.2-1%200l-1%20.2a5%205%200%200%200-1-3.4m-.3%209.8q.5-.4.6-1l-.2-1.2s.8-.5%201.7-.7c.7-.2%202-.2%202.3-.2h1.1l-.3.5-.4.7a5%205%200%200%201%202.9%202%205%205%200%200%201-3.5%201l.2.8v.6l-1-.4c-.3-.1-1.4-.5-2-1-.8-.4-1.4-1.1-1.4-1.1m-2.8-.5-.2-1.1q0-.7.6-1s-.6-.8-1.4-1.3c-.6-.4-1.7-.8-2-.9l-1-.4v.6l.2.8a5%205%200%200%200-3.5%201q1%201.4%203%202l-.5.7-.3.5h1c.4%200%201.7%200%202.3-.2l1.8-.7'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='M226%20192.4c0-1%201-2%202-2s2.1%201%202.1%202a2%202%200%200%201-2%202%202%202%200%200%201-2.1-2m23.2%204.4c-.4-.5-1.4-.4-2.2.2q-1.2%201.2-.5%202.2%201%20.8%202.3-.3c.7-.6%201-1.6.5-2'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='m246.3%20198%20.7-1c.7-.6%201.8-.7%202.3-.2l.1.2s1-2%202.3-2.6%203.4-.5%203.4-.5a3%203%200%200%200-2.9-2.8%203%203%200%200%200-2.4%201l-.2-1s-1.3.3-1.9%201.8%200%203.6%200%203.6-.3-.9-.7-1.5a8%208%200%200%200-2.4-1.6l-1.3-.7-.1.5v.8a8%208%200%200%200-3.7.5%205%205%200%200%200%202.5%202.2l-.8.7-.4.5%201.3.2%202.5.2%201.7-.2m-80.3%200q0-.6-.7-1c-.7-.7-1.7-.8-2.2-.3l-.2.3s-1-2-2.3-2.7-3.3-.5-3.3-.5a3%203%200%200%201%202.8-2.8q1.6%200%202.4%201l.2-1s1.3.3%202%201.8c.5%201.5-.1%203.6-.1%203.6s.3-.9.8-1.5a8%208%200%200%201%202.4-1.6l1.3-.7v1.3a8%208%200%200%201%203.7.5%205%205%200%200%201-2.5%202.2l.8.7.4.5-1.2.2-2.6.2-1.7-.2'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.4'%20d='M163%20196.8q1-.7%202.4.3%201.2%201%20.4%202c-.5.6-1.5.5-2.2-.2s-1-1.6-.5-2m41-6.3q.2-1.8%202-2c1.8-.2%202.1.9%202.1%202%200%201-1%202-2%202a2%202%200%200%201-2.1-2'/%3e%3cpath%20fill='%23005bbf'%20stroke='%23000'%20stroke-width='.3'%20d='M201.8%20160.6c0-2.2%201.9-4%204.3-4s4.2%201.8%204.2%204-1.9%204-4.3%204a4%204%200%200%201-4.2-4'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.3'%20d='M205%20149.3v2.2h-2.4v2.2h2.3v6.3H202l-.2.6q0%20.9.3%201.6h7.9q.3-.7.3-1.6l-.2-.6h-2.8v-6.3h2.3v-2.2h-2.3v-2.2z'/%3e%3cpath%20fill='%23ccc'%20d='M206.5%20330.6a82%2082%200%200%201-35.5-8.2%2023%2023%200%200%201-12.8-20.4v-32h96.4v32a23%2023%200%200%201-12.8%2020.4%2081%2081%200%200%201-35.3%208.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M206.5%20330.6a82%2082%200%200%201-35.5-8.2%2023%2023%200%200%201-12.8-20.4v-32h96.4v32a23%2023%200%200%201-12.8%2020.4%2081%2081%200%200%201-35.3%208.2z'/%3e%3cpath%20fill='%23ccc'%20d='M206.3%20270h48.3v-53.5h-48.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M206.3%20270h48.3v-53.5h-48.3z'/%3e%3cpath%20fill='%23ad1519'%20d='M206.3%20302c0%2012.6-10.7%2022.9-24%2022.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.5'%20d='M168.6%20320.9c1.5.8%203.6%202%205.8%202.6l-.1-54.7h-5.7z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.5'%20d='M158%20301.6a24%2024%200%200%200%205.5%2015v-47.5h-5.4z'/%3e%3cpath%20fill='%23c7b500'%20stroke='%23000'%20stroke-width='.5'%20d='M179.4%20324.7a27%2027%200%200%200%205.6%200v-55.9h-5.6v56z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.5'%20d='M190%20323.5a19%2019%200%200%200%205.8-2.5v-52.2H190z'/%3e%3cpath%20fill='%23ad1519'%20d='M158.1%20270h48.2v-53.5H158z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M158.1%20270h48.2v-53.5H158z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.5'%20d='M201%20316c2.4-2%204.6-6.8%205.4-12.2l.1-35H201l.1%2047.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M206.3%20302c0%2012.6-10.7%2022.9-24%2022.9s-24.2-10.3-24.2-23v-32h48.2v32'/%3e%3cpath%20fill='%23ad1519'%20d='M254.6%20270v32c0%2012.6-10.8%2022.9-24.1%2022.9s-24.2-10.3-24.2-23v-32h48.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.5'%20d='M254.6%20270v32c0%2012.6-10.8%2022.9-24.1%2022.9s-24.2-10.3-24.2-23v-32h48.3'/%3e%3cpath%20fill='%23c8b100'%20d='m215.1%20294.1.1.5q-.1%201-1.1%201a1%201%200%200%201-1.1-1v-.5h-1.5a2.5%202.5%200%200%200%201.8%202.9v3.9h1.6V297a3%203%200%200%200%201.7-1.6h4.4v-1.2zm21.8%200v1.2h-4l-.3.6%204.6%205.2-1.2%201-4.6-5.3-.2.1v8.7h-1.6V297h-.2l-4.8%205.2-1.2-1%204.7-5.3-.2-.4h-4V294h13zm2.6%200v1.2h4.4q.5%201.2%201.7%201.6v3.9h1.6V297a3%203%200%200%200%201.8-2.4v-.5h-1.6l.1.5q-.1%201-1%201-1.1%200-1.2-1l.1-.5zm-6.7%2022.1a16%2016%200%200%200%203.7-1l.8%201.4a18%2018%200%200%201-4.3%201.2%203%203%200%200%201-2.6%202%203%203%200%200%201-2.5-2%2018%2018%200%200%201-4.6-1.2l.8-1.4q2%20.8%204%201a3%203%200%200%201%201.5-1.3v-6.7h1.6v6.7q1.1.3%201.6%201.4zm-11-2.2-.8%201.4a17%2017%200%200%201-3.6-3.1q-1.4.3-2.5-.5a2.4%202.4%200%200%201-.3-3.5l.1-.1a15%2015%200%200%201-1.3-4.8h1.7a13%2013%200%200%200%201%204q.8%200%201.4.2l4.1-4.5%201.3%201-4.1%204.5q.8%201.5-.1%202.8a15%2015%200%200%200%203.1%202.6m-6-4.8q.6-.7%201.5%200c.9.7.5%201%20.1%201.4a1%201%200%200%201-1.6.1%201%201%200%200%201%200-1.5m-2.2-4.5-1.6-.3-.3-4.3%201.7-.6v2.5q0%201.4.2%202.7m1.4-5.3%201.7.4v2.2c0-.8.3%202.1.3%202.1l-1.7.6-.3-2.7zm5.6%2013.7a16%2016%200%200%200%204.8%202.6l.4-1.6a14%2014%200%200%201-4-2zm-.8%201.4a17%2017%200%200%200%204.8%202.6l-1.2%201.1a19%2019%200%200%201-4-2zm2.2-9.4%201.6.7%203-3.3-1-1.4zm-1.3-1-1-1.4%203-3.3%201.6.7zm18.1%209.9.8%201.4a17%2017%200%200%200%203.6-3.1q1.4.3%202.5-.5a2.4%202.4%200%200%200%20.3-3.5l-.1-.1a15%2015%200%200%200%201.3-4.8h-1.7a13%2013%200%200%201-1%204l-1.4.2-4.1-4.5-1.3%201%204.1%204.5a2.4%202.4%200%200%200%20.1%202.8%2015%2015%200%200%201-3.1%202.6m6-4.8a1%201%200%200%200-1.5%200%201%201%200%200%200-.1%201.4%201%201%200%200%200%201.6.1%201%201%200%200%200%200-1.5m2.2-4.5%201.6-.3.3-4.3-1.7-.6v2.5q0%201.5-.2%202.8zm-1.4-5.3-1.7.4v2.2c0-.8-.3%202.1-.3%202.1l1.7.6.3-2.7zm-5.6%2013.7a16%2016%200%200%201-4.8%202.6l-.4-1.6a14%2014%200%200%200%204-2zm.8%201.4a17%2017%200%200%201-4.8%202.6l1.2%201.1a19%2019%200%200%200%204-2zm-2.2-9.4-1.6.7-2.9-3.3%201-1.4zm1.3-1%201-1.4-3-3.3-1.6.7zm-20.1-8.7.5%201.6h4.5l.5-1.6zm21.1%200-.5%201.6h-4.5l-.5-1.6zm-11.6%2021.9q.1-1%201.1-1a1%201%200%200%201%201.1%201q-.1%201-1%201a1%201%200%200%201-1.2-1m1.9-7.8%201.7-.4v-4.3l-1.7-.5zm-1.6%200-1.7-.4v-4.3l1.7-.5z'/%3e%3cpath%20fill='%23c8b100'%20d='M211.5%20294.2q.4-1.5%201.8-2V287h1.6v5.3q1.3.5%201.7%201.6h4.4v.3h-6a1%201%200%200%200-1-.6q-.6%200-1%20.6zm12.2%200v-.3h4.1l.2-.3-5-5.7%201.2-1%205%205.6.2-.1V285h1.6v7.3h.3l4.9-5.5%201.2%201-4.9%205.5.3.6h4v.3zm21.6%200a1%201%200%200%201%201-.6q.7%200%201%20.6h1.6q-.4-1.5-1.8-2V287h-1.6v5.3q-1.2.4-1.7%201.6h-4.4v.3zm-30.2-15%206%206.8%201.3-1-6.1-6.7.3-.6h4.4V276h-4.4a3%203%200%200%200-2.5-1.7%202.6%202.6%200%200%200-2.7%202.5%203%203%200%200%200%201.8%202.4v5.2h1.6v-5.2zm32%200v5.3h-1.7v-5.2l-.4-.2-6%206.8-1.3-1%206.2-6.9-.1-.3h-4.5V276h4.5a3%203%200%200%201%202.4-1.7%202.6%202.6%200%200%201%202.7%202.5%202.5%202.5%200%200%201-1.9%202.4zm-16.1%200v3.3h-1.7v-3.2a3%203%200%200%201-1.7-1.6h-4V276h4a3%203%200%200%201%202.5-1.7q2%20.1%202.5%201.7h4v1.6h-4a3%203%200%200%201-1.6%201.6m-17.8%204-1.7.4v4.3l1.7.5zm1.6%200%201.7.4v4.3l-1.7.5zm30.6%200-1.7.4v4.3l1.7.5zm1.6%200%201.7.4v4.3l-1.7.5zm-25.5.8%201.6-.7%202.9%203.3-1%201.4zm-1.3%201-1%201.4%203%203.3%201.6-.7zm18.5-1.1-1.6-.7-3%203.3%201%201.4zm1.2%201%201%201.4-3%203.3-1.5-.7zm-20.3%209%20.5-1.6h4.5l.5%201.6zm-6.7-17q0-1%201.2-1a1%201%200%200%201%201%201q0%201-1%201a1%201%200%200%201-1.2-1m12.1.8-.5%201.6H220l-.5-1.6zm0-1.6-.5-1.6H220l-.5%201.6zm15.7%2017.8-.5-1.6h-4.5l-.5%201.6zm4.4-17q.1-1%201.1-1a1%201%200%200%201%201.1%201q-.1%201-1%201a1%201%200%200%201-1.2-1m-16.1%200q.1-1%201.1-1a1%201%200%200%201%201.1%201q-.1%201-1.1%201a1%201%200%200%201-1.1-1m6.2.8.5%201.6h4.6l.5-1.6zm0-1.6.5-1.6h4.6l.5%201.6zm-5.9%205-1.7.5v4.3l1.7.5V281m1.7%200%201.6.5v4.3l-1.6.5z'/%3e%3cpath%20fill='none'%20stroke='%23c8b100'%20stroke-width='.3'%20d='M232.7%20316.3a16%2016%200%200%200%203.7-1.1l.8%201.4a18%2018%200%200%201-4.3%201.2%203%203%200%200%201-2.6%202%203%203%200%200%201-2.5-2%2018%2018%200%200%201-4.6-1.2l.8-1.4q2%20.8%204%201a3%203%200%200%201%201.5-1.3v-6.7h1.6v6.7q1.1.3%201.6%201.4zm-4.7-20.4-.2-.5h-4V294h4l.2-.4-5-5.6%201.2-1%205%205.5h.2V285h1.7v7.3h.2l4.9-5.5%201.2%201-4.9%205.5.3.6h4v1.5h-4q0%20.3-.3.5l4.7%205.3-1.3%201-4.6-5.3-.2.1v8.7h-1.6V297l-.2-.1-4.8%205.3-1.2-1%204.7-5.3m-12.8-16.7%206%206.8%201.3-1-6.1-6.7.3-.6h4.4V276h-4.4a3%203%200%200%200-2.5-1.7%202.6%202.6%200%200%200-2.6%202.5%203%203%200%200%200%201.7%202.4v5.2h1.6v-5.2zm6.5%2034.8-.8%201.4a17%2017%200%200%201-3.6-3.1q-1.4.3-2.5-.5a2.4%202.4%200%200%201-.3-3.5l.1-.1a15%2015%200%200%201-1.2-4.8h1.6a13%2013%200%200%200%201%204q.8%200%201.4.2l4.1-4.5%201.3%201-4.1%204.5q.8%201.5-.1%202.8a15%2015%200%200%200%203.1%202.6zm-8.4-13.1V297a3%203%200%200%201-1.8-2.4q.2-1.6%201.8-2.4V287h1.6v5.3q1.3.4%201.7%201.6h4.4v1.5h-4.4a3%203%200%200%201-1.6%201.6v3.9h-1.7m2.3%208.3q.7-.7%201.6%200c.9.7.5%201%20.1%201.4a1%201%200%200%201-1.6.1%201%201%200%200%201%200-1.5zm-2-4.5-1.7-.3-.3-4.3%201.7-.6v2.5q0%201.4.3%202.7zm1.4-5.3%201.6.4v2.2c0-.8.3%202.1.3%202.1l-1.7.6-.3-2.7v-2.6zm5.5%2013.7a16%2016%200%200%200%204.8%202.6l.4-1.6a14%2014%200%200%201-4-2l-1.2%201m-.8%201.4a17%2017%200%200%200%204.8%202.6l-1.2%201.1a19%2019%200%200%201-4-2l.4-1.7'/%3e%3cpath%20fill='none'%20stroke='%23c8b100'%20stroke-width='.3'%20d='m221.9%20305.1%201.6.7%203-3.3-1-1.4-3.6%204m-1.3-1-1-1.4%203-3.3%201.6.7-3.6%204m-7.6-9.5q.1-1%201-1%201.1.1%201.2%201-.1%201-1.1%201.1a1%201%200%200%201-1.1-1zm25.7%2019.4.8%201.4a17%2017%200%200%200%203.6-3.1q1.4.3%202.6-.5a2.4%202.4%200%200%200%20.2-3.5l-.1-.1a15%2015%200%200%200%201.3-4.8h-1.7a13%2013%200%200%201-1%204l-1.4.2-4.1-4.5-1.3%201%204.1%204.5a2.4%202.4%200%200%200%20.1%202.8%2015%2015%200%200%201-3%202.6zm8.4-13.1V297a3%203%200%200%200%201.8-2.4q0-1.6-1.8-2.4V287h-1.6v5.3q-1.2.4-1.7%201.6h-4.4v1.5h4.4q.5%201.2%201.7%201.6v3.9zm-2.3%208.3a1%201%200%200%200-1.6%200%201%201%200%200%200-.1%201.4%201%201%200%200%200%201.6.1%201%201%200%200%200%200-1.5zm2-4.5%201.7-.3.3-4.3-1.7-.6v2.5q0%201.4-.2%202.7zm-1.3-5.3-1.7.4v2.2c0-.8-.3%202.1-.3%202.1l1.7.6.3-2.7v-2.6m1.6-20.1v5.2h-1.6v-5.2l-.4-.2-6%206.8-1.2-1%206-7v-.2h-4.5V276h4.4a3%203%200%200%201%202.5-1.7%202.6%202.6%200%200%201%202.6%202.5%203%203%200%200%201-1.8%202.4zm-16%200v3.2h-1.7v-3.2a3%203%200%200%201-1.7-1.6h-4V276h4q.7-1.6%202.5-1.7c1.8-.1%202.2.7%202.5%201.7h4v1.6h-4a3%203%200%200%201-1.6%201.6zm8.8%2033.8a16%2016%200%200%201-4.8%202.6l-.4-1.6a14%2014%200%200%200%204-2l1.2%201m.8%201.4a17%2017%200%200%201-4.8%202.6l1.2%201.1a19%2019%200%200%200%204-2l-.4-1.7m-27.4-31.4-1.7.5v4.3l1.7.5v-5.2m1.7%200%201.6.4v4.3l-1.6.5V283m30.5%200-1.7.5v4.3l1.7.5V283'/%3e%3cpath%20fill='none'%20stroke='%23c8b100'%20stroke-width='.3'%20d='m247.1%20283.1%201.7.5v4.3l-1.7.5V283m-8.6%2022-1.6.7-2.9-3.3%201-1.4%203.5%204m1.3-1%201-1.4-3-3.3-1.6.7%203.6%204m-18.2-20%201.6-.7%203%203.3-1%201.4-3.6-4m-1.3%201-1%201.4%203%203.3%201.6-.7-3.6-4m18.5-1.1-1.6-.7-3%203.3%201%201.4%203.6-4m1.2%201%201%201.4-3%203.2-1.5-.6%203.5-4m-20.3%209%20.5-1.6h4.5l.5%201.6h-5.5m0%201.5.5%201.6h4.5l.5-1.6h-5.5M213%20277q0-1%201.2-1%201%200%201%201c0%201-.4%201-1%201a1%201%200%200%201-1.2-1zm12.1.8-.5%201.6h-4.5l-.5-1.6h5.5m0-1.6-.5-1.6h-4.5l-.5%201.6h5.5m20.1%2018.5q.1-.9%201.1-1%201%20.1%201.1%201-.1%201-1%201.1a1%201%200%200%201-1.2-1zm-4.4-.7-.5-1.6h-4.5l-.5%201.6h5.5m0%201.5-.5%201.6h-4.5l-.5-1.6h5.5m-11.6%2021.9q.1-1%201.1-1t1.1%201c.1%201-.5%201-1%201a1%201%200%200%201-1.2-1zm1.9-7.8%201.7-.4v-4.3l-1.7-.5v5.2m-1.6%200-1.7-.4v-4.3l1.7-.5v5.2m15.7-32.6q.1-1%201.1-1a1%201%200%200%201%201.1%201q-.1%201-1%201a1%201%200%200%201-1.2-1zm-16.1%200q.1-1%201.1-1a1%201%200%200%201%201.1%201q-.1%201-1%201a1%201%200%200%201-1.2-1zm6.2.8.5%201.6h4.6l.5-1.6h-5.5m0-1.6.4-1.6h4.6l.5%201.6h-5.5m-6%205-1.6.5v4.3l1.6.5V281m1.7%200%201.6.5v4.3l-1.6.5V281'/%3e%3cpath%20fill='%23058e6e'%20d='M227.7%20294.7a2.6%202.6%200%200%201%202.6-2.5%202.6%202.6%200%200%201%202.6%202.5%202.6%202.6%200%200%201-2.6%202.4c-1.4%200-2.6-1-2.6-2.4'/%3e%3cpath%20fill='%23db4446'%20d='M230.9%20229.7v-.6l.1-.3-2.3-.1a6%206%200%200%201-2.3-1.2q-1-1-1.6-1.2c-1.3-.2-2.3.4-2.3.4s1%20.4%201.7%201.3%201.5%201.3%201.8%201.4c.6.2%202.6%200%203.1.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M230.9%20229.7v-.6l.1-.3-2.3-.1a6%206%200%200%201-2.3-1.2q-1-1-1.6-1.2c-1.3-.2-2.3.4-2.3.4s1%20.4%201.7%201.3%201.5%201.3%201.8%201.4c.6.2%202.6%200%203.1.1z'/%3e%3cpath%20fill='%23ed72aa'%20stroke='%23000'%20stroke-width='.4'%20d='M238.1%20227.5v1.4c.2.6-.1%201.2%200%201.5q0%20.5.3.9l.2.9-.7-.5-.6-.4v1l.6%201.1%201%201.3c.2.5.1%201.4.1%201.4s-.4-.7-.8-.8l-1.2-.7s.7.8.7%201.5l-.3%201.6c-.1.2-.3-.7-.8-1.1l-1-.9s.4%201.2.4%202v2.3l-.9-1-1-.7c0-.2.5.6.6%201.1s.3%202.3%201.8%204.5c1%201.3%202.3%203.6%205.3%202.9s1.9-4.8%201.3-6.7a17%2017%200%200%201-1-4.6c0-.8.6-2.9.5-3.3a8%208%200%200%201%20.2-3.1l.9-2.3.4-1.3.1-1.3.7%201.3.1%201.5s.1-1%201-1.6%201.8-1.1%202-1.4l.3-.5c-.1%200%200%201.8-.6%202.6l-1.7%202s.7-.3%201.2-.3h.9s-.6.4-1.4%201.6c-.8%201-.5%201.2-1%202.1s-1%201-1.7%201.5c-1%20.8-.5%204.2-.4%204.7.2.5%202%204.5%202%205.5s.2%203.2-1.5%204.6c-1.1%201-3%201-3.4%201.2-.4.3-1.2%201.1-1.2%202.8s.6%202%201%202.4c.6.5%201.2.2%201.3.6l.5.7q.3.3.2.8c0%20.3-.8%201.1-1.1%201.7l-.8%202.4c0%20.2-.1%201%20.1%201.3%200%200%20.9%201%20.3%201.2-.4.2-.8-.2-1-.2l-.9.5q-.3-.1-.4-.8l-.1-.7q-.3%200-.4.5c0%20.2%200%20.8-.3.8l-.8-.5c-.2%200-.8-.2-.8-.4q.1-.6.7-1%20.8-.1.5-.5t-.7%200c-.3.4-.8%200-.7-.2v-.8c0-.2-.4-.5.1-.8s.8.2%201.4.1q.8%200%201-.6.3-.6-.2-1.4l-.9-.8-.3-.9v2.2l-.7-.8c-.3-.3-.6-1.3-.6-1.3v1.3l.2.8c-.1.1-.8-.7-1-.8l-1-1-.4-1.4v-1.5l.4-1h-1.4c-.7%200-1.2-.3-1.5.2q-.4.8.2%202.8.5%201.8.4%202.1l-.7.8h-.9l-1.2-.3h-1.3l-1.1-.3c-.3.1-.8.3-.6.7q.1.8-.5.7l-.9-.2q-.8%200-.8-.4t.4-.7q.3-.5%200-.5h-.6q-.3.4-.8.4-.3-.1-.4-1c-.1-.9-.7-1.2%200-1.1.5%200%201.3.4%201.4%200q.2-.4-.2-.7c-.4-.3-.8-.4-.3-.7l.7-.5c.1-.2.4-.8.7-.6.6.2%200%20.7.6%201.3s1%201%202%20.8q1.4%200%201.3-.5l-.1-1v-1s-.4.3-.5.6l-.4.8v-2l-.2-.8-.3.9-.1%201s-.7-.5-.5-1.5l.1-2c.2-.3.7-1.5%202-1.6h2.6l2-.3s-2.8-1.4-3.5-1.9a10%2010%200%200%201-2-2l-.6-1.6s-.5%200-1%20.3l-1.2%201-.7%201%20.1-1.2v-.8s-.4%201.2-1%201.7l-1.4%201v-.8l.2-1s-.4.8-1.1%201c-.7%200-1.8%200-1.9.4q.2.8%200%201.4c0%20.3-.4.5-.4.5l-.8-.4-.7.2c-.1.1-.3-.4-.2-.7s.7-.6.5-.8l-.8.2c-.3.1-.8.3-.8-.2q.2-.6%200-1%200-.4.2-.6l1.2-.1q0-.4-.8-.6-1-.2-.5-.8.3-.2.5-.6c.1-.2.2-.7.7-.5.5.3.4.8%201%201a4%204%200%200%200%202-.2l1.5-1%201.5-1-1-.8q-.5-.7-1-1l-1.8-.6-1.7-.5.8-.3q.4-.5.8-.6h.3-1.4c-.3-.1-1-.6-1.3-.6l-.8.1s.8-.4%201.4-.5l1-.1s-.9-.3-1.1-.6l-.6-1q-.2-.3-.6-.5l-1%20.3q-.6%200-.6-.6l-.1-.5c-.2-.3-.6-.8-.2-1h1.4q-.2-.4-.8-.8c-.4-.2-1-.5-.7-.8l.8-.5c.2-.3.3-1%20.7-.7.4.2.8%201.2%201.1%201.1s.3-.8.3-1c0-.4%200-1%20.2-.9l1%20.5q.8-.1%201%20.2%200%20.5-.6%201-.4.6-.3%201.4.4%201%201.2%201.4t1.7.9c.5.3%201.7%201.2%202.1%201.3l.8.4s.5-.2%201.1-.2%202.1%200%202.6-.2%201.3-.6%201-1c-.1-.6-1.3-1-1.2-1.4q0-.5%201.2-.4c.8%200%201.8.1%202-1q.5-1.4-.8-1.8c-1-.2-1.8-.2-2-1q-.4-1-.2-1.1.3-.3%201.4-.4%201.3%200%201.9-.2l.6-.9c.3-.2%201.4-.4%201.4-.4s1.4.7%202.7%201.7l2.2%202.1'/%3e%3cpath%20d='m228.1%20226.8-.2-.6v-.3s.8%200%20.7.3q0%20.2-.3.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m228.1%20226.8-.2-.6v-.3s.8%200%20.7.3q0%20.2-.3.3z'/%3e%3cpath%20d='M232%20225.4v-.4s.7%200%201%20.3c.5.4.9%201%20.9%201l-.8-.4h-.5l-.3-.1v-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M232%20225.4v-.4s.7%200%201%20.3c.5.4.9%201%20.9%201l-.8-.4h-.5l-.3-.1v-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m237.3%20231.3-.4-.7-.3-.4'/%3e%3cpath%20fill='%23db4446'%20d='M217.4%20226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1%201z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M217.4%20226.6s.5.4.8.4h.8s.2-.5.1-.8c-.2-1.2-1.2-1.4-1.2-1.4s.3.7.1%201z'/%3e%3cpath%20fill='%23db4446'%20d='M215.2%20227.6s-.4-.7-1.3-.6-1.4.8-1.4.8h1.2c.3.3.4%201%20.4%201l.7-.6z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M215.2%20227.6s-.4-.7-1.3-.6-1.4.8-1.4.8h1.2c.3.3.4%201%20.4%201l.7-.6z'/%3e%3cpath%20fill='%23db4446'%20d='M214.2%20230.6s-.8.1-1.2.6-.3%201.3-.3%201.3.4-.5.9-.5l1%20.2-.1-.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M214.2%20230.6s-.8.1-1.2.6-.3%201.3-.3%201.3.4-.5.9-.5l1%20.2-.1-.8z'/%3e%3cpath%20d='m228.2%20230.5.3-.5.3.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m228.2%20230.5.3-.5.3.5h-.7'/%3e%3cpath%20d='m229%20230.5.3-.5.4.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m229%20230.5.3-.5.4.5h-.8'/%3e%3cpath%20d='m228.6%20227.3.8.3-.7.4-.1-.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m228.6%20227.3.8.3-.7.4-.1-.6'/%3e%3cpath%20d='m229.5%20227.6.7.2-.5.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m229.5%20227.6.7.2-.5.4-.2-.6'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M224.2%20233.7s-.7.2-1%20.6q-.4.9-.3%201c.1.1.6-.5%201.5-.3l1.2.3%201.3-.3s-.7.8-.7%201.3l.2%201.1c0%20.7-.6%201.6-.6%201.6l1-.3%201.7-.8.9-1s-.2%201%200%201.4l.2%201.6.8-.6q.5-.2.9-.7l.3-1s0%20.8.4%201.3l.6%201.6s.3-.8.6-1.1l.7-1-.1-.9.4.8m-11%20.6s.5-.8%201-1l1.1-.8.9-.4m1%205%201.3-.8%201-1'/%3e%3cpath%20fill='%23db4446'%20d='M216.6%20240.4s-.4-.5-1.1-.3c-.7%200-1.2.9-1.2.9s.6-.2%201-.1.6.4.6.4l.4-.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M216.6%20240.4s-.4-.5-1.1-.3c-.7%200-1.2.9-1.2.9s.6-.2%201-.1.6.4.6.4l.4-.4z'/%3e%3cpath%20fill='%23db4446'%20d='M215.8%20243.2s-.6%200-1.1.3c-.5.4-.5%201.2-.5%201.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M215.8%20243.2s-.6%200-1.1.3c-.5.4-.5%201.2-.5%201.2s.4-.4.8-.3l.9.2v-.6c.2-.4-.1-.8-.1-.8z'/%3e%3cpath%20fill='%23db4446'%20d='M217.2%20245.8s0%20.8.3%201.3c.4.5%201.1.5%201.1.5l-.3-.7.3-.8q.1-.1-.7-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M217.2%20245.8s0%20.8.3%201.3c.4.5%201.1.5%201.1.5l-.3-.7.3-.8q.1-.1-.7-.3zm16%201.3s2%201.2%201.9%202.2c0%201-1%202.3-1%202.3'/%3e%3cpath%20fill='%23db4446'%20d='M224.2%20252.6s-.4-.6-1.1-.6-1.4.7-1.4.7.8-.1%201%20.2l.5.6.5-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M224.2%20252.6s-.4-.6-1.1-.6-1.4.7-1.4.7.8-.1%201%20.2l.5.6.5-.3z'/%3e%3cpath%20fill='%23db4446'%20d='M222.2%20255.3s-1-.1-1.4.3-.4%201.3-.4%201.3.6-.6%201-.5q.9.1%201%20.3v-.7l-.3-.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M222.2%20255.3s-1-.1-1.4.3-.4%201.3-.4%201.3.6-.6%201-.5q.9.1%201%20.3v-.7l-.3-.7z'/%3e%3cpath%20fill='%23db4446'%20d='M224%20258.1s-.3.7%200%201.1%201%20.8%201%20.8-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M224%20258.1s-.3.7%200%201.1%201%20.8%201%20.8-.3-.4-.2-.8c.1-.3.7-.8.7-.8l-1.4-.2z'/%3e%3cpath%20fill='%23db4446'%20d='M236%20259.3s-.8-.2-1.2%200c-.5.3-.8%201.4-.8%201.4s.7-.6%201.2-.5q.9.1%201%20.3v-.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M236%20259.3s-.8-.2-1.2%200c-.5.3-.8%201.4-.8%201.4s.7-.6%201.2-.5q.9.1%201%20.3v-.8z'/%3e%3cpath%20fill='%23db4446'%20d='M236.4%20262.2s-.6.6-.4%201.1l.6%201s0-.7.2-1l1-.3-.7-.5z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M236.4%20262.2s-.6.6-.4%201.1l.6%201s0-.7.2-1l1-.3-.7-.5z'/%3e%3cpath%20fill='%23db4446'%20d='M239.4%20263s-.3.8.2%201.3l1%20.5q-.2-.3-.2-1.1.3-.7.5-.7l-.8-.2-.7.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M239.4%20263s-.3.8.2%201.3l1%20.5q-.2-.3-.2-1.1.3-.7.5-.7l-.8-.2-.7.3z'/%3e%3cpath%20fill='%23ffd691'%20stroke='%23000'%20stroke-width='.5'%20d='M208.8%20316.4q3%201%203%203.8c0%202.3-2.2%204-5%204-3%200-5.3-1.7-5.3-4%200-1.7%201-3.6%203-3.8l-.2-.4-.7-.7h1.2l.8.5.5-.7.6-.5.6.6.3.5.7-.4.8-.3s0%20.4-.2.7l-.1.7'/%3e%3cpath%20fill='%23058e6e'%20stroke='%23000'%20stroke-width='.5'%20d='M206.3%20326.7s-3.8-2.6-5.5-3c-2-.4-4.5%200-5.5%200%200%200%201.2.8%201.8%201.4.5.5%202.3%201.5%203.3%201.8%203%20.8%206-.2%206-.2m1%20.2s2.4-2.5%205-2.9c3-.4%205%20.3%206.2.6l-1.5.8c-.5.3-2%201.5-4%201.6-2%200-4.4-.3-4.8-.2l-.9.1'/%3e%3cpath%20fill='%23ad1519'%20stroke='%23000'%20stroke-width='.5'%20d='M206.7%20323.8a5%205%200%200%201%200-7.1%205%205%200%200%201%201.5%203.5%205%205%200%200%201-1.5%203.6'/%3e%3cpath%20fill='%23058e6e'%20stroke='%23000'%20stroke-width='.5'%20d='M205.7%20329s.6-1.5.6-2.7l-.1-2.1h.8s.3%201.1.3%202l-.1%202.4-.7.1-.8.3'/%3e%3cpath%20fill='%23fff'%20d='M254%20190.7q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M254%20190.7q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M255.4%20188.2q.1-1%201.1-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M255.4%20188.2q.1-1%201.1-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M256.4%20185.2q.1-.9%201-1%201%20.1%201.1%201c.1.9-.5%201-1%201a1%201%200%200%201-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M256.4%20185.2q.1-.9%201-1%201%20.1%201.1%201c.1.9-.5%201-1%201a1%201%200%200%201-1.1-1z'/%3e%3cpath%20fill='%23fff'%20d='M256.5%20182q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M256.5%20182q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M255.7%20179q.1-1%201-1%201.1%200%201.2%201c.1%201-.5%201-1.1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M255.7%20179q.1-1%201-1%201.1%200%201.2%201c.1%201-.5%201-1.1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M254.1%20176.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M254.1%20176.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M252%20173.8q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M252%20173.8q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M249.4%20171.8q.1-.9%201.1-1a1%201%200%200%201%200%202q-1%200-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M249.4%20171.8q.1-.9%201.1-1a1%201%200%200%201%200%202q-1%200-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M246.5%20170.3q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M246.5%20170.3q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M243.3%20169.1q.1-.9%201.1-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M243.3%20169.1q.1-.9%201.1-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M239.9%20168.5q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M239.9%20168.5q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M236.6%20168.3q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M236.6%20168.3q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M233.3%20168.5q.1-1%201-1t1.1%201c.1%201-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M233.3%20168.5q.1-1%201-1t1.1%201c.1%201-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M230.1%20168.5q.1-1%201-1t1.1%201c.1%201-.5%201-1%201a1%201%200%200%201-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M230.1%20168.5q.1-1%201-1t1.1%201c.1%201-.5%201-1%201a1%201%200%200%201-1.1-1z'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M231.7%20171.2q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1m.6%203.1q0-1%201-1c1%200%201%20.4%201%201q0%20.9-1%201a1%201%200%200%201-1-1m0%203q.2-.9%201.1-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1m-1%202.8q.1-.9%201-1%201%20.1%201.1%201%200%201-1%201a1%201%200%200%201-1-1m-1.9%202.6q.1-.9%201-1%201.1.1%201.2%201%200%201.2-1.1%201-1%200-1-1'/%3e%3cpath%20fill='%23fff'%20d='M227.6%20166.5q.1-.9%201.1-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M227.6%20166.5q.1-.9%201.1-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M224.8%20165q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M224.8%20165q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M221.6%20164q.1-1%201-1t1.1%201q-.1.9-1%201-1-.1-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M221.6%20164q.1-1%201-1t1.1%201q-.1.9-1%201-1-.1-1.1-1z'/%3e%3cpath%20fill='%23fff'%20d='M218.3%20163.4q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M218.3%20163.4q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1.1-1z'/%3e%3cpath%20fill='%23fff'%20d='M215%20163.5q.1-1%201.1-1t1%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M215%20163.5q.1-1%201.1-1t1%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M211.7%20164q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M211.7%20164q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M208.6%20165.1q.1-.9%201-1%201%20.1%201.1%201c.1.9-.5%201-1%201a1%201%200%200%201-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M208.6%20165.1q.1-.9%201-1%201%20.1%201.1%201c.1.9-.5%201-1%201a1%201%200%200%201-1.1-1z'/%3e%3cpath%20fill='%23fff'%20d='M156%20190.7q0-.9%201-1c1-.1%201%20.5%201%201q0%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M156%20190.7q0-.9%201-1c1-.1%201%20.5%201%201q0%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M154.5%20188.2q.1-1%201-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M154.5%20188.2q.1-1%201-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M153.5%20185.2q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M153.5%20185.2q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M153.4%20182q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M153.4%20182q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M154.2%20179q.1-1%201-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M154.2%20179q.1-1%201-1t1%201c0%201-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M155.8%20176.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M155.8%20176.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M158%20173.8q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M158%20173.8q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M160.5%20171.8q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M160.5%20171.8q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M163.5%20170.3q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M163.5%20170.3q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M166.6%20169.1q.1-.9%201-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M166.6%20169.1q.1-.9%201-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M170%20168.5q.1-.9%201.1-1a1%201%200%200%201%200%202q-1%200-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M170%20168.5q.1-.9%201.1-1a1%201%200%200%201%200%202q-1%200-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M173.4%20168.3q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M173.4%20168.3q0-.9%201-1c1-.1%201%20.5%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M176.6%20168.5q.1-1%201-1t1.1%201c.1%201-.5%201-1%201a1%201%200%200%201-1.1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M176.6%20168.5q.1-1%201-1t1.1%201c.1%201-.5%201-1%201a1%201%200%200%201-1.1-1z'/%3e%3cpath%20fill='%23fff'%20d='M179.8%20168.5q.1-1%201-1%201.1%200%201.2%201c.1%201-.5%201-1.1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M179.8%20168.5q.1-1%201-1%201.1%200%201.2%201c.1%201-.5%201-1.1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20stroke='%23000'%20stroke-width='.4'%20d='M178.2%20171.2q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1m-.7%203.1q0-1%201-1c1%200%201%20.4%201%201q0%20.9-1%201a1%201%200%200%201-1-1m-.2%203q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1m.9%202.8q.1-.9%201-1%201%20.1%201.1%201-.1%201-1%201a1%201%200%200%201-1.1-1m1.8%202.6q.1-.9%201-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1'/%3e%3cpath%20fill='%23fff'%20d='M182.3%20166.5q.1-.9%201-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M182.3%20166.5q.1-.9%201-1a1%201%200%200%201%200%202%201%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M185.2%20165q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M185.2%20165q0-1%201-1c1%200%201%20.4%201%201s-.4%201-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M188.3%20164q.1-1%201-1t1.1%201q0%20.9-1%201c-1%20.1-1-.5-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M188.3%20164q.1-1%201-1t1.1%201q0%20.9-1%201c-1%20.1-1-.5-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M191.6%20163.4q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M191.6%20163.4q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M194.9%20163.5q0-1%201-1c1%200%201%20.4%201%201q0%20.9-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M194.9%20163.5q0-1%201-1c1%200%201%20.4%201%201q0%20.9-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M198.2%20164q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M198.2%20164q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23fff'%20d='M201.3%20165.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.4'%20d='M201.3%20165.1q.1-.9%201-1%201%20.1%201.1%201%200%201.2-1%201a1%201%200%200%201-1-1z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M174.7%20228.9h-1v-1h-1.5v3.6h1.6v2.5h-3.4v7h1.8v14.3h-3.5v7.3h27.2v-7.3h-3.5V241h1.8v-7h-3.4v-2.5h1.6V228h-1.6v.9h-.8v-1h-1.6v1h-1.1v-1h-1.6v3.6h1.6v2.5H184v-7.8h1.7v-3.5H184v.9h-1v-1h-1.5v1h-.9v-1H179v3.6h1.7v7.8h-3.3v-2.5h1.6V228h-1.6v.9h-.9v-1h-1.8zm-6%2033.7H196m-27.3-1.8H196m-27.3-1.8H196m-27.3-1.7H196m-27.3-2H196m-23.8-1.6h20.2m-20.2-1.8h20.2m-20.2-2h20.2m-20.2-1.7h20.2m-20.2-1.8h20.2m-20.2-1.8h20.2m-20.2-1.7h20.2m-22-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-23.8-1.8h23.8m-20.4-1.7h17m-10.2-1.8h3.4m-3.4-1.8h3.4m-3.4-1.8h3.4m-3.4-1.7h3.4m-5.1-2.2h6.8m-12%207.5h3.6m-5-2.2h6.6m-6.7%2032.6v-1.8m0-1.8v-1.7m-1.8%201.7v1.8m3.4%200V259m1.7%203.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m-1.7%207.4v-2m-3.4%202v-2m7%200v2m1.5-2v-1.6m-5.1-1.8v1.8m3.5-1.8v1.8m3.3-1.8v1.8M179%20252v-2m1.7-1.7v1.7m0-5.3v1.8m-1.7-3.6v1.8m1.7-3.5v1.7m-3.3-1.7v1.7m-3.5-1.7v1.7m-1.6-3.5v1.8m3.3-1.8v1.8m3.4-1.8v1.8m1.7-3.6v1.8m-3.3-1.8v1.8m-3.5-1.8v1.8m-1.6-3.6v1.8m6.7-1.8v1.8m-3.4-5.3v1.8m15.3-1.8h-3.5m5-2.2h-6.6m6.7%2032.6v-1.8m0-1.8v-1.7m1.8%201.7v1.8m-3.4%200V259m-1.7%203.6v-1.8m0-1.8v-1.7m0-2v-1.6m0-1.8v-2m1.7%207.4v-2m3.4%202v-2m-7%200v2m-1.5-2v-1.6m5.1-1.8v1.8m-3.5-1.8v1.8m-3.3-1.8v1.8m1.7-1.8v-2m-1.7-1.7v1.7m0-5.3v1.8m1.7-3.6v1.8m-1.7-3.5v1.7m3.3-1.7v1.7m3.5-1.7v1.7m1.6-3.5v1.8m-3.3-1.8v1.8m-3.4-1.8v1.8m-1.7-3.6v1.8m3.3-1.8v1.8m3.5-1.8v1.8m1.6-3.6v1.8m-6.7-1.8v1.8m3.4-5.3v1.8m-7%2018v-2m0-5.4v-1.8m0%205.4v-1.8m0-5.3v-1.8m0-1.8v-1.7m0-3.6v-1.8m0-1.7v-1.8m-8.3%204.6h3.5m3.3-5.3h3.4m3.3%205.3h3.5'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='M186.8%20262.6v-4.7c0-.8-.4-3.5-4.6-3.5-4%200-4.4%202.7-4.4%203.5v4.7z'/%3e%3cpath%20fill='%23c8b100'%20stroke='%23000'%20stroke-width='.4'%20d='m179.3%20258.2-2.2-.3c0-.9.2-2.2.9-2.6l2%201.5c-.3.2-.7%201-.7%201.4zm6%200%202.2-.3c0-.9-.2-2.2-.9-2.6l-2%201.5c.3.2.7%201%20.7%201.4zm-2.2-2.3%201-2-2-.4-1.7.4%201.1%202zm-4.2-5.5v-4.9c0-1.3-1-2.4-2.5-2.4s-2.4%201-2.4%202.4v4.9zm6.8%200v-4.9c0-1.3%201-2.4%202.5-2.4s2.4%201%202.4%202.4v4.9zm-1.7-12%20.4-4.4h-4.2l.2%204.4zm3.3%200-.4-4.4h4.4l-.5%204.4zm-10%200%20.2-4.4h-4.2l.5%204.4z'/%3e%3cpath%20fill='%230039f0'%20d='M185.3%20262.6v-4c0-.7-.5-2.7-3.1-2.7-2.4%200-2.9%202-2.9%202.7v4zm-6.9-12.7v-4.2c0-1-.6-2.2-2-2.2s-2%201.1-2%202.2v4.3h4zm7.8%200v-4.2c0-1%20.7-2.2%202-2.2s2%201.1%202%202.2v4.3h-4z'/%3e%3cpath%20fill='%23ad1519'%20d='M190.8%20269.8c0-9.7%207-17.6%2015.6-17.6s15.6%207.9%2015.6%2017.6-7%2017.5-15.6%2017.5-15.6-7.8-15.6-17.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.6'%20d='M190.8%20269.8c0-9.7%207-17.6%2015.6-17.6s15.6%207.9%2015.6%2017.6-7%2017.5-15.6%2017.5-15.6-7.8-15.6-17.5z'/%3e%3cpath%20fill='%23005bbf'%20d='M195.4%20269.7c0-7%205-12.8%2011-12.8s11%205.7%2011%2012.8-5%2013-11%2013-11-5.8-11-13'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.6'%20d='M195.4%20269.7c0-7%205-12.8%2011-12.8s11%205.7%2011%2012.8-5%2013-11%2013-11-5.8-11-13z'/%3e%3cpath%20fill='%23c8b100'%20d='M201.2%20260.9s-1.3%201.4-1.3%202.7a6%206%200%200%200%20.6%202.4q-.4-.8-1.4-.8-1.3.1-1.4%201.3l.2.8.5.9q.2-.5%201-.5%201.1%200%201%201v.2h-1.2v1h1l-.8%201.5%201-.4.8.9.8-.9%201%20.4-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.6%200%201%20.6l.4-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.3q-1%200-1.4.9s.6-1.2.6-2.5-1.4-2.7-1.4-2.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M201.2%20260.9s-1.3%201.4-1.3%202.7a6%206%200%200%200%20.6%202.4q-.4-.8-1.4-.8-1.3.1-1.4%201.3l.2.8.5.9q.2-.5%201-.5%201.1%200%201%201v.2h-1.2v1h1l-.8%201.5%201-.4.8.9.8-.9%201%20.4-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.6%200%201%20.6l.4-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.3q-1%200-1.4.9s.6-1.2.6-2.5-1.4-2.7-1.4-2.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M199.2%20269.9h4.1v-1h-4.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M199.2%20269.9h4.1v-1h-4.1z'/%3e%3cpath%20fill='%23c8b100'%20d='M211.4%20260.9s-1.3%201.4-1.3%202.7.6%202.4.6%202.4q-.3-.8-1.4-.8-1.3.1-1.4%201.3l.2.8.5.9q.3-.5%201-.5a1%201%200%200%201%201%201v.2h-1.2v1h1l-.8%201.5%201-.4.8.9.8-.9%201%20.4-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.7%200%201%20.6l.4-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.3q-1%200-1.4.9s.6-1.2.6-2.5-1.4-2.7-1.4-2.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M211.4%20260.9s-1.3%201.4-1.3%202.7.6%202.4.6%202.4q-.3-.8-1.4-.8-1.3.1-1.4%201.3l.2.8.5.9q.3-.5%201-.5a1%201%200%200%201%201%201v.2h-1.2v1h1l-.8%201.5%201-.4.8.9.8-.9%201%20.4-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.7%200%201%20.6l.4-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.3q-1%200-1.4.9s.6-1.2.6-2.5-1.4-2.7-1.4-2.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M209.4%20269.9h4.1v-1h-4.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M209.4%20269.9h4.1v-1h-4.1z'/%3e%3cpath%20fill='%23c8b100'%20d='M206.3%20269.6s-1.3%201.5-1.3%202.8.6%202.4.6%202.4q-.3-.8-1.4-.9-1.3.1-1.4%201.4l.2.7.5%201q.2-.6%201-.6a1%201%200%200%201%201%201v.3h-1.2v1h1l-.8%201.5%201-.4.8.9.8-1%201%20.5-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.6%200%20.9.6l.5-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.4q-1%200-1.4%201s.6-1.2.6-2.5-1.4-2.7-1.4-2.7'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-linejoin='round'%20stroke-width='.3'%20d='M206.3%20269.6s-1.3%201.5-1.3%202.8.6%202.4.6%202.4q-.3-.8-1.4-.9-1.3.1-1.4%201.4l.2.7.5%201q.2-.6%201-.6a1%201%200%200%201%201%201v.3h-1.2v1h1l-.8%201.5%201-.4.8.9.8-1%201%20.5-.7-1.5h1v-1h-1.1v-.3a1%201%200%200%201%201-1q.6%200%20.9.6l.5-1%20.2-.7a1.4%201.4%200%200%200-1.4-1.4q-1%200-1.4%201s.6-1.2.6-2.5-1.4-2.7-1.4-2.7z'/%3e%3cpath%20fill='%23c8b100'%20d='M204.3%20278.6h4.1v-1h-4.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M204.3%20278.6h4.1v-1h-4.1z'/%3e%3cpath%20fill='%23c8b100'%20d='M237.6%20223.4h-.3l-.3.4q-.4.3-.8%200l-.1-.4h-.5q-.4-.3-.1-.7v-.5h-.3l-.1.2q-.3.4-.7.2v-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1%201.2l-.3%201.2a9%209%200%200%201%202.9%201.6%209%209%200%200%201%202.2%202.3l1.2-.5c.6-.2%201.3-.2%201.3-.2l.2-.2c-.3%200-1.5.1-1.5-.4v-.2h-.2q-.3-.3%200-.7l.2-.1v-.3h-.3l-.2.1q-.4.5-.8%200l-.1-.4h-.5q-.4-.3%200-.8l.2-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M237.6%20223.4h-.3l-.3.4q-.4.3-.8%200l-.1-.4h-.5q-.4-.3-.1-.7v-.5h-.3l-.1.2q-.3.4-.7.2v-.2h-.3c-.5.2-.7-1-.7-1.2l-.2.2s.2.7.1%201.2l-.3%201.2a9%209%200%200%201%202.9%201.6%209%209%200%200%201%202.2%202.3l1.2-.5c.6-.2%201.3-.2%201.3-.2l.2-.2c-.3%200-1.5.1-1.5-.4v-.2h-.2q-.3-.3%200-.7l.2-.1v-.3h-.3l-.2.1q-.4.5-.8%200l-.1-.4h-.5q-.4-.3%200-.8l.2-.3z'/%3e%3cpath%20d='M235.4%20224h.2v.3h-.1q-.1-.1%200-.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M235.4%20224h.2v.3h-.1q-.1-.1%200-.2z'/%3e%3cpath%20d='m236.3%20224.8-.3-.2v-.2h.1l.4.3.3.2v.2h-.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='m236.3%20224.8-.3-.2v-.2h.1l.4.3.3.2v.2h-.2l-.3-.3'/%3e%3cpath%20d='m234.6%20223.7-.2-.2s-.1%200%200-.1l.3.1.3.1v.2h-.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='m234.6%20223.7-.2-.2s-.1%200%200-.1l.3.1.3.1v.2h-.1l-.3-.1'/%3e%3cpath%20d='M233.7%20223h.2v.2h-.2s-.1-.1%200-.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M233.7%20223h.2v.2h-.2s-.1-.1%200-.2z'/%3e%3cpath%20d='M237.3%20225.5v-.2h-.3l.1.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M237.3%20225.5v-.2h-.3l.1.2z'/%3e%3cpath%20d='m237.9%20226.2.2.2h.1v-.2l-.2-.2-.2-.2h-.1v.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='m237.9%20226.2.2.2h.1v-.2l-.2-.2-.2-.2h-.1v.2l.2.2'/%3e%3cpath%20d='M238.8%20227v-.3h-.3v.2h.3'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M238.8%20227v-.3h-.3v.2h.3z'/%3e%3cpath%20fill='%23c8b100'%20d='M236.2%20221.1h-.6l-.1.9v.1h.2l.7-.5-.3-.5'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M236.2%20221.1h-.6l-.1.9v.1h.2l.7-.5-.3-.5'/%3e%3cpath%20fill='%23c8b100'%20d='M234.6%20221.6v.5l.9.1h.1v-.2l-.5-.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M234.6%20221.6v.5l.9.1h.1v-.2l-.5-.7-.5.3'/%3e%3cpath%20fill='%23c8b100'%20d='m236.4%20222.6-.4.3-.6-.7v-.1h1.1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m236.4%20222.6-.4.3-.6-.7v-.1h1.1v.5'/%3e%3cpath%20fill='%23c8b100'%20d='M235.3%20222h.4v.3h-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M235.3%20222h.4v.3h-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m233.2%20221.1-.2-.7-.4-.4s.4-.2.8.1%200%20.9%200%20.9z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m233.2%20221.1-.2-.7-.4-.4s.4-.2.8.1%200%20.9%200%20.9z'/%3e%3cpath%20fill='%23c8b100'%20d='m234.2%20221.4-.4.4-.6-.6v-.2h1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m234.2%20221.4-.4.4-.6-.6v-.2h1v.4'/%3e%3cpath%20fill='%23c8b100'%20d='m233.1%20221%20.3-.1v.3q0%20.3-.2.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m233.1%20221%20.3-.1v.3q0%20.3-.2.2z'/%3e%3cpath%20fill='%23c8b100'%20d='M238.3%20222.5h-.5l-.3.7v.2h.2l.8-.4z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M238.3%20222.5h-.5l-.3.7v.2h.2l.8-.4-.2-.5'/%3e%3cpath%20fill='%23c8b100'%20d='M236.7%20222.8v.5l.8.2h.1v-.2l-.4-.7z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M236.7%20222.8v.5l.8.2h.1v-.2l-.4-.7-.5.2'/%3e%3cpath%20fill='%23c8b100'%20d='m238.4%20224-.5.2-.4-.7v-.2h.1l.9.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m238.4%20224-.5.2-.4-.7v-.2h.1l.9.2-.1.5'/%3e%3cpath%20fill='%23c8b100'%20d='M237.3%20223.2h.4v.4h-.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M237.3%20223.2h.4v.4h-.3z'/%3e%3cpath%20fill='%23c8b100'%20d='m240.2%20224.3.1.5-.8.3h-.2v-.2l.4-.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m240.2%20224.3.1.5-.8.3h-.2v-.2l.4-.8.5.2'/%3e%3cpath%20fill='%23c8b100'%20d='m240%20225.8-.5.1-.3-.8v-.1h.2l.8.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m240%20225.8-.5.1-.3-.8v-.1h.2l.8.3-.1.5'/%3e%3cpath%20fill='%23c8b100'%20d='m238.6%20224.3-.2.5.9.3h.1v-.1l-.3-.8z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m238.6%20224.3-.2.5.9.3h.1v-.1l-.3-.8-.5.1'/%3e%3cpath%20fill='%23c8b100'%20d='M239.5%20225.2v-.3h-.4v.3z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M239.5%20225.2v-.3h-.4v.3z'/%3e%3cpath%20fill='%23c8b100'%20d='M240.8%20227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M240.8%20227h.8l.5.3s.1-.4-.3-.7c-.3-.3-.8.2-.8.2z'/%3e%3cpath%20fill='%23c8b100'%20d='m240.3%20226.1-.3.5.8.5v-.1h.2l-.1-1z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='m240.3%20226.1-.3.5.8.5v-.1h.2l-.1-1-.6.1'/%3e%3cpath%20fill='%23c8b100'%20d='M241%20227s.1-.1%200-.2h-.3q-.3%200-.1.2z'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.3'%20d='M241%20227s.1-.1%200-.2h-.3q-.3%200-.1.2zm38-21.9v.6h-2.4v-.6h1v-1.3h-.7v-.5h.6v-.6h.6v.6h.6v.6h-.6v1.2h1'/%3e%3cpath%20fill='none'%20d='M134.4%20217.1v-1.2m-.4%201.2v-1.2m-.2%201.2v-1.2m-.3%201.2v-1.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M133.2%20217.1v-1.2m-.5%201.1v-1m.2%201v-1m-.7%201v-1m.2%201v-1m-.9%201v-1m.2%201v-1m.3%201v-1m-.7%201v-1m-.3.9v-.8m-.1.8v-.8m-.5.7v-.6m.2.6v-.6m-.4.5v-.5m-.2.5v-.4m-.3.3v-.3m-.3.3v-.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M129.2%20216.6v-.2'/%3e%3cpath%20fill='none'%20d='M135.7%20217v-1m-.5%201v-1m-.4%201.2V216m143%201.1V216m-.4%201.1V216m-.3%201.1V216m-.3%201.2V216'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.1'%20d='M276.6%20217.1V216m-.6%201v-1m.3%201v-1m-.8%201v-1m.3%201v-1m-.9%201v-1m.2%201v-1m.2%201v-1m-.6%201v-1m-.3.9v-.8m-.2.8v-.8m-.4.7v-.6m.2.6v-.6m-.5.6v-.6m-.2.5v-.4m-.3.4v-.4m-.2.3v-.2'/%3e%3cpath%20fill='none'%20stroke='%23000'%20stroke-width='.2'%20d='M272.6%20216.6v-.2'/%3e%3cpath%20fill='none'%20d='M279.1%20217v-1m-.6%201v-1m-.4%201.1V216'/%3e%3c/svg%3e";
|
|
74411
74566
|
const FlagRu = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='flag-icons-ru'%20viewBox='0%200%20640%20480'%3e%3cpath%20fill='%23fff'%20d='M0%200h640v160H0z'/%3e%3cpath%20fill='%230039a6'%20d='M0%20160h640v160H0z'/%3e%3cpath%20fill='%23d52b1e'%20d='M0%20320h640v160H0z'/%3e%3c/svg%3e";
|
|
74412
74567
|
const FlagUs = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20id='flag-icons-us'%20viewBox='0%200%20640%20480'%3e%3cpath%20fill='%23bd3d44'%20d='M0%200h640v480H0'/%3e%3cpath%20stroke='%23fff'%20stroke-width='37'%20d='M0%2055.3h640M0%20129h640M0%20203h640M0%20277h640M0%20351h640M0%20425h640'/%3e%3cpath%20fill='%23192f5d'%20d='M0%200h364.8v258.5H0'/%3e%3cmarker%20id='us-a'%20markerHeight='30'%20markerWidth='30'%3e%3cpath%20fill='%23fff'%20d='m14%200%209%2027L0%2010h28L5%2027z'/%3e%3c/marker%3e%3cpath%20fill='none'%20marker-mid='url(%23us-a)'%20d='m0%200%2016%2011h61%2061%2061%2061%2060L47%2037h61%2061%2060%2061L16%2063h61%2061%2061%2061%2060L47%2089h61%2061%2060%2061L16%20115h61%2061%2061%2061%2060L47%20141h61%2061%2060%2061L16%20166h61%2061%2061%2061%2060L47%20192h61%2061%2060%2061L16%20218h61%2061%2061%2061%2060z'/%3e%3c/svg%3e";
|
|
74413
|
-
const image$2 = "
|
|
74568
|
+
const image$2 = "_image_vcu25_1";
|
|
74414
74569
|
const styles$b = {
|
|
74415
74570
|
image: image$2
|
|
74416
74571
|
};
|
|
@@ -75436,6 +75591,283 @@ function _extends() {
|
|
|
75436
75591
|
return n;
|
|
75437
75592
|
}, _extends.apply(null, arguments);
|
|
75438
75593
|
}
|
|
75594
|
+
var reactIs = { exports: {} };
|
|
75595
|
+
var reactIs_production_min = {};
|
|
75596
|
+
/** @license React v16.13.1
|
|
75597
|
+
* react-is.production.min.js
|
|
75598
|
+
*
|
|
75599
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
75600
|
+
*
|
|
75601
|
+
* This source code is licensed under the MIT license found in the
|
|
75602
|
+
* LICENSE file in the root directory of this source tree.
|
|
75603
|
+
*/
|
|
75604
|
+
var hasRequiredReactIs_production_min;
|
|
75605
|
+
function requireReactIs_production_min() {
|
|
75606
|
+
if (hasRequiredReactIs_production_min) return reactIs_production_min;
|
|
75607
|
+
hasRequiredReactIs_production_min = 1;
|
|
75608
|
+
var b = "function" === typeof Symbol && Symbol.for, c = b ? Symbol.for("react.element") : 60103, d = b ? Symbol.for("react.portal") : 60106, e = b ? Symbol.for("react.fragment") : 60107, f2 = b ? Symbol.for("react.strict_mode") : 60108, g2 = b ? Symbol.for("react.profiler") : 60114, h = b ? Symbol.for("react.provider") : 60109, k2 = b ? Symbol.for("react.context") : 60110, l = b ? Symbol.for("react.async_mode") : 60111, m2 = b ? Symbol.for("react.concurrent_mode") : 60111, n = b ? Symbol.for("react.forward_ref") : 60112, p = b ? Symbol.for("react.suspense") : 60113, q2 = b ? Symbol.for("react.suspense_list") : 60120, r2 = b ? Symbol.for("react.memo") : 60115, t = b ? Symbol.for("react.lazy") : 60116, v2 = b ? Symbol.for("react.block") : 60121, w2 = b ? Symbol.for("react.fundamental") : 60117, x2 = b ? Symbol.for("react.responder") : 60118, y2 = b ? Symbol.for("react.scope") : 60119;
|
|
75609
|
+
function z2(a) {
|
|
75610
|
+
if ("object" === typeof a && null !== a) {
|
|
75611
|
+
var u = a.$$typeof;
|
|
75612
|
+
switch (u) {
|
|
75613
|
+
case c:
|
|
75614
|
+
switch (a = a.type, a) {
|
|
75615
|
+
case l:
|
|
75616
|
+
case m2:
|
|
75617
|
+
case e:
|
|
75618
|
+
case g2:
|
|
75619
|
+
case f2:
|
|
75620
|
+
case p:
|
|
75621
|
+
return a;
|
|
75622
|
+
default:
|
|
75623
|
+
switch (a = a && a.$$typeof, a) {
|
|
75624
|
+
case k2:
|
|
75625
|
+
case n:
|
|
75626
|
+
case t:
|
|
75627
|
+
case r2:
|
|
75628
|
+
case h:
|
|
75629
|
+
return a;
|
|
75630
|
+
default:
|
|
75631
|
+
return u;
|
|
75632
|
+
}
|
|
75633
|
+
}
|
|
75634
|
+
case d:
|
|
75635
|
+
return u;
|
|
75636
|
+
}
|
|
75637
|
+
}
|
|
75638
|
+
}
|
|
75639
|
+
function A2(a) {
|
|
75640
|
+
return z2(a) === m2;
|
|
75641
|
+
}
|
|
75642
|
+
reactIs_production_min.AsyncMode = l;
|
|
75643
|
+
reactIs_production_min.ConcurrentMode = m2;
|
|
75644
|
+
reactIs_production_min.ContextConsumer = k2;
|
|
75645
|
+
reactIs_production_min.ContextProvider = h;
|
|
75646
|
+
reactIs_production_min.Element = c;
|
|
75647
|
+
reactIs_production_min.ForwardRef = n;
|
|
75648
|
+
reactIs_production_min.Fragment = e;
|
|
75649
|
+
reactIs_production_min.Lazy = t;
|
|
75650
|
+
reactIs_production_min.Memo = r2;
|
|
75651
|
+
reactIs_production_min.Portal = d;
|
|
75652
|
+
reactIs_production_min.Profiler = g2;
|
|
75653
|
+
reactIs_production_min.StrictMode = f2;
|
|
75654
|
+
reactIs_production_min.Suspense = p;
|
|
75655
|
+
reactIs_production_min.isAsyncMode = function(a) {
|
|
75656
|
+
return A2(a) || z2(a) === l;
|
|
75657
|
+
};
|
|
75658
|
+
reactIs_production_min.isConcurrentMode = A2;
|
|
75659
|
+
reactIs_production_min.isContextConsumer = function(a) {
|
|
75660
|
+
return z2(a) === k2;
|
|
75661
|
+
};
|
|
75662
|
+
reactIs_production_min.isContextProvider = function(a) {
|
|
75663
|
+
return z2(a) === h;
|
|
75664
|
+
};
|
|
75665
|
+
reactIs_production_min.isElement = function(a) {
|
|
75666
|
+
return "object" === typeof a && null !== a && a.$$typeof === c;
|
|
75667
|
+
};
|
|
75668
|
+
reactIs_production_min.isForwardRef = function(a) {
|
|
75669
|
+
return z2(a) === n;
|
|
75670
|
+
};
|
|
75671
|
+
reactIs_production_min.isFragment = function(a) {
|
|
75672
|
+
return z2(a) === e;
|
|
75673
|
+
};
|
|
75674
|
+
reactIs_production_min.isLazy = function(a) {
|
|
75675
|
+
return z2(a) === t;
|
|
75676
|
+
};
|
|
75677
|
+
reactIs_production_min.isMemo = function(a) {
|
|
75678
|
+
return z2(a) === r2;
|
|
75679
|
+
};
|
|
75680
|
+
reactIs_production_min.isPortal = function(a) {
|
|
75681
|
+
return z2(a) === d;
|
|
75682
|
+
};
|
|
75683
|
+
reactIs_production_min.isProfiler = function(a) {
|
|
75684
|
+
return z2(a) === g2;
|
|
75685
|
+
};
|
|
75686
|
+
reactIs_production_min.isStrictMode = function(a) {
|
|
75687
|
+
return z2(a) === f2;
|
|
75688
|
+
};
|
|
75689
|
+
reactIs_production_min.isSuspense = function(a) {
|
|
75690
|
+
return z2(a) === p;
|
|
75691
|
+
};
|
|
75692
|
+
reactIs_production_min.isValidElementType = function(a) {
|
|
75693
|
+
return "string" === typeof a || "function" === typeof a || a === e || a === m2 || a === g2 || a === f2 || a === p || a === q2 || "object" === typeof a && null !== a && (a.$$typeof === t || a.$$typeof === r2 || a.$$typeof === h || a.$$typeof === k2 || a.$$typeof === n || a.$$typeof === w2 || a.$$typeof === x2 || a.$$typeof === y2 || a.$$typeof === v2);
|
|
75694
|
+
};
|
|
75695
|
+
reactIs_production_min.typeOf = z2;
|
|
75696
|
+
return reactIs_production_min;
|
|
75697
|
+
}
|
|
75698
|
+
var reactIs_development = {};
|
|
75699
|
+
/** @license React v16.13.1
|
|
75700
|
+
* react-is.development.js
|
|
75701
|
+
*
|
|
75702
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
75703
|
+
*
|
|
75704
|
+
* This source code is licensed under the MIT license found in the
|
|
75705
|
+
* LICENSE file in the root directory of this source tree.
|
|
75706
|
+
*/
|
|
75707
|
+
var hasRequiredReactIs_development;
|
|
75708
|
+
function requireReactIs_development() {
|
|
75709
|
+
if (hasRequiredReactIs_development) return reactIs_development;
|
|
75710
|
+
hasRequiredReactIs_development = 1;
|
|
75711
|
+
if (process.env.NODE_ENV !== "production") {
|
|
75712
|
+
(function() {
|
|
75713
|
+
var hasSymbol = typeof Symbol === "function" && Symbol.for;
|
|
75714
|
+
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
|
|
75715
|
+
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
|
|
75716
|
+
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
|
|
75717
|
+
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
|
|
75718
|
+
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
|
|
75719
|
+
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
|
|
75720
|
+
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
|
|
75721
|
+
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
|
|
75722
|
+
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
|
|
75723
|
+
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
|
|
75724
|
+
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
|
|
75725
|
+
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
|
|
75726
|
+
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
|
|
75727
|
+
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for("react.lazy") : 60116;
|
|
75728
|
+
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
|
|
75729
|
+
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
|
|
75730
|
+
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
|
|
75731
|
+
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
|
|
75732
|
+
function isValidElementType(type2) {
|
|
75733
|
+
return typeof type2 === "string" || typeof type2 === "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
75734
|
+
type2 === REACT_FRAGMENT_TYPE || type2 === REACT_CONCURRENT_MODE_TYPE || type2 === REACT_PROFILER_TYPE || type2 === REACT_STRICT_MODE_TYPE || type2 === REACT_SUSPENSE_TYPE || type2 === REACT_SUSPENSE_LIST_TYPE || typeof type2 === "object" && type2 !== null && (type2.$$typeof === REACT_LAZY_TYPE || type2.$$typeof === REACT_MEMO_TYPE || type2.$$typeof === REACT_PROVIDER_TYPE || type2.$$typeof === REACT_CONTEXT_TYPE || type2.$$typeof === REACT_FORWARD_REF_TYPE || type2.$$typeof === REACT_FUNDAMENTAL_TYPE || type2.$$typeof === REACT_RESPONDER_TYPE || type2.$$typeof === REACT_SCOPE_TYPE || type2.$$typeof === REACT_BLOCK_TYPE);
|
|
75735
|
+
}
|
|
75736
|
+
function typeOf(object) {
|
|
75737
|
+
if (typeof object === "object" && object !== null) {
|
|
75738
|
+
var $$typeof = object.$$typeof;
|
|
75739
|
+
switch ($$typeof) {
|
|
75740
|
+
case REACT_ELEMENT_TYPE:
|
|
75741
|
+
var type2 = object.type;
|
|
75742
|
+
switch (type2) {
|
|
75743
|
+
case REACT_ASYNC_MODE_TYPE:
|
|
75744
|
+
case REACT_CONCURRENT_MODE_TYPE:
|
|
75745
|
+
case REACT_FRAGMENT_TYPE:
|
|
75746
|
+
case REACT_PROFILER_TYPE:
|
|
75747
|
+
case REACT_STRICT_MODE_TYPE:
|
|
75748
|
+
case REACT_SUSPENSE_TYPE:
|
|
75749
|
+
return type2;
|
|
75750
|
+
default:
|
|
75751
|
+
var $$typeofType = type2 && type2.$$typeof;
|
|
75752
|
+
switch ($$typeofType) {
|
|
75753
|
+
case REACT_CONTEXT_TYPE:
|
|
75754
|
+
case REACT_FORWARD_REF_TYPE:
|
|
75755
|
+
case REACT_LAZY_TYPE:
|
|
75756
|
+
case REACT_MEMO_TYPE:
|
|
75757
|
+
case REACT_PROVIDER_TYPE:
|
|
75758
|
+
return $$typeofType;
|
|
75759
|
+
default:
|
|
75760
|
+
return $$typeof;
|
|
75761
|
+
}
|
|
75762
|
+
}
|
|
75763
|
+
case REACT_PORTAL_TYPE:
|
|
75764
|
+
return $$typeof;
|
|
75765
|
+
}
|
|
75766
|
+
}
|
|
75767
|
+
return void 0;
|
|
75768
|
+
}
|
|
75769
|
+
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
|
75770
|
+
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
|
75771
|
+
var ContextConsumer = REACT_CONTEXT_TYPE;
|
|
75772
|
+
var ContextProvider = REACT_PROVIDER_TYPE;
|
|
75773
|
+
var Element2 = REACT_ELEMENT_TYPE;
|
|
75774
|
+
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
|
75775
|
+
var Fragment2 = REACT_FRAGMENT_TYPE;
|
|
75776
|
+
var Lazy = REACT_LAZY_TYPE;
|
|
75777
|
+
var Memo = REACT_MEMO_TYPE;
|
|
75778
|
+
var Portal = REACT_PORTAL_TYPE;
|
|
75779
|
+
var Profiler = REACT_PROFILER_TYPE;
|
|
75780
|
+
var StrictMode = REACT_STRICT_MODE_TYPE;
|
|
75781
|
+
var Suspense2 = REACT_SUSPENSE_TYPE;
|
|
75782
|
+
var hasWarnedAboutDeprecatedIsAsyncMode = false;
|
|
75783
|
+
function isAsyncMode(object) {
|
|
75784
|
+
{
|
|
75785
|
+
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
|
75786
|
+
hasWarnedAboutDeprecatedIsAsyncMode = true;
|
|
75787
|
+
console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
|
|
75788
|
+
}
|
|
75789
|
+
}
|
|
75790
|
+
return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
|
|
75791
|
+
}
|
|
75792
|
+
function isConcurrentMode(object) {
|
|
75793
|
+
return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
|
|
75794
|
+
}
|
|
75795
|
+
function isContextConsumer(object) {
|
|
75796
|
+
return typeOf(object) === REACT_CONTEXT_TYPE;
|
|
75797
|
+
}
|
|
75798
|
+
function isContextProvider(object) {
|
|
75799
|
+
return typeOf(object) === REACT_PROVIDER_TYPE;
|
|
75800
|
+
}
|
|
75801
|
+
function isElement(object) {
|
|
75802
|
+
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
75803
|
+
}
|
|
75804
|
+
function isForwardRef(object) {
|
|
75805
|
+
return typeOf(object) === REACT_FORWARD_REF_TYPE;
|
|
75806
|
+
}
|
|
75807
|
+
function isFragment2(object) {
|
|
75808
|
+
return typeOf(object) === REACT_FRAGMENT_TYPE;
|
|
75809
|
+
}
|
|
75810
|
+
function isLazy(object) {
|
|
75811
|
+
return typeOf(object) === REACT_LAZY_TYPE;
|
|
75812
|
+
}
|
|
75813
|
+
function isMemo(object) {
|
|
75814
|
+
return typeOf(object) === REACT_MEMO_TYPE;
|
|
75815
|
+
}
|
|
75816
|
+
function isPortal(object) {
|
|
75817
|
+
return typeOf(object) === REACT_PORTAL_TYPE;
|
|
75818
|
+
}
|
|
75819
|
+
function isProfiler(object) {
|
|
75820
|
+
return typeOf(object) === REACT_PROFILER_TYPE;
|
|
75821
|
+
}
|
|
75822
|
+
function isStrictMode(object) {
|
|
75823
|
+
return typeOf(object) === REACT_STRICT_MODE_TYPE;
|
|
75824
|
+
}
|
|
75825
|
+
function isSuspense(object) {
|
|
75826
|
+
return typeOf(object) === REACT_SUSPENSE_TYPE;
|
|
75827
|
+
}
|
|
75828
|
+
reactIs_development.AsyncMode = AsyncMode;
|
|
75829
|
+
reactIs_development.ConcurrentMode = ConcurrentMode;
|
|
75830
|
+
reactIs_development.ContextConsumer = ContextConsumer;
|
|
75831
|
+
reactIs_development.ContextProvider = ContextProvider;
|
|
75832
|
+
reactIs_development.Element = Element2;
|
|
75833
|
+
reactIs_development.ForwardRef = ForwardRef;
|
|
75834
|
+
reactIs_development.Fragment = Fragment2;
|
|
75835
|
+
reactIs_development.Lazy = Lazy;
|
|
75836
|
+
reactIs_development.Memo = Memo;
|
|
75837
|
+
reactIs_development.Portal = Portal;
|
|
75838
|
+
reactIs_development.Profiler = Profiler;
|
|
75839
|
+
reactIs_development.StrictMode = StrictMode;
|
|
75840
|
+
reactIs_development.Suspense = Suspense2;
|
|
75841
|
+
reactIs_development.isAsyncMode = isAsyncMode;
|
|
75842
|
+
reactIs_development.isConcurrentMode = isConcurrentMode;
|
|
75843
|
+
reactIs_development.isContextConsumer = isContextConsumer;
|
|
75844
|
+
reactIs_development.isContextProvider = isContextProvider;
|
|
75845
|
+
reactIs_development.isElement = isElement;
|
|
75846
|
+
reactIs_development.isForwardRef = isForwardRef;
|
|
75847
|
+
reactIs_development.isFragment = isFragment2;
|
|
75848
|
+
reactIs_development.isLazy = isLazy;
|
|
75849
|
+
reactIs_development.isMemo = isMemo;
|
|
75850
|
+
reactIs_development.isPortal = isPortal;
|
|
75851
|
+
reactIs_development.isProfiler = isProfiler;
|
|
75852
|
+
reactIs_development.isStrictMode = isStrictMode;
|
|
75853
|
+
reactIs_development.isSuspense = isSuspense;
|
|
75854
|
+
reactIs_development.isValidElementType = isValidElementType;
|
|
75855
|
+
reactIs_development.typeOf = typeOf;
|
|
75856
|
+
})();
|
|
75857
|
+
}
|
|
75858
|
+
return reactIs_development;
|
|
75859
|
+
}
|
|
75860
|
+
var hasRequiredReactIs;
|
|
75861
|
+
function requireReactIs() {
|
|
75862
|
+
if (hasRequiredReactIs) return reactIs.exports;
|
|
75863
|
+
hasRequiredReactIs = 1;
|
|
75864
|
+
if (process.env.NODE_ENV === "production") {
|
|
75865
|
+
reactIs.exports = requireReactIs_production_min();
|
|
75866
|
+
} else {
|
|
75867
|
+
reactIs.exports = requireReactIs_development();
|
|
75868
|
+
}
|
|
75869
|
+
return reactIs.exports;
|
|
75870
|
+
}
|
|
75439
75871
|
var hoistNonReactStatics_cjs;
|
|
75440
75872
|
var hasRequiredHoistNonReactStatics_cjs;
|
|
75441
75873
|
function requireHoistNonReactStatics_cjs() {
|
|
@@ -77442,7 +77874,7 @@ const Container$3 = styled.div`
|
|
|
77442
77874
|
function memo(getDeps, fn, opts) {
|
|
77443
77875
|
let deps = opts.initialDeps ?? [];
|
|
77444
77876
|
let result;
|
|
77445
|
-
|
|
77877
|
+
function memoizedFunction() {
|
|
77446
77878
|
var _a, _b, _c, _d;
|
|
77447
77879
|
let depTime;
|
|
77448
77880
|
if (opts.key && ((_a = opts.debug) == null ? void 0 : _a.call(opts))) depTime = Date.now();
|
|
@@ -77480,7 +77912,11 @@ function memo(getDeps, fn, opts) {
|
|
|
77480
77912
|
}
|
|
77481
77913
|
(_d = opts == null ? void 0 : opts.onChange) == null ? void 0 : _d.call(opts, result);
|
|
77482
77914
|
return result;
|
|
77915
|
+
}
|
|
77916
|
+
memoizedFunction.updateDeps = (newDeps) => {
|
|
77917
|
+
deps = newDeps;
|
|
77483
77918
|
};
|
|
77919
|
+
return memoizedFunction;
|
|
77484
77920
|
}
|
|
77485
77921
|
function notUndefined(value, msg) {
|
|
77486
77922
|
if (value === void 0) {
|
|
@@ -77489,7 +77925,7 @@ function notUndefined(value, msg) {
|
|
|
77489
77925
|
return value;
|
|
77490
77926
|
}
|
|
77491
77927
|
}
|
|
77492
|
-
const approxEqual = (a, b) => Math.abs(a - b) < 1;
|
|
77928
|
+
const approxEqual = (a, b) => Math.abs(a - b) < 1.01;
|
|
77493
77929
|
const debounce = (targetWindow, fn, ms) => {
|
|
77494
77930
|
let timeoutId;
|
|
77495
77931
|
return function(...args) {
|
|
@@ -77497,6 +77933,10 @@ const debounce = (targetWindow, fn, ms) => {
|
|
|
77497
77933
|
timeoutId = targetWindow.setTimeout(() => fn.apply(this, args), ms);
|
|
77498
77934
|
};
|
|
77499
77935
|
};
|
|
77936
|
+
const getRect = (element) => {
|
|
77937
|
+
const { offsetWidth, offsetHeight } = element;
|
|
77938
|
+
return { width: offsetWidth, height: offsetHeight };
|
|
77939
|
+
};
|
|
77500
77940
|
const defaultKeyExtractor = (index2) => index2;
|
|
77501
77941
|
const defaultRangeExtractor = (range) => {
|
|
77502
77942
|
const start = Math.max(range.startIndex - range.overscan, 0);
|
|
@@ -77520,21 +77960,24 @@ const observeElementRect = (instance, cb) => {
|
|
|
77520
77960
|
const { width, height } = rect;
|
|
77521
77961
|
cb({ width: Math.round(width), height: Math.round(height) });
|
|
77522
77962
|
};
|
|
77523
|
-
handler(element
|
|
77963
|
+
handler(getRect(element));
|
|
77524
77964
|
if (!targetWindow.ResizeObserver) {
|
|
77525
77965
|
return () => {
|
|
77526
77966
|
};
|
|
77527
77967
|
}
|
|
77528
77968
|
const observer = new targetWindow.ResizeObserver((entries) => {
|
|
77529
|
-
const
|
|
77530
|
-
|
|
77531
|
-
|
|
77532
|
-
|
|
77533
|
-
|
|
77534
|
-
|
|
77969
|
+
const run2 = () => {
|
|
77970
|
+
const entry = entries[0];
|
|
77971
|
+
if (entry == null ? void 0 : entry.borderBoxSize) {
|
|
77972
|
+
const box = entry.borderBoxSize[0];
|
|
77973
|
+
if (box) {
|
|
77974
|
+
handler({ width: box.inlineSize, height: box.blockSize });
|
|
77975
|
+
return;
|
|
77976
|
+
}
|
|
77535
77977
|
}
|
|
77536
|
-
|
|
77537
|
-
|
|
77978
|
+
handler(getRect(element));
|
|
77979
|
+
};
|
|
77980
|
+
instance.options.useAnimationFrameWithResizeObserver ? requestAnimationFrame(run2) : run2();
|
|
77538
77981
|
});
|
|
77539
77982
|
observer.observe(element, { box: "border-box" });
|
|
77540
77983
|
return () => {
|
|
@@ -77572,10 +78015,15 @@ const observeElementOffset = (instance, cb) => {
|
|
|
77572
78015
|
const endHandler = createHandler(false);
|
|
77573
78016
|
endHandler();
|
|
77574
78017
|
element.addEventListener("scroll", handler, addEventListenerOptions);
|
|
77575
|
-
|
|
78018
|
+
const registerScrollendEvent = instance.options.useScrollendEvent && supportsScrollend;
|
|
78019
|
+
if (registerScrollendEvent) {
|
|
78020
|
+
element.addEventListener("scrollend", endHandler, addEventListenerOptions);
|
|
78021
|
+
}
|
|
77576
78022
|
return () => {
|
|
77577
78023
|
element.removeEventListener("scroll", handler);
|
|
77578
|
-
|
|
78024
|
+
if (registerScrollendEvent) {
|
|
78025
|
+
element.removeEventListener("scrollend", endHandler);
|
|
78026
|
+
}
|
|
77579
78027
|
};
|
|
77580
78028
|
};
|
|
77581
78029
|
const measureElement = (element, entry, instance) => {
|
|
@@ -77588,9 +78036,7 @@ const measureElement = (element, entry, instance) => {
|
|
|
77588
78036
|
return size;
|
|
77589
78037
|
}
|
|
77590
78038
|
}
|
|
77591
|
-
return
|
|
77592
|
-
element.getBoundingClientRect()[instance.options.horizontal ? "width" : "height"]
|
|
77593
|
-
);
|
|
78039
|
+
return element[instance.options.horizontal ? "offsetWidth" : "offsetHeight"];
|
|
77594
78040
|
};
|
|
77595
78041
|
const elementScroll = (offset2, {
|
|
77596
78042
|
adjustments = 0,
|
|
@@ -77609,7 +78055,6 @@ class Virtualizer {
|
|
|
77609
78055
|
this.scrollElement = null;
|
|
77610
78056
|
this.targetWindow = null;
|
|
77611
78057
|
this.isScrolling = false;
|
|
77612
|
-
this.scrollToIndexTimeoutId = null;
|
|
77613
78058
|
this.measurementsCache = [];
|
|
77614
78059
|
this.itemSizeCache = /* @__PURE__ */ new Map();
|
|
77615
78060
|
this.pendingMeasuredCacheIndexes = [];
|
|
@@ -77629,7 +78074,10 @@ class Virtualizer {
|
|
|
77629
78074
|
}
|
|
77630
78075
|
return _ro = new this.targetWindow.ResizeObserver((entries) => {
|
|
77631
78076
|
entries.forEach((entry) => {
|
|
77632
|
-
|
|
78077
|
+
const run2 = () => {
|
|
78078
|
+
this._measureElement(entry.target, entry);
|
|
78079
|
+
};
|
|
78080
|
+
this.options.useAnimationFrameWithResizeObserver ? requestAnimationFrame(run2) : run2();
|
|
77633
78081
|
});
|
|
77634
78082
|
});
|
|
77635
78083
|
};
|
|
@@ -77677,7 +78125,8 @@ class Virtualizer {
|
|
|
77677
78125
|
isScrollingResetDelay: 150,
|
|
77678
78126
|
enabled: true,
|
|
77679
78127
|
isRtl: false,
|
|
77680
|
-
useScrollendEvent:
|
|
78128
|
+
useScrollendEvent: false,
|
|
78129
|
+
useAnimationFrameWithResizeObserver: false,
|
|
77681
78130
|
...opts2
|
|
77682
78131
|
};
|
|
77683
78132
|
};
|
|
@@ -77866,12 +78315,18 @@ class Virtualizer {
|
|
|
77866
78315
|
}
|
|
77867
78316
|
);
|
|
77868
78317
|
this.calculateRange = memo(
|
|
77869
|
-
() => [
|
|
77870
|
-
|
|
78318
|
+
() => [
|
|
78319
|
+
this.getMeasurements(),
|
|
78320
|
+
this.getSize(),
|
|
78321
|
+
this.getScrollOffset(),
|
|
78322
|
+
this.options.lanes
|
|
78323
|
+
],
|
|
78324
|
+
(measurements, outerSize, scrollOffset, lanes) => {
|
|
77871
78325
|
return this.range = measurements.length > 0 && outerSize > 0 ? calculateRange({
|
|
77872
78326
|
measurements,
|
|
77873
78327
|
outerSize,
|
|
77874
|
-
scrollOffset
|
|
78328
|
+
scrollOffset,
|
|
78329
|
+
lanes
|
|
77875
78330
|
}) : null;
|
|
77876
78331
|
},
|
|
77877
78332
|
{
|
|
@@ -77879,23 +78334,34 @@ class Virtualizer {
|
|
|
77879
78334
|
debug: () => this.options.debug
|
|
77880
78335
|
}
|
|
77881
78336
|
);
|
|
77882
|
-
this.
|
|
77883
|
-
() =>
|
|
77884
|
-
|
|
77885
|
-
|
|
77886
|
-
this.
|
|
77887
|
-
|
|
77888
|
-
|
|
77889
|
-
|
|
77890
|
-
|
|
77891
|
-
|
|
77892
|
-
|
|
78337
|
+
this.getVirtualIndexes = memo(
|
|
78338
|
+
() => {
|
|
78339
|
+
let startIndex = null;
|
|
78340
|
+
let endIndex = null;
|
|
78341
|
+
const range = this.calculateRange();
|
|
78342
|
+
if (range) {
|
|
78343
|
+
startIndex = range.startIndex;
|
|
78344
|
+
endIndex = range.endIndex;
|
|
78345
|
+
}
|
|
78346
|
+
this.maybeNotify.updateDeps([this.isScrolling, startIndex, endIndex]);
|
|
78347
|
+
return [
|
|
78348
|
+
this.options.rangeExtractor,
|
|
78349
|
+
this.options.overscan,
|
|
78350
|
+
this.options.count,
|
|
78351
|
+
startIndex,
|
|
78352
|
+
endIndex
|
|
78353
|
+
];
|
|
78354
|
+
},
|
|
78355
|
+
(rangeExtractor, overscan, count, startIndex, endIndex) => {
|
|
78356
|
+
return startIndex === null || endIndex === null ? [] : rangeExtractor({
|
|
78357
|
+
startIndex,
|
|
78358
|
+
endIndex,
|
|
77893
78359
|
overscan,
|
|
77894
78360
|
count
|
|
77895
78361
|
});
|
|
77896
78362
|
},
|
|
77897
78363
|
{
|
|
77898
|
-
key: process.env.NODE_ENV !== "production" && "
|
|
78364
|
+
key: process.env.NODE_ENV !== "production" && "getVirtualIndexes",
|
|
77899
78365
|
debug: () => this.options.debug
|
|
77900
78366
|
}
|
|
77901
78367
|
);
|
|
@@ -77964,7 +78430,7 @@ class Virtualizer {
|
|
|
77964
78430
|
this._measureElement(node2, void 0);
|
|
77965
78431
|
};
|
|
77966
78432
|
this.getVirtualItems = memo(
|
|
77967
|
-
() => [this.
|
|
78433
|
+
() => [this.getVirtualIndexes(), this.getMeasurements()],
|
|
77968
78434
|
(indexes, measurements) => {
|
|
77969
78435
|
const virtualItems = [];
|
|
77970
78436
|
for (let k2 = 0, len = indexes.length; k2 < len; k2++) {
|
|
@@ -77993,20 +78459,18 @@ class Virtualizer {
|
|
|
77993
78459
|
)]
|
|
77994
78460
|
);
|
|
77995
78461
|
};
|
|
77996
|
-
this.getOffsetForAlignment = (toOffset, align) => {
|
|
78462
|
+
this.getOffsetForAlignment = (toOffset, align, itemSize = 0) => {
|
|
77997
78463
|
const size = this.getSize();
|
|
77998
78464
|
const scrollOffset = this.getScrollOffset();
|
|
77999
78465
|
if (align === "auto") {
|
|
78000
|
-
|
|
78001
|
-
align = "end";
|
|
78002
|
-
}
|
|
78466
|
+
align = toOffset >= scrollOffset + size ? "end" : "start";
|
|
78003
78467
|
}
|
|
78004
|
-
if (align === "
|
|
78468
|
+
if (align === "center") {
|
|
78469
|
+
toOffset += (itemSize - size) / 2;
|
|
78470
|
+
} else if (align === "end") {
|
|
78005
78471
|
toOffset -= size;
|
|
78006
78472
|
}
|
|
78007
|
-
const
|
|
78008
|
-
const scrollSize = this.scrollElement ? "document" in this.scrollElement ? this.scrollElement.document.documentElement[scrollSizeProp] : this.scrollElement[scrollSizeProp] : 0;
|
|
78009
|
-
const maxOffset = scrollSize - size;
|
|
78473
|
+
const maxOffset = this.getTotalSize() + this.options.scrollMargin - size;
|
|
78010
78474
|
return Math.max(Math.min(maxOffset, toOffset), 0);
|
|
78011
78475
|
};
|
|
78012
78476
|
this.getOffsetForIndex = (index2, align = "auto") => {
|
|
@@ -78026,37 +78490,14 @@ class Virtualizer {
|
|
|
78026
78490
|
return [scrollOffset, align];
|
|
78027
78491
|
}
|
|
78028
78492
|
}
|
|
78029
|
-
const
|
|
78030
|
-
|
|
78031
|
-
|
|
78032
|
-
|
|
78033
|
-
|
|
78034
|
-
return [
|
|
78035
|
-
this.getOffsetForAlignment(
|
|
78036
|
-
item2.end + this.options.scrollPaddingEnd,
|
|
78037
|
-
align
|
|
78038
|
-
),
|
|
78039
|
-
align
|
|
78040
|
-
];
|
|
78041
|
-
default:
|
|
78042
|
-
return [
|
|
78043
|
-
this.getOffsetForAlignment(
|
|
78044
|
-
item2.start - this.options.scrollPaddingStart,
|
|
78045
|
-
align
|
|
78046
|
-
),
|
|
78047
|
-
align
|
|
78048
|
-
];
|
|
78049
|
-
}
|
|
78493
|
+
const toOffset = align === "end" ? item2.end + this.options.scrollPaddingEnd : item2.start - this.options.scrollPaddingStart;
|
|
78494
|
+
return [
|
|
78495
|
+
this.getOffsetForAlignment(toOffset, align, item2.size),
|
|
78496
|
+
align
|
|
78497
|
+
];
|
|
78050
78498
|
};
|
|
78051
78499
|
this.isDynamicMode = () => this.elementsCache.size > 0;
|
|
78052
|
-
this.cancelScrollToIndex = () => {
|
|
78053
|
-
if (this.scrollToIndexTimeoutId !== null && this.targetWindow) {
|
|
78054
|
-
this.targetWindow.clearTimeout(this.scrollToIndexTimeoutId);
|
|
78055
|
-
this.scrollToIndexTimeoutId = null;
|
|
78056
|
-
}
|
|
78057
|
-
};
|
|
78058
78500
|
this.scrollToOffset = (toOffset, { align = "start", behavior } = {}) => {
|
|
78059
|
-
this.cancelScrollToIndex();
|
|
78060
78501
|
if (behavior === "smooth" && this.isDynamicMode()) {
|
|
78061
78502
|
console.warn(
|
|
78062
78503
|
"The `smooth` scroll behavior is not fully supported with dynamic size."
|
|
@@ -78068,38 +78509,52 @@ class Virtualizer {
|
|
|
78068
78509
|
});
|
|
78069
78510
|
};
|
|
78070
78511
|
this.scrollToIndex = (index2, { align: initialAlign = "auto", behavior } = {}) => {
|
|
78071
|
-
index2 = Math.max(0, Math.min(index2, this.options.count - 1));
|
|
78072
|
-
this.cancelScrollToIndex();
|
|
78073
78512
|
if (behavior === "smooth" && this.isDynamicMode()) {
|
|
78074
78513
|
console.warn(
|
|
78075
78514
|
"The `smooth` scroll behavior is not fully supported with dynamic size."
|
|
78076
78515
|
);
|
|
78077
78516
|
}
|
|
78078
|
-
|
|
78079
|
-
|
|
78080
|
-
const
|
|
78081
|
-
|
|
78082
|
-
|
|
78083
|
-
|
|
78084
|
-
|
|
78085
|
-
|
|
78086
|
-
|
|
78087
|
-
|
|
78088
|
-
|
|
78089
|
-
|
|
78090
|
-
|
|
78091
|
-
|
|
78092
|
-
|
|
78093
|
-
|
|
78094
|
-
|
|
78095
|
-
|
|
78096
|
-
|
|
78517
|
+
index2 = Math.max(0, Math.min(index2, this.options.count - 1));
|
|
78518
|
+
let attempts = 0;
|
|
78519
|
+
const maxAttempts = 10;
|
|
78520
|
+
const tryScroll = (currentAlign) => {
|
|
78521
|
+
if (!this.targetWindow) return;
|
|
78522
|
+
const offsetInfo = this.getOffsetForIndex(index2, currentAlign);
|
|
78523
|
+
if (!offsetInfo) {
|
|
78524
|
+
console.warn("Failed to get offset for index:", index2);
|
|
78525
|
+
return;
|
|
78526
|
+
}
|
|
78527
|
+
const [offset2, align] = offsetInfo;
|
|
78528
|
+
this._scrollToOffset(offset2, { adjustments: void 0, behavior });
|
|
78529
|
+
this.targetWindow.requestAnimationFrame(() => {
|
|
78530
|
+
const currentOffset = this.getScrollOffset();
|
|
78531
|
+
const afterInfo = this.getOffsetForIndex(index2, align);
|
|
78532
|
+
if (!afterInfo) {
|
|
78533
|
+
console.warn("Failed to get offset for index:", index2);
|
|
78534
|
+
return;
|
|
78535
|
+
}
|
|
78536
|
+
if (!approxEqual(afterInfo[0], currentOffset)) {
|
|
78537
|
+
scheduleRetry(align);
|
|
78097
78538
|
}
|
|
78098
78539
|
});
|
|
78099
|
-
}
|
|
78540
|
+
};
|
|
78541
|
+
const scheduleRetry = (align) => {
|
|
78542
|
+
if (!this.targetWindow) return;
|
|
78543
|
+
attempts++;
|
|
78544
|
+
if (attempts < maxAttempts) {
|
|
78545
|
+
if (process.env.NODE_ENV !== "production" && this.options.debug) {
|
|
78546
|
+
console.info("Schedule retry", attempts, maxAttempts);
|
|
78547
|
+
}
|
|
78548
|
+
this.targetWindow.requestAnimationFrame(() => tryScroll(align));
|
|
78549
|
+
} else {
|
|
78550
|
+
console.warn(
|
|
78551
|
+
`Failed to scroll to index ${index2} after ${maxAttempts} attempts.`
|
|
78552
|
+
);
|
|
78553
|
+
}
|
|
78554
|
+
};
|
|
78555
|
+
tryScroll(initialAlign);
|
|
78100
78556
|
};
|
|
78101
78557
|
this.scrollBy = (delta, { behavior } = {}) => {
|
|
78102
|
-
this.cancelScrollToIndex();
|
|
78103
78558
|
if (behavior === "smooth" && this.isDynamicMode()) {
|
|
78104
78559
|
console.warn(
|
|
78105
78560
|
"The `smooth` scroll behavior is not fully supported with dynamic size."
|
|
@@ -78116,10 +78571,19 @@ class Virtualizer {
|
|
|
78116
78571
|
let end;
|
|
78117
78572
|
if (measurements.length === 0) {
|
|
78118
78573
|
end = this.options.paddingStart;
|
|
78574
|
+
} else if (this.options.lanes === 1) {
|
|
78575
|
+
end = ((_a = measurements[measurements.length - 1]) == null ? void 0 : _a.end) ?? 0;
|
|
78119
78576
|
} else {
|
|
78120
|
-
|
|
78121
|
-
|
|
78122
|
-
)
|
|
78577
|
+
const endByLane = Array(this.options.lanes).fill(null);
|
|
78578
|
+
let endIndex = measurements.length - 1;
|
|
78579
|
+
while (endIndex >= 0 && endByLane.some((val) => val === null)) {
|
|
78580
|
+
const item2 = measurements[endIndex];
|
|
78581
|
+
if (endByLane[item2.lane] === null) {
|
|
78582
|
+
endByLane[item2.lane] = item2.end;
|
|
78583
|
+
}
|
|
78584
|
+
endIndex--;
|
|
78585
|
+
}
|
|
78586
|
+
end = Math.max(...endByLane.filter((val) => val !== null));
|
|
78123
78587
|
}
|
|
78124
78588
|
return Math.max(
|
|
78125
78589
|
end - this.options.scrollMargin + this.options.paddingEnd,
|
|
@@ -78160,14 +78624,43 @@ const findNearestBinarySearch = (low, high, getCurrentValue, value) => {
|
|
|
78160
78624
|
function calculateRange({
|
|
78161
78625
|
measurements,
|
|
78162
78626
|
outerSize,
|
|
78163
|
-
scrollOffset
|
|
78627
|
+
scrollOffset,
|
|
78628
|
+
lanes
|
|
78164
78629
|
}) {
|
|
78165
|
-
const
|
|
78630
|
+
const lastIndex = measurements.length - 1;
|
|
78166
78631
|
const getOffset = (index2) => measurements[index2].start;
|
|
78167
|
-
|
|
78632
|
+
if (measurements.length <= lanes) {
|
|
78633
|
+
return {
|
|
78634
|
+
startIndex: 0,
|
|
78635
|
+
endIndex: lastIndex
|
|
78636
|
+
};
|
|
78637
|
+
}
|
|
78638
|
+
let startIndex = findNearestBinarySearch(
|
|
78639
|
+
0,
|
|
78640
|
+
lastIndex,
|
|
78641
|
+
getOffset,
|
|
78642
|
+
scrollOffset
|
|
78643
|
+
);
|
|
78168
78644
|
let endIndex = startIndex;
|
|
78169
|
-
|
|
78170
|
-
endIndex
|
|
78645
|
+
if (lanes === 1) {
|
|
78646
|
+
while (endIndex < lastIndex && measurements[endIndex].end < scrollOffset + outerSize) {
|
|
78647
|
+
endIndex++;
|
|
78648
|
+
}
|
|
78649
|
+
} else if (lanes > 1) {
|
|
78650
|
+
const endPerLane = Array(lanes).fill(0);
|
|
78651
|
+
while (endIndex < lastIndex && endPerLane.some((pos) => pos < scrollOffset + outerSize)) {
|
|
78652
|
+
const item2 = measurements[endIndex];
|
|
78653
|
+
endPerLane[item2.lane] = item2.end;
|
|
78654
|
+
endIndex++;
|
|
78655
|
+
}
|
|
78656
|
+
const startPerLane = Array(lanes).fill(scrollOffset + outerSize);
|
|
78657
|
+
while (startIndex >= 0 && startPerLane.some((pos) => pos >= scrollOffset)) {
|
|
78658
|
+
const item2 = measurements[startIndex];
|
|
78659
|
+
startPerLane[item2.lane] = item2.start;
|
|
78660
|
+
startIndex--;
|
|
78661
|
+
}
|
|
78662
|
+
startIndex = Math.max(0, startIndex - startIndex % lanes);
|
|
78663
|
+
endIndex = Math.min(lastIndex, endIndex + (lanes - 1 - endIndex % lanes));
|
|
78171
78664
|
}
|
|
78172
78665
|
return { startIndex, endIndex };
|
|
78173
78666
|
}
|
|
@@ -114436,6 +114929,20 @@ const CommentFilterMenu = ({
|
|
|
114436
114929
|
}
|
|
114437
114930
|
);
|
|
114438
114931
|
};
|
|
114932
|
+
const parseDate = (date) => {
|
|
114933
|
+
if (typeof date === "string") {
|
|
114934
|
+
const d = new Date(date);
|
|
114935
|
+
if (!isValid$1(d)) return null;
|
|
114936
|
+
return d;
|
|
114937
|
+
}
|
|
114938
|
+
if (typeof date === "number") {
|
|
114939
|
+
const d = new Date(date);
|
|
114940
|
+
if (!isValid$1(d)) return null;
|
|
114941
|
+
return d;
|
|
114942
|
+
}
|
|
114943
|
+
if (isDate(date) && isValid$1(date)) return date;
|
|
114944
|
+
return null;
|
|
114945
|
+
};
|
|
114439
114946
|
export {
|
|
114440
114947
|
HelloModal as $,
|
|
114441
114948
|
AppContainer as A,
|
|
@@ -114675,6 +115182,7 @@ export {
|
|
|
114675
115182
|
CommentFilterMenu as db,
|
|
114676
115183
|
openRemoveConfirmModal as dc,
|
|
114677
115184
|
isAppMode as dd,
|
|
115185
|
+
parseDate as de,
|
|
114678
115186
|
showSuccessNotification as e,
|
|
114679
115187
|
showErrorNotification as f,
|
|
114680
115188
|
useIsDarkTheme as g,
|