@evlop/commons 1.0.135 → 1.0.139
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bin/generate-icons-type.d.ts +2 -0
- package/dist/bin/generate-icons-type.d.ts.map +1 -0
- package/dist/bin/generate-icons-type.js +29 -0
- package/dist/bin/generate-icons-type.js.map +1 -0
- package/dist/src/constants/i18ninstance.d.ts.map +1 -1
- package/dist/src/constants/i18ninstance.js +8 -0
- package/dist/src/constants/i18ninstance.js.map +1 -1
- package/dist/src/constants/iconInfo/index.d.ts +4 -2
- package/dist/src/constants/iconInfo/index.d.ts.map +1 -1
- package/dist/src/constants/iconInfo/index.js +2 -1
- package/dist/src/constants/iconInfo/index.js.map +1 -1
- package/dist/src/constants/iconInfo/reactNativeVectorIcons.d.ts +1 -32
- package/dist/src/constants/iconInfo/reactNativeVectorIcons.d.ts.map +1 -1
- package/dist/src/constants/iconInfo/reactNativeVectorIcons.js +1 -1
- package/dist/src/constants/iconInfo/reactNativeVectorIcons.js.map +1 -1
- package/dist/src/constants/iconInfo/types.d.ts +38 -0
- package/dist/src/constants/iconInfo/types.d.ts.map +1 -0
- package/dist/src/constants/iconInfo/types.js +3 -0
- package/dist/src/constants/iconInfo/types.js.map +1 -0
- package/dist/src/constants/index.d.ts +1 -1
- package/dist/src/constants/index.d.ts.map +1 -1
- package/dist/src/constants/index.js.map +1 -1
- package/dist/src/helpers/themeHelpers.d.ts +1 -1
- package/dist/src/helpers/themeHelpers.js +1 -1
- package/dist/src/providers/{I18nProvider.d.ts → I18nProvider/index.d.ts} +1 -1
- package/dist/src/providers/I18nProvider/index.d.ts.map +1 -0
- package/dist/src/providers/{I18nProvider.js → I18nProvider/index.js} +27 -9
- package/dist/src/providers/I18nProvider/index.js.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.app.d.ts +2 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.app.d.ts.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.app.js +20 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.app.js.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.d.ts +2 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.d.ts.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.js +6 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.js.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.native.d.ts +2 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.native.d.ts.map +1 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.native.js +21 -0
- package/dist/src/providers/I18nProvider/useDirectionSwitcher.native.js.map +1 -0
- package/dist/src/providers/SessionManager.d.ts +3 -0
- package/dist/src/providers/SessionManager.d.ts.map +1 -0
- package/dist/src/providers/SessionManager.js +24 -0
- package/dist/src/providers/SessionManager.js.map +1 -0
- package/dist/src/providers/index.d.ts +1 -0
- package/dist/src/providers/index.d.ts.map +1 -1
- package/dist/src/providers/index.js +1 -0
- package/dist/src/providers/index.js.map +1 -1
- package/dist/src/reducers/index.d.ts +13 -0
- package/dist/src/reducers/index.d.ts.map +1 -1
- package/dist/src/reducers/index.js +3 -0
- package/dist/src/reducers/index.js.map +1 -1
- package/dist/src/reducers/pages/index.d.ts.map +1 -1
- package/dist/src/reducers/pages/index.js +0 -1
- package/dist/src/reducers/pages/index.js.map +1 -1
- package/dist/src/reducers/session.d.ts +45 -0
- package/dist/src/reducers/session.d.ts.map +1 -0
- package/dist/src/reducers/session.js +89 -0
- package/dist/src/reducers/session.js.map +1 -0
- package/package.json +5 -4
- package/dist/generateIcons.d.ts +0 -2
- package/dist/generateIcons.d.ts.map +0 -1
- package/dist/generateIcons.js +0 -13
- package/dist/generateIcons.js.map +0 -1
- package/dist/src/providers/I18nProvider.d.ts.map +0 -1
- package/dist/src/providers/I18nProvider.js.map +0 -1
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"generate-icons-type.d.ts","sourceRoot":"","sources":["../../bin/generate-icons-type.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const change_case_1 = require("change-case");
|
7
|
+
const lodash_1 = require("lodash");
|
8
|
+
const reactNativeVectorIcons_1 = __importDefault(require("../src/constants/iconInfo/reactNativeVectorIcons"));
|
9
|
+
const iconByTypes = lodash_1.groupBy(reactNativeVectorIcons_1.default, icon => lodash_1.filter(lodash_1.at(icon, 'type', 'variant')).join(':'));
|
10
|
+
const iconTypeToIconNames = lodash_1.mapValues(iconByTypes, icons => lodash_1.map(icons, 'name'));
|
11
|
+
const icons = lodash_1.reduce(iconTypeToIconNames, ({ typeNames, typeDefinations }, iconNames, iconType) => {
|
12
|
+
const iconsNamesTypeName = change_case_1.pascalCase(iconType);
|
13
|
+
const identifierTypeName = change_case_1.pascalCase(iconType) + 'IconIdentifier';
|
14
|
+
const typeDefination = [
|
15
|
+
`type ${iconsNamesTypeName} = ${lodash_1.join(iconNames.map(iconName => JSON.stringify(iconName)), '|')}`,
|
16
|
+
`type ${identifierTypeName} = \`${iconType}:\${${iconsNamesTypeName}}\``,
|
17
|
+
].join("\n");
|
18
|
+
return { typeNames: [...typeNames, identifierTypeName], typeDefinations: [...typeDefinations, typeDefination] };
|
19
|
+
}, { typeNames: [], typeDefinations: [] });
|
20
|
+
require('fs').writeFileSync('./src/constants/iconInfo/types.ts', [
|
21
|
+
...icons.typeDefinations,
|
22
|
+
`export type IconIdentifier = ${lodash_1.join(icons.typeNames, '|')};`,
|
23
|
+
'',
|
24
|
+
'export type ReactNativeVectorIcons = {[key in IconIdentifier]: Object};',
|
25
|
+
'',
|
26
|
+
'export default IconIdentifier;',
|
27
|
+
].join('\n'));
|
28
|
+
console.log("Generated icon types");
|
29
|
+
//# sourceMappingURL=generate-icons-type.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"generate-icons-type.js","sourceRoot":"","sources":["../../bin/generate-icons-type.ts"],"names":[],"mappings":";;;;;AAAA,6CAAyC;AACzC,mCAA2E;AAC3E,8GAAsF;AAEtF,MAAM,WAAW,GAAG,gBAAO,CAAC,gCAAsB,EAAE,IAAI,CAAA,EAAE,CAAC,eAAM,CAAC,WAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAE1G,MAAM,mBAAmB,GAAG,kBAAS,CAAC,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,YAAG,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAA;AAE/E,MAAM,KAAK,GAAG,eAAM,CAAC,mBAAmB,EAAE,CAAC,EAAC,SAAS,EAAE,eAAe,EAAC,EAAE,SAAS,EAAE,QAAQ,EAAC,EAAE;IAC7F,MAAM,kBAAkB,GAAG,wBAAU,CAAC,QAAQ,CAAC,CAAC;IAChD,MAAM,kBAAkB,GAAG,wBAAU,CAAC,QAAQ,CAAC,GAAC,gBAAgB,CAAC;IACjE,MAAM,cAAc,GAAG;QACrB,QAAQ,kBAAkB,MAAM,aAAI,CAAC,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE;QAChG,QAAQ,kBAAkB,QAAQ,QAAQ,OAAO,kBAAkB,KAAK;KACzE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACb,OAAO,EAAE,SAAS,EAAE,CAAC,GAAG,SAAS,EAAE,kBAAkB,CAAC,EAAE,eAAe,EAAE,CAAC,GAAG,eAAe,EAAE,cAAc,CAAC,EAAE,CAAA;AACjH,CAAC,EAAE,EAAC,SAAS,EAAE,EAAE,EAAE,eAAe,EAAE,EAAE,EAAC,CAAC,CAAC;AAGzC,OAAO,CAAC,IAAI,CAAC,CAAC,aAAa,CACzB,mCAAmC,EACnC;IACE,GAAG,KAAK,CAAC,eAAe;IACxB,gCAAgC,aAAI,CAAC,KAAK,CAAC,SAAS,EAAE,GAAG,CAAC,GAAG;IAC7D,EAAE;IACF,yEAAyE;IACzE,EAAE;IACF,gCAAgC;CACjC,CAAC,IAAI,CAAC,IAAI,CAAC,CACb,CAAC;AAEF,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"i18ninstance.d.ts","sourceRoot":"","sources":["../../../src/constants/i18ninstance.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,wBAA2B,CAAC;
|
1
|
+
{"version":3,"file":"i18ninstance.d.ts","sourceRoot":"","sources":["../../../src/constants/i18ninstance.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,wBAA2B,CAAC;AAcrD,eAAe,YAAY,CAAC"}
|
@@ -7,8 +7,16 @@ exports.i18nInstance = void 0;
|
|
7
7
|
const i18next_1 = __importDefault(require("i18next"));
|
8
8
|
exports.i18nInstance = i18next_1.default.createInstance();
|
9
9
|
exports.i18nInstance.init({
|
10
|
+
compatibilityJSON: "v3",
|
11
|
+
lng: "en",
|
10
12
|
fallbackLng: ['en', 'EN'],
|
11
13
|
defaultNS: "common",
|
14
|
+
interpolation: {
|
15
|
+
escapeValue: false,
|
16
|
+
},
|
17
|
+
react: {
|
18
|
+
useSuspense: false,
|
19
|
+
}
|
12
20
|
});
|
13
21
|
exports.default = exports.i18nInstance;
|
14
22
|
//# sourceMappingURL=i18ninstance.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"i18ninstance.js","sourceRoot":"","sources":["../../../src/constants/i18ninstance.ts"],"names":[],"mappings":";;;;;;AAAA,sDAA8B;AAEjB,QAAA,YAAY,GAAG,iBAAO,CAAC,cAAc,EAAE,CAAC;AACrD,oBAAY,CAAC,IAAI,CAAC;IACd,WAAW,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;IACzB,SAAS,EAAE,QAAQ;
|
1
|
+
{"version":3,"file":"i18ninstance.js","sourceRoot":"","sources":["../../../src/constants/i18ninstance.ts"],"names":[],"mappings":";;;;;;AAAA,sDAA8B;AAEjB,QAAA,YAAY,GAAG,iBAAO,CAAC,cAAc,EAAE,CAAC;AACrD,oBAAY,CAAC,IAAI,CAAC;IACd,iBAAiB,EAAE,IAAI;IACvB,GAAG,EAAE,IAAI;IACT,WAAW,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;IACzB,SAAS,EAAE,QAAQ;IACnB,aAAa,EAAC;QACV,WAAW,EAAE,KAAK;KACrB;IACD,KAAK,EAAC;QACF,WAAW,EAAE,KAAK;KACrB;CACJ,CAAC,CAAC;AAEH,kBAAe,oBAAY,CAAC"}
|
@@ -1,3 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { IconIdentifier, ReactNativeVectorIcons } from './types';
|
2
|
+
declare const icons: ReactNativeVectorIcons;
|
3
|
+
export { IconIdentifier, ReactNativeVectorIcons };
|
4
|
+
export default icons;
|
3
5
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEjE,QAAA,MAAM,KAAK,wBAA+B,CAAE;AAE5C,OAAO,EAAE,cAAc,EAAE,sBAAsB,EAAE,CAAA;AACjD,eAAe,KAAK,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/index.ts"],"names":[],"mappings":";;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/index.ts"],"names":[],"mappings":";;AAEA,MAAM,KAAK,GAAG,EAA4B,CAAE;AAG5C,kBAAe,KAAK,CAAC"}
|
@@ -1,34 +1,3 @@
|
|
1
|
-
import Entypo from 'react-native-vector-icons/glyphmaps/Entypo.json';
|
2
|
-
import Evilicon from 'react-native-vector-icons/glyphmaps/EvilIcons.json';
|
3
|
-
import Feather from 'react-native-vector-icons/glyphmaps/Feather.json';
|
4
|
-
import FontAwesome from 'react-native-vector-icons/glyphmaps/FontAwesome.json';
|
5
|
-
import FontAwesome5_meta from 'react-native-vector-icons/glyphmaps/FontAwesome5Free_meta.json';
|
6
|
-
import FontAwesome5 from 'react-native-vector-icons/glyphmaps/FontAwesome5Free.json';
|
7
|
-
import Fontisto from 'react-native-vector-icons/glyphmaps/Fontisto.json';
|
8
|
-
import Foundation from 'react-native-vector-icons/glyphmaps/Foundation.json';
|
9
|
-
import Ionicon from 'react-native-vector-icons/glyphmaps/Ionicons.json';
|
10
|
-
import MaterialCommunity from 'react-native-vector-icons/glyphmaps/MaterialCommunityIcons.json';
|
11
|
-
import Material from 'react-native-vector-icons/glyphmaps/MaterialIcons.json';
|
12
|
-
import Octicon from 'react-native-vector-icons/glyphmaps/Octicons.json';
|
13
|
-
import SimpleLineIcon from 'react-native-vector-icons/glyphmaps/SimpleLineIcons.json';
|
14
|
-
import Zocial from 'react-native-vector-icons/glyphmaps/Zocial.json';
|
15
|
-
declare type FaIcons = typeof FontAwesome5_meta;
|
16
|
-
declare type FA5IconVariant = keyof FaIcons;
|
17
|
-
declare type Fa5IconName = keyof (typeof FontAwesome5);
|
18
|
-
declare type Fa5Icon = `font-awesome-5:${FA5IconVariant}:${Fa5IconName}`;
|
19
|
-
declare type EntypoIcon = `entypo:${keyof (typeof Entypo)}`;
|
20
|
-
declare type EvilIcon = `evilicon:${keyof (typeof Evilicon)}`;
|
21
|
-
declare type FeatherIcon = `fetther:${keyof (typeof Feather)}`;
|
22
|
-
declare type FontAwesomeIcon = `font-awesome:${keyof (typeof FontAwesome)}`;
|
23
|
-
declare type FontistoIcon = `fontisto:${keyof (typeof Fontisto)}`;
|
24
|
-
declare type FoundationIcon = `foundation:${keyof (typeof Foundation)}`;
|
25
|
-
declare type IoniconIcon = `ionicon:${keyof (typeof Ionicon)}`;
|
26
|
-
declare type MaterialCommunityIcon = `material-community:${keyof (typeof MaterialCommunity)}`;
|
27
|
-
declare type MaterialIcon = `material:${keyof (typeof Material)}`;
|
28
|
-
declare type OcticonIcon = `octicon:${keyof (typeof Octicon)}`;
|
29
|
-
declare type SimpleLineIconIcon = `simple-line-icon:${keyof (typeof SimpleLineIcon)}`;
|
30
|
-
declare type ZocialIcon = `zocial:${keyof (typeof Zocial)}`;
|
31
|
-
export declare type IconIdentifier = Fa5Icon | EntypoIcon | EvilIcon | FeatherIcon | FontAwesomeIcon | FontistoIcon | FoundationIcon | IoniconIcon | MaterialCommunityIcon | MaterialIcon | OcticonIcon | SimpleLineIconIcon | ZocialIcon;
|
32
1
|
declare const reactNativeVectorIcons: {
|
33
2
|
[x: string]: {
|
34
3
|
id: string;
|
@@ -38,8 +7,8 @@ declare const reactNativeVectorIcons: {
|
|
38
7
|
character: any;
|
39
8
|
} | {
|
40
9
|
id: string;
|
41
|
-
name: string;
|
42
10
|
type: string;
|
11
|
+
name: string;
|
43
12
|
character: never;
|
44
13
|
};
|
45
14
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reactNativeVectorIcons.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"reactNativeVectorIcons.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":"AAqDA,QAAA,MAAO,sBAAsB;;;;;;;;;;;;;CAAgC,CAAC;AAE9D,eAAe,sBAAsB,CAAA"}
|
@@ -35,8 +35,8 @@ const vectorIcons = lodash_1.chain(iconLibraries)
|
|
35
35
|
.mapValues((libraryIcons) => lodash_1.map(libraryIcons, (character, name) => ({ character, name })))
|
36
36
|
.flatMap((iconsOfCurrentType, iconLibrary) => lodash_1.map(iconsOfCurrentType, ({ name: iconName, character }) => ({
|
37
37
|
id: `${change_case_1.paramCase(iconLibrary)}:${iconName}`,
|
38
|
-
name: iconName,
|
39
38
|
type: change_case_1.paramCase(iconLibrary),
|
39
|
+
name: iconName,
|
40
40
|
character
|
41
41
|
})))
|
42
42
|
.keyBy('id')
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reactNativeVectorIcons.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":";;;;;AAAA,wGAA2E;AAC3E,kGAAqE;AACrE,wGAA0E;AAC1E,oGAAuE;AACvE,4GAA+E;AAC/E,gIAA+F;AAC/F,sHAAqF;AACrF,sGAAyE;AACzE,0GAA6E;AAC7E,sGAAwE;AACxE,kIAAgG;AAChG,gHAA8E;AAC9E,sGAAwE;AACxE,oHAAsF;AACtF,kGAAqE;AACrE,6CAAwC;AACxC,mCAAoC;AAEpC,MAAM,aAAa,GAAG,EAAC,SAAS,EAAT,wBAAS,EAAE,MAAM,EAAN,qBAAM,EAAE,QAAQ,EAAR,wBAAQ,EAAE,OAAO,EAAP,sBAAO,EAAE,WAAW,EAAX,0BAAW,EAAC,QAAQ,EAAR,uBAAQ,EAAE,UAAU,EAAV,yBAAU,EAAE,OAAO,EAAP,uBAAO,EAAE,iBAAiB,EAAjB,qCAAiB,EAAE,QAAQ,EAAR,4BAAQ,EAAE,OAAO,EAAP,uBAAO,EAAE,cAAc,EAAd,8BAAc,EAAE,MAAM,EAAN,qBAAM,EAAC,CAAC;
|
1
|
+
{"version":3,"file":"reactNativeVectorIcons.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":";;;;;AAAA,wGAA2E;AAC3E,kGAAqE;AACrE,wGAA0E;AAC1E,oGAAuE;AACvE,4GAA+E;AAC/E,gIAA+F;AAC/F,sHAAqF;AACrF,sGAAyE;AACzE,0GAA6E;AAC7E,sGAAwE;AACxE,kIAAgG;AAChG,gHAA8E;AAC9E,sGAAwE;AACxE,oHAAsF;AACtF,kGAAqE;AACrE,6CAAwC;AACxC,mCAAoC;AAEpC,MAAM,aAAa,GAAG,EAAC,SAAS,EAAT,wBAAS,EAAE,MAAM,EAAN,qBAAM,EAAE,QAAQ,EAAR,wBAAQ,EAAE,OAAO,EAAP,sBAAO,EAAE,WAAW,EAAX,0BAAW,EAAC,QAAQ,EAAR,uBAAQ,EAAE,UAAU,EAAV,yBAAU,EAAE,OAAO,EAAP,uBAAO,EAAE,iBAAiB,EAAjB,qCAAiB,EAAE,QAAQ,EAAR,4BAAQ,EAAE,OAAO,EAAP,uBAAO,EAAE,cAAc,EAAd,8BAAc,EAAE,MAAM,EAAN,qBAAM,EAAC,CAAC;AAEtK,MAAM,QAAQ,GAAG,cAAK,CAAC,oCAAiB,CAAC;KACpB,OAAO,CACJ,CAAC,SAAS,EAAE,OAAO,EAAE,EAAE,CAAC,YAAG,CACvB,SAAS,EACT,QAAQ,CAAC,EAAE,CAAC,CAAC;IACT,EAAE,EAAE,kBAAkB,OAAO,IAAI,QAAQ,EAAE;IAC3C,IAAI,EAAE,gBAAgB;IACtB,IAAI,EAAE,QAAQ;IACd,OAAO;IACP,SAAS,EAAE,+BAAY,CAAC,QAAQ,CAAC;CACpC,CAAC,CACL,CACJ;KACA,KAAK,CAAC,IAAI,CAAC;KACX,KAAK,EAAE,CAAC;AAI7B,MAAM,WAAW,GAAG,cAAK,CAAC,aAAa,CAAC;KAC3B,SAAS,CAAC,CAAC,YAAY,EAAC,EAAE,CAAA,YAAG,CAAC,YAAY,EAAE,CAAC,SAAS,EAAE,IAAI,EAAC,EAAE,CAAA,CAAC,EAAC,SAAS,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC;KACpF,OAAO,CACJ,CAAC,kBAAkB,EAAE,WAAW,EAAC,EAAE,CAAC,YAAG,CAAC,kBAAkB,EACtD,CAAC,EAAC,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAC,EAAE,EAAE,CAAC,CAAC;IAC9B,EAAE,EAAE,GAAG,uBAAS,CAAC,WAAW,CAAC,IAAI,QAAQ,EAAE;IAC3C,IAAI,EAAE,uBAAS,CAAC,WAAW,CAAC;IAC5B,IAAI,EAAE,QAAQ;IACd,SAAS;CACZ,CAAC,CACL,CACJ;KACA,KAAK,CAAC,IAAI,CAAC;KACX,KAAK,EAAE,CAAC;AAErB,MAAO,sBAAsB,mCAAO,QAAQ,GAAK,WAAW,CAAC,CAAC;AAE9D,kBAAe,sBAAsB,CAAA"}
|