@evergis/react 3.1.131 → 3.1.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/react.esm.js CHANGED
@@ -3,7 +3,7 @@ import { IconButton, Flex, transition, Chip, Icon, Description, FlexSpan, IconTo
3
3
  import { useState, useMemo, useCallback, useRef, useEffect, createContext, memo, useContext, Fragment } from 'react';
4
4
  import styled, { createGlobalStyle, css, useTheme } from 'styled-components';
5
5
  import { lineChartClassNames, BarChart as BarChart$1, barChartClassNames, LineChart, PieChart } from '@evergis/charts';
6
- import { AttributeType, STORAGE_TOKEN_KEY, generateId, GeometryType, RemoteTaskStatus } from '@evergis/api';
6
+ import { AttributeType, STORAGE_TOKEN_KEY, generateId, parseJwt, STORAGE_REFRESH_TOKEN_KEY, GeometryType, RemoteTaskStatus } from '@evergis/api';
7
7
  import Gradient from 'javascript-color-gradient';
8
8
  import { Color as Color$1 } from '@evergis/color';
9
9
  import { isValid, format, parseJSON, parseISO, toDate } from 'date-fns';
@@ -34,180 +34,180 @@ const AddFeatureButton = ({ title, icon = "feature_add" /* , layerName, geometry
34
34
  return (jsx(IconButton, { kind: icon, primary: true, onClick: handleAddFeature, children: title }));
35
35
  };
36
36
 
37
- const ChartTooltipTable = styled.table `
38
- td {
39
- padding: 0;
40
- }
41
-
42
- tr:not(:last-child) td {
43
- padding-bottom: 0.375rem;
44
- }
37
+ const ChartTooltipTable = styled.table `
38
+ td {
39
+ padding: 0;
40
+ }
41
+
42
+ tr:not(:last-child) td {
43
+ padding-bottom: 0.375rem;
44
+ }
45
45
  `;
46
- const ChartTooltip = styled(Flex) `
47
- flex-wrap: nowrap;
48
- background: rgb(48, 69, 79);
49
- border-radius: 0.25rem;
50
- color: white;
51
-
52
- :not(:last-child) {
53
- margin-bottom: 0.25rem;
54
- }
46
+ const ChartTooltip = styled(Flex) `
47
+ flex-wrap: nowrap;
48
+ background: rgb(48, 69, 79);
49
+ border-radius: 0.25rem;
50
+ color: white;
51
+
52
+ :not(:last-child) {
53
+ margin-bottom: 0.25rem;
54
+ }
55
55
  `;
56
- const ChartTooltipLabel = styled.div `
57
- margin-right: 0.25rem;
58
- `;
59
- const ChartTooltipColor = styled.div `
60
- width: 0.625rem;
61
- height: 0.625rem;
62
- background-color: ${({ $color }) => $color};
63
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
64
- margin-right: 0.25rem;
65
- `;
66
- const ChartLegendColor$1 = styled.div `
67
- width: 0.5rem;
68
- height: 0.5rem;
69
- background-color: ${({ $color }) => $color};
70
- border-radius: 0.125rem;
71
- `;
72
- const ChartLegendValue = styled.div `
73
- opacity: 0.65;
74
- `;
75
- const ChartTooltipRow = styled(Flex) `
76
- display: flex;
77
- flex-direction: row;
78
- flex-wrap: nowrap;
79
- align-items: center;
80
- margin-top: 0.5rem;
81
- line-height: 0;
82
-
83
- ${ChartLegendColor$1} {
84
- margin-right: 0.25rem;
85
- }
56
+ const ChartTooltipLabel = styled.div `
57
+ margin-right: 0.25rem;
58
+ `;
59
+ const ChartTooltipColor = styled.div `
60
+ width: 0.625rem;
61
+ height: 0.625rem;
62
+ background-color: ${({ $color }) => $color};
63
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
64
+ margin-right: 0.25rem;
65
+ `;
66
+ const ChartLegendColor$1 = styled.div `
67
+ width: 0.5rem;
68
+ height: 0.5rem;
69
+ background-color: ${({ $color }) => $color};
70
+ border-radius: 0.125rem;
71
+ `;
72
+ const ChartLegendValue = styled.div `
73
+ opacity: 0.65;
74
+ `;
75
+ const ChartTooltipRow = styled(Flex) `
76
+ display: flex;
77
+ flex-direction: row;
78
+ flex-wrap: nowrap;
79
+ align-items: center;
80
+ margin-top: 0.5rem;
81
+ line-height: 0;
82
+
83
+ ${ChartLegendColor$1} {
84
+ margin-right: 0.25rem;
85
+ }
86
86
  `;
87
- const ChartTooltipName = styled.div `
88
- margin-right: 1rem;
89
- opacity: 0.65;
90
- `;
91
- const PieChartCenter = styled.div `
92
- position: absolute;
93
- top: 50%;
94
- left: 50%;
95
- transform: translate(-50%, -50%);
96
- text-align: center;
97
- font-weight: bold;
98
- font-size: 1.5rem;
99
- `;
100
- const ChartWrapperContainer = styled.div `
101
- position: relative;
102
- width: 100%;
103
- `;
104
- const Tooltip = styled.div `
105
- position: relative;
106
- border-radius: 0.25rem;
107
- background-color: rgba(28, 33, 48);
108
- padding: 0.5rem;
109
- box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
110
- font-size: 0.75rem;
111
- transform: ${({ transform }) => transform};
112
- color: white;
113
-
114
- :before {
115
- position: absolute;
116
- display: block;
117
- content: "";
118
- width: 0;
119
- height: 0;
120
- }
87
+ const ChartTooltipName = styled.div `
88
+ margin-right: 1rem;
89
+ opacity: 0.65;
90
+ `;
91
+ const PieChartCenter = styled.div `
92
+ position: absolute;
93
+ top: 50%;
94
+ left: 50%;
95
+ transform: translate(-50%, -50%);
96
+ text-align: center;
97
+ font-weight: bold;
98
+ font-size: 1.5rem;
99
+ `;
100
+ const ChartWrapperContainer = styled.div `
101
+ position: relative;
102
+ width: 100%;
103
+ `;
104
+ const Tooltip = styled.div `
105
+ position: relative;
106
+ border-radius: 0.25rem;
107
+ background-color: rgba(28, 33, 48);
108
+ padding: 0.5rem;
109
+ box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.15);
110
+ font-size: 0.75rem;
111
+ transform: ${({ transform }) => transform};
112
+ color: white;
113
+
114
+ :before {
115
+ position: absolute;
116
+ display: block;
117
+ content: "";
118
+ width: 0;
119
+ height: 0;
120
+ }
121
121
  `;
122
- const LineChartStyles = createGlobalStyle `
123
- .dashboardLineChartTooltip.${lineChartClassNames.lineChartMouseLabel} {
124
- .${lineChartClassNames.lineChartLabelFlex} {
125
- justify-content: center;
126
- align-items: flex-end;
127
-
128
- ${Tooltip} {
129
- margin: 0 0 12px 0;
130
-
131
- :before {
132
- top: auto;
133
- bottom: 0;
134
- left: 50%;
135
- transform: translate(-50%, 100%);
136
- border-left: 4px solid transparent;
137
- border-right: 4px solid transparent;
138
- border-top: 4px solid rgba(28, 33, 48, 0.9);
139
- }
140
- }
141
- }
142
- }
143
-
144
- .${lineChartClassNames.lineChartYScaleGlobal}, .${lineChartClassNames.lineChartXScaleGlobal} {
145
- .domain {
146
- visibility: hidden;
147
- }
148
-
149
- .tick {
150
- text {
151
- fill: ${({ theme: { palette } }) => palette.textDisabled};
152
- }
153
-
154
- line {
155
- visibility: hidden;
156
- }
157
- }
158
- }
159
-
160
- .${lineChartClassNames.lineChartXScaleGlobal} {
161
- .tick {
162
- :first-of-type {
163
- text {
164
- text-anchor: start;
165
- }
166
- }
167
-
168
- :last-of-type {
169
- text {
170
- text-anchor: end;
171
- }
172
- }
173
- }
174
- }
175
-
176
- .${lineChartClassNames.lineChartLine} {
177
- stroke-width: 2px;
178
- }
179
-
180
- .${lineChartClassNames.lineChartLabel} {
181
- color: ${({ theme: { palette } }) => palette.textPrimary};
182
- }
183
-
184
- .${lineChartClassNames.lineChartMouseCircle} {
185
- stroke: #ffffff;
186
- stroke-width: 2px;
187
- }
188
-
189
- .${lineChartClassNames.lineChartGridLineX} {
190
- stroke: ${({ theme: { palette } }) => palette.element};
191
- }
192
-
193
- text {
194
- fill: ${({ theme: { palette } }) => palette.textDisabled};
195
- }
122
+ const LineChartStyles = createGlobalStyle `
123
+ .dashboardLineChartTooltip.${lineChartClassNames.lineChartMouseLabel} {
124
+ .${lineChartClassNames.lineChartLabelFlex} {
125
+ justify-content: center;
126
+ align-items: flex-end;
127
+
128
+ ${Tooltip} {
129
+ margin: 0 0 12px 0;
130
+
131
+ :before {
132
+ top: auto;
133
+ bottom: 0;
134
+ left: 50%;
135
+ transform: translate(-50%, 100%);
136
+ border-left: 4px solid transparent;
137
+ border-right: 4px solid transparent;
138
+ border-top: 4px solid rgba(28, 33, 48, 0.9);
139
+ }
140
+ }
141
+ }
142
+ }
143
+
144
+ .${lineChartClassNames.lineChartYScaleGlobal}, .${lineChartClassNames.lineChartXScaleGlobal} {
145
+ .domain {
146
+ visibility: hidden;
147
+ }
148
+
149
+ .tick {
150
+ text {
151
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
152
+ }
153
+
154
+ line {
155
+ visibility: hidden;
156
+ }
157
+ }
158
+ }
159
+
160
+ .${lineChartClassNames.lineChartXScaleGlobal} {
161
+ .tick {
162
+ :first-of-type {
163
+ text {
164
+ text-anchor: start;
165
+ }
166
+ }
167
+
168
+ :last-of-type {
169
+ text {
170
+ text-anchor: end;
171
+ }
172
+ }
173
+ }
174
+ }
175
+
176
+ .${lineChartClassNames.lineChartLine} {
177
+ stroke-width: 2px;
178
+ }
179
+
180
+ .${lineChartClassNames.lineChartLabel} {
181
+ color: ${({ theme: { palette } }) => palette.textPrimary};
182
+ }
183
+
184
+ .${lineChartClassNames.lineChartMouseCircle} {
185
+ stroke: #ffffff;
186
+ stroke-width: 2px;
187
+ }
188
+
189
+ .${lineChartClassNames.lineChartGridLineX} {
190
+ stroke: ${({ theme: { palette } }) => palette.element};
191
+ }
192
+
193
+ text {
194
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
195
+ }
196
196
  `;
197
- const StyledBarChart = styled(BarChart$1) `
198
- .domain {
199
- display: none;
200
- }
201
-
202
- .tick {
203
- text {
204
- fill: ${({ theme: { palette } }) => palette.textDisabled};
205
- }
206
-
207
- line {
208
- visibility: hidden;
209
- }
210
- }
197
+ const StyledBarChart = styled(BarChart$1) `
198
+ .domain {
199
+ display: none;
200
+ }
201
+
202
+ .tick {
203
+ text {
204
+ fill: ${({ theme: { palette } }) => palette.textDisabled};
205
+ }
206
+
207
+ line {
208
+ visibility: hidden;
209
+ }
210
+ }
211
211
  `;
212
212
 
213
213
  function range(start, stop, step) {
@@ -3456,42 +3456,42 @@ const BASE_CONTAINER_STYLE = {
3456
3456
  marginBottom: "1rem",
3457
3457
  };
3458
3458
 
3459
- const StackBarContainer = styled(Flex) `
3460
- flex-wrap: nowrap;
3461
- width: 100%;
3459
+ const StackBarContainer = styled(Flex) `
3460
+ flex-wrap: nowrap;
3461
+ width: 100%;
3462
3462
  `;
3463
- const StackBarHeader = styled(Flex) `
3464
- justify-content: space-between;
3465
- margin-bottom: 0.375rem;
3466
- font-size: 0.75rem;
3463
+ const StackBarHeader = styled(Flex) `
3464
+ justify-content: space-between;
3465
+ margin-bottom: 0.375rem;
3466
+ font-size: 0.75rem;
3467
3467
  `;
3468
- const StackBarSection = styled.div `
3469
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3470
- width: ${({ $width }) => $width}%;
3471
- height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3472
- margin: 0 0.5px;
3473
- background-color: ${({ $color }) => $color};
3474
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3475
- transition: opacity ${transition.release}, background-color ${transition.release};
3476
-
3477
- :first-child {
3478
- border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3479
- border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3480
- }
3481
-
3482
- :last-child {
3483
- border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3484
- border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3485
- }
3468
+ const StackBarSection = styled.div `
3469
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
3470
+ width: ${({ $width }) => $width}%;
3471
+ height: ${({ $height }) => ($height ? `${$height}px` : "0.5rem")};
3472
+ margin: 0 0.5px;
3473
+ background-color: ${({ $color }) => $color};
3474
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
3475
+ transition: opacity ${transition.release}, background-color ${transition.release};
3476
+
3477
+ :first-child {
3478
+ border-top-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3479
+ border-bottom-left-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3480
+ }
3481
+
3482
+ :last-child {
3483
+ border-top-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3484
+ border-bottom-right-radius: ${({ cornerRadius }) => (cornerRadius ? `${cornerRadius}px` : "0.5rem")};
3485
+ }
3486
3486
  `;
3487
- const StackBarAlias = styled.div `
3488
- color: ${({ theme: { palette } }) => palette.textSecondary};
3487
+ const StackBarAlias = styled.div `
3488
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3489
3489
  `;
3490
3490
  const StackBarTotal = styled(Flex) ``;
3491
3491
  const StackBarValue = styled.div ``;
3492
- const StackBarUnits = styled.div `
3493
- margin-left: 0.25rem;
3494
- color: ${({ theme: { palette } }) => palette.textSecondary};
3492
+ const StackBarUnits = styled.div `
3493
+ margin-left: 0.25rem;
3494
+ color: ${({ theme: { palette } }) => palette.textSecondary};
3495
3495
  `;
3496
3496
 
3497
3497
  const transparentizeColor = (originalColor, percent) => {
@@ -3952,6 +3952,9 @@ const useFetchWithAuth = (url, transform, cleanup) => {
3952
3952
  return data;
3953
3953
  };
3954
3954
 
3955
+ const toObjectUrl = (res) => res.blob().then(blob => URL.createObjectURL(blob));
3956
+ const useFetchImageWithAuth = (url) => useFetchWithAuth(url, toObjectUrl, URL.revokeObjectURL);
3957
+
3955
3958
  const DashboardContext = createContext({});
3956
3959
  const DashboardProvider = memo(({ children, ...props }) => {
3957
3960
  return jsx(DashboardContext.Provider, { value: props, children: children });
@@ -3994,7 +3997,7 @@ var BaseMapTheme;
3994
3997
 
3995
3998
  const ServerNotificationsContext = createContext({});
3996
3999
 
3997
- const useServerNotifications = (url, initialized) => {
4000
+ const useServerNotifications = (url, initialized, apiClient) => {
3998
4001
  const hubConnection = useRef(null);
3999
4002
  const [connection, setConnection] = useState(null);
4000
4003
  const subscribeNotifications = useCallback(() => {
@@ -4015,8 +4018,27 @@ const useServerNotifications = (url, initialized) => {
4015
4018
  withCredentials: true,
4016
4019
  skipNegotiation: true,
4017
4020
  transport: HttpTransportType.WebSockets,
4018
- accessTokenFactory: () => {
4019
- return window.localStorage.getItem(STORAGE_TOKEN_KEY) || "";
4021
+ accessTokenFactory: async () => {
4022
+ let accessToken = window.localStorage.getItem(STORAGE_TOKEN_KEY) || "";
4023
+ const { exp } = parseJwt(accessToken);
4024
+ const currentTime = new Date().getTime() / 1000;
4025
+ if (currentTime > exp) {
4026
+ const refreshToken = window.localStorage.getItem(STORAGE_REFRESH_TOKEN_KEY);
4027
+ if (refreshToken) {
4028
+ const refreshTokenResponse = await apiClient.account.refreshToken({
4029
+ refreshToken,
4030
+ });
4031
+ if (refreshTokenResponse) {
4032
+ accessToken = refreshTokenResponse.token;
4033
+ window.localStorage.setItem(STORAGE_TOKEN_KEY, refreshTokenResponse.token);
4034
+ window.localStorage.setItem(STORAGE_REFRESH_TOKEN_KEY, refreshTokenResponse.refreshToken);
4035
+ }
4036
+ }
4037
+ else {
4038
+ await apiClient.logout();
4039
+ }
4040
+ }
4041
+ return accessToken;
4020
4042
  },
4021
4043
  })
4022
4044
  .withAutomaticReconnect()
@@ -4039,8 +4061,8 @@ const useServerNotifications = (url, initialized) => {
4039
4061
  return connection;
4040
4062
  };
4041
4063
 
4042
- const ServerNotificationsProvider = ({ url, initialized, children }) => {
4043
- const connection = useServerNotifications(url, initialized);
4064
+ const ServerNotificationsProvider = ({ url, initialized, apiClient, children }) => {
4065
+ const connection = useServerNotifications(url, initialized, apiClient);
4044
4066
  const addSubscription = useCallback(async (payload) => {
4045
4067
  if (!connection || connection.state !== "Connected" || !payload) {
4046
4068
  return;
@@ -4077,7 +4099,12 @@ const ServerNotificationsProvider = ({ url, initialized, children }) => {
4077
4099
  console.info(`Ошибка отписки по ${id}:`, err);
4078
4100
  }
4079
4101
  }, [connection]);
4080
- return (jsx(ServerNotificationsContext.Provider, { value: { connection, addSubscription, updateSubscription, unsubscribeById }, children: children }));
4102
+ return (jsx(ServerNotificationsContext.Provider, { value: {
4103
+ connection,
4104
+ addSubscription,
4105
+ updateSubscription,
4106
+ unsubscribeById,
4107
+ }, children: children }));
4081
4108
  };
4082
4109
 
4083
4110
  const useWidgetContext = (type = WidgetType.Dashboard) => {
@@ -4199,8 +4226,8 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4199
4226
  const customize = useCallback(({ svg }) => {
4200
4227
  svg.style("overflow", "visible");
4201
4228
  svg
4202
- .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4203
- .${lineChartClassNames.lineChartYScaleGlobal} line,
4229
+ .selectAll(`.${lineChartClassNames.lineChartXScaleGlobal} line,
4230
+ .${lineChartClassNames.lineChartYScaleGlobal} line,
4204
4231
  .domain`)
4205
4232
  .each((_, index, nodes) => {
4206
4233
  nodes[index].remove();
@@ -4257,11 +4284,11 @@ const useChartChange = ({ dataSources, chartId, width, height, relatedAttributes
4257
4284
  .attr("fill", `url(#${gradientId})`)
4258
4285
  .attr("stroke-width", "0")
4259
4286
  .attr("fill-opacity", FILL_OPACITY);
4260
- defs.push(`
4261
- <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4262
- <stop offset="0" stop-color="${color}" stop-opacity="1" />
4263
- <stop offset="1" stop-color="${color}" stop-opacity="0" />
4264
- </linearGradient>
4287
+ defs.push(`
4288
+ <linearGradient id="${gradientId}" x1="0" y1="0" x2="0" y2="1">
4289
+ <stop offset="0" stop-color="${color}" stop-opacity="1" />
4290
+ <stop offset="1" stop-color="${color}" stop-opacity="0" />
4291
+ </linearGradient>
4265
4292
  `);
4266
4293
  ref.current = {
4267
4294
  path: newPath,
@@ -4616,104 +4643,104 @@ const formatDataSourceCondition = ({ condition, configFilters, filters, attribut
4616
4643
  : conditionSection.join(splitter);
4617
4644
  };
4618
4645
 
4619
- const DashboardChipsContainer = styled(Flex) `
4620
- flex-wrap: wrap;
4621
- `;
4622
- const DefaultChipColorMixin = css `
4623
- && {
4624
- color: ${({ theme: { palette } }) => palette.textPrimary};
4625
- }
4626
-
4627
- && > * {
4628
- color: ${({ theme: { palette } }) => palette.textPrimary};
4629
- }
4630
-
4631
- && span[kind]:after {
4632
- color: ${({ theme: { palette } }) => palette.icon};
4633
- }
4646
+ const DashboardChipsContainer = styled(Flex) `
4647
+ flex-wrap: wrap;
4634
4648
  `;
4635
- const CustomChipColorMixin = css `
4636
- && {
4637
- color: ${({ $fontColor }) => $fontColor};
4638
- }
4639
-
4640
- && > * {
4641
- color: ${({ $fontColor }) => $fontColor};
4642
- }
4643
-
4644
- && span[kind]:after {
4645
- color: ${({ $fontColor }) => $fontColor};
4646
- }
4649
+ const DefaultChipColorMixin = css `
4650
+ && {
4651
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4652
+ }
4653
+
4654
+ && > * {
4655
+ color: ${({ theme: { palette } }) => palette.textPrimary};
4656
+ }
4657
+
4658
+ && span[kind]:after {
4659
+ color: ${({ theme: { palette } }) => palette.icon};
4660
+ }
4647
4661
  `;
4648
- const DashboardChip$1 = styled(Chip) `
4649
- margin: 0 0.25rem 0.25rem 0;
4650
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4651
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4652
- white-space: nowrap;
4653
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4654
- color: ${({ theme: { palette } }) => palette.iconContrast};
4655
-
4656
- > * {
4657
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4658
- }
4659
-
4660
- span[kind] {
4661
- height: 0.875rem;
4662
-
4663
- :after {
4664
- font-size: 0.875rem;
4665
- }
4666
- }
4667
-
4668
- button {
4669
- width: auto;
4670
- padding: 0 0.5rem;
4671
- }
4672
-
4673
- ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4674
- ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4662
+ const CustomChipColorMixin = css `
4663
+ && {
4664
+ color: ${({ $fontColor }) => $fontColor};
4665
+ }
4666
+
4667
+ && > * {
4668
+ color: ${({ $fontColor }) => $fontColor};
4669
+ }
4670
+
4671
+ && span[kind]:after {
4672
+ color: ${({ $fontColor }) => $fontColor};
4673
+ }
4675
4674
  `;
4675
+ const DashboardChip$1 = styled(Chip) `
4676
+ margin: 0 0.25rem 0.25rem 0;
4677
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
4678
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
4679
+ white-space: nowrap;
4680
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4681
+ color: ${({ theme: { palette } }) => palette.iconContrast};
4676
4682
 
4677
- const LayerGroupContainer = styled(Flex) `
4678
- display: flex;
4679
- justify-content: center;
4680
- position: relative;
4681
- flex-direction: column;
4682
- padding: 0 0.25rem 0 1rem;
4683
- box-sizing: border-box;
4684
- transition: opacity ${transition.hover}, background-color ${transition.hover};
4685
- font-family: "NunitoSans", sans-serif;
4686
- `;
4687
- const LayerGroupMain = styled(Flex) `
4688
- flex-direction: row;
4689
- flex-wrap: nowrap;
4690
- align-items: center;
4691
- justify-content: space-between;
4692
- width: 100%;
4693
-
4694
- ${Icon} {
4695
- width: 2rem;
4696
- min-width: 2rem;
4697
- height: 2rem;
4698
- display: inline-flex;
4699
- align-items: center;
4700
- justify-content: center;
4701
- margin-right: 0.75rem;
4702
- }
4703
-
4704
- ${Description} {
4705
- display: flex;
4706
- align-items: center;
4707
- flex-grow: 1;
4708
- width: 100%;
4709
- margin-right: 0.25rem;
4710
- color: ${({ theme }) => theme.palette.textPrimary};
4711
- }
4712
-
4713
- button {
4714
- width: 2.25rem;
4715
- justify-content: flex-start;
4716
- }
4683
+ > * {
4684
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
4685
+ }
4686
+
4687
+ span[kind] {
4688
+ height: 0.875rem;
4689
+
4690
+ :after {
4691
+ font-size: 0.875rem;
4692
+ }
4693
+ }
4694
+
4695
+ button {
4696
+ width: auto;
4697
+ padding: 0 0.5rem;
4698
+ }
4699
+
4700
+ ${({ $isDefault }) => $isDefault && DefaultChipColorMixin}
4701
+ ${({ $fontColor, $isDefault }) => !!$fontColor && !$isDefault && CustomChipColorMixin}
4702
+ `;
4703
+
4704
+ const LayerGroupContainer = styled(Flex) `
4705
+ display: flex;
4706
+ justify-content: center;
4707
+ position: relative;
4708
+ flex-direction: column;
4709
+ padding: 0 0.25rem 0 1rem;
4710
+ box-sizing: border-box;
4711
+ transition: opacity ${transition.hover}, background-color ${transition.hover};
4712
+ font-family: "NunitoSans", sans-serif;
4713
+ `;
4714
+ const LayerGroupMain = styled(Flex) `
4715
+ flex-direction: row;
4716
+ flex-wrap: nowrap;
4717
+ align-items: center;
4718
+ justify-content: space-between;
4719
+ width: 100%;
4720
+
4721
+ ${Icon} {
4722
+ width: 2rem;
4723
+ min-width: 2rem;
4724
+ height: 2rem;
4725
+ display: inline-flex;
4726
+ align-items: center;
4727
+ justify-content: center;
4728
+ margin-right: 0.75rem;
4729
+ }
4730
+
4731
+ ${Description} {
4732
+ display: flex;
4733
+ align-items: center;
4734
+ flex-grow: 1;
4735
+ width: 100%;
4736
+ margin-right: 0.25rem;
4737
+ color: ${({ theme }) => theme.palette.textPrimary};
4738
+ }
4739
+
4740
+ button {
4741
+ width: 2.25rem;
4742
+ justify-content: flex-start;
4743
+ }
4717
4744
  `;
4718
4745
 
4719
4746
  const customModes = MapboxDraw.modes;
@@ -5593,330 +5620,330 @@ const LayerTree = ({ layers, onlyMainTools }) => {
5593
5620
  return (jsx(DraggableTree, { nodes: nodes, disableDrag: onlyMainTools, options: { pastePlaceholderHeight: "0.025rem" }, onUpdate: onUpdate }));
5594
5621
  };
5595
5622
 
5596
- const LayersListWrapper = styled(Flex) `
5597
- flex-direction: column;
5598
- height: 100%;
5599
- width: 100%;
5600
- box-sizing: border-box;
5623
+ const LayersListWrapper = styled(Flex) `
5624
+ flex-direction: column;
5625
+ height: 100%;
5626
+ width: 100%;
5627
+ box-sizing: border-box;
5601
5628
  `;
5602
- const LayerListContainer = styled(Flex) `
5603
- flex-grow: 1;
5604
- height: 100%;
5605
- box-sizing: border-box;
5606
- padding-top: 0.25rem;
5629
+ const LayerListContainer = styled(Flex) `
5630
+ flex-grow: 1;
5631
+ height: 100%;
5632
+ box-sizing: border-box;
5633
+ padding-top: 0.25rem;
5607
5634
  `;
5608
5635
 
5609
- const ElementValueWrapper = styled.div `
5610
- transition: background-color ${transition.toggle};
5611
-
5636
+ const ElementValueWrapper = styled.div `
5637
+ transition: background-color ${transition.toggle};
5638
+
5612
5639
  ${({ noMargin }) => !!noMargin &&
5613
- css `
5614
- &&&& {
5615
- margin-bottom: 0;
5616
- }
5617
- `};
5618
- `;
5619
- const Container = styled(Flex) `
5620
- flex-direction: column;
5621
- width: 100%;
5622
-
5640
+ css `
5641
+ &&&& {
5642
+ margin-bottom: 0;
5643
+ }
5644
+ `};
5645
+ `;
5646
+ const Container = styled(Flex) `
5647
+ flex-direction: column;
5648
+ width: 100%;
5649
+
5623
5650
  ${({ isColumn }) => isColumn
5624
- ? css `
5625
- &&& > * {
5626
- justify-content: flex-start;
5627
- }
5628
- > * {
5629
- width: 100%;
5630
-
5631
- :not(:last-child) {
5632
- margin-bottom: 0.5rem;
5633
- }
5634
- }
5651
+ ? css `
5652
+ &&& > * {
5653
+ justify-content: flex-start;
5654
+ }
5655
+ > * {
5656
+ width: 100%;
5657
+
5658
+ :not(:last-child) {
5659
+ margin-bottom: 0.5rem;
5660
+ }
5661
+ }
5635
5662
  `
5636
- : css `
5637
- flex-direction: row;
5638
- justify-content: space-between;
5639
- align-items: center;
5640
- `}
5641
-
5663
+ : css `
5664
+ flex-direction: row;
5665
+ justify-content: space-between;
5666
+ align-items: center;
5667
+ `}
5668
+
5642
5669
  ${({ isTitle }) => isTitle &&
5643
- css `
5644
- &&&& {
5645
- margin-bottom: 0.75rem;
5646
- }
5647
- `}
5648
-
5670
+ css `
5671
+ &&&& {
5672
+ margin-bottom: 0.75rem;
5673
+ }
5674
+ `}
5675
+
5649
5676
  ${({ noBorders }) => noBorders &&
5650
- css `
5651
- ${ContainerWrapper} {
5652
- box-shadow: none;
5653
- padding: 0;
5654
- }
5655
- `}
5656
- `;
5657
- const ContainerWrapper = styled(Flex) `
5658
- position: relative;
5659
- box-sizing: border-box;
5660
- width: 100%;
5661
- background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5662
- box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5663
- margin-bottom: 2rem;
5664
- padding: 1.5rem;
5665
- border-radius: 0.5rem;
5666
- backdrop-filter: blur(20px);
5667
- color: ${({ theme: { palette } }) => palette.textPrimary};
5668
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
5669
- transition: background-color ${transition.toggle};
5670
-
5677
+ css `
5678
+ ${ContainerWrapper} {
5679
+ box-shadow: none;
5680
+ padding: 0;
5681
+ }
5682
+ `}
5683
+ `;
5684
+ const ContainerWrapper = styled(Flex) `
5685
+ position: relative;
5686
+ box-sizing: border-box;
5687
+ width: 100%;
5688
+ background: ${({ theme: { palette } }) => palette.backgroundAlpha};
5689
+ box-shadow: rgb(0 0 0 / 15%) 0 0.1875rem 0.625rem;
5690
+ margin-bottom: 2rem;
5691
+ padding: 1.5rem;
5692
+ border-radius: 0.5rem;
5693
+ backdrop-filter: blur(20px);
5694
+ color: ${({ theme: { palette } }) => palette.textPrimary};
5695
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
5696
+ transition: background-color ${transition.toggle};
5697
+
5671
5698
  ${({ $noMargin }) => $noMargin &&
5672
- css `
5673
- &&&& {
5674
- margin-bottom: 0;
5675
- }
5676
- `}
5677
- `;
5678
- const DashboardChip = styled(Chip) `
5679
- margin: 0 0.25rem 0.25rem 0;
5680
- background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5681
- border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5682
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5683
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5684
-
5685
- > * {
5686
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5687
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5688
- }
5689
-
5690
- span[kind]:after {
5691
- color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5692
- }
5699
+ css `
5700
+ &&&& {
5701
+ margin-bottom: 0;
5702
+ }
5703
+ `}
5704
+ `;
5705
+ const DashboardChip = styled(Chip) `
5706
+ margin: 0 0.25rem 0.25rem 0;
5707
+ background: ${({ $isDefault, $bgColor, theme: { palette } }) => $isDefault ? palette.element : $bgColor || palette.primary};
5708
+ border-radius: ${({ $radius, theme: { borderRadius } }) => $radius || borderRadius.medium};
5709
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5710
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5711
+
5712
+ > * {
5713
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
5714
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.textPrimary : $fontColor || "#fff"};
5715
+ }
5716
+
5717
+ span[kind]:after {
5718
+ color: ${({ $isDefault, $fontColor, theme: { palette } }) => $isDefault ? palette.icon : $fontColor || "#fff"};
5719
+ }
5693
5720
  `;
5694
- const DashboardPlaceholderWrap = styled(Flex) `
5695
- flex-grow: 1;
5696
- flex-direction: column;
5697
- justify-content: center;
5698
- align-items: center;
5699
- width: 100%;
5700
- margin-bottom: 2rem;
5701
- `;
5702
- const DashboardPlaceholder = styled(Flex) `
5703
- flex-direction: column;
5704
- justify-content: center;
5705
- align-items: center;
5706
- margin-top: 2rem;
5707
-
5721
+ const DashboardPlaceholderWrap = styled(Flex) `
5722
+ flex-grow: 1;
5723
+ flex-direction: column;
5724
+ justify-content: center;
5725
+ align-items: center;
5726
+ width: 100%;
5727
+ margin-bottom: 2rem;
5728
+ `;
5729
+ const DashboardPlaceholder = styled(Flex) `
5730
+ flex-direction: column;
5731
+ justify-content: center;
5732
+ align-items: center;
5733
+ margin-top: 2rem;
5734
+
5708
5735
  ${({ isLoading }) => isLoading &&
5709
- css `
5710
- width: 6.25rem;
5711
- `}
5712
-
5713
- &&& > * {
5714
- margin-bottom: 0;
5715
- }
5716
-
5717
- > div {
5718
- width: 100%;
5719
- margin-top: 1rem;
5720
- font-size: 0.75rem;
5721
- text-align: center;
5722
- color: ${({ theme: { palette } }) => palette.textDisabled};
5723
- }
5724
-
5725
- span[kind] {
5726
- width: 2.25rem;
5727
- height: 2.25rem;
5728
- opacity: 0.28;
5729
-
5730
- :after {
5731
- font-size: 32px;
5732
- }
5733
- }
5736
+ css `
5737
+ width: 6.25rem;
5738
+ `}
5739
+
5740
+ &&& > * {
5741
+ margin-bottom: 0;
5742
+ }
5743
+
5744
+ > div {
5745
+ width: 100%;
5746
+ margin-top: 1rem;
5747
+ font-size: 0.75rem;
5748
+ text-align: center;
5749
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5750
+ }
5751
+
5752
+ span[kind] {
5753
+ width: 2.25rem;
5754
+ height: 2.25rem;
5755
+ opacity: 0.28;
5756
+
5757
+ :after {
5758
+ font-size: 32px;
5759
+ }
5760
+ }
5734
5761
  `;
5735
- const DashboardWrapper = styled(Flex) `
5736
- flex-direction: column;
5737
- flex-wrap: nowrap;
5738
- flex-grow: 1;
5739
- width: calc(100% - 3rem);
5740
- height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5741
-
5762
+ const DashboardWrapper = styled(Flex) `
5763
+ flex-direction: column;
5764
+ flex-wrap: nowrap;
5765
+ flex-grow: 1;
5766
+ width: calc(100% - 3rem);
5767
+ height: calc(100% - ${LEFT_PANEL_HEADER_HEIGHT});
5768
+
5742
5769
  ${({ hasImage, isPresentationMode }) => hasImage &&
5743
5770
  !isPresentationMode &&
5744
- css `
5745
- margin-top: -0.35rem;
5746
- `}
5747
- `;
5748
- const DashboardContent = styled(Flex) `
5749
- flex-grow: 1;
5750
- width: 100%;
5751
- padding: 1.5rem 1.5rem 2rem;
5752
- overflow-y: auto;
5753
- scrollbar-gutter: stable;
5754
- `;
5755
- const PresentationWrapperCss = css `
5756
- margin-bottom: 0.75rem;
5757
- padding: 1.5rem;
5758
- background-color: ${({ theme: { palette } }) => palette.panelBackground};
5759
- backdrop-filter: blur(10px);
5760
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5761
- box-shadow: ${shadows.raised};
5762
- `;
5763
- const PresentationWrapper = styled.div `
5764
- ${PresentationWrapperCss};
5765
- position: relative;
5766
- z-index: 1;
5767
- `;
5768
- const PresentationPanelWrapper = styled(PresentationWrapper) `
5769
- margin-top: 0.75rem;
5770
- transition: background-color ${transition.toggle};
5771
- `;
5772
- const PresentationHeader = styled.div `
5773
- margin: -1.5rem -1.5rem 0 -1.5rem;
5774
- padding: 1.5rem;
5775
- // background: url(images.presentationHeader) 0 0 no-repeat;
5776
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5777
- transition: background-color ${transition.toggle};
5778
-
5771
+ css `
5772
+ margin-top: -0.35rem;
5773
+ `}
5774
+ `;
5775
+ const DashboardContent = styled(Flex) `
5776
+ flex-grow: 1;
5777
+ width: 100%;
5778
+ padding: 1.5rem 1.5rem 2rem;
5779
+ overflow-y: auto;
5780
+ scrollbar-gutter: stable;
5781
+ `;
5782
+ const PresentationWrapperCss = css `
5783
+ margin-bottom: 0.75rem;
5784
+ padding: 1.5rem;
5785
+ background-color: ${({ theme: { palette } }) => palette.panelBackground};
5786
+ backdrop-filter: blur(10px);
5787
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5788
+ box-shadow: ${shadows.raised};
5789
+ `;
5790
+ const PresentationWrapper = styled.div `
5791
+ ${PresentationWrapperCss};
5792
+ position: relative;
5793
+ z-index: 1;
5794
+ `;
5795
+ const PresentationPanelWrapper = styled(PresentationWrapper) `
5796
+ margin-top: 0.75rem;
5797
+ transition: background-color ${transition.toggle};
5798
+ `;
5799
+ const PresentationHeader = styled.div `
5800
+ margin: -1.5rem -1.5rem 0 -1.5rem;
5801
+ padding: 1.5rem;
5802
+ // background: url(images.presentationHeader) 0 0 no-repeat;
5803
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
5804
+ transition: background-color ${transition.toggle};
5805
+
5779
5806
  ${({ image }) => !!image &&
5780
- css `
5781
- padding-top: 7rem;
5782
- `};
5783
- `;
5784
- const PresentationHeaderTools = styled(Flex) `
5785
- justify-content: space-between;
5786
- align-items: center;
5787
- margin-bottom: -0.5rem;
5788
- margin-right: -0.5rem;
5789
-
5790
- span[kind="sun"],
5791
- span[kind="moon"] {
5792
- :after {
5793
- font-size: 0.85rem;
5794
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5795
- }
5796
-
5797
- :hover:after {
5798
- color: ${({ theme: { palette } }) => palette.icon};
5799
- }
5800
- }
5807
+ css `
5808
+ padding-top: 7rem;
5809
+ `};
5801
5810
  `;
5802
- const LayerGroupList = styled(Flex) `
5803
- flex-direction: column;
5804
- height: 100%;
5805
- flex-wrap: nowrap;
5806
- overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5807
- overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5808
- padding: 0 0.125rem 0 0.75rem;
5809
- scrollbar-gutter: stable;
5810
-
5811
- > * {
5812
- flex-grow: 1;
5813
- }
5811
+ const PresentationHeaderTools = styled(Flex) `
5812
+ justify-content: space-between;
5813
+ align-items: center;
5814
+ margin-bottom: -0.5rem;
5815
+ margin-right: -0.5rem;
5816
+
5817
+ span[kind="sun"],
5818
+ span[kind="moon"] {
5819
+ :after {
5820
+ font-size: 0.85rem;
5821
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5822
+ }
5823
+
5824
+ :hover:after {
5825
+ color: ${({ theme: { palette } }) => palette.icon};
5826
+ }
5827
+ }
5828
+ `;
5829
+ const LayerGroupList = styled(Flex) `
5830
+ flex-direction: column;
5831
+ height: 100%;
5832
+ flex-wrap: nowrap;
5833
+ overflow-x: ${({ $noScroll }) => ($noScroll ? "visible" : "hidden")};
5834
+ overflow-y: ${({ $noScroll }) => ($noScroll ? "visible" : "auto")};
5835
+ padding: 0 0.125rem 0 0.75rem;
5836
+ scrollbar-gutter: stable;
5837
+
5838
+ > * {
5839
+ flex-grow: 1;
5840
+ }
5814
5841
  `;
5815
5842
  const PresentationHeaderButtons = styled(Flex) ``;
5816
- const PresentationPanelContainer = styled.div `
5817
- position: absolute;
5818
- top: 0;
5819
- left: calc(${({ left }) => left || 0}px + 0.75rem);
5820
- bottom: 0;
5821
- z-index: 3;
5822
- display: flex;
5823
- flex-direction: column;
5824
- width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5825
- padding-right: 0.5rem;
5826
- scrollbar-gutter: stable;
5827
- overflow-y: hidden;
5828
-
5829
- :hover {
5830
- overflow-y: auto;
5831
- }
5832
-
5843
+ const PresentationPanelContainer = styled.div `
5844
+ position: absolute;
5845
+ top: 0;
5846
+ left: calc(${({ left }) => left || 0}px + 0.75rem);
5847
+ bottom: 0;
5848
+ z-index: 3;
5849
+ display: flex;
5850
+ flex-direction: column;
5851
+ width: ${LEFT_PANEL_HEADER_HEIGHT}px;
5852
+ padding-right: 0.5rem;
5853
+ scrollbar-gutter: stable;
5854
+ overflow-y: hidden;
5855
+
5856
+ :hover {
5857
+ overflow-y: auto;
5858
+ }
5859
+
5833
5860
  ${({ showLayers }) => !showLayers &&
5834
- css `
5835
- > :first-child {
5836
- padding-bottom: 0;
5837
- }
5838
- `};
5839
-
5840
- ${PresentationHeader} > * {
5841
- position: relative;
5842
- z-index: 2;
5843
- }
5844
-
5845
- /* PaginationWrapper {
5846
- ${PresentationWrapperCss};
5847
- width: calc(100% - 2rem);
5848
- min-height: 8.625rem;
5849
- padding-top: 0.5rem;
5850
- padding-bottom: 0.5rem;
5851
- margin-bottom: 0.75rem;
5852
- }*/
5853
-
5854
- ${DashboardWrapper} {
5855
- width: 100%;
5856
- margin-top: 0;
5857
-
5858
- ${DashboardContent} {
5859
- padding: 0;
5860
- overflow-y: unset;
5861
-
5862
- > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5863
- ${PresentationWrapperCss};
5864
- width: calc(100% - 3rem);
5865
- }
5866
- }
5867
- }
5868
-
5869
- ${DashboardPlaceholder} {
5870
- ${PresentationWrapperCss};
5871
- width: 18.5rem;
5872
- height: 10.75rem;
5873
- }
5874
-
5875
- ${LayerListContainer} {
5876
- height: auto;
5877
- margin: 0 -1.125rem -1.5rem;
5878
- padding: 0;
5879
-
5880
- ${LayerGroupList} {
5881
- padding: 0;
5882
- }
5883
- }
5861
+ css `
5862
+ > :first-child {
5863
+ padding-bottom: 0;
5864
+ }
5865
+ `};
5866
+
5867
+ ${PresentationHeader} > * {
5868
+ position: relative;
5869
+ z-index: 2;
5870
+ }
5871
+
5872
+ /* PaginationWrapper {
5873
+ ${PresentationWrapperCss};
5874
+ width: calc(100% - 2rem);
5875
+ min-height: 8.625rem;
5876
+ padding-top: 0.5rem;
5877
+ padding-bottom: 0.5rem;
5878
+ margin-bottom: 0.75rem;
5879
+ }*/
5880
+
5881
+ ${DashboardWrapper} {
5882
+ width: 100%;
5883
+ margin-top: 0;
5884
+
5885
+ ${DashboardContent} {
5886
+ padding: 0;
5887
+ overflow-y: unset;
5888
+
5889
+ > * > ${ContainerWrapper} > * > ${ContainerWrapper} {
5890
+ ${PresentationWrapperCss};
5891
+ width: calc(100% - 3rem);
5892
+ }
5893
+ }
5894
+ }
5895
+
5896
+ ${DashboardPlaceholder} {
5897
+ ${PresentationWrapperCss};
5898
+ width: 18.5rem;
5899
+ height: 10.75rem;
5900
+ }
5901
+
5902
+ ${LayerListContainer} {
5903
+ height: auto;
5904
+ margin: 0 -1.125rem -1.5rem;
5905
+ padding: 0;
5906
+
5907
+ ${LayerGroupList} {
5908
+ padding: 0;
5909
+ }
5910
+ }
5884
5911
  `;
5885
- const DataSourceErrorContainer = styled(Flex) `
5886
- align-items: center;
5887
- justify-content: center;
5888
- flex-wrap: nowrap;
5889
- flex-grow: 1;
5890
- padding: 1rem;
5891
- border: 1px ${({ theme: { palette } }) => palette.element} solid;
5892
- border-radius: 10px;
5893
- font-size: 0.875rem;
5894
- color: ${({ theme: { palette } }) => palette.textDisabled};
5895
-
5896
- span[kind] {
5897
- margin-right: 1rem;
5898
-
5899
- :after {
5900
- color: ${({ theme: { palette } }) => palette.iconDisabled};
5901
- }
5902
- }
5912
+ const DataSourceErrorContainer = styled(Flex) `
5913
+ align-items: center;
5914
+ justify-content: center;
5915
+ flex-wrap: nowrap;
5916
+ flex-grow: 1;
5917
+ padding: 1rem;
5918
+ border: 1px ${({ theme: { palette } }) => palette.element} solid;
5919
+ border-radius: 10px;
5920
+ font-size: 0.875rem;
5921
+ color: ${({ theme: { palette } }) => palette.textDisabled};
5922
+
5923
+ span[kind] {
5924
+ margin-right: 1rem;
5925
+
5926
+ :after {
5927
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
5928
+ }
5929
+ }
5903
5930
  `;
5904
- const AttributeLabel = styled(Description) `
5905
- margin-top: 0 !important;
5906
- margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5907
- padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5908
- `;
5909
- const FeatureControls = styled(Flex) `
5910
- align-items: center;
5911
- gap: 1rem;
5912
- flex-wrap: nowrap;
5913
- position: relative;
5914
- flex-shrink: 0;
5915
-
5916
- button {
5917
- padding: 0;
5918
- width: auto;
5919
- }
5931
+ const AttributeLabel = styled(Description) `
5932
+ margin-top: 0 !important;
5933
+ margin-bottom: ${({ forCheckbox }) => forCheckbox ? "0.75rem" : "0.25rem"} !important;
5934
+ padding-left: ${({ isEdit }) => (isEdit ? "0.5rem" : "0")};
5935
+ `;
5936
+ const FeatureControls = styled(Flex) `
5937
+ align-items: center;
5938
+ gap: 1rem;
5939
+ flex-wrap: nowrap;
5940
+ position: relative;
5941
+ flex-shrink: 0;
5942
+
5943
+ button {
5944
+ padding: 0;
5945
+ width: auto;
5946
+ }
5920
5947
  `;
5921
5948
 
5922
5949
  const getAttributeByName = (attributeName, attributes) => {
@@ -5999,148 +6026,148 @@ const ContainersGroupContainer = memo(({ elementConfig, type, renderElement }) =
5999
6026
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsx(Container, { id: id, isColumn: isColumn, children: jsx(ContainerChildren, { type: type, items: children, elementConfig: elementConfig, isColumn: isColumn, isMain: id?.startsWith(CONFIG_PAGE_ID), renderElement: renderElement }) }))] }));
6000
6027
  });
6001
6028
 
6002
- const ChartLegendContainer = styled(Flex) `
6003
- flex-direction: column;
6004
- flex-wrap: wrap;
6005
- justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6006
- `;
6007
- const ChartLegendItem = styled(Flex) `
6008
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6009
- align-items: center;
6010
- flex-wrap: nowrap;
6011
- width: auto;
6012
- margin-right: 0.375rem;
6013
- margin-bottom: 0.25rem;
6014
- line-height: 0.75rem;
6015
- opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6016
- `;
6017
- const ChartLegendColor = styled.div `
6018
- width: 0.5rem;
6019
- height: 0.5rem;
6020
- margin-right: 0.375rem;
6021
- background-color: ${({ color }) => color};
6022
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6023
- `;
6024
- const ChartLegendName = styled.div `
6025
- flex: 1;
6026
- font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6027
- color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6028
- `;
6029
+ const ChartLegendContainer = styled(Flex) `
6030
+ flex-direction: column;
6031
+ flex-wrap: wrap;
6032
+ justify-content: ${({ twoColumns }) => (twoColumns ? "flex-start" : "center")};
6033
+ `;
6034
+ const ChartLegendItem = styled(Flex) `
6035
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6036
+ align-items: center;
6037
+ flex-wrap: nowrap;
6038
+ width: auto;
6039
+ margin-right: 0.375rem;
6040
+ margin-bottom: 0.25rem;
6041
+ line-height: 0.75rem;
6042
+ opacity: ${({ isFiltered, hasAnyFilter }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6043
+ `;
6044
+ const ChartLegendColor = styled.div `
6045
+ width: 0.5rem;
6046
+ height: 0.5rem;
6047
+ margin-right: 0.375rem;
6048
+ background-color: ${({ color }) => color};
6049
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.tiny};
6050
+ `;
6051
+ const ChartLegendName = styled.div `
6052
+ flex: 1;
6053
+ font-size: ${({ $fontSize }) => $fontSize || "0.625rem"};
6054
+ color: ${({ theme: { palette }, $fontColor }) => $fontColor || palette.textPrimary};
6055
+ `;
6056
+
6057
+ const ContainerAlias = styled(Flex) `
6058
+ align-items: center;
6059
+ flex-wrap: nowrap;
6060
+ font-size: 0.75rem;
6061
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6062
+
6063
+ &&& {
6064
+ margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6065
+ }
6066
+
6067
+ span[kind] {
6068
+ margin-right: 0.5rem;
6029
6069
 
6030
- const ContainerAlias = styled(Flex) `
6031
- align-items: center;
6032
- flex-wrap: nowrap;
6033
- font-size: 0.75rem;
6034
- color: ${({ theme: { palette } }) => palette.textSecondary};
6035
-
6036
- &&& {
6037
- margin-bottom: ${({ hasBottomMargin }) => (hasBottomMargin ? 0.25 : 0)}rem;
6038
- }
6039
-
6040
- span[kind] {
6041
- margin-right: 0.5rem;
6042
-
6043
- :after {
6044
- color: ${({ theme: { palette } }) => palette.primary};
6045
- }
6046
- }
6070
+ :after {
6071
+ color: ${({ theme: { palette } }) => palette.primary};
6072
+ }
6073
+ }
6047
6074
  `;
6048
- const ContainerAliasIcon = styled.div `
6049
- margin-right: 0.5rem;
6075
+ const ContainerAliasIcon = styled.div `
6076
+ margin-right: 0.5rem;
6050
6077
  `;
6051
- const ContainerChart = styled(Flex) `
6052
- justify-content: flex-start;
6053
-
6054
- > * {
6055
- display: flex;
6056
- justify-content: center;
6057
- width: 100%;
6058
- }
6078
+ const ContainerChart = styled(Flex) `
6079
+ justify-content: flex-start;
6080
+
6081
+ > * {
6082
+ display: flex;
6083
+ justify-content: center;
6084
+ width: 100%;
6085
+ }
6059
6086
  `;
6060
6087
  const ContainerLegend = styled(Flex) ``;
6061
- const ContainerUnits = styled.div `
6062
- margin-left: 0.5rem;
6063
- white-space: nowrap;
6064
- font-size: 0.75rem;
6065
- `;
6066
- const ContainerValue = styled(Flex) `
6067
- justify-content: flex-end;
6068
- align-items: center;
6069
- flex-wrap: nowrap;
6070
- width: 100%;
6071
- font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6072
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6073
-
6074
- > * {
6075
- width: ${({ column }) => (column ? "100%" : "auto")};
6076
- }
6077
-
6078
- ${ContainerChart}, ${ContainerLegend} {
6079
- width: ${({ column }) => (column ? "100%" : "50%")};
6080
- }
6081
-
6082
- ${ContainerLegend} {
6083
- margin-left: ${({ column }) => (column ? 0 : "1rem")};
6084
- }
6085
-
6086
- ${ChartLegendContainer} {
6087
- flex-direction: ${({ column }) => (column ? "row" : "column")};
6088
- margin-top: ${({ column }) => (column ? "1rem" : 0)};
6089
- }
6088
+ const ContainerUnits = styled.div `
6089
+ margin-left: 0.5rem;
6090
+ white-space: nowrap;
6091
+ font-size: 0.75rem;
6092
+ `;
6093
+ const ContainerValue = styled(Flex) `
6094
+ justify-content: flex-end;
6095
+ align-items: center;
6096
+ flex-wrap: nowrap;
6097
+ width: 100%;
6098
+ font-size: ${({ big }) => (big ? 1.5 : 1)}rem;
6099
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textPrimary};
6100
+
6101
+ > * {
6102
+ width: ${({ column }) => (column ? "100%" : "auto")};
6103
+ }
6104
+
6105
+ ${ContainerChart}, ${ContainerLegend} {
6106
+ width: ${({ column }) => (column ? "100%" : "50%")};
6107
+ }
6108
+
6109
+ ${ContainerLegend} {
6110
+ margin-left: ${({ column }) => (column ? 0 : "1rem")};
6111
+ }
6112
+
6113
+ ${ChartLegendContainer} {
6114
+ flex-direction: ${({ column }) => (column ? "row" : "column")};
6115
+ margin-top: ${({ column }) => (column ? "1rem" : 0)};
6116
+ }
6090
6117
  `;
6091
- const ColorIconMixin = css `
6092
- :after {
6093
- color: ${({ $fontColor }) => $fontColor} !important;
6094
- }
6118
+ const ColorIconMixin = css `
6119
+ :after {
6120
+ color: ${({ $fontColor }) => $fontColor} !important;
6121
+ }
6095
6122
  `;
6096
- const SizeIconMixin = css `
6097
- :after {
6098
- font-size: ${({ $fontSize }) => $fontSize}px !important;
6099
- }
6123
+ const SizeIconMixin = css `
6124
+ :after {
6125
+ font-size: ${({ $fontSize }) => $fontSize}px !important;
6126
+ }
6100
6127
  `;
6101
- const ContainerIcon = styled(Icon) `
6102
- width: auto;
6103
- height: auto;
6104
- margin-bottom: 0.5rem;
6105
- ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6106
- ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6107
- `;
6108
- const SvgContainerColorMixin$1 = css `
6109
- path,
6110
- line,
6111
- circle {
6112
- fill: ${({ $fontColor }) => $fontColor};
6113
- }
6128
+ const ContainerIcon = styled(Icon) `
6129
+ width: auto;
6130
+ height: auto;
6131
+ margin-bottom: 0.5rem;
6132
+ ${({ $fontColor }) => !!$fontColor && ColorIconMixin};
6133
+ ${({ $fontSize }) => !!$fontSize && SizeIconMixin};
6134
+ `;
6135
+ const SvgContainerColorMixin$1 = css `
6136
+ path,
6137
+ line,
6138
+ circle {
6139
+ fill: ${({ $fontColor }) => $fontColor};
6140
+ }
6114
6141
  `;
6115
- const SvgContainer$1 = styled.div `
6116
- &&& {
6117
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6118
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6119
-
6120
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6121
-
6122
- > * {
6123
- min-width: inherit;
6124
- }
6125
- }
6142
+ const SvgContainer$1 = styled.div `
6143
+ &&& {
6144
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6145
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6146
+
6147
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin$1};
6148
+
6149
+ > * {
6150
+ min-width: inherit;
6151
+ }
6152
+ }
6126
6153
  `;
6127
- const TwoColumnContainerWrapper = styled(Flex) `
6128
- width: 100%;
6129
- flex-direction: row;
6130
- flex-wrap: nowrap;
6131
- align-items: center;
6132
-
6133
- > * {
6134
- flex: 1;
6135
- }
6136
-
6137
- > ${ContainerValue} {
6138
- justify-content: flex-end;
6139
-
6140
- > * {
6141
- text-align: right;
6142
- }
6143
- }
6154
+ const TwoColumnContainerWrapper = styled(Flex) `
6155
+ width: 100%;
6156
+ flex-direction: row;
6157
+ flex-wrap: nowrap;
6158
+ align-items: center;
6159
+
6160
+ > * {
6161
+ flex: 1;
6162
+ }
6163
+
6164
+ > ${ContainerValue} {
6165
+ justify-content: flex-end;
6166
+
6167
+ > * {
6168
+ text-align: right;
6169
+ }
6170
+ }
6144
6171
  `;
6145
6172
 
6146
6173
  const useRenderContainerItem = (type, renderElement) => {
@@ -6221,10 +6248,10 @@ const TwoColumnContainer = memo(({ elementConfig, type, renderElement }) => {
6221
6248
  return renderAttributes?.length ? (jsx(Fragment$1, { children: renderAttributes.map(attribute => renderContainer(attribute)) })) : (renderContainer());
6222
6249
  });
6223
6250
 
6224
- const InnerContainerWrapper = styled.div `
6225
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6226
- width: ${({ column }) => (column ? "100%" : "auto")};
6227
- opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6251
+ const InnerContainerWrapper = styled.div `
6252
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
6253
+ width: ${({ column }) => (column ? "100%" : "auto")};
6254
+ opacity: ${({ hasAnyFilter, isFiltered }) => (isFiltered ? 1 : hasAnyFilter ? FILTERED_VALUE_OPACITY / 100 : 1)};
6228
6255
  `;
6229
6256
 
6230
6257
  const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValue, type, index, innerComponent }) => {
@@ -6295,107 +6322,107 @@ const DataSourceInnerContainer = memo(({ config, elementConfig, feature, maxValu
6295
6322
  return (jsx(InnerContainerWrapper, { hasAnyFilter: hasAnyFilter, isFiltered: isFiltered(value), column: column === undefined || column, onClick: filterName ? () => onFilter(value) : undefined, children: jsx(InnerContainer, { config: config, elementConfig: elementConfig, feature: feature, maxValue: maxValue, type: type, index: index, renderElement: render }) }));
6296
6323
  });
6297
6324
 
6298
- const DataSourceProgressContainerWrapper = styled.div `
6299
- width: 100%;
6325
+ const DataSourceProgressContainerWrapper = styled.div `
6326
+ width: 100%;
6300
6327
  `;
6301
- const ContainerToggler = styled(LegendToggler) `
6302
- width: auto;
6303
- margin-left: -1rem;
6328
+ const ContainerToggler = styled(LegendToggler) `
6329
+ width: auto;
6330
+ margin-left: -1rem;
6304
6331
  `;
6305
6332
 
6306
- const ProgressContainerWrapper = styled(Flex) `
6307
- align-items: center;
6308
- width: 100%;
6309
- margin-bottom: 1rem;
6333
+ const ProgressContainerWrapper = styled(Flex) `
6334
+ align-items: center;
6335
+ width: 100%;
6336
+ margin-bottom: 1rem;
6310
6337
  `;
6311
- const ProgressIcon = styled.div `
6312
- margin-right: 0.5rem;
6338
+ const ProgressIcon = styled.div `
6339
+ margin-right: 0.5rem;
6313
6340
  `;
6314
- const ProgressContent = styled(Flex) `
6315
- flex: 1;
6316
- flex-direction: column;
6341
+ const ProgressContent = styled(Flex) `
6342
+ flex: 1;
6343
+ flex-direction: column;
6317
6344
  `;
6318
- const ProgressAlias = styled(Flex) `
6319
- flex: 1;
6320
- justify-content: space-between;
6321
- margin-bottom: 0.25rem;
6322
- font-size: 0.75rem;
6323
- color: ${({ theme: { palette } }) => palette.textSecondary};
6324
- `;
6325
- const ProgressValue = styled(Flex) `
6326
- align-items: center;
6327
- width: auto;
6328
- font-size: 1rem;
6329
- color: ${({ theme: { palette } }) => palette.textPrimary};
6330
- `;
6331
- const ProgressInnerValue = styled(ProgressValue) `
6332
- justify-content: flex-end;
6333
- width: 4rem;
6334
- margin-left: 0.5rem;
6335
- `;
6336
- const ProgressUnits = styled(Flex) `
6337
- margin-left: 0.25rem;
6338
- font-size: 0.75rem;
6339
- color: ${({ theme: { palette } }) => palette.textSecondary};
6340
- `;
6341
- const ProgressBarWrapper = styled.div `
6342
- flex-grow: 1;
6343
- height: 0.5rem;
6344
- background-color: ${({ theme: { palette } }) => palette.element};
6345
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6346
- `;
6347
- const ProgressBarContainer = styled(Flex) `
6348
- position: relative;
6349
- align-items: center;
6350
- width: 100%;
6351
-
6345
+ const ProgressAlias = styled(Flex) `
6346
+ flex: 1;
6347
+ justify-content: space-between;
6348
+ margin-bottom: 0.25rem;
6349
+ font-size: 0.75rem;
6350
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6351
+ `;
6352
+ const ProgressValue = styled(Flex) `
6353
+ align-items: center;
6354
+ width: auto;
6355
+ font-size: 1rem;
6356
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6357
+ `;
6358
+ const ProgressInnerValue = styled(ProgressValue) `
6359
+ justify-content: flex-end;
6360
+ width: 4rem;
6361
+ margin-left: 0.5rem;
6362
+ `;
6363
+ const ProgressUnits = styled(Flex) `
6364
+ margin-left: 0.25rem;
6365
+ font-size: 0.75rem;
6366
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6367
+ `;
6368
+ const ProgressBarWrapper = styled.div `
6369
+ flex-grow: 1;
6370
+ height: 0.5rem;
6371
+ background-color: ${({ theme: { palette } }) => palette.element};
6372
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6373
+ `;
6374
+ const ProgressBarContainer = styled(Flex) `
6375
+ position: relative;
6376
+ align-items: center;
6377
+ width: 100%;
6378
+
6352
6379
  ${({ innerValue }) => innerValue &&
6353
- css `
6354
- ${ProgressBarWrapper} {
6355
- height: 1.125rem;
6356
- }
6357
-
6358
- ${ProgressInnerValue} {
6359
- z-index: 1;
6360
- position: absolute;
6361
- right: 0.25rem;
6362
- }
6363
- `}
6364
- `;
6365
- const ProgressBar = styled.div `
6366
- width: ${({ $width }) => $width};
6367
- height: inherit;
6368
- background-color: ${({ $color }) => $color || "#a7d759"};
6369
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6370
- `;
6371
- const ProgressTooltipAlias = styled.div `
6372
- margin-bottom: 0.25rem;
6373
- text-align: left;
6374
- color: ${({ theme: { palette } }) => palette.primary};
6380
+ css `
6381
+ ${ProgressBarWrapper} {
6382
+ height: 1.125rem;
6383
+ }
6384
+
6385
+ ${ProgressInnerValue} {
6386
+ z-index: 1;
6387
+ position: absolute;
6388
+ right: 0.25rem;
6389
+ }
6390
+ `}
6391
+ `;
6392
+ const ProgressBar = styled.div `
6393
+ width: ${({ $width }) => $width};
6394
+ height: inherit;
6395
+ background-color: ${({ $color }) => $color || "#a7d759"};
6396
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.xSmall};
6397
+ `;
6398
+ const ProgressTooltipAlias = styled.div `
6399
+ margin-bottom: 0.25rem;
6400
+ text-align: left;
6401
+ color: ${({ theme: { palette } }) => palette.primary};
6375
6402
  `;
6376
6403
  const ProgressTooltipValue = styled.div ``;
6377
- const ProgressTooltipValueContainer = styled(Flex) `
6378
- align-items: center;
6379
-
6380
- > * {
6381
- opacity: 0.65;
6382
- }
6383
-
6384
- ${ProgressTooltipValue} {
6385
- opacity: 1;
6386
- }
6404
+ const ProgressTooltipValueContainer = styled(Flex) `
6405
+ align-items: center;
6406
+
6407
+ > * {
6408
+ opacity: 0.65;
6409
+ }
6410
+
6411
+ ${ProgressTooltipValue} {
6412
+ opacity: 1;
6413
+ }
6387
6414
  `;
6388
- const ProgressTooltipValueOf = styled.div `
6389
- margin: 0 0.25rem;
6415
+ const ProgressTooltipValueOf = styled.div `
6416
+ margin: 0 0.25rem;
6390
6417
  `;
6391
- const ProgressTotalTitle = styled.div `
6392
- font-size: 0.75rem;
6393
- font-weight: bold;
6418
+ const ProgressTotalTitle = styled.div `
6419
+ font-size: 0.75rem;
6420
+ font-weight: bold;
6394
6421
  `;
6395
- const ProgressTotal = styled(Flex) `
6396
- align-items: center;
6397
- justify-content: space-between;
6398
- margin-top: 1rem;
6422
+ const ProgressTotal = styled(Flex) `
6423
+ align-items: center;
6424
+ justify-content: space-between;
6425
+ margin-top: 1rem;
6399
6426
  `;
6400
6427
 
6401
6428
  const DataSourceProgressContainer = memo(({ config, elementConfig, type, innerComponent, renderElement }) => {
@@ -6492,166 +6519,166 @@ const DEFAULT_BAR_CHART_MARGINS = {
6492
6519
  right: 0,
6493
6520
  };
6494
6521
 
6495
- const FiltersContainerWrapper = styled(Flex) `
6496
- flex-direction: column;
6497
- padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6498
- background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6499
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6500
-
6501
- ${DropdownField}, input {
6502
- background-color: ${({ theme: { palette } }) => palette.background};
6503
- }
6504
-
6505
- > div:not(:last-child) {
6506
- margin-bottom: 0.5rem;
6507
- }
6508
-
6509
- > label {
6510
- align-items: flex-start;
6511
- font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6512
-
6513
- &.active {
6514
- color: ${({ $fontColor }) => $fontColor};
6515
-
6516
- svg rect {
6517
- fill: ${({ $fontColor }) => $fontColor} !important;
6518
- }
6519
- }
6520
-
6521
- &:not(:last-child) {
6522
- margin-bottom: 0.75rem;
6523
- }
6524
-
6525
- &:last-child {
6526
- margin-bottom: 0;
6527
- }
6528
- }
6522
+ const FiltersContainerWrapper = styled(Flex) `
6523
+ flex-direction: column;
6524
+ padding: ${({ $padding }) => $padding ?? `${DEFAULT_FILTER_PADDING}px`};
6525
+ background-color: ${({ $bgColor, $fontColor, theme: { palette } }) => $bgColor || ($fontColor ? transparentizeColor($fontColor, 6) : palette.element)};
6526
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6527
+
6528
+ ${DropdownField}, input {
6529
+ background-color: ${({ theme: { palette } }) => palette.background};
6530
+ }
6531
+
6532
+ > div:not(:last-child) {
6533
+ margin-bottom: 0.5rem;
6534
+ }
6535
+
6536
+ > label {
6537
+ align-items: flex-start;
6538
+ font-size: ${({ $fontSize }) => $fontSize || "0.875rem"};
6539
+
6540
+ &.active {
6541
+ color: ${({ $fontColor }) => $fontColor};
6542
+
6543
+ svg rect {
6544
+ fill: ${({ $fontColor }) => $fontColor} !important;
6545
+ }
6546
+ }
6547
+
6548
+ &:not(:last-child) {
6549
+ margin-bottom: 0.75rem;
6550
+ }
6551
+
6552
+ &:last-child {
6553
+ margin-bottom: 0;
6554
+ }
6555
+ }
6529
6556
  `;
6530
- const StyledIconButton = styled(IconButton) `
6531
- width: 0.75rem;
6532
- height: 0.75rem;
6533
-
6534
- span[kind] {
6535
- height: 0.75rem;
6536
-
6537
- :after {
6538
- font-size: 0.75rem;
6539
- }
6540
- }
6557
+ const StyledIconButton = styled(IconButton) `
6558
+ width: 0.75rem;
6559
+ height: 0.75rem;
6560
+
6561
+ span[kind] {
6562
+ height: 0.75rem;
6563
+
6564
+ :after {
6565
+ font-size: 0.75rem;
6566
+ }
6567
+ }
6541
6568
  `;
6542
- const TextFilterContainer = styled.div `
6543
- width: 15.85rem;
6544
-
6545
- ${MultiSelectContainer} {
6546
- color: ${({ theme: { palette } }) => palette.textPrimary};
6547
-
6548
- ${IconButtonButton} {
6549
- span[kind]:after {
6550
- color: ${({ theme: { palette } }) => palette.textPrimary};
6551
- }
6552
- }
6553
- }
6569
+ const TextFilterContainer = styled.div `
6570
+ width: 15.85rem;
6571
+
6572
+ ${MultiSelectContainer} {
6573
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6574
+
6575
+ ${IconButtonButton} {
6576
+ span[kind]:after {
6577
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6578
+ }
6579
+ }
6580
+ }
6554
6581
  `;
6555
- const BarChartContainer = styled.div `
6556
- width: 100%;
6557
- overflow-x: hidden;
6558
-
6582
+ const BarChartContainer = styled.div `
6583
+ width: 100%;
6584
+ overflow-x: hidden;
6585
+
6559
6586
  ${({ barHeight, marginBottom }) => !!barHeight &&
6560
- css `
6561
- .barChartBarGlobal rect {
6562
- height: ${barHeight}px;
6563
- y: calc(100% - ${barHeight + marginBottom}px);
6564
- }
6565
- `}
6566
- `;
6567
- const AnyChartWrapper = styled.div `
6568
- width: 100%;
6569
- height: ${({ height }) => height}px;
6570
- `;
6571
- const BarChartWrapper = styled(AnyChartWrapper) `
6572
- width: 100%;
6573
- margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6574
-
6575
- :hover {
6576
- ${BarChartContainer} {
6577
- overflow-x: auto;
6578
- }
6579
- }
6587
+ css `
6588
+ .barChartBarGlobal rect {
6589
+ height: ${barHeight}px;
6590
+ y: calc(100% - ${barHeight + marginBottom}px);
6591
+ }
6592
+ `}
6580
6593
  `;
6581
- const BarChartFilterHeader = styled(Flex) `
6582
- justify-content: space-between;
6583
- align-items: center;
6584
- height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6585
- padding: 0.25rem 0;
6594
+ const AnyChartWrapper = styled.div `
6595
+ width: 100%;
6596
+ height: ${({ height }) => height}px;
6586
6597
  `;
6587
- const BarChartFilterArrows = styled(Flex) `
6588
- margin-left: -0.5rem;
6589
-
6590
- span[kind] {
6591
- display: flex;
6592
- align-items: center;
6593
-
6594
- :after {
6595
- font-size: 0.75rem;
6596
- }
6597
- }
6598
+ const BarChartWrapper = styled(AnyChartWrapper) `
6599
+ width: 100%;
6600
+ margin: 0 auto ${BAR_CHART_FOOTER_MARGIN}px;
6601
+
6602
+ :hover {
6603
+ ${BarChartContainer} {
6604
+ overflow-x: auto;
6605
+ }
6606
+ }
6598
6607
  `;
6599
- const BarChartFilterSelected = styled.div `
6600
- font-size: 0.75rem;
6601
- font-weight: bold;
6602
- color: ${({ theme: { palette } }) => palette.textPrimary};
6608
+ const BarChartFilterHeader = styled(Flex) `
6609
+ justify-content: space-between;
6610
+ align-items: center;
6611
+ height: ${({ height }) => `calc(${typeof height === "number" ? `${height}px` : height} - 0.5rem)`};
6612
+ padding: 0.25rem 0;
6603
6613
  `;
6604
- styled.div `
6605
- color: ${({ theme: { palette } }) => palette.textSecondary};
6614
+ const BarChartFilterArrows = styled(Flex) `
6615
+ margin-left: -0.5rem;
6616
+
6617
+ span[kind] {
6618
+ display: flex;
6619
+ align-items: center;
6620
+
6621
+ :after {
6622
+ font-size: 0.75rem;
6623
+ }
6624
+ }
6606
6625
  `;
6607
- const BarChart = styled(BarChart$1) `
6608
- .${barChartClassNames.barChartXAxis} {
6609
- .domain,
6610
- line {
6611
- display: none;
6612
- }
6613
-
6614
- .tick {
6615
- text {
6616
- text-anchor: start;
6617
- font-size: 12px;
6618
- color: rgba(48, 69, 79, 0.46);
6619
- }
6620
-
6621
- :last-of-type {
6622
- text {
6623
- text-anchor: end;
6624
- }
6625
- }
6626
- }
6627
- }
6628
-
6629
- .marker {
6630
- font-size: 12px;
6631
- }
6626
+ const BarChartFilterSelected = styled.div `
6627
+ font-size: 0.75rem;
6628
+ font-weight: bold;
6629
+ color: ${({ theme: { palette } }) => palette.textPrimary};
6632
6630
  `;
6633
- const TooltipContainer = styled.div `
6634
- position: relative;
6635
- font-size: 0.75rem;
6636
- color: #ffffff;
6637
- margin-bottom: 0.5rem;
6638
- padding: 0.375rem;
6639
- background-color: rgba(0, 0, 0, 1);
6640
- border-radius: 0.25rem;
6641
- box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6642
-
6643
- :before {
6644
- content: "";
6645
- position: absolute;
6646
- bottom: 0;
6647
- left: 50%;
6648
- transform: translate(-50%, 100%);
6649
- width: 0;
6650
- height: 0;
6651
- border-style: solid;
6652
- border-width: 0.25rem 0.1875rem 0 0.1875rem;
6653
- border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6654
- }
6631
+ styled.div `
6632
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6633
+ `;
6634
+ const BarChart = styled(BarChart$1) `
6635
+ .${barChartClassNames.barChartXAxis} {
6636
+ .domain,
6637
+ line {
6638
+ display: none;
6639
+ }
6640
+
6641
+ .tick {
6642
+ text {
6643
+ text-anchor: start;
6644
+ font-size: 12px;
6645
+ color: rgba(48, 69, 79, 0.46);
6646
+ }
6647
+
6648
+ :last-of-type {
6649
+ text {
6650
+ text-anchor: end;
6651
+ }
6652
+ }
6653
+ }
6654
+ }
6655
+
6656
+ .marker {
6657
+ font-size: 12px;
6658
+ }
6659
+ `;
6660
+ const TooltipContainer = styled.div `
6661
+ position: relative;
6662
+ font-size: 0.75rem;
6663
+ color: #ffffff;
6664
+ margin-bottom: 0.5rem;
6665
+ padding: 0.375rem;
6666
+ background-color: rgba(0, 0, 0, 1);
6667
+ border-radius: 0.25rem;
6668
+ box-shadow: 0 0.1875rem 0.5rem rgba(48, 69, 79, 0.06);
6669
+
6670
+ :before {
6671
+ content: "";
6672
+ position: absolute;
6673
+ bottom: 0;
6674
+ left: 50%;
6675
+ transform: translate(-50%, 100%);
6676
+ width: 0;
6677
+ height: 0;
6678
+ border-style: solid;
6679
+ border-width: 0.25rem 0.1875rem 0 0.1875rem;
6680
+ border-color: rgba(48, 69, 79, 1) transparent transparent transparent;
6681
+ }
6655
6682
  `;
6656
6683
 
6657
6684
  const FiltersContainer = memo(({ elementConfig, config, type, renderElement }) => {
@@ -6728,64 +6755,64 @@ const PagesContainer = memo(({ type = WidgetType.Dashboard, noBorders }) => {
6728
6755
  return (jsx(Container, { id: getRootElementId(type), style: { width }, isMain: true, isColumn: isColumn, noBorders: noBorders, children: jsx(ContainerChildren, { type: type, items: filteredChildren, isMain: true, renderElement: renderElement }) }));
6729
6756
  });
6730
6757
 
6731
- const ImageContainerBg$1 = styled.div `
6732
- position: absolute;
6733
- top: 0;
6734
- bottom: 0;
6735
- left: 0;
6736
- right: 0;
6737
-
6738
- img {
6739
- width: 100%;
6740
- height: 100%;
6741
- object-position: center;
6742
- object-fit: cover;
6743
- }
6758
+ const ImageContainerBg$1 = styled.div `
6759
+ position: absolute;
6760
+ top: 0;
6761
+ bottom: 0;
6762
+ left: 0;
6763
+ right: 0;
6764
+
6765
+ img {
6766
+ width: 100%;
6767
+ height: 100%;
6768
+ object-position: center;
6769
+ object-fit: cover;
6770
+ }
6744
6771
  `;
6745
- const ImageContainerTitle = styled.div `
6746
- width: 100%;
6747
- overflow-wrap: break-word;
6748
- font-size: 1rem;
6749
- font-weight: 500;
6750
- `;
6751
- const ImageContainerText = styled.div `
6752
- width: 100%;
6753
- overflow-wrap: break-word;
6754
- margin-top: 0.5rem;
6755
- font-size: 0.75rem;
6756
- `;
6757
- const ImageContainerButton$1 = styled(FlatButton) `
6758
- min-height: 1.5rem;
6759
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6760
- background-color: ${({ theme: { palette } }) => palette.primary};
6761
- text-transform: none;
6762
-
6763
- :hover {
6764
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6765
- }
6772
+ const ImageContainerTitle = styled.div `
6773
+ width: 100%;
6774
+ overflow-wrap: break-word;
6775
+ font-size: 1rem;
6776
+ font-weight: 500;
6777
+ `;
6778
+ const ImageContainerText = styled.div `
6779
+ width: 100%;
6780
+ overflow-wrap: break-word;
6781
+ margin-top: 0.5rem;
6782
+ font-size: 0.75rem;
6783
+ `;
6784
+ const ImageContainerButton$1 = styled(FlatButton) `
6785
+ min-height: 1.5rem;
6786
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
6787
+ background-color: ${({ theme: { palette } }) => palette.primary};
6788
+ text-transform: none;
6789
+
6790
+ :hover {
6791
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
6792
+ }
6766
6793
  `;
6767
- const ImageContainerWrapper = styled(Flex) `
6768
- flex-direction: column;
6769
- justify-content: flex-end;
6770
- position: relative;
6771
- padding: 1rem;
6772
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6773
- overflow: hidden;
6774
-
6775
- ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6776
- z-index: 1;
6777
- color: ${({ theme: { palette } }) => palette.textContrast};
6778
- }
6779
-
6780
- :after {
6781
- content: "";
6782
- position: absolute;
6783
- top: 0;
6784
- bottom: 0;
6785
- left: 0;
6786
- right: 0;
6787
- background-color: rgba(0, 0, 0, 0.4);
6788
- }
6794
+ const ImageContainerWrapper = styled(Flex) `
6795
+ flex-direction: column;
6796
+ justify-content: flex-end;
6797
+ position: relative;
6798
+ padding: 1rem;
6799
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6800
+ overflow: hidden;
6801
+
6802
+ ${ImageContainerTitle}, ${ImageContainerText}, ${ImageContainerButton$1} {
6803
+ z-index: 1;
6804
+ color: ${({ theme: { palette } }) => palette.textContrast};
6805
+ }
6806
+
6807
+ :after {
6808
+ content: "";
6809
+ position: absolute;
6810
+ top: 0;
6811
+ bottom: 0;
6812
+ left: 0;
6813
+ right: 0;
6814
+ background-color: rgba(0, 0, 0, 0.4);
6815
+ }
6789
6816
  `;
6790
6817
 
6791
6818
  const ImageContainer = memo(({ elementConfig, renderElement }) => {
@@ -6793,52 +6820,52 @@ const ImageContainer = memo(({ elementConfig, renderElement }) => {
6793
6820
  return (jsxs(ImageContainerWrapper, { id: id, style: style, children: [jsx(ImageContainerTitle, { children: renderElement({ id: "alias" }) }), jsx(ImageContainerText, { children: renderElement({ id: "text" }) }), renderElement({ id: "button" }), jsx(ImageContainerBg$1, { children: renderElement({ id: "image" }) })] }));
6794
6821
  });
6795
6822
 
6796
- const IconContainerWrapper = styled(Flex) `
6797
- flex-direction: column;
6798
- justify-content: center;
6799
- position: relative;
6800
- padding: 0.5rem 1rem 1rem;
6801
- background-color: ${({ theme: { palette } }) => palette.element};
6802
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6803
- overflow: hidden;
6804
- `;
6805
- const IconContainerHeaderWrapper = styled(Flex) `
6806
- justify-content: space-between;
6807
- align-items: center;
6808
- flex-wrap: nowrap;
6809
- width: 100%;
6810
- margin-bottom: 0.25rem;
6811
- `;
6812
- const IconContainerHeader = styled(Flex) `
6813
- align-items: center;
6814
- flex-wrap: nowrap;
6815
- width: 100%;
6816
- margin-right: 0.5rem;
6817
- font-size: 0.875rem;
6818
-
6819
- ${Icon} {
6820
- margin-right: 0.5rem;
6821
-
6822
- :after {
6823
- font-size: 1.15rem;
6824
- color: ${({ theme: { palette } }) => palette.textSecondary};
6825
- }
6826
- }
6823
+ const IconContainerWrapper = styled(Flex) `
6824
+ flex-direction: column;
6825
+ justify-content: center;
6826
+ position: relative;
6827
+ padding: 0.5rem 1rem 1rem;
6828
+ background-color: ${({ theme: { palette } }) => palette.element};
6829
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
6830
+ overflow: hidden;
6831
+ `;
6832
+ const IconContainerHeaderWrapper = styled(Flex) `
6833
+ justify-content: space-between;
6834
+ align-items: center;
6835
+ flex-wrap: nowrap;
6836
+ width: 100%;
6837
+ margin-bottom: 0.25rem;
6838
+ `;
6839
+ const IconContainerHeader = styled(Flex) `
6840
+ align-items: center;
6841
+ flex-wrap: nowrap;
6842
+ width: 100%;
6843
+ margin-right: 0.5rem;
6844
+ font-size: 0.875rem;
6845
+
6846
+ ${Icon} {
6847
+ margin-right: 0.5rem;
6848
+
6849
+ :after {
6850
+ font-size: 1.15rem;
6851
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6852
+ }
6853
+ }
6827
6854
  `;
6828
- const IconContainerTitle = styled(Flex) `
6829
- > * {
6830
- width: 13rem;
6831
- white-space: nowrap;
6832
- overflow: hidden;
6833
- font-weight: bold;
6834
- text-overflow: ellipsis;
6835
- }
6855
+ const IconContainerTitle = styled(Flex) `
6856
+ > * {
6857
+ width: 13rem;
6858
+ white-space: nowrap;
6859
+ overflow: hidden;
6860
+ font-weight: bold;
6861
+ text-overflow: ellipsis;
6862
+ }
6836
6863
  `;
6837
- const IconContainerText = styled.div `
6838
- width: 100%;
6839
- overflow-wrap: break-word;
6840
- font-size: 0.75rem;
6841
- color: ${({ theme: { palette } }) => palette.textSecondary};
6864
+ const IconContainerText = styled.div `
6865
+ width: 100%;
6866
+ overflow-wrap: break-word;
6867
+ font-size: 0.75rem;
6868
+ color: ${({ theme: { palette } }) => palette.textSecondary};
6842
6869
  `;
6843
6870
 
6844
6871
  const IconContainer = memo(({ elementConfig, renderElement }) => {
@@ -6861,107 +6888,107 @@ const DataSourceContainer = memo(({ config, elementConfig, type, innerComponent,
6861
6888
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), !isVisible ? null : dataSource ? (jsx(Container, { id: id, isColumn: column, style: { height: isLoading ? "3rem" : "auto", ...style }, children: dataSource.features?.map((feature, index) => (jsx(DataSourceInnerContainer, { index: index, type: type, config: config, feature: feature, elementConfig: elementConfig, innerComponent: innerComponent }, index))) })) : (jsx(ContainerLoading, {}))] }));
6862
6889
  });
6863
6890
 
6864
- const SvgContainerColorMixin = css `
6865
- path,
6866
- line,
6867
- circle {
6868
- fill: ${({ $fontColor }) => $fontColor};
6869
- }
6891
+ const SvgContainerColorMixin = css `
6892
+ path,
6893
+ line,
6894
+ circle {
6895
+ fill: ${({ $fontColor }) => $fontColor};
6896
+ }
6870
6897
  `;
6871
- const SvgContainer = styled.div `
6872
- &&& {
6873
- min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6874
- max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6875
-
6876
- ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6877
-
6878
- > * {
6879
- min-width: inherit;
6880
- }
6881
- }
6898
+ const SvgContainer = styled.div `
6899
+ &&& {
6900
+ min-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6901
+ max-width: ${({ $width }) => ($width ? `${$width}px` : "1rem")};
6902
+
6903
+ ${({ $fontColor }) => !!$fontColor && SvgContainerColorMixin};
6904
+
6905
+ > * {
6906
+ min-width: inherit;
6907
+ }
6908
+ }
6882
6909
  `;
6883
6910
 
6884
- const ContainerIconTitle = styled(Flex) `
6885
- align-items: center;
6886
- flex-wrap: nowrap;
6887
- flex-shrink: 1;
6888
- flex-grow: 0;
6889
- color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6890
-
6891
- > div {
6892
- flex-shrink: 1;
6893
- flex-grow: 0;
6894
- width: auto;
6895
- }
6896
-
6897
- ${SvgContainer} {
6898
- flex-shrink: 0;
6899
- flex-grow: 0;
6900
- margin-right: 0.5rem;
6901
- }
6902
-
6903
- svg,
6904
- img,
6905
- span[kind] {
6906
- margin-right: 0.5rem;
6907
- }
6908
-
6911
+ const ContainerIconTitle = styled(Flex) `
6912
+ align-items: center;
6913
+ flex-wrap: nowrap;
6914
+ flex-shrink: 1;
6915
+ flex-grow: 0;
6916
+ color: ${({ fontColor, theme: { palette } }) => fontColor || palette.textSecondary};
6917
+
6918
+ > div {
6919
+ flex-shrink: 1;
6920
+ flex-grow: 0;
6921
+ width: auto;
6922
+ }
6923
+
6924
+ ${SvgContainer} {
6925
+ flex-shrink: 0;
6926
+ flex-grow: 0;
6927
+ margin-right: 0.5rem;
6928
+ }
6929
+
6930
+ svg,
6931
+ img,
6932
+ span[kind] {
6933
+ margin-right: 0.5rem;
6934
+ }
6935
+
6909
6936
  ${({ fontColor }) => !!fontColor &&
6910
- css `
6911
- span[kind] {
6912
- color: ${fontColor};
6913
- }
6914
-
6915
- ${SvgContainer} {
6916
- path,
6917
- circle {
6918
- fill: ${fontColor};
6919
- }
6920
- }
6921
- `};
6922
-
6923
- ${LegendToggler} {
6924
- margin-left: 0.25rem;
6925
- }
6926
-
6927
- span[kind="download"] {
6928
- opacity: 0;
6929
- transition: opacity ${transition.hover};
6930
- }
6931
-
6932
- :hover {
6933
- span[kind="download"] {
6934
- opacity: 1;
6935
- }
6936
- }
6937
+ css `
6938
+ span[kind] {
6939
+ color: ${fontColor};
6940
+ }
6941
+
6942
+ ${SvgContainer} {
6943
+ path,
6944
+ circle {
6945
+ fill: ${fontColor};
6946
+ }
6947
+ }
6948
+ `};
6949
+
6950
+ ${LegendToggler} {
6951
+ margin-left: 0.25rem;
6952
+ }
6953
+
6954
+ span[kind="download"] {
6955
+ opacity: 0;
6956
+ transition: opacity ${transition.hover};
6957
+ }
6958
+
6959
+ :hover {
6960
+ span[kind="download"] {
6961
+ opacity: 1;
6962
+ }
6963
+ }
6937
6964
  `;
6938
- const ContainerTitle = styled(Flex) `
6939
- align-items: center;
6940
- justify-content: space-between;
6941
- width: 100%;
6942
-
6943
- > * {
6944
- font-size: 1.125rem;
6945
- font-weight: 500;
6946
- }
6947
-
6948
- ${LegendToggler} {
6949
- padding-right: 0;
6950
- }
6951
-
6965
+ const ContainerTitle = styled(Flex) `
6966
+ align-items: center;
6967
+ justify-content: space-between;
6968
+ width: 100%;
6969
+
6970
+ > * {
6971
+ font-size: 1.125rem;
6972
+ font-weight: 500;
6973
+ }
6974
+
6975
+ ${LegendToggler} {
6976
+ padding-right: 0;
6977
+ }
6978
+
6952
6979
  ${({ simple }) => simple &&
6953
- css `
6954
- justify-content: flex-start;
6955
-
6956
- ${ContainerIconTitle} {
6957
- font-size: 0.75rem;
6958
- }
6959
-
6960
- ${LegendToggler} {
6961
- margin-left: 0;
6962
- padding-left: 0.25rem;
6963
- }
6964
- `}
6980
+ css `
6981
+ justify-content: flex-start;
6982
+
6983
+ ${ContainerIconTitle} {
6984
+ font-size: 0.75rem;
6985
+ }
6986
+
6987
+ ${LegendToggler} {
6988
+ margin-left: 0;
6989
+ padding-left: 0.25rem;
6990
+ }
6991
+ `}
6965
6992
  `;
6966
6993
 
6967
6994
  const TitleContainer = memo(({ containerId, templateName, layerNames, fontColor, expandable, expanded, isVisible, elementConfig, renderElement, type, }) => {
@@ -7035,82 +7062,82 @@ const CameraContainer = memo(({ elementConfig, type, renderElement }) => {
7035
7062
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && (jsxs(Container, { id: id, style: style, children: [jsx(ContainerAlias, { hasBottomMargin: true, children: renderElement({ id: "alias" }) }), jsx(ContainerValue, { children: renderElement({ id: "value", wrap: false }) })] }))] }));
7036
7063
  });
7037
7064
 
7038
- const TabAnchor = styled.div `
7039
- position: absolute;
7040
- top: -1.5rem;
7041
- right: 0;
7065
+ const TabAnchor = styled.div `
7066
+ position: absolute;
7067
+ top: -1.5rem;
7068
+ right: 0;
7042
7069
  `;
7043
- const TabValue = styled(Flex) `
7044
- flex-wrap: nowrap;
7070
+ const TabValue = styled(Flex) `
7071
+ flex-wrap: nowrap;
7045
7072
  `;
7046
- const noBgMixin = css `
7047
- background-color: transparent;
7048
- border-radius: 0;
7049
- border-bottom: 0.125rem solid
7050
- ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7051
-
7052
- ${TabValue},
7053
- span[kind] {
7054
- color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7055
- }
7056
-
7057
- &&& svg {
7058
- path,
7059
- line,
7060
- circle {
7061
- fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7062
- }
7063
- }
7064
-
7065
- :not(:last-child) {
7066
- margin-right: 0;
7067
- }
7073
+ const noBgMixin = css `
7074
+ background-color: transparent;
7075
+ border-radius: 0;
7076
+ border-bottom: 0.125rem solid
7077
+ ${({ active, bgColor, theme: { palette } }) => (active ? bgColor || palette.primary : palette.element)};
7078
+
7079
+ ${TabValue},
7080
+ span[kind] {
7081
+ color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7082
+ }
7083
+
7084
+ &&& svg {
7085
+ path,
7086
+ line,
7087
+ circle {
7088
+ fill: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.textSecondary};
7089
+ }
7090
+ }
7091
+
7092
+ :not(:last-child) {
7093
+ margin-right: 0;
7094
+ }
7068
7095
  `;
7069
- const TabContainer = styled.a `
7070
- display: flex;
7071
- flex-direction: ${({ column }) => (column ? "column" : "row")};
7072
- align-items: center;
7073
- justify-content: center;
7074
- flex-wrap: nowrap;
7075
- padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7076
- background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7077
- border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7078
- text-decoration: none;
7079
-
7080
- :not(:last-child) {
7081
- margin-right: 0.5rem;
7082
- }
7083
-
7084
- ${TabValue} {
7085
- margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7086
- margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7087
- font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7088
- white-space: nowrap;
7089
- }
7090
-
7091
- ${TabValue},
7092
- span[kind] {
7093
- color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7094
- }
7095
-
7096
- ${SvgContainer$1} {
7097
- height: 1rem;
7098
- }
7099
-
7100
- svg,
7101
- img {
7102
- max-width: 1rem;
7103
- max-height: 1rem;
7104
- }
7105
-
7106
- ${({ noBg }) => noBg && noBgMixin};
7096
+ const TabContainer = styled.a `
7097
+ display: flex;
7098
+ flex-direction: ${({ column }) => (column ? "column" : "row")};
7099
+ align-items: center;
7100
+ justify-content: center;
7101
+ flex-wrap: nowrap;
7102
+ padding: ${({ onlyIcon }) => (onlyIcon ? 1 : 0.5)}rem 1rem;
7103
+ background-color: ${({ active, bgColor, theme: { palette } }) => active ? bgColor || palette.primary : palette.element};
7104
+ border-radius: ${({ column, radius, theme: { borderRadius } }) => radius ? `${radius}px` : column ? borderRadius.medium : borderRadius.xLarge};
7105
+ text-decoration: none;
7106
+
7107
+ :not(:last-child) {
7108
+ margin-right: 0.5rem;
7109
+ }
7110
+
7111
+ ${TabValue} {
7112
+ margin-top: ${({ column }) => (column ? 0.5 : 0)}rem;
7113
+ margin-left: ${({ column, hasIcon }) => (column || !hasIcon ? 0 : 0.5)}rem;
7114
+ font-size: ${({ column }) => (column ? 0.75 : 0.875)}rem;
7115
+ white-space: nowrap;
7116
+ }
7117
+
7118
+ ${TabValue},
7119
+ span[kind] {
7120
+ color: ${({ active, theme: { palette } }) => (active ? palette.textContrast : palette.textSecondary)};
7121
+ }
7122
+
7123
+ ${SvgContainer$1} {
7124
+ height: 1rem;
7125
+ }
7126
+
7127
+ svg,
7128
+ img {
7129
+ max-width: 1rem;
7130
+ max-height: 1rem;
7131
+ }
7132
+
7133
+ ${({ noBg }) => noBg && noBgMixin};
7107
7134
  `;
7108
- const SwiperContainer = styled.div `
7109
- width: 100%;
7110
-
7111
- .swiper-wrapper {
7112
- display: flex;
7113
- }
7135
+ const SwiperContainer = styled.div `
7136
+ width: 100%;
7137
+
7138
+ .swiper-wrapper {
7139
+ display: flex;
7140
+ }
7114
7141
  `;
7115
7142
 
7116
7143
  const TabsContainer = memo(({ elementConfig, type }) => {
@@ -7138,96 +7165,96 @@ const TabsContainer = memo(({ elementConfig, type }) => {
7138
7165
  });
7139
7166
 
7140
7167
  const ContainerIconValue = styled(Flex) ``;
7141
- const RoundedBackgroundContainerWrapper = styled(Flex) `
7142
- position: relative;
7143
- flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7144
- width: 9rem;
7145
- padding: 0.75rem 0.75rem 0.5rem;
7146
- background-color: ${({ theme: { palette } }) => palette.element};
7147
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7148
- flex-wrap: nowrap;
7149
-
7150
- && {
7151
- margin-bottom: 0.5rem;
7152
- }
7153
-
7168
+ const RoundedBackgroundContainerWrapper = styled(Flex) `
7169
+ position: relative;
7170
+ flex-direction: ${({ $bigIcon }) => ($bigIcon ? "row" : "column")};
7171
+ width: 9rem;
7172
+ padding: 0.75rem 0.75rem 0.5rem;
7173
+ background-color: ${({ theme: { palette } }) => palette.element};
7174
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
7175
+ flex-wrap: nowrap;
7176
+
7177
+ && {
7178
+ margin-bottom: 0.5rem;
7179
+ }
7180
+
7154
7181
  ${({ $center }) => $center &&
7155
- css `
7156
- align-items: center;
7157
-
7158
- > * {
7159
- display: flex;
7160
- justify-content: center;
7161
- text-align: center;
7162
- width: 100%;
7163
- }
7164
- `};
7165
-
7182
+ css `
7183
+ align-items: center;
7184
+
7185
+ > * {
7186
+ display: flex;
7187
+ justify-content: center;
7188
+ text-align: center;
7189
+ width: 100%;
7190
+ }
7191
+ `};
7192
+
7166
7193
  ${({ $color }) => $color &&
7167
- css `
7168
- background-color: ${transparentizeColor($color, 6)};
7169
-
7170
- * {
7171
- color: ${$color};
7172
- }
7173
- `};
7174
-
7175
- ${ContainerIcon}, ${SvgContainer$1} {
7176
- margin-bottom: 0.25rem;
7177
- }
7178
-
7194
+ css `
7195
+ background-color: ${transparentizeColor($color, 6)};
7196
+
7197
+ * {
7198
+ color: ${$color};
7199
+ }
7200
+ `};
7201
+
7202
+ ${ContainerIcon}, ${SvgContainer$1} {
7203
+ margin-bottom: 0.25rem;
7204
+ }
7205
+
7179
7206
  ${({ $bigIcon }) => $bigIcon &&
7180
- css `
7181
- ${ContainerIcon}, ${SvgContainer$1} {
7182
- position: absolute;
7183
- top: 0.75rem;
7184
- right: 0.75rem;
7185
- width: 3rem;
7186
- opacity: 0.12;
7187
-
7188
- :after {
7189
- font-size: 3rem;
7190
- }
7191
- }
7192
- `};
7193
-
7194
- ${ContainerIconValue} {
7195
- align-items: center;
7196
- flex-direction: column;
7197
-
7207
+ css `
7208
+ ${ContainerIcon}, ${SvgContainer$1} {
7209
+ position: absolute;
7210
+ top: 0.75rem;
7211
+ right: 0.75rem;
7212
+ width: 3rem;
7213
+ opacity: 0.12;
7214
+
7215
+ :after {
7216
+ font-size: 3rem;
7217
+ }
7218
+ }
7219
+ `};
7220
+
7221
+ ${ContainerIconValue} {
7222
+ align-items: center;
7223
+ flex-direction: column;
7224
+
7198
7225
  ${({ $big }) => $big &&
7199
- css `
7200
- flex-direction: row;
7201
- margin-bottom: 0.5rem;
7202
-
7203
- > * {
7204
- text-align: left;
7205
- }
7206
-
7207
- span[kind] {
7208
- margin-right: 0.5rem;
7209
- }
7210
-
7211
- ${ContainerValue} {
7212
- width: auto;
7213
- }
7214
- `};
7215
- }
7216
-
7217
- ${ContainerValue} {
7218
- flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7219
- justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7220
- align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7221
- line-height: 1;
7222
- }
7223
-
7224
- ${ContainerUnits} {
7225
- margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7226
- }
7227
-
7228
- ${ContainerAlias} {
7229
- margin-top: 0.25rem;
7230
- }
7226
+ css `
7227
+ flex-direction: row;
7228
+ margin-bottom: 0.5rem;
7229
+
7230
+ > * {
7231
+ text-align: left;
7232
+ }
7233
+
7234
+ span[kind] {
7235
+ margin-right: 0.5rem;
7236
+ }
7237
+
7238
+ ${ContainerValue} {
7239
+ width: auto;
7240
+ }
7241
+ `};
7242
+ }
7243
+
7244
+ ${ContainerValue} {
7245
+ flex-direction: ${({ $inlineUnits }) => ($inlineUnits ? "row" : "column")};
7246
+ justify-content: ${({ $big }) => ($big ? "flex-start" : "center")};
7247
+ align-items: ${({ $inlineUnits }) => ($inlineUnits ? "center" : "flex-start")};
7248
+ line-height: 1;
7249
+ }
7250
+
7251
+ ${ContainerUnits} {
7252
+ margin-left: ${({ $inlineUnits }) => ($inlineUnits ? "0.25rem" : 0)};
7253
+ }
7254
+
7255
+ ${ContainerAlias} {
7256
+ margin-top: 0.25rem;
7257
+ }
7231
7258
  `;
7232
7259
 
7233
7260
  const ALIAS_DEFAULT_MAX_LENGTH = 28;
@@ -7274,20 +7301,20 @@ const AddFeatureContainer = memo(({ elementConfig }) => {
7274
7301
  .map(({ options }, index) => (jsx(AddFeatureButton, { icon: options?.icon, title: options?.title, layerName: options?.layerName, geometryType: options?.geometryType }, index))) }));
7275
7302
  });
7276
7303
 
7277
- const LayersContainerWrapper = styled(Container) `
7278
- ${DraggableTreeContainer} {
7279
- width: calc(100% + 3rem);
7280
- margin: -0.75rem -1.5rem 0;
7281
- }
7282
-
7283
- ${LayerListContainer} {
7284
- height: auto;
7285
- }
7286
-
7287
- ${LayerGroupList} {
7288
- margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7289
- padding: 0;
7290
- }
7304
+ const LayersContainerWrapper = styled(Container) `
7305
+ ${DraggableTreeContainer} {
7306
+ width: calc(100% + 3rem);
7307
+ margin: -0.75rem -1.5rem 0;
7308
+ }
7309
+
7310
+ ${LayerListContainer} {
7311
+ height: auto;
7312
+ }
7313
+
7314
+ ${LayerGroupList} {
7315
+ margin: ${({ isPresentationMode }) => (isPresentationMode ? 0 : "0 -1.25rem 0 -1rem")};
7316
+ padding: 0;
7317
+ }
7291
7318
  `;
7292
7319
 
7293
7320
  const LayersContainer = memo(({ type, elementConfig, renderElement }) => {
@@ -7322,9 +7349,9 @@ const UploadContainer = memo(({ type, elementConfig, renderElement }) => {
7322
7349
  return (jsxs(Fragment$1, { children: [jsx(ExpandableTitle, { elementConfig: elementConfig, type: type, renderElement: renderElement }), isVisible && renderElement({ id: "uploader", wrap: false })] }));
7323
7350
  });
7324
7351
 
7325
- const StatusBadge = styled(Chip) `
7326
- background-color: ${({ bgColor }) => bgColor};
7327
- color: ${({ theme }) => theme.palette.iconContrast};
7352
+ const StatusBadge = styled(Chip) `
7353
+ background-color: ${({ bgColor }) => bgColor};
7354
+ color: ${({ theme }) => theme.palette.iconContrast};
7328
7355
  `;
7329
7356
 
7330
7357
  const STATUS_TRANSLATION_KEYS = {
@@ -7382,22 +7409,22 @@ var EditGeometryType;
7382
7409
  EditGeometryType["Raster"] = "raster";
7383
7410
  })(EditGeometryType || (EditGeometryType = {}));
7384
7411
 
7385
- const StyledButton = styled(FlatButton) `
7386
- display: flex;
7387
- align-items: center;
7388
-
7389
- ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7390
- transition: background-color ${transition.toggle};
7391
- background-color: ${statusColors[status]};
7392
-
7393
- :hover {
7394
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7395
- }
7396
-
7397
- :active {
7398
- background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7399
- }
7400
- `}
7412
+ const StyledButton = styled(FlatButton) `
7413
+ display: flex;
7414
+ align-items: center;
7415
+
7416
+ ${({ status = RemoteTaskStatus.Unknown, statusColors, themeName }) => !!statusColors?.[status] && css `
7417
+ transition: background-color ${transition.toggle};
7418
+ background-color: ${statusColors[status]};
7419
+
7420
+ :hover {
7421
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -5 : 5)};
7422
+ }
7423
+
7424
+ :active {
7425
+ background-color: ${adjustColor(statusColors[status], themeName === ThemeName.Dark ? -10 : 10)};
7426
+ }
7427
+ `}
7401
7428
  `;
7402
7429
 
7403
7430
  const StatusWaitingButton = ({ title, icon = "play", status, statusColors, isWaiting, isDisabled, onClick }) => {
@@ -7561,23 +7588,23 @@ const EditDropdownContainer = ({ type, elementConfig, renderElement, }) => {
7561
7588
  return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_CONTAINER_STYLE, ...style }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsx(ContainerValue, { column: true, children: jsx(Dropdown, { zIndex: 1000, label: control.label, placeholder: control.placeholder, options: optionsList, value: value, width: `${control.width ?? DEFAULT_DROPDOWN_WIDTH}px`, onChange: ([option]) => onChange(option.value) }) })] }));
7562
7589
  };
7563
7590
 
7564
- const CheckboxWrapper = styled(ContainerValue) `
7565
- flex-wrap: wrap;
7566
-
7567
- && > label {
7568
- cursor: pointer;
7569
- margin-bottom: 0.25rem;
7570
- }
7591
+ const CheckboxWrapper = styled(ContainerValue) `
7592
+ flex-wrap: wrap;
7593
+
7594
+ && > label {
7595
+ cursor: pointer;
7596
+ margin-bottom: 0.25rem;
7597
+ }
7571
7598
  `;
7572
- const ChipsWrapper = styled(ContainerValue) `
7573
- flex-wrap: wrap;
7574
-
7575
- && > span {
7576
- cursor: pointer;
7577
- margin: 0 0.25rem 0.25rem 0;
7578
- padding: 0.25rem 0.5rem;
7579
- border-radius: 0.25rem;
7580
- }
7599
+ const ChipsWrapper = styled(ContainerValue) `
7600
+ flex-wrap: wrap;
7601
+
7602
+ && > span {
7603
+ cursor: pointer;
7604
+ margin: 0 0.25rem 0.25rem 0;
7605
+ padding: 0.25rem 0.5rem;
7606
+ border-radius: 0.25rem;
7607
+ }
7581
7608
  `;
7582
7609
 
7583
7610
  const EditChipsContainer = ({ type, elementConfig, renderElement, }) => {
@@ -7602,9 +7629,9 @@ const EditDateContainer = ({ type, elementConfig, renderElement, }) => {
7602
7629
  return (jsxs(Container, { id: id, isColumn: true, style: { ...BASE_CONTAINER_STYLE, ...style }, children: [jsxs(ContainerAlias, { hasBottomMargin: true, children: [renderElement({ id: "alias" }), renderElement({ id: "tooltip" })] }), jsx(ContainerValue, { column: true, children: jsx(DatePicker, { value: dateValue, locale: getLocale(language), withTime: withTime ?? false, withHeader: true, width: "100%", onChange: handleChange }) })] }));
7603
7630
  };
7604
7631
 
7605
- const ContainerDivider = styled(Divider) `
7606
- width: 100%;
7607
- border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7632
+ const ContainerDivider = styled(Divider) `
7633
+ width: 100%;
7634
+ border-color: ${({ theme: { palette }, $bgColor }) => $bgColor || palette.elementDeep};
7608
7635
  `;
7609
7636
 
7610
7637
  const DividerContainer = memo(({ elementConfig, config }) => {
@@ -7654,235 +7681,235 @@ const getContainerComponent = (innerTemplateName) => innerTemplateName
7654
7681
  var img$3 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWgAAACGCAYAAADw3BCTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAI6oSURBVHgB7b1bk+VGkibmAM45mVkXFqvZNWxyOdO02Z7eXXJndyWaZKan4YP+AmWmX8Pkz9CrXmQ2fJGtrUa72pWmxiTTi6yfpO6HnrEx9g6NbE41L8W6ZOY5B4DCPdwjvnAEcE4Wq3u6p9PLsgAEIgKXA3z48LmHo/nT/zj+t91AzdhQQ71Og8k0/BuHuNxZOcVpWqflbZj2XI8Xeq2zCvX7XJ/AuG3XxWnT0rjnZWmqpgtch4aybdyIVu5gG9c17rflQ3JlckChvLbdHuYJlrEMrafJ/latd/3j9rqFtn5/fJlrP+p5ZhtGGlv4XXC5t3Ov1oZ2A/Qv9ezcxWtHNsP9D6G8hXOH2/Rm9dpR68NxdjDf7uL1ZfX5mhn31Kx4StL/2Nt2eP/kgMpT0ITja/h6C1O77jo431xu7ex4pM0Yj7PV5dA21Wsa7aPPdblM9mGM63jZytt97EvKB9kfWV6H9cMg503KcNrF4x71vEuZ/PF2rmIZ1+m0rO11f7dhGu5B2odtbcPermS7aX3H7fc65fp92jeZrrh8F9tbfasr5ZTbSv29u5fMtG7qTw4YVu/KZb+NQ7aivN25JrztfbjGeLp15dgWl7GOtVnv8vrtJqzTZV6/BiyxNmvt74rnt3F+gG3YPLe9gvpW3q5wT7pwUXSwg3xRhYZcp2lnTr5evHxze3yZ1MMDaOMFx+167d9jk91saD2Wzd31x1oNnFvdTw/OVhfBFkFz7uA9OPcH6nXwR5UpzbTvK/1VwN3Os4Cde2ji8iI4r9y5cdtuFwBZbIh1BGyholyUcL6MHIzwW9h1KKDf5nXDzIVXK2byUbuex5nj9xbaRtJC+hBB4yeFPmyaJh8fV+PywROVUNbqPYA/u6xrZd0s+RjG8vz5+2Gfj2tc4Y2u832lbwbHvnPlq9xGLCBZH66BDgE5lO3n9jWA72h11yWICjYrOHN/HYL4ARvl9NG4034ONUOg5XkDY2tbA+fB2uwyeG71bwVgjeA8OHCW9QzOJyU4rw+A84aJzj5cGX2bWYL9qmnZgFUvxIZyOV/kcqEDSHO98ANHsN0Ltcmg38d2hhmDtrdtrfCmwQt/zNtIONhTAXa8jYFmHiLHmr9pDawNsBOyKZDUQBT3uwbGHc2D+SGrsXd/V5NbVzFjhjw/jIfP2YDnpXNt9KGGv6ltvmqReed+tSJflBMw6jIA+8Pxh8YPFyyzBwqDuJS3JQCzMQMvOhkyuOIBBPBvdVqYXM4K1oMjGLLJMZfhw6/Bh3+XJwykvd/A0kFb8Wpatg/3HoMyTxNSH2EM2sagBXANPBG81hFMkfUW8x4tw3wTAJ2Z8g7ndfXAwIz9rWnRGJRXR9zrBsIGmFsqgdl21ZdZ28EeFgzOmzC/nfbBy2NbYcTGnK+gbJvXcZmA8gI4XxJfN3qT8G8oN22XAdOmvYJSKgeQ9icFXhulr9rF0TsgHBX8et3mClheYQDSxTa7sj95KHxXsEYzpifvmjTaK30BwH6H/byXRDwj7qkO6H2lP6r0gex8CbQpgskI0hQCbprv9XcHawt6B28ZADjtUGFl5Nr5unxGR2DpsL+NPtBTc+yfGwDY23VEuTiCLh+ryhbFfhlol6w39gMbDYAyFn325XEJC9a3hiQJdnKzxTL34BkdEQnSRqPX/uTc7d35yDtfFi8971erejlKFiZvFO0AtPo5duxoq8kVO12HQMy2X4mMKmCctr+GvhbosDFmomW2nMCVIoDWjofbjxVgZhtQBlkrOFf64N/RmDNuc63gy8trlaEEkE8cq14C54DOmyveRB9BtQBlD9JwQdmrYcGkR8r/KDNjuWgUpGtM2vpNTLzPr+AN9kFwATIrsQcHgInp1bJfClLfCaTtmDOIpONLO2NMuj/QB1oNOL28QTN1/Lraw2Gpf2gn0r5pq03l5uvgNV+Bb9DtCFA1IAfBZoZ2+ZyrnjrZXqt/kYaDfq2+Db+Pdrgoedh8q4Cf6hlow3kogF51Yikfp76S9GCj0tI+QNvGkZYe1pt5Bt11ZX+yLd2P1Qwop8qqMZtGLbbPoCwsmnK5NwPeAWUNJ2fIppt0zxXnR7B0l+fXa9d0PZ3vjDHvym14WylTRmCesxWAnIHrdbVmZvLDPrNm2WUD+m0G0BprTho1MuirvF7KthGQjTlj/Qk46/JKbzC5uHtlG3YdiENE2WLPP0sXIYrPFjsNmzibnTam4RqLICV0EaTNWViaXdCoC8JF2c0pcADS5sD0QJn2LWz/hR2JCNQIPqhTezC3/bDlTve3tp9zgFxb79vN6MzH9CXAYbsJQD0B69ivXCO2jURcK07WGvj6F4hOH7xtk8Gv2Edjc5067tghTcBO08aocAQKSHcCVHK2mSH3A9TdwU7oZDUCuJI6+Nq8O0Yc9LjSfvH1VCUA+Cajiwm4m/QAGP0J4n3FFS3cuG2lDbPutqX4hroScGn26ryU3Y+gLQCtGB5neiqBGsua7CD0JtIHRQDroCyAbsFoE9YqGIvjUK8IAWUE/zWV4AzLK9WWl6wmS2wX6iz1Nzgmz7K5NRgi0xbzzkAvaWCZaM6qPRs4W9sJc76KoMyyxgZ/+waZoZqx6LTcAkO2ixvljjGz38SOKd74SSbR/oxJ641UtabNFwH3gQ5IxCPSefKMmmIFueEq28Uba+nVsDAPzk3xql0HfwNRD85eu/bzVq8GXrVtzMkglYNjEGtn5A22RU3ayzTwkFo6j6J529uG7cNQAeeKmRQz9BVH9aAPYaS2vTLdJhIOmY1yTK7W6TU2TBlzquQehofeDGQ7TXlNt3aPONAv2gzilBM5iV+5h7Fk17ycGDj2vdZoDAW8VqNBPEve1/RndPq59egg3G/BadqXQMd/qNEi+lk0B0Z1dLUID4eY7HQz1kwHrMaAPWOuOQG93jyg1qy2psyU0ak3B85oyJY9c54F52Cbsyk4y3Hwf8KU41Rs38gr4iiSQU/px5SboY1Pk72GK3HdLjLUWME86wBKg7JcBunOmPTKMVtg0tKmFSCNqxrRJ2U5vcpCpIBgnoE4Mmpb6Q3kD36FHOkF2PUIN10t4sMACJm2brvKdr1Eccjxh/W9zOL7gqcaH3cPv4vsLgB1q3qoNLe+EUy7Qt9Nb0y2C21ld9jsd+NzbWCHbFsuyL1cPlVrK6fCQuwogm1DEA5XWOf6qPzmjbVWVj7ZWKtvDnocqb7tf1uG7EkZh6+OmX3ZdnqiKl4zGLfYr/cBNCUBSdRYT7qAtIRcUQJennR7aStgnd5I965/bnclGnGBOjafnK4UZQyTAhLYqfZcgLMxYo76WLuoD2fHMGap18RwOVuekzFq7XwZAjMyZut3ojdDX17SQNA1QObCdVOCM7aZkzWsXMJVG9RVVYtuRoiuAEdfA0xVYpcpvyImfRlYM4HOnNh0J4wh9rnX2FEX2udfmzEWVR4KQ6n1ecyyfaSaVYCv8eGFL2qeZRs4++gUfB2oMeVaGdGUcc8tz4G2lhexvQrOSdpQTbTT9p3ffj89Xnzm8HUxxzYnURNm+hrfut/GrkFml4PzV8QXkyQxUW87YobShiuyfmy9VUGteKhp2x28Jc7Z0lvRjLXxvigBmPdnrXHNbbphy/On9yUzaWPQNm9tiui6sLDbR6AWR93KEehV7jOFvOE6ilr0YCDsJQYf2QGAl8B5l519qC8fC85bmC6BszkBa45AdOixralkyUMzH6UxC84sZajmfAXrEZwH2C5PN9v4VwPnjV1zfecAmfJFKA/ZmtOQTdsQOblDeoUQPGOR5MghAGLvgdpkkor0InHZyu5F/oCwrnQ/KJvm7U6AugKKxuKbI16tquaB2a+rgfRcH72bH2faHZr3LN3pQqLrOoljIiF02gQf4lKxPB7bVC1e2R1jYalOLR63m6lr2xlUwiJ52M/HXQ9u8+7c8zU1YD2d2sMm+VZIkCRfxyCFFF32uazFcwvz68q56agSxbHPXRb9mwWEa1sHoqsI5ALmJn/oTb+Heqwf73WdkNy93AdZI17HvwTSMKBFrDLghCM0JkHOWseci9zH2q2eMwyTqzn/apLFHCizFf0gc97k9XNRGrbe4puLSA0YgDLAvAdn7MfmTda4pJI5S3kbnw0l8KrebIC90nV9V+q5UpcvRGA2MoXoDq9L88Q0ZR2gIuCfsGNPk5C5WiQEH4APDcOIjxST2pcatU0ThukMArPp1i+FUeMxIEjPTdMBaV2TF+xh1bk+a7akU8OrRiLUCtaeqfYI9OjsXNg2sk6qVpgB7kYlA7AeHia+z+JB6h9oc9aXOrj0o9uck1V69+BrteIe9lVGElJ52jksb1ap6mO/MroQb/4hRy/5JvbzDTZ60AqB/ibtWiM6GLgZcIXxBl2Zp6ZZs5O2A2Yu3Wm/XZ8Hi1hscjGCEAF5BEBe03QkobXdR2AUVnuALddA99D6QwNVhn0Z02xOwNFGAW6nWrOxZnxIyCFVJA0D6rQ9q9tmEMd1iTlTZs4bx5x5ekH64hJAdggaXpI7LHKDQaqI7IivxvKqKg7plpLuvO/5uoxRHym6Q+HfhEWmKl0DGielmXhBM5Pdxws8adMRSfKP5Vkar2njbviLG4eQ2wMCQXpWq1b0suNIU92PF4oIQTDGaJca47bjjDIJEcbl1gCpm+57sd7qREeUHEf4EYQ5dr352pQF7yBSwskZbdaP6w5SPSZknVJF33jk7rSh1habHPuw3ZbjHV00TNGfthHNF45dZBq95hrVmNN2tA9u2vRTmULK43Uhx9aMeWRfA76GYcjhgOgQFMAdI5ttkEHj8VN0CEodBeMujoYcrB/Tn9t4HpPJG2Yr4wPYcUebYQpebdTws2moXXCuCsnawXBtH3IhDsA1TR9wXHah843W1191DkC9djtAVIbuVlNzAh7j9KOK7RbWJVCG6BB0AFodlIG81ox1k2RhbwFXuRyntTA6Y8lip4E5z2jOxpx5+aQBDZpB2garpNhnYNKhkwHljqYrtWa5qFuQSwhuAmC7KDkYEzamItq0xU17ycP+Zthb2m+tZ4wa5V4v0xZygLOCXXsApLzuhdj2HHM20K6tM7mDyxuoo79TcZC4rqP0ViTg1WRAMBlhzh/Zu/0a/NsW7GevdezNxX6LxsDZHg7wJmAPPx/zLttwx7/K50z2axIxAfsiD9dGjjfth6zuy36leKAUN+hHMiLzScdTvgI3GHGE61neYMbbuJuw6H/uLci0ZbfeGPS+c/052SN1s8+L61UpUaS8GyY/XkJ/BuAX0N+ubM/sOY0EVF16qDHfdQRnvqVr4OxH5dnfAEy5BsCHBpoMyPiVMXtwXs2wZuvD9gUlDZMzcDuF5AGyCOrNBrwDaM4ma0i5Y84piiOFu8UfYgj/4jiEMcdAS7SFPjvFSdfJ64/ARGLd3KqPkRqjsmm8EQXEmwguI8SuksY/D7qBXqNCBGuYqa8ca+2tSzUXt5sGLpBGFrQ5GqSvRVsoAxf2DiDh2bVEP6hk4rVqTSyUb9wXjbm2fTLD3CBoY+XGznouHayrlhIi9RmkLdFRN9O/JbiarBPUpAQWPt+F/J4KzuYsDGAzcJhbSlykdat5MoCZR+WHLNxRNGwYVJge0CMkVpLyThhlqie/pXv9NJDWJEdxv5UO+4cCM+G9vrm1+CBwDF38JUNZjg+5Rm90uQz3ytBbAT1OBjVUo0oa/a32ZJE2EXT3+UQYtjKLHjSCQwD5ivI7kA9147+1Dj7R5Epy+TPQmXORcvsCCGshfbuSNRso1hIX4Xqqd5Xq1AZH1vozcN7OtLXQOWPN/kFaTXYEIG3ATDTVm5E1J+kCQFulb0LWzOB80mTS0xpbTZEatVGEY47ukIM0Jo0smg1Yt7DxNrPpIsoD2VLFEQj648gXLP+Jbl1jqraPDshWqnPbfqfXVbWCIdq+E02CI9Cq5fCam46Byu28sLV0PWZ+jDlw9cO5zTlmyx4se3/iANxxf4vrYpyyTARGA+e5CJD02ykjT8yE/zOwd9s1R6Jtn/8NDhyTH2OgdB1qxrvomLKyFpgwgWORpkDr9x0ZvK+DURtRa8zSsjwT5n5/0J8H0JJlNKA6CicDToAJF7YumbFUsQEafdSLA/APnOxIgwam5KMi/hrQYlwzjsQbjgRnk43HOTYNg0m2bj8489zowNnWGWOuDdWWtk3FEVhJdmRyRk1vNuC1MLrLy1xuNuh6njdwZmDu+Y3mOev6AfRWfRqBRRo6J2avpKPGRbOWzCMKY/C0xEJb/GWh93E/q04iKORGWSmrTto0sGnZTrraM+NhwmLMNOH1XvmSxWWXrFor6dPHAZHebJHtVFJieuvt1dzFdKf15OQSK9QC1nh5KgO1ImuLx2bnAvTs7zTS8bqGGjfstgvyyBpvxZL2H/vj48u/g9fQQbKxOOKir3B2RxiWbf4CZODKenM6W2SUXXQCpVGJbWKWk2HXSY7plc1rGeP+ZgTphDeieivGO5t2bWx9VM0ZozWKwSlqfNMmt0BfXi/DUL45sATPIwAlxGIQ0B15lCHpMu9T6zRoi8bQOuMaHmLkUojKPm6iA1HK95FRbo214ci/tYBcpJduyHdKmKTzsh+rcK/vM4hORvGFnk3SPmFJVVk0zdg4w5StbwHeDW5AGa8icg2YrbwWnZHaUxkql4ZsO3nDR2l4Fr7R+olF60OAd3kDerMB84l1HoD5ND04otYbn3F6l+7da6+erCxxRKeVXIqrTsNzsG4rACc3KYOPOBA7zcGrT1MDatIyewhIBxr+xQ8Ekz40qU1cv49MoanJChmsU19WYMDSRElDnGP2yu5zI0tX8RyM9nqeAEKdppNBMalhngKQZ5mo4mxs/EOMb9L1rxG4DTwNtCg6rbyUjdZUwB3lDgR5Av9E8XBD0AYTcBzdur5cD0w9g/Q+Aqr8lmOuXAwkwfrujWHQ33jA/ewpJkjSe0D0UARhiuDcOrlD3gzhvrFlBpmkSRuoA8hyuQy26RXMY2y2ZGfkm360MtwH/S3aFvI/x7dIdtjL4Qq4Kbia1pze+KKDchJRwalkZTi31hcf2yg+0OIe7/aOzZozsHF9MhoBVWZgtnkc6WfPgCXAtjY+BjoNzaa4Yg6YTWOuyRk4VLumNft6h0LoLEpD5pt6GJ0ZShoGzs/JnISDjMzJr3cqW6xUwrBYaEyIZExirdNeT3oKwwN2khx2Y/wrwvGMcbXZUVQMKwfz0geNkDQJkjFNHHYogdhJHPO2LOTPygd9zZ44FNV6PR9Fwqaxss1K28GOGR2Q0HHhkNSHSC1T39LytWxBQunntJlKuUkUtmoYafQHPpgzDrcdwToltMf8zz6G3n4rfajL411kDSMTvVNeNDJEGPVQSg0N/P6yvTbubzOCxNLnY/FvSKP2xYDZts652SgQA5NufZ9O3rHDSMn5m9gnskeTQ9q2HJSi+5gfaip9cFs5FgVnBmSWLrhsj4BNZUizDULBN9CWo7yaGGpnf5Mwt/VMqNs2h+khOKd2ML8EzuaIRGBmCYMBcwTn3+CkEANzP9hkDnRTBrqTvF2b947AufA6D844RWdgr+yZzcCZ7Tkc40qYQhOfuqsmh7kZEwhPT9o1WQJBuYOZMYPlioe0KqNm5tw1+fXSQvGQTXNJ18BrPpXsOe0dlJnDr4/bzFpxBoMm6egrKpm10S+76Zvy6y1FGJfdRAaeHTBDlwSqsBpIN/ktQdp5pCd4UEG4SQJqW9Zzb9WQgY8gTyndL6UU7QtlFWm7o4YwAHignAZ2iF+74Z9btWGaE9OTDNFGR1lK1Ql36qCyQfoaShNfjBhEO2DUNoQ/genandMsk8R+e22voYjGTkdSR6JdVVEYI0zGBQ8Aie4QtW6kInbfhm8jSI/SbcyPwdd6EyM1cn8AQfa1lL0y5iZff1EG28V9Z9Ad7Cstut50cANjvrT5pubIjE2XY53ltNhDIIaxxkgPym//ZnyuYLBg/BILnBMDmA502XQ3quMQL2EPxgaKSQbZ6rFSyZZ9/ZolgK0MiJGvmtjBgZxRY8w+tfRBOYNgqLbuuyw3U9Y8kTR43WUefOLXocPQOwMNlfmaw/IVxQtHLqy9vletNEKD2eGo8cDsHJAsdnL24nt/o+Dbj5kKNh2l/B0CCgjUfZYzjIFaVjwiiPZYy4WMr9FFxIcBfqnBUGZtKoFYhq6JxjsC6wHdm2o2ZjbRwKCaJu7XJNqheBXHNwnrS4/ZXvUTNjtJyTviiKZad2PyC0gqCO7FvIE46Xlm89EBg3ULck6rTexBRxGwTMeX/eoc4Pf5oZcefr3KEOW2jOXGXBrWNzzUY3C2juiz1JiqMRdvRS0VDJlRVN7MSBl5k2KP09uJ1R3VQWAsfhgV9HsqHIoiMyh7F+av4JmkDL2xzJHpHdPpR9zFG7cI0SNKYVurniBUBYBe6wngN/EwNn0EZ82zkQaybOLDRY6DnX1rfRAluaTR9URFCB0O0ChCiLVOYrxOb/ZheGIqb4zQ7hgJg8hJGOs0yTHcM1LGOHMfr44A5pS3Gcp9elAcoMLm82nIfOMGoSyBs4Y3oqzByzLP+83yxmoQ1kmWunAfb99xZY6XlTr7pDR+C061UjEDeGGbhrZap/guob2uKlSOkFNjRKBGZ2APNznohENL+dJXzdp08k7ZfGjfNPrKNjvIxBhuSxNHIOXjSw8QxE37sADFGyaGigHo6qrJvGjXvW6d9Lwps8ft4kMs6d2Oyda0Ys/IU5kdD1E5IIQyAxwb1w0Ogc4XvySvoi4Dd+0BZ78nvIFEs5A1opxNDn9NOLg0AEX3UZI5GbhGOUFfjuSaYKCYDKuXB9mQtilgPdiXVvD8tCWg2jkxPduAknJfeRs6+GQFDwqTKVKu5jbWExDV5RG+S0haX3JwbDP4Swidgm/byTGncwRRdWlZT3Giy/G0ZMCY1G2yn95gYIQczx1mqmsySCI4p1MxxlGLqTh+t6+s78zLEanPtYJyQwUgWxs/wKTWrx8eXhsJyCYOwFMizOHsw+dqWejkEFnSONX5BXBmRsztTlTX6JspOJu8caISSM5mhyDdRha9W0cGrYxaGog8oFKHj/AYLQ56pMiKomTSmMMlnjVK9NVGGBoQJEekB+q4j+rNiYwNNbJJnpCmuOkbe/DIqppjMTPcLC1YBAeYheslrMtSQA7ZUtZGxjCHcuRkwbDNTD/1gKz99HYu8WFCcO60Q2HhmNb0gOErPxxzZuz4ZMEboKMRBHqRnZJjjIobRU+FnpNWnVNYYUxARJZP3Fhv+BvYCW2hvsDC5Ww0Yxo9GB3V7tw0dl0qg5Z9aeQhins4mket11f4xhhyo/JFJAbxqy37HHlQADgeiwKw3h8JuFnGWLc6iGuMwCjg3KmeHS/v+LFYis7DrjIOPX04tskyRxrKTVSkHuUyPn/GzNKIwqhDJ8MscfaVE0uYJIQedF0/rHubcz/L+TQWv6r0bTboMHLnQ4zd70rg327L/XTVJ+DsHYlr1yYB7ZUD6qt6XLPsr5c0rmKKUF4WQL7Sa6TJ8c04MjCx5osMzFYHwflEt9mnN5lwYbDGvDaQjq+WknaQ58WLDKjEq/uOio9lqu44muTBf3xj7RRMCQec7LPMwZ7xvYKc3JiD3oxNYqFZ+lDG3OSwrvKHAl3ZhuqOMOiFa3fwtXHR2o2lE02jQOIOJM2aimIFZdgn68PYvjkE8YHQ6F/vB1145m0OSAJnjpdL1FD2SOyc3INAwT09KCpM3Powdk3xPFLx1fUZPQeK4wORKIWiDZQZsPRpAMxlMGAJ5RCLnrFNCNCSXLSUpJUewDQ/8JUbUI5WgL66eO5TG9vHFPHR6O9D8EBo81e7hbg0oCVTKXNI/SHHdJvuzOk+TfJgKWKtEgM6Hdva8O02Arzc+IMOSmlztEYbH9jxS91603stWhgbRZljoOywW21iGbdJYXE9lV/tbqaM2EBqbuBHDUARnIuBLaQa8xpAEsA4zcLXs82WGHMNmIt0oFqAoGv75lODFkxZ2XFKrq8jAsNfqTtD+4mkUWHNvFwD5zP271kC+6A/N/yoXZmGPMQj2am0wFf+WnPN8p3eRwlB5jsF5rh32RlouTxW66RDJnA2ECUIyROHI8X4amNOK6L0ajxSZusEcofJH71qu0kzHtNFGS+QLoXMGTJkxyLIMUmzNhBDZt1ERlsLFUsRKvADjZT3BbVsq2edWP7rgWgyUq8mlxTWL6yz/bf1tVGAOLzcx0fDMTVjLre8yLy2iClvE4tLbFbWW6cDvCW1sGxsVMttJ+yhZ8w7vVlo2z5qw9HhGDse49Mx71+jOy3ycQPnqo2DV1DqUEBtGgDiJF1Q1psbAGIpjw+RmO961AEQqlMPivp6HqJDUJm3MWAFbmHPzET1nEYiYe3aLGe08Y0hv11QDr0zQBXmjClEETzVP4O2g74srWgfv0Qu4CdlVpEcGO/K5RUA7lbbY1uxdakrM7Aaoy6AH9ocA8zSNUgZuCys2X8b0LFmnpeHWlMCtbHhy2bqCETWTJSBOQ0+gaH0x4LzU1IGLYCpyb73BtJtdPy06/D2rpETiQmPlBPydvnV2hwuxioN7CyREilQzzoRR8VABe2V3fR6ISXpww5VQTppxPn1PL+CD/AwsK4AsAk1aWPVGslixROwtm3EPsizbDTvJBKWh0xbQbFpy8Q+1rX8aD3Z9xaLjSDrbKAfQmZOmaEaKE12EsucfmtSD4L/bD9gCbSNbRpr12gRjB/vFCjblF1oKl9VHan2pqHOMG2b2yGz7vODUo8zvXVoCClpX9zHuFpTNaJDDgUkDbmUxxwWpw+y0eQJlk1W+qBYDzGMb2XAGmUNlhIGDQcc4dyVYKqse4jnMoam6oNAQxhHHVkpYSbMqvUjCPEcO2Zr2vWoUgX/BhLKaOddZY4TG4/pEizhYBT+8orJGKcaSudlCxmUsk8MdsS+kI2n+G2wQ46/mr5sscxrG/0B2vJ6m+dtldeZk+sFGXRb5m6+liPwlvZ3OZU0eBfxQ9oCzk/ClK+VBJAMvuGiXGtmE5E7WknJ13I5e5ZZspCwu47il0hMf1aQXkWnXi5XuUM86FG7jgzawN6xVh3rn7RW+0xW0gw7BSUDag3zk3Uu94M8RIxRy5kpb/oEWl0ZxwoRGCKldHMDYswQuNGawwwbp8gOUU7ogeF1ep5lPzvC2PD8apV12gRqbKuORoxtbhsHWGCJweeHT35jUQbZuSgay1gnoyYtIoMySKYcGC3lkXqtgkifVKLyXHbxQd1RHriUrJdtGmuGVxWVKdo8wjWNHASpTtMYiLwwxO/t5QfjqD6FMYNr0pr7DOjy1tNTkREtvQm0Mf+FOQ0ttplHCAp4dxGEB3joCADv5MMFoy0bey4Yr/MMmqzRqhxi8oa8ZERQT+F0a9XSRTbRnzgNWFE5Y/LlE8d6JXoDkvNb6BrnDUnADAh9Fh5AwZ/VaPPRrRY7NNrP18NERrbuCneTyxWcr66WGbO1TVnqiCY5OWpfPalpzbxcjdK4BAfgjN7MwEwBmJk5n7X2AIRkScyY98xyV1Hw1+G2/CyXV0gG7/AklNeQEXafZ+XC3Ev0j7HZJjFUAxOVFroY0meOLzIgFyw3x2ObIa8HjZeBxlKIVuOoiShFf4xF2svRnG89pqAcVfPWm6pX4JELV4ers/HDRQjlagGs0XB/DrBsolL6tv2SQ2mL6I+EZLJepQALY1MNtjEm1PYwXBraYvTMZLeRlY/6Wm0hcSMM4FmT/7JIk3TwFuKGLT7ZhdwhA9cIjDGlDCB9s4gASXt99xYyz7+9gisfX2qnxyx1egX1wP7aJp3ceI0oczbmKysU/I11Sz/KmgVM9dVFSMhYRmu4BEqDPGyGvB0eH9A1WSYRTX5I14O0F7wd5Lrnr7ZIVsk2vhXEB/eezHEpn89qI5uP8kh80KWBLIW80SfGSiYvtBHwzdcz+jA6/Z0LpyCy71FD67Yw/JuNNeKAHZFBQ/yzdB3KU+5lq99Mrz8E5Vr8Mrb3jr+kJ5s+QZSGZq+bsp5nzNifB+ZhW7LlJdZs7SVK44yWQ+hq4KzLoSnjNN1iBr3j1yQFkOY0eqnDqxhtFaTlkafpqPp4scuIJFJWTcCaGcz5G4V8BfMPMOpQDQulSpEepKxbb/wOGPXYlOCBjLqx8LlRL3hl1EV8bUdl9AfEVA/GA4Gh0VCyM2NMY2TwOVpNY6B5Pw0w7WHk38n8YJFZlo2GQrNzSuK0ZvjmgPNz6SxN/mgRNNXaVcByLU+7BOApWdG66cMJ61IlfE8Ydp/PmXwiekc5k6FGPDT6BezE/jt9wxjTg2WwnB4DvnmYHGGjEVVyTudiRTnNqoKnlEcNO36UtslRExr+lk5+0tvHyJq5ebhvhnQMkSWnsDmebZX8GNOmuN/y0FtrPXEk2iCv+PaRBp4IAF/FSBJjyTagRaSSJj2oIpDCkG8bhm7STBcZdWPnuFNmLeGGyrwtf/J6Q2lE4dBCCF4LIKnOvRV+/kodiwb4Zj6THdocKFfjoWne8ZfshIqcGdamFpkxF9PMlsD3NEZopNSglMG4ypotSkOR24Nzr5LGM8r5NvrnQdK4G1mzAfOtdB7CD76LF0y8YdYx6L3RiI7dKKwhSh721D+JwLNXHXqlKNYrWK9VXkj69gjheMqiSRmg7KDG2IqODUg0NvMatb72C9inUCwXASDMOmpw8cSXenVT6NVD6WDsosZH5mQcdF3XlYMLBEP28LZAFPVr++biKg/6WGTciMBj3t+k4ZphGF16Ny5BkUCOoB7aaTmDVQdOvIJNq07c5OM1B1tx0RfnkSjn+Y5gEEHTAXV6lQHG3xMVw46lXwPMVpn/SOm3s7eiBPyxDToCcxSLOolboeQ0gi+D0jaG5EjO+rXKESdt+spMTD9qjFtZM7/Zda3qxQ3IJoGoNN75qQxYyixvx6C++CgpjiejKosKxuYll5joIYM0hxTyhb9v7edXHV/3b68DU9JyeJAw+F21iWREyaOPQGzRHSkz3D6D4yogySrc791O7xMbSm76tg5EYY05fW6KK5i3TyMw/IdeD4HyEjDLPjrG7EHZ2viBJtYWt12LaU6hc3Sc1mxSt4/SmAuh47BpY80Czs8iOJsxSH9LNtRbGXLKmKXzDMDrXYyHFsmjUwbEJ1tjlBhEZbCLMlsB0Y08tRt2DtqRC0ChdIEA3qYLF2ibG8TC8zboZcwRIPJMGIlMszYyi1o10VQGQT1ztLA90HNl1gbF6KtvQxruRUm/toOLbYBlJ8DeUxp9KWxtJj1XNavdSOOEOqOTa6yU+2VDKwBrcXbZ2wtNDbXxxmQGANthzCGC6RzD+ezzgJRynwyYCfwWoAsTZcmmt/2keK/3Y3I6kjFW/k019a0N+9bNZDJBMQohpZy19Z3y6+SsHaMUISFv+lAw2YvitljXjfus17CA+6CheiONSe4wh9+oLLfJscnryEgljS7vttxDlGOzw/kYuO1KJZfRPoWlWeq4L67DjVr8hqBKHcKA27ysoXTNWkPonDKRzY0EFJ2ZjzMgT2chboKscV3qQweidC7PhlVncN7qrvncy2lbTSUBEtX1ZYzGEJthzEWbthwdaPVqjFnA97KUM+a05gGBmctguPaxURrMms+eZEmD1+0VnOO5UYcHOwADnWfZorWIDgYX7jCAdLtT2VlGFw7KhBWk2TAjHksM+3ghib9xhM9pxa1SHqyiRSopjCPKHnJEAFwQu1wANQwB3+uIxyYqMynEDh2LjQ2mUcPUp7YvcQaYbNodbdNS/sgAME1xbJlzEx2QY3xbV9Ato0jAEXko+dFEPtFjG6nCzvvKfH64VbeTiDkyY++A7eP2cYMJVInKrHd90XeSEHp7mOuHEjp8gwlX2ErBeGUsuaOU3rMIzdPrF0P2SJls06elYpCQ5ggvlgmmBsIiJ+zyzousoKMBxSdjsgcpQ1dAXw8K4MrE0+CUsLAdNBlP3N+Yo0NlD9IXRbl++wjOFmbHdXlXTqLskawbVEpRFOxaHbASWb99amsY9MdSh6EMQhGHoUVxIDjDb82DRDZRzxfA5vtLcSCBts+zbH2sdGQeH/9umDr9Dg0oMcOBJWYDbJ+gvTFmogzMB6UMzJ+hIXToBKyxZjaJvnDhczytSRoMxE+1XgLnZ7GOB2frT1JBIxjLRcCatEZ0kEoVe70Z130mbcKm9XVYO47lRCmfNIDnoEmOIrMeo6c8ORKNIRsLp4w2+6g/2itto9/PaTxQ20HJjafgzje5sHtdHk3HJgBscmBMVDrT4gkbi8gGkwcAKMwJ1wBSDnr81ixFnBjj1nmWSBL71vOEo/PQEmPdwzwpuMwlz61YC2FndmxDKZXkqIcRyrlMgUkATh2soSyCqrZJvgFg1ul4+vwGYpeUJFCCAUheIrG0oqQPOXsI9BaBAZEVwlh3mhLGwJri9coMudGHyUolDAWzPCilzTdx0UfUlmPqUNCxTbIwUDbHYsrjAVnqws4O/U78PGOKdabMsPWrLsOoAN4o4HYa5RT+ItjGSI4oT+zTbyosfoB5si+pmCQBTFnAOYid3UVcFlmZ84R0+v3JXXZK2s84+TDsJic0ElC28quiloCl15WXRvql8isnRZyUfaO+7KWMYzRmnxLU5n0d/BRVwZppKmec0JQ118AZ9WYE5tuhzmOdNv/6/xjfZe2ZQY+/scZnY7iidt3EecmYZgNCogOwWUfHYQMJ+mVe2ms9nq5cW6mr4XbIbkeMbsDBJwCsBPUNqGVdX+kj/SKUIjIETIZyu94mLBTrKd3yg0g0ZKyRqAZY597cC6vlnbZG2K6jA9ZToX2Tj+v2VlmPzNK2u/QhA9h2HmJuZcP0odIVFfIxTc5jP7/OHIBjvHYmhsmi8HiM0eJ62weMr0agNedkitLQB5gs69eHJJWnse4hsVTRgFf7LIusVfIwdt2uI7sebNlkj1517D4P49aoKGG8J5BeFIdzJ6egRVvA+q5P4Dx2GajHBNCWgL+VwIAEDhZilwaMqLwhx7+FQSTIoCtvY5g4f2hm1oNVHX5XNPsJKmsjZe1yXwX4bstczDVg9iMBeYqhc2w+QoNoqjVLPZQ0NLaZgub85Mk8a+bpbZ2u+CQaG5U4ZI7DPAkP170M/27k1QQTxw9xpJ8lYbWh4MimLZcHgxZ3uWpyhIaMQuwyo5HBMX18rcOk/WmgizqN5MvEOsKQ60hkSJ+HkJNzLup+JKZHMALQHFq2zV5fsRsChx5q1lioMo5sZ4DBOfY6TXG9RSB0tr2m1HBtXiWBFEY3xHMc5QVFmyImGhHQMfLJfM26dEzN5CGiAN6ortsDoCVmbG876sCbPBgVnJwVA1YwdrvL7QgdtCYpaLRGJO78qt7mh4DFiKd46Dbrz+YINLNoDaIkfSQtm9oclSPss1EpZUy7Ngw6RJzZqEV82AOAn/rCMq8yOOv3CkVnFql7HaWMffx8WwID+bq6Juzf2BbVQSjgHK/ZCM5tBnYbQVgDZ/tmlgfn3S5np1vredZPD6ZRfBYdw+xZxr8o8x00dE6+qLUAuMhmucM1DNGejVnGASUEmnIz3UbRrs3bNGKNscwGvpc6NJtOS8bMU3QAElExEpCn6AR8flGC9DHhc2xnz7PeLOsCe76l16KBs7Fmm+fpN8Qkl50SO2G/cSi3pLKKfzt1GO52wpqLeGkZ1NLHRN0yRNzop348kndQQFTlki0zbx2FSKqfSppSlSsajQBhSxEf8cDTSEAGsn2fJYnOdO/eDXoBABwxcdIQ46gR6HQwhbTfG6DqTZEYHV4qbYJtss8jebqZRgpqlElq56nxMNW2iUDDHSnGOo+pnCw+unMAmtgvODaTY7Yvt2HPlx76gAqjPhiSJAWgnxPpx47GIr1fo3HlIBHpeTL5IkoXa8rfNgTJyD4PJq/tbQLdxGqN+Q5dYtX6+hT7wFGCNgBEHZ0pV7Sem8yw9eYy5yDZNixIr8/x0rJOIzaELauDfYj3C1/D46gDSjpSJ6BusskhcuJsZFLC4LxptYxfp0Ods1BnG87rafztI+g2GtDRRw2ct30W9eAoZfc6oEUfaqwtd5s4VLtRyUfAVuWPTsPr9hbTTHEkIGd+3Nt9ob9HAcaQE2OIDxTaqhzkFI2Us9mP7kvrvbOPKOdh9nVce9SWrZ5mptCTDeDLx38WyyUdKITNeQegbcsS6RefoeLl2ySOQKvbOzmjNiKQpymEDlgzmwdnBOY7Yf5OmDZ/+h/Gf87SBIP0ugVJolXZA5bXKoOksn2WNVYoV/Rlu1Su05WXJVSy6LDcGD1II3Zgol865lb0ZYapTmlZBsG+U/OapGH1FBtmHXSo2dba1/rFEDonmRiYLUknL2rdwv6hZDD5LJglS7Ep6ua4k/qGUjBy0mthLOOw0z4N+gYD4YCTfdX+Vu4hk2SLFnTsXsHG2PM4TSolg1D6eDyYNrRR6ULmdV/kYaD5M4wxmyxhLJeXVxpu2XEctvVhyfb3sR7/ray8iSzbyuSr2kNkhatRmHzDA1CGHjLZmdTRZ9mjg89WSf7pfexDynYgHbgcGiZ/WK5nAXAXXpEkDXUQ1px7V9sMsMGv1QizNWYMOvIxEoaUtyVD93VRqpDlNudntvU8PYYxyy42JWDjp6hsPTJm7wTkaZI0aN4R6MFZ1vP810R3H1i60XiRWP5WcRLGRy7FR7Sy4t0qxmzat/JsYItEbWi9lTovSIHaki7hDbvXXVlbJMJG2aa2Y3a0j1pZDrWzxk0aNZa+3iEaobGcNdzw4EyMZzrvg5dBksMPT5TmEBH80bvY4q2bYpd0BB/p8ZgjrdhxNd3nxERLdBw15WYpmcT9lCUnSWSzviwfcgflWNdHqMw8gOz4GvhTGSYCgFJEHRRk8bFlon8FWQZQkbparWa/65Bkm8hIejikkcooDT2GBt4GOpNYVLqS70bqOepyjPDACb/4WktyhjFpZdXGtiUcr6E0kAVjmMOdkgbrcIic5OqIsow40gYdnMLHtGooZbMTZ2KMmojbG2KkUjtkcJbjaYXBi1rGYCGfX7N7aZDzERdHkXnEUWkALFnt7PtRbdaR2XaqOfMt2MTwvAZBET//xGAiYKzZ9+QTUlavLdvwtAaaUr7TfBeBOTKIB2AarhCQ3UhDadNUALidgrV/GCQZw5a1DSbPJ8rAXGPMizoze/CeL8sZBs4sZfByCp9rMzDbwBPPmhGcTX9mcN6Fel99yee9E49xlOx2ov80/NXfy/1U8pAoj1WMjRaQ1mncclzfjFmnTNQSfxCJqre9zcmX5E/D7/hibVSrXCG4QngeW9PmfUvFY7xx93FbKSc1EWjt1h/YOFLSmeMvqJq0ShjpC+Uk9UbRzYFhD20c/NF0bmCKHmti2iCREJXyiybAmXrunLMUh2KPjmU3OhKQQGclKt4kigtcvldHs0Q/OVf9iMN+rwOLLHoE2HSD55Ti72mJryw3hjBGHUHHx7wf0oM3SQ8sOfR5UBIjRvqKi/wOUeKI2evGBIDx51NHX6/9k+rmFK+v2N7Okb4i20NeNO9RQbfL6UaH6E+JX7fv5Y1fpGnLXqdasgw6GfTybLRsiPsZATWCroA3X1b8VRRh3VauLH7NrHsnw7+z8y/qw4k/iVyhQ7j5QSfl61jetEkzT9/qHGDkn33Dz/otUohquQAzaPnItp+tw+WmkkfxGSo2zhj3tAxzmwRKUz00Dtd7XdlsImPovAfm9MUTa7cAzCk6A0PnOIdGW5czpK4DZxyqzXYMazZJQ1gz13tAxOD8SgqzkzMTmXG4WNptKDldUXxkr+KN0QTQtphMTk26HoFlK7jSqKlCjXVHG9PXUlqKsczrzJhtGPjKwHHMGjQPQU9MmigNJZVO/RBw25gNJafYjuvwyUlgyjX7klknZ+QIfSMDHjLA9+YsbCNop4dBT/mzUs2UjVt7254+DDJYZ0Y9phySIxEOSNEHUtLMKYabTSyc30GT6yRAbdyFb8AvDi9Kcms1mkPOZ3R0CtDurYudgvROz+UYT4310zbxYdHbcbmHhh2fbB/OxcoGnOi+9RZFoW2ZGAxrGH6u52XU66fTvmVADcWvVxs7b3XId6MP4L1uT/ppMruWy1DLBdAHrTPKLqdIji4+SMatPixSFMcusuuNsmYZkk2UZA05FsheJ/1dRQadcnlQOg/xA7t7ZZAtpVA5SbDEiYgu449oEoYA+V4GRo2ngIwWzywPpC0VozglhA7B2NZpSId9ksuiM1agMWMdu+pqkRmeKVto5xxb9vmasa+NfgUFtWXb9iSnxgFgnnMA1jLPsdWcgDJPpZzBhqyZp17SuKPzwppfCzMKzr8Ks81/+Zfjj9RJ2Mh35Uj1Z9WleSrJkZooZajw31zto2ZNtq4vtWmRO3oZhRgjOijr02neh/GxI5FnTDtGDRnC81ZQjuF4qPsWzFKdf3vK1nnN2mveYKPTqSnH8BZm4GbbRmLJKw3I58L8im36cDkvmHrp4gUMHKKNwaMllEpyCamc0WfmPumnEubnd1PrxWMDwLXzJU4/exvrVYNGQ/nDLv4BYqD35XYMyHnf8aOvaUThPve7dk7AlOvaWK2G10nfGrFhurO1kd0aUix7DJeD/UrhdbrtkyhcRDDep/wZOc3oLq5jcDBwQY1Z+oxvrcKyUV/uInOWqI1un0cPdq1moWPbqkORwOG3LcPqMJTObKVMeXgWwSqBsItPJi3niAy/qpalrgbmtfC8ApStbEZfxgEmtuxlDLZarmai5bA5tqQ10+FBJzWt2Zjz3ccBmLXsFV3P4HyPnfD/8i/GfzooIG92EMvc5nlzIEq5xjsbCCdH4V7jo3soh3hoA+rCmbfOYI6AbOBkjkcP1Gm9HtRYq1cDaycVrPx62y/fr7NxCWA9mNtm9QFRgHZaGffBwv3oN2j+QSC+PhtQ5MpnrZ/GdiNgVtsDcmPio0m/cD4wD0cLzH0FYGsPkZQ8CfYPQTb5APq0DwlcRY8e8mAYc0KiI1A0YAVWkQVbJ2H0EZStbwZXTmvaWsQFAPOmL5l1q+lBGWBPjDkPKgdbPPOe8le5dwDOmgaUgXy31dFtxnhbBfutRExEjQaTHUE9A2JSasj5OAb3VRORNRR9kRkjIJtjsAbKNQCeK99AVrlU5mSM1L6NuS58MiO2pCHPMGarg98GtDo+89wcMLMtseYkaajtHsd5D848LwBN8UD4JsngzOwpnOlRQZt156uNPLUbZNMGsMOgL0cA1LXIDa673euyev59xAcDs8VqYj8+KmOlYF1l1WwWwmXzagmgHTjvfVklIsTnyxiPYMOy+ab84Gyxbg68wZCJe+eiZ7UprlvBypaxmWfDRXSIbqzbalu/MyAvdbY9COer7jwca8rR3eeHl4XZ2RffV3BcNsoPma3tM25Dzg/o+R2E3qlzLjNuisDbtzlCg1S3tv1NTLmNYGzbWbcZrCz6Yoh/zSaHh5Ix6E2f98FY9Cr+DTZghBMitQq8IndolEansdA7GFhy0id5ZzDnoEkVEvvcR7C1MgFhAF8BaAVn06IZi5ldb2Ho9qrJzNqWeSpgqwhcc+4ZSku9y/jbYd78WtRHFZRbjcQwtKV5tpzqwzxPC2C+KIdhs3lg5ulcPDObH6bNVmPNc3KG15uROSMws22DPNX86b8b/9iA2AB6owA9OsDm9fIpmFbBeTfDpmVP5TU2yxk4nRmN6Bl1ihBQuWQubG4FrNqv8+yZXLietO9iXGrqj/K3EVOHKIUQJRCrZqhbkEuq5uoVwOOZtYKbl2zsGGzfK7tTrYv7X80DAsfZxGHpEUR5HQDySZdidSeG+UMS+CEzbmG0nllP+eFqD5gRhhLvy4cKsl8DcTnufXZIWox8C8BtfhVkyYUDEZh0s8sMmc9Db2F2ED7H7TZrkCr22qexbceqVzpvkoasA4cgz4sM0WsdlDFM7thlYN4qMFt4VxrppyBroG1JjBiAB5A9ilGCaisF5CK5PSQomrDjy6z5MhjvVBmei8AoylpgyhVQxmWrX5Mx2BIQMzAHcfjk8sUYM5uNBCSNaWZUxvWWfY5tbtDJnW/D/P3QxeMpMLN5cOZp82/+1/Ht4EAR9isyR/jTV4PEom2dMedBtclDcdNJuwbdGUFaOj5C+hBGvZMRjaQDXsj6YOa8RzDsXYw01J0A5hy7nmHb+77UrpVxpxwhqU1/GJgPgXehD89W0qlj1AUbRqsw7wa0ZymMDkoEyoJlWzciGQDg+t1Kg4HmWLVuy5h+Cl80/Zsy6KZ9BeC19rhN050xhlle0obMmFO/BqqgP68HKkZBNkPJklsAdRvPIUBNJbAbE+b92QCQtRj/rOArjHkXJRUDJ0zGP+i0ha+inCpYS909yBzMhnfwNY59BmEMvUOpYqX686CM8BZo3oLpV1SE2KX8GG3lYR6r061d2MQm3KcuyxyzZCDDSbYwhpyA9lRB+LIOytJXW4I0T2sxzPKTADBjuxpjlvoemG3e5IwA0reelYzZbElrtvA5KQzOwFe+mYLzI56Hj4I0/zwA9Gnc8YI18/LpSdSfE5OGeQF1kDxkvckeNprtKtRZxzrk9Wktk3YKnuaxnTgTKcsfbCvHyK0PG+yiTK45NFBlrOjFNYbNdeyVu3D69TMs2+e8OBa8YSTkBMAduC6aG9yxWAcGpFStQsfTS8Q+FVFtFGdtUMnSNvhcykjPPQCytk2DW5hpD9Nja5Bd97lfzMXh2bcNuTetODn4gP1a3wbAA0oipmWDfixgvtWE+0PJ0lPuDZL7J+bY2GVHZIsOQHMiQm4NA2Ip3wN7ZpDdxVCwlTHuJoM2k5szlTJuIVCr7mx5N9hu7SJAJw1aVxRJh2aGb898zaQqXfC05ugzO0bC2BqJUUPGjF80kf15AWDmKQ7RXhoJyNMl1sy2pDWbbQGcX+P0AP/ifxl/yAA9qgZtkRzMoC8QpJ0mTdZmF0F5jVEgxwA1ldKHlZn0ges9qzYQNlAfgcFaP3yzJ2wB1o767thMNWby5gEbaOQSCzbg7k3PteNQxr/CHVmSS46w6oOGiCZAb040V8ZmeZlRAxdW25dhjMV20R+AdQ45CLntFmQP164zTUZlj7RPCPIGsgDAxsbluE1WYUljq+Usc2w1Ha3JFo5dm8Yso/lU0jHGi/WtbAXyhgD4NkoiHGGx22cwasGBmBIeXSnoqgyDYKxpfnOkRR+XW5UrCucg21aOYbSvcXORjD7U+ulrKNvIkrdUSh/GlIVNQ/SGJUdKjNn05W0J9C0PgKnlZdb6NemCbUlTlvVtXQa5gOVaEiM2lDGw3nUjM1jW6EFzPkrOUMbMtoP+a5KGZ82vaTTTZ+Gveeffjn/ET5sTBthtZs8JkDW6g4BNYzieTX2kh0zBkchlmzAv4XkVRo3tmP1udX5NFaB2MokB9Y5K5pwcegh+vYbrrUrgmLDrxjkEZ6QPMQeOlWxsMZ1oUzrq0jFBAiOaM0BNv2+TRP+Vslod7Hrv5pMOv80f78XdSMfqALyr9G37va/0IedqH/fP8ot00Gayr1BmbL2FQTDYv4zyA+DtSKM1Vor1e32wKAgbiPCbUdKWQWcesnSQtp80ZNvejhJ4W6SG1GHQ3+koQWXOFqEhxwCyBpcPyoQlGoNK7VmcfAreHQD2xgB1n8PnEJxNS2YzsssDjpgti29JY6RTBbC1kzkMoFM1lwKUbPuIrharrDbHkrdDHpBkZTZfC5NLgKtoXANmrzHjJ6fM7DqfY8xsh5yAOBqQ7brgfLXO89/fcJjdfxj/MDDchkGag6zDDyZ6dC2iY9DpZlcCeCGN1IB6xpEoGvV+mqa0AGBtUwA1WwsPgXXWow3kBKy9BMLmwJonk7jkWsSGZ7gzrNXLInsoT84wmjrt8NNRi3HSBugwtbA4fww1gDNDprxkeIgpQ1/el/iGARfhyrHw5FykDIpmck4svM1GIeo5RxYvsct6/jAyg1x/3b50RLJJ/9Z2m3XzJJ/sAdDHnBODyQqDUgtALf11mRFb3cSwVX7YWJlz+plj0FLKaQY8WXeCAAzMuI2JjYQ96zEW601bXiGzxhSgMN+7MDmLeRZw3gE4s12Vjj4rs+W1xiMnu4xfzyYI10jtAJgPSRe+fJYpAyD74dhY17Pl1FYNGbMs27l6VgdmtkXWzGZasxt0wlZzBJp5cP7078L19a/+Ynxr6OLNfWIguy21aNSgcXkDssckJI+UfWu0BxEANSnrbVmuoyI0z9YV0zmHIhsCNVGhVSOzHtW5OHpt2EdbgJaNJ68AaCenJPOsWgENwdmvQ+tcyJ/bzVyvySlTvYMSu7YLMTnicP80BarU26us4Dc8Ywl87SHVgyNOd9act1g/tdlnoBMw7jJY8ohVlD/kHPclg5PzNOQh6hYfbUw3PSB0+2uLnx6yTt3HbHSiF2NbtsHqAVPewPoGNHAD6jQ6sAfA1ulah2vv1Nm31r4tjE464gRFY0p9IWBjLHoHzBl1aHMQ8tTC4USiwLqkTLmJg1TS4JJdZsAnV/lauROmVxU2vAY2nJixOvfSb2NlRHFU5Ek4VWF6HenC5qtJiyw3Btvz8gsmWPdQRAbboYRGZkfpzAtyBk+91rzEmtkMnNmaf/2/j/+EZ0Sm2GagRpBm805E1qgPyR48XVv4noXlIZAaO1agXkNY3Zz8McuqEdxhfKgHfbaVB34wL3XUQvjiijjZ9ZkRLzLf6PiseuN8yJx0r/WKcmg/Af2KyQuFXjBjJazN6uxBZqmyave0QJnBP0iqK8AmgScVBx7uHyaV6lx4XNqu1fHaNzBlDKNLDkiTNeBB0o+ZYaMzUBx7MHKQH/bGngcLl+sieCJgI4s256DILf20/BTYs305m8GjV23Yvnwi53EfPw8mAM15IDaUvnYirFodfDYABSWDNFpwB+CrhkDMLJmjMXpmy5pTeRuWb+/rURp06T6w6sLhtEphsxEYWtBXwH1JW5Zl7RMzzJkVURl23C5kjvXlW0cwZjZxAtI0ptnaIjg/0jIDZ9aaP4N9+/4XsfzT8PfAwuz+i/9tfNMY9HilrLmrA7UH6VSGoE0A0rs8ZPwkBsZnpyAOdKE4fFw/KpnrVCIwisgNYOQrxyS9BIIj4wygd5V2niUX7UjBbDV1OJrzrwbSs85EA23ZEB20Y0BZunVsPSVVwvkZO0b2MBMHmp6vvpum75wYitu6bBkNjVEnp+S+PF4BTKIChBGsa+vkDQoBl3JcNEoWBuSye8B+Zf1QbqP1TkJlx+bUw3U2SMX05xMFcIzWKL6AorLHhrKjsMaa+b7pNDmPSRvyYd0wf0tBd7tVkNnoEG5k009z+J2B86CSxerb+AVui4XeIDtWWzuwtZA4m9+G9hsI10M7xJLZnutKyb+sBb4vbLPk9DObxDHTssbMtjgKUBkzR2j46Ay2nXOs1xyBBs4CzH8Y55k5P8Awu/f+/fjGcBluslsRmBGkWZMegFmnqA0na0hIHp9TcCji+o05CjXiY9hnRm394qCUcV/RsR2jtnU++sPukZVzLEp91KtJ8aLJbbja1vpzOrS8slOFdVfiqz1wHzWYZQnZag5JzGx0bPidyhrV9hAhMYlfhvBBq25gNzkskzZU5kDD6IpUxsB+NY0UsUE0hd6s9cerDOLIvAn2a+2YMdfncpNNexg8Yg+OlJNjl/tDVmwMeh0djpKb2dhz4RikeC0l7bmL4N0Da5bTqdN1bQAKDizxEgcAbtKgYeCJj9ywsLiNzZ9EWYOVDJE0FFytPi8zkJsMgazarMaOLy4iUF4FaePkiiY6s9ShKSCbYQSG2ZyuLMsVIK7py1I+M/LP7JDGzDY3RJvtOqFzBWvmJHR/F1kzg/SDz+EBxiMJ/6u/HH/AHs2zcNEzUAt7vhXZtDFpdiKenZXatBw0DHCRejrQRcocULPxF8MlxSE6EjEeunXx0fupTp22t5vXqtc6nDwpHQjsHujXNBk+LiefXAQJVYC2okUzI5ev8fb5+4f7snphKTXrgjwyXpNpv4glYtuDvKLzewtj63UEIcoh+2lHa2DwvTrp+jY7SNlMauB5S3o/ZxKn7Jh3MmDESddWAE+v7ujgs/oKwhttkzR0BevW6dDFSD+NwuD+ZACJHt8a1gX9VcDaWHVr0Rh9jFmWsq5kyMKegSn3jjkXIwIhnlnC4zRMjhPl25c9dNRv8TVsidg4iQ49liikDamjsDY6sOK9CyA1XEyLE2CyQ5AjMaqj+sAKRx/bLU3v6ftdcPilftRQWxa2vADMGC7HhsBsyzx9WcDM0wk4U2TNNXDmafMv/9P4+qCsORxck9h0KBs7kDLC/Ilj01Lu8nYMANAnjkljO5/fQ8oq4XnVyI+KhlzLpCcrHOvGuhN2Dftn9Tx4TqQUmjoeZ+OZ+7zfzUlmk4dkhSXwTg6x72CzfRTaTnZi2g2x1CYdH4AjykIWkyzzwHYJNpnC75rMpPf76XYbD6YA1qYj9xVN2cdCp7A62CcGWnsXN0nDvnBCCLS7HCttwGzLltNZwLijYrBJ1+eUmmkwyjYv83TY50TziTGb3uw+6sqWhmQH5L2tAMzAbG8Pwoo9GF/OJDRq8/Fj32YMmMycz/SzUr1FpdQA2TPkSvRF6ldD47TKYiQGm+RjvgvAzOufTPMye1BmW9SYa8CsowB59pjojELO2OR1Xs4wu0CJ41/9h/EPBJRvR1CWg+0y0CJQM0hbHR87XWPTPJ1j1AjY613Zxo8eRKDm5XUlxM4OqGC8Ffa7al4MrM0wkVPSsGUF9DkjacyNEkRyKJIJSCqu68JQ0p0Lwlgt1KvNz9nY14d2++2uZnYyDSnXN4vGQgP3Ub9ewU5IWJ2eK9w3C7OTbndRvy62Y1EbDvCT84+inJDklF1m0ALqkOqTzTTjBkEVIjhEtgCWiyMDDbRRP06xzwrU4vRT5G3xy9p9TguKgG1se4WhdcqOORJGIjRwaPZVZtIFIAew3mnkyqyE0eqnrKD8BGQKrGcj98hliHtu5aR5MBYAWeockDDmIjHMliIyamzZ5meHZqvtGDC/1AUHztdhzQjOV58vA7OZADTPGEiz1GEMWspbBWWVPaRMgdrLHjgSkY3LmUVfwOjEJUbNU8k1TcqqD+jUUq7AunZDx2t6ta0zNsdSiICsH7nINsPAeT98fDRqyaZjY521i/iYtSX27eqROugSkI/CSNvaqD8MebP2uB9pncZVT/bR4q65LoT3rVwdfngJw+0isCY5gc8NgLs93EjrSJWuZKW4LgrScR8wdzNuvwcWbed+44ds87Ju3Bx+vLmN6dp6Q7PGjHmZJWpD2/XAeBOTpjLWmaeYLwMHoYhtJaGShNStjS13GYh7lTMsdI6BaHuVM875eGU+3zLi8iInnBLpwsD6koqQZY6HZlCu5sUgFzlhzr825wqZ2IUbDAJgLOeiLYHXzDv6pOwIZ5/NIyCbzaX9NJsLl5O6eO9U8mbYqlrWOdxGoTOHme+/TVnKUEPmXAPmPwpg/jPiKI6/GB/IQQFL1hOR2TIpUJsTUYHZyk8qsocsO9bM2rMfOu7rTcLz1OaiN5aYtcxXwuxqddaePXt5AwAb6/ntFNtoQAeHOohB6wrznh31NyOtTEYN6n6n7znqMaRyiJwopmP6RFhi1T1EV/QQuywbUkdgMbTaRWXgbvu46KaSU8NkCNv+hLVr0qyivQGwMWyTFPalc8+22wIjFsnCPRwY2E1KMUBuKywaQbcF4MZIjVPVno1Zm2xx1stXXhpZ3mQGnZgzfPw1nRuTMzpgzsCWi+8G2qAUjU1m1mxas7Fpy5IYZJLia1Qb95CXQSZGm88ig96gXMFg/GUEXAbjSzcS0OwQINdG95lNtGWVMNgOgTLbUvpPtomUAYNMuOxX0NfcKEC2FNPMCP0m6Mz8n5M0Pgl/r7v2BsxmzXt/OX6fZ4Lq39Cd8KNdZKBmNv2Mptq0Z9M8renTst6zZhuRqPVOaMqiJ/IHRH5s49eCp1o1m4urNlsfkEJweQSpY00lYBc5NDyArkvQT/32lZGDEDli2zG5xByMsSLN2lFMe8ZqkoZJDvuZNin0rbLdQlcGJjrXRwL7ip6MURnmePNaOBs7Du04uA4ze3t72QDwNxCZ0aJzE/VjXW5AWy4SGwGbPgGdWcq2ZT8sexi49jBcO+nP2EYBm89HAuZQ5+oJFblNWGdencU+GIj5nklM2WWm4+mwy/mXMfOcJSey5cSILzIoX2i5OT43X4f50/ibew355LLUic0YZGsa9DFOPrOCKVvZjK5sVgNmZMVJX/4mr78DbeYGmbD5gSZSBvHMtq6QM9T5x+D8wEkaS6wZrfmv/9P4Wv+cGj7o26sSpBmYGaBFzgjz9mMUbFot6dM6ZLyI+DjVZSdvYHgeAjVRCdYGuAbsPoue1FOwlnkAcGtrTpba6MRRP147VqQOn++DDSM8KgmJ6kwbyw6Aa3ojWGe2jbIAjo7kG8vA3fYLQd7aJKeZPgTkrQG22UA/fn+SBmsPuV25fn1K+fV9X2kLx+zD5lYg6IsWbeV8PPup9JGGaqvz0Fj5piv3QSQM0KIlrzOwezkPCLwA1O2QR/BZFjquj/pz60LmBIhZigg3DIeVWjnnx+Dj4uke9OSzLgOuyRsGsPt9ZsXI9vwAE76X9k8Daz2JssWpahaynucZiMJUBpqwzKHr+1tp38azUHZxqSxZdWQ0ZsoSOucyxyV7XrLeudzKaP0BlswI/NQiMO7qyif18Dg5X+0UhGvRGETTIdkYx2y2FJmxFM/MlnTmmdC5T2jKmtlq4PzH4aHcvPPvx+/RKwH8AkjfDn/DKoL1XcemZRoA+Lay6KRNsxmjVukjSRzbDMCmgQ0VHdpYtXco4vzoZJGURW+vA1wqYD0BcKKcp3pOoliK+oB6a1d3l7uaj7pYeCgUtq4z7zlT7VXYu71OS99NBFMG+j0AI8ofRHlfWIvf6xQ6n95MO6rtcly1zw8Qe1ikh4vJE7Z/+6TRRxC/VKZmQG2grHX5ayXW+V715EKaMElnn48PQdUGleD+47JEbwAzRo0ZIzFwytdSC8O1NzwoCpjmHiQLGYAC8gTqzhyXvEc5Y1+CcUq0H9qcXqr0dFl8bCQCDzj1GJhfaXNazi7c36wvG1tODj6KoGmhcQS0GHVnky8QkJ8BdT5tMpgjONdG9El5jSUbKIN8wXYdh58v86P+fPpPs2ND5tgmDkAdbFILmTO7qMgZPK0Bs803f/p/jvf7Z+HGMJAOYMwjbDybZvOyh5RVoj28Rs1TBuuTmvTB5kP0jFG79TiPcknKLwBDym07c8xaClQe+S6Ancocc7btYCy22G4GwPvD2yDsq6aRwL6bQ8zrwcl2UPe0BC0+/yuMdgBDvRl1YtuO7ErlqYIM3rZvr59n1tc+P5Caim4sH23A/eAHzVZC06RPyVSn8knjoi1kHy/jPm5s++b8o4pkATHP6TdUUJYERn38viCDbHj1b4wRW2idOPdUljAgRnDeQK4MBmPLf8HXsgH1bQVclDvWqC2rrQCYayFzlxcx4sUI8r02xydvagNKAujeCgD9HJx8z6BOAmgspMiYTUf2QM7mHXxSdi+zZrNjJYxrATOD8teljME2NyzbbFshKHOs+ZiwObY/gmgOBGcEZrafEAP0vxvv0z0ZaRNvHAVq/uMn2e2LKVAzOD9hNh3mn92KkR/8W562eXBLwah1nk0civxapey6FvlBVH4wIJVfgQziIkG4XruW0KAcBcKGkSAI1m5ADE9RDvHSRCFL1OQLWgDuOdBWmww5X4qvO6Q9AzufrEOaj2ULlli8d9bh/oR1t+a6ckCfRgdWXg8KBovtV46FG7O2B4sy8x1sKzFrJ1/Y5MSN+GtXEURRDqvqzMCg2Tbg/GOnn1w7PPYTojMEdHlqzBmYskgc++jAY7sNzFmiYXpIJnVZgjHfP35ACS/3mkNjrdKGZJPbAmtm0+/zvapgbZqzZLScGdFXFCg47xcYts8UJ2Xg3DObky58/2ZLiYtepeUERmZzGrPXl9F8tjmUMagCznM6M08PAbNZ82/+cuRjigANQM1Sh4E0v3GwE7HvSnAoRhoCo/aORImZDoB8QZlRG1BPclCreUejpTmVdTOhemwp8ZJm1MMcIMewayuXGw3ANSVzqunIFZad+qqA9prqER0+6gPX+2gQYYReA695/1yZyQUoMRRDsFd5ezuIqFh3deDkjzEgKE4kEsq68w4iMIp+kIE70GaWm8B/VzLxIj4Z9mGn27QQtuIkg1Qh4Kw3UathcSxRiHyyjVqyAe3eojJWVCS5N3lDQuFMX9ay/T4767y0YUOtVx6sFUxOr9SX0OkAE0hgZNXTb3IBy+rwg6ALGYJtQC4PK5AlNjPShuyDA7YTZNLPch3PljF/eBEGtyBbmB0DyFhmdh1tme1YtsxWyzaXwFntmLA5m58DZwTmH9+N5c0f/8fx3isr1f6MRTugvq1AzSeWgbrQp8Pr3e3b8fc6BqhR+jBnIgK1rZvIG7XoD9CkieaBew2gfKVff0n1rS2AeFr2wAuSSNEOGfJMuN2kzEDSr9vF/Tb9ttbfBOSsKTDk1X6eaUvsr+m+rDurtrvSeWOjqEkXjBwcezUrQBRij9kQwKXPSh/NUDrxGmyDjrpVdualUXTYzyo656TuEHNVTCSLIY/SY4A97cr+JYXnFqI9SOUJAFyUMdgYrPeQWa4P95B9amql57F7Ghm3zAe23HcZzAvQphKUUwY6B86yXYrgvN9GsN2dhOsIJAwOp1tx5sQ2PvSKjHDdVLbwTj45N05M5ur8Jt1r8iZz6p0dyH1hVhvZx3YMKLNhlMZdDY/76suyzpK2bLYYy0yQ0IiBeYYxs30XOYPNgNmseS8AND9wDKTZDJz7VUX2YLsbgfqWGwouU3UkPg3TUxeax+bD82QewFqkj9NcPqdDDwCu7Fy8IhgIA1aLDLHseiiFVEHU2up7b00WwXomjSR2egC4l5h3sR/WlwLjAjZOQvZw283MxTkxB8Azz4Pyk1qwQw0CpzkF3bbR+TYBf+vHmLWC8gbbgGyB89zxBgaE7BWkE7OGvoqscgrUW6IE9qfKis9uxddyvl7OAIgFfDmWucsZ6GTFVQngCZR3eT3biTr7UHcWYw35dngobfPwbDlnLuE+hsfZMgP3xXPZZ0HgHh2CRAmVGZDRoSdTSGdqyGug/CyQMgPnUwRj0JKfOOniWNmCgfdZL/6vIhcGrrf5Im5ZJYyU6vM1XfnlYbbMtj0gY5gxOCe2XHEAfkLzkRk8XQJmticBlH/+hBoPzvQwXK8/+ovxFZ4f1tSwjv7l03DDBdHj7gybRpBmQ416UC/8mQJ74UyEjHm87IH6TEPxJNuVH/hSierA+VlmfVUHaDZj0Ri+t24dW15i2Boh4fVl7H9rgEFTJ2RqM6cp+7g6Og7MX6rp/sunnXTbe4uoAAaeQvnQMQfd+NA6KTMQ35Z1k86sy8xiWaLiaQO6sbXbV8Bb2gGQsp2ANNFim20OS8TQOdOiw7UswHNCwKI1FrnFpOtXMthLtGiJrDCQ1kgLAWkcTn0pH0lI+vFenXgr/10/HvWn0kVRjgz6bOrss/oMzJJZDhLd8335PZYrlC3LG7BJFhcV1uztScRqlDcYjJ+HeZxa9e/KkicpPimCsmfLHpTNjo3IYKuxZovMENb8I637yWFgZmNwroGyGTPnGjDT+0EPfxCu+X/2f413+28VCAM4378fJZxXFKhNm2bDaA/+kweosml7mN7qSqBOb0zqTPTheWwjOBHnnIqjjwqpMWtYL3UqUshcu+JhoLakX0sbB9pFmQ122ZeDZiR2GRDJ1q33C0C9YN9lwIrZ3PcLTeMVyUXZ6MHOLOQN6xrawYlIrBkeQgbAtu2Nsuud9rG2bjT/cdqfbf4JJk5G3eaqiaPlNlBujsGVPgBYZ+bf+0z73fWRBQvD7SFhER5bQBdOZ8BlGL/MdtuxYmmrZcaMhfGq869gyBcAOKgxq20c6EpZ2Ifnj2IEhpmMEgw34e3XAwgzqhozxmNA2eJpfFjcccV8c08cheGmv6VShgEyA7EHaDkXDiQfz5SzTUb3OWD+ytWvAfOh+GW2gxnm1LyU8QnVgZltLp7Z16sCM+7vw7iu+Wf/8yhcuN8AyClQ90+17NWpE1HqraayB8/WpA82n+dD1lcGvaBTkUPznmvEh+TBgE8iVYeUW78AyhZfLTJIDazZZpyOGMbHgH2pGnSK9pgJh0MHZFHGtp6WJx2UpqC7AUel63KKfRaRQtOgDZNeOPnLGnVgty9WVmzvQLRH2hnYFmrXe9OVuxKYWe9OLFmZNjowT1Q7tv43ts+wLYx13mzL3eFPUJ0QHKex6FV21LGdaR/MgKUMWTKk6zSAtcREbLcADEzmWDk5w0LmzPa7nAvD6jInmTgBPTijg48BOQDu9wPgPlcmxMDNVR6Ev8cBzG5rXWbIPM/n37Ni/l247Ckg8gSMQb4oJIpA2G49nQJNLQRubj2P7Hv11WmSInP2sbb8lQ69Tps9gi0vgTLbnMZsrPkYjZmtBspmh5yA3gyYzZp3/ny8g+Bs84OC8ytB+pDwlVd1/QyjljbqTDRH4rcXMRRP1oFGzVPTqWVkosofWA/zUUu56tRsz+HTXLh+DnDZGKTtk2nIshG0kV2bzUaWqI5tfYg8YmFaG436qDBuAZ92AdTZZljzksTh453n4p9n46LBqgNoLNxNpZ1mjk1XWLI9QMzpaNESO3gt3+i5LBiwA2H+3TwYe7CWupC4yOQR0ZztQaDrt8C8u1Vmyztrv9d4Zwa1K2hvDkAAbwaWhL86wwyapY39UwiVIzc82+nKBtAyeAfAmG8Pdv6tQF4yNry/jE4/nq5UU05vFwi6td/dOf0MmJ9ifabFCsTMjnn+wQUNrBsjW65pyLdnrrWJlnw/rxNA5pkXAGW2GjBLdzOfmDJLIXNUz81cszlwPtYJmPbZgPmD8PdxLheAjnsUAPfxFKjvreN0InvISq3rY6gNjCF2+hZq0Yra5jy8TTTNnieNpvKH9WcySNKrVQpJ6w8AtoH0qXM4ViNDbN4Ba41ps13pXb92bFUA+lZkhB68U58HQNzXPVTnKI+iGrJMdJBiaB4XbSpd2brxotyngrnOyBytjWIERx1Pd0M8d7ycNGSrsC014KYvgb3QiBVEOU7eQDgxZ3DsWX37oghbB/12+zLHhYHubq3OvItcL+3LRXYSnsHyhTHjVZ09o2zh08ClkYBXMezt9tMo9yS2TPGeYj2ZgfaOlp/6uGRgxbzuUpk0VYzBWZx5d8Lv+1gde2F+/zSDM83YN/afkjzPku8qwCfpwiUqYlsCZLbtAohWw+TULIkR27FSxtwIQLajgPkhicZsxlqz4DIAswF18/r/ON5+TZOhyHsRZaBmkAbHqIB1NeLDAfWwAkZNOiqRxKOcAQ2Amm2SPQ8jQILVRilKPQWSFLJHUyCtfaYrrTQZJJRdQqw12ixon0x16SJMT83A+Ar75IE4ysgm2wPZpAkXF27DyxYjSBW4zQaceHPrjrVi4ItpzBXg3ymIolzDZgwWwb62L8xo72wyMO8cOz5xfTTqzDtdUyFDtK7dWZ8zuSW7yvJFC846MwNmjKIw4N320aEnZciAwfFnYCznJdQ502F8liKZy16xB54C89bY8fMM3Bb2ZrcKrzeHHkdiXIV79cT9nhKNgVEX6gRdbcJtZfLZk7zO2rFU87xPMuWoxFkItOkUt2aAuBZpwXanUv+u7q8PhzM7RlNmm2PKZpOBJc5qSYzMXjSWmQ1BeS46Q/b/Ay1nYHbMmWLR2Lzxb8dbD07ij7J/XAdq+n6Y/zaC9SNm0fcjmzbpA0Fa2jlnYloxMzIRPxggF6ICc5GcqRKqJ4aDYFyyJqmLYH0K5UtyBrBqZtjskd9AP5dhHQPnpuKwpCual0hqDwYqI0lQNrFuBmDihjsTFovU00+JyMsA5Iqxmm/KgOnjv81afyFXGDeuYzDB0ZrNKmvMBuJ8rAimyXm4jyF3IkPw+XgWz8uJ7uNaJRCTMeycYThd2mdk1QDMp+bMW5XAy/X4ukJ2zCz4DrdXIBY544nk6B6NKad4Y63DoHyhdY0ZG/iGB9QInIU2DqRt3j5IesctW5lFYjAGP5hjtpp8iMMGLxSU2RllPoIExArMxphvg96M2rFse25blSHWKF+84tq9CCjXHH5o3vlXG/V3Fq6ViyOdf3ORGYs688NAnAMo15hyscyTj2Pb5r1/O0bYezOcxC+PA2qeNemjV9nDbM6ZKFNwKN42gHaDXvhq5Yv0CXzdJQG1Y9Vzg2CkLwZPpSujxlbjYJhkpw7MFRm9w5FvUNSuybFtz7JTmbeT+fWsw14Zu5xQvrwvvquryiauqPq8KMrJzbfuVdCOW/btKr7K89tADcTNmqEOzg32jWyXz6ttx/JU2EqQMfA4UIdGRx/3IXUutewqPixOK+1kdah3y7HndLwBaNdnNPThWBiUd+vMmpOUsaZSfgjld+04n4sDNK1f6cNihzLGrSxrYMJ8YdJXGayNITMhfg2GYbNTj1n0mjP/AZgFfXjUtMkRhLW9sGGNd3vllTwvuzIDrruntPi2ZaD8NGDHnddoNDD+3mvHM+Tv0/XC4tDmUn3+KtzTFr/81oLTj+26GnONMb9HhyMz2FjO8Ew5WQDnD94J6z+Ki+fhr/lv/u/xbPsreIU+KUFjjw5EkD54ei+A8+M7NDJY96uyXVX6eJ6ZdRGi5xi11NVQPfwUF8scFkGESZqkwIXseb2avy1XjF5UO8iw2Sox1bYPBjDS3OnZaRsQl10D3RqzHmc06oOmyIntTSYxkHRS8KyhvLLW9gLKV/V6jZMa0Dz4ozNQ2uIIQQBt3u5OWfOVbotnDHRR7rD2KR9zaNsNmmeDDb4ssrVtaNxyAEWRIaSNOQGVXXfrLFswazZg5gf0Shm0Ofv2VhbsFYzI2JafeXoVgVqS2lBiysacT3wonMoWUs4DZwIwnwCYWeicMGGIZ949iyBuksVOWfMZTPlWZbKcHlhGi1+lUrOgqYa805hkOgDIv3LlDMSPw/aPHd1nNseWUyQGlcOw6RoRGWbHMOZjojLMBJjZKjKGr3sO881bfz6e/eFbKbqE5sBaWLVzJL4K4P0IY6grQ8dxeQAwv625qLnMUr9OtGqpqMvArH0d+yI52xyztj7OzvLy8wWGXcRVeymDpqCdvhxD5QeRLSa7ZhI+OKhjEKkt1lEAvDZwI0XGMqqUq/ntyPLT8g1BQP5K9V+wlJUt1N0OEsvcbNcZYEXzXZcSBu6H1LXKFjmhv3UhVWg/mKfConSk/DKDsEkUkz7Y9C3LwPeOgTKDtF4jnRt6zZeYATJnfLul/ZgzEOOZd5x5caThDwiUCp1hnXm3L4djC/iqdnxH/9s+otFy4pBS493fl/t0CiyZjdmxAPBtjetm9MUQC70nJUQOQdjmYfnkKQ1P71HzR6GfOVYs264A7SHnntlSkiK22gg/Nsy/XAwqIdWX36bo7dMJLy7JGDx9GXHMbHORGbjsAfrc9dG8/Zfj6dth5iqAscVmI1DXQJrNOxLtdxvWub4BNf/WtZGJUl/r3MaPBrCp63nCrHFIOc9YeB5EgaS6V8cBtrUzzB4gIqQqi1BlwAzbAvs1oDLd2sDbNG7PvpFs2/ysZDLDzIvGc9qGtjMwbdbLF92kb4pgTCo1YDgcSiRmiWWfaKSFMmf+2semi/Xtyx+39Iax3yulAFUQ5WvhVp/bF9ti+WJdyhdsnTJe+J4pdZtYxsRAvnCyz4yZjcFYZDYVlIOzbdx8E35PbqdguwI5wwgxs2T+zWU5gO5G5autRlyc+FSfQb7YYhid2jaw4VdgfnMWCMDF9HcSdmxgTMCGebdDvwzGFkzB2vEn30Rt2UskKewNw9++Lr8+cgwYL7FjOw9z63xIHJp3+BU5mN+mBMhmvPj6EaD8Dh0eln0QmB+SRGi8/0C1ZgNjN0VgPoc/b82P/no82X+q2vMjapBNy8EFoH5T53cVZ6IAdRCRXg3a9DfhgjTAfqRDxy0872As9S/jlA1TnabMV11FAnGsWsL1PLPG+GoTs6l0NA7dMmDbQBmxGtMGujxh3BVBeMKGXZ3BsXLbtjBEBXQE240C4iXlvCS8mkH3VAEYwR/ryvI6Lst2rvK2atvfgF586dazJYCvyCBpATpvNw5E4Vwi4J66ttwu7bNqwhNnoMU795KPQ37PrW3vIksXGy9rwHUiiYtQm7gFscvPYrU1AHWyZ6pBU7wut1dOriCJhIlSRphe8e/zJLLk4q3k2/gmwFMeJMVMmcHmAkY8sjEm3wOGbOBnhFimIFVY1MWdUO9p6MumUoZZ4PSDqQa+Xi9GOwTG/IC6Tjict2PD48w+oeOAGW0OlE1jZluMZUa2rA4/ZMscOSdac3ACntM8MFMsHzkXxwn9SQDdT532HMDYQHpR9qByFKL8gpSdiWysUXOOj+RLRKAmSMrEphq1hfcYWLPVRiqaMciic5HNHIzSxupdwgAYAOugP4yjG2KO6Q8C22kuQBY52ZbaNYN2Agzcr7lBKZUoErGKk/IYY7DdIntts8wizFMB3eqlZ8JJliXSscGuVE338RRkmTnmjdtOZX2ULSZyA9HkyWCs2TTmE/7tLkR/jYAKN+2pOe+QYQFb7iDiIu2LZZnbRBAXQL4lzloB3dtGh2k6qEQMwuAYkHffyAeIxwQ2T8X5m9rdcQmFGJx9fmS+8CUCwwG1yRjMbbY6xPpVRWCvUPBU2DQMk76zWgbAqnwRAPqOftH6GFb8CObvXdO5581/14+NWfKjN6h5EO7XpFl8ktvw7CFQZjsWmNlmw+XAkvOvEi4n9kGOzGA7p3kL6xi8m/ME0MH+JID0X9MUqN8A6eN1A2ql1LWoj1rEh9mgIXrMrDH64xitei5cj2+ApfhqNtOrJXmTG2YuU3MiukROuQOtXxko46qQDU+/1G/AzUkkyU6nfZsdBGmPpCd0vC2Fc4Ah8Nr+VMH4qnw4Ifu9vCzX2YPsahOlijPclgI0n7fwlE59GCCdue/meZBPv8MF7APUZ/BmUC4uked5neDxs5xAKIEyOPLurZUxu+vMWDMD8jbsP0dmyFSBAb+ELWXMjneSm2W8h/1odMWVlQdmfAbn8yK0kWXnvCvYaQDm+/oKa+XPAoO9vQCaCMR0wLjPx6G/e6vDdc2WZAu2uVhlWojAYPuElkH5P4ff4NgRf2yHmDIONFkCZmPMx8oZuj6BMy837/x/gTj8ZwcEjlGz9CEzb0WQ/uL74TWLwdqF5q3u0TinU/sdYbD2w8il7twoRaIy94caatbVSBB3E2HUx9nVNIRP6ii789KHl0W4DjO6i0r/6IRE8J2w7GNAHOqm/thJFi4gm78WODtjuaDo52oadXGMeSC2+Su98QxMTW7xEgZHXKA2bKPtWmgv51014zPc+HNgyidUOPDs+Fplx1xXwNiN0LvaZUlCDGQLyzK3Cn3vw2/MUxsLYk6+EwXjJ0/jNz0tdI4ddq+UmyrA+tSASSWKe3rOTh4pEKvxvfJP1pEVf+36MzlR9p/r6LC8730vgOm3R/6Wv6oPm5Z9uiYgY6TFm1SPuPjV6zEUzudZNhNQfpsmmjLbxYH9uC5bNjsIzhSljA8+0JF/c4xZ7ZAT0Nu5q89DvTeijqsJWAeAZjq9P6uzaTuPr1cciWxVRs3mWDWH6Ykf4n5Mcyo4fYBVs03iqoPdxQ8KhOmTcIPc8oNh2ACwB8eUU34QyGZeOB1Rx9apHzQj9RYci/7DyQgy1q54y1edAhklz8sNfCywH2EMrtz/qc6bFowge6Lb9Q8US2AlERT60LqqyBftyZTRpnX2ZRLbHrRHOcTA+rn2oYpakolNshBA1rr8c2EkBoNrAl9mxCdxSPSp/paX/uvZpD5rjaAQQNYgYwbj7znmlxi0TRWMT04yEBeMWQ0dfzIIhKKj04BX/HVfT9sxIJsTOuBxxGb+TxdM2mAF4zVoJ9r231PVDgExA/CX+qA9NEiEbOWbIFuwadRFNU75bfpOwPzS2DKYOP54pjKwxLPo7wrMZhGg2TxIO0OwNkbNDsXtDKNOdSvheWyeVRtY2yhFqrFqinp1dzs4Iw/IIFZ+9w70c1HXrnnKbPriZMqazxyIe00ZQX7s5gEzhYoZW7X+KeIVxmrP9eHBHc3A0+YZYzkKAhkpbrcFUMHPI/nlC+igiNCA4759EpevTiRDXDzOE5rqvf4V9sKtu8jbvdpUwFxPwCUArzwrTaI4yf23CMJszyIwo4RxyQn3dX/vob6sTjzWpfdbGSKddOL1iSROanjKeaLXKlW8EkDmy3BfvKbLTJkxSoPBOWj9zUnle398qV89pzHlCwo3wvMAfgzO6cH4NIIvGqbdvF1hyXcPvQUxOP9Bnt77ql7/tUo/i2CsVpMslj4V5e0TmH99od7Tzfy6pRF/x4Ay28T5hwZRGR9/EOSMAzrzOR35NqPWvPc/jGtxUQa7+NtwsSpQHwJpWQagRkbNVnMmivnRiTQFa9OqLaPeq5WRisUy2ysOoCuatfliagNjpE03D76W1Ik/M4+jG6WegerzSkRIzRFZs7N55n2sGXgikKcHQFh3WzVfG5BzNVzvYhEW61AcmarNF9KDB2FS8AR5wQVJ0GVPI6Q0lmX7LYQNfy+Cr+HvXX1AcAH3LY4+ezBDtraOPzILMcZplc50KkkwOV6fKtBWjBn0RVi/+/vozN78AcXQNhvtQWR5osfwBtQIc+ZySBh09jyf+1th/XM7vmczv8lXKl2onQQAZ436bgDmJ8xkAzW+qyDNyzVwvhfO/+PwG/GUfhkKfgArfxknBsZfav90wHwcsrci2f0R8sjFkRLKUopPtkMDS9iOycdctUqoHNs5TfXlyvILALTaxX0AiBmgngNp1qfZGKTt6fqm/jdh1ZXRiTJf06o1XK+HUD27zmfBmkpmLcsub7UNg2W7NcN8q+F3ENInfqJbU6mk0LWJMpLTFPQxpIttFsDRDHVrlBrXzdlFjIa4mmMe0Kd/qDQnlTbPVYIBZltEzyjrLUD3VJefkU/WJtaG9befUX33TrJWzFW6x5SSA90L7fpw3hmMDYB51cU+asa8LjjZRnixotUpVSMpGKTTwI/HcXkX2vOUL7sLZcP8llUwZAXqVMZg7OKK738dgTlJEWxAib8M86+pRMHAjGFucv7gd3jAQjETn0flIVwuMEsD5FePCG3jYdPfBMD+0e340YOqKTNGueJR0KxfNijz9Jjcy2jXkTHYJjHMYAbKni2bnS/0e35NcGZr6C/H1Xt3w9SOAtm02TvHyR7yAIU4aoyh9kC9nwPm7+f+Me/H410cUl6Lq5a6laHl3mraNbJriea7A8B9pNMxgTVl0LZ1NfCZMG+a9pkqPp9p/B3M2HxR6B4UqcxZOwPQc10JIz7NcoMdEgOwFDyb9o8PMdGUNaLiD7Qv/tblpcUtWz8wFPrOnbh4b+9AWoHYAFwe0k+AMbNVWDMzZr60TkKdb76Zrmcw3uh5uaVgLeWqF5/iOTOR+KtpN7ee0Ph9u/5/pSAcQPfBA8VeBWKWWBJAh7K7ClxPApDe3SyDwKu6/ht9W3v1y7iM+SsSEwaHXVH2h9dnxmafUJSXr6Ml+wEkZt/V2YeWhmKzLSQzOjQ0u7LuBUA52kgK0O+HmSc/r4OFZ9VVoP4ilL0d53nyCdWZdWpQA+sH023bIBiZ9yF7PGJRQ4n6Bc16ycmYlgNgt7dUf05IDQmdrN85pn2ZQTo2LJkygw6zLE8IMbfIIUts3KzS8JIHpnjQR7R8Xm8n0Q6VcotBrjVDIMX1F5yK8zI+mJrTfHHWIiMQ7Bk8jeHyaD4511rXpAkBXZMpFIx5nfglHGBLP6Yrw2/Kjr+UQpOXw02+v4hSBeZj5mRFj0IfD07dDRYAeoPA4Jx2J1ZfAfjsTHI/N/yVa74Gbp3Ub9g7AZyfBqLE078PoPsHej/IvNZ5HkDrdToMxAbC9DkUvuGWqZQnPq2B8oxdB5AvrlH3EEM2O0a+YDsEzg/D37szOTLEwAF4LDCfuzC569gUXJqxeT8A9EPK+aMnQP3elE2zHZI+2N54VJb93VtZAqnJHwmo7ZWNps7FSSSIsmq2V1SzRinkrmfTNZaNIxgpz1tCJ54OqGHzf3eiB39RHlFaXQvZkzpOziiA/FYGtQEcb4ZvZxUpxGu5GHDiza9HDEdZ45Zt93l+QyCqhgAntisOT04+hA/CZyUgc/1XWIbQDo3hMrhfGMj+KjJda3MP2bIag7AxYv5hhBHf1RGAZo4Vr+wGV714HZZ3+jC2kDl+3m9uZSa81fXPQt3NRXbYoULBdnYxc2OqRnHG0k7Y3zt87J+GaQWwnz+ev7lfCSD2bQDoV5j5BtA9CwTq9G/C8/sutRfKht94A7CYZxSc78+BOkgSvOgB+JBUYak6bZ6OsD+q7MuLShdmxwzBrubH8MOxKZfXnH7ntBzHTNc0PnEjIUA3o2SF57kP/jzwuA9kx4sb3gM1M+mzPw5swByJ9u5Bh8H67fB39UgHvLyVyw+yajMP1jDeFOURAWtl1fgFGHTO1Nj1pNwB9m2dFjJljWWDY6pfiOgwG46oU9S/ckydIlBezDD0FzEDUYtqsalt65kboCEPnwA4LFnYtNrxM+eYU2PmK5LE0yh7FH2FdZ1qykUblSfsB2HATcnliyzz0fEnP3P47xnnW4bfaw03PrPnnf7OfKk8u4pRFc9u5TqiTrjRdv8krP+VloE6l5gzjos+C+wYteI7eq4YsP+e3BBrNQNkZs4GwAK4bOGeuf//HgEIfM+xQKxfpQ6v882D/4dijDHbJ/RC9lYA478+sq4H5BdhyWYYgXFohB8bOvxm45chD7MfXGJ2TvN2/gLAbFaCQFP0EwGa4r4Gcbx5+DBM348rq7KH16gXoj7YlpyKGJf++lLK0wNRIGbFh29VArF5P8w8tTkGsMG8PCJlNhz9CQycUcO8vGIan+1wbtZQ2jDwq2nhE6tR3UIon2+D25kF3GBduIksGkYYMQPlRUz9WThh9RieG7ACSmP/PmtcKg8g2H8R++jgxmUc/iww6DfD7ytAahnbMJqCgDGT+/nDg3sNALy5TWmAx0mYv9JrgEGZwfnkVmX/KsOjTzWHsql2zwIwvx4Q9ilfJw6c+Zx99ll+o+T4tcLJzu0VmG+/ptdCYMPPAuC9Nd10dNTRjB0Ra8wM+Atlw6+vrg86OHLPyo7Rkf82XDfHgnLVHlLxGSm2xdzLzn6TgMzmWXOeXwBoe6gwUHPZQ4rHPKdPT+QPte2d4+SPFK8OV1QRrjcXAQISCNshGcTC9cxegYx7NcBOcdaV0QTHSCNY3wbQeMPvNd71K5Vqcrtb12TZxwL/sWYgnIBR9V8ZLad17PhavMGexIfZ3VDvGTBjf6wGykx479+qyxIM0Iy3d/TcdpWcGE8DA36VKgZOvZX2vw6/7x34HRmYv2JgZiDWkRwM0EJ+gQGf3An7z9dSqHcKx3orlD8P5RYi91z38xZv74swE8D59S9gX0Pb5Dz/LMomPPvY+Tzu4fksEhxH49vmGcd289sTSiWfECV2DGUMuF+8peD76TzAMEC/fiBXsgdhs0PMGO2YxERsBx19D6kcem22BM4ga/hojHP++zD899EUpM+/g8bMVpMx8nKtvgL0B27Fx1r4PkgfD6kC2O/lNp5V8691DFizmV79d29N81KLzQ2CMavJIFQCNaZFRTmETUYyVu9w7ccA2xgalqM50BbnYwXAkWHetQXVUPGLM8jAE7hBjNgTpxmkugaid+p1Unus67Zj8wwgd6nyNlB78ugxFwVOdrDZ+7fyV6DvUV7f1Zjq43L2tVBnH87l023Jjle3s27M61e3SoeeMGYVjVlv/jIA8GsQOfF9kM94wqCc2ldG3f3wjoKwMz9wxKTgb8P+vRKumW+/phHDhk2FmJgrvB+A+OsAyPcBkCcAbfYJJaA2QGaAXgLnmtXYMC7PGQPwIWbMdi0t2ewhFZpyIV2gVSIyXiRHBtS71rmbMmQ0A+V5oG44H1l4gjQffyCvA0UfE0b9MMsfbALUBtB6louoD4oAvQmvfAVQ61DyahY9dCy+5XRqNXEyLnyiC80PNZe0qK8EVvhtmcf63rrcTq+suws34JeVATNSxw1H9+twxGPOpE6TQTXeUlTJ8zJeO5k6Lp8UXku1GsI+KZl88XCg7FhLXbgN4kOG5zEKorY+HSccD9a19SJdhHXf07LH9l84n68BS7bQtsrHPahTQJYw468jQCenHQx3ZtnMHIBrbcMxyxY6zJfO3dPgCA5ldhlhWPHp84UbUwH6dV304HwvbM+i0h4DOGPahFdCnbepQn4/ybOvB6D7IgDe6wp4XwDjrpZ9GuWK1/9FWAdiMQLuf9Zwu1ruCnQ1HcOMjwVktmsxZGfFyL6ZodbJKgyZ7ZxKQMZ5V++laMtjKvNMeZlFNx8GgP7onPLefSxPltlj5+kjBWwG6Ls/ptEYtb2ezEkfi2F6bG+X5cKqOa760zysnGZsceSiSiI1KYQNwdqmg34hBu1rLZcIkW/mAftoiWTGWBpgB5kBNZbTP4DJPnyb92uprgFmsse0bI8rjDklMI79YSKg1Z2sE+/duVyBhsy4vIZ9OWEQCNfBlT5sjRkjCG/uxjA2ti++iIB7eYsaD85nlmXPxGKlxwzMz3SfjC3z8j/X/Xj89fTcvU0zPjpX+JqC3o/C399UqqdyJT4/+AWNvwzg+4MDcdF3Qp2nm+NB6BjwRatJFmbXBeb3Vb74+Dvoymzny81eooyRLTLoOVmDy+Ykjg/H9sPzILecQ+m7eRserGsRH2woe8iPor+KZ9QHc35ATDWaadb+gwJbFwliSVkORYSYHXI2ekM92wC8PwI4J4yaDZ1Z7kszVnfS5h/YJgDM5hxzVgeCZ6JVBnkkdgyAbOsYjPd6vlfb6XaL9ZD3Yg03Po+ye6QPaR7w8fgygvBl8P6zZPH4n8blL1QrZmO9+GtIdWpAnBx5ardtWLY6U9BB94q2/0X4++EvqGqvhf38MuwHTw11fxSQ9m90/svARhmY73KIZwUYfxCO/5d2Pc6EU/zgCPA1IL8u+NbsZQCxGWaNSxLGAauC8odU1ZNrdn4kKJuTb24dWpY3auy5GZe3EwC6uuZcXg3qwKBo7YH6Yfh7z7NptSpQL4Tqsc2BNeYAQTMHI8ZZs3mw9mlR0Q4BNsoiaBiPjcas00BqAljW/3UBGJn545llX75ktboV5lsFZ2ff6H/2dvHtPjPgIchZ7Vsk6TJFh53pj+uvTPuFEXeprPIDrGsg8CiyYh7V/K95OQDvFwGENxqrvFX/xCaAKc+zFFfkxtTr50yB+C0IV0v2qQLzWxGUvw398PSr16KswGoeg7BV/0r308q/4pF7P4rLbH/9N3HeGPEP7rjj+qk7xndz+S9/GID2F7n+dSSH69oL6cZmDyk6s2AaJuPD96kJPi9OOrSYmGiu/KeUv1JCdJymrPVeyvkpHYBoxpqNQTdHby8C9HnYwfMKSJzHvw+UUc/JPGIqe7wPRUeF6Zm9ILOWdS5pkzkZOcte74absx3jbDQ7FCEyZ/ZtxlaHqKf+AuPp9KYT5l37FMYLmA3K8SDqwb/GyH0b3A2ZnxTAvPWhx+Q+Yyfzj1VPvqdsT74Er1+El7aOHeM5Yvu+A2QPxpt72VHHYPy9AHwGzGK6jnMDbV6Z3oxn90NZQNkL/a3PQn88z9NUSUH5trUPrPiHPwwTZcc/1P9+oeVffUWjuVrYbP5733Pbd+LuV3qOBMD1HDAGGy4bHlsBT94NhT8NM28GIL4PGvTSiLv3XNl7br7GhNlelA0ne+jAmMs+UFypxCWLHZHK89zNn9Oynb8EGSMzY8+SrwfCy9sZFd0BoEXyiGWToxeH4kxnH6j84Z2JZjXALgbAsL1Trj82vtrMdGs2JDo+idPcaEbp21j2MSF9bN+flBwE8XuasU9YtyIZ5tMxvbsNNykPuPkWp/YxXpAHTBNP2riXExyoTjBX2/L2TGdH9kswAIjcsjBefl3/av4NQ8zYsDru0oNKAbkL5xzPL5/W9XYKxluts6mk7ty8GtZ/Q82XYWrD6V4Lv8WXAVhxtPMGssbZi9jtANTPvqaGp6wBP7sXtqNP/Nszo/vuzqToRHA2+94vQ90Fj5sB8Zth+5+F/cCpIacs/21YVkS15c8UmN+8BlvGTznhgI9jBn8caxj2lnxax4S/TYur6Tztb8nOvyMYo83d1FljfrnWjAGgzwM4f3Tudj6UoTad5s+hzkzUBzoSHz6i0aJA2JZiqtlqQD0H0mwM1Kvw2ozRIG9T9LFgrDUOjMEwvgTURAXDXodX1KqODSPBDgI32xHg7UGtFg4odh/YaY2qfp2qpXXW9j4s15yfky8567TdzV/Utp8dRMV8Y4C69HVRMAZln4XtfgCIrxUg+EEpWTG/SAnYhAljtsyNgrFLNUGbAGyvBQD78r5KGmF+49J5ntwvl9+G+btP8ronfC0oW76r+8YSxI90fQLfGfv88/CAeCP0YeAs1Hc6/6buTwJmb57uqs2BKwKw1TsIwA9pMuhjyZgJMyPmedON2VJy+9pQ6tlX8Xnnntk5/frlC2TGWIasWUtfOiiX+zGOVWD50ED7fIEJnlMEaQjRm4sAeQQg/ZAWBsAsxVWzVWKr0eaYtazTjHvJyfhWybJFDoHRXG/OSCKpPw/KEDHizYf7TcALYnGXnJTH2GtuuQb+r82sr5kBcFeRB2og3Kk0wMfcoUzwqN7/6l79JuKwOP4IK88bKK9fhbqf5xxANmVQ9jHFJw8iIza7CuB3UgO/UOcsPJhfD7/3F4EZ/ygJw3HC8oTh6w++ouaXYZmnAs5UJ8b3bTvOKWOzDMRWJszYV7C2VobaAyxPWPCPw/zPjwDjmj2kUiNWEyAOmPEIcGsydHoOAGzeG8QmS5WZNJ5s53S8nb+kkX42P1Pr1wrOcdszAF2YB+lzdYye52UxB9I1QzbtzYftvahejVYD7Lcp5wYRwK6MjX19LqTP6PZn0yHpxXYXdG00BLFZFu7NAN7lJGEt16a1+rwusVx4ICz1683LEN0MuFIlR/EsELNDDT7RIV/GViBOX+v5PCYB+snn+SdgUP7SA+2nU1ZsdvZ6kNKCL+NMmfGFe/CemVwB+gQz5F+qbow84fM3VXYgeSvhkMzxawBbrnz/8wo4axte/CwA55sBQLnoDQDRNxlc3wjLf5Ux0hgwt//s/fBWamUse/w8Lr+ova+DPYwFeyBOjBjZrxS4jmpMuWJLDPm88neMnb9kR58x5SljTjVfqtY8vz+HGLTO8/SjuV7OqVTpP14GGj8ApmZL6U+XNGu26+rWss5l3sOEBvgNxk0AjO0B8K4xbtO1cZnmzEknNVBcWkbz4D9Xd5b1HjLHilcH2gorhkEjc/YF6MuSWzyA39sBBD8PbPgNeLiynQTZ4up2YMXP5vtkcMYA4js/oPHpL+N5+MWXNP7wq3xO7gRAfqrLd8Cpx4D7dZAp7r+ZNWGehgfHGCSMhqdcj+elQcXjxkD8eQBgW/fGzw+c6z8jufGCAjIGJaR5V4HopwFM3w1AylMG+ft/TMODcF6MMdv3834ayt7FL0+bfZyBNxVVRt2leaKj5AloLqP1bJ6OsPPD6yda8vlL0pbZMiB78LX5Xz8gT/fJABo5/ZwxUJtWjaz6PP4l56K3CrOuJZN6VMkBUjBqbzMfF0CbA+u3Alh/6rRrbwwEn6uToxYpkrYxN9rRz78Z5x98eSTzVkthgWyejVf08AI0H8zUqzDcpe3a/BIACxOm+IB65AD4TVeXH3Q2AElMg4j/7lO3Dw/qUsQ+APYKmPLbrooAspmJxQrQd76sHwODMgLy3yoDLiIcwsJPfhKnP/8srv8xgLPYX1HVLPfwT5EM/Fms/z7F677a7mEdnGWllxSosozlaNcNZ1uwmhNvYh/SYjzyOc3nvrB5egk2z4xL8B0DIDe/YUD21qQYPa+G+zK0EpzHCVjb9Bza6AhFmQ2aNcZY+wd1Ta/m6Xs/X2bmk092ucQBBtabPwos+AVYNtobkJUPgQY+WJyWLdSvcEhWTJjla+VZ33153P68DPOOUSkzxvva/M2RsrFReYwsT/D0D2uNPp0Wff6gvo3VRdCVw+/yySdhPgCvjTy1eZ7+CTb4mzSgTozZctHhT+NEmDCYEV4DXrQfKyv+eQDiJzp/N8wrvgrOitnCAkgbQFfnH2a2bPpvAuOa1ZgO0fV04Lm+pquPBqvzmeVzOrr9rwUY5+UKtN88U54z3V+QOfDRcswuGjgvORTPp8s+thrn8RqRFKguEsTsUJa9Q1II26KGrblCGCCOAe43WJNW4LFXcXREYnpVs9cPsO/ZdR7xP5spI9cZaL3Vttc0A+HXNe4cwbjGht+mw+mHV5Wk9wbEvuwWfCfvh0Gy+EUAY5kqS34Xg4jBDJwRlH/8ZpAIFJz/zNU3vGVwZmB+8C6Nj34afrsZIOb2PwvHO6cOJIJbi26AdR9AYp80/QCumZosUQPmWn2agq5PIlRLKoR2PlP+Inb+EsPh2JZgrLzpfjvAuGaRQQsou8xKnlEvsWmUPUy3JtGwfd08+AUTNFUSNbH56+3REZp14Sx/r6wzK4X8rCybBW1wHh0C7LcpA5FppgxQb6hj8e/0lT4xSad5Sx0q9W8beMPrkKXWtPE5kMfyWpu3oWzz/fJXT/vzaZZ6CMrMVg+Wb7C3+bCdvLS6WG5jbz0y2s/FEm8DIG+UJct8RcI4C4D8x5+pfkwqU4TpG/990IR/noGZDQmwATUvGyg/+Fms+yj8rg/CsT4CyeKBO/Z3wroaUCf7uKJGVABbEskfkhDQwg047zS6Xt1zWkwm9MLgfP5rduxlron6sc+F8dvDlmsGGvQMQMtSWMf1FoAaiXeyCqMu8n7oNIE124yDES9iAeqHQfZ4t86s2Wqf7kKrJnPyBjKJgENNGvkTxe2/1phsBRoD8LdpmTGyts2AZhq3gdse2HgyFz/2h7b8VgmaBYulMv47yTH+wfBpni+YL64nmnxPtAbGb1sTlSZ4Wh25ccD4fE9Sq6nx25HMuCFvtvhOAOOfBTDmKZPovzVgViB+H9qgTIGEmAFZ+gqg/LN30/U5a++8Q+Nf/RW1f/ZnkdX/7GfUcNm7P9PBXTOMNhza+G4AX3TSsQPvpwrG75KQmLR8jJ1TCZx+OZV/qNOPynpz9Q9s8zfsQJvTkj1I15IS+Xnp8bcOqN2x+acJgHXjnz50vZ/j/Egt9bxcNK16Nt4dCi03yEPX5fs6XYwM+TrIIfcP7OORDsia1QbUfFd7m2K4IM+bpILSCsotEgMeyk7UefcJ5YeHn76IrRSETRKSwgOgnFjxH2l9zG1ZGXFnkhX/Vik6YmlccjBxMv9P1PwkyBLvfR6n71MdlG2eH/wTVntE+BiDcXWFZ6cfKng7wP2Z3o/v4J11HSb8a7TzGfnh/CU78Oaszoxna//WMuLr2hEArexZaitIHyt/eEMJhMP46nXyVOdrSZvmpLdHqlmnFVR+dIDtyZKzEW98sFnGPQPaS45IMQUvZN0Enq6XCeRsb9OLgS/q7/yAuS4LNksgjLYAyPbAFKY8M3qOjQGYpw8pOpFt2Z7SOqkOjHuo5Q/fzfsm11BgzA9/piPiZgCZwZhB1uZpzuwi/xCWczRDilAwY5B+5zfMRL2d6/bPFZDPX6IufKwtwUqWLczmmPHvvr0ACCCrpus7FdnmnYmzD8dCBsEyX4+m9xTLIA/eD1rhDFDzTf2Qcmgf5rX2gFBl2fAFmQJorhGjPWvHSANOG/cyyxKjRS39kA6MdugBNAFkZMMz7JinE4Y8YwmIKX5Igs3yv/AD2kedock1EkA4OKpjsp6fioM7Rxp9XCcAH6pcYX0uArNZlg4i6H0YwO6j6bzWSWz0HO6D8wprPZ8JPzsHMD0/AKyH1v+mrQbKXl+eB+Z/nHYEWMydBJ9CD1fRi1uOCqFimtentz6bzn0RBm2iYTt7SMtSSC0LGBZg1EjSR7n8VPuqvbYv5G5AJu7LfhOG8oOfFhVrD6OZZEAYVVMw4wUgNvvJj+uj5dLbEh09kM0qmzObfvbfBdb65zSyb4Sji4oBGwGEjfwyY/4Ylr19pGD84Qxb9vXPf8sA8jdlU9CdWnaBLWGP1Pitd/R9F/uON3wFpJNeDXWQbV/Hzhf275ymcgj/WVQIldLIXDTTXHKnh25z7+uUy987RiLBZcoAbvNFGx+zXZv3QOg/DuesBvC4LkVDzFnNOffOTB01fDAVVsslUQHmn/y4bP8+6RvNj7Njz36fB48i+53Lw0PkQNq9fdm1Yw/5JfN4SzRVLtA+UlYcgLpBBv0it8Dvgvnj8jfHeFTZP26gfVG7JkDXvJ0zJxWHkONWrgnWSas+p/FFHY1sBVgr256L8UewJo51fb+aO+bwSEe0GQ11SsmjHRVlglZj5z9bKK+1qZh3nk5A+BALnll314HxQ4KH4MMoV4h0wfrwB9GPUGPL3lS+GIUJf1C5ys7peFN/CflQUraP9EpWhGfW/FEuF/sQ1p+/RGx+mUCPfR3bLzJgXIYa4wgst7a+jhvHlv3+2Asw6Bc9YW4wzIuY3ShZBjkM2ufzq2qjGQ+ZsOv3A4t7eNy5e2EQ92yTcuyulXlWbvMVH2dhXoZJ28T9qAEvLPtt8PL7epwGvnjMHpDNBHTDOX2fytS0CMZoVWAGuWI29r4sS9dNYtA1MK4ts9lRRYZcriveIKd5bubYJHY7d3s0NC8L+PI5LXeublOZHlrntjBOY42PkSdubMleAKC9VQBbYqYr4Xpxk+NEGvmuP9P5kcdxHifpprQy/oMBM4c0TMzuhYmfHiioPAKn5EOqs282AzNelz4VFpbf09f699BhSXXgRYfmTyBTWloHDdL69zLYIw4vgTo+KxBsi29RQvn7On1I5XEbO7ZzdY38O6V9UIDoNMPikh0CYDRPMT0op+U5sClBi2WPjz5qBrwnjgFtv645MI8s9tibfFysG/vD/vkYYptjc1jcSBjXtZcA0MfaMU/OSghfWkXHvYN5sK6x7PPK/HllwIxzPNYkkaW4bOnm4wzej2CKu/MQ5t+nejreh7Ae2+F6A3YuewKAj33NASq2xbo/qTDf9932BXQph6t5FozLteiKg2kijpEqzmn+ben8BShA7d1/crdc51V9af2hPg4NpKh9886z9xph8vWXBnHM9XVjv077DQK0mbsgjG37rHoNjF5MTXV6DFDP2fnMMZ/T8k1eMQzzm6Q/sETmbr3VIaiXyqD++w9KzdVkALZCo30f2tB83O9Dmq/3EMseQrgaZcccuf1CRx1aLa9KNYshvK1IfXDsFikA2M7p4G8z+TL9+QteIUvUdALSNYC+DkusgeN1bCnC6pj+bhjtb7v9AwL0zLp0ExzIDeLLjrVzp2NX7EM6kPt6rtzWLeQXYTtKQvn4uFd+BHI/7N0Y68dQVxg855N4NzP6j4/oe3Zfqf5WsWgWd8x2PpOm9pwOm/dHvKhVNQIHnBPZDu0G6G7s12P/AAB9Xas4FxOAgyQyx6q1vPqGOmcV8J7kEDmfbVs3ZIQHANzsIJDTfCRDuel6znVyZd/J/LHV7JzmnHaHAXkJgO2he6z5a2XxV7gu8N6A9Y29PGvpd8n4RhIWA+ymxqabetNrPY6yV59Z2uhen5N9OG2XHFbIEo01SvkHyiA/kBCyMQHaB6rRatnHuN7+fprr0pE2l/LS/ortwvbJl+UOy/1BKeIDYMdwPsw+PKep1cpi+VhM6UA9b81MWfVaMaYM87Fg2sviZ+JuwPnGXp79DjDomjmnSXr9RF3bqtJhSeTQ+vNK6FWeH6uyyTkdr2efV5bPc/lEAjivtDHmeq6j4QwoXT0/ZL6Qc84r2z+v7NvScs3Oj6iH5/G72FzYQ1p3KOIorbhhwjf2D26/gwA9M6wcb7Lippv5GIFfflm34jnVPwtW1pnVwCfOrtzmGJDLmu55yVY/wj7Oj+j3/Jpha/WHVD1m/WWAcC3Cwv++04ZH6Mk3dmO/PfY7yqCPtbnwJVq+mfGGR/MgcM1bHD/Em6wGWudHhApe185pccDGC/b56wG5GgDTwnKcgTen2mCJG0Z8Y7979o8coM3mkqvAdA6U0TxwpO7p5docC8WyuXaH9dp6nZpjlIRBj4f6Pkhc0ZYAd3beMd8CiNNeHIjtva7dAPqN/cPb7wlAo13jxsPY7FSm0yX2jXaIAWI50csH+1+XHXqY+Tq1tw9/zMU5dSz4oCxRG2Z8A7I39rttv4cAbXbEzesHz8h8zclE88Dt9dFjAX6JoR8Djr8u8wBbo8+1dWkewdb9BrMpAm5A9sZ+P+33HKDZfh1Myw+4qUksVpUqv0JFdlkC5cV1IA9gXRy9eUyfsw+ZGmutdlgCr+2D7VvzMqSIG8Z8Y/+47PcYoH9TNqeHLg3TpQrjtNWueuPAaYn1Fxqu03LnwLoYhl+JjJkF6Bu54cZu7MZ+q218wQfgUjsDcJ4e0//YTOsigx+bKjiPuJ1Kn76f6vobu7Ebu7Hfa5sB3sWy77KNuXU3oHxjN3Zj/+jtRYDuu4LjDbje2I3d2I0dsBugvLEbu7Ebu7Ebu7Ebu7Ebu7Ebu7Ebu7Ebu7Ebu7F/VPb/A2bZDPxGjcW4AAAAAElFTkSuQmCC";
7655
7682
 
7656
7683
  const getMaskColor = (isDark) => (isDark ? "0, 0, 0" : "255, 255, 255");
7657
- const DefaultHeaderContainer = styled(Flex) `
7658
- flex-direction: column;
7659
- position: relative;
7660
- flex-shrink: 0;
7661
- min-height: 8.175rem;
7662
- margin-bottom: -1.5rem;
7663
- padding: 1.5rem 1.5rem 0;
7664
- border-top-left-radius: 0.5rem;
7665
- border-top-right-radius: 0.5rem;
7666
- overflow: hidden;
7667
-
7668
- > * {
7669
- z-index: 1;
7670
- }
7671
-
7672
- &::before {
7673
- content: "";
7674
- position: absolute;
7675
- top: 0;
7676
- left: 0;
7677
- width: 100%;
7678
- height: 100%;
7679
-
7684
+ const DefaultHeaderContainer = styled(Flex) `
7685
+ flex-direction: column;
7686
+ position: relative;
7687
+ flex-shrink: 0;
7688
+ min-height: 8.175rem;
7689
+ margin-bottom: -1.5rem;
7690
+ padding: 1.5rem 1.5rem 0;
7691
+ border-top-left-radius: 0.5rem;
7692
+ border-top-right-radius: 0.5rem;
7693
+ overflow: hidden;
7694
+
7695
+ > * {
7696
+ z-index: 1;
7697
+ }
7698
+
7699
+ &::before {
7700
+ content: "";
7701
+ position: absolute;
7702
+ top: 0;
7703
+ left: 0;
7704
+ width: 100%;
7705
+ height: 100%;
7706
+
7680
7707
  ${({ image, isDark }) => image
7681
- ? css `
7682
- background: url(${image}) 0 0 no-repeat;
7683
- background-size: cover;
7708
+ ? css `
7709
+ background: url(${image}) 0 0 no-repeat;
7710
+ background-size: cover;
7684
7711
  `
7685
- : css `
7686
- background: url(${img$3}) 50% 0 no-repeat;
7687
- opacity: ${isDark ? 1 : 0.5};
7688
- `}
7689
- }
7690
-
7712
+ : css `
7713
+ background: url(${img$3}) 50% 0 no-repeat;
7714
+ opacity: ${isDark ? 1 : 0.5};
7715
+ `}
7716
+ }
7717
+
7691
7718
  ${({ image, isDark }) => image &&
7692
- css `
7693
- &::before {
7694
- -webkit-mask-image: linear-gradient(
7695
- to bottom,
7696
- rgba(${getMaskColor(isDark)}, 1),
7697
- rgba(${getMaskColor(isDark)}, 0)
7698
- );
7699
- mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
7700
- }
7701
- `}
7702
- ${LinearProgress} {
7703
- position: absolute;
7704
- top: 0;
7705
- left: 0;
7706
- }
7719
+ css `
7720
+ &::before {
7721
+ -webkit-mask-image: linear-gradient(
7722
+ to bottom,
7723
+ rgba(${getMaskColor(isDark)}, 1),
7724
+ rgba(${getMaskColor(isDark)}, 0)
7725
+ );
7726
+ mask-image: linear-gradient(to bottom, rgba(${getMaskColor(isDark)}, 1), rgba(${getMaskColor(isDark)}, 0));
7727
+ }
7728
+ `}
7729
+ ${LinearProgress} {
7730
+ position: absolute;
7731
+ top: 0;
7732
+ left: 0;
7733
+ }
7707
7734
  `;
7708
- const TopContainer = styled(Flex) `
7709
- z-index: 1;
7710
- position: relative;
7711
- justify-content: space-between;
7712
- flex-wrap: nowrap;
7713
- width: 100%;
7714
- align-items: flex-start;
7715
- `;
7716
- const TopContainerButtons = styled(Flex) `
7717
- align-items: center;
7718
- width: auto;
7719
- margin-right: -0.5rem;
7720
-
7721
- button {
7722
- width: auto;
7723
- height: 1rem;
7724
- padding: 0 0.5rem;
7725
- }
7735
+ const TopContainer = styled(Flex) `
7736
+ z-index: 1;
7737
+ position: relative;
7738
+ justify-content: space-between;
7739
+ flex-wrap: nowrap;
7740
+ width: 100%;
7741
+ align-items: flex-start;
7742
+ `;
7743
+ const TopContainerButtons = styled(Flex) `
7744
+ align-items: center;
7745
+ width: auto;
7746
+ margin-right: -0.5rem;
7747
+
7748
+ button {
7749
+ width: auto;
7750
+ height: 1rem;
7751
+ padding: 0 0.5rem;
7752
+ }
7726
7753
  `;
7727
- const LogoContainer = styled(Flex) `
7728
- max-width: calc(100% - 1.4rem);
7729
- max-height: 1.875rem;
7730
- flex-grow: 1;
7731
- font-size: 0;
7732
-
7733
- & > span::after {
7734
- font-size: 2rem;
7735
- }
7736
-
7737
- img {
7738
- max-height: 1.875rem;
7739
- }
7754
+ const LogoContainer = styled(Flex) `
7755
+ max-width: calc(100% - 1.4rem);
7756
+ max-height: 1.875rem;
7757
+ flex-grow: 1;
7758
+ font-size: 0;
7759
+
7760
+ & > span::after {
7761
+ font-size: 2rem;
7762
+ }
7763
+
7764
+ img {
7765
+ max-height: 1.875rem;
7766
+ }
7740
7767
  `;
7741
- const PageTitle = styled(H2) `
7742
- cursor: pointer;
7743
- text-align: left;
7744
- flex: 1 1 auto;
7745
- min-width: 0;
7746
- margin: 0;
7747
- font-size: 1.25rem;
7748
- font-weight: 600;
7749
- pointer-events: initial;
7750
- font-family: "Nunito Sans", serif;
7751
-
7752
- > * {
7753
- white-space: nowrap;
7754
- overflow: hidden;
7755
- text-overflow: ellipsis;
7756
- }
7768
+ const PageTitle = styled(H2) `
7769
+ cursor: pointer;
7770
+ text-align: left;
7771
+ flex: 1 1 auto;
7772
+ min-width: 0;
7773
+ margin: 0;
7774
+ font-size: 1.25rem;
7775
+ font-weight: 600;
7776
+ pointer-events: initial;
7777
+ font-family: "Nunito Sans", serif;
7778
+
7779
+ > * {
7780
+ white-space: nowrap;
7781
+ overflow: hidden;
7782
+ text-overflow: ellipsis;
7783
+ }
7757
7784
  `;
7758
- const PageTitleContainer = styled(Flex) `
7759
- flex-grow: 1;
7760
- align-items: center;
7761
-
7762
- ${PageTitle} {
7763
- max-width: 15.75rem;
7764
- }
7765
-
7766
- &&& button {
7767
- width: 0;
7768
- overflow: hidden;
7769
-
7770
- span[kind] {
7771
- display: flex;
7772
- align-items: center;
7773
- justify-content: center;
7774
- width: 0.75rem;
7775
-
7776
- :after {
7777
- font-size: 0.75rem;
7778
- color: ${({ theme: { palette } }) => palette.textDisabled};
7779
- transition: color ${transition.hover};
7780
- }
7781
- }
7782
-
7783
- &:hover,
7784
- &:active {
7785
- span[kind]:after {
7786
- color: ${({ theme: { palette } }) => palette.textPrimary};
7787
- }
7788
- }
7789
- }
7790
-
7791
- :hover {
7792
- ${PageTitle} {
7793
- max-width: 14.25rem;
7794
- }
7795
-
7796
- &&& button {
7797
- width: 1.5rem;
7798
- }
7799
- }
7785
+ const PageTitleContainer = styled(Flex) `
7786
+ flex-grow: 1;
7787
+ align-items: center;
7788
+
7789
+ ${PageTitle} {
7790
+ max-width: 15.75rem;
7791
+ }
7792
+
7793
+ &&& button {
7794
+ width: 0;
7795
+ overflow: hidden;
7796
+
7797
+ span[kind] {
7798
+ display: flex;
7799
+ align-items: center;
7800
+ justify-content: center;
7801
+ width: 0.75rem;
7802
+
7803
+ :after {
7804
+ font-size: 0.75rem;
7805
+ color: ${({ theme: { palette } }) => palette.textDisabled};
7806
+ transition: color ${transition.hover};
7807
+ }
7808
+ }
7809
+
7810
+ &:hover,
7811
+ &:active {
7812
+ span[kind]:after {
7813
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7814
+ }
7815
+ }
7816
+ }
7817
+
7818
+ :hover {
7819
+ ${PageTitle} {
7820
+ max-width: 14.25rem;
7821
+ }
7822
+
7823
+ &&& button {
7824
+ width: 1.5rem;
7825
+ }
7826
+ }
7800
7827
  `;
7801
7828
 
7802
7829
  const DashboardDefaultHeader = memo(() => {
7803
- const { title } = useDashboardHeader();
7830
+ const { title, pageId, image, icon, tooltip, themeName } = useDashboardHeader();
7804
7831
  const { toggleLayersVisibility, components: { ProjectPanelMenu, ProjectPagesMenu }, } = useWidgetContext();
7805
- const { pageId, image, icon, tooltip, themeName } = useDashboardHeader();
7806
- return (jsxs(DefaultHeaderContainer, { image: getResourceUrl(image), isDark: themeName === ThemeName.Dark, children: [!pageId && jsx(LinearProgress, {}), jsxs(Flex, { column: true, gap: "1rem", children: [jsx(FlexSpan, { children: jsxs(TopContainer, { children: [jsx(LogoContainer, { children: icon }), jsx(TopContainerButtons, { children: jsx(ProjectPanelMenu, {}) })] }) }), jsx(FlexSpan, { children: jsx(Flex, { column: true, gap: "0.25rem", children: jsx(FlexSpan, { children: jsxs(Flex, { alignItems: "center", children: [jsxs(PageTitleContainer, { children: [jsx(Tooltip$1, { arrow: true, content: tooltip, children: ref => (jsx(PageTitle, { ref: ref, onClick: toggleLayersVisibility, children: title })) }), jsx(ProjectPagesMenu, {})] }), jsx(FlexSpan, { children: jsx(Pagination, {}) })] }) }) }) })] })] }));
7832
+ const backgroundImage = useFetchImageWithAuth(image ? getResourceUrl(image) : null);
7833
+ return (jsxs(DefaultHeaderContainer, { image: backgroundImage ?? undefined, isDark: themeName === ThemeName.Dark, children: [!pageId && jsx(LinearProgress, {}), jsxs(Flex, { column: true, gap: "1rem", children: [jsx(FlexSpan, { children: jsxs(TopContainer, { children: [jsx(LogoContainer, { children: icon }), jsx(TopContainerButtons, { children: jsx(ProjectPanelMenu, {}) })] }) }), jsx(FlexSpan, { children: jsx(Flex, { column: true, gap: "0.25rem", children: jsx(FlexSpan, { children: jsxs(Flex, { alignItems: "center", children: [jsxs(PageTitleContainer, { children: [jsx(Tooltip$1, { arrow: true, content: tooltip, children: ref => (jsx(PageTitle, { ref: ref, onClick: toggleLayersVisibility, children: title })) }), jsx(ProjectPagesMenu, {})] }), jsx(FlexSpan, { children: jsx(Pagination, {}) })] }) }) }) })] })] }));
7807
7834
  });
7808
7835
 
7809
- const HeaderFrontView = styled(Flex) `
7810
- z-index: 10;
7811
- position: relative;
7812
- justify-content: space-between;
7813
- align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7814
- width: 100%;
7815
- font: ${({ theme: { fonts } }) => fonts.subtitle};
7816
- `;
7817
- const HeaderContainer = styled(FlexSpan) `
7818
- display: flex;
7819
- flex-grow: 1;
7820
- flex-wrap: nowrap;
7821
- width: calc(100% - 48px);
7822
- `;
7823
- const FeatureTitleContainer = styled.div `
7824
- display: -webkit-box;
7825
- max-width: 100%;
7826
- width: 100%;
7827
- margin: 0.5rem 0;
7828
- -webkit-line-clamp: 2;
7829
- -webkit-box-orient: vertical;
7830
- overflow: hidden;
7831
- text-overflow: ellipsis;
7832
- color: ${({ theme: { palette } }) => palette.textPrimary};
7833
-
7834
- & > ${FlexSpan} {
7835
- cursor: ${({ clickable }) => clickable && "pointer"};
7836
-
7837
- &:hover {
7838
- color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7839
- }
7840
- }
7836
+ const HeaderFrontView = styled(Flex) `
7837
+ z-index: 10;
7838
+ position: relative;
7839
+ justify-content: space-between;
7840
+ align-items: ${({ isDefault }) => (isDefault ? "center" : "flex-start")};
7841
+ width: 100%;
7842
+ font: ${({ theme: { fonts } }) => fonts.subtitle};
7843
+ `;
7844
+ const HeaderContainer = styled(FlexSpan) `
7845
+ display: flex;
7846
+ flex-grow: 1;
7847
+ flex-wrap: nowrap;
7848
+ width: calc(100% - 48px);
7849
+ `;
7850
+ const FeatureTitleContainer = styled.div `
7851
+ display: -webkit-box;
7852
+ max-width: 100%;
7853
+ width: 100%;
7854
+ margin: 0.5rem 0;
7855
+ -webkit-line-clamp: 2;
7856
+ -webkit-box-orient: vertical;
7857
+ overflow: hidden;
7858
+ text-overflow: ellipsis;
7859
+ color: ${({ theme: { palette } }) => palette.textPrimary};
7860
+
7861
+ & > ${FlexSpan} {
7862
+ cursor: ${({ clickable }) => clickable && "pointer"};
7863
+
7864
+ &:hover {
7865
+ color: ${({ clickable, theme: { palette } }) => clickable && palette.primary};
7866
+ }
7867
+ }
7841
7868
  `;
7842
- const LayerDescription = styled(Description) `
7843
- width: calc(100% - 4rem);
7844
- display: -webkit-box;
7845
- -webkit-line-clamp: 2;
7846
- -webkit-box-orient: vertical;
7847
- overflow: hidden;
7848
- text-overflow: ellipsis;
7869
+ const LayerDescription = styled(Description) `
7870
+ width: calc(100% - 4rem);
7871
+ display: -webkit-box;
7872
+ -webkit-line-clamp: 2;
7873
+ -webkit-box-orient: vertical;
7874
+ overflow: hidden;
7875
+ text-overflow: ellipsis;
7849
7876
  `;
7850
- const HeaderTitleContainer = styled(Flex) `
7851
- flex-direction: column;
7852
- width: 100%;
7877
+ const HeaderTitleContainer = styled(Flex) `
7878
+ flex-direction: column;
7879
+ width: 100%;
7853
7880
  `;
7854
- const RowHeaderMixin = css `
7855
- &&& {
7856
- min-height: auto;
7857
-
7858
- ${FeatureTitleContainer}, ${LayerDescription} {
7859
- text-align: left;
7860
- }
7861
- }
7862
-
7863
- ${HeaderContainer} {
7864
- flex-direction: row;
7865
- }
7866
-
7867
- ${FeatureTitleContainer} {
7868
- max-width: calc(100% - 3.8rem);
7869
- }
7881
+ const RowHeaderMixin = css `
7882
+ &&& {
7883
+ min-height: auto;
7884
+
7885
+ ${FeatureTitleContainer}, ${LayerDescription} {
7886
+ text-align: left;
7887
+ }
7888
+ }
7889
+
7890
+ ${HeaderContainer} {
7891
+ flex-direction: row;
7892
+ }
7893
+
7894
+ ${FeatureTitleContainer} {
7895
+ max-width: calc(100% - 3.8rem);
7896
+ }
7870
7897
  `;
7871
- const Header = styled(Flex) `
7872
- z-index: 1;
7873
- position: relative;
7874
- top: 0;
7875
- flex-shrink: 0;
7876
- overflow: hidden;
7877
- width: 100%;
7878
- padding: 0.5rem;
7879
-
7880
- ${({ $isRow }) => $isRow && RowHeaderMixin};
7898
+ const Header = styled(Flex) `
7899
+ z-index: 1;
7900
+ position: relative;
7901
+ top: 0;
7902
+ flex-shrink: 0;
7903
+ overflow: hidden;
7904
+ width: 100%;
7905
+ padding: 0.5rem;
7906
+
7907
+ ${({ $isRow }) => $isRow && RowHeaderMixin};
7881
7908
  `;
7882
- const DefaultHeaderWrapper = styled.div `
7883
- ${Header} {
7884
- padding: 0 1.5rem 1.5rem 0;
7885
- }
7909
+ const DefaultHeaderWrapper = styled.div `
7910
+ ${Header} {
7911
+ padding: 0 1.5rem 1.5rem 0;
7912
+ }
7886
7913
  `;
7887
7914
 
7888
7915
  const HeaderTitle = ({ noFeature }) => {
@@ -7910,24 +7937,24 @@ const HeaderTitle = ({ noFeature }) => {
7910
7937
  return (jsxs(HeaderTitleContainer, { children: [noFeature ? (jsx(FeatureTitleContainer, { children: t("noObjectFound", { ns: "dashboard", defaultValue: "Объектов не найдено" }) })) : (jsx(FeatureTitleContainer, { clickable: true, children: jsx(Tooltip$1, { arrow: true, placement: "top", content: t("zoomToFeature", { ns: "dashboard", defaultValue: "Приблизить к объекту" }), delay: [600, 0], children: ref => (jsx(FlexSpan, { ref: ref, onClick: () => zoomToFeatures([feature]), children: resultTitle })) }) })), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
7911
7938
  };
7912
7939
 
7913
- const LayerIconContainer = styled.div `
7914
- display: flex;
7915
- align-items: center;
7916
- justify-content: center;
7917
- min-width: 2rem;
7918
- margin-right: 0.5rem;
7940
+ const LayerIconContainer = styled.div `
7941
+ display: flex;
7942
+ align-items: center;
7943
+ justify-content: center;
7944
+ min-width: 2rem;
7945
+ margin-right: 0.5rem;
7919
7946
  `;
7920
- const AlertIconContainer = styled(Flex) `
7921
- align-items: center;
7922
- justify-content: center;
7923
- width: 2rem;
7924
- height: 2rem;
7925
-
7926
- ${Icon} {
7927
- :after {
7928
- color: ${({ theme: { palette } }) => palette.error};
7929
- }
7930
- }
7947
+ const AlertIconContainer = styled(Flex) `
7948
+ align-items: center;
7949
+ justify-content: center;
7950
+ width: 2rem;
7951
+ height: 2rem;
7952
+
7953
+ ${Icon} {
7954
+ :after {
7955
+ color: ${({ theme: { palette } }) => palette.error};
7956
+ }
7957
+ }
7931
7958
  `;
7932
7959
 
7933
7960
  var img$2 = "data:image/svg+xml,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='32' height='32' fill='transparent'/%3e %3cpath d='M20.248 9.67787C18.5318 8.04035 15.9473 7.54977 13.7024 8.43543C11.4576 9.32109 9.99566 11.4081 10 13.721C10 18.2894 16 24 16 24C16 24 22 18.2894 22 13.721C22.0028 12.2054 21.3726 10.7509 20.248 9.67787Z' fill='url(%23paint0_linear_6459_10338)'/%3e %3ccircle cx='16' cy='14' r='2' fill='white'/%3e %3cdefs%3e %3clinearGradient id='paint0_linear_6459_10338' x1='10' y1='8' x2='25.36' y2='19.52' gradientUnits='userSpaceOnUse'%3e %3cstop stop-color='%230084D6'/%3e %3cstop offset='0.489583' stop-color='%230084D6'/%3e %3cstop offset='0.489683' stop-color='%2305A9FF'/%3e %3cstop offset='0.921875' stop-color='%2305A9FF'/%3e %3c/linearGradient%3e %3c/defs%3e%3c/svg%3e";
@@ -7960,54 +7987,54 @@ const FeatureCardDefaultHeader = ({ noFeature }) => {
7960
7987
  return (jsx(DefaultHeaderWrapper, { children: jsx(Header, { "$isRow": true, children: jsxs(HeaderFrontView, { isDefault: true, children: [jsxs(HeaderContainer, { children: [!!layerInfo?.name && jsx(LayerIcon, { layerInfo: layerInfo }), jsx(HeaderTitle, { noFeature: noFeature })] }), jsx(FeatureCardButtons, {})] }) }) }));
7961
7988
  };
7962
7989
 
7963
- const HeaderFontColorMixin$1 = css `
7964
- ${HeaderTitleContainer}, ${LayerDescription} {
7965
- color: ${({ $fontColor }) => $fontColor};
7966
- }
7990
+ const HeaderFontColorMixin$1 = css `
7991
+ ${HeaderTitleContainer}, ${LayerDescription} {
7992
+ color: ${({ $fontColor }) => $fontColor};
7993
+ }
7967
7994
  `;
7968
- const HeaderWrapperMixin$1 = css `
7969
- ${Header} {
7970
- min-height: 5.25rem;
7971
- }
7972
-
7973
- ${HeaderContainer} {
7974
- max-width: 100%;
7975
- width: 100%;
7976
- }
7977
-
7978
- ${FeatureControls} {
7979
- max-width: calc(100% - 2rem);
7980
- width: calc(100% - 2rem);
7981
- margin-top: -0.5rem;
7982
- padding-top: 1rem;
7983
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
7984
- }
7985
-
7986
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
7995
+ const HeaderWrapperMixin$1 = css `
7996
+ ${Header} {
7997
+ min-height: 5.25rem;
7998
+ }
7999
+
8000
+ ${HeaderContainer} {
8001
+ max-width: 100%;
8002
+ width: 100%;
8003
+ }
8004
+
8005
+ ${FeatureControls} {
8006
+ max-width: calc(100% - 2rem);
8007
+ width: calc(100% - 2rem);
8008
+ margin-top: -0.5rem;
8009
+ padding-top: 1rem;
8010
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8011
+ }
8012
+
8013
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin$1};
7987
8014
  `;
7988
- const GradientHeaderWrapper = styled.div `
7989
- ${Header} {
7990
- background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
7991
- }
7992
-
7993
- ${HeaderContainer} {
7994
- align-items: center;
7995
- }
7996
-
7997
- ${HeaderTitleContainer} {
7998
- margin-left: 0;
7999
- text-align: center;
8000
- }
8001
-
8002
- ${FeatureTitleContainer} {
8003
- text-align: center;
8004
- }
8005
-
8006
- ${LayerDescription} {
8007
- text-align: center;
8008
- }
8009
-
8010
- ${HeaderWrapperMixin$1};
8015
+ const GradientHeaderWrapper = styled.div `
8016
+ ${Header} {
8017
+ background: ${({ $bgColor }) => $bgColor || "radial-gradient(129.21% 133.22% at 51.94% 0%, #e8fffe 9.48%, #5fcaff 100%)"};
8018
+ }
8019
+
8020
+ ${HeaderContainer} {
8021
+ align-items: center;
8022
+ }
8023
+
8024
+ ${HeaderTitleContainer} {
8025
+ margin-left: 0;
8026
+ text-align: center;
8027
+ }
8028
+
8029
+ ${FeatureTitleContainer} {
8030
+ text-align: center;
8031
+ }
8032
+
8033
+ ${LayerDescription} {
8034
+ text-align: center;
8035
+ }
8036
+
8037
+ ${HeaderWrapperMixin$1};
8011
8038
  `;
8012
8039
 
8013
8040
  const FeatureCardGradientHeader = ({ isRow }) => {
@@ -8026,80 +8053,80 @@ const FeatureCardGradientHeader = ({ isRow }) => {
8026
8053
  }) })] }), jsx(FeatureCardButtons, {})] }) }) }) }));
8027
8054
  };
8028
8055
 
8029
- const HeaderFontColorMixin = css `
8030
- ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8031
- color: ${({ $fontColor }) => $fontColor};
8032
- }
8056
+ const HeaderFontColorMixin = css `
8057
+ ${HeaderTitleContainer}, ${HeaderTitleContainer} *, ${LayerDescription} {
8058
+ color: ${({ $fontColor }) => $fontColor};
8059
+ }
8033
8060
  `;
8034
- const HeaderWrapperMixin = css `
8035
- ${Header} {
8036
- min-height: 5.25rem;
8037
- }
8038
-
8039
- ${HeaderContainer} {
8040
- max-width: 100%;
8041
- width: 100%;
8042
- }
8043
-
8044
- ${FeatureControls} {
8045
- max-width: calc(100% - 2rem);
8046
- width: calc(100% - 2rem);
8047
- margin-top: -0.5rem;
8048
- padding-top: 1rem;
8049
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8050
- }
8051
-
8052
- ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8053
- `;
8054
- const HeaderIcon = styled(Flex) `
8055
- position: absolute;
8056
- top: 0;
8057
- right: 0;
8058
- justify-content: flex-end;
8059
- align-items: center;
8060
- min-width: 7.5rem;
8061
- height: 100%;
8062
-
8063
- span[kind]:after {
8064
- font-size: 7.5rem;
8065
- }
8066
-
8067
- span[kind]:after,
8068
- path,
8069
- line,
8070
- circle {
8071
- fill: rgba(255, 255, 255, 0.36);
8072
- }
8073
-
8074
- && > * {
8075
- display: flex;
8076
- align-items: center;
8077
- height: 100%;
8078
- }
8061
+ const HeaderWrapperMixin = css `
8062
+ ${Header} {
8063
+ min-height: 5.25rem;
8064
+ }
8065
+
8066
+ ${HeaderContainer} {
8067
+ max-width: 100%;
8068
+ width: 100%;
8069
+ }
8070
+
8071
+ ${FeatureControls} {
8072
+ max-width: calc(100% - 2rem);
8073
+ width: calc(100% - 2rem);
8074
+ margin-top: -0.5rem;
8075
+ padding-top: 1rem;
8076
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8077
+ }
8078
+
8079
+ ${({ $fontColor }) => !!$fontColor && HeaderFontColorMixin};
8079
8080
  `;
8080
- const BigIconHeaderMixin = css `
8081
- ${HeaderIcon} {
8082
- min-width: 14rem;
8083
- right: -3rem;
8084
-
8085
- span[kind]:after {
8086
- font-size: 14rem;
8087
- }
8088
- }
8081
+ const HeaderIcon = styled(Flex) `
8082
+ position: absolute;
8083
+ top: 0;
8084
+ right: 0;
8085
+ justify-content: flex-end;
8086
+ align-items: center;
8087
+ min-width: 7.5rem;
8088
+ height: 100%;
8089
+
8090
+ span[kind]:after {
8091
+ font-size: 7.5rem;
8092
+ }
8093
+
8094
+ span[kind]:after,
8095
+ path,
8096
+ line,
8097
+ circle {
8098
+ fill: rgba(255, 255, 255, 0.36);
8099
+ }
8100
+
8101
+ && > * {
8102
+ display: flex;
8103
+ align-items: center;
8104
+ height: 100%;
8105
+ }
8089
8106
  `;
8090
- const IconHeaderWrapper = styled.div `
8091
- ${Header} {
8092
- width: calc(100% + 0.5rem);
8093
- margin: -1rem -1rem 0.5rem -1rem;
8094
- padding: 1.5rem;
8095
- border-top-left-radius: 0.5rem;
8096
- border-top-right-radius: 0.5rem;
8097
- background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8098
- }
8099
-
8100
- ${HeaderWrapperMixin};
8101
-
8102
- ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8107
+ const BigIconHeaderMixin = css `
8108
+ ${HeaderIcon} {
8109
+ min-width: 14rem;
8110
+ right: -3rem;
8111
+
8112
+ span[kind]:after {
8113
+ font-size: 14rem;
8114
+ }
8115
+ }
8116
+ `;
8117
+ const IconHeaderWrapper = styled.div `
8118
+ ${Header} {
8119
+ width: calc(100% + 0.5rem);
8120
+ margin: -1rem -1rem 0.5rem -1rem;
8121
+ padding: 1.5rem;
8122
+ border-top-left-radius: 0.5rem;
8123
+ border-top-right-radius: 0.5rem;
8124
+ background: ${({ $bgColor }) => $bgColor || "linear-gradient(96.55deg, #FFFCD3 0%, #B4DC47 100%)"};
8125
+ }
8126
+
8127
+ ${HeaderWrapperMixin};
8128
+
8129
+ ${({ $bigIcon }) => $bigIcon && BigIconHeaderMixin};
8103
8130
  `;
8104
8131
 
8105
8132
  const FeatureCardIconHeader = ({ isRow }) => {
@@ -8121,15 +8148,15 @@ const FeatureCardIconHeader = ({ isRow }) => {
8121
8148
  }) })] }) }) }));
8122
8149
  };
8123
8150
 
8124
- const ImageContainerButton = styled(FlatButton) `
8125
- min-height: 1.5rem;
8126
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8127
- background-color: ${({ theme: { palette } }) => palette.primary};
8128
- text-transform: none;
8129
-
8130
- :hover {
8131
- background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8132
- }
8151
+ const ImageContainerButton = styled(FlatButton) `
8152
+ min-height: 1.5rem;
8153
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.large};
8154
+ background-color: ${({ theme: { palette } }) => palette.primary};
8155
+ text-transform: none;
8156
+
8157
+ :hover {
8158
+ background-color: ${({ theme: { palette } }) => palette.primaryDeep};
8159
+ }
8133
8160
  `;
8134
8161
 
8135
8162
  const ElementButton = memo(({ type, elementConfig }) => {
@@ -8141,157 +8168,157 @@ const ElementButton = memo(({ type, elementConfig }) => {
8141
8168
  return (jsx(ImageContainerButton, { onClick: () => window.open(attribute?.value), children: elementConfig.value || "" }));
8142
8169
  });
8143
8170
 
8144
- const AttributeGalleryContainer = styled.div `
8145
- && {
8146
- width: calc(100% + 3rem);
8147
- }
8148
-
8149
- min-height: 12.625rem;
8150
- background-color: ${({ theme: { palette } }) => palette.element};
8151
-
8152
- img {
8153
- width: 100%;
8154
- }
8171
+ const AttributeGalleryContainer = styled.div `
8172
+ && {
8173
+ width: calc(100% + 3rem);
8174
+ }
8175
+
8176
+ min-height: 12.625rem;
8177
+ background-color: ${({ theme: { palette } }) => palette.element};
8178
+
8179
+ img {
8180
+ width: 100%;
8181
+ }
8155
8182
  `;
8156
- const LinearProgressContainer = styled(Flex) `
8157
- align-items: center;
8158
- justify-content: center;
8159
- min-height: inherit;
8160
-
8161
- ${LinearProgress} {
8162
- max-width: 4rem;
8163
- }
8183
+ const LinearProgressContainer = styled(Flex) `
8184
+ align-items: center;
8185
+ justify-content: center;
8186
+ min-height: inherit;
8187
+
8188
+ ${LinearProgress} {
8189
+ max-width: 4rem;
8190
+ }
8164
8191
  `;
8165
- const NoLiveSnapshotContainer = styled(Flex) `
8166
- flex-direction: column;
8167
- align-items: center;
8168
-
8169
- span[kind="alert"] {
8170
- width: 2rem;
8171
- height: 2rem;
8172
-
8173
- &:after {
8174
- font-size: 2rem;
8175
- color: ${({ theme: { palette } }) => palette.elementDeep};
8176
- }
8177
- }
8178
-
8179
- ${Description} {
8180
- font-size: 0.75rem;
8181
- color: ${({ theme: { palette } }) => palette.textDisabled};
8182
- }
8192
+ const NoLiveSnapshotContainer = styled(Flex) `
8193
+ flex-direction: column;
8194
+ align-items: center;
8195
+
8196
+ span[kind="alert"] {
8197
+ width: 2rem;
8198
+ height: 2rem;
8199
+
8200
+ &:after {
8201
+ font-size: 2rem;
8202
+ color: ${({ theme: { palette } }) => palette.elementDeep};
8203
+ }
8204
+ }
8205
+
8206
+ ${Description} {
8207
+ font-size: 0.75rem;
8208
+ color: ${({ theme: { palette } }) => palette.textDisabled};
8209
+ }
8183
8210
  `;
8184
- const SmallPreviewControl = styled(IconButton) `
8185
- cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8186
- z-index: 3;
8187
- position: absolute;
8188
- top: 50%;
8189
- width: 2.5rem;
8190
- height: 2.5rem;
8191
- margin-top: -1.25rem;
8192
- background-color: rgba(61, 61, 61, 0.8);
8193
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8194
-
8195
- span:after {
8196
- color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8197
- transition: color ${transition.hover};
8198
- }
8211
+ const SmallPreviewControl = styled(IconButton) `
8212
+ cursor: ${({ $isDisabled }) => ($isDisabled ? "default" : "pointer")};
8213
+ z-index: 3;
8214
+ position: absolute;
8215
+ top: 50%;
8216
+ width: 2.5rem;
8217
+ height: 2.5rem;
8218
+ margin-top: -1.25rem;
8219
+ background-color: rgba(61, 61, 61, 0.8);
8220
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.smallest};
8221
+
8222
+ span:after {
8223
+ color: ${({ $isDisabled }) => ($isDisabled ? "rgba(255, 255, 255, 0.28)" : "rgba(255, 255, 255, 1)")};
8224
+ transition: color ${transition.hover};
8225
+ }
8199
8226
  `;
8200
- const SmallPreviewCounter = styled(Flex) `
8201
- z-index: 3;
8202
- position: absolute;
8203
- bottom: 0.625rem;
8204
- left: 0;
8205
- width: 100%;
8206
- height: 1rem;
8207
- justify-content: center;
8208
-
8209
- > div {
8210
- background-color: rgba(61, 61, 61, 0.8);
8211
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8212
- padding: 0 0.5rem;
8213
- font-size: 0.625rem;
8214
- line-height: 1rem;
8215
- color: #fff;
8216
- }
8227
+ const SmallPreviewCounter = styled(Flex) `
8228
+ z-index: 3;
8229
+ position: absolute;
8230
+ bottom: 0.625rem;
8231
+ left: 0;
8232
+ width: 100%;
8233
+ height: 1rem;
8234
+ justify-content: center;
8235
+
8236
+ > div {
8237
+ background-color: rgba(61, 61, 61, 0.8);
8238
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8239
+ padding: 0 0.5rem;
8240
+ font-size: 0.625rem;
8241
+ line-height: 1rem;
8242
+ color: #fff;
8243
+ }
8217
8244
  `;
8218
8245
  const SmallPreviewLeft = styled(SmallPreviewControl).attrs(() => ({
8219
8246
  kind: "prev",
8220
- })) `
8221
- left: 1.5rem;
8247
+ })) `
8248
+ left: 1.5rem;
8222
8249
  `;
8223
8250
  const SmallPreviewRight = styled(SmallPreviewControl).attrs(() => ({
8224
8251
  kind: "next",
8225
- })) `
8226
- right: 1.5rem;
8227
- `;
8228
- const imgSlideShowMixin = css `
8229
- &:nth-child(${({ prevIndex }) => prevIndex}) {
8230
- z-index: 2;
8231
- position: absolute;
8232
- top: 0;
8233
- left: 0;
8234
- right: 0;
8235
- bottom: 0;
8236
- opacity: 0;
8237
-
8238
- animation-duration: 0.25s;
8239
- animation-name: fadeOut;
8240
- animation-timing-function: linear;
8241
-
8242
- @keyframes fadeOut {
8243
- from {
8244
- opacity: 1;
8245
- }
8246
-
8247
- to {
8248
- opacity: 0;
8249
- }
8250
- }
8251
- }
8252
+ })) `
8253
+ right: 1.5rem;
8254
+ `;
8255
+ const imgSlideShowMixin = css `
8256
+ &:nth-child(${({ prevIndex }) => prevIndex}) {
8257
+ z-index: 2;
8258
+ position: absolute;
8259
+ top: 0;
8260
+ left: 0;
8261
+ right: 0;
8262
+ bottom: 0;
8263
+ opacity: 0;
8264
+
8265
+ animation-duration: 0.25s;
8266
+ animation-name: fadeOut;
8267
+ animation-timing-function: linear;
8268
+
8269
+ @keyframes fadeOut {
8270
+ from {
8271
+ opacity: 1;
8272
+ }
8273
+
8274
+ to {
8275
+ opacity: 0;
8276
+ }
8277
+ }
8278
+ }
8252
8279
  `;
8253
- const SmallPreviewContainer$1 = styled.div `
8254
- cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8255
- position: relative;
8256
- width: 100%;
8257
- height: 100%;
8258
- min-height: inherit;
8259
- line-height: 0;
8260
-
8261
- ${LinearProgress} {
8262
- z-index: 3;
8263
- position: absolute;
8264
- }
8265
-
8266
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8267
- opacity: 0;
8268
- transition: opacity ${transition.hover};
8269
- }
8270
-
8271
- &:hover {
8272
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8273
- opacity: 1;
8274
- }
8275
- }
8276
-
8277
- img {
8278
- z-index: 0;
8279
- cursor: pointer;
8280
- position: absolute;
8281
- top: 0;
8282
- left: 0;
8283
- width: 100%;
8284
- height: 100%;
8285
- min-height: inherit;
8286
- object-position: center;
8287
- object-fit: cover;
8288
-
8289
- &:nth-child(${({ currentIndex }) => currentIndex}) {
8290
- z-index: 1;
8291
- }
8292
-
8293
- ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8294
- }
8280
+ const SmallPreviewContainer$1 = styled.div `
8281
+ cursor: ${({ onClick }) => (onClick ? "pointer" : "default")};
8282
+ position: relative;
8283
+ width: 100%;
8284
+ height: 100%;
8285
+ min-height: inherit;
8286
+ line-height: 0;
8287
+
8288
+ ${LinearProgress} {
8289
+ z-index: 3;
8290
+ position: absolute;
8291
+ }
8292
+
8293
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8294
+ opacity: 0;
8295
+ transition: opacity ${transition.hover};
8296
+ }
8297
+
8298
+ &:hover {
8299
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8300
+ opacity: 1;
8301
+ }
8302
+ }
8303
+
8304
+ img {
8305
+ z-index: 0;
8306
+ cursor: pointer;
8307
+ position: absolute;
8308
+ top: 0;
8309
+ left: 0;
8310
+ width: 100%;
8311
+ height: 100%;
8312
+ min-height: inherit;
8313
+ object-position: center;
8314
+ object-fit: cover;
8315
+
8316
+ &:nth-child(${({ currentIndex }) => currentIndex}) {
8317
+ z-index: 1;
8318
+ }
8319
+
8320
+ ${({ prevIndex, currentIndex }) => prevIndex !== currentIndex && imgSlideShowMixin}
8321
+ }
8295
8322
  `;
8296
8323
  const SmallPreviewImages = styled.div ``;
8297
8324
 
@@ -8518,21 +8545,21 @@ const ElementControl = ({ elementConfig }) => {
8518
8545
  defaultValue, placeholder: placeholder, disabled: isDisabled, onChange: handleChange }));
8519
8546
  };
8520
8547
 
8521
- const StyledIconFontSizeMixin = css `
8522
- height: ${({ fontSize }) => `${fontSize}px`};
8523
-
8524
- &&:after {
8525
- font-size: ${({ fontSize }) => `${fontSize}px`};
8526
- }
8548
+ const StyledIconFontSizeMixin = css `
8549
+ height: ${({ fontSize }) => `${fontSize}px`};
8550
+
8551
+ &&:after {
8552
+ font-size: ${({ fontSize }) => `${fontSize}px`};
8553
+ }
8527
8554
  `;
8528
- const StyledIconFontColorMixin = css `
8529
- &&:after {
8530
- color: ${({ fontColor }) => fontColor};
8531
- }
8555
+ const StyledIconFontColorMixin = css `
8556
+ &&:after {
8557
+ color: ${({ fontColor }) => fontColor};
8558
+ }
8532
8559
  `;
8533
- const StyledIcon = styled(Icon) `
8534
- ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8535
- ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8560
+ const StyledIcon = styled(Icon) `
8561
+ ${({ fontSize }) => !!fontSize && StyledIconFontSizeMixin};
8562
+ ${({ fontColor }) => !!fontColor && StyledIconFontColorMixin};
8536
8563
  `;
8537
8564
 
8538
8565
  const ElementIcon = memo(({ type, elementConfig }) => {
@@ -8543,7 +8570,6 @@ const ElementIcon = memo(({ type, elementConfig }) => {
8543
8570
  return jsx(StyledIcon, { kind: iconValue, fontSize: fontSize, fontColor: fontColor, style: style });
8544
8571
  });
8545
8572
 
8546
- const toObjectUrl = (res) => res.blob().then(blob => URL.createObjectURL(blob));
8547
8573
  const ElementImage = memo(({ type, elementConfig }) => {
8548
8574
  const { attributes } = useWidgetContext(type);
8549
8575
  const { value, attributeName, options, style } = elementConfig || {};
@@ -8561,7 +8587,7 @@ const ElementImage = memo(({ type, elementConfig }) => {
8561
8587
  return null;
8562
8588
  return getResourceUrl(imageUrl);
8563
8589
  }, [attributeName, attributes, value]);
8564
- const blobUrl = useFetchWithAuth(firstImage, toObjectUrl, URL.revokeObjectURL);
8590
+ const blobUrl = useFetchImageWithAuth(firstImage);
8565
8591
  if (!blobUrl)
8566
8592
  return null;
8567
8593
  return (jsx("img", { src: blobUrl, alt: firstImage ?? "", width: width, style: style }));
@@ -8602,55 +8628,55 @@ const ElementLegend = memo(({ type, element, elementConfig }) => {
8602
8628
 
8603
8629
  const ExternalLink = styled(IconButton).attrs(() => ({
8604
8630
  kind: "external_link",
8605
- })) `
8606
- ${Icon} {
8607
- color: ${({ theme: { palette } }) => palette.primary};
8608
- }
8609
-
8610
- &:hover ${Icon} {
8611
- color: ${({ theme: { palette } }) => palette.primaryDeep};
8612
- }
8631
+ })) `
8632
+ ${Icon} {
8633
+ color: ${({ theme: { palette } }) => palette.primary};
8634
+ }
8635
+
8636
+ &:hover ${Icon} {
8637
+ color: ${({ theme: { palette } }) => palette.primaryDeep};
8638
+ }
8613
8639
  `;
8614
- const Link = styled.a `
8615
- text-decoration: none;
8616
- font-size: 0.75rem;
8617
- color: ${({ theme: { palette } }) => palette.primary};
8640
+ const Link = styled.a `
8641
+ text-decoration: none;
8642
+ font-size: 0.75rem;
8643
+ color: ${({ theme: { palette } }) => palette.primary};
8618
8644
  `;
8619
- const LocalLinkBlank = styled(Blank) `
8620
- min-width: 13.5rem;
8621
- padding: 0.5rem 0.75rem 0;
8622
-
8623
- ${IconButtonButton} {
8624
- font-size: 0.75rem;
8625
- }
8645
+ const LocalLinkBlank = styled(Blank) `
8646
+ min-width: 13.5rem;
8647
+ padding: 0.5rem 0.75rem 0;
8648
+
8649
+ ${IconButtonButton} {
8650
+ font-size: 0.75rem;
8651
+ }
8626
8652
  `;
8627
8653
  const LocalLinkButton = styled(IconButton).attrs(() => ({
8628
8654
  kind: "link",
8629
- })) `
8630
- width: 1rem;
8631
- height: 1rem;
8632
- background-color: ${({ theme: { palette } }) => palette.primary};
8633
- padding: 0;
8634
- border-radius: 50%;
8635
-
8636
- :hover {
8637
- background-color: ${({ theme: { palette } }) => palette.primary};
8638
- }
8639
-
8640
- span[kind] {
8641
- display: flex;
8642
- justify-content: center;
8643
- align-items: center;
8644
-
8645
- :after {
8646
- position: relative;
8647
- font-size: 0.6rem;
8648
- color: white;
8649
- }
8650
- }
8655
+ })) `
8656
+ width: 1rem;
8657
+ height: 1rem;
8658
+ background-color: ${({ theme: { palette } }) => palette.primary};
8659
+ padding: 0;
8660
+ border-radius: 50%;
8661
+
8662
+ :hover {
8663
+ background-color: ${({ theme: { palette } }) => palette.primary};
8664
+ }
8665
+
8666
+ span[kind] {
8667
+ display: flex;
8668
+ justify-content: center;
8669
+ align-items: center;
8670
+
8671
+ :after {
8672
+ position: relative;
8673
+ font-size: 0.6rem;
8674
+ color: white;
8675
+ }
8676
+ }
8651
8677
  `;
8652
- const LocalLinkCopy = styled(Flex) `
8653
- justify-content: center;
8678
+ const LocalLinkCopy = styled(Flex) `
8679
+ justify-content: center;
8654
8680
  `;
8655
8681
 
8656
8682
  const LocalLink = memo(({ link, style }) => {
@@ -8679,104 +8705,104 @@ const ElementLink = memo(({ type, elementConfig }) => {
8679
8705
  : jsx(LocalLink, { style: style, link: link });
8680
8706
  });
8681
8707
 
8682
- const MarkdownWrapper = styled.div `
8683
- padding: 0;
8684
- background: transparent;
8685
- border-radius: 0.5rem;
8686
- font-family: 'Nunito Sans', sans-serif;
8687
- color: ${({ theme: { palette } }) => palette.textPrimary};
8688
-
8689
- /* Paragraphs */
8690
- p {
8691
- font-size: 0.875rem;
8692
- line-height: 1rem;
8693
- letter-spacing: 0.0052rem;
8694
- margin: 0 0 1rem 0;
8695
- font-weight: 400;
8696
-
8697
- &:last-child {
8698
- margin-bottom: 0;
8699
- }
8700
- }
8701
-
8702
- /* Headings */
8703
- h1, h2, h3, h4, h5, h6 {
8704
- margin: 0 0 0.75rem 0;
8705
- font-weight: 300;
8706
- }
8707
-
8708
- h1 {
8709
- font-size: 1.5rem;
8710
- line-height: 1.75rem;
8711
- }
8712
-
8713
- h2 {
8714
- font-size: 1.25rem;
8715
- line-height: 1.5rem;
8716
- }
8717
-
8718
- h3 {
8719
- font-size: 1rem;
8720
- line-height: 1.25rem;
8721
- }
8722
-
8723
- /* Images */
8724
- img {
8725
- max-width: 100%;
8726
- height: auto;
8727
- border-radius: 0.5rem;
8728
- object-fit: cover;
8729
- margin: 0.75rem 0;
8730
- }
8731
-
8732
- /* Links */
8733
- a {
8734
- color: ${({ theme: { palette } }) => palette.primary};
8735
- text-decoration: none;
8736
-
8737
- &:hover {
8738
- text-decoration: underline;
8739
- }
8740
- }
8741
-
8742
- /* Lists */
8743
- ul, ol {
8744
- margin: 0 0 1rem 0;
8745
- padding-left: 1.25rem;
8746
-
8747
- li {
8748
- font-size: 0.875rem;
8749
- line-height: 1rem;
8750
- margin-bottom: 0.5rem;
8751
- }
8752
- }
8753
-
8754
- /* Code */
8755
- code {
8756
- background: ${({ theme: { palette } }) => palette.element};
8757
- padding: 0.125rem 0.375rem;
8758
- border-radius: 0.25rem;
8759
- font-family: monospace;
8760
- font-size: 0.8125rem;
8761
- }
8762
-
8763
- pre {
8764
- background: ${({ theme: { palette } }) => palette.element};
8765
- padding: 0.75rem;
8766
- border-radius: 0.25rem;
8767
- overflow-x: auto;
8768
- margin: 0.75rem 0;
8769
-
8770
- code {
8771
- background: transparent;
8772
- padding: 0;
8773
- }
8774
- }
8775
-
8776
- /* Hide horizontal rules */
8777
- hr {
8778
- display: none;
8779
- }
8708
+ const MarkdownWrapper = styled.div `
8709
+ padding: 0;
8710
+ background: transparent;
8711
+ border-radius: 0.5rem;
8712
+ font-family: 'Nunito Sans', sans-serif;
8713
+ color: ${({ theme: { palette } }) => palette.textPrimary};
8714
+
8715
+ /* Paragraphs */
8716
+ p {
8717
+ font-size: 0.875rem;
8718
+ line-height: 1rem;
8719
+ letter-spacing: 0.0052rem;
8720
+ margin: 0 0 1rem 0;
8721
+ font-weight: 400;
8722
+
8723
+ &:last-child {
8724
+ margin-bottom: 0;
8725
+ }
8726
+ }
8727
+
8728
+ /* Headings */
8729
+ h1, h2, h3, h4, h5, h6 {
8730
+ margin: 0 0 0.75rem 0;
8731
+ font-weight: 300;
8732
+ }
8733
+
8734
+ h1 {
8735
+ font-size: 1.5rem;
8736
+ line-height: 1.75rem;
8737
+ }
8738
+
8739
+ h2 {
8740
+ font-size: 1.25rem;
8741
+ line-height: 1.5rem;
8742
+ }
8743
+
8744
+ h3 {
8745
+ font-size: 1rem;
8746
+ line-height: 1.25rem;
8747
+ }
8748
+
8749
+ /* Images */
8750
+ img {
8751
+ max-width: 100%;
8752
+ height: auto;
8753
+ border-radius: 0.5rem;
8754
+ object-fit: cover;
8755
+ margin: 0.75rem 0;
8756
+ }
8757
+
8758
+ /* Links */
8759
+ a {
8760
+ color: ${({ theme: { palette } }) => palette.primary};
8761
+ text-decoration: none;
8762
+
8763
+ &:hover {
8764
+ text-decoration: underline;
8765
+ }
8766
+ }
8767
+
8768
+ /* Lists */
8769
+ ul, ol {
8770
+ margin: 0 0 1rem 0;
8771
+ padding-left: 1.25rem;
8772
+
8773
+ li {
8774
+ font-size: 0.875rem;
8775
+ line-height: 1rem;
8776
+ margin-bottom: 0.5rem;
8777
+ }
8778
+ }
8779
+
8780
+ /* Code */
8781
+ code {
8782
+ background: ${({ theme: { palette } }) => palette.element};
8783
+ padding: 0.125rem 0.375rem;
8784
+ border-radius: 0.25rem;
8785
+ font-family: monospace;
8786
+ font-size: 0.8125rem;
8787
+ }
8788
+
8789
+ pre {
8790
+ background: ${({ theme: { palette } }) => palette.element};
8791
+ padding: 0.75rem;
8792
+ border-radius: 0.25rem;
8793
+ overflow-x: auto;
8794
+ margin: 0.75rem 0;
8795
+
8796
+ code {
8797
+ background: transparent;
8798
+ padding: 0;
8799
+ }
8800
+ }
8801
+
8802
+ /* Hide horizontal rules */
8803
+ hr {
8804
+ display: none;
8805
+ }
8780
8806
  `;
8781
8807
 
8782
8808
  const sanitizeSchema = {
@@ -8818,9 +8844,9 @@ const ElementMarkdown = memo(({ elementConfig, type }) => {
8818
8844
  return (jsxs(MarkdownWrapper, { children: [jsx(ReactMarkdown, { remarkPlugins: [remarkGfm], rehypePlugins: [rehypeRaw, rehypeSanitize], children: markdownString }), jsx(LegendToggler, { toggled: true, onClick: () => setExpanded(false), children: t("hide", { ns: "dashboard", defaultValue: "Свернуть" }) })] }));
8819
8845
  });
8820
8846
 
8821
- const SmallPreviewContainer = styled.div `
8822
- width: 100%;
8823
- height: 100%;
8847
+ const SmallPreviewContainer = styled.div `
8848
+ width: 100%;
8849
+ height: 100%;
8824
8850
  `;
8825
8851
 
8826
8852
  const ElementSlideshow = ({ elementConfig, type, renderElement }) => {
@@ -8856,18 +8882,18 @@ const ElementSvg = memo(({ type, elementConfig }) => {
8856
8882
  return (jsx(SvgImage, { url: getSvgUrl({ elementConfig, layerInfo, attributes }), width: width, height: height, fontColor: fontColor }));
8857
8883
  });
8858
8884
 
8859
- const TooltipIcon = styled(Icon) `
8860
- &&& {
8861
- :after {
8862
- font-size: 0.75rem;
8863
- color: ${({ theme: { palette } }) => palette.iconDisabled};
8864
- transition: color ${transition.hover};
8865
- }
8866
-
8867
- :hover:after {
8868
- color: ${({ theme: { palette } }) => palette.icon};
8869
- }
8870
- }
8885
+ const TooltipIcon = styled(Icon) `
8886
+ &&& {
8887
+ :after {
8888
+ font-size: 0.75rem;
8889
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
8890
+ transition: color ${transition.hover};
8891
+ }
8892
+
8893
+ :hover:after {
8894
+ color: ${({ theme: { palette } }) => palette.icon};
8895
+ }
8896
+ }
8871
8897
  `;
8872
8898
 
8873
8899
  const ElementTooltip = memo(({ type, elementConfig }) => {
@@ -8879,76 +8905,76 @@ const ElementTooltip = memo(({ type, elementConfig }) => {
8879
8905
  return text ? (jsx(Tooltip$1, { placement: "top", arrow: true, content: text, children: ref => jsx(TooltipIcon, { kind: icon || "question", ref: ref }) })) : null;
8880
8906
  });
8881
8907
 
8882
- const SlideshowHeaderWrapper = styled.div `
8883
- padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
8884
-
8885
- ${Header} {
8886
- align-items: flex-start;
8887
- width: calc(100% + 2rem);
8888
- height: ${({ big }) => (big ? "15.5rem" : "auto")};
8889
- padding: 1.5rem;
8890
- margin: -1rem -1rem 0 -1rem;
8891
- border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8892
-
8893
- ${SmallPreviewCounter} {
8894
- bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
8895
- }
8896
-
8897
- :before,
8898
- :after {
8899
- content: "";
8900
- z-index: 2;
8901
- position: absolute;
8902
- top: 0;
8903
- left: 0;
8904
- width: 100%;
8905
- }
8906
-
8907
- :before {
8908
- height: 100%;
8909
- background: rgba(32, 46, 53, 0.25);
8910
- }
8911
-
8912
- :after {
8913
- height: 4.5rem;
8914
- background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
8915
- }
8916
-
8917
- :hover {
8918
- ${SmallPreviewControl}, ${SmallPreviewCounter} {
8919
- opacity: 1;
8920
- }
8921
- }
8922
- }
8908
+ const SlideshowHeaderWrapper = styled.div `
8909
+ padding: ${({ withPadding }) => (withPadding ? "0.5rem 0.5rem 0" : 0)};
8910
+
8911
+ ${Header} {
8912
+ align-items: flex-start;
8913
+ width: calc(100% + 2rem);
8914
+ height: ${({ big }) => (big ? "15.5rem" : "auto")};
8915
+ padding: 1.5rem;
8916
+ margin: -1rem -1rem 0 -1rem;
8917
+ border-radius: ${({ theme: { borderRadius } }) => borderRadius.medium};
8918
+
8919
+ ${SmallPreviewCounter} {
8920
+ bottom: ${({ withPadding }) => (withPadding ? 0.625 : 1.125)}rem;
8921
+ }
8922
+
8923
+ :before,
8924
+ :after {
8925
+ content: "";
8926
+ z-index: 2;
8927
+ position: absolute;
8928
+ top: 0;
8929
+ left: 0;
8930
+ width: 100%;
8931
+ }
8932
+
8933
+ :before {
8934
+ height: 100%;
8935
+ background: rgba(32, 46, 53, 0.25);
8936
+ }
8937
+
8938
+ :after {
8939
+ height: 4.5rem;
8940
+ background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
8941
+ }
8942
+
8943
+ :hover {
8944
+ ${SmallPreviewControl}, ${SmallPreviewCounter} {
8945
+ opacity: 1;
8946
+ }
8947
+ }
8948
+ }
8923
8949
  `;
8924
- const ImageContainerBg = styled.div `
8925
- position: absolute;
8926
- top: 0;
8927
- bottom: 0;
8928
- left: 0;
8929
- right: 0;
8930
-
8931
- img {
8932
- width: 100%;
8933
- height: 100%;
8934
- object-position: center;
8935
- object-fit: cover;
8936
- }
8950
+ const ImageContainerBg = styled.div `
8951
+ position: absolute;
8952
+ top: 0;
8953
+ bottom: 0;
8954
+ left: 0;
8955
+ right: 0;
8956
+
8957
+ img {
8958
+ width: 100%;
8959
+ height: 100%;
8960
+ object-position: center;
8961
+ object-fit: cover;
8962
+ }
8937
8963
  `;
8938
- const HeaderSlideshow = styled.div `
8939
- position: absolute;
8940
- top: 0;
8941
- bottom: ${({ height }) => (height ? `${height}px` : 0)};
8942
- left: 0;
8943
- right: 0;
8944
-
8945
- img {
8946
- width: 100%;
8947
- height: 100%;
8948
- min-height: inherit;
8949
- object-position: center;
8950
- object-fit: cover;
8951
- }
8964
+ const HeaderSlideshow = styled.div `
8965
+ position: absolute;
8966
+ top: 0;
8967
+ bottom: ${({ height }) => (height ? `${height}px` : 0)};
8968
+ left: 0;
8969
+ right: 0;
8970
+
8971
+ img {
8972
+ width: 100%;
8973
+ height: 100%;
8974
+ min-height: inherit;
8975
+ object-position: center;
8976
+ object-fit: cover;
8977
+ }
8952
8978
  `;
8953
8979
 
8954
8980
  const FeatureCardSlideshowHeader = ({ isRow }) => {
@@ -9087,40 +9113,40 @@ const getDefaultConfig = ({ title, defaultTitle, items, baseMapName, position, r
9087
9113
  return dashboardConfiguration;
9088
9114
  };
9089
9115
 
9090
- const UploaderContainer = styled(Container) `
9091
- ${UploaderItemArea} {
9092
- overflow: visible;
9093
- padding-top: 1rem;
9094
- padding-bottom: 1rem;
9095
- }
9096
-
9097
- ${UploaderTitleWrapper} {
9098
- top: 0;
9099
- padding-top: 0;
9100
- border: 0;
9101
- }
9116
+ const UploaderContainer = styled(Container) `
9117
+ ${UploaderItemArea} {
9118
+ overflow: visible;
9119
+ padding-top: 1rem;
9120
+ padding-bottom: 1rem;
9121
+ }
9122
+
9123
+ ${UploaderTitleWrapper} {
9124
+ top: 0;
9125
+ padding-top: 0;
9126
+ border: 0;
9127
+ }
9102
9128
  `;
9103
9129
 
9104
- const UploaderTitle = styled(Flex) `
9105
- flex-direction: column;
9106
- align-items: center;
9107
- width: 11rem;
9108
- margin: 0 auto;
9109
- text-align: center;
9110
- font-size: 0.625rem;
9111
- color: ${({ theme: { palette } }) => palette.textSecondary};
9112
-
9113
- span[kind] {
9114
- width: 1.5rem;
9115
- height: 1.5rem;
9116
- margin-bottom: 0.75rem;
9117
-
9118
- :after {
9119
- font-size: 1.5rem;
9120
- color: ${({ theme: { palette } }) => palette.textSecondary};
9121
- opacity: 0.12;
9122
- }
9123
- }
9130
+ const UploaderTitle = styled(Flex) `
9131
+ flex-direction: column;
9132
+ align-items: center;
9133
+ width: 11rem;
9134
+ margin: 0 auto;
9135
+ text-align: center;
9136
+ font-size: 0.625rem;
9137
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9138
+
9139
+ span[kind] {
9140
+ width: 1.5rem;
9141
+ height: 1.5rem;
9142
+ margin-bottom: 0.75rem;
9143
+
9144
+ :after {
9145
+ font-size: 1.5rem;
9146
+ color: ${({ theme: { palette } }) => palette.textSecondary};
9147
+ opacity: 0.12;
9148
+ }
9149
+ }
9124
9150
  `;
9125
9151
 
9126
9152
  const DEFAULT_FILE_EXTENSIONS = ".txt,.csv,.py";
@@ -9167,20 +9193,20 @@ const ElementUploader = memo(({ elementConfig, type }) => {
9167
9193
  return (jsx(UploaderContainer, { id: id, style: style, children: jsx("div", { children: jsx(Uploader, { currentRef: refInput, title: renderTitle, accept: fileExtensions, width: "100%", fileItems: files, isMultiple: multiSelect, onUpload: onUpload, onDelete: onDelete }) }) }));
9168
9194
  });
9169
9195
 
9170
- const ModalIcon = styled(Icon) `
9171
- &&& {
9172
- cursor: pointer;
9173
-
9174
- :after {
9175
- font-size: 0.75rem;
9176
- color: ${({ theme: { palette } }) => palette.iconDisabled};
9177
- transition: color ${transition.hover};
9178
- }
9179
-
9180
- :hover:after {
9181
- color: ${({ theme: { palette } }) => palette.icon};
9182
- }
9183
- }
9196
+ const ModalIcon = styled(Icon) `
9197
+ &&& {
9198
+ cursor: pointer;
9199
+
9200
+ :after {
9201
+ font-size: 0.75rem;
9202
+ color: ${({ theme: { palette } }) => palette.iconDisabled};
9203
+ transition: color ${transition.hover};
9204
+ }
9205
+
9206
+ :hover:after {
9207
+ color: ${({ theme: { palette } }) => palette.icon};
9208
+ }
9209
+ }
9184
9210
  `;
9185
9211
 
9186
9212
  const isEmptyElementValue = (value) => value === "" || value === null || value === undefined;
@@ -9921,64 +9947,64 @@ const getJustifyContent = (align) => {
9921
9947
  return "flex-start";
9922
9948
  }
9923
9949
  };
9924
- const ChipsContainer = styled(Flex) `
9925
- flex-wrap: wrap;
9926
- gap: 0.25rem;
9927
- background: transparent;
9928
- justify-content: ${({ $align }) => getJustifyContent($align)};
9950
+ const ChipsContainer = styled(Flex) `
9951
+ flex-wrap: wrap;
9952
+ gap: 0.25rem;
9953
+ background: transparent;
9954
+ justify-content: ${({ $align }) => getJustifyContent($align)};
9929
9955
  `;
9930
9956
 
9931
- const FilterChip = styled.div `
9932
- display: inline-flex;
9933
- align-items: center;
9934
- gap: 0.25rem;
9935
- padding: 0.3125rem 0.5rem;
9936
- height: 1.5rem;
9937
- border-radius: 0.25rem;
9957
+ const FilterChip = styled.div `
9958
+ display: inline-flex;
9959
+ align-items: center;
9960
+ gap: 0.25rem;
9961
+ padding: 0.3125rem 0.5rem;
9962
+ height: 1.5rem;
9963
+ border-radius: 0.25rem;
9938
9964
  background-color: ${({ $isActive, $bgColor, theme }) => $bgColor
9939
9965
  ? $bgColor
9940
9966
  : $isActive
9941
9967
  ? theme.palette?.primary
9942
- : theme.palette?.elementLight};
9968
+ : theme.palette?.elementLight};
9943
9969
  color: ${({ $isActive, $textColor, theme }) => $textColor
9944
9970
  ? $textColor
9945
9971
  : $isActive
9946
9972
  ? theme.palette?.textContrast
9947
- : theme.palette?.textSecondary};
9948
- cursor: pointer;
9949
- font-size: 0.75rem;
9950
- line-height: 0.875rem;
9951
- white-space: nowrap;
9952
- flex-shrink: 0;
9953
- transition: all 0.2s ease-in-out;
9954
- margin: 0 0.25rem 0 0;
9955
- box-sizing: border-box;
9956
-
9957
- &:hover {
9973
+ : theme.palette?.textSecondary};
9974
+ cursor: pointer;
9975
+ font-size: 0.75rem;
9976
+ line-height: 0.875rem;
9977
+ white-space: nowrap;
9978
+ flex-shrink: 0;
9979
+ transition: all 0.2s ease-in-out;
9980
+ margin: 0 0.25rem 0 0;
9981
+ box-sizing: border-box;
9982
+
9983
+ &:hover {
9958
9984
  background-color: ${({ $isActive, $bgColor, theme }) => $isActive
9959
9985
  ? $bgColor || 'inherit'
9960
- : $bgColor || theme.palette?.elementDark};
9961
- }
9986
+ : $bgColor || theme.palette?.elementDark};
9987
+ }
9962
9988
  `;
9963
- const ChipIconWrapper = styled.span `
9964
- display: inline-flex;
9965
- align-items: center;
9966
- justify-content: center;
9967
- width: 0.875rem;
9968
- height: 0.875rem;
9969
- flex-shrink: 0;
9970
-
9971
- svg, img {
9972
- width: 100%;
9973
- height: 100%;
9974
- display: block;
9975
- }
9989
+ const ChipIconWrapper = styled.span `
9990
+ display: inline-flex;
9991
+ align-items: center;
9992
+ justify-content: center;
9993
+ width: 0.875rem;
9994
+ height: 0.875rem;
9995
+ flex-shrink: 0;
9996
+
9997
+ svg, img {
9998
+ width: 100%;
9999
+ height: 100%;
10000
+ display: block;
10001
+ }
9976
10002
  `;
9977
- const ChipText = styled.span `
9978
- overflow: hidden;
9979
- text-overflow: ellipsis;
9980
- white-space: nowrap;
9981
- ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
10003
+ const ChipText = styled.span `
10004
+ overflow: hidden;
10005
+ text-overflow: ellipsis;
10006
+ white-space: nowrap;
10007
+ ${({ $maxTextWidth }) => $maxTextWidth && `max-width: ${$maxTextWidth / 16}rem;`}
9982
10008
  `;
9983
10009
 
9984
10010
  const CustomChip = ({ text, icon, color, primary, secondary, error, disabled, isActive, maxTextWidth, fontColor: customFontColor, backgroundColor: customBackgroundColor, ...props }) => {
@@ -10423,6 +10449,24 @@ const roundTotalSum = (value) => {
10423
10449
  return value;
10424
10450
  };
10425
10451
 
10452
+ const updateDataSource = (dashboardConfiguration, name, pageIndex, data) => {
10453
+ const newConfig = JSON.parse(JSON.stringify(dashboardConfiguration));
10454
+ if (newConfig.dataSources?.length) {
10455
+ const dataSource = newConfig.dataSources.find(item => item.name === name);
10456
+ if (dataSource) {
10457
+ Object.assign(dataSource, data);
10458
+ }
10459
+ }
10460
+ const pages = getPagesFromConfig(newConfig);
10461
+ if (pages?.[pageIndex - 1]?.dataSources?.length) {
10462
+ const dataSource = pages[pageIndex - 1].dataSources.find(item => item.name === name);
10463
+ if (dataSource) {
10464
+ Object.assign(dataSource, data);
10465
+ }
10466
+ }
10467
+ return newConfig;
10468
+ };
10469
+
10426
10470
  const sliceShownOtherItems = (data, options = {}, showMore) => {
10427
10471
  const { shownItems, otherItems } = options || {};
10428
10472
  const limit = shownItems && otherItems ? Math.min(shownItems, otherItems) : shownItems || otherItems;
@@ -11387,8 +11431,8 @@ const Dashboard = memo(({ type = WidgetType.Dashboard, noBorders }) => {
11387
11431
  return (jsx(PagesContainer, { type: type, noBorders: noBorders }));
11388
11432
  });
11389
11433
 
11390
- const CardCheckbox = styled(Checkbox) `
11391
- padding-left: 0.5rem;
11434
+ const CardCheckbox = styled(Checkbox) `
11435
+ padding-left: 0.5rem;
11392
11436
  `;
11393
11437
 
11394
11438
  const DashboardCheckbox = ({ title, checked, onChange, }) => {
@@ -11462,15 +11506,15 @@ const FeatureCardTitle = ({ title, description }) => {
11462
11506
  return (jsxs(HeaderTitleContainer, { children: [jsx(FeatureTitleContainer, { children: jsx(FlexSpan, { children: resultTitle }) }), jsx(LayerDescription, { title: resultDescription, children: resultDescription })] }));
11463
11507
  };
11464
11508
 
11465
- const HiddenFilters = styled(Flex) `
11466
- flex-wrap: wrap;
11467
- margin-top: -1.25rem;
11468
-
11469
- ${DashboardChip$1} {
11470
- height: 1.5rem;
11471
- margin: 0 0.25rem 0.25rem 0;
11472
- padding: 0 0 0 0.5rem;
11473
- }
11509
+ const HiddenFilters = styled(Flex) `
11510
+ flex-wrap: wrap;
11511
+ margin-top: -1.25rem;
11512
+
11513
+ ${DashboardChip$1} {
11514
+ height: 1.5rem;
11515
+ margin: 0 0.25rem 0.25rem 0;
11516
+ padding: 0 0 0 0.5rem;
11517
+ }
11474
11518
  `;
11475
11519
 
11476
11520
  function spliceValue(filterValue, splicingValue) {
@@ -11656,24 +11700,24 @@ const LogTerminal = ({ log, terminalOptions, className, styles }) => {
11656
11700
  return jsx(TerminalWrapper, { ref: terminalRef, className: className, style: styles });
11657
11701
  };
11658
11702
 
11659
- const PageNavigator = styled(Flex) `
11660
- margin-right: -0.5rem;
11661
- align-items: center;
11662
-
11663
- button {
11664
- width: auto;
11665
- height: 2rem;
11666
- padding: 0 0.5rem;
11667
-
11668
- span[kind]:after {
11669
- color: ${({ theme: { palette } }) => palette.textDisabled};
11670
- transition: color ${transition.hover};
11671
- }
11672
-
11673
- :hover span[kind]:after {
11674
- color: ${({ theme: { palette } }) => palette.textSecondary};
11675
- }
11676
- }
11703
+ const PageNavigator = styled(Flex) `
11704
+ margin-right: -0.5rem;
11705
+ align-items: center;
11706
+
11707
+ button {
11708
+ width: auto;
11709
+ height: 2rem;
11710
+ padding: 0 0.5rem;
11711
+
11712
+ span[kind]:after {
11713
+ color: ${({ theme: { palette } }) => palette.textDisabled};
11714
+ transition: color ${transition.hover};
11715
+ }
11716
+
11717
+ :hover span[kind]:after {
11718
+ color: ${({ theme: { palette } }) => palette.textSecondary};
11719
+ }
11720
+ }
11677
11721
  `;
11678
11722
 
11679
11723
  const Pagination = memo(({ type = WidgetType.Dashboard }) => {
@@ -11682,34 +11726,34 @@ const Pagination = memo(({ type = WidgetType.Dashboard }) => {
11682
11726
  return (jsxs(PageNavigator, { children: [jsx(IconButton, { kind: "prev", onClick: () => prevPage(pages.length) }), jsx(IconButton, { kind: "next", onClick: () => nextPage(pages.length) })] }));
11683
11727
  });
11684
11728
 
11685
- const StyledSvgWidthMixin = css `
11686
- &&& {
11687
- svg {
11688
- width: ${({ $width }) => $width}px;
11689
- }
11690
- }
11729
+ const StyledSvgWidthMixin = css `
11730
+ &&& {
11731
+ svg {
11732
+ width: ${({ $width }) => $width}px;
11733
+ }
11734
+ }
11691
11735
  `;
11692
- const StyledSvgHeightMixin = css `
11693
- &&& {
11694
- svg {
11695
- height: ${({ $height }) => $height}px;
11696
- }
11697
- }
11736
+ const StyledSvgHeightMixin = css `
11737
+ &&& {
11738
+ svg {
11739
+ height: ${({ $height }) => $height}px;
11740
+ }
11741
+ }
11698
11742
  `;
11699
- const StyledSvgColorMixin = css `
11700
- svg {
11701
- path,
11702
- line,
11703
- circle {
11704
- fill: ${({ $fontColor }) => $fontColor} !important;
11705
- }
11706
- }
11743
+ const StyledSvgColorMixin = css `
11744
+ svg {
11745
+ path,
11746
+ line,
11747
+ circle {
11748
+ fill: ${({ $fontColor }) => $fontColor} !important;
11749
+ }
11750
+ }
11707
11751
  `;
11708
- const StyledSvg = styled(Flex) `
11709
- align-items: center;
11710
- ${({ $width }) => !!$width && StyledSvgWidthMixin};
11711
- ${({ $height }) => !!$height && StyledSvgHeightMixin};
11712
- ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11752
+ const StyledSvg = styled(Flex) `
11753
+ align-items: center;
11754
+ ${({ $width }) => !!$width && StyledSvgWidthMixin};
11755
+ ${({ $height }) => !!$height && StyledSvgHeightMixin};
11756
+ ${({ $fontColor }) => !!$fontColor && StyledSvgColorMixin};
11713
11757
  `;
11714
11758
 
11715
11759
  const SvgImage = memo(({ url, width, height, fontColor }) => {
@@ -11961,28 +12005,28 @@ const Layer = ({ layer, layerType, visible, beforeId, tileUrl, getLayerTempStyle
11961
12005
  return (jsx(VectorLayer, { layer: layer, tileUrl: tileUrl, visible: visible, beforeId: beforeId, getLayerTempStyle: getLayerTempStyle, filterVersion: filterVersion }));
11962
12006
  };
11963
12007
 
11964
- const MapWrapper = styled.div `
11965
- position: relative;
11966
- width: 100%;
11967
- height: 100%;
11968
- box-sizing: border-box;
11969
- z-index: ${({ $zIndex }) => $zIndex ?? 1};
11970
-
11971
- .mapbox-gl-draw_trash {
11972
- display: none;
11973
- }
11974
-
11975
- .mapboxgl-ctrl-logo {
11976
- display: none;
11977
- }
11978
-
11979
- .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
11980
- display: none;
11981
- }
11982
-
11983
- .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
11984
- width: 350px;
11985
- }
12008
+ const MapWrapper = styled.div `
12009
+ position: relative;
12010
+ width: 100%;
12011
+ height: 100%;
12012
+ box-sizing: border-box;
12013
+ z-index: ${({ $zIndex }) => $zIndex ?? 1};
12014
+
12015
+ .mapbox-gl-draw_trash {
12016
+ display: none;
12017
+ }
12018
+
12019
+ .mapboxgl-ctrl-logo {
12020
+ display: none;
12021
+ }
12022
+
12023
+ .mapboxgl-ctrl.mapboxgl-ctrl-attrib {
12024
+ display: none;
12025
+ }
12026
+
12027
+ .mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
12028
+ width: 350px;
12029
+ }
11986
12030
  `;
11987
12031
 
11988
12032
  const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...rest }) => {
@@ -11994,5 +12038,5 @@ const Map$1 = ({ zIndex, lowerSiblings, upperSiblings, onError, children, ...res
11994
12038
  }, children: children }), upperSiblings] }));
11995
12039
  };
11996
12040
 
11997
- export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, ContainerChildren, ContainerLoading, ContainerTemplate, ContainerWrapper, ContainersGroupContainer, DEFAULT_ATTRIBUTE_NAME, DEFAULT_BARCHART_RADIUS, DEFAULT_BASE_MAP, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_PAINT, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_FILTER_PADDING, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_PAINT, DEFAULT_LNG, DEFAULT_PAGES_CONFIG, DEFAULT_PIECHART_RADIUS, DEFAULT_ZOOM, Dashboard, DashboardCheckbox, DashboardChip, DashboardContent, DashboardContext, DashboardDefaultHeader, DashboardHeader, DashboardLoading, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DefaultHeaderWrapper, DividerContainer, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardGradientHeader, FeatureCardHeader, FeatureCardIconHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroup, LayerGroupList, LayerIcon, LayerIconContainer, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, SERVER_NOTIFICATION_EVENT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TmsType, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, convertSpToTurfFeature, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfo, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTemplateNameFromAttribute, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, useAppHeight, useAutoCompleteControl, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
12041
+ export { AddFeatureButton, AddFeatureContainer, AlertIconContainer, AttributeGalleryContainer, AttributeLabel, BASE_CONTAINER_STYLE, BaseMapTheme, CONFIG_PAGES_ID, CONFIG_PAGE_ID, CameraContainer, Chart, ChartContainer, ChartLegend, ChartLoading, Container, ContainerChildren, ContainerLoading, ContainerTemplate, ContainerWrapper, ContainersGroupContainer, DEFAULT_ATTRIBUTE_NAME, DEFAULT_BARCHART_RADIUS, DEFAULT_BASE_MAP, DEFAULT_CHART_ANGLE, DEFAULT_CHART_HEIGHT, DEFAULT_CHART_WIDTH, DEFAULT_CIRCLE_PAINT, DEFAULT_DASHBOARD_CONFIG, DEFAULT_DATA_SOURCE_LIMIT, DEFAULT_DROPDOWN_WIDTH, DEFAULT_FILL_EXTRUSION_PAINT, DEFAULT_FILL_PAINT, DEFAULT_FILTER_PADDING, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LAT, DEFAULT_LINE_PAINT, DEFAULT_LNG, DEFAULT_PAGES_CONFIG, DEFAULT_PIECHART_RADIUS, DEFAULT_ZOOM, Dashboard, DashboardCheckbox, DashboardChip, DashboardContent, DashboardContext, DashboardDefaultHeader, DashboardHeader, DashboardLoading, DashboardPlaceholder, DashboardPlaceholderWrap, DashboardProvider, DashboardWrapper, DataSourceContainer, DataSourceError, DataSourceErrorContainer, DataSourceInnerContainer, DataSourceProgressContainer, DateFormat, DefaultAttributesContainer, DefaultHeaderContainer, DefaultHeaderWrapper, DividerContainer, EditGeometryType, ElementButton, ElementCamera, ElementChart, ElementChips, ElementControl, ElementIcon, ElementImage, ElementLegend, ElementLink, ElementMarkdown, ElementSlideshow, ElementSvg, ElementTooltip, ElementValueWrapper, ExpandableTitle, FEATURE_CARD_DEFAULT_COLORS, FEATURE_CARD_OTHER_COLOR, FILTERED_VALUE_OPACITY, FILTER_PREFIX, FeatureCardButtons, FeatureCardContext, FeatureCardDefaultHeader, FeatureCardGradientHeader, FeatureCardHeader, FeatureCardIconHeader, FeatureCardProvider, FeatureCardSlideshowHeader, FeatureCardTitle, FeatureControls, FeatureTitleContainer, FiltersContainer, GEOMETRY_ATTRIBUTE, GlobalContext, GlobalProvider, Header, HeaderContainer, HeaderFrontView, HeaderTemplate, HeaderTitleContainer, HiddenTitleItems, IconContainer, ImageContainer, LEFT_PANEL_HEADER_HEIGHT, Layer, LayerDescription, LayerGroup, LayerGroupList, LayerIcon, LayerIconContainer, LayerListContainer, LayerTree, LayersContainer, LayersListWrapper, LinearProgressContainer, LogTerminal, LogoContainer, MAX_CHART_WIDTH, Map$1 as Map, MapContext, MapProvider, NO_CONTENT_VALUE, NUMERIC_ATTRIBUTE_TYPES, NoLiveSnapshotContainer, OneColumnContainer, PageNavigator, PageTitle, PageTitleContainer, PagesContainer, Pagination, PresentationHeader, PresentationHeaderButtons, PresentationHeaderTools, PresentationPanelContainer, PresentationPanelWrapper, PresentationWrapper, ProgressContainer, RoundedBackgroundContainer, SERVER_NOTIFICATION_EVENT, ScalingFactor, ServerNotificationsContext, ServerNotificationsProvider, SlideshowContainer, SmallPreviewContainer$1 as SmallPreviewContainer, SmallPreviewControl, SmallPreviewCounter, SmallPreviewImages, SmallPreviewLeft, SmallPreviewRight, StackBar, SvgImage, TIME_ZONE_FORMAT, TabsContainer, TextTrim, ThemeName, TitleContainer, TmsType, TopContainer, TopContainerButtons, TwoColumnContainer, UploadContainer, WidgetType, addDataSource, addDataSources, adjustColor, applyFiltersToCondition, applyQueryFilters, applyVarsToCondition, checkEqualOrIncludes, checkIsLoading, convertSpToTurfFeature, createConfigLayer, createConfigPage, createNewPageId, createTreeNode, dateOptions, debounce, decimalOpacityToHex, eqlParametersToPayload, findAttributeInExpression, formatArea, formatAttributeValue, formatChartRelatedValue, formatConditionValue, formatDataSourceCondition, formatDate$1 as formatDate, formatElementValue, formatLength, formatNumber, formatPolygonMeasure, getActualExtrusionHeight, getAttributeByName, getAttributeValue, getAttributesConfiguration, getChartAxes, getChartFilterName, getChartMarkers, getConfigFilter, getContainerComponent, getDashboardHeader, getDataFromAttributes, getDataFromRelatedFeatures, getDataSource, getDataSourceFilterValue, getDate, getDefaultConfig, getElementValue, getFeatureAttributes, getFeatureCardHeader, getFilterComponent, getFilterSelectedItems, getFilterValue, getFormattedAttributes, getGradientColors, getLayerDefinition, getLayerInfo, getLayerInfoFromDataSources, getPagesFromConfig, getPagesFromProjectInfo, getProxyService, getRelatedAttribute, getRenderElement, getResourceUrl, getRootElementId, getSelectedFilterValue, getSlideshowImages, getSvgUrl, getTemplateNameFromAttribute, getTotalFromAttributes, getTotalFromRelatedFeatures, hexToRgba, isCompositeLayerConfiguration, isEmptyElementValue, isEmptyValue, isHiddenEmptyValue, isLayerService, isNotValidSelectedTab, isNumeric, isObject, isProxyService, isVisibleContainer, numberOptions, parseClientStyle, parseIconNames, parseIconNamesFromClientStyle, pieChartTooltipFromAttributes, pieChartTooltipFromRelatedFeatures, pointOptions, removeDataSource, rgbToHex, roundTotalSum, sliceShownOtherItems, timeOptions, tooltipNameFromAttributes, tooltipValueFromAttributes, tooltipValueFromRelatedFeatures, transparentizeColor, treeNodesToProjectItems, updateDataSource, useAppHeight, useAutoCompleteControl, useChartChange, useChartData, useDashboardHeader, useDataSources, useDebouncedCallback, useDiffPage, useExpandableContainers, useExportPdf, useFetchImageWithAuth, useFetchWithAuth, useGetConfigLayer, useGlobalContext, useHeaderRender, useHideIfEmptyDataSource, useIconsFromLayers, useLayerParams, useMapContext, useMapDraw, useMapImages, useProjectDashboardInit, usePythonTask, useRedrawLayer, useRelatedDataSourceAttributes, useRenderElement, useServerNotificationsContext, useShownOtherItems, useToggle, useUpdateDataSource, useWidgetConfig, useWidgetContext, useWidgetFilters, useWidgetPage, useWindowResize, useZoomToFeatures, useZoomToPoint };
11998
12042
  //# sourceMappingURL=react.esm.js.map