@ltht-react/allergy-detail 2.0.187 → 2.0.188

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/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # AllergyDetail
2
-
3
- <!-- STORY -->
4
-
5
- ### Import
6
-
7
- ```js
8
- import AllergyDetail from '@ltht-react/allergy-detail'
9
- ```
10
-
11
- ### Usage
12
-
13
- ```jsx
14
- <AllergyDetail />
15
- ```
1
+ # AllergyDetail
2
+
3
+ <!-- STORY -->
4
+
5
+ ### Import
6
+
7
+ ```js
8
+ import AllergyDetail from '@ltht-react/allergy-detail'
9
+ ```
10
+
11
+ ### Usage
12
+
13
+ ```jsx
14
+ <AllergyDetail />
15
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ltht-react/allergy-detail",
3
- "version": "2.0.187",
3
+ "version": "2.0.188",
4
4
  "description": "ltht-react clinical AllergyDetail component.",
5
5
  "author": "LTHT",
6
6
  "homepage": "",
@@ -28,12 +28,12 @@
28
28
  "dependencies": {
29
29
  "@emotion/react": "^11.0.0",
30
30
  "@emotion/styled": "^11.0.0",
31
- "@ltht-react/description-list": "^2.0.187",
32
- "@ltht-react/styles": "^2.0.187",
33
- "@ltht-react/type-detail": "^2.0.187",
34
- "@ltht-react/types": "^2.0.187",
35
- "@ltht-react/utils": "^2.0.187",
31
+ "@ltht-react/description-list": "^2.0.188",
32
+ "@ltht-react/styles": "^2.0.188",
33
+ "@ltht-react/type-detail": "^2.0.188",
34
+ "@ltht-react/types": "^2.0.188",
35
+ "@ltht-react/utils": "^2.0.188",
36
36
  "react": "^18.2.0"
37
37
  },
38
- "gitHead": "e2c6121b7384f071642bee2f4443c21f6a56ad62"
38
+ "gitHead": "db9a3b619b84b838cf14219aeec376975beea4fd"
39
39
  }
@@ -1,34 +1,34 @@
1
- import { AllergyIntoleranceOnSet, Maybe } from '@ltht-react/types'
2
- import DescriptionList from '@ltht-react/description-list'
3
- import { partialDateTimeText, periodSummaryText, quantityText, rangeText } from '@ltht-react/utils'
4
- import { DetailViewComponent, IDetailViewProps, NestedListDetail } from '@ltht-react/type-detail'
5
-
6
- const AllergyOnsetDetail: DetailViewComponent<IProps> = ({ term, onset, showIfEmpty = true }) => {
7
- if (!onset && showIfEmpty === false) {
8
- return <></>
9
- }
10
- return (
11
- <NestedListDetail term={term} wrapDescription={false}>
12
- {onset && (
13
- <>
14
- {onset.onSetAge && <DescriptionList.Description>{quantityText(onset.onSetAge)}</DescriptionList.Description>}
15
- {onset.onSetDateTime && (
16
- <DescriptionList.Description>{partialDateTimeText(onset.onSetDateTime)}</DescriptionList.Description>
17
- )}
18
- {onset.onSetPeriod && (
19
- <DescriptionList.Description>{periodSummaryText(onset.onSetPeriod)}</DescriptionList.Description>
20
- )}
21
- {onset.onSetRange && <DescriptionList.Description>{rangeText(onset.onSetRange)}</DescriptionList.Description>}
22
- {onset.onSetString && <DescriptionList.Description>{onset.onSetString}</DescriptionList.Description>}
23
- </>
24
- )}
25
- </NestedListDetail>
26
- )
27
- }
28
-
29
- interface IProps extends IDetailViewProps {
30
- term: string
31
- onset?: Maybe<AllergyIntoleranceOnSet>
32
- }
33
-
34
- export default AllergyOnsetDetail
1
+ import { AllergyIntoleranceOnSet, Maybe } from '@ltht-react/types'
2
+ import DescriptionList from '@ltht-react/description-list'
3
+ import { partialDateTimeText, periodSummaryText, quantityText, rangeText } from '@ltht-react/utils'
4
+ import { DetailViewComponent, IDetailViewProps, NestedListDetail } from '@ltht-react/type-detail'
5
+
6
+ const AllergyOnsetDetail: DetailViewComponent<IProps> = ({ term, onset, showIfEmpty = true }) => {
7
+ if (!onset && showIfEmpty === false) {
8
+ return <></>
9
+ }
10
+ return (
11
+ <NestedListDetail term={term} wrapDescription={false}>
12
+ {onset && (
13
+ <>
14
+ {onset.onSetAge && <DescriptionList.Description>{quantityText(onset.onSetAge)}</DescriptionList.Description>}
15
+ {onset.onSetDateTime && (
16
+ <DescriptionList.Description>{partialDateTimeText(onset.onSetDateTime)}</DescriptionList.Description>
17
+ )}
18
+ {onset.onSetPeriod && (
19
+ <DescriptionList.Description>{periodSummaryText(onset.onSetPeriod)}</DescriptionList.Description>
20
+ )}
21
+ {onset.onSetRange && <DescriptionList.Description>{rangeText(onset.onSetRange)}</DescriptionList.Description>}
22
+ {onset.onSetString && <DescriptionList.Description>{onset.onSetString}</DescriptionList.Description>}
23
+ </>
24
+ )}
25
+ </NestedListDetail>
26
+ )
27
+ }
28
+
29
+ interface IProps extends IDetailViewProps {
30
+ term: string
31
+ onset?: Maybe<AllergyIntoleranceOnSet>
32
+ }
33
+
34
+ export default AllergyOnsetDetail
package/src/index.tsx CHANGED
@@ -1,62 +1,62 @@
1
- import { FC } from 'react'
2
- import styled from '@emotion/styled'
3
- import { AllergyIntolerance, DetailViewType } from '@ltht-react/types'
4
- import {
5
- AnnotationListDetail,
6
- CodeableConceptDetail,
7
- CodingListDetail,
8
- CollapsibleDetailCollection,
9
- CollapsibleDetailCollectionProps,
10
- DatetimeDetail,
11
- ResourceReferenceDetail,
12
- StringDetail,
13
- } from '@ltht-react/type-detail'
14
- import AllergyOnset from './atoms/allergy-onset-detail'
15
-
16
- const TopSection = styled.div`
17
- display: flex;
18
- justify-content: space-between;
19
- align-items: flex-start;
20
- margin-bottom: 1rem;
21
-
22
- & dl:last-of-type {
23
- margin-top: 0;
24
- text-align: right;
25
- }
26
- `
27
-
28
- const Separator = styled.div`
29
- height: 1px;
30
- background: rgba(0, 0, 0, 0.125);
31
- margin: 0.75rem -0.75rem 0 -0.75rem;
32
- `
33
-
34
- const AllergyDetail: FC<Props> = ({ allergy, showDates = true, viewType = DetailViewType.Compact }) => (
35
- <>
36
- <TopSection>
37
- <StringDetail term="Type" description={allergy.type?.toString()} />
38
- <CodingListDetail term="Data Source(s)" codings={allergy.metadata.dataSources} />
39
- </TopSection>
40
- <Separator />
41
- <CollapsibleDetailCollection viewType={viewType}>
42
- <StringDetail term="Category" description={allergy?.category?.toString()} />
43
- <CodeableConceptDetail term="Allergy" concept={allergy.code} />
44
- <StringDetail term="Verification Status" description={allergy.verificationStatus?.toString()} />
45
- <StringDetail term="Clinical Status" description={allergy.clinicalStatus?.toString()} />
46
- {showDates ? <AllergyOnset term="Onset" onset={allergy.onSet} /> : <></>}
47
- <ResourceReferenceDetail term="Asserter" resourceReference={allergy?.asserter} />
48
- {showDates ? <DatetimeDetail term="Asserted Date" datetime={allergy?.assertedDate} /> : <></>}
49
- <AnnotationListDetail term="Note(s)" notes={allergy.note} />
50
- <DatetimeDetail term="Last Occurence" datetime={allergy?.lastOccurrence} />
51
- <StringDetail term="Criticality" description={allergy.criticality?.toString()} />
52
- <ResourceReferenceDetail term="Recorder" resourceReference={allergy?.recorder} />
53
- </CollapsibleDetailCollection>
54
- </>
55
- )
56
-
57
- interface Props extends CollapsibleDetailCollectionProps {
58
- allergy: AllergyIntolerance
59
- showDates?: boolean
60
- }
61
-
62
- export default AllergyDetail
1
+ import { FC } from 'react'
2
+ import styled from '@emotion/styled'
3
+ import { AllergyIntolerance, DetailViewType } from '@ltht-react/types'
4
+ import {
5
+ AnnotationListDetail,
6
+ CodeableConceptDetail,
7
+ CodingListDetail,
8
+ CollapsibleDetailCollection,
9
+ CollapsibleDetailCollectionProps,
10
+ DatetimeDetail,
11
+ ResourceReferenceDetail,
12
+ StringDetail,
13
+ } from '@ltht-react/type-detail'
14
+ import AllergyOnset from './atoms/allergy-onset-detail'
15
+
16
+ const TopSection = styled.div`
17
+ display: flex;
18
+ justify-content: space-between;
19
+ align-items: flex-start;
20
+ margin-bottom: 1rem;
21
+
22
+ & dl:last-of-type {
23
+ margin-top: 0;
24
+ text-align: right;
25
+ }
26
+ `
27
+
28
+ const Separator = styled.div`
29
+ height: 1px;
30
+ background: rgba(0, 0, 0, 0.125);
31
+ margin: 0.75rem -0.75rem 0 -0.75rem;
32
+ `
33
+
34
+ const AllergyDetail: FC<Props> = ({ allergy, showDates = true, viewType = DetailViewType.Compact }) => (
35
+ <>
36
+ <TopSection>
37
+ <StringDetail term="Type" description={allergy.type?.toString()} />
38
+ <CodingListDetail term="Data Source(s)" codings={allergy.metadata.dataSources} />
39
+ </TopSection>
40
+ <Separator />
41
+ <CollapsibleDetailCollection viewType={viewType}>
42
+ <StringDetail term="Category" description={allergy?.category?.toString()} />
43
+ <CodeableConceptDetail term="Allergy" concept={allergy.code} />
44
+ <StringDetail term="Verification Status" description={allergy.verificationStatus?.toString()} />
45
+ <StringDetail term="Clinical Status" description={allergy.clinicalStatus?.toString()} />
46
+ {showDates ? <AllergyOnset term="Onset" onset={allergy.onSet} /> : <></>}
47
+ <ResourceReferenceDetail term="Asserter" resourceReference={allergy?.asserter} />
48
+ {showDates ? <DatetimeDetail term="Asserted Date" datetime={allergy?.assertedDate} /> : <></>}
49
+ <AnnotationListDetail term="Note(s)" notes={allergy.note} />
50
+ <DatetimeDetail term="Last Occurence" datetime={allergy?.lastOccurrence} />
51
+ <StringDetail term="Criticality" description={allergy.criticality?.toString()} />
52
+ <ResourceReferenceDetail term="Recorder" resourceReference={allergy?.recorder} />
53
+ </CollapsibleDetailCollection>
54
+ </>
55
+ )
56
+
57
+ interface Props extends CollapsibleDetailCollectionProps {
58
+ allergy: AllergyIntolerance
59
+ showDates?: boolean
60
+ }
61
+
62
+ export default AllergyDetail
@@ -1,8 +0,0 @@
1
- import { AllergyIntoleranceOnSet, Maybe } from '@ltht-react/types';
2
- import { DetailViewComponent, IDetailViewProps } from '@ltht-react/type-detail';
3
- declare const AllergyOnsetDetail: DetailViewComponent<IProps>;
4
- interface IProps extends IDetailViewProps {
5
- term: string;
6
- onset?: Maybe<AllergyIntoleranceOnSet>;
7
- }
8
- export default AllergyOnsetDetail;
@@ -1,18 +0,0 @@
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
- var jsx_runtime_1 = require("react/jsx-runtime");
7
- var description_list_1 = __importDefault(require("@ltht-react/description-list"));
8
- var utils_1 = require("@ltht-react/utils");
9
- var type_detail_1 = require("@ltht-react/type-detail");
10
- var AllergyOnsetDetail = function (_a) {
11
- var term = _a.term, onset = _a.onset, _b = _a.showIfEmpty, showIfEmpty = _b === void 0 ? true : _b;
12
- if (!onset && showIfEmpty === false) {
13
- return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
14
- }
15
- return ((0, jsx_runtime_1.jsx)(type_detail_1.NestedListDetail, { term: term, wrapDescription: false, children: onset && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [onset.onSetAge && (0, jsx_runtime_1.jsx)(description_list_1.default.Description, { children: (0, utils_1.quantityText)(onset.onSetAge) }), onset.onSetDateTime && ((0, jsx_runtime_1.jsx)(description_list_1.default.Description, { children: (0, utils_1.partialDateTimeText)(onset.onSetDateTime) })), onset.onSetPeriod && ((0, jsx_runtime_1.jsx)(description_list_1.default.Description, { children: (0, utils_1.periodSummaryText)(onset.onSetPeriod) })), onset.onSetRange && (0, jsx_runtime_1.jsx)(description_list_1.default.Description, { children: (0, utils_1.rangeText)(onset.onSetRange) }), onset.onSetString && (0, jsx_runtime_1.jsx)(description_list_1.default.Description, { children: onset.onSetString })] })) }));
16
- };
17
- exports.default = AllergyOnsetDetail;
18
- //# sourceMappingURL=allergy-onset-detail.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"allergy-onset-detail.js","sourceRoot":"","sources":["../../src/atoms/allergy-onset-detail.tsx"],"names":[],"mappings":";;;;;;AACA,kFAA0D;AAC1D,2CAAmG;AACnG,uDAAiG;AAEjG,IAAM,kBAAkB,GAAgC,UAAC,EAAmC;QAAjC,IAAI,UAAA,EAAE,KAAK,WAAA,EAAE,mBAAkB,EAAlB,WAAW,mBAAG,IAAI,KAAA;IACxF,IAAI,CAAC,KAAK,IAAI,WAAW,KAAK,KAAK,EAAE,CAAC;QACpC,OAAO,kDAAK,CAAA;IACd,CAAC;IACD,OAAO,CACL,uBAAC,8BAAgB,IAAC,IAAI,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,YACjD,KAAK,IAAI,CACR,6DACG,KAAK,CAAC,QAAQ,IAAI,uBAAC,0BAAe,CAAC,WAAW,cAAE,IAAA,oBAAY,EAAC,KAAK,CAAC,QAAQ,CAAC,GAA+B,EAC3G,KAAK,CAAC,aAAa,IAAI,CACtB,uBAAC,0BAAe,CAAC,WAAW,cAAE,IAAA,2BAAmB,EAAC,KAAK,CAAC,aAAa,CAAC,GAA+B,CACtG,EACA,KAAK,CAAC,WAAW,IAAI,CACpB,uBAAC,0BAAe,CAAC,WAAW,cAAE,IAAA,yBAAiB,EAAC,KAAK,CAAC,WAAW,CAAC,GAA+B,CAClG,EACA,KAAK,CAAC,UAAU,IAAI,uBAAC,0BAAe,CAAC,WAAW,cAAE,IAAA,iBAAS,EAAC,KAAK,CAAC,UAAU,CAAC,GAA+B,EAC5G,KAAK,CAAC,WAAW,IAAI,uBAAC,0BAAe,CAAC,WAAW,cAAE,KAAK,CAAC,WAAW,GAA+B,IACnG,CACJ,GACgB,CACpB,CAAA;AACH,CAAC,CAAA;AAOD,kBAAe,kBAAkB,CAAA"}
package/lib/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- import { FC } from 'react';
2
- import { AllergyIntolerance } from '@ltht-react/types';
3
- import { CollapsibleDetailCollectionProps } from '@ltht-react/type-detail';
4
- declare const AllergyDetail: FC<Props>;
5
- interface Props extends CollapsibleDetailCollectionProps {
6
- allergy: AllergyIntolerance;
7
- showDates?: boolean;
8
- }
9
- export default AllergyDetail;
package/lib/index.js DELETED
@@ -1,24 +0,0 @@
1
- "use strict";
2
- var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
- if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
- return cooked;
5
- };
6
- var __importDefault = (this && this.__importDefault) || function (mod) {
7
- return (mod && mod.__esModule) ? mod : { "default": mod };
8
- };
9
- Object.defineProperty(exports, "__esModule", { value: true });
10
- var jsx_runtime_1 = require("react/jsx-runtime");
11
- var styled_1 = __importDefault(require("@emotion/styled"));
12
- var types_1 = require("@ltht-react/types");
13
- var type_detail_1 = require("@ltht-react/type-detail");
14
- var allergy_onset_detail_1 = __importDefault(require("./atoms/allergy-onset-detail"));
15
- var TopSection = styled_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n margin-bottom: 1rem;\n\n & dl:last-of-type {\n margin-top: 0;\n text-align: right;\n }\n"], ["\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n margin-bottom: 1rem;\n\n & dl:last-of-type {\n margin-top: 0;\n text-align: right;\n }\n"])));
16
- var Separator = styled_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n height: 1px;\n background: rgba(0, 0, 0, 0.125);\n margin: 0.75rem -0.75rem 0 -0.75rem;\n"], ["\n height: 1px;\n background: rgba(0, 0, 0, 0.125);\n margin: 0.75rem -0.75rem 0 -0.75rem;\n"])));
17
- var AllergyDetail = function (_a) {
18
- var _b, _c, _d, _e, _f;
19
- var allergy = _a.allergy, _g = _a.showDates, showDates = _g === void 0 ? true : _g, _h = _a.viewType, viewType = _h === void 0 ? types_1.DetailViewType.Compact : _h;
20
- return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)(TopSection, { children: [(0, jsx_runtime_1.jsx)(type_detail_1.StringDetail, { term: "Type", description: (_b = allergy.type) === null || _b === void 0 ? void 0 : _b.toString() }), (0, jsx_runtime_1.jsx)(type_detail_1.CodingListDetail, { term: "Data Source(s)", codings: allergy.metadata.dataSources })] }), (0, jsx_runtime_1.jsx)(Separator, {}), (0, jsx_runtime_1.jsxs)(type_detail_1.CollapsibleDetailCollection, { viewType: viewType, children: [(0, jsx_runtime_1.jsx)(type_detail_1.StringDetail, { term: "Category", description: (_c = allergy === null || allergy === void 0 ? void 0 : allergy.category) === null || _c === void 0 ? void 0 : _c.toString() }), (0, jsx_runtime_1.jsx)(type_detail_1.CodeableConceptDetail, { term: "Allergy", concept: allergy.code }), (0, jsx_runtime_1.jsx)(type_detail_1.StringDetail, { term: "Verification Status", description: (_d = allergy.verificationStatus) === null || _d === void 0 ? void 0 : _d.toString() }), (0, jsx_runtime_1.jsx)(type_detail_1.StringDetail, { term: "Clinical Status", description: (_e = allergy.clinicalStatus) === null || _e === void 0 ? void 0 : _e.toString() }), showDates ? (0, jsx_runtime_1.jsx)(allergy_onset_detail_1.default, { term: "Onset", onset: allergy.onSet }) : (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}), (0, jsx_runtime_1.jsx)(type_detail_1.ResourceReferenceDetail, { term: "Asserter", resourceReference: allergy === null || allergy === void 0 ? void 0 : allergy.asserter }), showDates ? (0, jsx_runtime_1.jsx)(type_detail_1.DatetimeDetail, { term: "Asserted Date", datetime: allergy === null || allergy === void 0 ? void 0 : allergy.assertedDate }) : (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}), (0, jsx_runtime_1.jsx)(type_detail_1.AnnotationListDetail, { term: "Note(s)", notes: allergy.note }), (0, jsx_runtime_1.jsx)(type_detail_1.DatetimeDetail, { term: "Last Occurence", datetime: allergy === null || allergy === void 0 ? void 0 : allergy.lastOccurrence }), (0, jsx_runtime_1.jsx)(type_detail_1.StringDetail, { term: "Criticality", description: (_f = allergy.criticality) === null || _f === void 0 ? void 0 : _f.toString() }), (0, jsx_runtime_1.jsx)(type_detail_1.ResourceReferenceDetail, { term: "Recorder", resourceReference: allergy === null || allergy === void 0 ? void 0 : allergy.recorder })] })] }));
21
- };
22
- exports.default = AllergyDetail;
23
- var templateObject_1, templateObject_2;
24
- //# sourceMappingURL=index.js.map
package/lib/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;;;;;;;AACA,2DAAoC;AACpC,2CAAsE;AACtE,uDASgC;AAChC,sFAAuD;AAEvD,IAAM,UAAU,GAAG,gBAAM,CAAC,GAAG,0PAAA,uLAU5B,IAAA,CAAA;AAED,IAAM,SAAS,GAAG,gBAAM,CAAC,GAAG,oKAAA,iGAI3B,IAAA,CAAA;AAED,IAAM,aAAa,GAAc,UAAC,EAAgE;;QAA9D,OAAO,aAAA,EAAE,iBAAgB,EAAhB,SAAS,mBAAG,IAAI,KAAA,EAAE,gBAAiC,EAAjC,QAAQ,mBAAG,sBAAc,CAAC,OAAO,KAAA;IAAO,OAAA,CACrG,6DACE,wBAAC,UAAU,eACT,uBAAC,0BAAY,IAAC,IAAI,EAAC,MAAM,EAAC,WAAW,EAAE,MAAA,OAAO,CAAC,IAAI,0CAAE,QAAQ,EAAE,GAAI,EACnE,uBAAC,8BAAgB,IAAC,IAAI,EAAC,gBAAgB,EAAC,OAAO,EAAE,OAAO,CAAC,QAAQ,CAAC,WAAW,GAAI,IACtE,EACb,uBAAC,SAAS,KAAG,EACb,wBAAC,yCAA2B,IAAC,QAAQ,EAAE,QAAQ,aAC7C,uBAAC,0BAAY,IAAC,IAAI,EAAC,UAAU,EAAC,WAAW,EAAE,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,QAAQ,0CAAE,QAAQ,EAAE,GAAI,EAC5E,uBAAC,mCAAqB,IAAC,IAAI,EAAC,SAAS,EAAC,OAAO,EAAE,OAAO,CAAC,IAAI,GAAI,EAC/D,uBAAC,0BAAY,IAAC,IAAI,EAAC,qBAAqB,EAAC,WAAW,EAAE,MAAA,OAAO,CAAC,kBAAkB,0CAAE,QAAQ,EAAE,GAAI,EAChG,uBAAC,0BAAY,IAAC,IAAI,EAAC,iBAAiB,EAAC,WAAW,EAAE,MAAA,OAAO,CAAC,cAAc,0CAAE,QAAQ,EAAE,GAAI,EACvF,SAAS,CAAC,CAAC,CAAC,uBAAC,8BAAY,IAAC,IAAI,EAAC,OAAO,EAAC,KAAK,EAAE,OAAO,CAAC,KAAK,GAAI,CAAC,CAAC,CAAC,kDAAK,EACxE,uBAAC,qCAAuB,IAAC,IAAI,EAAC,UAAU,EAAC,iBAAiB,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,QAAQ,GAAI,EAChF,SAAS,CAAC,CAAC,CAAC,uBAAC,4BAAc,IAAC,IAAI,EAAC,eAAe,EAAC,QAAQ,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,YAAY,GAAI,CAAC,CAAC,CAAC,kDAAK,EAC7F,uBAAC,kCAAoB,IAAC,IAAI,EAAC,SAAS,EAAC,KAAK,EAAE,OAAO,CAAC,IAAI,GAAI,EAC5D,uBAAC,4BAAc,IAAC,IAAI,EAAC,gBAAgB,EAAC,QAAQ,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,cAAc,GAAI,EAC3E,uBAAC,0BAAY,IAAC,IAAI,EAAC,aAAa,EAAC,WAAW,EAAE,MAAA,OAAO,CAAC,WAAW,0CAAE,QAAQ,EAAE,GAAI,EACjF,uBAAC,qCAAuB,IAAC,IAAI,EAAC,UAAU,EAAC,iBAAiB,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,QAAQ,GAAI,IACrD,IAC7B,CACJ,CAAA;CAAA,CAAA;AAOD,kBAAe,aAAa,CAAA"}