@bccampus/ui-components 0.4.2 → 0.5.0

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.
Files changed (165) hide show
  1. package/dist/_chunks/CompositeDataItem.js +204 -0
  2. package/dist/_chunks/createLucideIcon.js +103 -0
  3. package/dist/_chunks/index.js +125 -0
  4. package/dist/_chunks/index2.js +44 -0
  5. package/dist/_chunks/index3.js +533 -0
  6. package/dist/{utils-CRiPKpXj.js → _chunks/utils.js} +754 -526
  7. package/dist/components/index.d.ts +16 -0
  8. package/dist/components/index.js +84 -0
  9. package/dist/components/ui/banner.d.ts +10 -0
  10. package/dist/components/ui/banner.js +45 -0
  11. package/dist/components/ui/button.d.ts +11 -0
  12. package/dist/{button.js → components/ui/button.js} +11 -10
  13. package/dist/components/ui/card.d.ts +27 -0
  14. package/dist/components/ui/card.js +109 -0
  15. package/dist/components/ui/composite/CompositeData.d.ts +20 -0
  16. package/dist/components/ui/composite/CompositeData.js +89 -0
  17. package/dist/components/ui/composite/CompositeDataItem.d.ts +28 -0
  18. package/dist/components/ui/composite/CompositeDataItem.js +5 -0
  19. package/dist/components/ui/composite/FocusProvider/AbstractFocusProvider.d.ts +41 -0
  20. package/dist/components/ui/composite/FocusProvider/AbstractFocusProvider.js +35 -0
  21. package/dist/components/ui/composite/FocusProvider/ListboxFocusProvider.d.ts +16 -0
  22. package/dist/components/ui/composite/FocusProvider/ListboxFocusProvider.js +67 -0
  23. package/dist/components/ui/composite/FocusProvider/index.d.ts +2 -0
  24. package/dist/components/ui/composite/FocusProvider/index.js +6 -0
  25. package/dist/components/ui/composite/SelectionProvider/AbstractSelectionProvider.d.ts +23 -0
  26. package/dist/components/ui/composite/SelectionProvider/AbstractSelectionProvider.js +20 -0
  27. package/dist/components/ui/composite/SelectionProvider/MultipleSelectionProvider.d.ts +9 -0
  28. package/dist/components/ui/composite/SelectionProvider/MultipleSelectionProvider.js +20 -0
  29. package/dist/components/ui/composite/SelectionProvider/SingleSelectionProvider.d.ts +9 -0
  30. package/dist/components/ui/composite/SelectionProvider/SingleSelectionProvider.js +25 -0
  31. package/dist/components/ui/composite/SelectionProvider/index.d.ts +3 -0
  32. package/dist/components/ui/composite/SelectionProvider/index.js +8 -0
  33. package/dist/components/ui/composite/composite-component-item.d.ts +2 -0
  34. package/dist/components/ui/composite/composite-component-item.js +74 -0
  35. package/dist/components/ui/composite/composite-component.d.ts +2 -0
  36. package/dist/components/ui/composite/composite-component.js +66 -0
  37. package/dist/components/ui/composite/index.d.ts +7 -0
  38. package/dist/components/ui/composite/index.js +22 -0
  39. package/dist/components/ui/composite/listbox.d.ts +2 -0
  40. package/dist/components/ui/composite/listbox.js +58 -0
  41. package/dist/components/ui/composite/types.d.ts +82 -0
  42. package/dist/components/ui/composite/types.js +1 -0
  43. package/dist/components/ui/horizontal-list.d.ts +10 -0
  44. package/dist/components/ui/horizontal-list.js +82 -0
  45. package/dist/components/ui/icon-generator/generate-tiles.d.ts +4 -0
  46. package/dist/components/ui/icon-generator/generate-tiles.js +223 -0
  47. package/dist/components/ui/icon-generator/icon-generator.d.ts +3 -0
  48. package/dist/components/ui/icon-generator/icon-generator.js +82 -0
  49. package/dist/components/ui/icon-generator/index.d.ts +4 -0
  50. package/dist/components/ui/icon-generator/index.js +11 -0
  51. package/dist/components/ui/icon-generator/masked-image-generator.d.ts +3 -0
  52. package/dist/components/ui/icon-generator/masked-image-generator.js +31 -0
  53. package/dist/{masked-image-generator.d.ts → components/ui/icon-generator/types.d.ts} +48 -58
  54. package/dist/components/ui/icon-generator/types.js +30 -0
  55. package/dist/components/ui/input.d.ts +3 -0
  56. package/dist/{input.js → components/ui/input.js} +8 -8
  57. package/dist/components/ui/navigation-menu.d.ts +16 -0
  58. package/dist/components/ui/navigation-menu.js +1041 -0
  59. package/dist/components/ui/overlay.d.ts +7 -0
  60. package/dist/{overlay.js → components/ui/overlay.js} +7 -7
  61. package/dist/components/ui/page-header.d.ts +5 -0
  62. package/dist/{page-header.js → components/ui/page-header.js} +189 -181
  63. package/dist/components/ui/page-section.d.ts +8 -0
  64. package/dist/{page-section.js → components/ui/page-section.js} +7 -7
  65. package/dist/components/ui/page.d.ts +3 -0
  66. package/dist/components/ui/page.js +8 -0
  67. package/dist/components/ui/popover.d.ts +7 -0
  68. package/dist/components/ui/popover.js +3532 -0
  69. package/dist/components/ui/search-input.d.ts +3 -0
  70. package/dist/components/ui/search-input.js +24 -0
  71. package/dist/components/ui/tag.d.ts +10 -0
  72. package/dist/{tag.js → components/ui/tag.js} +10 -9
  73. package/dist/components/ui/typography/caption.d.ts +8 -0
  74. package/dist/components/ui/typography/caption.js +28 -0
  75. package/dist/components/ui/typography/index.d.ts +1 -0
  76. package/dist/components/ui/typography/index.js +5 -0
  77. package/dist/hooks/index.d.ts +3 -0
  78. package/dist/hooks/index.js +9 -0
  79. package/dist/hooks/use-effect-after-mount.d.ts +2 -0
  80. package/dist/hooks/use-effect-after-mount.js +24 -0
  81. package/dist/hooks/use-id.d.ts +1 -0
  82. package/dist/hooks/use-id.js +7 -0
  83. package/dist/hooks/use-keyboard-event.d.ts +59 -0
  84. package/dist/hooks/use-keyboard-event.js +52 -0
  85. package/dist/lib/index.d.ts +3 -0
  86. package/dist/lib/index.js +16 -0
  87. package/dist/lib/object.d.ts +5 -0
  88. package/dist/lib/object.js +38 -0
  89. package/dist/lib/set-operations.d.ts +5 -0
  90. package/dist/lib/set-operations.js +51 -0
  91. package/dist/{utils.d.ts → lib/utils.d.ts} +2 -5
  92. package/dist/lib/utils.js +4 -0
  93. package/package.json +9 -76
  94. package/src/components/index.ts +17 -0
  95. package/src/components/ui/composite/FocusProvider/index.ts +2 -0
  96. package/src/components/ui/composite/SelectionProvider/MultipleSelectionProvider.ts +1 -1
  97. package/src/components/ui/composite/SelectionProvider/index.ts +3 -0
  98. package/src/components/ui/composite/index.ts +5 -5
  99. package/src/components/ui/icon-generator/index.ts +2 -0
  100. package/src/components/ui/typography/index.ts +1 -0
  101. package/src/hooks/index.ts +3 -0
  102. package/src/index.ts +3 -0
  103. package/src/lib/index.ts +3 -0
  104. package/tsconfig.lib.json +44 -0
  105. package/vite.config.ts +28 -31
  106. package/dist/AbstractFocusProvider-CxvlcEki.js +0 -29
  107. package/dist/AbstractSelectionProvider-BtaROstC.js +0 -30
  108. package/dist/CompositeDataItem-DuHOHCWy.js +0 -158
  109. package/dist/ListboxFocusProvider.d.ts +0 -149
  110. package/dist/ListboxFocusProvider.js +0 -53
  111. package/dist/MultipleSelectionProvider.d.ts +0 -141
  112. package/dist/MultipleSelectionProvider.js +0 -19
  113. package/dist/SingleSelectionProvider.d.ts +0 -141
  114. package/dist/SingleSelectionProvider.js +0 -23
  115. package/dist/banner.d.ts +0 -16
  116. package/dist/banner.js +0 -42
  117. package/dist/button.d.ts +0 -17
  118. package/dist/caption.d.ts +0 -13
  119. package/dist/caption.js +0 -27
  120. package/dist/card.d.ts +0 -46
  121. package/dist/card.js +0 -108
  122. package/dist/composite-component-DSUbd1XS.js +0 -122
  123. package/dist/composite.d.ts +0 -208
  124. package/dist/composite.js +0 -82
  125. package/dist/createLucideIcon-CzehbSja.js +0 -94
  126. package/dist/generate-tiles-DuagGD1d.js +0 -244
  127. package/dist/generate-tiles.d.ts +0 -43
  128. package/dist/generate-tiles.js +0 -7
  129. package/dist/horizontal-list.d.ts +0 -16
  130. package/dist/horizontal-list.js +0 -77
  131. package/dist/icon-generator-tuhuqdpL.js +0 -76
  132. package/dist/icon-generator.d.ts +0 -58
  133. package/dist/icon-generator.js +0 -6
  134. package/dist/index-CQhYMnjT.js +0 -34
  135. package/dist/index-U7DVCmS_.js +0 -76
  136. package/dist/input.d.ts +0 -7
  137. package/dist/listbox.d.ts +0 -171
  138. package/dist/listbox.js +0 -76
  139. package/dist/masked-image-generator.js +0 -29
  140. package/dist/navigation-menu.d.ts +0 -27
  141. package/dist/navigation-menu.js +0 -1139
  142. package/dist/overlay.d.ts +0 -13
  143. package/dist/page-header.d.ts +0 -9
  144. package/dist/page-section.d.ts +0 -14
  145. package/dist/page.d.ts +0 -7
  146. package/dist/page.js +0 -8
  147. package/dist/search-input.d.ts +0 -7
  148. package/dist/search-input.js +0 -23
  149. package/dist/tag.d.ts +0 -16
  150. package/dist/ui-components.d.ts +0 -215
  151. package/dist/ui-components.js +0 -54
  152. package/dist/utils.js +0 -4
  153. package/src/assets/icons/icon_01.svg +0 -6
  154. package/src/assets/icons/icon_02.svg +0 -6
  155. package/src/assets/icons/icon_03.svg +0 -6
  156. package/src/assets/icons/icon_04.svg +0 -6
  157. package/src/assets/icons/icon_05.svg +0 -4
  158. package/src/assets/icons/icon_06.svg +0 -4
  159. package/src/assets/images/image_01.jpg +0 -0
  160. package/src/assets/images/image_02.jpg +0 -0
  161. package/src/assets/images/image_03.webp +0 -0
  162. package/src/assets/images/image_04.png +0 -0
  163. package/src/assets/images/image_05.jpg +0 -0
  164. package/src/assets/images/image_06.jpg +0 -0
  165. package/src/components/ui/index.ts +0 -15
@@ -1,930 +1,937 @@
1
- import { jsx as s, jsxs as o } from "react/jsx-runtime";
2
- import { S as i } from "./index-U7DVCmS_.js";
3
- import { PageSection as u } from "./page-section.js";
4
- import e, { useMemo as h } from "react";
5
- const l = {
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { S as Slot } from "../../_chunks/index.js";
3
+ import { PageSection } from "./page-section.js";
4
+ import React__default, { useMemo } from "react";
5
+ const COLORS = {
6
6
  DarkBlue: "#174467",
7
7
  DarkTurquoise: "#047e83",
8
8
  Light: "#ffffff",
9
9
  Dark: "#000000"
10
10
  };
11
- function g({ size: c, style: a, color: t, colors: m, viewBox: n, children: p, ...d }) {
12
- const r = h(() => t ? { "--svg-c0": t } : m ? Object.fromEntries(m.map((N, v) => [`--svg-c${v}`, N])) : {}, [t, m]), E = h(
11
+ function BaseSVG({ size, style, color, colors, viewBox, children, ...rest }) {
12
+ const colorVars = useMemo(() => {
13
+ if (color)
14
+ return { "--svg-c0": color };
15
+ if (colors)
16
+ return Object.fromEntries(colors.map((c, i) => [`--svg-c${i}`, c]));
17
+ return {};
18
+ }, [color, colors]);
19
+ const svgStyle = useMemo(
13
20
  () => ({
14
- width: c,
15
- height: c,
16
- ...a,
17
- ...r
21
+ width: size,
22
+ height: size,
23
+ ...style,
24
+ ...colorVars
18
25
  }),
19
- [a, c, r]
26
+ [style, size, colorVars]
20
27
  );
21
- return /* @__PURE__ */ e.createElement(
28
+ return /* @__PURE__ */ React__default.createElement(
22
29
  "svg",
23
30
  {
24
31
  xmlns: "http://www.w3.org/2000/svg",
25
- viewBox: n,
32
+ viewBox,
26
33
  version: "1.1",
27
- ...d,
28
- style: E
34
+ ...rest,
35
+ style: svgStyle
29
36
  },
30
- p
37
+ children
31
38
  );
32
39
  }
33
- function f({ variant: c, colors: a, ...t }) {
34
- const m = h(() => {
35
- switch (c) {
40
+ function LogoBCcampusWithTagline({ variant, colors, ...props }) {
41
+ const computedColors = useMemo(() => {
42
+ switch (variant) {
36
43
  case "white":
37
- return [l.Light];
44
+ return [COLORS.Light];
38
45
  case "black":
39
- return [l.Dark];
46
+ return [COLORS.Dark];
40
47
  case "color":
41
- return [l.DarkBlue, l.DarkTurquoise];
48
+ return [COLORS.DarkBlue, COLORS.DarkTurquoise];
42
49
  default:
43
- return a;
50
+ return colors;
44
51
  }
45
- }, [c, a]);
46
- return /* @__PURE__ */ e.createElement(
47
- g,
52
+ }, [variant, colors]);
53
+ return /* @__PURE__ */ React__default.createElement(
54
+ BaseSVG,
48
55
  {
49
- ...t,
56
+ ...props,
50
57
  viewBox: "0 0 761.23999 180.62666",
51
58
  className: "bcc-logo-bccampus-tagline",
52
- colors: m
59
+ colors: computedColors
53
60
  },
54
- /* @__PURE__ */ e.createElement("style", null, `.bcc-logo-bccampus-tagline path{fill-opacity:1;fill-rule:nonzero;stroke:none;}
61
+ /* @__PURE__ */ React__default.createElement("style", null, `.bcc-logo-bccampus-tagline path{fill-opacity:1;fill-rule:nonzero;stroke:none;}
55
62
  .bcc-logo-bccampus-tagline .c0{fill: var(--svg-c0);}
56
63
  .bcc-logo-bccampus-tagline .c1{fill: var(--svg-c1, var(--svg-c0));}`),
57
- /* @__PURE__ */ e.createElement("g", { transform: "matrix(1.3333333,0,0,-1.3333333,0,180.62667)" }, /* @__PURE__ */ e.createElement("g", { transform: "scale(0.1)" }, /* @__PURE__ */ e.createElement(
64
+ /* @__PURE__ */ React__default.createElement("g", { transform: "matrix(1.3333333,0,0,-1.3333333,0,180.62667)" }, /* @__PURE__ */ React__default.createElement("g", { transform: "scale(0.1)" }, /* @__PURE__ */ React__default.createElement(
58
65
  "path",
59
66
  {
60
67
  className: "c0",
61
68
  d: "m 265.27,1222.08 c 0,-18.55 -15.036,-33.59 -33.598,-33.59 -18.551,0 -33.598,15.04 -33.598,33.59 0,18.58 15.047,33.6 33.598,33.6 18.562,0 33.598,-15.02 33.598,-33.6"
62
69
  }
63
- ), /* @__PURE__ */ e.createElement(
70
+ ), /* @__PURE__ */ React__default.createElement(
64
71
  "path",
65
72
  {
66
73
  className: "c0",
67
74
  d: "m 364.301,1123.03 c 0,-18.56 -15.039,-33.6 -33.606,-33.6 -18.543,0 -33.586,15.04 -33.586,33.6 0,18.57 15.043,33.61 33.586,33.61 18.567,0 33.606,-15.04 33.606,-33.61"
68
75
  }
69
- ), /* @__PURE__ */ e.createElement(
76
+ ), /* @__PURE__ */ React__default.createElement(
70
77
  "path",
71
78
  {
72
79
  className: "c0",
73
80
  d: "m 463.328,726.887 c 0,-18.59 -15.039,-33.614 -33.594,-33.614 -18.55,0 -33.582,15.024 -33.582,33.614 0,18.519 15.032,33.582 33.582,33.582 18.555,0 33.594,-15.063 33.594,-33.582"
74
81
  }
75
- ), /* @__PURE__ */ e.createElement(
82
+ ), /* @__PURE__ */ React__default.createElement(
76
83
  "path",
77
84
  {
78
85
  className: "c0",
79
86
  d: "m 463.328,1023.98 c 0,-18.54 -15.039,-33.582 -33.594,-33.582 -18.55,0 -33.582,15.042 -33.582,33.582 0,18.59 15.032,33.63 33.582,33.63 18.555,0 33.594,-15.04 33.594,-33.63"
80
87
  }
81
- ), /* @__PURE__ */ e.createElement(
88
+ ), /* @__PURE__ */ React__default.createElement(
82
89
  "path",
83
90
  {
84
91
  className: "c0",
85
92
  d: "m 463.328,1321.14 c 0,-18.58 -15.039,-33.62 -33.594,-33.62 -18.55,0 -33.582,15.04 -33.582,33.62 0,18.53 15.032,33.59 33.582,33.59 18.555,0 33.594,-15.06 33.594,-33.59"
86
93
  }
87
- ), /* @__PURE__ */ e.createElement(
94
+ ), /* @__PURE__ */ React__default.createElement(
88
95
  "path",
89
96
  {
90
97
  className: "c0",
91
98
  d: "m 661.414,132.629 c 0,-18.559 -15.051,-33.5899 -33.613,-33.5899 -18.539,0 -33.586,15.0309 -33.586,33.5899 0,18.562 15.047,33.633 33.586,33.633 18.562,0 33.613,-15.071 33.613,-33.633"
92
99
  }
93
- ), /* @__PURE__ */ e.createElement(
100
+ ), /* @__PURE__ */ React__default.createElement(
94
101
  "path",
95
102
  {
96
103
  className: "c0",
97
104
  d: "m 661.414,330.711 c 0,-18.57 -15.051,-33.59 -33.613,-33.59 -18.539,0 -33.586,15.02 -33.586,33.59 0,18.559 15.047,33.582 33.586,33.582 18.562,0 33.613,-15.023 33.613,-33.582"
98
105
  }
99
- ), /* @__PURE__ */ e.createElement(
106
+ ), /* @__PURE__ */ React__default.createElement(
100
107
  "path",
101
108
  {
102
109
  className: "c0",
103
110
  d: "m 661.414,726.887 c 0,-18.59 -15.051,-33.614 -33.613,-33.614 -18.539,0 -33.586,15.024 -33.586,33.614 0,18.519 15.047,33.582 33.586,33.582 18.562,0 33.613,-15.063 33.613,-33.582"
104
111
  }
105
- ), /* @__PURE__ */ e.createElement(
112
+ ), /* @__PURE__ */ React__default.createElement(
106
113
  "path",
107
114
  {
108
115
  className: "c0",
109
116
  d: "m 661.414,924.941 c 0,-18.546 -15.051,-33.605 -33.613,-33.605 -18.539,0 -33.586,15.059 -33.586,33.605 0,18.543 15.047,33.606 33.586,33.606 18.562,0 33.613,-15.063 33.613,-33.606"
110
117
  }
111
- ), /* @__PURE__ */ e.createElement(
118
+ ), /* @__PURE__ */ React__default.createElement(
112
119
  "path",
113
120
  {
114
121
  className: "c0",
115
122
  d: "m 661.414,1123.03 c 0,-18.56 -15.051,-33.6 -33.613,-33.6 -18.539,0 -33.586,15.04 -33.586,33.6 0,18.57 15.047,33.61 33.586,33.61 18.562,0 33.613,-15.04 33.613,-33.61"
116
123
  }
117
- ), /* @__PURE__ */ e.createElement(
124
+ ), /* @__PURE__ */ React__default.createElement(
118
125
  "path",
119
126
  {
120
127
  className: "c0",
121
128
  d: "m 661.414,1222.08 c 0,-18.55 -15.051,-33.59 -33.613,-33.59 -18.539,0 -33.586,15.04 -33.586,33.59 0,18.58 15.047,33.6 33.586,33.6 18.562,0 33.613,-15.02 33.613,-33.6"
122
129
  }
123
- ), /* @__PURE__ */ e.createElement(
130
+ ), /* @__PURE__ */ React__default.createElement(
124
131
  "path",
125
132
  {
126
133
  className: "c0",
127
134
  d: "m 760.441,627.832 c 0,-18.566 -15.031,-33.605 -33.593,-33.605 -18.551,0 -33.594,15.039 -33.594,33.605 0,18.563 15.043,33.606 33.594,33.606 18.562,0 33.593,-15.043 33.593,-33.606"
128
135
  }
129
- ), /* @__PURE__ */ e.createElement(
136
+ ), /* @__PURE__ */ React__default.createElement(
130
137
  "path",
131
138
  {
132
139
  className: "c0",
133
140
  d: "m 760.441,1023.98 c 0,-18.54 -15.031,-33.582 -33.593,-33.582 -18.551,0 -33.594,15.042 -33.594,33.582 0,18.59 15.043,33.63 33.594,33.63 18.562,0 33.593,-15.04 33.593,-33.63"
134
141
  }
135
- ), /* @__PURE__ */ e.createElement(
142
+ ), /* @__PURE__ */ React__default.createElement(
136
143
  "path",
137
144
  {
138
145
  className: "c0",
139
146
  d: "m 859.48,231.68 c 0,-18.551 -15.042,-33.61 -33.605,-33.61 -18.543,0 -33.586,15.059 -33.586,33.61 0,18.558 15.043,33.601 33.586,33.601 18.563,0 33.605,-15.043 33.605,-33.601"
140
147
  }
141
- ), /* @__PURE__ */ e.createElement(
148
+ ), /* @__PURE__ */ React__default.createElement(
142
149
  "path",
143
150
  {
144
151
  className: "c0",
145
152
  d: "m 859.48,726.887 c 0,-18.59 -15.042,-33.614 -33.605,-33.614 -18.543,0 -33.586,15.024 -33.586,33.614 0,18.519 15.043,33.582 33.586,33.582 18.563,0 33.605,-15.063 33.605,-33.582"
146
153
  }
147
- ), /* @__PURE__ */ e.createElement(
154
+ ), /* @__PURE__ */ React__default.createElement(
148
155
  "path",
149
156
  {
150
157
  className: "c0",
151
158
  d: "m 859.48,1222.08 c 0,-18.56 -15.042,-33.6 -33.605,-33.6 -18.543,0 -33.586,15.04 -33.586,33.6 0,18.53 15.043,33.59 33.586,33.59 18.563,0 33.605,-15.06 33.605,-33.59"
152
159
  }
153
- ), /* @__PURE__ */ e.createElement(
160
+ ), /* @__PURE__ */ React__default.createElement(
154
161
  "path",
155
162
  {
156
163
  className: "c0",
157
164
  d: "m 859.48,1321.14 c 0,-18.58 -15.042,-33.62 -33.605,-33.62 -18.543,0 -33.586,15.04 -33.586,33.62 0,18.53 15.043,33.59 33.586,33.59 18.563,0 33.605,-15.06 33.605,-33.59"
158
165
  }
159
- ), /* @__PURE__ */ e.createElement(
166
+ ), /* @__PURE__ */ React__default.createElement(
160
167
  "path",
161
168
  {
162
169
  className: "c0",
163
170
  d: "m 958.52,924.965 c 0,-18.555 -15.047,-33.594 -33.606,-33.594 -18.539,0 -33.586,15.039 -33.586,33.594 0,18.555 15.047,33.598 33.586,33.598 18.559,0 33.606,-15.043 33.606,-33.598"
164
171
  }
165
- ), /* @__PURE__ */ e.createElement(
172
+ ), /* @__PURE__ */ React__default.createElement(
166
173
  "path",
167
174
  {
168
175
  className: "c0",
169
176
  d: "m 1057.57,132.629 c 0,-18.559 -15.05,-33.5899 -33.62,-33.5899 -18.54,0 -33.587,15.0309 -33.587,33.5899 0,18.562 15.047,33.633 33.587,33.633 18.57,0 33.62,-15.071 33.62,-33.633"
170
177
  }
171
- ), /* @__PURE__ */ e.createElement(
178
+ ), /* @__PURE__ */ React__default.createElement(
172
179
  "path",
173
180
  {
174
181
  className: "c0",
175
182
  d: "m 1057.57,330.711 c 0,-18.57 -15.05,-33.59 -33.62,-33.59 -18.54,0 -33.587,15.02 -33.587,33.59 0,18.559 15.047,33.582 33.587,33.582 18.57,0 33.62,-15.023 33.62,-33.582"
176
183
  }
177
- ), /* @__PURE__ */ e.createElement(
184
+ ), /* @__PURE__ */ React__default.createElement(
178
185
  "path",
179
186
  {
180
187
  className: "c0",
181
188
  d: "m 1057.57,627.832 c 0,-18.566 -15.05,-33.605 -33.62,-33.605 -18.54,0 -33.587,15.039 -33.587,33.605 0,18.563 15.047,33.606 33.587,33.606 18.57,0 33.62,-15.043 33.62,-33.606"
182
189
  }
183
- ), /* @__PURE__ */ e.createElement(
190
+ ), /* @__PURE__ */ React__default.createElement(
184
191
  "path",
185
192
  {
186
193
  className: "c0",
187
194
  d: "m 1057.57,1222.08 c 0,-18.56 -15.05,-33.6 -33.62,-33.6 -18.54,0 -33.587,15.04 -33.587,33.6 0,18.53 15.047,33.59 33.587,33.59 18.57,0 33.62,-15.06 33.62,-33.59"
188
195
  }
189
- ), /* @__PURE__ */ e.createElement(
196
+ ), /* @__PURE__ */ React__default.createElement(
190
197
  "path",
191
198
  {
192
199
  className: "c0",
193
200
  d: "m 1255.63,528.805 c 0,-18.547 -15.04,-33.61 -33.6,-33.61 -18.55,0 -33.59,15.063 -33.59,33.61 0,18.543 15.04,33.601 33.59,33.601 18.56,0 33.6,-15.058 33.6,-33.601"
194
201
  }
195
- ), /* @__PURE__ */ e.createElement(
202
+ ), /* @__PURE__ */ React__default.createElement(
196
203
  "path",
197
204
  {
198
205
  className: "c0",
199
206
  d: "m 1354.66,132.629 c 0,-18.559 -15.04,-33.5899 -33.6,-33.5899 -18.55,0 -33.58,15.0309 -33.58,33.5899 0,18.562 15.03,33.633 33.58,33.633 18.56,0 33.6,-15.071 33.6,-33.633"
200
207
  }
201
- ), /* @__PURE__ */ e.createElement(
208
+ ), /* @__PURE__ */ React__default.createElement(
202
209
  "path",
203
210
  {
204
211
  className: "c0",
205
212
  d: "m 1354.66,231.68 c 0,-18.551 -15.04,-33.61 -33.6,-33.61 -18.55,0 -33.58,15.059 -33.58,33.61 0,18.558 15.03,33.601 33.58,33.601 18.56,0 33.6,-15.043 33.6,-33.601"
206
213
  }
207
- ), /* @__PURE__ */ e.createElement(
214
+ ), /* @__PURE__ */ React__default.createElement(
208
215
  "path",
209
216
  {
210
217
  className: "c0",
211
218
  d: "m 1453.7,330.711 c 0,-18.57 -15.04,-33.59 -33.6,-33.59 -18.56,0 -33.58,15.02 -33.58,33.59 0,18.559 15.02,33.582 33.58,33.582 18.56,0 33.6,-15.023 33.6,-33.582"
212
219
  }
213
- ), /* @__PURE__ */ e.createElement(
220
+ ), /* @__PURE__ */ React__default.createElement(
214
221
  "path",
215
222
  {
216
223
  className: "c0",
217
224
  d: "m 166.23,1321.14 c 0,-18.58 -15.039,-33.62 -33.601,-33.62 -18.543,0 -33.5899,15.04 -33.5899,33.62 0,18.53 15.0469,33.59 33.5899,33.59 18.562,0 33.601,-15.06 33.601,-33.59"
218
225
  }
219
- ), /* @__PURE__ */ e.createElement(
226
+ ), /* @__PURE__ */ React__default.createElement(
220
227
  "path",
221
228
  {
222
229
  className: "c0",
223
230
  d: "m 364.301,1023.98 c 0,-18.54 -15.039,-33.582 -33.606,-33.582 -18.543,0 -33.586,15.042 -33.586,33.582 0,18.59 15.043,33.63 33.586,33.63 18.567,0 33.606,-15.04 33.606,-33.63"
224
231
  }
225
- ), /* @__PURE__ */ e.createElement(
232
+ ), /* @__PURE__ */ React__default.createElement(
226
233
  "path",
227
234
  {
228
235
  className: "c0",
229
236
  d: "m 364.301,1222.08 c 0,-18.55 -15.039,-33.59 -33.606,-33.59 -18.543,0 -33.586,15.04 -33.586,33.59 0,18.58 15.043,33.6 33.586,33.6 18.567,0 33.606,-15.02 33.606,-33.6"
230
237
  }
231
- ), /* @__PURE__ */ e.createElement(
238
+ ), /* @__PURE__ */ React__default.createElement(
232
239
  "path",
233
240
  {
234
241
  className: "c0",
235
242
  d: "m 463.328,924.941 c 0,-18.546 -15.039,-33.605 -33.594,-33.605 -18.55,0 -33.582,15.059 -33.582,33.605 0,18.543 15.032,33.606 33.582,33.606 18.555,0 33.594,-15.063 33.594,-33.606"
236
243
  }
237
- ), /* @__PURE__ */ e.createElement(
244
+ ), /* @__PURE__ */ React__default.createElement(
238
245
  "path",
239
246
  {
240
247
  className: "c0",
241
248
  d: "m 463.328,1222.08 c 0,-18.55 -15.039,-33.59 -33.594,-33.59 -18.55,0 -33.582,15.04 -33.582,33.59 0,18.58 15.032,33.6 33.582,33.6 18.555,0 33.594,-15.02 33.594,-33.6"
242
249
  }
243
- ), /* @__PURE__ */ e.createElement(
250
+ ), /* @__PURE__ */ React__default.createElement(
244
251
  "path",
245
252
  {
246
253
  className: "c0",
247
254
  d: "m 562.383,726.887 c 0,-18.59 -15.047,-33.614 -33.621,-33.614 -18.535,0 -33.574,15.024 -33.574,33.614 0,18.519 15.039,33.582 33.574,33.582 18.574,0 33.621,-15.063 33.621,-33.582"
248
255
  }
249
- ), /* @__PURE__ */ e.createElement(
256
+ ), /* @__PURE__ */ React__default.createElement(
250
257
  "path",
251
258
  {
252
259
  className: "c0",
253
260
  d: "m 562.383,924.965 c 0,-18.555 -15.047,-33.594 -33.621,-33.594 -18.535,0 -33.574,15.039 -33.574,33.594 0,18.555 15.039,33.598 33.574,33.598 18.574,0 33.621,-15.043 33.621,-33.598"
254
261
  }
255
- ), /* @__PURE__ */ e.createElement(
262
+ ), /* @__PURE__ */ React__default.createElement(
256
263
  "path",
257
264
  {
258
265
  className: "c0",
259
266
  d: "m 562.383,1023.98 c 0,-18.54 -15.047,-33.582 -33.621,-33.582 -18.535,0 -33.574,15.042 -33.574,33.582 0,18.59 15.039,33.63 33.574,33.63 18.574,0 33.621,-15.04 33.621,-33.63"
260
267
  }
261
- ), /* @__PURE__ */ e.createElement(
268
+ ), /* @__PURE__ */ React__default.createElement(
262
269
  "path",
263
270
  {
264
271
  className: "c0",
265
272
  d: "m 562.383,1123.03 c 0,-18.56 -15.047,-33.6 -33.621,-33.6 -18.535,0 -33.574,15.04 -33.574,33.6 0,18.57 15.039,33.61 33.574,33.61 18.574,0 33.621,-15.04 33.621,-33.61"
266
273
  }
267
- ), /* @__PURE__ */ e.createElement(
274
+ ), /* @__PURE__ */ React__default.createElement(
268
275
  "path",
269
276
  {
270
277
  className: "c0",
271
278
  d: "m 562.383,1321.14 c 0,-18.58 -15.047,-33.62 -33.621,-33.62 -18.535,0 -33.574,15.04 -33.574,33.62 0,18.53 15.039,33.59 33.574,33.59 18.574,0 33.621,-15.06 33.621,-33.59"
272
279
  }
273
- ), /* @__PURE__ */ e.createElement(
280
+ ), /* @__PURE__ */ React__default.createElement(
274
281
  "path",
275
282
  {
276
283
  className: "c0",
277
284
  d: "m 661.414,429.754 c 0,-18.543 -15.051,-33.606 -33.613,-33.606 -18.539,0 -33.586,15.063 -33.586,33.606 0,18.566 15.047,33.586 33.586,33.586 18.562,0 33.613,-15.02 33.613,-33.586"
278
285
  }
279
- ), /* @__PURE__ */ e.createElement(
286
+ ), /* @__PURE__ */ React__default.createElement(
280
287
  "path",
281
288
  {
282
289
  className: "c0",
283
290
  d: "m 661.414,528.805 c 0,-18.547 -15.051,-33.61 -33.613,-33.61 -18.539,0 -33.586,15.063 -33.586,33.61 0,18.543 15.047,33.601 33.586,33.601 18.562,0 33.613,-15.058 33.613,-33.601"
284
291
  }
285
- ), /* @__PURE__ */ e.createElement(
292
+ ), /* @__PURE__ */ React__default.createElement(
286
293
  "path",
287
294
  {
288
295
  className: "c0",
289
296
  d: "m 661.414,627.832 c 0,-18.566 -15.051,-33.605 -33.613,-33.605 -18.539,0 -33.586,15.039 -33.586,33.605 0,18.563 15.047,33.606 33.586,33.606 18.562,0 33.613,-15.043 33.613,-33.606"
290
297
  }
291
- ), /* @__PURE__ */ e.createElement(
298
+ ), /* @__PURE__ */ React__default.createElement(
292
299
  "path",
293
300
  {
294
301
  className: "c0",
295
302
  d: "m 760.441,330.711 c 0,-18.57 -15.031,-33.59 -33.593,-33.59 -18.551,0 -33.594,15.02 -33.594,33.59 0,18.559 15.043,33.582 33.594,33.582 18.562,0 33.593,-15.023 33.593,-33.582"
296
303
  }
297
- ), /* @__PURE__ */ e.createElement(
304
+ ), /* @__PURE__ */ React__default.createElement(
298
305
  "path",
299
306
  {
300
307
  className: "c0",
301
308
  d: "m 760.441,429.754 c 0,-18.543 -15.031,-33.606 -33.593,-33.606 -18.551,0 -33.594,15.063 -33.594,33.606 0,18.566 15.043,33.586 33.594,33.586 18.562,0 33.593,-15.02 33.593,-33.586"
302
309
  }
303
- ), /* @__PURE__ */ e.createElement(
310
+ ), /* @__PURE__ */ React__default.createElement(
304
311
  "path",
305
312
  {
306
313
  className: "c0",
307
314
  d: "m 760.441,825.902 c 0,-18.554 -15.031,-33.597 -33.593,-33.597 -18.551,0 -33.594,15.043 -33.594,33.597 0,18.575 15.043,33.598 33.594,33.598 18.562,0 33.593,-15.023 33.593,-33.598"
308
315
  }
309
- ), /* @__PURE__ */ e.createElement(
316
+ ), /* @__PURE__ */ React__default.createElement(
310
317
  "path",
311
318
  {
312
319
  className: "c0",
313
320
  d: "m 760.441,924.965 c 0,-18.555 -15.031,-33.594 -33.593,-33.594 -18.551,0 -33.594,15.039 -33.594,33.594 0,18.555 15.043,33.598 33.594,33.598 18.562,0 33.593,-15.043 33.593,-33.598"
314
321
  }
315
- ), /* @__PURE__ */ e.createElement(
322
+ ), /* @__PURE__ */ React__default.createElement(
316
323
  "path",
317
324
  {
318
325
  className: "c0",
319
326
  d: "m 760.441,1222.08 c 0,-18.56 -15.031,-33.6 -33.593,-33.6 -18.551,0 -33.594,15.04 -33.594,33.6 0,18.53 15.043,33.59 33.594,33.59 18.562,0 33.593,-15.06 33.593,-33.59"
320
327
  }
321
- ), /* @__PURE__ */ e.createElement(
328
+ ), /* @__PURE__ */ React__default.createElement(
322
329
  "path",
323
330
  {
324
331
  className: "c0",
325
332
  d: "m 859.48,528.805 c 0,-18.547 -15.042,-33.61 -33.605,-33.61 -18.543,0 -33.586,15.063 -33.586,33.61 0,18.543 15.043,33.601 33.586,33.601 18.563,0 33.605,-15.058 33.605,-33.601"
326
333
  }
327
- ), /* @__PURE__ */ e.createElement(
334
+ ), /* @__PURE__ */ React__default.createElement(
328
335
  "path",
329
336
  {
330
337
  className: "c0",
331
338
  d: "m 859.48,825.902 c 0,-18.554 -15.042,-33.597 -33.605,-33.597 -18.543,0 -33.586,15.043 -33.586,33.597 0,18.575 15.043,33.598 33.586,33.598 18.563,0 33.605,-15.023 33.605,-33.598"
332
339
  }
333
- ), /* @__PURE__ */ e.createElement(
340
+ ), /* @__PURE__ */ React__default.createElement(
334
341
  "path",
335
342
  {
336
343
  className: "c0",
337
344
  d: "m 958.52,330.711 c 0,-18.57 -15.047,-33.59 -33.606,-33.59 -18.539,0 -33.586,15.02 -33.586,33.59 0,18.559 15.047,33.582 33.586,33.582 18.559,0 33.606,-15.023 33.606,-33.582"
338
345
  }
339
- ), /* @__PURE__ */ e.createElement(
346
+ ), /* @__PURE__ */ React__default.createElement(
340
347
  "path",
341
348
  {
342
349
  className: "c0",
343
350
  d: "m 958.52,528.805 c 0,-18.547 -15.047,-33.61 -33.606,-33.61 -18.539,0 -33.586,15.063 -33.586,33.61 0,18.543 15.047,33.601 33.586,33.601 18.559,0 33.606,-15.058 33.606,-33.601"
344
351
  }
345
- ), /* @__PURE__ */ e.createElement(
352
+ ), /* @__PURE__ */ React__default.createElement(
346
353
  "path",
347
354
  {
348
355
  className: "c0",
349
356
  d: "m 958.52,627.832 c 0,-18.566 -15.047,-33.605 -33.606,-33.605 -18.539,0 -33.586,15.039 -33.586,33.605 0,18.563 15.047,33.606 33.586,33.606 18.559,0 33.606,-15.043 33.606,-33.606"
350
357
  }
351
- ), /* @__PURE__ */ e.createElement(
358
+ ), /* @__PURE__ */ React__default.createElement(
352
359
  "path",
353
360
  {
354
361
  className: "c0",
355
362
  d: "m 958.52,726.887 c 0,-18.59 -15.047,-33.614 -33.606,-33.614 -18.539,0 -33.586,15.024 -33.586,33.614 0,18.519 15.047,33.582 33.586,33.582 18.559,0 33.606,-15.063 33.606,-33.582"
356
363
  }
357
- ), /* @__PURE__ */ e.createElement(
364
+ ), /* @__PURE__ */ React__default.createElement(
358
365
  "path",
359
366
  {
360
367
  className: "c0",
361
368
  d: "m 958.52,1023.98 c 0,-18.54 -15.047,-33.582 -33.606,-33.582 -18.539,0 -33.586,15.042 -33.586,33.582 0,18.59 15.047,33.63 33.586,33.63 18.559,0 33.606,-15.04 33.606,-33.63"
362
369
  }
363
- ), /* @__PURE__ */ e.createElement(
370
+ ), /* @__PURE__ */ React__default.createElement(
364
371
  "path",
365
372
  {
366
373
  className: "c0",
367
374
  d: "m 958.52,1123.03 c 0,-18.56 -15.047,-33.6 -33.606,-33.6 -18.539,0 -33.586,15.04 -33.586,33.6 0,18.57 15.047,33.61 33.586,33.61 18.559,0 33.606,-15.04 33.606,-33.61"
368
375
  }
369
- ), /* @__PURE__ */ e.createElement(
376
+ ), /* @__PURE__ */ React__default.createElement(
370
377
  "path",
371
378
  {
372
379
  className: "c0",
373
380
  d: "m 958.52,1321.14 c 0,-18.58 -15.047,-33.62 -33.606,-33.62 -18.539,0 -33.586,15.04 -33.586,33.62 0,18.53 15.047,33.59 33.586,33.59 18.559,0 33.606,-15.06 33.606,-33.59"
374
381
  }
375
- ), /* @__PURE__ */ e.createElement(
382
+ ), /* @__PURE__ */ React__default.createElement(
376
383
  "path",
377
384
  {
378
385
  className: "c0",
379
386
  d: "m 1057.57,528.805 c 0,-18.547 -15.05,-33.61 -33.62,-33.61 -18.54,0 -33.587,15.063 -33.587,33.61 0,18.543 15.047,33.601 33.587,33.601 18.57,0 33.62,-15.058 33.62,-33.601"
380
387
  }
381
- ), /* @__PURE__ */ e.createElement(
388
+ ), /* @__PURE__ */ React__default.createElement(
382
389
  "path",
383
390
  {
384
391
  className: "c0",
385
392
  d: "m 1057.57,825.902 c 0,-18.554 -15.05,-33.597 -33.62,-33.597 -18.54,0 -33.587,15.043 -33.587,33.597 0,18.575 15.047,33.598 33.587,33.598 18.57,0 33.62,-15.023 33.62,-33.598"
386
393
  }
387
- ), /* @__PURE__ */ e.createElement(
394
+ ), /* @__PURE__ */ React__default.createElement(
388
395
  "path",
389
396
  {
390
397
  className: "c0",
391
398
  d: "m 1057.57,924.965 c 0,-18.555 -15.05,-33.594 -33.62,-33.594 -18.54,0 -33.587,15.039 -33.587,33.594 0,18.555 15.047,33.598 33.587,33.598 18.57,0 33.62,-15.043 33.62,-33.598"
392
399
  }
393
- ), /* @__PURE__ */ e.createElement(
400
+ ), /* @__PURE__ */ React__default.createElement(
394
401
  "path",
395
402
  {
396
403
  className: "c0",
397
404
  d: "m 1057.57,1123.03 c 0,-18.56 -15.05,-33.6 -33.62,-33.6 -18.54,0 -33.587,15.04 -33.587,33.6 0,18.57 15.047,33.61 33.587,33.61 18.57,0 33.62,-15.04 33.62,-33.61"
398
405
  }
399
- ), /* @__PURE__ */ e.createElement(
406
+ ), /* @__PURE__ */ React__default.createElement(
400
407
  "path",
401
408
  {
402
409
  className: "c0",
403
410
  d: "m 1156.6,231.68 c 0,-18.551 -15.05,-33.61 -33.62,-33.61 -18.53,0 -33.58,15.059 -33.58,33.61 0,18.558 15.05,33.601 33.58,33.601 18.57,0 33.62,-15.043 33.62,-33.601"
404
411
  }
405
- ), /* @__PURE__ */ e.createElement(
412
+ ), /* @__PURE__ */ React__default.createElement(
406
413
  "path",
407
414
  {
408
415
  className: "c0",
409
416
  d: "m 1156.6,528.805 c 0,-18.547 -15.05,-33.61 -33.62,-33.61 -18.53,0 -33.58,15.063 -33.58,33.61 0,18.543 15.05,33.601 33.58,33.601 18.57,0 33.62,-15.058 33.62,-33.601"
410
417
  }
411
- ), /* @__PURE__ */ e.createElement(
418
+ ), /* @__PURE__ */ React__default.createElement(
412
419
  "path",
413
420
  {
414
421
  className: "c0",
415
422
  d: "m 1255.63,231.68 c 0,-18.551 -15.04,-33.61 -33.6,-33.61 -18.55,0 -33.59,15.059 -33.59,33.61 0,18.558 15.04,33.601 33.59,33.601 18.56,0 33.6,-15.043 33.6,-33.601"
416
423
  }
417
- ), /* @__PURE__ */ e.createElement(
424
+ ), /* @__PURE__ */ React__default.createElement(
418
425
  "path",
419
426
  {
420
427
  className: "c0",
421
428
  d: "m 1354.66,330.711 c 0,-18.57 -15.04,-33.59 -33.6,-33.59 -18.55,0 -33.58,15.02 -33.58,33.59 0,18.559 15.03,33.582 33.58,33.582 18.56,0 33.6,-15.023 33.6,-33.582"
422
429
  }
423
- ), /* @__PURE__ */ e.createElement(
430
+ ), /* @__PURE__ */ React__default.createElement(
424
431
  "path",
425
432
  {
426
433
  className: "c0",
427
434
  d: "m 1453.7,132.629 c 0,-18.559 -15.04,-33.5899 -33.6,-33.5899 -18.56,0 -33.58,15.0309 -33.58,33.5899 0,18.562 15.02,33.633 33.58,33.633 18.56,0 33.6,-15.071 33.6,-33.633"
428
435
  }
429
- ), /* @__PURE__ */ e.createElement(
436
+ ), /* @__PURE__ */ React__default.createElement(
430
437
  "path",
431
438
  {
432
439
  className: "c0",
433
440
  d: "m 1552.75,231.68 c 0,-18.551 -15.05,-33.61 -33.61,-33.61 -18.56,0 -33.59,15.059 -33.59,33.61 0,18.558 15.03,33.601 33.59,33.601 18.56,0 33.61,-15.043 33.61,-33.601"
434
441
  }
435
- ), /* @__PURE__ */ e.createElement(
442
+ ), /* @__PURE__ */ React__default.createElement(
436
443
  "path",
437
444
  {
438
445
  className: "c0",
439
446
  d: "m 265.27,528.805 c 0,-18.547 -15.036,-33.61 -33.598,-33.61 -18.551,0 -33.598,15.063 -33.598,33.61 0,18.543 15.047,33.601 33.598,33.601 18.562,0 33.598,-15.058 33.598,-33.601"
440
447
  }
441
- ), /* @__PURE__ */ e.createElement(
448
+ ), /* @__PURE__ */ React__default.createElement(
442
449
  "path",
443
450
  {
444
451
  className: "c0",
445
452
  d: "m 265.27,627.832 c 0,-18.566 -15.036,-33.605 -33.598,-33.605 -18.551,0 -33.598,15.039 -33.598,33.605 0,18.563 15.047,33.606 33.598,33.606 18.562,0 33.598,-15.043 33.598,-33.606"
446
453
  }
447
- ), /* @__PURE__ */ e.createElement(
454
+ ), /* @__PURE__ */ React__default.createElement(
448
455
  "path",
449
456
  {
450
457
  className: "c0",
451
458
  d: "m 265.27,1321.14 c 0,-18.58 -15.036,-33.62 -33.598,-33.62 -18.551,0 -33.598,15.04 -33.598,33.62 0,18.53 15.047,33.59 33.598,33.59 18.562,0 33.598,-15.06 33.598,-33.59"
452
459
  }
453
- ), /* @__PURE__ */ e.createElement(
460
+ ), /* @__PURE__ */ React__default.createElement(
454
461
  "path",
455
462
  {
456
463
  className: "c0",
457
464
  d: "m 463.328,1123.03 c 0,-18.56 -15.039,-33.6 -33.594,-33.6 -18.55,0 -33.582,15.04 -33.582,33.6 0,18.57 15.032,33.61 33.582,33.61 18.555,0 33.594,-15.04 33.594,-33.61"
458
465
  }
459
- ), /* @__PURE__ */ e.createElement(
466
+ ), /* @__PURE__ */ React__default.createElement(
460
467
  "path",
461
468
  {
462
469
  className: "c0",
463
470
  d: "m 562.383,627.832 c 0,-18.566 -15.047,-33.605 -33.621,-33.605 -18.535,0 -33.574,15.039 -33.574,33.605 0,18.563 15.039,33.606 33.574,33.606 18.574,0 33.621,-15.043 33.621,-33.606"
464
471
  }
465
- ), /* @__PURE__ */ e.createElement(
472
+ ), /* @__PURE__ */ React__default.createElement(
466
473
  "path",
467
474
  {
468
475
  className: "c0",
469
476
  d: "m 562.383,825.902 c 0,-18.554 -15.047,-33.597 -33.621,-33.597 -18.535,0 -33.574,15.043 -33.574,33.597 0,18.575 15.039,33.598 33.574,33.598 18.574,0 33.621,-15.023 33.621,-33.598"
470
477
  }
471
- ), /* @__PURE__ */ e.createElement(
478
+ ), /* @__PURE__ */ React__default.createElement(
472
479
  "path",
473
480
  {
474
481
  className: "c0",
475
482
  d: "m 562.383,1222.08 c 0,-18.55 -15.047,-33.59 -33.621,-33.59 -18.535,0 -33.574,15.04 -33.574,33.59 0,18.58 15.039,33.6 33.574,33.6 18.574,0 33.621,-15.02 33.621,-33.6"
476
483
  }
477
- ), /* @__PURE__ */ e.createElement(
484
+ ), /* @__PURE__ */ React__default.createElement(
478
485
  "path",
479
486
  {
480
487
  className: "c0",
481
488
  d: "M 760.441,33.6016 C 760.441,15.0586 745.41,0 726.848,0 c -18.551,0 -33.594,15.0586 -33.594,33.6016 0,18.5703 15.043,33.5898 33.594,33.5898 18.562,0 33.593,-15.0195 33.593,-33.5898"
482
489
  }
483
- ), /* @__PURE__ */ e.createElement(
490
+ ), /* @__PURE__ */ React__default.createElement(
484
491
  "path",
485
492
  {
486
493
  className: "c0",
487
494
  d: "m 760.441,1123.03 c 0,-18.56 -15.031,-33.6 -33.593,-33.6 -18.551,0 -33.594,15.04 -33.594,33.6 0,18.57 15.043,33.61 33.594,33.61 18.562,0 33.593,-15.04 33.593,-33.61"
488
495
  }
489
- ), /* @__PURE__ */ e.createElement(
496
+ ), /* @__PURE__ */ React__default.createElement(
490
497
  "path",
491
498
  {
492
499
  className: "c0",
493
500
  d: "m 760.441,1321.14 c 0,-18.58 -15.031,-33.62 -33.593,-33.62 -18.551,0 -33.594,15.04 -33.594,33.62 0,18.53 15.043,33.59 33.594,33.59 18.562,0 33.593,-15.06 33.593,-33.59"
494
501
  }
495
- ), /* @__PURE__ */ e.createElement(
502
+ ), /* @__PURE__ */ React__default.createElement(
496
503
  "path",
497
504
  {
498
505
  className: "c0",
499
506
  d: "m 859.48,330.711 c 0,-18.57 -15.042,-33.59 -33.605,-33.59 -18.543,0 -33.586,15.02 -33.586,33.59 0,18.559 15.043,33.582 33.586,33.582 18.563,0 33.605,-15.023 33.605,-33.582"
500
507
  }
501
- ), /* @__PURE__ */ e.createElement(
508
+ ), /* @__PURE__ */ React__default.createElement(
502
509
  "path",
503
510
  {
504
511
  className: "c0",
505
512
  d: "m 859.48,627.832 c 0,-18.566 -15.042,-33.605 -33.605,-33.605 -18.543,0 -33.586,15.039 -33.586,33.605 0,18.563 15.043,33.606 33.586,33.606 18.563,0 33.605,-15.043 33.605,-33.606"
506
513
  }
507
- ), /* @__PURE__ */ e.createElement(
514
+ ), /* @__PURE__ */ React__default.createElement(
508
515
  "path",
509
516
  {
510
517
  className: "c0",
511
518
  d: "m 859.48,1023.98 c 0,-18.54 -15.042,-33.582 -33.605,-33.582 -18.543,0 -33.586,15.042 -33.586,33.582 0,18.59 15.043,33.63 33.586,33.63 18.563,0 33.605,-15.04 33.605,-33.63"
512
519
  }
513
- ), /* @__PURE__ */ e.createElement(
520
+ ), /* @__PURE__ */ React__default.createElement(
514
521
  "path",
515
522
  {
516
523
  className: "c0",
517
524
  d: "m 958.52,429.754 c 0,-18.543 -15.047,-33.606 -33.606,-33.606 -18.539,0 -33.586,15.063 -33.586,33.606 0,18.566 15.047,33.586 33.586,33.586 18.559,0 33.606,-15.02 33.606,-33.586"
518
525
  }
519
- ), /* @__PURE__ */ e.createElement(
526
+ ), /* @__PURE__ */ React__default.createElement(
520
527
  "path",
521
528
  {
522
529
  className: "c0",
523
530
  d: "m 958.52,1222.08 c 0,-18.56 -15.047,-33.6 -33.606,-33.6 -18.539,0 -33.586,15.04 -33.586,33.6 0,18.53 15.047,33.59 33.586,33.59 18.559,0 33.606,-15.06 33.606,-33.59"
524
531
  }
525
- ), /* @__PURE__ */ e.createElement(
532
+ ), /* @__PURE__ */ React__default.createElement(
526
533
  "path",
527
534
  {
528
535
  className: "c0",
529
536
  d: "m 1057.57,726.887 c 0,-18.59 -15.05,-33.614 -33.62,-33.614 -18.54,0 -33.587,15.024 -33.587,33.614 0,18.519 15.047,33.582 33.587,33.582 18.57,0 33.62,-15.063 33.62,-33.582"
530
537
  }
531
- ), /* @__PURE__ */ e.createElement(
538
+ ), /* @__PURE__ */ React__default.createElement(
532
539
  "path",
533
540
  {
534
541
  className: "c0",
535
542
  d: "m 1057.57,1023.98 c 0,-18.54 -15.05,-33.582 -33.62,-33.582 -18.54,0 -33.587,15.042 -33.587,33.582 0,18.59 15.047,33.63 33.587,33.63 18.57,0 33.62,-15.04 33.62,-33.63"
536
543
  }
537
- ), /* @__PURE__ */ e.createElement(
544
+ ), /* @__PURE__ */ React__default.createElement(
538
545
  "path",
539
546
  {
540
547
  className: "c0",
541
548
  d: "m 1057.57,1321.14 c 0,-18.58 -15.05,-33.62 -33.62,-33.62 -18.54,0 -33.587,15.04 -33.587,33.62 0,18.53 15.047,33.59 33.587,33.59 18.57,0 33.62,-15.06 33.62,-33.59"
542
549
  }
543
- ), /* @__PURE__ */ e.createElement(
550
+ ), /* @__PURE__ */ React__default.createElement(
544
551
  "path",
545
552
  {
546
553
  className: "c0",
547
554
  d: "m 1156.6,132.629 c 0,-18.559 -15.05,-33.5899 -33.62,-33.5899 -18.53,0 -33.58,15.0309 -33.58,33.5899 0,18.562 15.05,33.633 33.58,33.633 18.57,0 33.62,-15.071 33.62,-33.633"
548
555
  }
549
- ), /* @__PURE__ */ e.createElement(
556
+ ), /* @__PURE__ */ React__default.createElement(
550
557
  "path",
551
558
  {
552
559
  className: "c0",
553
560
  d: "m 1156.6,429.754 c 0,-18.543 -15.05,-33.606 -33.62,-33.606 -18.53,0 -33.58,15.063 -33.58,33.606 0,18.566 15.05,33.586 33.58,33.586 18.57,0 33.62,-15.02 33.62,-33.586"
554
561
  }
555
- ), /* @__PURE__ */ e.createElement(
562
+ ), /* @__PURE__ */ React__default.createElement(
556
563
  "path",
557
564
  {
558
565
  className: "c0",
559
566
  d: "m 1354.66,429.754 c 0,-18.543 -15.04,-33.606 -33.6,-33.606 -18.55,0 -33.58,15.063 -33.58,33.606 0,18.566 15.03,33.586 33.58,33.586 18.56,0 33.6,-15.02 33.6,-33.586"
560
567
  }
561
- ), /* @__PURE__ */ e.createElement(
568
+ ), /* @__PURE__ */ React__default.createElement(
562
569
  "path",
563
570
  {
564
571
  className: "c0",
565
572
  d: "m 661.414,825.902 c 0,-18.554 -15.051,-33.597 -33.613,-33.597 -18.539,0 -33.586,15.043 -33.586,33.597 0,18.575 15.047,33.598 33.586,33.598 18.562,0 33.613,-15.023 33.613,-33.598"
566
573
  }
567
- ), /* @__PURE__ */ e.createElement(
574
+ ), /* @__PURE__ */ React__default.createElement(
568
575
  "path",
569
576
  {
570
577
  className: "c0",
571
578
  d: "m 1057.57,429.754 c 0,-18.543 -15.05,-33.606 -33.62,-33.606 -18.54,0 -33.587,15.063 -33.587,33.606 0,18.566 15.047,33.586 33.587,33.586 18.57,0 33.62,-15.02 33.62,-33.586"
572
579
  }
573
- ), /* @__PURE__ */ e.createElement(
580
+ ), /* @__PURE__ */ React__default.createElement(
574
581
  "path",
575
582
  {
576
583
  className: "c0",
577
584
  d: "m 760.441,528.805 c 0,-18.547 -15.031,-33.61 -33.593,-33.61 -18.551,0 -33.594,15.063 -33.594,33.61 0,18.543 15.043,33.601 33.594,33.601 18.562,0 33.593,-15.058 33.593,-33.601"
578
585
  }
579
- ), /* @__PURE__ */ e.createElement(
586
+ ), /* @__PURE__ */ React__default.createElement(
580
587
  "path",
581
588
  {
582
589
  className: "c0",
583
590
  d: "m 958.52,132.629 c 0,-18.559 -15.047,-33.5899 -33.606,-33.5899 -18.539,0 -33.586,15.0309 -33.586,33.5899 0,18.562 15.047,33.633 33.586,33.633 18.559,0 33.606,-15.071 33.606,-33.633"
584
591
  }
585
- ), /* @__PURE__ */ e.createElement(
592
+ ), /* @__PURE__ */ React__default.createElement(
586
593
  "path",
587
594
  {
588
595
  className: "c0",
589
596
  d: "m 562.383,231.68 c 0,-18.551 -15.047,-33.61 -33.621,-33.61 -18.535,0 -33.574,15.059 -33.574,33.61 0,18.558 15.039,33.601 33.574,33.601 18.574,0 33.621,-15.043 33.621,-33.601"
590
597
  }
591
- ), /* @__PURE__ */ e.createElement(
598
+ ), /* @__PURE__ */ React__default.createElement(
592
599
  "path",
593
600
  {
594
601
  className: "c0",
595
602
  d: "m 859.48,924.965 c 0,-18.555 -15.042,-33.594 -33.605,-33.594 -18.543,0 -33.586,15.039 -33.586,33.594 0,18.555 15.043,33.598 33.586,33.598 18.563,0 33.605,-15.043 33.605,-33.598"
596
603
  }
597
- ), /* @__PURE__ */ e.createElement(
604
+ ), /* @__PURE__ */ React__default.createElement(
598
605
  "path",
599
606
  {
600
607
  className: "c0",
601
608
  d: "M 859.48,33.6016 C 859.48,15.0586 844.438,0 825.875,0 c -18.543,0 -33.586,15.0586 -33.586,33.6016 0,18.5703 15.043,33.5898 33.586,33.5898 18.563,0 33.605,-15.0195 33.605,-33.5898"
602
609
  }
603
- ), /* @__PURE__ */ e.createElement(
610
+ ), /* @__PURE__ */ React__default.createElement(
604
611
  "path",
605
612
  {
606
613
  className: "c0",
607
614
  d: "m 1453.7,231.68 c 0,-18.551 -15.04,-33.61 -33.6,-33.61 -18.56,0 -33.58,15.059 -33.58,33.61 0,18.558 15.02,33.601 33.58,33.601 18.56,0 33.6,-15.043 33.6,-33.601"
608
615
  }
609
- ), /* @__PURE__ */ e.createElement(
616
+ ), /* @__PURE__ */ React__default.createElement(
610
617
  "path",
611
618
  {
612
619
  className: "c0",
613
620
  d: "m 562.383,528.805 c 0,-18.547 -15.047,-33.61 -33.621,-33.61 -18.535,0 -33.574,15.063 -33.574,33.61 0,18.543 15.039,33.601 33.574,33.601 18.574,0 33.621,-15.058 33.621,-33.601"
614
621
  }
615
- ), /* @__PURE__ */ e.createElement(
622
+ ), /* @__PURE__ */ React__default.createElement(
616
623
  "path",
617
624
  {
618
625
  className: "c0",
619
626
  d: "m 859.48,1123.03 c 0,-18.56 -15.042,-33.6 -33.605,-33.6 -18.543,0 -33.586,15.04 -33.586,33.6 0,18.57 15.043,33.61 33.586,33.61 18.563,0 33.605,-15.04 33.605,-33.61"
620
627
  }
621
- ), /* @__PURE__ */ e.createElement(
628
+ ), /* @__PURE__ */ React__default.createElement(
622
629
  "path",
623
630
  {
624
631
  className: "c0",
625
632
  d: "m 958.52,231.68 c 0,-18.551 -15.047,-33.61 -33.606,-33.61 -18.539,0 -33.586,15.059 -33.586,33.61 0,18.558 15.047,33.601 33.586,33.601 18.559,0 33.606,-15.043 33.606,-33.601"
626
633
  }
627
- ), /* @__PURE__ */ e.createElement(
634
+ ), /* @__PURE__ */ React__default.createElement(
628
635
  "path",
629
636
  {
630
637
  className: "c0",
631
638
  d: "m 1255.63,330.711 c 0,-18.57 -15.04,-33.59 -33.6,-33.59 -18.55,0 -33.59,15.02 -33.59,33.59 0,18.559 15.04,33.582 33.59,33.582 18.56,0 33.6,-15.023 33.6,-33.582"
632
639
  }
633
- ), /* @__PURE__ */ e.createElement(
640
+ ), /* @__PURE__ */ React__default.createElement(
634
641
  "path",
635
642
  {
636
643
  className: "c0",
637
644
  d: "m 463.328,825.902 c 0,-18.554 -15.039,-33.597 -33.594,-33.597 -18.55,0 -33.582,15.043 -33.582,33.597 0,18.575 15.032,33.598 33.582,33.598 18.555,0 33.594,-15.023 33.594,-33.598"
638
645
  }
639
- ), /* @__PURE__ */ e.createElement(
646
+ ), /* @__PURE__ */ React__default.createElement(
640
647
  "path",
641
648
  {
642
649
  className: "c0",
643
650
  d: "m 661.414,1321.14 c 0,-18.58 -15.051,-33.62 -33.613,-33.62 -18.539,0 -33.586,15.04 -33.586,33.62 0,18.53 15.047,33.59 33.586,33.59 18.562,0 33.613,-15.06 33.613,-33.59"
644
651
  }
645
- ), /* @__PURE__ */ e.createElement(
652
+ ), /* @__PURE__ */ React__default.createElement(
646
653
  "path",
647
654
  {
648
655
  className: "c0",
649
656
  d: "m 661.414,1023.98 c 0,-18.54 -15.051,-33.582 -33.613,-33.582 -18.539,0 -33.586,15.042 -33.586,33.582 0,18.59 15.047,33.63 33.586,33.63 18.562,0 33.613,-15.04 33.613,-33.63"
650
657
  }
651
- ), /* @__PURE__ */ e.createElement(
658
+ ), /* @__PURE__ */ React__default.createElement(
652
659
  "path",
653
660
  {
654
661
  className: "c0",
655
662
  d: "m 1156.6,330.711 c 0,-18.57 -15.05,-33.59 -33.62,-33.59 -18.53,0 -33.58,15.02 -33.58,33.59 0,18.559 15.05,33.582 33.58,33.582 18.57,0 33.62,-15.023 33.62,-33.582"
656
663
  }
657
- ), /* @__PURE__ */ e.createElement(
664
+ ), /* @__PURE__ */ React__default.createElement(
658
665
  "path",
659
666
  {
660
667
  className: "c0",
661
668
  d: "m 1255.63,132.629 c 0,-18.559 -15.04,-33.5899 -33.6,-33.5899 -18.55,0 -33.59,15.0309 -33.59,33.5899 0,18.562 15.04,33.633 33.59,33.633 18.56,0 33.6,-15.071 33.6,-33.633"
662
669
  }
663
- ), /* @__PURE__ */ e.createElement(
670
+ ), /* @__PURE__ */ React__default.createElement(
664
671
  "path",
665
672
  {
666
673
  className: "c0",
667
674
  d: "m 760.441,132.629 c 0,-18.559 -15.031,-33.5899 -33.593,-33.5899 -18.551,0 -33.594,15.0309 -33.594,33.5899 0,18.562 15.043,33.633 33.594,33.633 18.562,0 33.593,-15.071 33.593,-33.633"
668
675
  }
669
- ), /* @__PURE__ */ e.createElement(
676
+ ), /* @__PURE__ */ React__default.createElement(
670
677
  "path",
671
678
  {
672
679
  className: "c0",
673
680
  d: "m 859.48,429.754 c 0,-18.543 -15.042,-33.606 -33.605,-33.606 -18.543,0 -33.586,15.063 -33.586,33.606 0,18.566 15.043,33.586 33.586,33.586 18.563,0 33.605,-15.02 33.605,-33.586"
674
681
  }
675
- ), /* @__PURE__ */ e.createElement(
682
+ ), /* @__PURE__ */ React__default.createElement(
676
683
  "path",
677
684
  {
678
685
  className: "c0",
679
686
  d: "m 364.301,429.754 c 0,-18.543 -15.039,-33.606 -33.606,-33.606 -18.543,0 -33.586,15.063 -33.586,33.606 0,18.566 15.043,33.586 33.586,33.586 18.567,0 33.606,-15.02 33.606,-33.586"
680
687
  }
681
- ), /* @__PURE__ */ e.createElement(
688
+ ), /* @__PURE__ */ React__default.createElement(
682
689
  "path",
683
690
  {
684
691
  className: "c0",
685
692
  d: "m 67.1914,1321.14 c 0,-18.58 -15.0312,-33.62 -33.5937,-33.62 -18.543,0 -33.5977,15.04 -33.5977,33.62 0,18.53 15.0547,33.59 33.5977,33.59 18.5625,0 33.5937,-15.06 33.5937,-33.59"
686
693
  }
687
- ), /* @__PURE__ */ e.createElement(
694
+ ), /* @__PURE__ */ React__default.createElement(
688
695
  "path",
689
696
  {
690
697
  className: "c0",
691
698
  d: "m 760.441,726.887 c 0,-18.59 -15.031,-33.614 -33.593,-33.614 -18.551,0 -33.594,15.024 -33.594,33.614 0,18.519 15.043,33.582 33.594,33.582 18.562,0 33.593,-15.063 33.593,-33.582"
692
699
  }
693
- ), /* @__PURE__ */ e.createElement(
700
+ ), /* @__PURE__ */ React__default.createElement(
694
701
  "path",
695
702
  {
696
703
  className: "c0",
697
704
  d: "m 1255.63,429.754 c 0,-18.543 -15.04,-33.606 -33.6,-33.606 -18.55,0 -33.59,15.063 -33.59,33.606 0,18.566 15.04,33.586 33.59,33.586 18.56,0 33.6,-15.02 33.6,-33.586"
698
705
  }
699
- ), /* @__PURE__ */ e.createElement(
706
+ ), /* @__PURE__ */ React__default.createElement(
700
707
  "path",
701
708
  {
702
709
  className: "c0",
703
710
  d: "m 1552.75,132.629 c 0,-18.559 -15.05,-33.5899 -33.61,-33.5899 -18.56,0 -33.59,15.0309 -33.59,33.5899 0,18.562 15.03,33.633 33.59,33.633 18.56,0 33.61,-15.071 33.61,-33.633"
704
711
  }
705
- ), /* @__PURE__ */ e.createElement(
712
+ ), /* @__PURE__ */ React__default.createElement(
706
713
  "path",
707
714
  {
708
715
  className: "c0",
709
716
  d: "m 1057.57,231.68 c 0,-18.551 -15.05,-33.61 -33.62,-33.61 -18.54,0 -33.587,15.059 -33.587,33.61 0,18.558 15.047,33.601 33.587,33.601 18.57,0 33.62,-15.043 33.62,-33.601"
710
717
  }
711
- ), /* @__PURE__ */ e.createElement(
718
+ ), /* @__PURE__ */ React__default.createElement(
712
719
  "path",
713
720
  {
714
721
  className: "c0",
715
722
  d: "m 661.414,231.68 c 0,-18.551 -15.051,-33.61 -33.613,-33.61 -18.539,0 -33.586,15.059 -33.586,33.61 0,18.558 15.047,33.601 33.586,33.601 18.562,0 33.613,-15.043 33.613,-33.601"
716
723
  }
717
- ), /* @__PURE__ */ e.createElement(
724
+ ), /* @__PURE__ */ React__default.createElement(
718
725
  "path",
719
726
  {
720
727
  className: "c0",
721
728
  d: "m 958.52,825.902 c 0,-18.554 -15.047,-33.597 -33.606,-33.597 -18.539,0 -33.586,15.043 -33.586,33.597 0,18.575 15.047,33.598 33.586,33.598 18.559,0 33.606,-15.023 33.606,-33.598"
722
729
  }
723
- ), /* @__PURE__ */ e.createElement(
730
+ ), /* @__PURE__ */ React__default.createElement(
724
731
  "path",
725
732
  {
726
733
  className: "c0",
727
734
  d: "m 265.27,726.887 c 0,-18.59 -15.036,-33.614 -33.598,-33.614 -18.551,0 -33.598,15.024 -33.598,33.614 0,18.519 15.047,33.582 33.598,33.582 18.562,0 33.598,-15.063 33.598,-33.582"
728
735
  }
729
- ), /* @__PURE__ */ e.createElement(
736
+ ), /* @__PURE__ */ React__default.createElement(
730
737
  "path",
731
738
  {
732
739
  className: "c0",
733
740
  d: "m 364.301,1321.14 c 0,-18.58 -15.039,-33.62 -33.606,-33.62 -18.543,0 -33.586,15.04 -33.586,33.62 0,18.53 15.043,33.59 33.586,33.59 18.567,0 33.606,-15.06 33.606,-33.59"
734
741
  }
735
- ), /* @__PURE__ */ e.createElement(
742
+ ), /* @__PURE__ */ React__default.createElement(
736
743
  "path",
737
744
  {
738
745
  className: "c0",
739
746
  d: "m 463.328,627.832 c 0,-18.566 -15.039,-33.605 -33.594,-33.605 -18.55,0 -33.582,15.039 -33.582,33.605 0,18.563 15.032,33.606 33.582,33.606 18.555,0 33.594,-15.043 33.594,-33.606"
740
747
  }
741
- ), /* @__PURE__ */ e.createElement(
748
+ ), /* @__PURE__ */ React__default.createElement(
742
749
  "path",
743
750
  {
744
751
  className: "c0",
745
752
  d: "m 1156.6,627.832 c 0,-18.566 -15.05,-33.605 -33.62,-33.605 -18.53,0 -33.58,15.039 -33.58,33.605 0,18.563 15.05,33.606 33.58,33.606 18.57,0 33.62,-15.043 33.62,-33.606"
746
753
  }
747
- ), /* @__PURE__ */ e.createElement(
754
+ ), /* @__PURE__ */ React__default.createElement(
748
755
  "path",
749
756
  {
750
757
  className: "c1",
751
758
  d: "M 1769.41,973.348 V 809.625 h 86.8 c 36.67,0 63.74,7.016 81.22,21.055 17.47,14.035 26.21,35.519 26.21,64.461 0,52.136 -37.24,78.207 -111.73,78.207 z m 0,105.712 h 77.35 c 36.1,0 62.24,5.59 78.42,16.76 16.18,11.18 24.28,29.65 24.28,55.44 0,24.06 -8.81,41.32 -26.43,51.78 -17.61,10.46 -45.48,15.68 -83.58,15.68 h -70.04 z m -133.22,248.82 h 195.53 c 89.09,0 153.77,-12.68 194.02,-38.04 40.25,-25.35 60.38,-65.68 60.38,-120.96 0,-37.54 -8.81,-68.33 -26.43,-92.4 -17.62,-24.06 -41.04,-38.53 -70.26,-43.4 v -4.29 c 39.81,-8.89 68.54,-25.51 86.16,-49.852 17.62,-24.352 26.43,-56.727 26.43,-97.122 0,-57.3 -20.7,-101.992 -62.1,-134.074 -41.4,-32.086 -97.62,-48.129 -168.67,-48.129 h -235.06 v 628.267"
752
759
  }
753
- ), /* @__PURE__ */ e.createElement(
760
+ ), /* @__PURE__ */ React__default.createElement(
754
761
  "path",
755
762
  {
756
763
  className: "c1",
757
764
  d: "m 2441.55,1226.03 c -50.13,0 -88.95,-18.84 -116.45,-56.51 -27.51,-37.67 -41.26,-90.18 -41.26,-157.5 0,-140.086 52.57,-210.133 157.71,-210.133 44.12,0 97.55,11.027 160.29,33.09 V 723.25 c -51.57,-21.488 -109.15,-32.23 -172.75,-32.23 -91.39,0 -161.29,27.714 -209.71,83.152 -48.41,55.433 -72.62,135 -72.62,238.708 0,65.32 11.88,122.55 35.67,171.68 23.78,49.13 57.94,86.81 102.49,113.02 44.54,26.21 96.75,39.32 156.63,39.32 61.02,0 122.33,-14.76 183.93,-44.26 l -42.98,-108.29 c -23.49,11.17 -47.12,20.9 -70.9,29.22 -23.78,8.31 -47.13,12.46 -70.05,12.46"
758
765
  }
759
- ), /* @__PURE__ */ e.createElement(
766
+ ), /* @__PURE__ */ React__default.createElement(
760
767
  "path",
761
768
  {
762
769
  className: "c0",
763
770
  d: "m 2885.07,691.02 c -67.9,0 -120.76,20.839 -158.57,62.523 -37.82,41.684 -56.73,101.484 -56.73,179.414 0,79.063 19.13,140.023 57.37,182.843 38.25,42.83 92.75,64.25 163.51,64.25 22.92,0 45.62,-2.37 68.12,-7.09 22.48,-4.73 41.03,-10.82 55.64,-18.26 l -23.63,-64.47 c -39.82,14.9 -73.77,22.35 -101.85,22.35 -47.55,0 -82.65,-14.97 -105.28,-44.9 -22.63,-29.94 -33.95,-74.563 -33.95,-133.867 0,-57.008 11.32,-100.625 33.95,-130.852 22.63,-30.227 56.15,-45.336 100.56,-45.336 41.54,0 82.36,9.168 122.47,27.504 v -68.758 c -32.66,-16.902 -73.2,-25.351 -121.61,-25.351"
764
771
  }
765
- ), /* @__PURE__ */ e.createElement(
772
+ ), /* @__PURE__ */ React__default.createElement(
766
773
  "path",
767
774
  {
768
775
  className: "c0",
769
776
  d: "m 3232.73,753.328 c 43.26,0 77.28,11.672 102.06,35.024 24.78,23.347 37.18,56.507 37.18,99.484 v 42.543 l -69.62,-3.008 c -54.15,-2.008 -93.61,-10.601 -118.38,-25.785 -24.8,-15.191 -37.18,-39.106 -37.18,-71.766 0,-24.64 7.51,-43.55 22.56,-56.722 15.04,-13.18 36.17,-19.77 63.38,-19.77 z m 159.43,-53.715 -15.04,67.035 h -3.43 c -23.5,-29.507 -46.92,-49.488 -70.26,-59.945 -23.36,-10.457 -52.79,-15.683 -88.31,-15.683 -46.41,0 -82.8,12.175 -109.16,36.527 -26.35,24.344 -39.53,58.723 -39.53,103.133 0,95.679 75.49,145.82 226.47,150.406 l 79.93,3.008 v 27.926 c 0,35.82 -7.74,62.25 -23.21,79.29 -15.47,17.04 -40.25,25.57 -74.34,25.57 -24.93,0 -48.49,-3.73 -70.69,-11.17 -22.21,-7.46 -43.05,-15.76 -62.53,-24.93 l -23.63,58.02 c 23.78,12.6 49.7,22.49 77.78,29.65 28.07,7.15 55.86,10.74 83.37,10.74 57.01,0 99.41,-12.61 127.19,-37.81 27.79,-25.22 41.69,-65.33 41.69,-120.33 V 699.613 h -56.3"
770
777
  }
771
- ), /* @__PURE__ */ e.createElement(
778
+ ), /* @__PURE__ */ React__default.createElement(
772
779
  "path",
773
780
  {
774
781
  className: "c0",
775
782
  d: "m 4150.89,699.613 v 303.817 c 0,74.49 -31.94,111.73 -95.83,111.73 -43.83,0 -76.06,-12.75 -96.69,-38.25 -20.62,-25.5 -30.94,-64.45 -30.94,-116.883 V 699.613 h -76.92 v 303.817 c 0,37.24 -7.81,65.17 -23.41,83.8 -15.63,18.62 -40.05,27.93 -73.28,27.93 -43.54,0 -75.41,-13.32 -95.62,-39.96 -20.18,-26.65 -30.29,-70.34 -30.29,-131.071 V 699.613 h -77.35 v 471.837 h 62.31 l 11.6,-64.45 h 4.3 c 13.47,22.91 32.45,40.82 56.94,53.71 24.5,12.89 51.93,19.34 82.29,19.34 73.92,0 122.05,-26.36 144.39,-79.07 h 4.3 c 15.18,25.2 35.89,44.69 62.09,58.44 26.22,13.75 55.94,20.63 89.17,20.63 53.29,0 93.18,-13.75 119.68,-41.25 26.5,-27.51 39.75,-71.49 39.75,-131.93 V 699.613 h -76.49"
776
783
  }
777
- ), /* @__PURE__ */ e.createElement(
784
+ ), /* @__PURE__ */ React__default.createElement(
778
785
  "path",
779
786
  {
780
787
  className: "c0",
781
788
  d: "m 4531.25,1115.16 c -46.7,0 -80.44,-13.18 -101.21,-39.53 -20.77,-26.37 -31.43,-67.76 -32.01,-124.196 v -15.039 c 0,-63.887 10.6,-110.082 31.8,-138.59 21.2,-28.508 55.58,-42.758 103.14,-42.758 39.53,0 70.4,16.043 92.61,48.129 22.19,32.082 33.3,76.773 33.3,134.078 0,57.582 -11.11,101.626 -33.3,132.136 -22.21,30.51 -53.65,45.77 -94.33,45.77 z m 12.89,-424.14 c -63.31,0 -112.02,22.773 -146.11,68.324 h -5.15 l 1.71,-17.617 c 2.3,-22.348 3.44,-42.258 3.44,-59.731 V 488.188 h -77.35 v 683.262 h 63.6 l 10.31,-64.45 h 3.44 c 18.34,25.78 39.54,44.4 63.6,55.86 24.07,11.45 51.86,17.19 83.37,17.19 61.31,0 108.94,-21.27 142.88,-63.82 33.96,-42.54 50.93,-102.48 50.93,-179.835 0,-77.071 -17.05,-137.231 -51.14,-180.489 -34.09,-43.258 -81.94,-64.886 -143.53,-64.886"
782
789
  }
783
- ), /* @__PURE__ */ e.createElement(
790
+ ), /* @__PURE__ */ React__default.createElement(
784
791
  "path",
785
792
  {
786
793
  className: "c0",
787
794
  d: "M 4891.19,1171.45 V 867.637 c 0,-38.102 8.52,-66.395 25.57,-84.871 17.04,-18.477 43.47,-27.719 79.28,-27.719 48.42,0 83.65,13.465 105.71,40.394 22.06,26.926 33.09,70.329 33.09,130.207 v 245.802 h 77.78 V 699.613 h -63.6 l -11.17,62.309 h -3.87 c -14.03,-22.629 -33.94,-40.109 -59.73,-52.426 -25.78,-12.312 -55.72,-18.476 -89.81,-18.476 -56.73,0 -99.48,13.601 -128.28,40.824 -28.78,27.215 -43.18,70.758 -43.18,130.636 v 308.97 h 78.21"
788
795
  }
789
- ), /* @__PURE__ */ e.createElement(
796
+ ), /* @__PURE__ */ React__default.createElement(
790
797
  "path",
791
798
  {
792
799
  className: "c0",
793
800
  d: "m 5634.22,829.82 c 0,-44.117 -16.47,-78.281 -49.41,-102.488 -32.95,-24.215 -79.22,-36.312 -138.81,-36.312 -62.16,0 -111.58,9.882 -148.25,29.652 v 70.473 c 51.85,-25.211 101.84,-37.817 149.97,-37.817 38.97,0 67.33,6.301 85.09,18.91 17.76,12.606 26.64,29.5 26.64,50.707 0,18.621 -8.53,34.379 -25.56,47.27 -17.06,12.89 -47.35,27.644 -90.89,44.262 -44.41,17.191 -75.64,31.867 -93.68,44.046 -18.05,12.176 -31.31,25.852 -39.75,41.04 -8.46,15.187 -12.68,33.667 -12.68,55.437 0,38.67 15.76,69.18 47.27,91.53 31.51,22.35 74.77,33.52 129.78,33.52 53.57,0 103.7,-10.6 150.4,-31.8 l -26.21,-61.45 c -47.84,20.05 -90.96,30.08 -129.35,30.08 -32.09,0 -56.44,-5.09 -73.05,-15.25 -16.62,-10.18 -24.93,-24.14 -24.93,-41.9 0,-17.19 7.16,-31.45 21.49,-42.76 14.32,-11.33 47.7,-27.009 100.12,-47.056 39.25,-14.613 68.26,-28.223 87.03,-40.828 18.75,-12.609 32.58,-26.789 41.46,-42.543 8.88,-15.754 13.32,-34.664 13.32,-56.723"
794
801
  }
795
- ), /* @__PURE__ */ e.createElement(
802
+ ), /* @__PURE__ */ React__default.createElement(
796
803
  "path",
797
804
  {
798
805
  className: "c0",
799
806
  d: "m 2034.85,113.469 v 219.922 h 27.68 v -195.25 h 96.13 v -24.672 h -123.81"
800
807
  }
801
- ), /* @__PURE__ */ e.createElement(
808
+ ), /* @__PURE__ */ React__default.createElement(
802
809
  "path",
803
810
  {
804
811
  className: "c0",
805
812
  d: "m 2255.97,259.539 c -12.93,0 -23.18,-4.16 -30.69,-12.488 -7.51,-8.332 -11.99,-19.91 -13.38,-34.762 h 84.09 c -0.21,15.461 -3.78,27.191 -10.68,35.223 -6.93,8.008 -16.71,12.027 -29.34,12.027 z m 6.76,-149.078 c -24.77,0 -44.19,7.5 -58.29,22.488 -14.08,14.992 -21.13,35.633 -21.13,61.903 0,26.468 6.57,47.546 19.71,63.257 13.14,15.692 30.88,23.539 53.26,23.539 20.75,0 37.31,-6.687 49.63,-20.089 12.32,-13.379 18.51,-31.5 18.51,-54.368 V 190.789 H 2211.3 c 0.5,-18.75 5.27,-33 14.27,-42.719 9.05,-9.718 21.83,-14.601 38.36,-14.601 8.84,0 17.21,0.781 25.13,2.34 7.92,1.55 17.21,4.589 27.82,9.089 v -23.75 c -9.12,-3.918 -17.69,-6.679 -25.7,-8.277 -8.04,-1.601 -17.52,-2.41 -28.45,-2.41"
806
813
  }
807
- ), /* @__PURE__ */ e.createElement(
814
+ ), /* @__PURE__ */ React__default.createElement(
808
815
  "path",
809
816
  {
810
817
  className: "c0",
811
818
  d: "m 2412.41,132.27 c 15.14,0 27.05,4.089 35.74,12.261 8.67,8.168 13,19.789 13,34.828 v 14.879 l -24.36,-1.039 c -18.96,-0.699 -32.78,-3.711 -41.44,-9.027 -8.69,-5.32 -13.03,-13.684 -13.03,-25.113 0,-8.629 2.65,-15.25 7.9,-19.86 5.27,-4.617 12.66,-6.929 22.19,-6.929 z m 55.81,-18.801 -5.27,23.472 h -1.2 c -8.21,-10.332 -16.41,-17.332 -24.6,-20.992 -8.16,-3.66 -18.46,-5.488 -30.9,-5.488 -16.25,0 -28.98,4.258 -38.22,12.777 -9.22,8.543 -13.82,20.571 -13.82,36.114 0,33.5 26.41,51.039 79.26,52.66 l 27.99,1.039 v 9.789 c 0,12.519 -2.72,21.781 -8.13,27.75 -5.42,5.949 -14.08,8.949 -26.02,8.949 -8.74,0 -16.97,-1.309 -24.74,-3.918 -7.78,-2.601 -15.07,-5.512 -21.88,-8.723 l -8.28,20.313 c 8.33,4.41 17.4,7.871 27.22,10.379 9.82,2.5 19.57,3.762 29.19,3.762 19.96,0 34.78,-4.422 44.53,-13.243 9.72,-8.82 14.59,-22.871 14.59,-42.121 V 113.469 h -19.72"
812
819
  }
813
- ), /* @__PURE__ */ e.createElement(
820
+ ), /* @__PURE__ */ React__default.createElement(
814
821
  "path",
815
822
  {
816
823
  className: "c0",
817
824
  d: "m 2616.1,281.648 c 7.31,0 13.77,-0.597 19.4,-1.808 l -3.32,-24.969 c -6.12,1.41 -12.09,2.109 -17.91,2.109 -8.71,0 -16.82,-2.41 -24.29,-7.218 -7.46,-4.821 -13.31,-11.461 -17.52,-19.93 -4.21,-8.492 -6.33,-17.883 -6.33,-28.211 v -88.152 h -27.05 v 165.172 h 22.24 l 3.03,-30.243 h 1.21 c 6.3,10.942 13.76,19.204 22.4,24.821 8.62,5.621 18.01,8.429 28.14,8.429"
818
825
  }
819
- ), /* @__PURE__ */ e.createElement(
826
+ ), /* @__PURE__ */ React__default.createElement(
820
827
  "path",
821
828
  {
822
829
  className: "c0",
823
830
  d: "M 2785.01,113.469 V 219.07 c 0,13.442 -2.99,23.442 -8.93,30.012 -5.97,6.559 -15.33,9.859 -28.06,9.859 -16.95,0 -29.27,-4.691 -36.93,-14.07 -7.67,-9.391 -11.52,-24.641 -11.52,-45.812 v -85.59 h -27.06 v 165.172 h 21.81 l 4.04,-22.571 h 1.52 c 5.13,8.129 12.27,14.418 21.52,18.891 9.21,4.449 19.39,6.687 30.54,6.687 20.24,0 35.28,-4.91 45.1,-14.738 9.85,-9.84 14.76,-25.129 14.76,-45.879 V 113.469 h -26.79"
824
831
  }
825
- ), /* @__PURE__ */ e.createElement(
832
+ ), /* @__PURE__ */ React__default.createElement(
826
833
  "path",
827
834
  {
828
835
  className: "c0",
829
836
  d: "m 2889.99,113.469 h -27.05 v 165.172 h 27.05 z m -29.17,209.851 c 0,6.02 1.52,10.371 4.6,13.078 3.06,2.711 6.83,4.063 11.34,4.063 4.23,0 7.91,-1.352 11.07,-4.063 3.15,-2.707 4.74,-7.058 4.74,-13.078 0,-5.922 -1.59,-10.289 -4.74,-13.09 -3.16,-2.808 -6.84,-4.21 -11.07,-4.21 -4.51,0 -8.28,1.402 -11.34,4.21 -3.08,2.801 -4.6,7.168 -4.6,13.09"
830
837
  }
831
- ), /* @__PURE__ */ e.createElement(
838
+ ), /* @__PURE__ */ React__default.createElement(
832
839
  "path",
833
840
  {
834
841
  className: "c0",
835
842
  d: "M 3054.86,113.469 V 219.07 c 0,13.442 -2.99,23.442 -8.93,30.012 -5.97,6.559 -15.33,9.859 -28.06,9.859 -16.95,0 -29.27,-4.691 -36.92,-14.07 -7.68,-9.391 -11.53,-24.641 -11.53,-45.812 v -85.59 h -27.06 v 165.172 h 21.81 l 4.04,-22.571 h 1.52 c 5.13,8.129 12.27,14.418 21.52,18.891 9.22,4.449 19.4,6.687 30.54,6.687 20.24,0 35.28,-4.91 45.1,-14.738 9.85,-9.84 14.76,-25.129 14.76,-45.879 V 113.469 h -26.79"
836
843
  }
837
- ), /* @__PURE__ */ e.createElement(
844
+ ), /* @__PURE__ */ React__default.createElement(
838
845
  "path",
839
846
  {
840
847
  className: "c0",
841
848
  d: "m 3195.68,132.582 c 16.66,0 28.76,4.477 36.32,13.457 7.58,8.973 11.36,23.391 11.36,43.25 v 6.473 c 0,22.058 -3.8,38.097 -11.43,48.136 -7.61,10.024 -19.91,15.043 -36.85,15.043 -13.84,0 -24.55,-5.5 -32.11,-16.48 -7.58,-10.981 -11.36,-26.652 -11.36,-47.012 0,-20.461 3.68,-36.039 11.05,-46.777 7.36,-10.731 18.39,-16.09 33.02,-16.09 z m 47.39,-17.602 0.89,20.301 h -1.2 c -11.12,-16.543 -28.19,-24.82 -51.15,-24.82 -21.34,0 -38.02,7.449 -50.01,22.34 -11.99,14.898 -17.98,35.879 -17.98,62.961 0,26.57 6.04,47.527 18.12,62.867 12.09,15.351 28.62,23.019 49.58,23.019 22.36,0 39.62,-8.328 51.75,-24.968 h 1.66 l 3.61,21.961 h 21.49 V 110.762 c 0,-23.6722 -5.99,-41.4729 -17.97,-53.3909 -11.99,-11.9414 -30.62,-17.9102 -55.89,-17.9102 -24.07,0 -43.85,3.5196 -59.4,10.5274 v 24.9726 c 16.03,-8.6289 36.34,-12.9296 60.92,-12.9296 14.03,0 25.15,4.1093 33.31,12.3281 8.18,8.2226 12.27,19.6015 12.27,34.1526 v 6.468"
842
849
  }
843
- ), /* @__PURE__ */ e.createElement(
850
+ ), /* @__PURE__ */ React__default.createElement(
844
851
  "path",
845
852
  {
846
853
  className: "c0",
847
854
  d: "m 3318.28,130.172 c 0,3.808 0.51,7.039 1.5,9.699 1.01,2.649 2.35,4.82 4.06,6.469 1.71,1.66 3.71,2.859 6.02,3.609 2.31,0.75 4.81,1.133 7.51,1.133 2.62,0 5.1,-0.383 7.46,-1.133 2.36,-0.75 4.38,-1.949 6.09,-3.609 1.71,-1.649 3.06,-3.82 4.07,-6.469 0.98,-2.66 1.49,-5.891 1.49,-9.699 0,-3.711 -0.51,-6.902 -1.49,-9.551 -1.01,-2.66 -2.36,-4.84 -4.07,-6.551 -1.71,-1.711 -3.73,-2.961 -6.09,-3.75 -2.36,-0.808 -4.84,-1.199 -7.46,-1.199 -2.7,0 -5.2,0.391 -7.51,1.199 -2.31,0.789 -4.31,2.039 -6.02,3.75 -1.71,1.711 -3.05,3.891 -4.06,6.551 -0.99,2.649 -1.5,5.84 -1.5,9.551"
848
855
  }
849
- ), /* @__PURE__ */ e.createElement(
856
+ ), /* @__PURE__ */ React__default.createElement(
850
857
  "path",
851
858
  {
852
859
  className: "c0",
853
860
  d: "m 3635.67,224.641 c 0,27.968 -6.91,49.16 -20.68,63.55 -13.79,14.379 -34.63,21.579 -62.5,21.579 h -36.1 V 137.238 h 29.94 c 59.54,0 89.34,29.133 89.34,87.403 z m 29.17,0.89 c 0,-36.293 -9.89,-64.051 -29.7,-83.25 -19.81,-19.211 -48.21,-28.812 -85.2,-28.812 h -61.23 v 219.922 h 67.68 c 34.2,0 60.82,-9.403 79.88,-28.2 19.06,-18.8 28.57,-45.359 28.57,-79.66"
854
861
  }
855
- ), /* @__PURE__ */ e.createElement(
862
+ ), /* @__PURE__ */ React__default.createElement(
856
863
  "path",
857
864
  {
858
865
  className: "c0",
859
866
  d: "m 3728.64,196.359 c 0,-20.769 4.07,-36.527 12.25,-47.32 8.19,-10.777 20.25,-16.168 36.18,-16.168 15.74,0 27.73,5.391 35.96,16.168 8.23,10.793 12.34,26.551 12.34,47.32 0,20.75 -4.14,36.371 -12.42,46.852 -8.28,10.48 -20.38,15.73 -36.34,15.73 -31.98,0 -47.97,-20.871 -47.97,-62.582 z m 124.7,0 c 0,-26.98 -6.81,-48.039 -20.46,-63.179 -13.64,-15.149 -32.49,-22.719 -56.56,-22.719 -14.94,0 -28.18,3.48 -39.71,10.461 -11.53,6.969 -20.41,16.969 -26.62,30 -6.23,13.047 -9.34,28.18 -9.34,45.437 0,26.871 6.72,47.801 20.17,62.801 13.43,14.988 32.28,22.488 56.56,22.488 23.25,0 41.74,-7.66 55.43,-22.937 13.7,-15.301 20.53,-36.082 20.53,-62.352"
860
867
  }
861
- ), /* @__PURE__ */ e.createElement(
868
+ ), /* @__PURE__ */ React__default.createElement(
862
869
  "path",
863
870
  {
864
871
  className: "c0",
865
872
  d: "m 3923.26,113.469 h -27.05 v 165.172 h 27.05 z m -29.17,209.851 c 0,6.02 1.51,10.371 4.59,13.078 3.06,2.711 6.84,4.063 11.34,4.063 4.24,0 7.92,-1.352 11.07,-4.063 3.16,-2.707 4.74,-7.058 4.74,-13.078 0,-5.922 -1.58,-10.289 -4.74,-13.09 -3.15,-2.808 -6.83,-4.21 -11.07,-4.21 -4.5,0 -8.28,1.402 -11.34,4.21 -3.08,2.801 -4.59,7.168 -4.59,13.09"
866
873
  }
867
- ), /* @__PURE__ */ e.createElement(
874
+ ), /* @__PURE__ */ React__default.createElement(
868
875
  "path",
869
876
  {
870
877
  className: "c0",
871
878
  d: "M 4088.12,113.469 V 219.07 c 0,13.442 -2.98,23.442 -8.92,30.012 -5.97,6.559 -15.34,9.859 -28.07,9.859 -16.94,0 -29.26,-4.691 -36.92,-14.07 -7.68,-9.391 -11.53,-24.641 -11.53,-45.812 v -85.59 h -27.05 v 165.172 h 21.81 l 4.04,-22.571 h 1.52 c 5.12,8.129 12.27,14.418 21.51,18.891 9.22,4.449 19.4,6.687 30.55,6.687 20.24,0 35.28,-4.91 45.1,-14.738 9.84,-9.84 14.75,-25.129 14.75,-45.879 V 113.469 h -26.79"
872
879
  }
873
- ), /* @__PURE__ */ e.createElement(
880
+ ), /* @__PURE__ */ React__default.createElement(
874
881
  "path",
875
882
  {
876
883
  className: "c0",
877
884
  d: "m 4228.95,132.582 c 16.65,0 28.76,4.477 36.32,13.457 7.58,8.973 11.36,23.391 11.36,43.25 v 6.473 c 0,22.058 -3.81,38.097 -11.44,48.136 -7.6,10.024 -19.9,15.043 -36.84,15.043 -13.84,0 -24.55,-5.5 -32.11,-16.48 -7.58,-10.981 -11.36,-26.652 -11.36,-47.012 0,-20.461 3.68,-36.039 11.05,-46.777 7.36,-10.731 18.38,-16.09 33.02,-16.09 z m 47.39,-17.602 0.89,20.301 h -1.21 c -11.12,-16.543 -28.18,-24.82 -51.14,-24.82 -21.35,0 -38.03,7.449 -50.01,22.34 -11.99,14.898 -17.98,35.879 -17.98,62.961 0,26.57 6.04,47.527 18.12,62.867 12.08,15.351 28.62,23.019 49.58,23.019 22.36,0 39.62,-8.328 51.75,-24.968 h 1.66 l 3.61,21.961 h 21.49 V 110.762 c 0,-23.6722 -5.99,-41.4729 -17.98,-53.3909 -11.98,-11.9414 -30.61,-17.9102 -55.88,-17.9102 -24.07,0 -43.86,3.5196 -59.4,10.5274 v 24.9726 c 16.03,-8.6289 36.34,-12.9296 60.91,-12.9296 14.03,0 25.15,4.1093 33.31,12.3281 8.19,8.2226 12.28,19.6015 12.28,34.1526 v 6.468"
878
885
  }
879
- ), /* @__PURE__ */ e.createElement(
886
+ ), /* @__PURE__ */ React__default.createElement(
880
887
  "path",
881
888
  {
882
889
  className: "c0",
883
890
  d: "m 4351.55,130.172 c 0,3.808 0.51,7.039 1.49,9.699 1.01,2.649 2.36,4.82 4.07,6.469 1.71,1.66 3.71,2.859 6.02,3.609 2.31,0.75 4.81,1.133 7.51,1.133 2.62,0 5.1,-0.383 7.46,-1.133 2.36,-0.75 4.38,-1.949 6.09,-3.609 1.7,-1.649 3.05,-3.82 4.06,-6.469 0.99,-2.66 1.5,-5.891 1.5,-9.699 0,-3.711 -0.51,-6.902 -1.5,-9.551 -1.01,-2.66 -2.36,-4.84 -4.06,-6.551 -1.71,-1.711 -3.73,-2.961 -6.09,-3.75 -2.36,-0.808 -4.84,-1.199 -7.46,-1.199 -2.7,0 -5.2,0.391 -7.51,1.199 -2.31,0.789 -4.31,2.039 -6.02,3.75 -1.71,1.711 -3.06,3.891 -4.07,6.551 -0.98,2.649 -1.49,5.84 -1.49,9.551"
884
891
  }
885
- ), /* @__PURE__ */ e.createElement(
892
+ ), /* @__PURE__ */ React__default.createElement(
886
893
  "path",
887
894
  {
888
895
  className: "c0",
889
896
  d: "m 4521.98,113.469 v 219.922 h 27.67 v -195.25 h 96.13 v -24.672 h -123.8"
890
897
  }
891
- ), /* @__PURE__ */ e.createElement(
898
+ ), /* @__PURE__ */ React__default.createElement(
892
899
  "path",
893
900
  {
894
901
  className: "c0",
895
902
  d: "m 4743.09,259.539 c -12.93,0 -23.18,-4.16 -30.69,-12.488 -7.51,-8.332 -11.98,-19.91 -13.38,-34.762 h 84.09 c -0.21,15.461 -3.77,27.191 -10.68,35.223 -6.93,8.008 -16.71,12.027 -29.34,12.027 z m 6.76,-149.078 c -24.76,0 -44.19,7.5 -58.29,22.488 -14.08,14.992 -21.13,35.633 -21.13,61.903 0,26.468 6.57,47.546 19.71,63.257 13.14,15.692 30.88,23.539 53.26,23.539 20.75,0 37.31,-6.687 49.63,-20.089 12.32,-13.379 18.51,-31.5 18.51,-54.368 v -16.402 h -113.12 c 0.5,-18.75 5.27,-33 14.27,-42.719 9.05,-9.718 21.83,-14.601 38.37,-14.601 8.83,0 17.2,0.781 25.12,2.34 7.92,1.55 17.21,4.589 27.83,9.089 v -23.75 c -9.13,-3.918 -17.69,-6.679 -25.71,-8.277 -8.04,-1.601 -17.52,-2.41 -28.45,-2.41"
896
903
  }
897
- ), /* @__PURE__ */ e.createElement(
904
+ ), /* @__PURE__ */ React__default.createElement(
898
905
  "path",
899
906
  {
900
907
  className: "c0",
901
908
  d: "m 4899.53,132.27 c 15.14,0 27.05,4.089 35.74,12.261 8.67,8.168 13,19.789 13,34.828 v 14.879 l -24.36,-1.039 c -18.96,-0.699 -32.78,-3.711 -41.44,-9.027 -8.69,-5.32 -13.02,-13.684 -13.02,-25.113 0,-8.629 2.64,-15.25 7.89,-19.86 5.27,-4.617 12.66,-6.929 22.19,-6.929 z m 55.81,-18.801 -5.27,23.472 h -1.2 c -8.21,-10.332 -16.41,-17.332 -24.6,-20.992 -8.16,-3.66 -18.46,-5.488 -30.9,-5.488 -16.25,0 -28.98,4.258 -38.22,12.777 -9.22,8.543 -13.82,20.571 -13.82,36.114 0,33.5 26.41,51.039 79.26,52.66 l 27.99,1.039 v 9.789 c 0,12.519 -2.72,21.781 -8.13,27.75 -5.42,5.949 -14.08,8.949 -26.02,8.949 -8.74,0 -16.97,-1.309 -24.74,-3.918 -7.78,-2.601 -15.07,-5.512 -21.88,-8.723 l -8.28,20.313 c 8.33,4.41 17.4,7.871 27.22,10.379 9.82,2.5 19.57,3.762 29.2,3.762 19.95,0 34.77,-4.422 44.52,-13.243 9.73,-8.82 14.59,-22.871 14.59,-42.121 V 113.469 h -19.72"
902
909
  }
903
- ), /* @__PURE__ */ e.createElement(
910
+ ), /* @__PURE__ */ React__default.createElement(
904
911
  "path",
905
912
  {
906
913
  className: "c0",
907
914
  d: "m 5089.07,132.871 c 16.44,0 28.45,4.488 36.03,13.469 7.55,8.969 11.36,23.691 11.36,44.148 v 4.961 c 0,22.973 -3.85,39.34 -11.51,49.121 -7.68,9.77 -19.73,14.66 -36.17,14.66 -13.96,0 -24.74,-5.539 -32.35,-16.621 -7.63,-11.078 -11.43,-26.898 -11.43,-47.449 0,-20.461 3.78,-35.961 11.36,-46.488 7.56,-10.531 18.46,-15.801 32.71,-15.801 z m -4.36,-22.41 c -21.47,0 -38.12,7.43 -49.94,22.269 -11.84,14.829 -17.76,35.852 -17.76,63.032 0,26.968 5.94,48.027 17.83,63.179 11.89,15.141 28.59,22.707 50.16,22.707 22.17,0 39.21,-8.128 51.14,-24.367 h 1.98 c -0.31,2.008 -0.72,6.039 -1.21,12.098 -0.5,6.07 -0.77,10.16 -0.77,12.269 v 65.883 h 27.08 V 113.469 h -21.8 l -4.07,22.121 h -1.21 c -11.52,-16.75 -28.66,-25.129 -51.43,-25.129"
908
915
  }
909
- ), /* @__PURE__ */ e.createElement(
916
+ ), /* @__PURE__ */ React__default.createElement(
910
917
  "path",
911
918
  {
912
919
  className: "c0",
913
920
  d: "m 5242.81,113.469 h -27.05 v 165.172 h 27.05 z m -29.17,209.851 c 0,6.02 1.52,10.371 4.6,13.078 3.06,2.711 6.84,4.063 11.34,4.063 4.23,0 7.91,-1.352 11.07,-4.063 3.15,-2.707 4.74,-7.058 4.74,-13.078 0,-5.922 -1.59,-10.289 -4.74,-13.09 -3.16,-2.808 -6.84,-4.21 -11.07,-4.21 -4.5,0 -8.28,1.402 -11.34,4.21 -3.08,2.801 -4.6,7.168 -4.6,13.09"
914
921
  }
915
- ), /* @__PURE__ */ e.createElement(
922
+ ), /* @__PURE__ */ React__default.createElement(
916
923
  "path",
917
924
  {
918
925
  className: "c0",
919
926
  d: "M 5407.68,113.469 V 219.07 c 0,13.442 -2.98,23.442 -8.93,30.012 -5.97,6.559 -15.33,9.859 -28.06,9.859 -16.95,0 -29.27,-4.691 -36.92,-14.07 -7.68,-9.391 -11.53,-24.641 -11.53,-45.812 v -85.59 h -27.05 v 165.172 h 21.8 l 4.05,-22.571 h 1.51 c 5.13,8.129 12.28,14.418 21.52,18.891 9.22,4.449 19.4,6.687 30.54,6.687 20.24,0 35.28,-4.91 45.1,-14.738 9.85,-9.84 14.76,-25.129 14.76,-45.879 V 113.469 h -26.79"
920
927
  }
921
- ), /* @__PURE__ */ e.createElement(
928
+ ), /* @__PURE__ */ React__default.createElement(
922
929
  "path",
923
930
  {
924
931
  className: "c0",
925
932
  d: "m 5548.48,132.582 c 16.65,0 28.76,4.477 36.32,13.457 7.58,8.973 11.36,23.391 11.36,43.25 v 6.473 c 0,22.058 -3.81,38.097 -11.44,48.136 -7.6,10.024 -19.9,15.043 -36.84,15.043 -13.84,0 -24.55,-5.5 -32.11,-16.48 -7.58,-10.981 -11.36,-26.652 -11.36,-47.012 0,-20.461 3.68,-36.039 11.05,-46.777 7.36,-10.731 18.38,-16.09 33.02,-16.09 z m 47.39,-17.602 0.89,20.301 h -1.2 c -11.12,-16.543 -28.19,-24.82 -51.15,-24.82 -21.35,0 -38.03,7.449 -50.01,22.34 -11.99,14.898 -17.98,35.879 -17.98,62.961 0,26.57 6.04,47.527 18.12,62.867 12.08,15.351 28.62,23.019 49.58,23.019 22.36,0 39.62,-8.328 51.75,-24.968 h 1.66 l 3.61,21.961 h 21.49 V 110.762 c 0,-23.6722 -5.99,-41.4729 -17.98,-53.3909 -11.98,-11.9414 -30.61,-17.9102 -55.88,-17.9102 -24.07,0 -43.85,3.5196 -59.4,10.5274 v 24.9726 c 16.03,-8.6289 36.34,-12.9296 60.91,-12.9296 14.04,0 25.15,4.1093 33.31,12.3281 8.19,8.2226 12.28,19.6015 12.28,34.1526 v 6.468"
926
933
  }
927
- ), /* @__PURE__ */ e.createElement(
934
+ ), /* @__PURE__ */ React__default.createElement(
928
935
  "path",
929
936
  {
930
937
  className: "c0",
@@ -933,12 +940,13 @@ function f({ variant: c, colors: a, ...t }) {
933
940
  )))
934
941
  );
935
942
  }
936
- function k({ children: c, asChild: a, ...t }) {
937
- return /* @__PURE__ */ s(u, { py: "none", className: "sticky top-0 right-0 left-0 z-50 bg-background", ...t, children: /* @__PURE__ */ o(a ? i : "div", { className: "h-page-nav overflow-hidden flex flex-row flex-nowrap border-b-1 border-b-complement-1-50 gap-2 sm:gap-12 justify-between items-center sm:justify-start", children: [
938
- /* @__PURE__ */ s("div", { className: "py-4 h-full", children: /* @__PURE__ */ s(f, { height: "100%", variant: "color" }) }),
939
- c
943
+ function PageHeader({ children, asChild, ...props }) {
944
+ const Comp = asChild ? Slot : "div";
945
+ return /* @__PURE__ */ jsx(PageSection, { py: "none", className: "sticky top-0 right-0 left-0 z-50 bg-background", ...props, children: /* @__PURE__ */ jsxs(Comp, { className: "h-page-nav overflow-hidden flex flex-row flex-nowrap border-b-1 border-b-complement-1-50 gap-2 sm:gap-12 justify-between items-center sm:justify-start", children: [
946
+ /* @__PURE__ */ jsx("div", { className: "py-4 h-full", children: /* @__PURE__ */ jsx(LogoBCcampusWithTagline, { height: "100%", variant: "color" }) }),
947
+ children
940
948
  ] }) });
941
949
  }
942
950
  export {
943
- k as PageHeader
951
+ PageHeader
944
952
  };