@hh.ru/magritte-ui-tree-selector 1.1.2 → 1.1.3

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/Item.js CHANGED
@@ -2,7 +2,7 @@ import './index.css';
2
2
  import { jsxs, jsx } from 'react/jsx-runtime';
3
3
  import { useMemo } from 'react';
4
4
  import classnames from 'classnames';
5
- import { s as styles, I as ItemContent } from './ItemContent-6e825417.js';
5
+ import { s as styles, I as ItemContent } from './ItemContent-f9d346a8.js';
6
6
  import '@hh.ru/magritte-ui-cell';
7
7
  import '@hh.ru/magritte-ui-icon/icon';
8
8
  import './Action.js';
@@ -7,7 +7,7 @@ import { DotFilledSize24, ChevronDownOutlinedSize24, ChevronUpOutlinedSize24 } f
7
7
  import { Action } from './Action.js';
8
8
  import { Text } from '@hh.ru/magritte-ui-typography';
9
9
 
10
- var styles = {"wrapper":"magritte-wrapper___GHKV6_1-1-2","letter":"magritte-letter___yZOCU_1-1-2","icon":"magritte-icon___kO3Fj_1-1-2","iconActive":"magritte-iconActive___4yrG5_1-1-2","content":"magritte-content___ZRc6R_1-1-2","with-action":"magritte-with-action___-lsFP_1-1-2","withAction":"magritte-with-action___-lsFP_1-1-2","children":"magritte-children___kq-eq_1-1-2","with-letter":"magritte-with-letter___skx30_1-1-2","withLetter":"magritte-with-letter___skx30_1-1-2","with-chevron":"magritte-with-chevron___VOytc_1-1-2","withChevron":"magritte-with-chevron___VOytc_1-1-2","with-shift":"magritte-with-shift___ZErxZ_1-1-2","withShift":"magritte-with-shift___ZErxZ_1-1-2"};
10
+ var styles = {"wrapper":"magritte-wrapper___GHKV6_1-1-3","letter":"magritte-letter___yZOCU_1-1-3","icon":"magritte-icon___kO3Fj_1-1-3","iconActive":"magritte-iconActive___4yrG5_1-1-3","content":"magritte-content___ZRc6R_1-1-3","with-action":"magritte-with-action___-lsFP_1-1-3","withAction":"magritte-with-action___-lsFP_1-1-3","children":"magritte-children___kq-eq_1-1-3","with-letter":"magritte-with-letter___skx30_1-1-3","withLetter":"magritte-with-letter___skx30_1-1-3","with-chevron":"magritte-with-chevron___VOytc_1-1-3","withChevron":"magritte-with-chevron___VOytc_1-1-3","with-shift":"magritte-with-shift___ZErxZ_1-1-3","withShift":"magritte-with-shift___ZErxZ_1-1-3"};
11
11
 
12
12
  const ItemContent = ({ item, hasAction, hasChildren, letter, expanded, onExpansion, hasChildrenOnLevel, hasLetterOnLevel, selected, onChange, indeterminate, singleChoice, hasActionOnLevel, }) => {
13
13
  const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);
@@ -17,4 +17,4 @@ const ItemContent = ({ item, hasAction, hasChildren, letter, expanded, onExpansi
17
17
  };
18
18
 
19
19
  export { ItemContent as I, styles as s };
20
- //# sourceMappingURL=ItemContent-6e825417.js.map
20
+ //# sourceMappingURL=ItemContent-f9d346a8.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ItemContent-6e825417.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { Cell, CellText } from '@hh.ru/magritte-ui-cell';\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { Text } from '@hh.ru/magritte-ui-typography';\n\nimport styles from './tree-selector-item.less';\n\ninterface ItemContent<A extends AdditionalDefault> {\n item: TreeModel<A>;\n hasChildren: boolean;\n hasAction: boolean;\n letter?: string;\n onExpansion: (id: string) => void;\n expanded?: boolean;\n hasChildrenOnLevel: boolean;\n selected: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n indeterminate: boolean;\n singleChoice?: boolean;\n hasActionOnLevel: boolean;\n hasLetterOnLevel: boolean;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n expanded,\n onExpansion,\n hasChildrenOnLevel,\n hasLetterOnLevel,\n selected,\n onChange,\n indeterminate,\n singleChoice,\n hasActionOnLevel,\n}: ItemContent<A>): ReactElement => {\n const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);\n\n return (\n <div className={styles.wrapper}>\n {(letter || hasLetterOnLevel) && (\n <div className={styles.letter}>\n {letter && (\n <Text typography=\"subtitle-1-semibold\" style=\"secondary\" Element=\"span\">\n {letter}\n </Text>\n )}\n </div>\n )}\n {hasActionOnLevel && hasChildren && !hasAction && (\n <div className={styles.icon}>\n <DotFilledSize24 initial=\"tertiary\" />\n </div>\n )}\n\n {(hasChildrenOnLevel || hasChildren) && (\n <div\n className={classnames(styles.icon, {\n [styles.iconActive]: hasChildren,\n })}\n onClick={handleExpandableClick}\n >\n {expanded && hasChildren && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!expanded && hasChildren && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n {hasChildrenOnLevel && !hasChildren && <DotFilledSize24 initial=\"tertiary\" />}\n </div>\n )}\n\n <Cell\n left={\n hasAction ? (\n <Action\n selected={selected}\n onChange={onChange}\n id={item.id}\n indeterminate={indeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined\n }\n >\n <CellText>{item.text}</CellText>\n </Cell>\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;;;;AA2BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,QAAQ,EACR,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,YAAY,EACZ,gBAAgB,GACH,KAAkB;IAC/B,MAAM,qBAAqB,GAAG,WAAW,CAAC,MAAM,WAAW,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;AAE7G,IAAA,QACIA,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EACzB,QAAA,EAAA,CAAA,CAAC,MAAM,IAAI,gBAAgB,MACxBC,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,MAAM,EAAA,QAAA,EACxB,MAAM,KACHA,IAAC,IAAI,EAAA,EAAC,UAAU,EAAC,qBAAqB,EAAC,KAAK,EAAC,WAAW,EAAC,OAAO,EAAC,MAAM,EAAA,QAAA,EAClE,MAAM,EACJ,CAAA,CACV,EACC,CAAA,CACT,EACA,gBAAgB,IAAI,WAAW,IAAI,CAAC,SAAS,KAC1CA,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,IAAI,EACvB,QAAA,EAAAA,GAAA,CAAC,eAAe,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,EACpC,CAAA,CACT,EAEA,CAAC,kBAAkB,IAAI,WAAW,MAC/BD,IAAA,CAAA,KAAA,EAAA,EACI,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;iBACnC,CAAC,EACF,OAAO,EAAE,qBAAqB,aAE7B,QAAQ,IAAI,WAAW,IAAIC,GAAA,CAAC,yBAAyB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC3E,CAAC,QAAQ,IAAI,WAAW,IAAIA,GAAA,CAAC,uBAAuB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC1E,kBAAkB,IAAI,CAAC,WAAW,IAAIA,IAAC,eAAe,EAAA,EAAC,OAAO,EAAC,UAAU,GAAG,CAC3E,EAAA,CAAA,CACT,EAEDA,GAAA,CAAC,IAAI,EAAA,EACD,IAAI,EACA,SAAS,IACLA,GAAC,CAAA,MAAM,IACH,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,aAAa,EAC5B,YAAY,EAAE,YAAY,GAC5B,IACF,SAAS,YAGjBA,GAAC,CAAA,QAAQ,cAAE,IAAI,CAAC,IAAI,EAAY,CAAA,EAAA,CAC7B,CACL,EAAA,CAAA,EACR;AACN;;;;"}
1
+ {"version":3,"file":"ItemContent-f9d346a8.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { Cell, CellText } from '@hh.ru/magritte-ui-cell';\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { Text } from '@hh.ru/magritte-ui-typography';\n\nimport styles from './tree-selector-item.less';\n\ninterface ItemContent<A extends AdditionalDefault> {\n item: TreeModel<A>;\n hasChildren: boolean;\n hasAction: boolean;\n letter?: string;\n onExpansion: (id: string) => void;\n expanded?: boolean;\n hasChildrenOnLevel: boolean;\n selected: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n indeterminate: boolean;\n singleChoice?: boolean;\n hasActionOnLevel: boolean;\n hasLetterOnLevel: boolean;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n expanded,\n onExpansion,\n hasChildrenOnLevel,\n hasLetterOnLevel,\n selected,\n onChange,\n indeterminate,\n singleChoice,\n hasActionOnLevel,\n}: ItemContent<A>): ReactElement => {\n const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);\n\n return (\n <div className={styles.wrapper}>\n {(letter || hasLetterOnLevel) && (\n <div className={styles.letter}>\n {letter && (\n <Text typography=\"subtitle-1-semibold\" style=\"secondary\" Element=\"span\">\n {letter}\n </Text>\n )}\n </div>\n )}\n {hasActionOnLevel && hasChildren && !hasAction && (\n <div className={styles.icon}>\n <DotFilledSize24 initial=\"tertiary\" />\n </div>\n )}\n\n {(hasChildrenOnLevel || hasChildren) && (\n <div\n className={classnames(styles.icon, {\n [styles.iconActive]: hasChildren,\n })}\n onClick={handleExpandableClick}\n >\n {expanded && hasChildren && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!expanded && hasChildren && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n {hasChildrenOnLevel && !hasChildren && <DotFilledSize24 initial=\"tertiary\" />}\n </div>\n )}\n\n <Cell\n left={\n hasAction ? (\n <Action\n selected={selected}\n onChange={onChange}\n id={item.id}\n indeterminate={indeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined\n }\n >\n <CellText>{item.text}</CellText>\n </Cell>\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;;;;AA2BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,QAAQ,EACR,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,YAAY,EACZ,gBAAgB,GACH,KAAkB;IAC/B,MAAM,qBAAqB,GAAG,WAAW,CAAC,MAAM,WAAW,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;AAE7G,IAAA,QACIA,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EACzB,QAAA,EAAA,CAAA,CAAC,MAAM,IAAI,gBAAgB,MACxBC,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,MAAM,EAAA,QAAA,EACxB,MAAM,KACHA,IAAC,IAAI,EAAA,EAAC,UAAU,EAAC,qBAAqB,EAAC,KAAK,EAAC,WAAW,EAAC,OAAO,EAAC,MAAM,EAAA,QAAA,EAClE,MAAM,EACJ,CAAA,CACV,EACC,CAAA,CACT,EACA,gBAAgB,IAAI,WAAW,IAAI,CAAC,SAAS,KAC1CA,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,IAAI,EACvB,QAAA,EAAAA,GAAA,CAAC,eAAe,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,EACpC,CAAA,CACT,EAEA,CAAC,kBAAkB,IAAI,WAAW,MAC/BD,IAAA,CAAA,KAAA,EAAA,EACI,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;iBACnC,CAAC,EACF,OAAO,EAAE,qBAAqB,aAE7B,QAAQ,IAAI,WAAW,IAAIC,GAAA,CAAC,yBAAyB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC3E,CAAC,QAAQ,IAAI,WAAW,IAAIA,GAAA,CAAC,uBAAuB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC1E,kBAAkB,IAAI,CAAC,WAAW,IAAIA,IAAC,eAAe,EAAA,EAAC,OAAO,EAAC,UAAU,GAAG,CAC3E,EAAA,CAAA,CACT,EAEDA,GAAA,CAAC,IAAI,EAAA,EACD,IAAI,EACA,SAAS,IACLA,GAAC,CAAA,MAAM,IACH,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,aAAa,EAC5B,YAAY,EAAE,YAAY,GAC5B,IACF,SAAS,YAGjBA,GAAC,CAAA,QAAQ,cAAE,IAAI,CAAC,IAAI,EAAY,CAAA,EAAA,CAC7B,CACL,EAAA,CAAA,EACR;AACN;;;;"}
package/ItemContent.js CHANGED
@@ -6,6 +6,6 @@ import '@hh.ru/magritte-ui-cell';
6
6
  import '@hh.ru/magritte-ui-icon/icon';
7
7
  import './Action.js';
8
8
  import '@hh.ru/magritte-ui-typography';
9
- export { I as ItemContent } from './ItemContent-6e825417.js';
9
+ export { I as ItemContent } from './ItemContent-f9d346a8.js';
10
10
  import '@hh.ru/magritte-ui-checkbox-radio';
11
11
  //# sourceMappingURL=ItemContent.js.map
package/ItemsList.js CHANGED
@@ -3,7 +3,7 @@ import { jsx, Fragment } from 'react/jsx-runtime';
3
3
  import { Item } from './Item.js';
4
4
  import 'react';
5
5
  import 'classnames';
6
- import './ItemContent-6e825417.js';
6
+ import './ItemContent-f9d346a8.js';
7
7
  import '@hh.ru/magritte-ui-cell';
8
8
  import '@hh.ru/magritte-ui-icon/icon';
9
9
  import './Action.js';
package/TreeSelector.js CHANGED
@@ -6,7 +6,7 @@ import { useIndeterminate } from './useIndeterminate.js';
6
6
  import './Item.js';
7
7
  import 'react';
8
8
  import 'classnames';
9
- import './ItemContent-6e825417.js';
9
+ import './ItemContent-f9d346a8.js';
10
10
  import '@hh.ru/magritte-ui-cell';
11
11
  import '@hh.ru/magritte-ui-icon/icon';
12
12
  import './Action.js';
@@ -7,7 +7,7 @@ import { useSelected } from './useSelected.js';
7
7
  import './ItemsList.js';
8
8
  import './Item.js';
9
9
  import 'classnames';
10
- import './ItemContent-6e825417.js';
10
+ import './ItemContent-f9d346a8.js';
11
11
  import '@hh.ru/magritte-ui-cell';
12
12
  import '@hh.ru/magritte-ui-icon/icon';
13
13
  import './Action.js';
package/index.css CHANGED
@@ -1,46 +1,46 @@
1
- .magritte-wrapper___GHKV6_1-1-2{
1
+ .magritte-wrapper___GHKV6_1-1-3{
2
2
  display:flex;
3
3
  padding:12px 0;
4
4
  gap:12px;
5
5
  align-items:center;
6
6
  }
7
- .magritte-letter___yZOCU_1-1-2{
7
+ .magritte-letter___yZOCU_1-1-3{
8
8
  width:24px;
9
9
  flex-shrink:0;
10
10
  text-align:center;
11
11
  }
12
- .magritte-icon___kO3Fj_1-1-2{
12
+ .magritte-icon___kO3Fj_1-1-3{
13
13
  flex-shrink:0;
14
14
  line-height:0;
15
15
  width:24px;
16
16
  }
17
- .magritte-iconActive___4yrG5_1-1-2{
17
+ .magritte-iconActive___4yrG5_1-1-3{
18
18
  cursor:pointer;
19
19
  }
20
- .magritte-content___ZRc6R_1-1-2{
20
+ .magritte-content___ZRc6R_1-1-3{
21
21
  flex-grow:1;
22
22
  }
23
- .magritte-with-action___-lsFP_1-1-2 > .magritte-children___kq-eq_1-1-2{
23
+ .magritte-with-action___-lsFP_1-1-3 > .magritte-children___kq-eq_1-1-3{
24
24
  padding-left:36px;
25
25
  }
26
- .magritte-with-action___-lsFP_1-1-2.magritte-with-letter___skx30_1-1-2 > .magritte-children___kq-eq_1-1-2{
26
+ .magritte-with-action___-lsFP_1-1-3.magritte-with-letter___skx30_1-1-3 > .magritte-children___kq-eq_1-1-3{
27
27
  padding-left:72px;
28
28
  }
29
- .magritte-with-action___-lsFP_1-1-2.magritte-with-chevron___VOytc_1-1-2 > .magritte-children___kq-eq_1-1-2{
29
+ .magritte-with-action___-lsFP_1-1-3.magritte-with-chevron___VOytc_1-1-3 > .magritte-children___kq-eq_1-1-3{
30
30
  padding-left:72px;
31
31
  }
32
- .magritte-with-action___-lsFP_1-1-2.magritte-with-letter___skx30_1-1-2.magritte-with-chevron___VOytc_1-1-2 > .magritte-children___kq-eq_1-1-2{
32
+ .magritte-with-action___-lsFP_1-1-3.magritte-with-letter___skx30_1-1-3.magritte-with-chevron___VOytc_1-1-3 > .magritte-children___kq-eq_1-1-3{
33
33
  padding-left:108px;
34
34
  }
35
- .magritte-with-letter___skx30_1-1-2 > .magritte-children___kq-eq_1-1-2{
35
+ .magritte-with-letter___skx30_1-1-3 > .magritte-children___kq-eq_1-1-3{
36
36
  padding-left:36px;
37
37
  }
38
- .magritte-with-letter___skx30_1-1-2.magritte-with-chevron___VOytc_1-1-2 > .magritte-children___kq-eq_1-1-2{
38
+ .magritte-with-letter___skx30_1-1-3.magritte-with-chevron___VOytc_1-1-3 > .magritte-children___kq-eq_1-1-3{
39
39
  padding-left:72px;
40
40
  }
41
- .magritte-with-chevron___VOytc_1-1-2 > .magritte-children___kq-eq_1-1-2{
41
+ .magritte-with-chevron___VOytc_1-1-3 > .magritte-children___kq-eq_1-1-3{
42
42
  padding-left:36px;
43
43
  }
44
- .magritte-with-shift___ZErxZ_1-1-2{
44
+ .magritte-with-shift___ZErxZ_1-1-3{
45
45
  margin-left:-36px;
46
46
  }
package/index.js CHANGED
@@ -5,7 +5,7 @@ import './ItemsList.js';
5
5
  import './Item.js';
6
6
  import 'react';
7
7
  import 'classnames';
8
- import './ItemContent-6e825417.js';
8
+ import './ItemContent-f9d346a8.js';
9
9
  import '@hh.ru/magritte-ui-cell';
10
10
  import '@hh.ru/magritte-ui-icon/icon';
11
11
  import './Action.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hh.ru/magritte-ui-tree-selector",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -19,9 +19,9 @@
19
19
  "test": "yarn root:test $(pwd)"
20
20
  },
21
21
  "dependencies": {
22
- "@hh.ru/magritte-ui-cell": "2.2.8",
23
- "@hh.ru/magritte-ui-checkbox-radio": "2.2.2",
24
- "@hh.ru/magritte-ui-icon": "7.1.5",
22
+ "@hh.ru/magritte-ui-cell": "2.2.9",
23
+ "@hh.ru/magritte-ui-checkbox-radio": "3.0.0",
24
+ "@hh.ru/magritte-ui-icon": "7.1.6",
25
25
  "@hh.ru/magritte-ui-mock-component": "1.0.10",
26
26
  "@hh.ru/magritte-ui-theme-provider": "1.1.22",
27
27
  "@hh.ru/magritte-ui-typography": "3.0.9"
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "9f09ecd7831d299cd9c5a8852bd30334245ab0e7"
36
+ "gitHead": "77a359961872f43d688f9507b225fa72ba99a3e8"
37
37
  }