@dataif/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. package/README.md +16 -0
  2. package/bin/dataif.js +623 -0
  3. package/package.json +26 -0
  4. package/scripts/build-template.mjs +72 -0
  5. package/templates/dataif/README.md +157 -0
  6. package/templates/dataif/infra/.env.example +119 -0
  7. package/templates/dataif/infra/.env.stg.example +119 -0
  8. package/templates/dataif/infra/airflow/Dockerfile +11 -0
  9. package/templates/dataif/infra/airflow/Dockerfile.release +17 -0
  10. package/templates/dataif/infra/airflow/requirements.txt +3 -0
  11. package/templates/dataif/infra/docker-compose.yml +306 -0
  12. package/templates/dataif/infra/init-db/01-init-dataif.sh +129 -0
  13. package/templates/dataif/infra/init-db/pnp-curated-views.sqlinc +444 -0
  14. package/templates/dataif/infra/init-db/pnp-raw-staging-curated.sqlinc +701 -0
  15. package/templates/dataif/infra/keycloak/Dockerfile +4 -0
  16. package/templates/dataif/infra/keycloak/realm-dataif.json +73 -0
  17. package/templates/dataif/infra/ollama/Dockerfile +9 -0
  18. package/templates/dataif/infra/ollama/bootstrap-model.sh +100 -0
  19. package/templates/dataif/infra/ollama/sabia-7b.Modelfile +14 -0
  20. package/templates/dataif/infra/postgres/Dockerfile +4 -0
  21. package/templates/dataif/pipelines/airflow/dags/generated/.gitkeep +1 -0
  22. package/templates/dataif/pipelines/airflow/dags/generated/2020_financeiro_fcc6f1f3_sync.py +9 -0
  23. package/templates/dataif/pipelines/dataif_pipelines/__init__.py +1 -0
  24. package/templates/dataif/pipelines/dataif_pipelines/airflow/__init__.py +1 -0
  25. package/templates/dataif/pipelines/dataif_pipelines/airflow/pnp_pipeline_factory.py +167 -0
  26. package/templates/dataif/pipelines/dataif_pipelines/connectors/__init__.py +1 -0
  27. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/__init__.py +1 -0
  28. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/connector.py +28 -0
  29. package/templates/dataif/pipelines/dataif_pipelines/connectors/base/types.py +14 -0
  30. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/__init__.py +1 -0
  31. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/config.py +19 -0
  32. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/connector.py +558 -0
  33. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/powerbi_microdados.py +728 -0
  34. package/templates/dataif/pipelines/dataif_pipelines/connectors/nilo_pecanha/transform.py +296 -0
  35. package/templates/dataif/pipelines/dataif_pipelines/jobs/__init__.py +1 -0
  36. package/templates/dataif/pipelines/dataif_pipelines/jobs/nilo_pipeline.py +112 -0
  37. package/templates/dataif/pipelines/dataif_pipelines/orchestration/__init__.py +21 -0
  38. package/templates/dataif/pipelines/dataif_pipelines/orchestration/pnp_workflow.py +783 -0
  39. package/templates/dataif/pipelines/dataif_pipelines/repositories/__init__.py +1 -0
  40. package/templates/dataif/pipelines/dataif_pipelines/repositories/pnp_raw_repository.py +860 -0
  41. package/templates/dataif/pipelines/dataif_pipelines/services/__init__.py +19 -0
  42. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_curated_service.py +66 -0
  43. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_download_service.py +534 -0
  44. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_quality_service.py +9 -0
  45. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_raw_ingestion_service.py +124 -0
  46. package/templates/dataif/pipelines/dataif_pipelines/services/pnp_staging_service.py +271 -0
  47. package/templates/dataif/pipelines/dataif_pipelines/services/powerbi_catalog_service.py +159 -0
  48. package/templates/dataif/pipelines/sql/staging/020_pnp_matriculas.sql +112 -0
  49. package/templates/dataif/pipelines/sql/staging/030_pnp_eficiencia_academica.sql +83 -0
  50. package/templates/dataif/pipelines/sql/staging/040_pnp_servidores.sql +90 -0
  51. package/templates/dataif/pipelines/sql/staging/050_pnp_financeiro.sql +72 -0
  52. package/templates/dataif/pipelines/sql/views_curated/004_mv_pnp_dashboard_fast.sql +204 -0
  53. package/templates/dataif/pipelines/sql/views_curated/010_vw_pnp_admin_ingestao.sql +51 -0
  54. package/templates/dataif/pipelines/sql/views_curated/020_vw_pnp_qualidade_dados.sql +114 -0
  55. package/templates/dataif/pipelines/sql/views_curated/030_vw_pnp_matriculas.sql +67 -0
  56. package/templates/dataif/pipelines/sql/views_curated/040_vw_pnp_eficiencia.sql +33 -0
  57. package/templates/dataif/pipelines/sql/views_curated/050_vw_pnp_servidores.sql +30 -0
  58. package/templates/dataif/pipelines/sql/views_curated/060_vw_pnp_financeiro.sql +22 -0
  59. package/templates/dataif/pipelines/sql/views_curated/070_vw_pnp_vanna.sql +115 -0
  60. package/templates/dataif/scripts/configure-env.sh +149 -0
  61. package/templates/dataif/scripts/create_metabase_pnp_dashboard.py +943 -0
  62. package/templates/dataif/scripts/create_metabase_pnp_matriculas_dashboard.py +580 -0
  63. package/templates/dataif/scripts/deploy.sh +79 -0
  64. package/templates/dataif/scripts/fix_metabase_template_tag_ids.py +91 -0
  65. package/templates/dataif/scripts/pnp_powerbi_microdados_probe.py +14 -0
  66. package/templates/dataif/scripts/pnp_validate_raw_run.py +330 -0
  67. package/templates/dataif/scripts/publish-images.sh +31 -0
  68. package/templates/dataif/scripts/sync_metabase_dashboard_field_filters.py +241 -0
  69. package/templates/dataif/scripts/use-vanna-ollama.sh +139 -0
  70. package/templates/dataif/services/api/.dockerignore +18 -0
  71. package/templates/dataif/services/api/Dockerfile +12 -0
  72. package/templates/dataif/services/api/app/__init__.py +1 -0
  73. package/templates/dataif/services/api/app/auth.py +48 -0
  74. package/templates/dataif/services/api/app/config.py +59 -0
  75. package/templates/dataif/services/api/app/keycloak_admin.py +215 -0
  76. package/templates/dataif/services/api/app/main.py +2432 -0
  77. package/templates/dataif/services/api/app/metabase_admin.py +191 -0
  78. package/templates/dataif/services/api/app/metabase_bootstrap.py +44 -0
  79. package/templates/dataif/services/api/app/metabase_embed.py +15 -0
  80. package/templates/dataif/services/api/app/pnp_dag_provisioner.py +113 -0
  81. package/templates/dataif/services/api/app/pnp_instance_repository.py +951 -0
  82. package/templates/dataif/services/api/app/pnp_powerbi.py +438 -0
  83. package/templates/dataif/services/api/app/vanna_client.py +32 -0
  84. package/templates/dataif/services/api/requirements.txt +9 -0
  85. package/templates/dataif/services/vanna/.dockerignore +18 -0
  86. package/templates/dataif/services/vanna/Dockerfile +12 -0
  87. package/templates/dataif/services/vanna/app/config.py +57 -0
  88. package/templates/dataif/services/vanna/app/main.py +108 -0
  89. package/templates/dataif/services/vanna/app/runtime_config.py +114 -0
  90. package/templates/dataif/services/vanna/app/sql_guard.py +123 -0
  91. package/templates/dataif/services/vanna/app/vanna_engine.py +382 -0
  92. package/templates/dataif/services/vanna/requirements.txt +8 -0
  93. package/templates/dataif/services/web/.dockerignore +13 -0
  94. package/templates/dataif/services/web/Dockerfile +16 -0
  95. package/templates/dataif/services/web/index.html +12 -0
  96. package/templates/dataif/services/web/nginx.conf +74 -0
  97. package/templates/dataif/services/web/package-lock.json +4397 -0
  98. package/templates/dataif/services/web/package.json +32 -0
  99. package/templates/dataif/services/web/postcss.config.mjs +5 -0
  100. package/templates/dataif/services/web/src/App.jsx +2817 -0
  101. package/templates/dataif/services/web/src/adminAuth.js +245 -0
  102. package/templates/dataif/services/web/src/assets/avatar_placeholder.png +0 -0
  103. package/templates/dataif/services/web/src/assets/github_logo_icon_229278.svg +1 -0
  104. package/templates/dataif/services/web/src/assets/if-logo.png +0 -0
  105. package/templates/dataif/services/web/src/assets/if.svg +0 -0
  106. package/templates/dataif/services/web/src/assets/pnp-horizontal.svg +1 -0
  107. package/templates/dataif/services/web/src/components/AppHeader.jsx +233 -0
  108. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/mobile-header.tsx +56 -0
  109. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-account-card.tsx +209 -0
  110. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-item-button.tsx +67 -0
  111. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-item.tsx +108 -0
  112. package/templates/dataif/services/web/src/components/application/app-navigation/base-components/nav-list.tsx +83 -0
  113. package/templates/dataif/services/web/src/components/application/app-navigation/config.ts +23 -0
  114. package/templates/dataif/services/web/src/components/application/app-navigation/header-navigation.tsx +240 -0
  115. package/templates/dataif/services/web/src/components/application/pagination/pagination-base.tsx +376 -0
  116. package/templates/dataif/services/web/src/components/application/pagination/pagination-dot.tsx +52 -0
  117. package/templates/dataif/services/web/src/components/application/pagination/pagination-line.tsx +48 -0
  118. package/templates/dataif/services/web/src/components/application/pagination/pagination.tsx +328 -0
  119. package/templates/dataif/services/web/src/components/application/tabs/tabs.tsx +223 -0
  120. package/templates/dataif/services/web/src/components/base/avatar/avatar-label-group.tsx +28 -0
  121. package/templates/dataif/services/web/src/components/base/avatar/avatar.tsx +129 -0
  122. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-add-button.tsx +32 -0
  123. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-company-icon.tsx +24 -0
  124. package/templates/dataif/services/web/src/components/base/avatar/base-components/avatar-online-indicator.tsx +29 -0
  125. package/templates/dataif/services/web/src/components/base/avatar/base-components/index.tsx +4 -0
  126. package/templates/dataif/services/web/src/components/base/avatar/base-components/verified-tick.tsx +32 -0
  127. package/templates/dataif/services/web/src/components/base/badges/badge-types.ts +264 -0
  128. package/templates/dataif/services/web/src/components/base/badges/badges.tsx +415 -0
  129. package/templates/dataif/services/web/src/components/base/button-group/button-group.tsx +104 -0
  130. package/templates/dataif/services/web/src/components/base/buttons/button.tsx +267 -0
  131. package/templates/dataif/services/web/src/components/base/input/hint-text.tsx +31 -0
  132. package/templates/dataif/services/web/src/components/base/input/input.tsx +269 -0
  133. package/templates/dataif/services/web/src/components/base/input/label.tsx +48 -0
  134. package/templates/dataif/services/web/src/components/base/radio-buttons/radio-buttons.tsx +127 -0
  135. package/templates/dataif/services/web/src/components/base/select/combobox.tsx +150 -0
  136. package/templates/dataif/services/web/src/components/base/select/multi-select.tsx +361 -0
  137. package/templates/dataif/services/web/src/components/base/select/popover.tsx +32 -0
  138. package/templates/dataif/services/web/src/components/base/select/select-item.tsx +95 -0
  139. package/templates/dataif/services/web/src/components/base/select/select-native.tsx +67 -0
  140. package/templates/dataif/services/web/src/components/base/select/select.tsx +144 -0
  141. package/templates/dataif/services/web/src/components/base/tags/base-components/tag-close-x.tsx +32 -0
  142. package/templates/dataif/services/web/src/components/base/tooltip/tooltip.tsx +107 -0
  143. package/templates/dataif/services/web/src/components/foundations/dot-icon.tsx +22 -0
  144. package/templates/dataif/services/web/src/components/foundations/logo/untitledui-logo-minimal.tsx +170 -0
  145. package/templates/dataif/services/web/src/components/foundations/logo/untitledui-logo.tsx +58 -0
  146. package/templates/dataif/services/web/src/hooks/use-breakpoint.ts +34 -0
  147. package/templates/dataif/services/web/src/hooks/use-resize-observer.ts +67 -0
  148. package/templates/dataif/services/web/src/main.jsx +14 -0
  149. package/templates/dataif/services/web/src/providers/theme-provider.jsx +62 -0
  150. package/templates/dataif/services/web/src/styles/globals.css +60 -0
  151. package/templates/dataif/services/web/src/styles/theme.css +1326 -0
  152. package/templates/dataif/services/web/src/styles/typography.css +430 -0
  153. package/templates/dataif/services/web/src/styles.css +1287 -0
  154. package/templates/dataif/services/web/src/utils/cx.ts +24 -0
  155. package/templates/dataif/services/web/src/utils/is-react-component.ts +33 -0
  156. package/templates/dataif/services/web/vite.config.js +14 -0
  157. package/templates/dataif/sql/ddl/001_schemas.sql +6 -0
  158. package/templates/dataif/sql/ddl/003_pnp_raw_staging_curated.sql +699 -0
  159. package/templates/dataif/sql/migrations/001_pnp_phase1_backfill.sql +3 -0
  160. package/templates/dataif/sql/migrations/002_pnp_phase2_admin_config_backfill.sql +184 -0
  161. package/templates/dataif/sql/migrations/003_pnp_phase3_raw_tabular_backfill.sql +3 -0
  162. package/templates/dataif/sql/migrations/004_pnp_phase3_raw_backfill_support_index.sql +3 -0
  163. package/templates/dataif/sql/migrations/005_pnp_phase7_staging_support_indexes.sql +2 -0
  164. package/templates/dataif/sql/migrations/006_pnp_phase7_staging_autovacuum_tuning.sql +2 -0
  165. package/templates/dataif/sql/migrations/007_pnp_phase7b_run_packages.sql +20 -0
  166. package/templates/dataif/sql/migrations/008_pnp_phase7a_pipeline_endpoints.sql +169 -0
  167. package/templates/dataif/sql/migrations/009_pnp_phase8_curated.sql +35 -0
  168. package/templates/dataif/sql/migrations/010_pnp_phase10_staging_incremental_upsert.sql +3 -0
  169. package/templates/dataif/sql/migrations/010_pnp_pipeline_uuid.sql +51 -0
  170. package/templates/dataif/sql/migrations/011_app_settings.sql +7 -0
  171. package/templates/dataif/sql/staging/020_pnp_matriculas.sql +112 -0
  172. package/templates/dataif/sql/staging/030_pnp_eficiencia_academica.sql +83 -0
  173. package/templates/dataif/sql/staging/040_pnp_servidores.sql +90 -0
  174. package/templates/dataif/sql/staging/050_pnp_financeiro.sql +72 -0
  175. package/templates/dataif/sql/views_curated/003_vw_pnp_microdados_admin.sql +160 -0
  176. package/templates/dataif/sql/views_curated/004_mv_pnp_dashboard_fast.sql +204 -0
  177. package/templates/dataif/sql/views_curated/010_vw_pnp_admin_ingestao.sql +51 -0
  178. package/templates/dataif/sql/views_curated/020_vw_pnp_qualidade_dados.sql +114 -0
  179. package/templates/dataif/sql/views_curated/030_vw_pnp_matriculas.sql +67 -0
  180. package/templates/dataif/sql/views_curated/040_vw_pnp_eficiencia.sql +33 -0
  181. package/templates/dataif/sql/views_curated/050_vw_pnp_servidores.sql +30 -0
  182. package/templates/dataif/sql/views_curated/060_vw_pnp_financeiro.sql +22 -0
  183. package/templates/dataif/sql/views_curated/070_vw_pnp_vanna.sql +115 -0
@@ -0,0 +1,245 @@
1
+ import { useEffect, useState } from "react";
2
+
3
+ const EXPIRY_LEEWAY_SECONDS = 30;
4
+
5
+ function buildStorageKeys(storageKey) {
6
+ return {
7
+ sessionKey: `${storageKey}.session`,
8
+ };
9
+ }
10
+
11
+ function normalizeTokens(payload) {
12
+ const now = Math.floor(Date.now() / 1000);
13
+ return {
14
+ accessToken: payload.access_token,
15
+ refreshToken: payload.refresh_token || "",
16
+ idToken: payload.id_token || "",
17
+ tokenType: payload.token_type || "Bearer",
18
+ expiresAt: now + Number(payload.expires_in || 0),
19
+ refreshExpiresAt: payload.refresh_expires_in ? now + Number(payload.refresh_expires_in) : 0,
20
+ };
21
+ }
22
+
23
+ function readJsonStorage(key, storage) {
24
+ const raw = storage.getItem(key);
25
+ if (!raw) {
26
+ return null;
27
+ }
28
+
29
+ try {
30
+ return JSON.parse(raw);
31
+ } catch (_error) {
32
+ storage.removeItem(key);
33
+ return null;
34
+ }
35
+ }
36
+
37
+ function persistSession(keys, session) {
38
+ window.localStorage.setItem(keys.sessionKey, JSON.stringify(session));
39
+ }
40
+
41
+ function readSession(keys) {
42
+ return readJsonStorage(keys.sessionKey, window.localStorage);
43
+ }
44
+
45
+ function clearStoredState(keys) {
46
+ window.localStorage.removeItem(keys.sessionKey);
47
+ }
48
+
49
+ function isExpired(expiresAt, leewaySeconds = EXPIRY_LEEWAY_SECONDS) {
50
+ if (!expiresAt) {
51
+ return true;
52
+ }
53
+ const now = Math.floor(Date.now() / 1000);
54
+ return expiresAt <= now + leewaySeconds;
55
+ }
56
+
57
+ async function requestAuth(apiBaseUrl, path, payload) {
58
+ const response = await fetch(`${apiBaseUrl}${path}`, {
59
+ method: "POST",
60
+ headers: { "Content-Type": "application/json" },
61
+ body: JSON.stringify(payload),
62
+ });
63
+
64
+ if (!response.ok) {
65
+ const detailText = await response.text();
66
+ try {
67
+ const detailPayload = JSON.parse(detailText);
68
+ throw new Error(detailPayload.detail || `Falha HTTP ${response.status}`);
69
+ } catch (_error) {
70
+ throw new Error(detailText || `Falha HTTP ${response.status}`);
71
+ }
72
+ }
73
+
74
+ return normalizeTokens(await response.json());
75
+ }
76
+
77
+ async function requestPasswordLogin(apiBaseUrl, username, password) {
78
+ return requestAuth(apiBaseUrl, "/api/admin/login", {
79
+ username,
80
+ password,
81
+ });
82
+ }
83
+
84
+ async function requestRefresh(apiBaseUrl, refreshToken) {
85
+ return requestAuth(apiBaseUrl, "/api/admin/refresh", {
86
+ refresh_token: refreshToken,
87
+ });
88
+ }
89
+
90
+ async function validateAdminSession(apiBaseUrl, accessToken) {
91
+ const response = await fetch(`${apiBaseUrl}/api/admin/whoami`, {
92
+ headers: { Authorization: `Bearer ${accessToken}` },
93
+ });
94
+
95
+ if (!response.ok) {
96
+ const detailText = await response.text();
97
+ throw new Error(`Falha ao validar a sessão admin: ${response.status} - ${detailText}`);
98
+ }
99
+
100
+ const payload = await response.json();
101
+ return payload.claims || {};
102
+ }
103
+
104
+ function buildAuthenticatedState(session, claims) {
105
+ return {
106
+ status: "authenticated",
107
+ accessToken: session.accessToken,
108
+ refreshToken: session.refreshToken,
109
+ idToken: session.idToken,
110
+ expiresAt: session.expiresAt,
111
+ refreshExpiresAt: session.refreshExpiresAt,
112
+ claims,
113
+ error: "",
114
+ };
115
+ }
116
+
117
+ function buildSignedOutState(error = "") {
118
+ return {
119
+ status: "signed_out",
120
+ accessToken: "",
121
+ refreshToken: "",
122
+ idToken: "",
123
+ expiresAt: 0,
124
+ refreshExpiresAt: 0,
125
+ claims: null,
126
+ error,
127
+ };
128
+ }
129
+
130
+ export function useAdminAuth({ apiBaseUrl, storageKey }) {
131
+ const storageKeys = buildStorageKeys(storageKey);
132
+ const [session, setSession] = useState({
133
+ status: "loading",
134
+ accessToken: "",
135
+ refreshToken: "",
136
+ idToken: "",
137
+ expiresAt: 0,
138
+ refreshExpiresAt: 0,
139
+ claims: null,
140
+ error: "",
141
+ });
142
+
143
+ async function applyValidatedSession(tokens) {
144
+ const claims = await validateAdminSession(apiBaseUrl, tokens.accessToken);
145
+ const nextSession = { ...tokens, claims };
146
+ persistSession(storageKeys, nextSession);
147
+ setSession(buildAuthenticatedState(tokens, claims));
148
+ return nextSession;
149
+ }
150
+
151
+ async function getAccessToken() {
152
+ const currentSession = readSession(storageKeys);
153
+ if (!currentSession) {
154
+ throw new Error("Autenticacao admin obrigatoria.");
155
+ }
156
+
157
+ if (!isExpired(currentSession.expiresAt)) {
158
+ if (session.status !== "authenticated" && currentSession.claims) {
159
+ setSession(buildAuthenticatedState(currentSession, currentSession.claims));
160
+ }
161
+ return currentSession.accessToken;
162
+ }
163
+
164
+ if (!currentSession.refreshToken || isExpired(currentSession.refreshExpiresAt, 0)) {
165
+ clearStoredState(storageKeys);
166
+ setSession(buildSignedOutState("Sessão expirada. Entre novamente."));
167
+ throw new Error("Sessão admin expirada. Entre novamente.");
168
+ }
169
+
170
+ const refreshed = await requestRefresh(apiBaseUrl, currentSession.refreshToken);
171
+ const nextSession = await applyValidatedSession(refreshed);
172
+ return nextSession.accessToken;
173
+ }
174
+
175
+ async function login(username, password) {
176
+ setSession((current) => ({ ...current, status: "loading", error: "" }));
177
+
178
+ try {
179
+ const tokens = await requestPasswordLogin(apiBaseUrl, username, password);
180
+ await applyValidatedSession(tokens);
181
+ return true;
182
+ } catch (error) {
183
+ clearStoredState(storageKeys);
184
+ setSession(
185
+ buildSignedOutState(error instanceof Error ? error.message : "Falha ao iniciar a sessão admin."),
186
+ );
187
+ return false;
188
+ }
189
+ }
190
+
191
+ function logout() {
192
+ clearStoredState(storageKeys);
193
+ setSession(buildSignedOutState(""));
194
+ }
195
+
196
+ useEffect(() => {
197
+ let active = true;
198
+
199
+ async function bootstrap() {
200
+ try {
201
+ const storedSession = readSession(storageKeys);
202
+ if (!storedSession) {
203
+ if (active) {
204
+ setSession(buildSignedOutState(""));
205
+ }
206
+ return;
207
+ }
208
+
209
+ if (isExpired(storedSession.expiresAt)) {
210
+ if (!storedSession.refreshToken || isExpired(storedSession.refreshExpiresAt, 0)) {
211
+ throw new Error("Sessão expirada. Entre novamente.");
212
+ }
213
+
214
+ const refreshed = await requestRefresh(apiBaseUrl, storedSession.refreshToken);
215
+ await applyValidatedSession(refreshed);
216
+ return;
217
+ }
218
+
219
+ await applyValidatedSession(storedSession);
220
+ } catch (error) {
221
+ clearStoredState(storageKeys);
222
+ if (active) {
223
+ setSession(
224
+ buildSignedOutState(
225
+ error instanceof Error ? error.message : "Falha ao carregar a sessão admin.",
226
+ ),
227
+ );
228
+ }
229
+ }
230
+ }
231
+
232
+ bootstrap();
233
+
234
+ return () => {
235
+ active = false;
236
+ };
237
+ }, []);
238
+
239
+ return {
240
+ ...session,
241
+ login,
242
+ logout,
243
+ getAccessToken,
244
+ };
245
+ }
@@ -0,0 +1 @@
1
+ <?xml version="1.0" ?><svg data-name="Social Media Icons" id="Social_Media_Icons" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><defs><style>.cls-1{fill:#fff;}</style></defs><g id="Github"><path d="M512,256c0,117.67-79.41,216.81-187.56,246.75-2.57-1.9-4.71-5.5-4.71-12.15,0-16.47-.67-81.38-.67-81.38s-2.64-22.35-15.43-32.57c0,0,0,0,0,0,2.5,0,96.9-1.73,112.94-90.59,0,0,16.26-58.42-23.06-102.11,0,0,12.52-30.31-2.64-66.55,0,0-29-2-69.17,26.36,0,0-43.77-8.57-65.7-8.57s-65.7,8.57-65.7,8.57c-40.19-28.33-69.17-26.36-69.17-26.36-15.16,36.24-2.64,66.55-2.64,66.55C79.17,227.6,95.43,286,95.43,286c16,88.86,110.44,90.56,112.94,90.59,0,0,0,0,0,0-12.79,10.22-15.43,32.57-15.43,32.57s-35.57,24.39-68.52-10.75c0,0-17.57-43.93-57.1-32.51,0,0-3.51,8.36,14.06,15.38,0,0,19.32,16,24.15,36.12,0,0,21.19,49.1,87,32.84-.14,16.37-.27,33.05-.27,40.3,0,6.65-2.14,10.25-4.71,12.15C79.41,472.81,0,373.67,0,256,0,114.62,114.62,0,256,0S512,114.62,512,256Z"/><path class="cls-1" d="M416.57,286c-16,88.86-110.44,90.56-112.94,90.59,0,0,0,0,0,0,12.79,10.22,15.43,32.57,15.43,32.57s.67,64.91.67,81.38c0,6.65,2.14,10.25,4.71,12.15a257.82,257.82,0,0,1-136.88,0c2.57-1.9,4.71-5.5,4.71-12.15,0-7.25.13-23.93.27-40.3-65.82,16.26-87-32.84-87-32.84-4.83-20.09-24.15-36.12-24.15-36.12C63.81,374.32,67.32,366,67.32,366c39.53-11.42,57.1,32.51,57.1,32.51,33,35.14,68.52,10.75,68.52,10.75s2.64-22.35,15.43-32.57c0,0,0,0,0,0-2.5,0-96.9-1.73-112.94-90.59,0,0-16.26-58.42,23.06-102.11,0,0-12.52-30.31,2.64-66.55,0,0,29-2,69.17,26.36,0,0,43.77-8.57,65.7-8.57s65.7,8.57,65.7,8.57c40.19-28.33,69.17-26.36,69.17-26.36,15.16,36.24,2.64,66.55,2.64,66.55C432.83,227.6,416.57,286,416.57,286Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2699" zoomAndPan="magnify" viewBox="0 0 2024.25 438.749984" height="585" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><clipPath id="37199086c6"><path d="M 0.203125 0 L 2023.296875 0 L 2023.296875 438.5 L 0.203125 438.5 Z M 0.203125 0 " clip-rule="nonzero"/></clipPath><clipPath id="ae74cd930b"><path d="M 5.191406 4.988281 L 301 4.988281 L 301 262 L 5.191406 262 Z M 5.191406 4.988281 " clip-rule="nonzero"/></clipPath><clipPath id="1577230a91"><path d="M 185.976562 4.996094 L 5.367188 4.996094 L 5.199219 261.492188 L 185.976562 261.492188 C 249.390625 261.492188 300.789062 204.074219 300.789062 133.242188 C 300.789062 62.414062 249.390625 4.996094 185.976562 4.996094 " clip-rule="nonzero"/></clipPath><clipPath id="b3a9e4206f"><path d="M 0.191406 0.988281 L 295.988281 0.988281 L 295.988281 257.691406 L 0.191406 257.691406 Z M 0.191406 0.988281 " clip-rule="nonzero"/></clipPath><clipPath id="b1f1568d16"><path d="M 180.976562 0.996094 L 0.367188 0.996094 L 0.199219 257.492188 L 180.976562 257.492188 C 244.390625 257.492188 295.789062 200.074219 295.789062 129.242188 C 295.789062 58.414062 244.390625 0.996094 180.976562 0.996094 " clip-rule="nonzero"/></clipPath><clipPath id="b7e9eb0687"><rect x="0" width="296" y="0" height="258"/></clipPath><clipPath id="ddb9d22df6"><path d="M 575 4.988281 L 868 4.988281 L 868 262.445312 L 575 262.445312 Z M 575 4.988281 " clip-rule="nonzero"/></clipPath><clipPath id="9df52a9e04"><path d="M 752.902344 4.996094 L 575.613281 4.996094 L 575.613281 262.332031 L 752.902344 262.332031 C 816.316406 262.332031 867.71875 204.722656 867.71875 133.664062 C 867.71875 62.605469 816.316406 4.996094 752.902344 4.996094 " clip-rule="nonzero"/></clipPath><clipPath id="b9ae7e8662"><path d="M 0.394531 0.988281 L 292.789062 0.988281 L 292.789062 258.410156 L 0.394531 258.410156 Z M 0.394531 0.988281 " clip-rule="nonzero"/></clipPath><clipPath id="eb7820421f"><path d="M 177.902344 0.996094 L 0.613281 0.996094 L 0.613281 258.332031 L 177.902344 258.332031 C 241.316406 258.332031 292.71875 200.722656 292.71875 129.664062 C 292.71875 58.605469 241.316406 0.996094 177.902344 0.996094 " clip-rule="nonzero"/></clipPath><clipPath id="2bc401d4f0"><rect x="0" width="293" y="0" height="259"/></clipPath><clipPath id="df1589633d"><path d="M 250 4.988281 L 575.988281 4.988281 L 575.988281 399.160156 L 250 399.160156 Z M 250 4.988281 " clip-rule="nonzero"/></clipPath><clipPath id="deb9cde5fb"><path d="M 476.828125 4.996094 L 476.828125 196.878906 L 250.390625 26.804688 L 250.148438 26.84375 C 250.570312 27.164062 250.96875 27.523438 251.386719 27.855469 C 281.132812 50.722656 300.769531 88.449219 300.769531 131.914062 C 300.769531 151.664062 297.132812 170.800781 289.996094 187.503906 L 575.625 399.152344 L 575.625 4.996094 Z M 476.828125 4.996094 " clip-rule="nonzero"/></clipPath><clipPath id="5f2120ab1a"><path d="M 0.140625 0.988281 L 325.632812 0.988281 L 325.632812 395.160156 L 0.140625 395.160156 Z M 0.140625 0.988281 " clip-rule="nonzero"/></clipPath><clipPath id="e1ee419244"><path d="M 226.828125 0.996094 L 226.828125 192.878906 L 0.390625 22.804688 L 0.148438 22.84375 C 0.570312 23.164062 0.96875 23.523438 1.386719 23.855469 C 31.132812 46.722656 50.769531 84.449219 50.769531 127.914062 C 50.769531 147.664062 47.132812 166.800781 39.996094 183.503906 L 325.625 395.152344 L 325.625 0.996094 Z M 226.828125 0.996094 " clip-rule="nonzero"/></clipPath><clipPath id="2bd6784f65"><rect x="0" width="326" y="0" height="396"/></clipPath><clipPath id="6ba8788f9b"><path d="M 220 255.460938 L 320.527344 255.460938 L 320.527344 399.160156 L 220 399.160156 Z M 220 255.460938 " clip-rule="nonzero"/></clipPath><clipPath id="314bb14ba5"><path d="M 320.050781 399.152344 L 319.898438 322.964844 L 220.625 255.625 L 220.625 399.152344 Z M 320.050781 399.152344 " clip-rule="nonzero"/></clipPath><clipPath id="f189dd6a95"><path d="M 0.394531 0.460938 L 100.179688 0.460938 L 100.179688 144.160156 L 0.394531 144.160156 Z M 0.394531 0.460938 " clip-rule="nonzero"/></clipPath><clipPath id="64454d043f"><path d="M 100.050781 144.152344 L 99.898438 67.964844 L 0.625 0.625 L 0.625 144.152344 Z M 100.050781 144.152344 " clip-rule="nonzero"/></clipPath><clipPath id="a920f44e8d"><rect x="0" width="101" y="0" height="145"/></clipPath><clipPath id="9522322909"><path d="M 5.191406 261.449219 L 104.980469 261.449219 L 104.980469 399.160156 L 5.191406 399.160156 Z M 5.191406 261.449219 " clip-rule="nonzero"/></clipPath><clipPath id="ba62dcd474"><path d="M 104.753906 399.152344 L 104.613281 329.261719 L 5.339844 261.929688 L 5.339844 399.152344 Z M 104.753906 399.152344 " clip-rule="nonzero"/></clipPath><clipPath id="810c010000"><path d="M 0.238281 0.691406 L 99.78125 0.691406 L 99.78125 138.160156 L 0.238281 138.160156 Z M 0.238281 0.691406 " clip-rule="nonzero"/></clipPath><clipPath id="e7610475a8"><path d="M 99.753906 138.152344 L 99.613281 68.261719 L 0.339844 0.929688 L 0.339844 138.152344 Z M 99.753906 138.152344 " clip-rule="nonzero"/></clipPath><clipPath id="6a3c0becb2"><rect x="0" width="100" y="0" height="139"/></clipPath><clipPath id="1f7bc50576"><path d="M 575 262 L 675.777344 262 L 675.777344 399.160156 L 575 399.160156 Z M 575 262 " clip-rule="nonzero"/></clipPath><clipPath id="a7ed9db123"><path d="M 575.625 399.152344 L 575.652344 331.570312 L 675.136719 262.441406 L 675.136719 399.132812 Z M 575.625 399.152344 " clip-rule="nonzero"/></clipPath><clipPath id="c9ebdc8226"><path d="M 0.394531 0.410156 L 100.175781 0.410156 L 100.175781 137.160156 L 0.394531 137.160156 Z M 0.394531 0.410156 " clip-rule="nonzero"/></clipPath><clipPath id="480e3f88e0"><path d="M 0.625 137.152344 L 0.652344 69.570312 L 100.136719 0.441406 L 100.136719 137.132812 Z M 0.625 137.152344 " clip-rule="nonzero"/></clipPath><clipPath id="58d54ab305"><rect x="0" width="101" y="0" height="138"/></clipPath><clipPath id="413bccd912"><path d="M 219.738281 10 L 301 10 L 301 187.605469 L 219.738281 187.605469 Z M 219.738281 10 " clip-rule="nonzero"/></clipPath><clipPath id="1720139075"><path d="M 289.964844 187.582031 C 297.121094 170.863281 300.769531 151.695312 300.769531 131.925781 C 300.769531 74.515625 266.539062 27.105469 219.976562 10.742188 L 219.976562 141.570312 Z M 289.964844 187.582031 " clip-rule="nonzero"/></clipPath><clipPath id="1e130cc1af"><path d="M 0.917969 0.554688 L 81.988281 0.554688 L 81.988281 177.605469 L 0.917969 177.605469 Z M 0.917969 0.554688 " clip-rule="nonzero"/></clipPath><clipPath id="028436d2f0"><path d="M 70.964844 177.582031 C 78.121094 160.863281 81.769531 141.695312 81.769531 121.925781 C 81.769531 64.515625 47.539062 17.105469 0.976562 0.742188 L 0.976562 131.570312 Z M 70.964844 177.582031 " clip-rule="nonzero"/></clipPath><clipPath id="47f1c96dce"><rect x="0" width="82" y="0" height="178"/></clipPath><clipPath id="3bfb4c9266"><path d="M 966.28125 147.292969 L 1024 147.292969 L 1024 230.351562 L 966.28125 230.351562 Z M 966.28125 147.292969 " clip-rule="nonzero"/></clipPath><clipPath id="131da617fa"><path d="M 966.28125 230.164062 L 966.28125 147.292969 L 1000.253906 147.292969 C 1003.5625 147.292969 1006.699219 148.019531 1009.6875 149.492188 C 1012.675781 150.960938 1015.183594 152.878906 1017.242188 155.246094 C 1019.300781 157.617188 1020.921875 160.324219 1022.121094 163.371094 C 1023.320312 166.421875 1023.917969 169.488281 1023.917969 172.605469 C 1023.917969 177.015625 1022.96875 181.152344 1021.070312 185.03125 C 1019.171875 188.90625 1016.445312 192.066406 1012.894531 194.515625 C 1009.347656 196.964844 1005.359375 198.191406 1000.953125 198.191406 L 970.332031 198.191406 L 970.332031 230.164062 Z M 970.332031 194.425781 L 1000.824219 194.425781 C 1004.582031 194.425781 1007.949219 193.34375 1010.90625 191.207031 C 1013.867188 189.066406 1016.105469 186.339844 1017.601562 183.050781 C 1019.101562 179.761719 1019.851562 176.273438 1019.851562 172.597656 C 1019.851562 166.859375 1017.902344 161.824219 1014.015625 157.496094 C 1010.128906 153.167969 1005.488281 151 1000.132812 151 L 970.332031 151 Z M 970.332031 194.425781 " clip-rule="nonzero"/></clipPath><clipPath id="d4d3c95b31"><path d="M 0.28125 0.292969 L 57.9375 0.292969 L 57.9375 83.269531 L 0.28125 83.269531 Z M 0.28125 0.292969 " clip-rule="nonzero"/></clipPath><clipPath id="0fe836d0b4"><path d="M 0.28125 83.164062 L 0.28125 0.292969 L 34.253906 0.292969 C 37.5625 0.292969 40.699219 1.019531 43.6875 2.492188 C 46.675781 3.960938 49.183594 5.878906 51.242188 8.246094 C 53.300781 10.617188 54.921875 13.324219 56.121094 16.371094 C 57.320312 19.421875 57.917969 22.488281 57.917969 25.605469 C 57.917969 30.015625 56.96875 34.152344 55.070312 38.03125 C 53.171875 41.90625 50.445312 45.066406 46.894531 47.515625 C 43.347656 49.964844 39.359375 51.191406 34.953125 51.191406 L 4.332031 51.191406 L 4.332031 83.164062 Z M 4.332031 47.425781 L 34.824219 47.425781 C 38.582031 47.425781 41.949219 46.34375 44.90625 44.207031 C 47.867188 42.066406 50.105469 39.339844 51.601562 36.050781 C 53.101562 32.761719 53.851562 29.273438 53.851562 25.597656 C 53.851562 19.859375 51.902344 14.824219 48.015625 10.496094 C 44.128906 6.167969 39.488281 4 34.132812 4 L 4.332031 4 Z M 4.332031 47.425781 " clip-rule="nonzero"/></clipPath><clipPath id="18a3da098a"><rect x="0" width="58" y="0" height="84"/></clipPath><clipPath id="f6f679d4c1"><path d="M 1046.753906 144.953125 L 1065.675781 144.953125 L 1065.675781 230.769531 L 1046.753906 230.769531 Z M 1046.753906 144.953125 " clip-rule="nonzero"/></clipPath><clipPath id="14139c5167"><path d="M 1046.753906 144.953125 L 1050.851562 144.953125 L 1050.851562 219.792969 C 1050.851562 222.21875 1051.480469 224.058594 1052.730469 225.289062 C 1053.980469 226.519531 1055.6875 227.136719 1057.859375 227.136719 C 1059.648438 227.136719 1061.945312 226.738281 1064.753906 225.9375 L 1065.664062 229.246094 C 1062.773438 230.234375 1059.808594 230.726562 1056.769531 230.726562 C 1053.769531 230.726562 1051.339844 229.804688 1049.503906 227.957031 C 1047.664062 226.109375 1046.753906 223.667969 1046.753906 220.589844 Z M 1046.753906 144.953125 " clip-rule="nonzero"/></clipPath><clipPath id="f750337229"><path d="M 0.753906 0.953125 L 19.675781 0.953125 L 19.675781 86.75 L 0.753906 86.75 Z M 0.753906 0.953125 " clip-rule="nonzero"/></clipPath><clipPath id="95b2499a53"><path d="M 0.753906 0.953125 L 4.851562 0.953125 L 4.851562 75.792969 C 4.851562 78.21875 5.480469 80.058594 6.730469 81.289062 C 7.980469 82.519531 9.6875 83.136719 11.859375 83.136719 C 13.648438 83.136719 15.945312 82.738281 18.753906 81.9375 L 19.664062 85.246094 C 16.773438 86.234375 13.808594 86.726562 10.769531 86.726562 C 7.769531 86.726562 5.339844 85.804688 3.503906 83.957031 C 1.664062 82.109375 0.753906 79.667969 0.753906 76.589844 Z M 0.753906 0.953125 " clip-rule="nonzero"/></clipPath><clipPath id="4772070ee9"><rect x="0" width="20" y="0" height="87"/></clipPath><clipPath id="7045b2a3ce"><path d="M 965.855469 272.886719 L 1077.695312 272.886719 L 1077.695312 398.703125 L 965.855469 398.703125 Z M 965.855469 272.886719 " clip-rule="nonzero"/></clipPath><clipPath id="bfcc78b628"><path d="M 1000.335938 336.761719 L 1000.335938 398.554688 L 965.855469 398.554688 L 965.855469 272.886719 L 992.742188 272.886719 L 1043.210938 336.761719 L 1043.210938 272.886719 L 1077.691406 272.886719 L 1077.691406 398.554688 L 1050.296875 398.554688 Z M 1000.335938 336.761719 " clip-rule="nonzero"/></clipPath><clipPath id="d7062e1306"><path d="M 0.855469 0.886719 L 112.695312 0.886719 L 112.695312 126.652344 L 0.855469 126.652344 Z M 0.855469 0.886719 " clip-rule="nonzero"/></clipPath><clipPath id="b91c928c85"><path d="M 35.335938 64.761719 L 35.335938 126.554688 L 0.855469 126.554688 L 0.855469 0.886719 L 27.742188 0.886719 L 78.210938 64.761719 L 78.210938 0.886719 L 112.691406 0.886719 L 112.691406 126.554688 L 85.296875 126.554688 Z M 35.335938 64.761719 " clip-rule="nonzero"/></clipPath><clipPath id="6e544956e2"><rect x="0" width="113" y="0" height="127"/></clipPath><clipPath id="b01481dc55"><path d="M 1079.289062 168.550781 L 1130.386719 168.550781 L 1130.386719 231.378906 L 1079.289062 231.378906 Z M 1079.289062 168.550781 " clip-rule="nonzero"/></clipPath><clipPath id="8a9d10e60f"><path d="M 1079.289062 212.785156 C 1079.289062 207.539062 1081.636719 203.269531 1086.324219 199.992188 C 1091.011719 196.714844 1097.070312 195.066406 1104.476562 195.066406 C 1111.472656 195.066406 1118.007812 196.144531 1124.085938 198.3125 L 1124.085938 191.867188 C 1124.085938 185.902344 1122.335938 181.125 1118.835938 177.535156 C 1115.339844 173.949219 1110.710938 172.136719 1104.933594 172.136719 C 1098.886719 172.136719 1092.390625 174.585938 1085.4375 179.496094 L 1083.507812 176.585938 C 1091.292969 171.230469 1098.519531 168.550781 1105.164062 168.550781 C 1112.199219 168.550781 1117.769531 170.667969 1121.894531 174.90625 C 1126.023438 179.144531 1128.082031 184.871094 1128.082031 192.085938 L 1128.082031 224.117188 C 1128.082031 225.828125 1128.78125 226.6875 1130.191406 226.6875 L 1130.191406 230.164062 C 1129.089844 230.273438 1128.351562 230.246094 1127.972656 230.054688 C 1126.902344 229.824219 1126.054688 229.265625 1125.402344 228.375 C 1124.753906 227.488281 1124.394531 226.445312 1124.324219 225.269531 L 1124.324219 220.019531 C 1121.554688 223.597656 1117.949219 226.367188 1113.519531 228.347656 C 1109.09375 230.324219 1104.335938 231.3125 1099.238281 231.3125 C 1093.570312 231.3125 1088.835938 229.527344 1085.015625 225.957031 C 1081.199219 222.390625 1079.289062 217.980469 1079.289062 212.785156 M 1121.984375 218.023438 C 1123.394531 216.273438 1124.09375 214.5625 1124.09375 212.894531 L 1124.09375 201.78125 C 1118.085938 199.460938 1111.632812 198.304688 1104.714844 198.304688 C 1098.257812 198.304688 1093.042969 199.601562 1089.0625 202.210938 C 1085.085938 204.820312 1083.109375 208.257812 1083.109375 212.554688 C 1083.109375 216.8125 1084.695312 220.441406 1087.863281 223.4375 C 1091.03125 226.4375 1094.980469 227.945312 1099.6875 227.945312 C 1104.433594 227.945312 1108.832031 227.035156 1112.878906 225.207031 C 1116.929688 223.378906 1119.957031 220.992188 1121.976562 218.023438 " clip-rule="nonzero"/></clipPath><clipPath id="17647bbdac"><path d="M 0.289062 0.550781 L 51.199219 0.550781 L 51.199219 63.378906 L 0.289062 63.378906 Z M 0.289062 0.550781 " clip-rule="nonzero"/></clipPath><clipPath id="fe6d8ea6ec"><path d="M 0.289062 44.785156 C 0.289062 39.539062 2.636719 35.269531 7.324219 31.992188 C 12.011719 28.714844 18.070312 27.066406 25.476562 27.066406 C 32.472656 27.066406 39.007812 28.144531 45.085938 30.3125 L 45.085938 23.867188 C 45.085938 17.902344 43.335938 13.125 39.835938 9.535156 C 36.339844 5.949219 31.710938 4.136719 25.933594 4.136719 C 19.886719 4.136719 13.390625 6.585938 6.4375 11.496094 L 4.507812 8.585938 C 12.292969 3.230469 19.519531 0.550781 26.164062 0.550781 C 33.199219 0.550781 38.769531 2.667969 42.894531 6.90625 C 47.023438 11.144531 49.082031 16.871094 49.082031 24.085938 L 49.082031 56.117188 C 49.082031 57.828125 49.78125 58.6875 51.191406 58.6875 L 51.191406 62.164062 C 50.089844 62.273438 49.351562 62.246094 48.972656 62.054688 C 47.902344 61.824219 47.054688 61.265625 46.402344 60.375 C 45.753906 59.488281 45.394531 58.445312 45.324219 57.269531 L 45.324219 52.019531 C 42.554688 55.597656 38.949219 58.367188 34.519531 60.347656 C 30.09375 62.324219 25.335938 63.3125 20.238281 63.3125 C 14.570312 63.3125 9.835938 61.527344 6.015625 57.957031 C 2.199219 54.390625 0.289062 49.980469 0.289062 44.785156 M 42.984375 50.023438 C 44.394531 48.273438 45.09375 46.5625 45.09375 44.894531 L 45.09375 33.78125 C 39.085938 31.460938 32.632812 30.304688 25.714844 30.304688 C 19.257812 30.304688 14.042969 31.601562 10.0625 34.210938 C 6.085938 36.820312 4.109375 40.257812 4.109375 44.554688 C 4.109375 48.8125 5.695312 52.441406 8.863281 55.4375 C 12.03125 58.4375 15.980469 59.945312 20.6875 59.945312 C 25.433594 59.945312 29.832031 59.035156 33.878906 57.207031 C 37.929688 55.378906 40.957031 52.992188 42.976562 50.023438 " clip-rule="nonzero"/></clipPath><clipPath id="a1d9424f01"><rect x="0" width="52" y="0" height="64"/></clipPath><clipPath id="dcb2db0d67"><path d="M 1148.699219 148.546875 L 1180.335938 148.546875 L 1180.335938 230.84375 L 1148.699219 230.84375 Z M 1148.699219 148.546875 " clip-rule="nonzero"/></clipPath><clipPath id="156dd4835b"><path d="M 1180.332031 227.371094 C 1180.292969 227.371094 1180.03125 227.511719 1179.53125 227.800781 C 1179.035156 228.089844 1178.453125 228.378906 1177.765625 228.679688 C 1177.074219 228.980469 1176.273438 229.300781 1175.34375 229.621094 C 1174.414062 229.9375 1173.347656 230.210938 1172.15625 230.417969 C 1170.96875 230.628906 1169.75 230.730469 1168.539062 230.730469 C 1165.382812 230.730469 1162.734375 229.828125 1160.585938 228.019531 C 1158.433594 226.210938 1157.367188 223.78125 1157.367188 220.703125 L 1157.367188 172.941406 L 1148.699219 172.941406 L 1148.699219 169.464844 L 1157.367188 169.464844 L 1157.367188 148.546875 L 1161.292969 148.546875 L 1161.292969 169.464844 L 1175.664062 169.464844 L 1175.664062 172.941406 L 1161.292969 172.941406 L 1161.292969 220.136719 C 1161.445312 222.304688 1162.28125 223.992188 1163.800781 225.210938 C 1165.320312 226.429688 1167.140625 227.039062 1169.269531 227.039062 C 1170.789062 227.039062 1172.316406 226.8125 1173.855469 226.351562 C 1175.394531 225.890625 1176.566406 225.460938 1177.363281 225.042969 C 1178.164062 224.621094 1178.652344 224.324219 1178.84375 224.132812 Z M 1180.332031 227.371094 " clip-rule="nonzero"/></clipPath><clipPath id="d542feb06c"><path d="M 0.699219 0.546875 L 32.335938 0.546875 L 32.335938 82.75 L 0.699219 82.75 Z M 0.699219 0.546875 " clip-rule="nonzero"/></clipPath><clipPath id="7c834f7590"><path d="M 32.332031 79.371094 C 32.292969 79.371094 32.03125 79.511719 31.53125 79.800781 C 31.035156 80.089844 30.453125 80.378906 29.765625 80.679688 C 29.074219 80.980469 28.273438 81.300781 27.34375 81.621094 C 26.414062 81.9375 25.347656 82.210938 24.15625 82.417969 C 22.96875 82.628906 21.75 82.730469 20.539062 82.730469 C 17.382812 82.730469 14.734375 81.828125 12.585938 80.019531 C 10.433594 78.210938 9.367188 75.78125 9.367188 72.703125 L 9.367188 24.941406 L 0.699219 24.941406 L 0.699219 21.464844 L 9.367188 21.464844 L 9.367188 0.546875 L 13.292969 0.546875 L 13.292969 21.464844 L 27.664062 21.464844 L 27.664062 24.941406 L 13.292969 24.941406 L 13.292969 72.136719 C 13.445312 74.304688 14.28125 75.992188 15.800781 77.210938 C 17.320312 78.429688 19.140625 79.039062 21.269531 79.039062 C 22.789062 79.039062 24.316406 78.8125 25.855469 78.351562 C 27.394531 77.890625 28.566406 77.460938 29.363281 77.042969 C 30.164062 76.621094 30.652344 76.324219 30.84375 76.132812 Z M 32.332031 79.371094 " clip-rule="nonzero"/></clipPath><clipPath id="3347170e16"><rect x="0" width="33" y="0" height="83"/></clipPath><clipPath id="6f6f97d5ca"><path d="M 1195.144531 168.550781 L 1246.242188 168.550781 L 1246.242188 231.378906 L 1195.144531 231.378906 Z M 1195.144531 168.550781 " clip-rule="nonzero"/></clipPath><clipPath id="e72c98c21b"><path d="M 1195.144531 212.785156 C 1195.144531 207.539062 1197.496094 203.269531 1202.183594 199.992188 C 1206.871094 196.714844 1212.925781 195.066406 1220.332031 195.066406 C 1227.328125 195.066406 1233.863281 196.144531 1239.941406 198.3125 L 1239.941406 191.867188 C 1239.941406 185.902344 1238.191406 181.125 1234.691406 177.535156 C 1231.195312 173.949219 1226.566406 172.136719 1220.792969 172.136719 C 1214.746094 172.136719 1208.25 174.585938 1201.292969 179.496094 L 1199.363281 176.585938 C 1207.148438 171.230469 1214.375 168.550781 1221.019531 168.550781 C 1228.058594 168.550781 1233.625 170.667969 1237.75 174.90625 C 1241.878906 179.144531 1243.9375 184.871094 1243.9375 192.085938 L 1243.9375 224.117188 C 1243.9375 225.828125 1244.636719 226.6875 1246.046875 226.6875 L 1246.046875 230.164062 C 1244.949219 230.273438 1244.207031 230.246094 1243.828125 230.054688 C 1242.757812 229.824219 1241.910156 229.265625 1241.257812 228.375 C 1240.609375 227.488281 1240.25 226.445312 1240.179688 225.269531 L 1240.179688 220.019531 C 1237.410156 223.597656 1233.804688 226.367188 1229.375 228.347656 C 1224.949219 230.324219 1220.191406 231.3125 1215.09375 231.3125 C 1209.429688 231.3125 1204.691406 229.527344 1200.871094 225.957031 C 1197.054688 222.390625 1195.144531 217.980469 1195.144531 212.785156 M 1237.839844 218.023438 C 1239.25 216.273438 1239.949219 214.5625 1239.949219 212.894531 L 1239.949219 201.78125 C 1233.945312 199.460938 1227.488281 198.304688 1220.570312 198.304688 C 1214.113281 198.304688 1208.898438 199.601562 1204.921875 202.210938 C 1200.941406 204.820312 1198.964844 208.257812 1198.964844 212.554688 C 1198.964844 216.8125 1200.554688 220.441406 1203.722656 223.4375 C 1206.890625 226.4375 1210.835938 227.945312 1215.542969 227.945312 C 1220.292969 227.945312 1224.6875 227.035156 1228.738281 225.207031 C 1232.785156 223.378906 1235.8125 220.992188 1237.832031 218.023438 " clip-rule="nonzero"/></clipPath><clipPath id="0c17534ed6"><path d="M 0.144531 0.550781 L 51.050781 0.550781 L 51.050781 63.378906 L 0.144531 63.378906 Z M 0.144531 0.550781 " clip-rule="nonzero"/></clipPath><clipPath id="e50281a6db"><path d="M 0.144531 44.785156 C 0.144531 39.539062 2.496094 35.269531 7.183594 31.992188 C 11.871094 28.714844 17.925781 27.066406 25.332031 27.066406 C 32.328125 27.066406 38.863281 28.144531 44.941406 30.3125 L 44.941406 23.867188 C 44.941406 17.902344 43.191406 13.125 39.691406 9.535156 C 36.195312 5.949219 31.566406 4.136719 25.792969 4.136719 C 19.746094 4.136719 13.25 6.585938 6.292969 11.496094 L 4.363281 8.585938 C 12.148438 3.230469 19.375 0.550781 26.019531 0.550781 C 33.058594 0.550781 38.625 2.667969 42.75 6.90625 C 46.878906 11.144531 48.9375 16.871094 48.9375 24.085938 L 48.9375 56.117188 C 48.9375 57.828125 49.636719 58.6875 51.046875 58.6875 L 51.046875 62.164062 C 49.949219 62.273438 49.207031 62.246094 48.828125 62.054688 C 47.757812 61.824219 46.910156 61.265625 46.257812 60.375 C 45.609375 59.488281 45.25 58.445312 45.179688 57.269531 L 45.179688 52.019531 C 42.410156 55.597656 38.804688 58.367188 34.375 60.347656 C 29.949219 62.324219 25.191406 63.3125 20.09375 63.3125 C 14.429688 63.3125 9.691406 61.527344 5.871094 57.957031 C 2.054688 54.390625 0.144531 49.980469 0.144531 44.785156 M 42.839844 50.023438 C 44.25 48.273438 44.949219 46.5625 44.949219 44.894531 L 44.949219 33.78125 C 38.945312 31.460938 32.488281 30.304688 25.570312 30.304688 C 19.113281 30.304688 13.898438 31.601562 9.921875 34.210938 C 5.941406 36.820312 3.964844 40.257812 3.964844 44.554688 C 3.964844 48.8125 5.554688 52.441406 8.722656 55.4375 C 11.890625 58.4375 15.835938 59.945312 20.542969 59.945312 C 25.292969 59.945312 29.6875 59.035156 33.738281 57.207031 C 37.785156 55.378906 40.8125 52.992188 42.832031 50.023438 " clip-rule="nonzero"/></clipPath><clipPath id="d47c51afa5"><rect x="0" width="52" y="0" height="64"/></clipPath><clipPath id="1ac40f3032"><path d="M 1089.886719 305.476562 L 1123.507812 305.476562 L 1123.507812 398.5625 L 1089.886719 398.5625 Z M 1089.886719 305.476562 " clip-rule="nonzero"/></clipPath><clipPath id="9ee403a695"><path d="M 0.886719 0.476562 L 34.507812 0.476562 L 34.507812 93.5625 L 0.886719 93.5625 Z M 0.886719 0.476562 " clip-rule="nonzero"/></clipPath><clipPath id="b0b0c145b5"><rect x="0" width="35" y="0" height="94"/></clipPath><clipPath id="a8330c9554"><path d="M 1132.234375 269.300781 L 1188.9375 269.300781 L 1188.9375 400.324219 L 1132.234375 400.324219 Z M 1132.234375 269.300781 " clip-rule="nonzero"/></clipPath><clipPath id="dc9e232cb6"><path d="M 1132.671875 269.34375 L 1166.292969 269.34375 L 1166.292969 361.5625 C 1166.292969 368.648438 1169.203125 372.195312 1175.027344 372.195312 C 1177.847656 372.195312 1180.90625 371.308594 1184.191406 369.519531 L 1188.429688 394.324219 C 1184.511719 396.171875 1180.027344 397.621094 1174.988281 398.691406 C 1169.953125 399.761719 1165.175781 400.289062 1160.6875 400.289062 C 1151.703125 400.289062 1144.785156 397.972656 1139.9375 393.335938 C 1135.089844 388.699219 1132.683594 382.050781 1132.683594 373.414062 Z M 1132.671875 269.34375 " clip-rule="nonzero"/></clipPath><clipPath id="9a52913480"><path d="M 0.597656 0.300781 L 56.484375 0.300781 L 56.484375 131.324219 L 0.597656 131.324219 Z M 0.597656 0.300781 " clip-rule="nonzero"/></clipPath><clipPath id="c8e6fe4b61"><path d="M 0.671875 0.34375 L 34.292969 0.34375 L 34.292969 92.5625 C 34.292969 99.648438 37.203125 103.195312 43.027344 103.195312 C 45.847656 103.195312 48.90625 102.308594 52.191406 100.519531 L 56.429688 125.324219 C 52.511719 127.171875 48.027344 128.621094 42.988281 129.691406 C 37.953125 130.761719 33.175781 131.289062 28.6875 131.289062 C 19.703125 131.289062 12.785156 128.972656 7.9375 124.335938 C 3.089844 119.699219 0.683594 113.050781 0.683594 104.414062 Z M 0.671875 0.34375 " clip-rule="nonzero"/></clipPath><clipPath id="2d187ae9d4"><rect x="0" width="57" y="0" height="132"/></clipPath><clipPath id="f9faf38d47"><path d="M 1184 303.433594 L 1286 303.433594 L 1286 400.324219 L 1184 400.324219 Z M 1184 303.433594 " clip-rule="nonzero"/></clipPath><clipPath id="1fd0958299"><path d="M 1184.023438 351.96875 C 1184.023438 345.453125 1185.144531 339.324219 1187.390625 333.558594 C 1189.640625 327.792969 1192.839844 322.683594 1196.984375 318.21875 C 1201.132812 313.75 1206.492188 310.210938 1213.058594 307.582031 C 1219.621094 304.953125 1226.9375 303.65625 1235.015625 303.65625 C 1243.089844 303.65625 1250.394531 304.964844 1256.960938 307.582031 C 1263.527344 310.203125 1268.886719 313.75 1273.03125 318.21875 C 1277.179688 322.683594 1280.378906 327.800781 1282.628906 333.558594 C 1284.875 339.316406 1285.996094 345.453125 1285.996094 351.96875 C 1285.996094 358.425781 1284.875 364.53125 1282.628906 370.289062 C 1280.378906 376.042969 1277.179688 381.179688 1273.03125 385.667969 C 1268.886719 390.15625 1263.527344 393.722656 1256.960938 396.34375 C 1250.394531 398.960938 1243.078125 400.269531 1235.015625 400.269531 C 1226.949219 400.269531 1219.632812 398.960938 1213.058594 396.34375 C 1206.480469 393.722656 1201.132812 390.167969 1196.984375 385.667969 C 1192.839844 381.171875 1189.640625 376.042969 1187.390625 370.289062 C 1185.144531 364.53125 1184.023438 358.425781 1184.023438 351.96875 M 1223.132812 366.570312 C 1226.210938 370.199219 1230.175781 372.015625 1235.015625 372.015625 C 1239.851562 372.015625 1243.800781 370.199219 1246.859375 366.570312 C 1249.914062 362.941406 1251.433594 358.074219 1251.433594 351.96875 C 1251.433594 345.863281 1249.90625 341.003906 1246.859375 337.40625 C 1243.808594 333.808594 1239.863281 332.007812 1235.015625 332.007812 C 1230.117188 332.007812 1226.140625 333.808594 1223.082031 337.40625 C 1220.023438 341.003906 1218.503906 345.863281 1218.503906 351.96875 C 1218.503906 358.074219 1220.042969 362.941406 1223.132812 366.570312 " clip-rule="nonzero"/></clipPath><clipPath id="72b76533cd"><path d="M 0 0.433594 L 102 0.433594 L 102 97.324219 L 0 97.324219 Z M 0 0.433594 " clip-rule="nonzero"/></clipPath><clipPath id="7ce9594519"><path d="M 0.0234375 48.96875 C 0.0234375 42.453125 1.144531 36.324219 3.390625 30.558594 C 5.640625 24.792969 8.839844 19.683594 12.984375 15.21875 C 17.132812 10.75 22.492188 7.210938 29.058594 4.582031 C 35.621094 1.953125 42.9375 0.65625 51.015625 0.65625 C 59.089844 0.65625 66.394531 1.964844 72.960938 4.582031 C 79.527344 7.203125 84.886719 10.75 89.03125 15.21875 C 93.179688 19.683594 96.378906 24.800781 98.628906 30.558594 C 100.875 36.316406 101.996094 42.453125 101.996094 48.96875 C 101.996094 55.425781 100.875 61.53125 98.628906 67.289062 C 96.378906 73.042969 93.179688 78.179688 89.03125 82.667969 C 84.886719 87.15625 79.527344 90.722656 72.960938 93.34375 C 66.394531 95.960938 59.078125 97.269531 51.015625 97.269531 C 42.949219 97.269531 35.632812 95.960938 29.058594 93.34375 C 22.480469 90.722656 17.132812 87.167969 12.984375 82.667969 C 8.839844 78.171875 5.640625 73.042969 3.390625 67.289062 C 1.144531 61.53125 0.0234375 55.425781 0.0234375 48.96875 M 39.132812 63.570312 C 42.210938 67.199219 46.175781 69.015625 51.015625 69.015625 C 55.851562 69.015625 59.800781 67.199219 62.859375 63.570312 C 65.914062 59.941406 67.433594 55.074219 67.433594 48.96875 C 67.433594 42.863281 65.90625 38.003906 62.859375 34.40625 C 59.808594 30.808594 55.863281 29.007812 51.015625 29.007812 C 46.117188 29.007812 42.140625 30.808594 39.082031 34.40625 C 36.023438 38.003906 34.503906 42.863281 34.503906 48.96875 C 34.503906 55.074219 36.042969 59.941406 39.132812 63.570312 " clip-rule="nonzero"/></clipPath><clipPath id="5bbd05832a"><rect x="0" width="102" y="0" height="98"/></clipPath><clipPath id="fa02be439d"><path d="M 1089.886719 269.34375 L 1123.507812 269.34375 L 1123.507812 297.6875 L 1089.886719 297.6875 Z M 1089.886719 269.34375 " clip-rule="nonzero"/></clipPath><clipPath id="9acdc138a2"><path d="M 0.886719 0.34375 L 34.507812 0.34375 L 34.507812 28.6875 L 0.886719 28.6875 Z M 0.886719 0.34375 " clip-rule="nonzero"/></clipPath><clipPath id="3d31e82e6f"><rect x="0" width="35" y="0" height="29"/></clipPath><clipPath id="0ce492f65b"><path d="M 1264.742188 143.714844 L 1301.699219 143.714844 L 1301.699219 230.207031 L 1264.742188 230.207031 Z M 1264.742188 143.714844 " clip-rule="nonzero"/></clipPath><clipPath id="7340c7f32a"><path d="M 1273.453125 230.167969 L 1273.453125 172.941406 L 1264.785156 172.941406 L 1264.785156 169.464844 L 1273.453125 169.464844 L 1273.453125 167.246094 C 1273.453125 159.910156 1274.910156 154.160156 1277.839844 150.003906 C 1280.765625 145.847656 1284.835938 143.757812 1290.03125 143.757812 C 1292.269531 143.757812 1294.4375 144.128906 1296.527344 144.867188 C 1298.617188 145.605469 1300.285156 146.566406 1301.546875 147.746094 L 1299.605469 150.425781 C 1298.617188 149.515625 1297.289062 148.773438 1295.617188 148.226562 C 1293.949219 147.675781 1292.230469 147.394531 1290.492188 147.394531 C 1286.3125 147.394531 1283.085938 149.105469 1280.828125 152.523438 C 1278.566406 155.941406 1277.4375 160.847656 1277.4375 167.222656 L 1277.4375 169.441406 L 1295.167969 169.441406 L 1295.167969 172.941406 L 1277.4375 172.941406 L 1277.4375 230.167969 Z M 1273.453125 230.167969 " clip-rule="nonzero"/></clipPath><clipPath id="b834e53f0b"><path d="M 0.761719 0.714844 L 37.699219 0.714844 L 37.699219 87.207031 L 0.761719 87.207031 Z M 0.761719 0.714844 " clip-rule="nonzero"/></clipPath><clipPath id="505b2b322d"><path d="M 9.453125 87.167969 L 9.453125 29.941406 L 0.785156 29.941406 L 0.785156 26.464844 L 9.453125 26.464844 L 9.453125 24.246094 C 9.453125 16.910156 10.910156 11.160156 13.839844 7.003906 C 16.765625 2.847656 20.835938 0.757812 26.03125 0.757812 C 28.269531 0.757812 30.4375 1.128906 32.527344 1.867188 C 34.617188 2.605469 36.285156 3.566406 37.546875 4.746094 L 35.605469 7.425781 C 34.617188 6.515625 33.289062 5.773438 31.617188 5.226562 C 29.949219 4.675781 28.230469 4.394531 26.492188 4.394531 C 22.3125 4.394531 19.085938 6.105469 16.828125 9.523438 C 14.566406 12.941406 13.4375 17.847656 13.4375 24.222656 L 13.4375 26.441406 L 31.167969 26.441406 L 31.167969 29.941406 L 13.4375 29.941406 L 13.4375 87.167969 Z M 9.453125 87.167969 " clip-rule="nonzero"/></clipPath><clipPath id="86e7e10959"><rect x="0" width="38" y="0" height="88"/></clipPath><clipPath id="23a54c29c9"><path d="M 1309 168.480469 L 1368 168.480469 L 1368 231.347656 L 1309 231.347656 Z M 1309 168.480469 " clip-rule="nonzero"/></clipPath><clipPath id="7ee1a1f8f6"><path d="M 1313.058594 215.625 C 1310.511719 210.839844 1309.242188 205.652344 1309.242188 200.066406 C 1309.242188 194.480469 1310.539062 189.261719 1313.148438 184.414062 C 1315.757812 179.566406 1319.296875 175.710938 1323.78125 172.839844 C 1328.269531 169.972656 1333.148438 168.535156 1338.433594 168.535156 C 1343.75 168.535156 1348.667969 169.972656 1353.164062 172.839844 C 1357.664062 175.710938 1361.222656 179.566406 1363.828125 184.414062 C 1366.4375 189.261719 1367.738281 194.480469 1367.738281 200.066406 C 1367.738281 205.652344 1366.457031 210.839844 1363.890625 215.625 C 1361.320312 220.414062 1357.78125 224.222656 1353.253906 227.058594 C 1348.726562 229.898438 1343.792969 231.308594 1338.433594 231.308594 C 1333.078125 231.308594 1328.148438 229.886719 1323.640625 227.058594 C 1319.136719 224.230469 1315.617188 220.421875 1313.070312 215.625 M 1338.304688 227.597656 C 1341.722656 227.597656 1344.992188 226.859375 1348.109375 225.378906 C 1351.226562 223.902344 1353.914062 221.914062 1356.175781 219.425781 C 1358.433594 216.9375 1360.242188 213.988281 1361.589844 210.589844 C 1362.941406 207.191406 1363.609375 203.644531 1363.609375 199.957031 C 1363.609375 195.019531 1362.480469 190.421875 1360.222656 186.164062 C 1357.960938 181.90625 1354.894531 178.527344 1351.015625 176.019531 C 1347.140625 173.511719 1342.941406 172.261719 1338.425781 172.261719 C 1333.9375 172.261719 1329.757812 173.53125 1325.882812 176.050781 C 1322.003906 178.566406 1318.925781 181.984375 1316.648438 186.285156 C 1314.367188 190.582031 1313.226562 195.21875 1313.226562 200.183594 C 1313.226562 207.710938 1315.6875 214.15625 1320.613281 219.535156 C 1325.542969 224.910156 1331.4375 227.597656 1338.3125 227.597656 " clip-rule="nonzero"/></clipPath><clipPath id="8097bd45ed"><path d="M 0.136719 0.480469 L 58.902344 0.480469 L 58.902344 63.347656 L 0.136719 63.347656 Z M 0.136719 0.480469 " clip-rule="nonzero"/></clipPath><clipPath id="346aad4767"><path d="M 4.058594 47.625 C 1.511719 42.839844 0.242188 37.652344 0.242188 32.066406 C 0.242188 26.480469 1.539062 21.261719 4.148438 16.414062 C 6.757812 11.566406 10.296875 7.710938 14.78125 4.839844 C 19.269531 1.972656 24.148438 0.535156 29.433594 0.535156 C 34.75 0.535156 39.667969 1.972656 44.164062 4.839844 C 48.664062 7.710938 52.222656 11.566406 54.828125 16.414062 C 57.4375 21.261719 58.738281 26.480469 58.738281 32.066406 C 58.738281 37.652344 57.457031 42.839844 54.890625 47.625 C 52.320312 52.414062 48.78125 56.222656 44.253906 59.058594 C 39.726562 61.898438 34.792969 63.308594 29.433594 63.308594 C 24.078125 63.308594 19.148438 61.886719 14.640625 59.058594 C 10.136719 56.230469 6.617188 52.421875 4.070312 47.625 M 29.304688 59.597656 C 32.722656 59.597656 35.992188 58.859375 39.109375 57.378906 C 42.226562 55.902344 44.914062 53.914062 47.175781 51.425781 C 49.433594 48.9375 51.242188 45.988281 52.589844 42.589844 C 53.941406 39.191406 54.609375 35.644531 54.609375 31.957031 C 54.609375 27.019531 53.480469 22.421875 51.222656 18.164062 C 48.960938 13.90625 45.894531 10.527344 42.015625 8.019531 C 38.140625 5.511719 33.941406 4.261719 29.425781 4.261719 C 24.9375 4.261719 20.757812 5.53125 16.882812 8.050781 C 13.003906 10.566406 9.925781 13.984375 7.648438 18.285156 C 5.367188 22.582031 4.226562 27.21875 4.226562 32.183594 C 4.226562 39.710938 6.6875 46.15625 11.613281 51.535156 C 16.542969 56.910156 22.4375 59.597656 29.3125 59.597656 " clip-rule="nonzero"/></clipPath><clipPath id="0af39c7767"><rect x="0" width="59" y="0" height="64"/></clipPath><clipPath id="9ae6321705"><path d="M 1391.644531 169.464844 L 1418.832031 169.464844 L 1418.832031 230.210938 L 1391.644531 230.210938 Z M 1391.644531 169.464844 " clip-rule="nonzero"/></clipPath><clipPath id="140caa4a26"><path d="M 1418.828125 173.222656 C 1413.242188 173.453125 1408.382812 175.222656 1404.265625 178.550781 C 1400.148438 181.878906 1397.261719 186.355469 1395.632812 191.980469 L 1395.632812 230.167969 L 1391.644531 230.167969 L 1391.644531 169.464844 L 1395.460938 169.464844 L 1395.460938 184.855469 C 1397.550781 180.597656 1400.371094 177.101562 1403.925781 174.363281 C 1407.484375 171.625 1411.210938 170.035156 1415.121094 169.574219 C 1416.148438 169.503906 1417.390625 169.464844 1418.828125 169.464844 Z M 1418.828125 173.222656 " clip-rule="nonzero"/></clipPath><clipPath id="a03a9d66ec"><path d="M 0.644531 0.464844 L 27.832031 0.464844 L 27.832031 61.210938 L 0.644531 61.210938 Z M 0.644531 0.464844 " clip-rule="nonzero"/></clipPath><clipPath id="d289a2cc3c"><path d="M 27.828125 4.222656 C 22.242188 4.453125 17.382812 6.222656 13.265625 9.550781 C 9.148438 12.878906 6.261719 17.355469 4.632812 22.980469 L 4.632812 61.167969 L 0.644531 61.167969 L 0.644531 0.464844 L 4.460938 0.464844 L 4.460938 15.855469 C 6.550781 11.597656 9.371094 8.101562 12.925781 5.363281 C 16.484375 2.625 20.210938 1.035156 24.121094 0.574219 C 25.148438 0.503906 26.390625 0.464844 27.828125 0.464844 Z M 27.828125 4.222656 " clip-rule="nonzero"/></clipPath><clipPath id="a8d7286e61"><rect x="0" width="28" y="0" height="62"/></clipPath><clipPath id="acb39ac937"><path d="M 1439.570312 168.550781 L 1527.898438 168.550781 L 1527.898438 230.164062 L 1439.570312 230.164062 Z M 1439.570312 168.550781 " clip-rule="nonzero"/></clipPath><clipPath id="c288cb8e80"><path d="M 1527.6875 230.164062 L 1523.699219 230.164062 L 1523.699219 196.304688 C 1523.699219 188.140625 1522.433594 182.082031 1519.914062 178.15625 C 1517.394531 174.226562 1513.515625 172.257812 1508.320312 172.257812 C 1503.003906 172.257812 1498.296875 174.105469 1494.207031 177.816406 C 1490.121094 181.523438 1487.242188 186.359375 1485.574219 192.316406 L 1485.574219 230.164062 L 1481.574219 230.164062 L 1481.574219 196.304688 C 1481.574219 188.019531 1480.335938 181.941406 1477.867188 178.066406 C 1475.398438 174.1875 1471.539062 172.257812 1466.304688 172.257812 C 1461.066406 172.257812 1456.378906 174.078125 1452.28125 177.726562 C 1448.183594 181.375 1445.265625 186.199219 1443.554688 192.207031 L 1443.554688 230.164062 L 1439.570312 230.164062 L 1439.570312 169.460938 L 1443.386719 169.460938 L 1443.386719 184.621094 C 1445.976562 179.535156 1449.304688 175.585938 1453.390625 172.769531 C 1457.480469 169.949219 1461.9375 168.550781 1466.753906 168.550781 C 1471.769531 168.550781 1475.917969 170.097656 1479.207031 173.199219 C 1482.496094 176.296875 1484.464844 180.421875 1485.101562 185.589844 C 1491.039062 174.238281 1499.035156 168.550781 1509.109375 168.550781 C 1515.457031 168.550781 1520.144531 170.839844 1523.160156 175.417969 C 1526.179688 179.992188 1527.6875 186.808594 1527.6875 195.84375 Z M 1527.6875 230.164062 " clip-rule="nonzero"/></clipPath><clipPath id="8fdd128d32"><path d="M 0.570312 0.550781 L 88.890625 0.550781 L 88.890625 62.164062 L 0.570312 62.164062 Z M 0.570312 0.550781 " clip-rule="nonzero"/></clipPath><clipPath id="dc24de610c"><path d="M 88.6875 62.164062 L 84.699219 62.164062 L 84.699219 28.304688 C 84.699219 20.140625 83.433594 14.082031 80.914062 10.15625 C 78.394531 6.226562 74.515625 4.257812 69.320312 4.257812 C 64.003906 4.257812 59.296875 6.105469 55.207031 9.816406 C 51.121094 13.523438 48.242188 18.359375 46.574219 24.316406 L 46.574219 62.164062 L 42.574219 62.164062 L 42.574219 28.304688 C 42.574219 20.019531 41.335938 13.941406 38.867188 10.066406 C 36.398438 6.1875 32.539062 4.257812 27.304688 4.257812 C 22.066406 4.257812 17.378906 6.078125 13.28125 9.726562 C 9.183594 13.375 6.265625 18.199219 4.554688 24.207031 L 4.554688 62.164062 L 0.570312 62.164062 L 0.570312 1.460938 L 4.386719 1.460938 L 4.386719 16.621094 C 6.976562 11.535156 10.304688 7.585938 14.390625 4.769531 C 18.480469 1.949219 22.9375 0.550781 27.753906 0.550781 C 32.769531 0.550781 36.917969 2.097656 40.207031 5.199219 C 43.496094 8.296875 45.464844 12.421875 46.101562 17.589844 C 52.039062 6.238281 60.035156 0.550781 70.109375 0.550781 C 76.457031 0.550781 81.144531 2.839844 84.160156 7.417969 C 87.179688 11.992188 88.6875 18.808594 88.6875 27.84375 Z M 88.6875 62.164062 " clip-rule="nonzero"/></clipPath><clipPath id="e67f54bb5c"><rect x="0" width="89" y="0" height="63"/></clipPath><clipPath id="d8aad8a2d5"><path d="M 1550.078125 168.550781 L 1601 168.550781 L 1601 231.378906 L 1550.078125 231.378906 Z M 1550.078125 168.550781 " clip-rule="nonzero"/></clipPath><clipPath id="dce230d246"><path d="M 1550.078125 212.785156 C 1550.078125 207.539062 1552.425781 203.269531 1557.113281 199.992188 C 1561.800781 196.714844 1567.859375 195.066406 1575.265625 195.066406 C 1582.261719 195.066406 1588.796875 196.144531 1594.871094 198.3125 L 1594.871094 191.867188 C 1594.871094 185.902344 1593.125 181.125 1589.625 177.535156 C 1586.128906 173.949219 1581.5 172.136719 1575.722656 172.136719 C 1569.675781 172.136719 1563.179688 174.585938 1556.226562 179.496094 L 1554.296875 176.585938 C 1562.082031 171.230469 1569.308594 168.550781 1575.953125 168.550781 C 1582.988281 168.550781 1588.554688 170.667969 1592.683594 174.90625 C 1596.8125 179.144531 1598.871094 184.871094 1598.871094 192.085938 L 1598.871094 224.117188 C 1598.871094 225.828125 1599.570312 226.6875 1600.980469 226.6875 L 1600.980469 230.164062 C 1599.878906 230.273438 1599.140625 230.246094 1598.761719 230.054688 C 1597.691406 229.824219 1596.839844 229.265625 1596.191406 228.375 C 1595.542969 227.488281 1595.183594 226.445312 1595.113281 225.269531 L 1595.113281 220.019531 C 1592.34375 223.597656 1588.734375 226.367188 1584.308594 228.347656 C 1579.882812 230.324219 1575.125 231.3125 1570.027344 231.3125 C 1564.359375 231.3125 1559.621094 229.527344 1555.804688 225.957031 C 1551.988281 222.390625 1550.078125 217.980469 1550.078125 212.785156 M 1592.773438 218.023438 C 1594.183594 216.273438 1594.882812 214.5625 1594.882812 212.894531 L 1594.882812 201.78125 C 1588.875 199.460938 1582.417969 198.304688 1575.503906 198.304688 C 1569.046875 198.304688 1563.832031 199.601562 1559.851562 202.210938 C 1555.875 204.820312 1553.894531 208.257812 1553.894531 212.554688 C 1553.894531 216.8125 1555.484375 220.441406 1558.652344 223.4375 C 1561.820312 226.4375 1565.769531 227.945312 1570.476562 227.945312 C 1575.222656 227.945312 1579.621094 227.035156 1583.667969 225.207031 C 1587.714844 223.378906 1590.746094 220.992188 1592.765625 218.023438 " clip-rule="nonzero"/></clipPath><clipPath id="e1072b3a1c"><path d="M 0.078125 0.550781 L 51 0.550781 L 51 63.378906 L 0.078125 63.378906 Z M 0.078125 0.550781 " clip-rule="nonzero"/></clipPath><clipPath id="fd94802f1f"><path d="M 0.078125 44.785156 C 0.078125 39.539062 2.425781 35.269531 7.113281 31.992188 C 11.800781 28.714844 17.859375 27.066406 25.265625 27.066406 C 32.261719 27.066406 38.796875 28.144531 44.871094 30.3125 L 44.871094 23.867188 C 44.871094 17.902344 43.125 13.125 39.625 9.535156 C 36.128906 5.949219 31.5 4.136719 25.722656 4.136719 C 19.675781 4.136719 13.179688 6.585938 6.226562 11.496094 L 4.296875 8.585938 C 12.082031 3.230469 19.308594 0.550781 25.953125 0.550781 C 32.988281 0.550781 38.554688 2.667969 42.683594 6.90625 C 46.8125 11.144531 48.871094 16.871094 48.871094 24.085938 L 48.871094 56.117188 C 48.871094 57.828125 49.570312 58.6875 50.980469 58.6875 L 50.980469 62.164062 C 49.878906 62.273438 49.140625 62.246094 48.761719 62.054688 C 47.691406 61.824219 46.839844 61.265625 46.191406 60.375 C 45.542969 59.488281 45.183594 58.445312 45.113281 57.269531 L 45.113281 52.019531 C 42.34375 55.597656 38.734375 58.367188 34.308594 60.347656 C 29.882812 62.324219 25.125 63.3125 20.027344 63.3125 C 14.359375 63.3125 9.621094 61.527344 5.804688 57.957031 C 1.988281 54.390625 0.078125 49.980469 0.078125 44.785156 M 42.773438 50.023438 C 44.183594 48.273438 44.882812 46.5625 44.882812 44.894531 L 44.882812 33.78125 C 38.875 31.460938 32.417969 30.304688 25.503906 30.304688 C 19.046875 30.304688 13.832031 31.601562 9.851562 34.210938 C 5.875 36.820312 3.894531 40.257812 3.894531 44.554688 C 3.894531 48.8125 5.484375 52.441406 8.652344 55.4375 C 11.820312 58.4375 15.769531 59.945312 20.476562 59.945312 C 25.222656 59.945312 29.621094 59.035156 33.667969 57.207031 C 37.714844 55.378906 40.746094 52.992188 42.765625 50.023438 " clip-rule="nonzero"/></clipPath><clipPath id="e33387cb2c"><rect x="0" width="51" y="0" height="64"/></clipPath><clipPath id="3c6c2f4250"><path d="M 1325.433594 272.476562 L 1422.304688 272.476562 L 1422.304688 399 L 1325.433594 399 Z M 1325.433594 272.476562 " clip-rule="nonzero"/></clipPath><clipPath id="28b1001e2d"><path d="M 1325.6875 398.550781 L 1325.6875 272.882812 L 1379.878906 272.882812 C 1385.816406 272.882812 1391.460938 274.152344 1396.820312 276.691406 C 1402.175781 279.230469 1406.671875 282.539062 1410.300781 286.636719 C 1413.929688 290.734375 1416.808594 295.382812 1418.945312 300.597656 C 1421.085938 305.816406 1422.144531 311.101562 1422.144531 316.460938 C 1422.144531 322.046875 1421.132812 327.460938 1419.117188 332.710938 C 1417.097656 337.957031 1414.320312 342.59375 1410.769531 346.621094 C 1407.222656 350.648438 1402.835938 353.898438 1397.589844 356.347656 C 1392.339844 358.796875 1386.722656 360.023438 1380.738281 360.023438 L 1360.167969 360.023438 L 1360.167969 398.570312 Z M 1360.167969 329.839844 L 1378.410156 329.839844 C 1380.828125 329.839844 1382.886719 328.773438 1384.585938 326.644531 C 1386.285156 324.515625 1387.132812 321.105469 1387.132812 316.4375 C 1387.132812 311.710938 1386.164062 308.285156 1384.234375 306.15625 C 1382.308594 304.027344 1380.066406 302.957031 1377.539062 302.957031 L 1360.167969 302.957031 Z M 1360.167969 329.839844 " clip-rule="nonzero"/></clipPath><clipPath id="2d8656a19f"><path d="M 0.6875 0.722656 L 97.304688 0.722656 L 97.304688 126.652344 L 0.6875 126.652344 Z M 0.6875 0.722656 " clip-rule="nonzero"/></clipPath><clipPath id="3ba260b6ad"><path d="M 0.6875 126.550781 L 0.6875 0.882812 L 54.878906 0.882812 C 60.816406 0.882812 66.460938 2.152344 71.820312 4.691406 C 77.175781 7.230469 81.671875 10.539062 85.300781 14.636719 C 88.929688 18.734375 91.808594 23.382812 93.945312 28.597656 C 96.085938 33.816406 97.144531 39.101562 97.144531 44.460938 C 97.144531 50.046875 96.132812 55.460938 94.117188 60.710938 C 92.097656 65.957031 89.320312 70.59375 85.769531 74.621094 C 82.222656 78.648438 77.835938 81.898438 72.589844 84.347656 C 67.339844 86.796875 61.722656 88.023438 55.738281 88.023438 L 35.167969 88.023438 L 35.167969 126.570312 Z M 35.167969 57.839844 L 53.410156 57.839844 C 55.828125 57.839844 57.886719 56.773438 59.585938 54.644531 C 61.285156 52.515625 62.132812 49.105469 62.132812 44.4375 C 62.132812 39.710938 61.164062 36.285156 59.234375 34.15625 C 57.308594 32.027344 55.066406 30.957031 52.539062 30.957031 L 35.167969 30.957031 Z M 35.167969 57.839844 " clip-rule="nonzero"/></clipPath><clipPath id="3296b4492a"><rect x="0" width="98" y="0" height="127"/></clipPath><clipPath id="00dd8d77a5"><path d="M 1419 303.636719 L 1521.203125 303.636719 L 1521.203125 400.507812 L 1419 400.507812 Z M 1419 303.636719 " clip-rule="nonzero"/></clipPath><clipPath id="f68fef2669"><path d="M 1470.207031 400.28125 C 1463.808594 400.28125 1457.863281 399.441406 1452.355469 397.773438 C 1446.851562 396.105469 1442.101562 393.816406 1438.09375 390.898438 C 1434.085938 387.976562 1430.648438 384.558594 1427.769531 380.613281 C 1424.890625 376.664062 1422.742188 372.378906 1421.335938 367.730469 C 1419.925781 363.082031 1419.214844 358.265625 1419.214844 353.257812 C 1419.214844 346.460938 1420.324219 340.09375 1422.542969 334.160156 C 1424.761719 328.222656 1427.972656 322.984375 1432.179688 318.429688 C 1436.386719 313.871094 1441.753906 310.273438 1448.300781 307.625 C 1454.84375 304.976562 1462.140625 303.644531 1470.207031 303.644531 C 1478.273438 303.644531 1485.589844 304.957031 1492.152344 307.574219 C 1498.71875 310.191406 1504.078125 313.742188 1508.226562 318.207031 C 1512.371094 322.675781 1515.570312 327.78125 1517.820312 333.550781 C 1520.066406 339.316406 1521.1875 345.453125 1521.1875 351.957031 C 1521.1875 355.355469 1520.867188 358.785156 1520.238281 362.242188 L 1454.996094 362.242188 C 1455.34375 366.910156 1457.074219 370.410156 1460.183594 372.746094 C 1463.289062 375.085938 1466.976562 376.246094 1471.246094 376.246094 C 1474.992188 376.246094 1478.472656 375.375 1481.699219 373.65625 C 1484.929688 371.9375 1487.058594 369.648438 1488.097656 366.832031 L 1516.53125 375.046875 C 1512.550781 382.769531 1506.574219 388.90625 1498.589844 393.457031 C 1490.605469 398.003906 1481.140625 400.28125 1470.195312 400.28125 M 1454.207031 342.113281 L 1485.058594 342.113281 C 1484.539062 337.617188 1482.910156 334.078125 1480.171875 331.480469 C 1477.433594 328.882812 1473.933594 327.59375 1469.667969 327.59375 C 1465.398438 327.59375 1461.890625 328.882812 1459.121094 331.480469 C 1456.355469 334.078125 1454.714844 337.617188 1454.195312 342.113281 " clip-rule="nonzero"/></clipPath><clipPath id="338d7bbc48"><path d="M 0 0.636719 L 102.203125 0.636719 L 102.203125 97.332031 L 0 97.332031 Z M 0 0.636719 " clip-rule="nonzero"/></clipPath><clipPath id="d1222a1f72"><path d="M 51.207031 97.28125 C 44.808594 97.28125 38.863281 96.441406 33.355469 94.773438 C 27.851562 93.105469 23.101562 90.816406 19.09375 87.898438 C 15.085938 84.976562 11.648438 81.558594 8.769531 77.613281 C 5.890625 73.664062 3.742188 69.378906 2.335938 64.730469 C 0.925781 60.082031 0.214844 55.265625 0.214844 50.257812 C 0.214844 43.460938 1.324219 37.09375 3.542969 31.160156 C 5.761719 25.222656 8.972656 19.984375 13.179688 15.429688 C 17.386719 10.871094 22.753906 7.273438 29.300781 4.625 C 35.84375 1.976562 43.140625 0.644531 51.207031 0.644531 C 59.273438 0.644531 66.589844 1.957031 73.152344 4.574219 C 79.71875 7.191406 85.078125 10.742188 89.226562 15.207031 C 93.371094 19.675781 96.570312 24.78125 98.820312 30.550781 C 101.066406 36.316406 102.1875 42.453125 102.1875 48.957031 C 102.1875 52.355469 101.867188 55.785156 101.238281 59.242188 L 35.996094 59.242188 C 36.34375 63.910156 38.074219 67.410156 41.183594 69.746094 C 44.289062 72.085938 47.976562 73.246094 52.246094 73.246094 C 55.992188 73.246094 59.472656 72.375 62.699219 70.65625 C 65.929688 68.9375 68.058594 66.648438 69.097656 63.832031 L 97.53125 72.046875 C 93.550781 79.769531 87.574219 85.90625 79.589844 90.457031 C 71.605469 95.003906 62.140625 97.28125 51.195312 97.28125 M 35.207031 39.113281 L 66.058594 39.113281 C 65.539062 34.617188 63.910156 31.078125 61.171875 28.480469 C 58.433594 25.882812 54.933594 24.59375 50.667969 24.59375 C 46.398438 24.59375 42.890625 25.882812 40.121094 28.480469 C 37.355469 31.078125 35.714844 34.617188 35.195312 39.113281 " clip-rule="nonzero"/></clipPath><clipPath id="3fabd14ded"><rect x="0" width="103" y="0" height="98"/></clipPath><clipPath id="3baada6640"><path d="M 1614.6875 303.636719 L 1714 303.636719 L 1714 400.507812 L 1614.6875 400.507812 Z M 1614.6875 303.636719 " clip-rule="nonzero"/></clipPath><clipPath id="c56365e20d"><path d="M 1614.894531 370.378906 C 1614.894531 361.042969 1618.652344 353.40625 1626.167969 347.472656 C 1633.683594 341.535156 1643.328125 338.566406 1655.082031 338.566406 C 1662.746094 338.566406 1668.992188 339.746094 1673.839844 342.105469 L 1673.839844 339.265625 C 1673.839844 334.886719 1672.5625 331.628906 1669.992188 329.5 C 1667.425781 327.371094 1663.347656 326.304688 1657.761719 326.304688 C 1652.742188 326.304688 1647.996094 327.121094 1643.496094 328.773438 C 1639 330.421875 1634.132812 332.960938 1628.894531 336.417969 L 1619.132812 315.5 C 1631.40625 307.605469 1645.375 303.65625 1661.046875 303.65625 C 1675.96875 303.65625 1687.441406 307.023438 1695.449219 313.769531 C 1703.453125 320.515625 1707.460938 330.359375 1707.460938 343.332031 L 1707.460938 361.394531 C 1707.460938 364.5625 1707.921875 366.78125 1708.839844 368.050781 C 1709.761719 369.320312 1711.429688 370.039062 1713.847656 370.207031 L 1713.847656 398.550781 C 1708.660156 399.703125 1703.933594 400.28125 1699.675781 400.28125 C 1688.210938 400.28125 1681.617188 395.984375 1679.886719 387.398438 L 1679.109375 384.03125 C 1670.640625 394.863281 1660.097656 400.28125 1647.476562 400.28125 C 1638.140625 400.28125 1630.375 397.441406 1624.179688 391.765625 C 1617.980469 386.089844 1614.894531 378.964844 1614.894531 370.378906 M 1669.433594 372.707031 C 1672.371094 370.808594 1673.839844 368.621094 1673.839844 366.140625 L 1673.839844 359.234375 C 1669.28125 357.625 1664.964844 356.816406 1660.878906 356.816406 C 1656.839844 356.816406 1653.453125 357.824219 1650.722656 359.84375 C 1647.996094 361.863281 1646.617188 364.402344 1646.617188 367.449219 C 1646.617188 369.988281 1647.636719 372.085938 1649.683594 373.757812 C 1651.734375 375.425781 1654.339844 376.265625 1657.511719 376.265625 C 1661.949219 376.265625 1665.925781 375.085938 1669.433594 372.71875 " clip-rule="nonzero"/></clipPath><clipPath id="d225c57893"><path d="M 0.722656 0.636719 L 100 0.636719 L 100 97.332031 L 0.722656 97.332031 Z M 0.722656 0.636719 " clip-rule="nonzero"/></clipPath><clipPath id="8253af761e"><path d="M 0.894531 67.378906 C 0.894531 58.042969 4.652344 50.40625 12.167969 44.472656 C 19.683594 38.535156 29.328125 35.566406 41.082031 35.566406 C 48.746094 35.566406 54.992188 36.746094 59.839844 39.105469 L 59.839844 36.265625 C 59.839844 31.886719 58.5625 28.628906 55.992188 26.5 C 53.425781 24.371094 49.347656 23.304688 43.761719 23.304688 C 38.742188 23.304688 33.996094 24.121094 29.496094 25.773438 C 25 27.421875 20.132812 29.960938 14.894531 33.417969 L 5.132812 12.5 C 17.40625 4.605469 31.375 0.65625 47.046875 0.65625 C 61.96875 0.65625 73.441406 4.023438 81.449219 10.769531 C 89.453125 17.515625 93.460938 27.359375 93.460938 40.332031 L 93.460938 58.394531 C 93.460938 61.5625 93.921875 63.78125 94.839844 65.050781 C 95.761719 66.320312 97.429688 67.039062 99.847656 67.207031 L 99.847656 95.550781 C 94.660156 96.703125 89.933594 97.28125 85.675781 97.28125 C 74.210938 97.28125 67.617188 92.984375 65.886719 84.398438 L 65.109375 81.03125 C 56.640625 91.863281 46.097656 97.28125 33.476562 97.28125 C 24.140625 97.28125 16.375 94.441406 10.179688 88.765625 C 3.980469 83.089844 0.894531 75.964844 0.894531 67.378906 M 55.433594 69.707031 C 58.371094 67.808594 59.839844 65.621094 59.839844 63.140625 L 59.839844 56.234375 C 55.28125 54.625 50.964844 53.816406 46.878906 53.816406 C 42.839844 53.816406 39.453125 54.824219 36.722656 56.84375 C 33.996094 58.863281 32.617188 61.402344 32.617188 64.449219 C 32.617188 66.988281 33.636719 69.085938 35.683594 70.757812 C 37.734375 72.425781 40.339844 73.265625 43.511719 73.265625 C 47.949219 73.265625 51.925781 72.085938 55.433594 69.71875 " clip-rule="nonzero"/></clipPath><clipPath id="94016ba8ec"><rect x="0" width="100" y="0" height="98"/></clipPath><clipPath id="a5f1bfaece"><path d="M 1718.328125 303.636719 L 1813 303.636719 L 1813 399 L 1718.328125 399 Z M 1718.328125 303.636719 " clip-rule="nonzero"/></clipPath><clipPath id="457d436699"><path d="M 1812.5625 398.550781 L 1778.941406 398.550781 L 1778.941406 346.183594 C 1778.941406 341.863281 1777.960938 338.585938 1776.003906 336.367188 C 1774.042969 334.148438 1771.59375 333.039062 1768.65625 333.039062 C 1765.71875 333.039062 1762.660156 334.308594 1759.492188 336.847656 C 1756.324219 339.386719 1753.984375 342.554688 1752.496094 346.351562 L 1752.496094 398.550781 L 1718.875 398.550781 L 1718.875 305.476562 L 1749.207031 305.476562 L 1749.207031 319.21875 C 1752.484375 314.152344 1757.125 310.292969 1763.121094 307.632812 C 1769.117188 304.976562 1776.140625 303.65625 1784.207031 303.65625 C 1788.246094 303.65625 1791.851562 304.175781 1795.050781 305.214844 C 1798.25 306.253906 1800.839844 307.703125 1802.828125 309.582031 C 1804.816406 311.460938 1806.484375 313.472656 1807.84375 315.628906 C 1809.203125 317.789062 1810.203125 320.238281 1810.863281 322.976562 C 1811.523438 325.714844 1811.972656 328.171875 1812.203125 330.359375 C 1812.433594 332.550781 1812.550781 334.859375 1812.550781 337.277344 Z M 1812.5625 398.550781 " clip-rule="nonzero"/></clipPath><clipPath id="38e098e700"><path d="M 0.820312 0.636719 L 94.609375 0.636719 L 94.609375 95.652344 L 0.820312 95.652344 Z M 0.820312 0.636719 " clip-rule="nonzero"/></clipPath><clipPath id="dc9bd111da"><path d="M 94.5625 95.550781 L 60.941406 95.550781 L 60.941406 43.183594 C 60.941406 38.863281 59.960938 35.585938 58.003906 33.367188 C 56.042969 31.148438 53.59375 30.039062 50.65625 30.039062 C 47.71875 30.039062 44.660156 31.308594 41.492188 33.847656 C 38.324219 36.386719 35.984375 39.554688 34.496094 43.351562 L 34.496094 95.550781 L 0.875 95.550781 L 0.875 2.476562 L 31.207031 2.476562 L 31.207031 16.21875 C 34.484375 11.152344 39.125 7.292969 45.121094 4.632812 C 51.117188 1.976562 58.140625 0.65625 66.207031 0.65625 C 70.246094 0.65625 73.851562 1.175781 77.050781 2.214844 C 80.25 3.253906 82.839844 4.703125 84.828125 6.582031 C 86.816406 8.460938 88.484375 10.472656 89.84375 12.628906 C 91.203125 14.789062 92.203125 17.238281 92.863281 19.976562 C 93.523438 22.714844 93.972656 25.171875 94.203125 27.359375 C 94.433594 29.550781 94.550781 31.859375 94.550781 34.277344 Z M 94.5625 95.550781 " clip-rule="nonzero"/></clipPath><clipPath id="454521b4fe"><rect x="0" width="95" y="0" height="96"/></clipPath><clipPath id="abde49e8c6"><path d="M 1821.296875 269.089844 L 1915.457031 269.089844 L 1915.457031 399 L 1821.296875 399 Z M 1821.296875 269.089844 " clip-rule="nonzero"/></clipPath><clipPath id="399210f87f"><path d="M 1915.332031 398.550781 L 1881.710938 398.550781 L 1881.710938 346.183594 C 1881.710938 341.804688 1880.734375 338.515625 1878.773438 336.328125 C 1876.816406 334.140625 1874.195312 333.039062 1870.910156 333.039062 C 1868.488281 333.039062 1865.652344 334.308594 1862.394531 336.847656 C 1859.136719 339.386719 1856.757812 342.554688 1855.265625 346.351562 L 1855.265625 398.550781 L 1821.648438 398.550781 L 1821.648438 269.347656 L 1855.265625 269.347656 L 1855.265625 319.21875 C 1858.554688 314.199219 1862.851562 310.363281 1868.191406 307.683594 C 1873.527344 305.003906 1879.492188 303.667969 1886.128906 303.667969 C 1891.148438 303.667969 1895.496094 304.414062 1899.183594 305.914062 C 1902.871094 307.414062 1905.71875 309.273438 1907.738281 311.492188 C 1909.757812 313.710938 1911.363281 316.429688 1912.574219 319.65625 C 1913.785156 322.886719 1914.542969 325.824219 1914.863281 328.472656 C 1915.183594 331.121094 1915.34375 334.058594 1915.34375 337.289062 Z M 1915.332031 398.550781 " clip-rule="nonzero"/></clipPath><clipPath id="4d29855324"><path d="M 0.484375 0.125 L 94.457031 0.125 L 94.457031 129.652344 L 0.484375 129.652344 Z M 0.484375 0.125 " clip-rule="nonzero"/></clipPath><clipPath id="09ef9f6e74"><path d="M 94.332031 129.550781 L 60.710938 129.550781 L 60.710938 77.183594 C 60.710938 72.804688 59.734375 69.515625 57.773438 67.328125 C 55.816406 65.140625 53.195312 64.039062 49.910156 64.039062 C 47.488281 64.039062 44.652344 65.308594 41.394531 67.847656 C 38.136719 70.386719 35.757812 73.554688 34.265625 77.351562 L 34.265625 129.550781 L 0.648438 129.550781 L 0.648438 0.347656 L 34.265625 0.347656 L 34.265625 50.21875 C 37.554688 45.199219 41.851562 41.363281 47.191406 38.683594 C 52.527344 36.003906 58.492188 34.667969 65.128906 34.667969 C 70.148438 34.667969 74.496094 35.414062 78.183594 36.914062 C 81.871094 38.414062 84.71875 40.273438 86.738281 42.492188 C 88.757812 44.710938 90.363281 47.429688 91.574219 50.65625 C 92.785156 53.886719 93.542969 56.824219 93.863281 59.472656 C 94.183594 62.121094 94.34375 65.058594 94.34375 68.289062 Z M 94.332031 129.550781 " clip-rule="nonzero"/></clipPath><clipPath id="13329bceca"><rect x="0" width="95" y="0" height="130"/></clipPath><clipPath id="83fe1937a2"><path d="M 1919 303.636719 L 2018.421875 303.636719 L 2018.421875 400.507812 L 1919 400.507812 Z M 1919 303.636719 " clip-rule="nonzero"/></clipPath><clipPath id="e08f3aa571"><path d="M 1919.320312 370.378906 C 1919.320312 361.042969 1923.078125 353.40625 1930.59375 347.472656 C 1938.109375 341.535156 1947.753906 338.566406 1959.507812 338.566406 C 1967.171875 338.566406 1973.421875 339.746094 1978.265625 342.105469 L 1978.265625 339.265625 C 1978.265625 334.886719 1976.988281 331.628906 1974.417969 329.5 C 1971.851562 327.371094 1967.773438 326.304688 1962.1875 326.304688 C 1957.167969 326.304688 1952.421875 327.121094 1947.925781 328.773438 C 1943.425781 330.421875 1938.558594 332.960938 1933.324219 336.417969 L 1923.546875 315.5 C 1935.820312 307.605469 1949.792969 303.65625 1965.464844 303.65625 C 1980.386719 303.65625 1991.859375 307.023438 1999.863281 313.769531 C 2007.871094 320.515625 2011.878906 330.359375 2011.878906 343.332031 L 2011.878906 361.394531 C 2011.878906 364.5625 2012.335938 366.78125 2013.257812 368.050781 C 2014.175781 369.320312 2015.847656 370.039062 2018.265625 370.207031 L 2018.265625 398.550781 C 2013.078125 399.703125 2008.351562 400.28125 2004.09375 400.28125 C 1992.628906 400.28125 1986.03125 395.984375 1984.304688 387.398438 L 1983.523438 384.03125 C 1975.058594 394.863281 1964.515625 400.28125 1951.890625 400.28125 C 1942.558594 400.28125 1934.792969 397.441406 1928.59375 391.765625 C 1922.398438 386.089844 1919.3125 378.964844 1919.3125 370.378906 M 1973.851562 372.707031 C 1976.789062 370.808594 1978.257812 368.621094 1978.257812 366.140625 L 1978.257812 359.234375 C 1973.699219 357.625 1969.382812 356.816406 1965.292969 356.816406 C 1961.257812 356.816406 1957.867188 357.824219 1955.140625 359.84375 C 1952.410156 361.863281 1951.03125 364.402344 1951.03125 367.449219 C 1951.03125 369.988281 1952.050781 372.085938 1954.101562 373.757812 C 1956.148438 375.425781 1958.757812 376.265625 1961.925781 376.265625 C 1966.363281 376.265625 1970.34375 375.085938 1973.851562 372.71875 " clip-rule="nonzero"/></clipPath><clipPath id="7bd197a3b8"><path d="M 0.109375 0.636719 L 99.410156 0.636719 L 99.410156 97.332031 L 0.109375 97.332031 Z M 0.109375 0.636719 " clip-rule="nonzero"/></clipPath><clipPath id="718fc00bc5"><path d="M 0.320312 67.378906 C 0.320312 58.042969 4.078125 50.40625 11.59375 44.472656 C 19.109375 38.535156 28.753906 35.566406 40.507812 35.566406 C 48.171875 35.566406 54.421875 36.746094 59.265625 39.105469 L 59.265625 36.265625 C 59.265625 31.886719 57.988281 28.628906 55.417969 26.5 C 52.851562 24.371094 48.773438 23.304688 43.1875 23.304688 C 38.167969 23.304688 33.421875 24.121094 28.925781 25.773438 C 24.425781 27.421875 19.558594 29.960938 14.324219 33.417969 L 4.546875 12.5 C 16.820312 4.605469 30.792969 0.65625 46.464844 0.65625 C 61.386719 0.65625 72.859375 4.023438 80.863281 10.769531 C 88.871094 17.515625 92.878906 27.359375 92.878906 40.332031 L 92.878906 58.394531 C 92.878906 61.5625 93.335938 63.78125 94.257812 65.050781 C 95.175781 66.320312 96.847656 67.039062 99.265625 67.207031 L 99.265625 95.550781 C 94.078125 96.703125 89.351562 97.28125 85.09375 97.28125 C 73.628906 97.28125 67.03125 92.984375 65.304688 84.398438 L 64.523438 81.03125 C 56.058594 91.863281 45.515625 97.28125 32.890625 97.28125 C 23.558594 97.28125 15.792969 94.441406 9.59375 88.765625 C 3.398438 83.089844 0.3125 75.964844 0.3125 67.378906 M 54.851562 69.707031 C 57.789062 67.808594 59.257812 65.621094 59.257812 63.140625 L 59.257812 56.234375 C 54.699219 54.625 50.382812 53.816406 46.292969 53.816406 C 42.257812 53.816406 38.867188 54.824219 36.140625 56.84375 C 33.410156 58.863281 32.03125 61.402344 32.03125 64.449219 C 32.03125 66.988281 33.050781 69.085938 35.101562 70.757812 C 37.148438 72.425781 39.757812 73.265625 42.925781 73.265625 C 47.363281 73.265625 51.34375 72.085938 54.851562 69.71875 " clip-rule="nonzero"/></clipPath><clipPath id="b3c8d84093"><rect x="0" width="100" y="0" height="98"/></clipPath><clipPath id="9d83f9537e"><path d="M 1519.847656 303.636719 L 1616.71875 303.636719 L 1616.71875 400.507812 L 1519.847656 400.507812 Z M 1519.847656 303.636719 " clip-rule="nonzero"/></clipPath><clipPath id="032225ae3e"><path d="M 1570.898438 372.015625 C 1566.171875 372.015625 1562.246094 370.199219 1559.105469 366.570312 C 1555.96875 362.941406 1554.398438 358.074219 1554.398438 351.96875 C 1554.398438 345.863281 1555.96875 341.003906 1559.105469 337.40625 C 1562.246094 333.808594 1566.183594 332.011719 1570.898438 332.011719 C 1576.316406 332.011719 1580.605469 334.320312 1583.78125 338.925781 L 1616.535156 328.980469 C 1612.554688 321.207031 1606.699219 315.039062 1598.941406 310.484375 C 1591.1875 305.925781 1581.902344 303.65625 1571.070312 303.65625 C 1563.0625 303.65625 1555.789062 304.964844 1549.242188 307.585938 C 1542.695312 310.203125 1537.320312 313.761719 1533.082031 318.257812 C 1528.84375 322.753906 1525.59375 327.882812 1523.316406 333.640625 C 1521.039062 339.394531 1519.910156 345.511719 1519.910156 351.957031 C 1519.910156 359.964844 1521.578125 367.378906 1524.914062 374.214844 C 1528.253906 381.050781 1533.339844 386.808594 1540.167969 391.507812 C 1546.992188 396.203125 1555.046875 399.011719 1564.324219 399.929688 C 1564.34375 399.953125 1564.351562 399.960938 1564.371094 399.980469 C 1566.511719 400.179688 1568.699219 400.300781 1570.949219 400.300781 C 1574.746094 400.300781 1578.414062 399.992188 1581.882812 399.433594 C 1581.882812 399.421875 1581.871094 399.421875 1581.871094 399.421875 C 1589.9375 398.09375 1596.894531 395.304688 1602.742188 391.035156 C 1603.191406 390.707031 1603.609375 390.367188 1604.039062 390.027344 C 1604.5 389.617188 1604.941406 389.1875 1605.351562 388.757812 L 1605.351562 388.96875 C 1609.96875 385.078125 1613.695312 380.441406 1616.523438 375.035156 L 1583.773438 365.089844 C 1580.605469 369.699219 1576.304688 372.007812 1570.890625 372.007812 " clip-rule="nonzero"/></clipPath><clipPath id="09c260e4e1"><path d="M 0.847656 0.636719 L 97.640625 0.636719 L 97.640625 97.332031 L 0.847656 97.332031 Z M 0.847656 0.636719 " clip-rule="nonzero"/></clipPath><clipPath id="32f5103200"><path d="M 51.898438 69.015625 C 47.171875 69.015625 43.246094 67.199219 40.105469 63.570312 C 36.96875 59.941406 35.398438 55.074219 35.398438 48.96875 C 35.398438 42.863281 36.96875 38.003906 40.105469 34.40625 C 43.246094 30.808594 47.183594 29.011719 51.898438 29.011719 C 57.316406 29.011719 61.605469 31.320312 64.78125 35.925781 L 97.535156 25.980469 C 93.554688 18.207031 87.699219 12.039062 79.941406 7.484375 C 72.1875 2.925781 62.902344 0.65625 52.070312 0.65625 C 44.0625 0.65625 36.789062 1.964844 30.242188 4.585938 C 23.695312 7.203125 18.320312 10.761719 14.082031 15.257812 C 9.84375 19.753906 6.59375 24.882812 4.316406 30.640625 C 2.039062 36.394531 0.910156 42.511719 0.910156 48.957031 C 0.910156 56.964844 2.578125 64.378906 5.914062 71.214844 C 9.253906 78.050781 14.339844 83.808594 21.167969 88.507812 C 27.992188 93.203125 36.046875 96.011719 45.324219 96.929688 C 45.34375 96.953125 45.351562 96.960938 45.371094 96.980469 C 47.511719 97.179688 49.699219 97.300781 51.949219 97.300781 C 55.746094 97.300781 59.414062 96.992188 62.882812 96.433594 C 62.882812 96.421875 62.871094 96.421875 62.871094 96.421875 C 70.9375 95.09375 77.894531 92.304688 83.742188 88.035156 C 84.191406 87.707031 84.609375 87.367188 85.039062 87.027344 C 85.5 86.617188 85.941406 86.1875 86.351562 85.757812 L 86.351562 85.96875 C 90.96875 82.078125 94.695312 77.441406 97.523438 72.035156 L 64.773438 62.089844 C 61.605469 66.699219 57.304688 69.007812 51.890625 69.007812 " clip-rule="nonzero"/></clipPath><clipPath id="d95415fefb"><rect x="0" width="98" y="0" height="98"/></clipPath><clipPath id="ec9b3c01e0"><path d="M 1556 403.21875 L 1586.914062 403.21875 L 1586.914062 433 L 1556 433 Z M 1556 403.21875 " clip-rule="nonzero"/></clipPath><clipPath id="4431c97153"><path d="M 1556.039062 403.21875 L 1556.039062 432.773438 L 1586.609375 411.945312 L 1586.628906 403.230469 Z M 1556.039062 403.21875 " clip-rule="nonzero"/></clipPath><clipPath id="b065a0cf92"><path d="M 0 0.21875 L 30.65625 0.21875 L 30.65625 29.953125 L 0 29.953125 Z M 0 0.21875 " clip-rule="nonzero"/></clipPath><clipPath id="21ffc75f10"><path d="M 0.0390625 0.21875 L 0.0390625 29.773438 L 30.609375 8.945312 L 30.628906 0.230469 Z M 0.0390625 0.21875 " clip-rule="nonzero"/></clipPath><clipPath id="cff7f7603a"><rect x="0" width="31" y="0" height="30"/></clipPath></defs><g clip-path="url(#37199086c6)"><path fill="#ffffff" d="M 0.203125 0 L 2023.296875 0 L 2023.296875 438.5 L 0.203125 438.5 Z M 0.203125 0 " fill-opacity="1" fill-rule="nonzero"/></g><g clip-path="url(#ae74cd930b)"><g clip-path="url(#1577230a91)"><g transform="matrix(1, 0, 0, 1, 5, 4)"><g clip-path="url(#b7e9eb0687)"><g clip-path="url(#b3a9e4206f)"><g clip-path="url(#b1f1568d16)"><rect x="-450.335" width="2914.92" fill="#ffcf00" height="631.799977" y="-100.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#ddb9d22df6)"><g clip-path="url(#9df52a9e04)"><g transform="matrix(1, 0, 0, 1, 575, 4)"><g clip-path="url(#2bc401d4f0)"><g clip-path="url(#b9ae7e8662)"><g clip-path="url(#eb7820421f)"><rect x="-1020.335" width="2914.92" fill="#173bff" height="631.799977" y="-100.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#df1589633d)"><g clip-path="url(#deb9cde5fb)"><g transform="matrix(1, 0, 0, 1, 250, 4)"><g clip-path="url(#2bd6784f65)"><g clip-path="url(#5f2120ab1a)"><g clip-path="url(#e1ee419244)"><rect x="-695.335" width="2914.92" fill="#00cf00" height="631.799977" y="-100.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#6ba8788f9b)"><g clip-path="url(#314bb14ba5)"><g transform="matrix(1, 0, 0, 1, 220, 255)"><g clip-path="url(#a920f44e8d)"><g clip-path="url(#f189dd6a95)"><g clip-path="url(#64454d043f)"><rect x="-665.335" width="2914.92" fill="#ff0000" height="631.799977" y="-351.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#9522322909)"><g clip-path="url(#ba62dcd474)"><g transform="matrix(1, 0, 0, 1, 5, 261)"><g clip-path="url(#6a3c0becb2)"><g clip-path="url(#810c010000)"><g clip-path="url(#e7610475a8)"><rect x="-450.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-357.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#1f7bc50576)"><g clip-path="url(#a7ed9db123)"><g transform="matrix(1, 0, 0, 1, 575, 262)"><g clip-path="url(#58d54ab305)"><g clip-path="url(#c9ebdc8226)"><g clip-path="url(#480e3f88e0)"><rect x="-1020.335" width="2914.92" fill="#ffcf00" height="631.799977" y="-358.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#413bccd912)"><g clip-path="url(#1720139075)"><g transform="matrix(1, 0, 0, 1, 219, 10)"><g clip-path="url(#47f1c96dce)"><g clip-path="url(#1e130cc1af)"><g clip-path="url(#028436d2f0)"><rect x="-664.335" width="2914.92" fill="#ff0000" height="631.799977" y="-106.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#3bfb4c9266)"><g clip-path="url(#131da617fa)"><g transform="matrix(1, 0, 0, 1, 966, 147)"><g clip-path="url(#18a3da098a)"><g clip-path="url(#d4d3c95b31)"><g clip-path="url(#0fe836d0b4)"><path fill="#5e5e5e" d="M 0.28125 0.292969 L 57.90625 0.292969 L 57.90625 83.125 L 0.28125 83.125 Z M 0.28125 0.292969 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#f6f679d4c1)"><g clip-path="url(#14139c5167)"><g transform="matrix(1, 0, 0, 1, 1046, 144)"><g clip-path="url(#4772070ee9)"><g clip-path="url(#f750337229)"><g clip-path="url(#95b2499a53)"><path fill="#5e5e5e" d="M 0.753906 0.953125 L 19.675781 0.953125 L 19.675781 86.769531 L 0.753906 86.769531 Z M 0.753906 0.953125 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#7045b2a3ce)"><g clip-path="url(#bfcc78b628)"><g transform="matrix(1, 0, 0, 1, 965, 272)"><g clip-path="url(#6e544956e2)"><g clip-path="url(#d7062e1306)"><g clip-path="url(#b91c928c85)"><path fill="#5e5e5e" d="M 0.855469 0.886719 L 112.695312 0.886719 L 112.695312 126.703125 L 0.855469 126.703125 Z M 0.855469 0.886719 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#b01481dc55)"><g clip-path="url(#8a9d10e60f)"><g transform="matrix(1, 0, 0, 1, 1079, 168)"><g clip-path="url(#a1d9424f01)"><g clip-path="url(#17647bbdac)"><g clip-path="url(#fe6d8ea6ec)"><path fill="#5e5e5e" d="M 0.289062 0.550781 L 51.1875 0.550781 L 51.1875 63.378906 L 0.289062 63.378906 Z M 0.289062 0.550781 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#dcb2db0d67)"><g clip-path="url(#156dd4835b)"><g transform="matrix(1, 0, 0, 1, 1148, 148)"><g clip-path="url(#3347170e16)"><g clip-path="url(#d542feb06c)"><g clip-path="url(#7c834f7590)"><path fill="#5e5e5e" d="M 0.699219 0.546875 L 32.335938 0.546875 L 32.335938 82.71875 L 0.699219 82.71875 Z M 0.699219 0.546875 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#6f6f97d5ca)"><g clip-path="url(#e72c98c21b)"><g transform="matrix(1, 0, 0, 1, 1195, 168)"><g clip-path="url(#d47c51afa5)"><g clip-path="url(#0c17534ed6)"><g clip-path="url(#e50281a6db)"><path fill="#5e5e5e" d="M 0.144531 0.550781 L 51.042969 0.550781 L 51.042969 63.378906 L 0.144531 63.378906 Z M 0.144531 0.550781 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#1ac40f3032)"><g transform="matrix(1, 0, 0, 1, 1089, 305)"><g clip-path="url(#b0b0c145b5)"><g clip-path="url(#9ee403a695)"><rect x="-1534.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-401.524996" fill-opacity="1"/></g></g></g></g><g clip-path="url(#a8330c9554)"><g clip-path="url(#dc9e232cb6)"><g transform="matrix(1, 0, 0, 1, 1132, 269)"><g clip-path="url(#2d187ae9d4)"><g clip-path="url(#9a52913480)"><g clip-path="url(#c8e6fe4b61)"><rect x="-1577.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-365.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#f9faf38d47)"><g clip-path="url(#1fd0958299)"><g transform="matrix(1, 0, 0, 1, 1184, 303)"><g clip-path="url(#5bbd05832a)"><g clip-path="url(#72b76533cd)"><g clip-path="url(#7ce9594519)"><rect x="-1629.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#fa02be439d)"><g transform="matrix(1, 0, 0, 1, 1089, 269)"><g clip-path="url(#3d31e82e6f)"><g clip-path="url(#9acdc138a2)"><rect x="-1534.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-365.524996" fill-opacity="1"/></g></g></g></g><g clip-path="url(#0ce492f65b)"><g clip-path="url(#7340c7f32a)"><g transform="matrix(1, 0, 0, 1, 1264, 143)"><g clip-path="url(#86e7e10959)"><g clip-path="url(#b834e53f0b)"><g clip-path="url(#505b2b322d)"><rect x="-1709.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-239.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#23a54c29c9)"><g clip-path="url(#7ee1a1f8f6)"><g transform="matrix(1, 0, 0, 1, 1309, 168)"><g clip-path="url(#0af39c7767)"><g clip-path="url(#8097bd45ed)"><g clip-path="url(#346aad4767)"><rect x="-1754.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-264.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#9ae6321705)"><g clip-path="url(#140caa4a26)"><g transform="matrix(1, 0, 0, 1, 1391, 169)"><g clip-path="url(#a8d7286e61)"><g clip-path="url(#a03a9d66ec)"><g clip-path="url(#d289a2cc3c)"><path fill="#5e5e5e" d="M 0.644531 0.464844 L 27.832031 0.464844 L 27.832031 61.210938 L 0.644531 61.210938 Z M 0.644531 0.464844 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#acb39ac937)"><g clip-path="url(#c288cb8e80)"><g transform="matrix(1, 0, 0, 1, 1439, 168)"><g clip-path="url(#e67f54bb5c)"><g clip-path="url(#8fdd128d32)"><g clip-path="url(#dc24de610c)"><path fill="#5e5e5e" d="M 0.570312 0.550781 L 88.660156 0.550781 L 88.660156 62.164062 L 0.570312 62.164062 Z M 0.570312 0.550781 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#d8aad8a2d5)"><g clip-path="url(#dce230d246)"><g transform="matrix(1, 0, 0, 1, 1550, 168)"><g clip-path="url(#e33387cb2c)"><g clip-path="url(#e1072b3a1c)"><g clip-path="url(#fd94802f1f)"><path fill="#5e5e5e" d="M 0.078125 0.550781 L 50.976562 0.550781 L 50.976562 63.378906 L 0.078125 63.378906 Z M 0.078125 0.550781 " fill-opacity="1" fill-rule="nonzero"/></g></g></g></g></g></g><g clip-path="url(#3c6c2f4250)"><g clip-path="url(#28b1001e2d)"><g transform="matrix(1, 0, 0, 1, 1325, 272)"><g clip-path="url(#3296b4492a)"><g clip-path="url(#2d8656a19f)"><g clip-path="url(#3ba260b6ad)"><rect x="-1770.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-368.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#00dd8d77a5)"><g clip-path="url(#f68fef2669)"><g transform="matrix(1, 0, 0, 1, 1419, 303)"><g clip-path="url(#3fabd14ded)"><g clip-path="url(#338d7bbc48)"><g clip-path="url(#d1222a1f72)"><rect x="-1864.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#3baada6640)"><g clip-path="url(#c56365e20d)"><g transform="matrix(1, 0, 0, 1, 1614, 303)"><g clip-path="url(#94016ba8ec)"><g clip-path="url(#d225c57893)"><g clip-path="url(#8253af761e)"><rect x="-2059.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#a5f1bfaece)"><g clip-path="url(#457d436699)"><g transform="matrix(1, 0, 0, 1, 1718, 303)"><g clip-path="url(#454521b4fe)"><g clip-path="url(#38e098e700)"><g clip-path="url(#dc9bd111da)"><rect x="-2163.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#abde49e8c6)"><g clip-path="url(#399210f87f)"><g transform="matrix(1, 0, 0, 1, 1821, 269)"><g clip-path="url(#13329bceca)"><g clip-path="url(#4d29855324)"><g clip-path="url(#09ef9f6e74)"><rect x="-2266.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-365.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#83fe1937a2)"><g clip-path="url(#e08f3aa571)"><g transform="matrix(1, 0, 0, 1, 1919, 303)"><g clip-path="url(#b3c8d84093)"><g clip-path="url(#7bd197a3b8)"><g clip-path="url(#718fc00bc5)"><rect x="-2364.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#9d83f9537e)"><g clip-path="url(#032225ae3e)"><g transform="matrix(1, 0, 0, 1, 1519, 303)"><g clip-path="url(#d95415fefb)"><g clip-path="url(#09c260e4e1)"><g clip-path="url(#32f5103200)"><rect x="-1964.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-399.524996" fill-opacity="1"/></g></g></g></g></g></g><g clip-path="url(#ec9b3c01e0)"><g clip-path="url(#4431c97153)"><g transform="matrix(1, 0, 0, 1, 1556, 403)"><g clip-path="url(#cff7f7603a)"><g clip-path="url(#b065a0cf92)"><g clip-path="url(#21ffc75f10)"><rect x="-2001.335" width="2914.92" fill="#5e5e5e" height="631.799977" y="-499.524996" fill-opacity="1"/></g></g></g></g></g></g></svg>