@aturi.to/waypoints 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  Aturi's curated catalog of Atmosphere (AT Protocol) clients ("waypoints") plus
4
4
  the logic to turn an AT URI into per-client "Open in…" links, recommend the best
5
5
  client for a record type, and reverse-resolve a pasted URL back into an AT URI.
6
+ Each client's brand mark ships too, as framework-agnostic SVG.
6
7
 
7
8
  Zero runtime dependencies. Works in the browser, Node 18+, and edge runtimes.
8
9
  Ships ESM + CJS with full type definitions.
@@ -66,6 +67,9 @@ const fromUrl = await resolveUrl('https://bsky.app/profile/alice.bsky.social/pos
66
67
  - **Universal links** (`universalLinks.ts`): `buildUniversalLink`,
67
68
  `parseUniversalLink`, `isUniversalLink`, `describeUniversalLink`,
68
69
  `buildUniversalLinkTags`, `UNIVERSAL_LINK_ORIGIN`.
70
+ - **Brand marks** (`@aturi.to/waypoints/icons`): `WAYPOINT_ICON_SVGS`,
71
+ `getWaypointIconSvg`, and a named export per waypoint. See
72
+ [Icons](#icons).
69
73
 
70
74
  ### Compose intents
71
75
 
@@ -209,13 +213,113 @@ GET https://aturi.to/api/waypoints
209
213
  GET https://aturi.to/api/waypoints?type=post&capability=compose
210
214
  ```
211
215
 
216
+ ## Icons
217
+
218
+ Every waypoint's brand mark ships as plain SVG markup, behind a subpath:
219
+
220
+ ```ts
221
+ import { WAYPOINT_ICON_SVGS, getWaypointIconSvg } from '@aturi.to/waypoints/icons';
222
+
223
+ getWaypointIconSvg('bluesky'); // '<svg xmlns="…" viewBox="0 0 512 512">…</svg>'
224
+ ```
225
+
226
+ The marks are a subpath rather than part of the main entry because a bundler
227
+ cannot drop unused keys from an object literal. Importing them is opt-in, so
228
+ nothing that only wants link builders pays for roughly 80KB of artwork.
229
+
230
+ Values are markup, not components, so any framework can render them:
231
+
232
+ ```svelte
233
+ {@html getWaypointIconSvg(id)}
234
+ ```
235
+ ```vue
236
+ <span v-html="getWaypointIconSvg(id)" />
237
+ ```
238
+ ```tsx
239
+ <span dangerouslySetInnerHTML={{ __html: getWaypointIconSvg(id) ?? '' }} />
240
+ ```
241
+
242
+ The values are static package data, not user input, so none of those three is an
243
+ injection risk. Linters that flag `v-html` or `dangerouslySetInnerHTML` on sight
244
+ will still want an inline exception.
245
+
246
+ Individual marks are exported by name if you would rather pull one and let the
247
+ rest tree-shake away:
248
+
249
+ ```ts
250
+ import { blueskyIconSvg, tangledIconSvg } from '@aturi.to/waypoints/icons';
251
+ ```
252
+
253
+ Every id in `WAYPOINT_ORDER` has a mark. React consumers who want components
254
+ instead can use [`@aturi.to/waypoints-react`](../waypoints-react), which ships
255
+ the same catalog as JSX.
256
+
257
+ ### Styling
258
+
259
+ Each mark is 24x24 and paints in `currentColor`, so it takes the colour of the
260
+ surrounding text. A CSS rule beats the width and height baked into the markup,
261
+ so size them from your stylesheet rather than rewriting the string:
262
+
263
+ ```css
264
+ .waypoint-icon svg { width: 1.25rem; height: 1.25rem; }
265
+ ```
266
+
267
+ Three marks (Lea, Leaflet, pckt) knock part of the shape out to the page
268
+ background instead of painting it. That colour comes from
269
+ `var(--bg-primary, white)`, so set `--bg-primary` on an ancestor if your surface
270
+ is not white:
271
+
272
+ ```css
273
+ .waypoint-icon { --bg-primary: #0c0908; }
274
+ ```
275
+
276
+ `currentColor` only resolves when the SVG is part of the page. Inlining is the
277
+ supported path; a mark referenced as an external image or data URI through
278
+ `<img src>` or `background-image` is a separate document with no access to your
279
+ text colour, and will paint black.
280
+
281
+ Every mark fills the same 24x24 box, so a row of them lines up, but the artwork
282
+ inside does not carry equal weight. Painted area runs from roughly a third of
283
+ the box (Impro, Mu, Taproot) to all of it (Lea, Red Dwarf). That is the brands'
284
+ own proportions rather than something the catalog flattens, so nudge individual
285
+ marks in your own CSS if you want them optically even.
286
+
287
+ ### Accessibility
288
+
289
+ The marks carry no title or description, and a handful set `aria-hidden` while
290
+ most do not. Be explicit at the call site rather than relying on what happens to
291
+ be in the markup.
292
+
293
+ Beside a visible client name the mark is decorative, so hide it:
294
+
295
+ ```html
296
+ <span class="waypoint-icon" aria-hidden="true"><!-- mark --></span>
297
+ ```
298
+
299
+ Standing alone as the whole of a link or button, it needs an accessible name:
300
+
301
+ ```html
302
+ <a href="…" aria-label="Open in Bluesky">
303
+ <span class="waypoint-icon"><!-- mark --></span>
304
+ </a>
305
+ ```
306
+
307
+ ### Trademarks
308
+
309
+ These are third-party brand marks, reproduced so a picker can identify each
310
+ client. The MIT licence on this package covers the code, not the trademarks.
311
+ Using a mark to identify a client is nominative use; using one to suggest that
312
+ client endorses your product is not. If you represent one of these projects and
313
+ want a mark changed or removed, open an issue.
314
+
212
315
  ## A note on drift
213
316
 
214
- The four canonical logic/icon files (`waypoints.data.ts`, `uriParser.ts`,
317
+ The canonical logic and icon files (`waypoints.data.ts`, `uriParser.ts`,
215
318
  `reverseParsers.ts`, and the React icon catalog) are the single source of truth
216
319
  inside the [`aturi.to`](https://github.com/atpota-to/aturi) app under `src/`.
217
320
  This package ships **copies** so it can build standalone, kept in lockstep by a
218
- sync script:
321
+ sync script. The SVG strings above are generated from that same React catalog by
322
+ the same script, so the two never disagree about what a waypoint looks like:
219
323
 
220
324
  ```sh
221
325
  npm run sync # copy the canonical files into the packages
package/dist/icons.cjs ADDED
@@ -0,0 +1,106 @@
1
+ 'use strict';
2
+
3
+ // src/waypointIcons.data.ts
4
+ var aturiIconSvg = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"/><path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"/></svg>';
5
+ var aturiExploreIconSvg = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"/><path d="m13.56 11.747 4.332-.924"/><path d="m16 21-3.105-6.21"/><path d="M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"/><path d="m6.158 8.633 1.114 4.456"/><path d="m8 21 3.105-6.21"/><circle cx="12" cy="13" r="2"/></svg>';
6
+ var anisotaIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 516.02 741.26" width="24" height="24" aria-hidden="true"><path fill="currentColor" d="M419.35,737.26l-1.55,1.09c-8.99,1.34-9.75-.68-17.05.26-1.52.2-3.67-.31-5.21-.22l-6.63.39-6.43.43-4.67.33c-1.62.12-3.41.03-5.03,0l-4.12-.11-13.48.22c-2.15.04-4.05-.13-6-.65-.86.11-2.39.31-3.38.33l-4.21.1c-1.15.03-2.84.03-3.92-.11-3.85-.5-7.19-.54-10.93-.63l-5.06-.12c-1.16-.03-2.1-.01-3.37.11l-3.1-.59-4.29.13-6.6.19-3.65.18-4.13.23c-3.06.17-5.95.48-9.01.52l-8.89.1c-2.72.03-5.74-.75-8.31-.42l-6.35.81c-.63.08-2.28.17-2.87-.17-1.66-.97-4.38-.05-6.05-.04l-13.47.11c-6.68.05-5.45.54-12.7.45l-4.99-.06-4.71-.06c-3.12-.04-6-.12-9.04.12-1.61.13-3.28-.06-4.93-.09l-12.61-.24c-7.54-.14-10.39-1.17-17.7-.33-2.57.3-4.92,0-7.47-.19-5.17-.38-17.29.51-20.58-.64-1.24-.43-13.76.55-15.42.55l-8.57.02-7.04.36c-2.31.12-4.62.45-6.8.44l-9.81-.06c-2.42-.01-4.66-.4-7.06-.25-3.62.24-7.12.31-10.83.27-4.45-.05-8.68.08-13.09.24l-9.28.33-18.55.66c-2.52.09-4.98-.13-7.45-.2l-8.21-.24-9.99-.33c-1.39-.05-2.88-.28-4.2-.27l-9.39.1c-.83-.22-.35-2.36-.08-3.26.86-2.93.42-5.97.5-8.92l.37-12.71.56-15.69c.08-2.28.12-4.25,0-6.55-.23-4.26-.46-19.64.12-23.08,1.2-7.11,2.08-13.83,2.58-20.98l.65-9.41c.04-.57.52-1.25,1.12-2.21l-1.04-.08c-.27-2.81-.42-5.87-.42-8.95v-24.39s.17-11.97.17-11.97l.03-5.24c.02-3.83.08-7.4-.29-11.29-.22-2.4-.16-4.81-.11-7.15l.07-3.55.54-17.17c.14-4.61-.25-4.34-.21-8.32l.23-20.54.11-9.86.31-8.76.1-9.23.14-4.83.31-10.85.09-8.16-.3-11.24-.44-9.48-.12-4.16-.23-7.8-.6-19.35.09-5.78-.1-7.82v-10.37s-.07-3.25-.07-3.25l-.33-9.75-.23-6.58c-.05-1.44-.54-2.85-.59-4.21l-.24-6.17c-.2-5.09-.37-10-.45-15.15-.04-2.56.58-5.11.7-7.62l.39-8.26c.25-5.2-.79-8.03-.28-11.47.41-2.79.37-5.74.11-8.62l-.41-4.55-.08-4.78-.06-7.29-.09-5.01c-.12-6.47-.11-12.7.33-19.23.25-3.76-.11-7.45-.15-11.13l-.06-6.14-.29-10.9c-.19-7.09.41-9.03.38-16.45l-.08-17.12.04-6.3-.16-5.48-.32-12.56-.65-11.72c-.45-8.06-.46-15.75-.21-23.79.19-6.43-.16-12.63-.26-19.05l-.26-17,.05-9.99c.02-3.15.08-6.11-.05-9.31l-.7-16.31-.58-13.07c-.24-5.36-.44-10.46-.33-15.81l.16-7.46.59-9.57c.17-2.74-.3-5.35-.29-8.14l.04-9.83c0-2.44.21-5.12-.48-7.47C-.07,2.96-.48,1.41,1.31,0c.78,2.66,2.26,2.78,3.94,3.26,3.56,1.02,6.83.7,10.41.73,4.94.05,9.56,1.47,14.47.73,5.66-.86,17.17-.13,22.87-.45l4.43-.25c2.51.49,4.63.86,7.18.62,6.14-.58,12-.32,18.13-.06l8.16.35c5.16.22,10.36-.45,15.61-.47l8.46-.02,11.78-.03c6.7-.02,11.68.75,16.1.59,7.18-.26,14.06-.2,21.17-.09,3.15.05,6.37-.15,9.48.12,4.09.36,7.89-.06,11.9.15l17.57.89c4.98.25,9.77-.18,14.82.44,5.61.69,10.99,1.28,16.56,1.29h6.75s12.52.02,12.52.02l34.44.52,8.89-.09,7.01-.06,6.36.03,12.69-.49,6.5.34c1.34.07,2.58-.09,3.88-.18,5.07-.33,10.05.07,15.23-.1l15.74-.52,7.08-.03,18.79-.46,12.25-.28,7.16-.17,18.47-.83,12.38-.59,9.16-.26,5.67-.18,9.7-.23,15.72-.07,17.21.74,6.59-.05c5.97-.04,1.49,2.14,6.07,10.24l.61,4.25,1.81,11.11c1.16,7.13-.85,14.39-.9,21.64-.05,7.15.38,13.92.69,21.06l.77,17.38-.19,13.96c-.03,2.37.14,4.81-.23,7.14-.19,1.19-.88,11-.84,11.76l.79,16.16.03,6.69.09,17.54c0,1.1.12,2.45.19,3.52.22,3.22.21,6.34.37,9.56l.28,5.7.03,3.83.1,7.84v4.2c-.03,7.89,1.43,5.47-.44,14.86-.97,4.87-.31,10.21-.28,14.07.03,3.4-.46,7.05-.67,10.56l-.52,8.49-.31,5.08c-.28,4.59.06,8.86.13,13.31l.19,10.93.5,9.75.19,11.62-.03,18.91-.2,15.59-.38,12.86-.64,12.71-.72,19.65c-.2,5.38-.07,10.64.41,15.89.23,2.53.18,5.1.06,7.72-.19,4.1.09,7.99.11,12.1l.15,29.86-.1,11.16.11,3.79c.08,2.69-.12,5.19-.23,7.96-.05,1.18.36,2.99.4,4.33l.39,13.76.2,6.96-.2,8.37-.04,22.95-.36,13.35-.03,11.97.25,7.04.07,5.31-.2,6.9c-.12,4.03.46,7.82.92,11.72.37,3.09.02,6.07.23,9.28l.46,7.13.19,9.62.54,15.4c.13,3.58.19,7.03.38,10.68l.51,9.75.63,4.23-.18,10.7-.21,4.59c-.08,1.62-.07,3.11-.04,4.67l.11,6.95.4,7.11c.07,1.26-.27,2.7-.31,3.94-.3,7.99.35,15.05.08,21.91l-.16,4.01-.14,5.97-.23,8.87-.04,7.31c-.02,2.57,2.15,5.11-1.11,7.65-.67.52-1.27,1.17-1.76,1.24s-1.59-.72-2.12-.76c-1.41-.12-2.86-.23-4.35-.75l-2.98,1.01-2.84-.73c-.12-.03-.83-.05-.95-.04l-.94.08-.8.06c-.18.01-.17-.21-.35-.95-1.3-.35-3.43.19-5.04.32-1.93.16-3.55-.72-5.44.68-.94.7-2.97.35-4.32.33-3.99-.06-8.02-.22-11.92.29-3.02.4-5.59.1-8.65.05l-8.44-.16-15.35.05-12.48-.04c-2.12,0-3.96-.29-6.02-1.13ZM331.22,8.37l-.74,1.23,1.16.7.74-1.23-1.16-.7ZM282.52,9.37v.93h2.33v-.93h-2.33ZM210.09,19.95c-.21.07.07.67.17.88s.62-.09.71-.29.25-.86.03-.82c-.19.04-.77.18-.91.23ZM368.23,30.97l-2.57-.47,1.37,1.26c.25.23,1.06-.64,1.19-.79ZM354.35,67.7c2.6,2.98,4.95,5.74,7.7,8.31,3.39,3.16-1.46,3.44,3.36,8.81,2.61,2.91-.19,5.31,2.65,4.55l3.1-.82c3.74-.99,6.84-3.07,10.07-5.05,6.51-3.99,3.09-6.13,7.36-7.64.35-.12,1.28-.23,1.35.08l.29,1.2c.37,1.5,1.08,2.68,2.31,3.67,5.32,4.26.87,8.4,6.94,10.42.79,2.15,2.38,5.6.1,6.85-1.3.71-3.52,1.3-4.57,2.32-1.68,1.63-3.69,2.59-5.35,4.03-2.02,1.74-2.84,5.01-5.31,6.87-1.38,1.04-2.22,4.28-1.42,5.66,1.38,2.37,4.03,1.71,5.82.58,1.36-.86,3.89.13,5.28-.37,4.46-1.63,8.3-3.98,12.51-5.99,2.89-1.38,5.71-2.52,8.45-4.14.88-.52,2.33-3.12,3.66-1.28,6.2,8.57,4.43,7.23,8.9,15.65.91,1.72,2.53,3.52,2.68,5.41.12,1.47-1.89,2.26-2.94,2.72-2.43,1.05-4.47,3.35-6.84,4.08-1.43.44-2.73.74-4.04,1.23l-5.82,2.2c-3.93,1.49-7.7,3.64-10.38,6.85-3-.82-9.56.68-9.27,4.45.12,1.58.92,2.73,2.5,3.45l.65,3.39,1.32,1.24c.8.76-2.23,3.67-1.33,5.45,2.34-1.78,3.82-2.45,6.17-3.22l6.71-2.18,7.98-2.65,20.96-7.04c4.36-1.46,6.58-3.75,7.29-1.54s1.73,4.48,2.75,6.57c1.99,4.05,2.83,8.36,3.99,12.81.78,2.98,4.94,3.64,5.07,6.7.07,1.65-1.7,2.36-2.94,2.55-6.45,1.02-11.19,3.97-13.42,4-3.03.04-3.82,1.37-5.99,2.61-2.55,1.45-36.68,7.72-36.63,7.68l-5.19,4.02c-.43.33-1.31.33-1.54.6s.07,1.12.25,1.72c.3.99-.03,2.43.05,3.24.15,1.45.48,2.62-.27,4.04-.27.51-.65,1.09-.41,1.3.79.73,4.31-.09,5.59-.4l5.17-1.28c2.26-.56,3.82-1.59,6.28-1.63,4.19-.07,8.26-1.58,12.38-1.83l7.88-.48,1.87-2.01,12.47-2.96,11.7-3.29c.43-.12,1.7-.09,1.84.29l.59,1.56c1.01,2.69,2.62,5.34,3.36,8.18.98,3.76,1.81,7.01,3.85,10.46,1.08,1.82,1.39,6.85-1.43,6.57-3.39-.34-8.41-.76-11.56.81-1.28.63-3.29.67-4.77,1.11-6.49,1.95-12.56,3.5-19.38,4.24l-3.02,1.45c-7.17.07-13.74,1.46-20.54,3.27-1.76.47-3.47.62-5.08,1.48-7.48,4-5.5,1.08-9.3,3.77-4.55,3.23-1.39,2.56-7.62,6.75-.26.78-.6,1.68-.96,2.17l-.74,1.03c-.4.55,4.33,3.27,10.08-1.18,2.94-.37,6.41-.64,9.46-1.23l7.56-1.45c3.63-.7,7.22-1.38,10.78-2.33l5.23-1.39c1.35-.36,2.95-1.17,4.42-1.44,4.37-.79,8.27-2.15,12.46-3.27l10.02-2.67c1.46-.39,3.12-2.41,4.85-1.78,1.9.69,1.45,4.78,2.01,7.82,1.81,9.84,3.5,5.75.66,12.69-.46,1.12-.81,2.46-.25,3.49s.9,3.77-.56,3.98c-7.08,1.01-13.63,2.48-20.51,4.22l-8.86,2.24-2.86.83-3.62.95c-1.36.35-2.57.99-4.01,1.42l-6.23,1.86c-1.47.44-2.6.91-4.03,1.19l-7.32,1.45c-1.09.22-2.51.56-3.53.93l-4.15,1.54c-1.34.5-2.46.46-3.29-.5s-2.38.72-2.68,2c-.18.75-2.54.44-3.21.93l-6,4.46c-.43.32-2.27.19-2.14.67.11.41.4,1.38.58,1.73l1.42,2.8c10.61,3.11,7.81-2.15,12.09-1.21,2.44.53,4.13-.61,6.24-1.45,1.19-.48,3.24-.56,4.44-1.18,3.84-1.99,7.7-3.14,11.88-4.11,8.24-1.92,9.46-1.61,17.81-4.29l5.65-1.81,5.21-1.71c2.14-.71,3.85-1.4,6.31-2.5,1.15,1.38,3.2,3.68,4.15,5.29l6.52,17.16-2.1,4.45c-1.21,2.56-2.45,2.99-5.19,3.04-2.02.04-13.42,1.51-14.75,2.71-.76.36-2.65.42-3.46.75l-5.34,2.15c-6.04,2.43-5.41,1.06-7.67,3.11-1.13,1.02-3.66,1.02-5.3,1.49-3.73,1.08-7.23,1.92-11.06,2.15l-10.48.62c-4.33.26-7.79,1.53-10.45,5.03-.72.94-1.15,3.57-.62,4.62.47.94.89,1.97,1.18,3.05,1.32.6,3.53.37,5.25.11,2.78-.42,5.89-.18,8.33-1.03l5.67-1.99c3.56-1.25,7.35-2.04,11.1-2.7,2.24-.39,3.63-.91,5.54-2.16,1.76-1.15,4.45-1.49,6.46-2.41,3.64-1.66,7.43-2.88,11.22-4.03.84-.26,2.31-1.61,3.09-1.35,2.1.72,1.05,3.08,1.34,4.36,1.68,7.45,6.28,10.79,8.13,18.17.37,1.47.51,2.71-.55,3.67-.84.76-2.16.8-3.41.13-1-.53-1.9.79-2.63.92l-4.49.81c-1.45.26-3.13.79-3.92,1.37l.24.96c-6.51.37-4.18,1.49-10.08,2.95-2.99,4.08-3.91,1.14-6.45,2.88-3.41,2.34-7.37,3.29-11.58,3.49-2.68.12-5.55,1.82-8.23,2.22l-1.4.21c-.92.14,1.76,5.83,5.48,5.77,1.32-.02,3.07.21,4.17-.04l7.97-1.77c1.25-.28,3.86.58,4.84-.23l3.18-2.6c.08-.67.24-1.67.67-1.78,3.33-.87-.32.77,3.56-.39l10.37-3.11c.66-.2,1.72.62,1.88,1.23.79,3.04,2.56,5,4.48,7.23,2.03,2.37,3.84,4.16,6.76,5.41.88.37,1.54,2.24,1.33,3.08-.19.78-1.57,2.07-2.39,2.12-2.71.15-4.21,1.23-6.38,2.43-1.43.8-2.57,1.39-3.73,2.42-2.91,2.6-7.01,3.56-10.29,5.54-.76.46-1.88,1.38-2.75,2.03-.79.59-.28,3.07.32,3.93,2.05.81,4.89.72,6.83-.19l12.66-5.94c2.6-1.22,4.69-2.93,5.35-6.02,1.11-.36,3.41-.42,4.31.19,2.13,4.46,7.37,8.71,11.58,11.24.66,2.12,1.57,6.41.57,8.06-.5.82-2.02,1.34-3.21,1.92l-3.79,1.83c-.6.29-1.23,1.61-1.73,2.54l5.91,1.43c1.44,3.22,4.32,5.39,8.01,5.45.71.66,1.35,1.33,2.07,1.78l6.02,3.71c.21.13,1.97.07,1.56-1.12-.49-1.42.03-4.09,1.14-5.48,1.5-1.88,1.66-3.39,1.77-5.77.18-3.86.28-7.64.12-11.58l-.3-7.31-.23-7.61.09-6.54.56-17.87c.18-5.94.03-11.64.07-17.57l.05-9.7.45-22.34.27-15.4c.09-5.22-.16-9.99-.78-15.18s.16-10.36.41-15.55l.76-15.64c.38-7.76.9-15.37.83-23.14-.04-4.46-.45-8.77-.23-13.32l.79-16.34c.21-4.42.44-8.58.3-13.02l-.47-15.37,1-21.29c.58-12.46.01-24.68.69-37.13.16-3.03.13-5.91.11-8.93l-.07-10.82.52-4.14c.18-1.43.23-3.56-.26-4.68-1.46-3.29.4-6.2-.1-9.46-.44-2.85-2.39-7.11-.93-10.04,1.22-2.45-3.78.96-10.02-1.2-2.99-1.04-5.98.62-9.09.35l-7.22-.62c-.75-.06-1.76-1.94-2.8-.77-.37.41-1.75.97-2.1.6l-1.26-1.32c-2.06,1.49-4.39,1.69-6.62.46l-3.47.51c-.44.06-1.04-.08-1.76-.2-2.33-.38-4.9-.22-7.35-.37-4.48-.27-8.7-.32-13.12-.14l-5.53.23-5.61.16c-2.78.08-7.01-.11-10.2-.23l-19.88-.78-11.16.56-3.71.42c-1.04.03-3.05-1.74-3.99-1.32-1.96.87-3.33-.2-4.64-.08l-5.74.52c-1.9.17-3.51.09-5.28.82-5.11,2.12-3.66-.78-7.1-.77h-4.96c-3.42.02-6.36-.57-9.77-.17s-3.85.05-5.68-.09c-10.35-.76-7.57.62-11.63.62-6.81,0-8.39-1.27-13.2-.85l-4.57.4c-2.83.25-9.49-.38-9.94-.29-1.19.24-1.93.35-2.96.44l-7.55.63c-2.93.24-5.71.06-8.45.03-1.71-.02-4.24.66-5.61.25-1.62-.49-2.39-.5-3.88-.54l-12.7-.34c-1.41-.04-2.63.17-4.12.03-2.32-.23-4.85.27-7.11.18-4.1-.16-7.97-.05-12.06.02-1.83.03-3.29-.29-5.23.14-1.67.37-4.19-.92-5.85-.69-2.03.29-3.84.26-5.72-.22-8.43,1.1-5.52-.2-8.41-.32-8.65-.36-1.63-1.29-15.39-.84l-4.83.16c-2.93.1-6.3-1.31-9.21-.12-4.82,1.97-.93-.55-8.37.3-1.66.19-3.64-.14-5.48-.14-1.12,0-3.27,1.74-4.24.82-1-.95-2.25-1.98-3.58-1.26-3,1.63-5.83,1.14-9.04,1.22s-8.35-.12-11.22-.7c-.51-.1-1.74.06-2.25.03l-10.6-.62c-1.56-.09-3.64-.84-5.04-.72-2.44.21-4.25.17-6.58-.39-1.67-.4-4.03.19-5.87.17l-11.9-.11-6.69-.19c-3.05-.09-6.12.22-9.13-.01-2.47-.19-4.3.17-6.2,1.85-1.35.32-3.82.33-5.48.23-.57-1.97,2.02-2.64,1.4-3.04-1.78-1.17-4.82-1.35-6.73-1.07-.42.06-.8,1.66-.39,1.78l1.6.46c.73.21,1.79.92,1.8,1.4l-3.37,2.19-3.29,2.17.05,1.8c.01.4-1.12.95-1.25,1.33-1.56,4.63-.03,3.38-.11,9.66-.03,2.6-.29,5.25-.03,7.73l.82,8.14c.13,1.3.03,2.77-.02,4.12l-.18,4.36c-.2,4.9.13,11.62.68,16.07.07.6,1.84,1.66,1.49,2.06-.3.34-1.51,1.11-1.64,1.59-.52,1.94-.19,5.42-.35,7.65-.45,6.17-.69,11.88-.41,18.03l.47,10.27-.07,10.31v17.89s-.03,20.69-.03,20.69l.31,36.25c.07,8.33-1.18,16.42-.51,24.83.3,3.74-.06,7.37.03,11.09l.45,19.68c.31,13.53,1.12,26.67.73,40.14-.06,1.91.21,3.86-.11,5.69-.27,1.52.91,3.25.77,4.31l-.86,6.23-.43,6.37-.49,6.07c-.05.63-.5,2.12-.28,2.67l1.52,3.73c.79,1.95,1.37,3.7-.53,5.67-2.32,2.41-3.94,6.73-2.68,10.1,3.29,1,6.87-1.95,8.19-4.99.38-.88,1.26-2.35,1.9-2.75l4.68-.76c2.63-.43,4.19-7.18,4.95-8.01,1.58-1.75,4.05-4.25,6.12-5.76l6.5-4.74,6.57-5.21c4.26-3.37,9.75-10.42,13.44-14.91,1-1.22,1.77-1.93,3.14-2.84,2.44-1.62,4.52-3.9,6.87-5.68,3.66-2.77,7.42-5.12,10.41-8.74l1.28-2.69c3.73,2.7,5.34-1.24,6.12,2.57,1.66,2.03,4.21,3.38,6.58,4.63,3.14,6.44,4.61,3.54,5.66,6.82,1.21,3.78,1.62,5.39,4.79,8.68l3.51,3.64c1.73,1.8,3.62,3.43,5.35,5.29l11.45,12.34c1.71,1.85,3.06,3.99,4.58,6.12,1.38,1.94.67,3.1,4.08,7.48l4.93,6.33,4.29,5.64c7.74-2,4.2.02,10.61-3.52,2.47-1.36,4.87-3.16,6.87-5.06l6.72-6.38,7.72-7.25c5.31-4.99,11.59-10.59,17.05-14.01.61-.38,1.66-1.5,2.07-1.34,5.55,2.16,5.67,4.17,11,4.14,3.61,5.38,7.62,10.4,11.5,15.45,3.26,4.24,6.46,8.05,10.25,11.81,1.27,1.26,2.6,2.7,3.72,4.07l2.35,2.87,5.73,6.72,2.6,3.16c2.43,2.96,4.63,5.76,6.87,8.92l4.04,5.72c1.93,2.73,3.6,5.61,5.93,8.06l15.17,16.03c3.52,3.72,6.56,7.62,9.79,11.61,2.08,2.57,4.06,5.18,7.47,6.22l5.36-1.94,5.4-.15c2.81-.08,5.59-1.54,8.43-1.74,4.34-.31,8.48-.54,12.81-1.34,3.56-.66,7.04-.79,10.63-1.19l9.87-1.09,9.68-1.02c1.25-.13,2.3-.33,3.49-.75,3.38-1.21,6.85-1.82,10.42-2.55l15.22-3.11c2.12-.43,4.13-.56,6.23-1.13l12.76-3.51c2.89-.79,8.72.48,10.45-.57.21-.13.21-.77-.01-.88l-1.08-.51c-1.33-.62-2.7-1.45-3.99-1.91-1.52-.55-2.36-1.16-3.31-2.42-2.48-3.3-6.54,2.26-11.12,1.56-.63,1.37-1.25,2.5-1.96,3.45l-.68-.73.27-.86c.43-1.39-.56,1.1-4.3.38-1.17-.22-9.13.98-10.97,1.3l-8.15,1.4c-1.5.26-3.51.55-4.75.58-.32-2.23-1.05-2.6-2.16-3.89-2.29-2.67-5.99-13.51-6.17-16.47-.16-2.58,3.64-3.61,5.37-3.4,3.3.41,5.42-1.33,8.13-2.07,2.63-.71,5.95.36,8.39-.98l.76-.42c.11-.06-.28-.39-.4-.45l-4.43-2.16,1.07-1.57c-5.2-1.12-5.04-3.69-5.84-3.62l-2.14.19c-3.62.32-7.69,1.88-11.28,2.91l-4.28-.15c-.43-.02-1.51-.4-1.85-.48-1.34.3-3.27.14-4.76-.08-4.57,2.78-1.57,0-10.39,1.95-8.35,1.85-6.68-.22-14.27,1.5-2.49.56-4.8.61-7.7.46-.16-1.33,0-2.71.21-4.31.29-2.15-.82-4.58-.96-6.71l-.87-13.27c-.04-.56.02-1.83.45-2.04,1.91-.91,4.08,1.59,6,1.44l5.67-.46,5.72-.22c5.92-.23,11.19.66,15.43-.53.36-.1,1.43-.81,1.33-1.11l-.38-1.18c2.04-1.47-3.49-.89-3.56-2.89-.08-2.25-.56-3.75-2.95-4.52-1.23-.39-3.38-.95-4.85-1.01l-15.4-.68c-4.05-.18-7.98.04-12.11.11l-6.11.1c-2.35.04-4.9,1.53-6.96-.51-1.93-1.9-4.87-1.61-7.41-1.97l-13.56-1.9c-.4-3.69-.4-8.48.29-12.14,1.25-6.6-1.09-10.09.45-16.56l4.93,3.19c7.58,2.07,15.13,1.45,22.88.8,7.88-.67,17.27,5.02,27.33,0-1.02-1.55-1.34-3.23-1.76-5.21l-.89-4.14c-1.47-.64-3.15-1.31-4.26-2.56l-4.39-.94c-2.42-.52-9.95-.18-9.66-.13l-10.16-1.44c-1.64-.23-2.79-.34-4.25-.62l-8.37-1.59-3.62-.39c-2.19-.24-4-.7-6.29-.61-3.37.13-7.13-.58-10.36.33-2.16.61-3.35.9-4.89-1.25-1.42-1.97-3.54-4.53-4.28-7.01-.82-2.74.58-5.92.6-8.65l.08-14.44c4.75-.39,5.56,3.47,10.07,3.12,3.54-.27,6.42.59,9.71,1.65,3.86,1.24,8.13.64,12.19,1.01l8.53.79c3.95.37,16.86,5.74,25.1,4.43.48-1.9,1.34-4.25,1.24-6.32l-.2-4.18,2.12-.52-2.17-2.41c-2.79-.3-6.13-3.05-5.97-3.08-1.91.34-2.14,2.06-2.64,1.4l-.99-1.3c-1.75.59-3.95,1.03-5.86.81l-3.88-.44c-2.75-.31-5.19-.8-8-.69-1.79.07-9.37-.86-11.74-1.31l-6.77-1.3c-2.79-.53-11.65-.58-14.95-.57-1.66,0-3.47-.62-5.27.18-.41.18-1.7.41-1.82,0l-.51-1.67-.98-3.11c.93-2.56.15-5.33.55-7.89l1.51-9.63c1.03-6.54,2.35-6.02,5.81-11.74,2.42,1.78,4.92,3.02,7.82,3.63l6.61,1.4c2.96.63,6.19.57,9.29,1.11l21.35,3.74c5.77,1.01,12.69,3.73,16.99,1.74,1.19-.3,3.74-.19,5.01-.31-.22-2.57.97-6.12,2.4-7.76-.13-3.51-4.26-4.42-6.96-4.87l-6.57-1.09c-1.11-.18-4.76-2.44-11.82-3.24-4.49-.51-9.33-1.33-13.71-2.12-.37-.07-1.39-.73-1.79-.86l-8.18-2.6-5.29-1.75c-.55-.18-1.93.1-2.57.18-1.17-1.66-.74-3.78-.39-5.76,2.08-11.73,3.89-9.86,6.8-20.16,1.87-.65,3.65.88,4.68,2.4,1.18,1.74,3.99,1.63,5.81,2.15,3.16.91,6.35.42,9.54.79l14.19,1.64,16.1,4.77c2.02.6,4.3.21,6.13,1.12.42.21,1.52.3,1.82.04,1.12-1.01,1.12-4.95,1.02-5.81l-.55-4.35,3.56-1.43c-.89-1.31-1.87-1.78-3.42-1.98l-1.87-1.91c-1.96-.45-4.75.22-6.72-.07l-11.99-1.78c-2.05-.3-3.97-.26-6.08-.54l-12.12-1.58c-1.22-.16-3.32.83-4.42.63l-4.35-.78c-1.14-1.7-.37-4.3-.18-6.35l.59-6.49c.13-1.4,1.03-2.71,2.04-3.54l.92-10.12c7.51,1.97,7,2.96,15.01,4.24,4.79.77,9.38.81,14.23.92,4.59.1,8.81.11,13.49-.3,2.45-.21,5.36.53,7.38-1.52-2.68-4.9.48-6.08-4.63-8.48-2.39-1.12-4.31-1.22-6.86-.8-1.51.25-2.61.23-4.13,1.29-.78.55-2.5-.76-3.38-.86l-10.87-1.23c-1.92-.22-4.59,1.19-6.34.89l-4.44-.75-.47-3.77c-2.24-3.77-3.48-7.54-2.64-11.88l1.26-6.55c.08-.44,1.18-.85,1.49-.61,4.12,3.2,9.92,2.47,15.34,2.36,3.49-.07,6.53-.39,9.91-.95,2.85-.47,9.1-1.34,11.53-.15.74-.55-.02-2.28-.65-3.13-4.41-5.93-9.48-6.25-16.75-5.73-.93.07-2.49-.09-3.24.14-1.08.33-1.91.49-2.89.51l-6.83.17c.45-8.43-1.76-4.85-1.49-14.46.07-2.36-.22-4.98-.29-7.23l3.44.3c.72.06,1.53-1.36,2.17-1.99.44-.43,2.11-.04,2.72-.21l4.58-1.3c.86.54,1.83,1.08,2.41.76,2.23-1.25.76-6.55-1.68-9.14l-5.18-5.48c-1.79-1.89-2.6-4.68-3.76-7-.59-1.18-1.4-3.35.02-4.67,3.87-3.59,8.67-5.8,13.78-8.04l3.99,4.57ZM503.89,165.36l-1.66,1.23,1.5.02c.25,0,.21-.57.16-1.25ZM190.72,459.48c2.96.2,7.41.37,9.79.35.43,0,1.46-1.52,1.65-1.17l.91,1.7c.39.73,1.21,1.93,1.89,2.02.59.08,1.92-.93,2.2-1.48.21-1.92-1.48-4.02-2.78-5.43l-1.43-1.56-3.94-4.33c-2.49-2.74-6.15-5.85-7.66-7.78l-3.02-3.89c-1.57-2.01-5.81-6.97-7.89-7.42.04-1.52-.77-2.69-1.97-3.78l-3.61-3.27c-.83-.76-1.89-1.61-2.61-2.56l-5.74-7.68c-.71-.96-1.86-1.74-2.51-2.71-1.37-2-2.77-3.58-4.67-5.12-1.51-1.22-2.6-2.98-4-4.46l-2.64-2.79c-2.09-2.21-3.75-4.52-5.91-6.72-2.04-2.08-3.69-4.68-5.88-6.56-1.85-1.59-2.92-3.16-4.41-5.03l-4.94-6.18-2.8-4.22c-1.86-2.8-4.06-5.18-6.46-7.57l-5.09-5.08c-4.74-4.73-3.29-7.14-6.84-9.78-4.66-3.45-2.3-4.2-4.18-4.59-.41-.08-1.35.33-1.67.63-5.1,4.91-5.02,1.17-8.1,5.97l-2.95,1.53c-.04,2.38-1.71,2.3-3.14,3.11-6.59,3.73-18.84,16.15-24.44,22.03-13.41,14.06-18.39,11.33-21.18,14.69-7.62,9.2-8.18,15.83-8.29,28.01l-.33,36.45c-.05,5.21.39,10-1.14,15.2-.7,2.38-.44,4.83-.34,7.31.17,4.4,1.88,3.45,1.28,4.35l-1.04,1.58c4.98,2.93,17.68,1.98,23.53.93l16.04-2.89c1.99-.36,4.38.12,6.4-.36l9.76-2.36,4.26-1c6.42-1.51,12.51-2.41,19.15-3.06,4.75-.47,9.33-1.88,14-2.71l7.91-1.41,17.58-3.87c4.8-1.06,9.49-1.14,14.28-1.7l12.8-1.49c8.16-.95,3.31-4.31,10.17-3.85ZM260.71,447.37c3.69.23,6.74-.13,9.81-2.04,4.76-2.96,8.19,1.47,13-2.83l-1.93-2.78c-.72-2.54-2.16-4.07-4.1-5.78l-7.51-6.62c-1.16-3.15-3.48-5.19-5.43-7.97l-3.38-4.84c-.83-1.19-1.98-1.8-2.83-2.84l-3.01-3.62-4.65-5.54c-1-1.19-2.46-2.26-3.24-3.64-1.26-2.22-3.82-3.27-5.15-5.2l-4.74-6.88c-.73-1.06-1.44-1.82-2.39-2.76-1.35-1.32-2.43-3.72-3.82-4.91-5.66-2.57-7.3-12.6-12.29-12.32-.24,2.14.02,4.01.42,6.24.21,1.18-2.11,1.49-2.84,2.06-2.59,2-5.25,4.11-8.06,5.85-5.89,3.64-11.64,8.76-14.95,14.73l1.37,3.44c.17.42.97,1.21,1.22,1.55,2.19,2.97,4.68,5.48,7.15,8.21l7.75,8.55,5.74,7.28c.79,1,1.74,2.11,2.59,2.98l8.48,8.68c1.09,1.11,2.33,2.02,3.1,3.54,2.02,4,4.4,7.42,7.18,10.99.57.74,1.14,3.16,2.52,2.95,5.46-.82,6.86-4.73,9.85-4.08,2.3.5,4.27.41,6.47-.64l3.68-1.76ZM440.34,480.67l3.66-.29,4.98-.15c.54-.03,1.62-.99,2.09-.77l1.78.82c5.65-5.28,2.85-9.41,6.94-11.03l-1.36-2.26,1.02-7.78.67-6.11c.19-1.73-.97-4.21.87-5.56.42-.3,1.34-.47,1.55-.87.17-.32.06-1.46-.12-1.77l-1.59-2.82-6.72.69c-1.98.2-3.87.71-5.88.21s-4.05-.35-5.71.53c-1.86,4.59-.31,8.56-1.93,11.15-1.35,2.16-1.43,4.3-2.2,6.72-.37,1.18-1.46,3.03-2.09,4.38l-2.88,6.18-3.64,7.96,5.59.73c1.46.19,3.29.17,4.94.04ZM345.29,691.82l1.36-4.49,3.03-13.95,1.06-4.4c1.67-6.93,3.08-13.74,5.7-20.39s2.44-13.66,4.21-20.27c1.16-4.34,2.94-8.36,4.13-12.77l2.58-9.59,3.07-7.99c1.21-3.14,1.87-5.82,3.37-8.86.76-1.55,1.56-3.61,2.02-5.33l1.8-6.81c1.4-5.32,2.55-10.49,3.58-15.89.18-.93.67-2.29,1.07-3.14,3.52-7.49,4.49-15.45,5.97-23.48l2.07-11.29,2.36-10.77c.38-1.72,1.68-4.05.64-5.78-.43-.72-2.03-1.45-2.76-1.95-.29-.2-.82-1.19-1.07-.96l-1.07.96c-1.57,1.4-4.16,1.08-6.22,1.33-2.2.26-3.31-.15-4.68-1.75-.88-1.02-3.02,0-3.56,1.3-.87,2.1-3.31.28-6.53,1.25-2.49-1.91-5.49-1.24-10.41-2.45l-3.46-.85c-.61-.15-1.68-.39-1.86-.45l.09-5.62.11-6.99c.03-2.2.92-4.78-.01-6.96-.76-1.78-1.14-3.79.63-5.06l5.54-3.96c.93,1.31,2.07,1.53,3.69,1.61,4.35.21,8.56,1.06,12.83-.47,1.46-.52,2.8-.24,4.34-.23l13.07.05,6.32-.17c.76-.02,1.72-.06,2.32-.15,1.52-.21.19-4.42,4.12-7.29,1.88-1.38,2.2-3.2,2.65-5.36l1.37-6.57c-.39-1.01-.96-2.31-.5-3.36.86-1.96,4.81-3.42,2.94-4.53-2.47-1.46-4.99-.89-7.33-.29-.06-.25-.87-.97-1.25-.78-3.56,1.77-8.94,3.54-13.08,4.15-1.18.33-2.7,1.82-3.65,1.89-6.85.51-7.48-.66-14.37,2.1-3.16,1.26-5.98,2.74-8.88,4.56l-3.98,2.5-5.93,3.9-8.16,5.39-5.21,3.21-3.53,2.56c-.88.64-2.23,1.68-3.06,2.42l-15.38,13.89c-3.68,3.33-6.43,8.51-8.65,11.43-3.28,4.32-8.57,12.24-10.12,17.06-.95,2.95-2.08,5.65-2.44,8.6l-1.04,8.34c-.27,2.13-.27,4.27-.44,6.42l-.32,4.15-.46,5.42c-.24,2.8-.24,5.51-.14,8.3l.14,3.71c.28,7.31.57,9.91,2.94,16.61l3.92,11.07c1.86,5.26,3.45,5.72,5.85,11.33,1.72,4.02,5.35,12.4,7.49,15.75,3,4.69,9.21,21.15,9.39,24.26l.53,9.24c.15,2.67,3.06,6.79.42,15.06-.7,2.18-1.27,4.08-1.68,6.29l-.72,3.82c-1.11,5.89-4.4,10.92-8.04,15.67-2.69,3.52-4.37,7.47-5.79,11.81,4.67,1.01,6.45-3.49,9.96-1.35,2.78,1.69,5.32,1.02,8.14.47l5.61-1.1c1.06-.21,3.55.29,4.17-.63,1.07-1.6,1.77-1.58,3.5-2.5s4.65-3.72,4.89-5.6.23-3.39.82-5.3ZM261.47,708.68c1.15-.34,2.52-2.12,3.45-2.63,1.97-1.08,3.66-2.36,5.23-4.12l5.87-6.59c.73-.81,1.27-1.48,2.16-2.2,1.66-1.33,2.57-3.63,3.93-5.32l6.87-8.62c.34-1.3.57-3.49,1-4.81l1.64-5.07c.89-2.75,1.17-5.24.9-8.14-.67-7.19-.49-10.93-2.87-17.86l-1.06-3.09-.72-2.13c-1.05-.61-1.63-1.89-2.3-3.24-2.15-4.35-4.24-8.59-5-13.39-4.66-2.12-2.02-4.9-5.52-8.51-.69-7.19-.57-1.71-1.62-5.63-.77-2.88-2.12-5.35-3.34-8.13-.81-1.85-.66-4.33-1.16-6.32l-2.7-10.78c-.66-2.62-.62-5.28-.53-7.93l.29-8.35-.51-4.14c-.23-1.89-.11-3.65.03-5.44l.77-9.65c.46-5.8-.54-8.93,1.1-14.19,2.34-7.52.58-5.4,1.72-11.25l.85-4.4c.71-3.65,1.36-7.14,2.55-10.66l1.91-5.63c.21-.63.27-2.08.32-2.96,2.46-2.09,4.24-4.95,5.35-8.05.69-.42,2.51-.83,2.96-1.39l2.62-3.29,6.33-5.97,2.6-2.36c4.09-.83,6.66-4.53,6.14-8.55l-4.1-.45c-1.21-.13-3.19,1.22-4.52,1.72-2.49.95-5.06,1.28-7.7,1.88-2.02.46-4.33,1.84-6.46,1.9-3.2.1-5.37.42-8.29,1.35l-4.78,1.54c-2.5.8-3.21,1.56-4.15,4.14-.82,2.24-3,9.27-2.83,11.24l.43,4.96c.29,3.38-.67,5.21-1.76,9.71l-1.61,6.66-2.88,14.94c-2.27,11.79-1.16,5.13-1.74,15.99l-.54,10.17-.69,8.22v4.03c.02,5.88-1.4,9.65-.8,13.89.23,1.63,1.62,3.86,1.42,5.51l-.73,5.97c-.28,2.3-1.2,4.61-1.28,6.92l-.26,7.62-.55,7.03c-.34,4.41-.54,8.22-.26,12.66.07,1.11-.44,3.24-.61,4.59l-1.1,8.91-.87,8.36c-.19,1.86-.49,3.67-.78,5.54l-2.29,14.92c-.39,2.53-.91,4.88-.98,7.46-.07,2.76-.56,5.31-.97,7.99l-.95,6.22c-.68,4.48-2.52,10.3,0,14.36.78,1.27,3.13,2.07,4.28,3.12,5.59,5.09,6.92.25,11.86,2.57,2.63-.76,3.25-3.81,7.17-.82ZM210.23,699.51c1.26-4.94,2.11-9.73,2.59-14.54l1.01-10.11,1.15-8.04c.55-3.84.48-7.82.83-11.76l1.36-15.31c.14-1.61.66-3.65.67-5.13l.07-6.67c.02-2.05-.42-4.49.14-6.45,1.46-5.1-.42-2.8.42-9.23l1.4-10.72c.1-.74.14-1.98.2-2.77l.66-8.12.76-9.44c.45-5.6.95-10.94,2.65-16.47.43-1.39.2-3.05.26-4.51l.24-5.66.53-9.34.53-9.83c.16-2.9.93-5.87,1.46-8.77.58-3.21.39-6.43.76-9.65.23-1.96,1.03-4.02,1.12-6.1l.4-9.42c.1-2.38-.18-4.84-.28-7.35-.26-6.09-1.25-2.31-.94-9.88l-5.23-.28c-.38,1.18-1.99,3.4-2.22,4.61-.98,5.34-1.53,10.39-2.01,15.75-.2,2.2-.06,4.58-.51,6.56-.39,1.74-.93,3.52-1.08,5.18l-.61,6.46c-.47,5,.02,9.8-.47,14.76l-1.46,14.96c-.24,2.43-.04,3.52-.88,5.83-1.16,3.17-.25,10.52-.94,14.39l-1.11,6.21-1.75,12.27c-.37,2.62-1.18,5.34-1.25,7.94-.13,4.41-.12,8.54-.94,12.79l-2.56,13.29c-.08.4-.17,7.18-.47,10.25-.62,6.38-.93,12.64-1.2,19.09l-.33,8.09-.83,10.24c-.42,5.22-.27,10.3-.88,15.61-.45,3.95.05,8.1-.74,11.84-.42,1.97-1.52,3.72-1.32,5.85l.46,5.02c1.39-.99,2.48-1.72,3.13-2.02.9,1.98,1.26,2.69,2.36,4.01,2.95-1.98,2.65-4.87,3.4-7.81l1.43-5.61ZM460.75,631.27c2.49.86,3.56,1.33,6,.49,1.6-.55,4.29-.98,6.18-.6l5.91,1.2c2.23.45,2.13-2.29,2.12-3.65l-.1-15.91c0-1.47.33-2.52.8-4.48,1.01.22.37.08-.52-.11-.5-3.53-.81-6.98-.75-10.76l.1-6.3c.05-3.22-.16-6.26.19-9.49l.9-8.28c.09-.82-.48-2.56-.44-3.34.68-11.32-1.56-6.69.41-19,.3-1.85.42-3.15.28-4.92-.15-1.95.66-4.35.67-6.3l.02-5.26.08-5.02.1-3.32c.04-1.26.49-2.84.5-3.8l.05-2.82c.04-2.37.34-4.19-.62-6.41-.73-1.68.51-4.17.69-5.84l.63-5.91.28-3c.28-3.02.65-5.8.87-8.82.06-.79-1.63-1.82-2.09-1.16-.43.61-2.44,7.71-1.19,7.99-.45,1.29-1.07,3.06-1.61,4.59l-1.56,4.43c-.22.62-.17,1.8-.14,2.4l-1.14,4.7-1.48,5.87-3.73,13.77-1.73,6.45-1.2,5.38-1.61,7.24-.42,2.89c-.33,2.23-1.08,4.41-1.59,6.6l-2.13,9.09c-.16.67-.6,1.74-.67,2.44-.1.96-.1,2.42-.31,3.13l-2.01,6.85c-1.03,3.5-2,7.01-2.8,10.6l-1.76,7.88-.72,4.37c-.45,2.75-.96,5.39-1.8,8.12l-1.49,4.82-2.27,8.26c-.49,1.77-.48,3.76.11,5.49,1.83-1.24,4.55-2.25,6.28-.75,1.82,1.58,3.42-.24,4.76.23ZM178.2,611.81c.38-.16,1.18-1.3,1.19-1.9,0-5.19.45-13.68,1.61-18.21-.48-1-.07-2.15.04-3.27l.62-6.61,1.92-23.97c.64-7.96,1.07-8.96,1.27-17.83l.28-12.46.72-3.72.83-14.84.4-5.14c.25-3.25-.42-5.27-.34-9.85,0-.53.28-1.48-.07-1.64l-1.4-.65c-2.07-.96-4.75-1.14-5.81,1.34-.38.88-1.08,2.01-1.74,2.37-.57.31-2.28-.43-3.04-.33-2.76.36-6.34,1.09-9.48.37-3.71-.86-1.58,5.28-1.2,11.24.06,1.01,1.18,14.6,1.08,14.09,1.48,7.29,3.03,14.48,3.48,22.12l.25,4.24,1.41,13.65.7,8.87.37,5.38c.22,3.21.7,5.85,2.9,8.44.1,1.3.19,3.2.18,4.6l-.08,9.36c-.04,4.8-.14,10.68,3.92,14.35ZM107.12,698.95c-.1,2.04-1.56,5.16.4,6.91.45.37,2.05.51,2.08,1.08l.16,2.78,3.95-.56c2.03-2.71-1.32-3.52.38-6.64.76-1.4.57-2.46.34-4.02-.43-2.85.86-6.06.62-8.79-.11-1.27-.21-2.16-.11-3.41l.38-4.82.55-.91c.12-.2-.45-.84-.36-1.07l.5-1.17c.11-.26-1.01-.73-1.08-1-.27-.99.88-3.16.86-4.2-.03-1.3-.44-3.05-.2-4.54.9-5.74.57-11.66,1.59-17.28l.5-2.72c1.27-6.94-.43-11.52,1.51-15.72.74-1.61,1.19-2.79,1.37-4.66l2.01-20.93.32-3.56,1.25-13.72c.14-1.49.47-2.82.76-4.31.63-3.3.8-6.7,1.15-10.12l.68-6.6.63-7.87c.23-2.91.57-5.74.68-8.62.17-4.3.42-8.37,1.11-12.67.21-1.29-.28-2.98-.22-4.04.4-8.07.38-6.07,3.2-11.44.6-1.14.18-2.57.29-3.77.18-2,2.03-8.17,2.83-10.32.68-1.81,1.94-2.72,1.13-4.95l-1.53-4.19c-.39-1.06-1.42-1.96-2.4-1.8-.71.11-1.59,1.34-2.02,2.04-3.23-1.59-1.35.51-7.39-.19-2.44-.28-5.67,2.43-5.33,5.05.31,2.38,2.82,4.77,1.39,7.29-.9,1.58-.69,3.54-1.2,5.2-.79,2.56-2.76,4.93-3.46,7.76-.95,3.83-.8,7.79-.69,11.8.01.52-.04,1.46.29,1.62s1.11.01,1.17-.36l.16-1.01c.04-.22.92-.1.91.12l-.08,1.01-.09,1.12c-.02.26-2.41.58-2,1.07l.66.79c.61.74,1.27,1.44,1.57,1.99s-.82,2.12-.68,2.82c.53,2.71.31,6.69-.36,9.66-.58,2.59-.6,5.14-.98,7.71-.53,3.57-.7,7.53,0,11.03l.85,4.22c.96,4.78-.62.63-1.22,7.13-.33,3.65-.99,7.12-.69,10.64.19,2.3-.21,3.98-1.86,5.65-.41.48.99,1.62,1.82,1.95l-.41,6.85c-.1,1.7.1,3.63-.14,5.24-.28,1.86-.67,3.57-.42,5.53.23,1.83-.14,3.39-.34,5.14-.31,2.72-.58,5.49-.72,8.23l-.41,7.63c-.14,2.54.17,5.15-.48,7.54-.55,2,.09,4.3-.13,6.41l-.84,7.91-.37,6.31-.58,6.99c-.41,4.92-.31,8.92-.76,13.25-.23,2.23-.39,4.2-.51,6.52ZM393.64,711.17l4.54-3.64c-.19-6.92,2.57-2.08,4.23-9.7l1.76-8.14c1.11-5.12,3.52-9.62,4.38-14.75.64-3.83,1.56-7.58,2.43-11.44l1.39-6.12c2.8-12.35,3.75-8.66,5.28-24.55.28-2.86,1.45-5.85,1.88-8.67l.9-5.94.93-5.75.58-3.57c.7-4.27,1.07-8.46,2.33-12.65l3.87-12.84c.99-3.3,1.89-6.57,2.73-9.95l2.42-9.7c.84-3.35,1.37-6.59,2.19-9.96l3.63-14.88c1.01-4.13,1.74-8.25,3.26-12.18l1.53-3.93c1.14-2.94,6.62-14.86,5.38-16.6-10.03-3.33-4.39-2.5-10.97-1.76-2.1.24-4.28-.42-6.43.71-3.66,1.94-5.61-5.07-6.3-1.33-.54,2.94-1.24,5.4-2.26,8.16-1.53,4.1-.89,4.95-2.66,9.93-.65,1.81-.94,3.42-1.35,5.27-1.11,5.02-3.58,9.77-3.84,14.89-.36,7.11-1.9,7.58-3.17,14.48-1,5.43-1.71,10.64-3.37,15.88-1.57,4.94.62,6-2.29,13.58-.5,1.3-.89,2.39-1.14,3.63l-1.82,8.81-2.89,11.19-.83,3.26-3.2,9.9-2.19,9.42-1.59,7.07-1.81,7.73c-.55,2.34-1.06,4.87-1.76,7.17-1.5,4.97-2.12,9.72-3.45,14.71l-1.88,7.07c-.43,1.6-.68,3.52-1.15,5.15l-2.82,9.91-1.56,5.93c-.36,1.37-.41,3.83-.97,4.96-1.04,2.09-2.13,4.35-2.13,6.74,8.9.19,6.93,3.31,18.21,2.5ZM27.06,623.47l.18,3.17c.55.08,1.62-.62,1.86-1.12l1.87-3.89c2.48-5.17,2.27-8.4,5.69-9.98,1.1-1.1,1.29-4.02,2.04-5.6,1.36-2.87,2.67-5.66,4.26-8.32,1.48-2.46,2.89-4.67,3.83-7.43.66-1.93,1.67-3.3,2.87-4.94,1.72-2.34,1.68-5.79,2.83-8.43l4.22-9.61c1.13-2.56,1.65-5.52,3.11-7.82,3.7-5.84,6.44-11.8,9.16-18.13.51-1.18,1.4-2.5,2.09-3.59,4.31-6.85,3.61-8.88,8.15-14.67,2.64-3.37,4.87-7,5.63-11.18-.85-.84-2.14-.75-3.27-.62-2.07.24-3.42.81-5.13,2.24-1.41,1.18-3.64.18-5.41.09-4-.2-10.19,3.04-18.97,3.66-11.65.83-7,3.09-15.19,4.04-2.97,3.95-1.85,8.82-1.51,13.21.83,10.95-.98,20.92-.93,31.46.02,4.9-1.03,18.66-2.49,23.2-1.15,3.57-1.69,6.91-.39,10.65-3.93,8.15,0,4.22-2.2,10.32-.71,1.99-1.12,4.62-1.27,6.7,1.58,1.23,1.88,3.14,1,4.6-.68.09-1.15.13-1.5.26s-.58,1.36-.55,1.75ZM74.37,635.09c.97-.14,2.84,2.31,3.71.49.25-.53.73-1.27,1.06-1.55.85-.73,3.13.75,3.9-.25.28-.36.6-1.24.77-1.84l1.74-6.41c-.52-1.14-.64-2.1-.48-3.17l.36-2.45c-.41-.03-.94.07-.9-.13s.27-1.19.19-1.37c-.7-1.52.8-4.67.91-6.37l.81-12.25c.24-3.61.12-7.27,1.02-10.72.82-3.17.26-6.1.44-9.08.34-5.66,3.3-11.01,3.06-16.86l-.13-3.02-2.29-1.82c-1.26,2.3-1.9,4.21-2.67,6.5l-3.04,9.01-4.22,10.08-1.24,3.52c-.57,1.61-.86,3.53-2,4.9-2.56,3.1-4.52,6.23-6.01,9.96-.85,2.14-1.81,4.32-2.27,6.55-1.48,7.09-2.18,5.45-4.08,11.61l-3.94,4.95c-1.18,1.49-1.9,1.87-1.8,4,.04.8-.36,2.1.06,2.66,2.36,3.12,5.68,2.87,7.57,3.22,3.11.57,6.35.31,9.48-.16ZM29.69,560.7c-.4-.62-1.87-.59-1.9,0,.12.58,1.9.54,1.9,0ZM170.3,692.07c-.5-1.1-1.24-2.61-1.5-3.57l-.92-3.45-1.85-6.75-.97-5.06c-.35-1.83-1.38-6.76-2.91-7.98l-.16-1.97-.5-7.09-.5-3.82c-.3-2.27-.91-4.41-1.54-6.5-1.09-3.63-2.23-5.09-1.55-6.7-2.09-.42-.98-3.24-1.68-4.22-.97-1.36-2.23-2.7-2.21-4.72l.06-4.68c-.5-.23-2.45-2.03-2.3-3.07l.82-5.65c.11-.75-.04-1.66-.21-2.53-.43-2.21-.08-7.6-.55-9.91-.24-1.21-.57-3.36.27-4.27.31-.34.52-1.82.12-1.85l-1.9-.17.05-2.82-.83-.62c-.16-.12.41-.42.59-.49l.99-.35c-4.47-1.72-1.73,3.78-2.83,10.93-.34,2.22-.09,4.67-.27,6.88l-.34,3.97c-.08,1-.48,2.3-.49,3.33-.04,5.54-2.19,11.12-1.72,16.56.27,3.15.09,5.52-.38,8.66l-1.37,9.09-.87,4.81c-.54,3.02-1.91,17.46-.42,20.4l-.87,2.85.07,7.34c.07,8.03,2.24,6.31,1,11.37l-1.1,4.47c.84,1.78,4.39,3.17,6.23,2.19,2.24-1.19,4.38-1.05,6.14.82l4.45.41c1.88.17,3.71-.09,4.88,1.88,2.12,3.54,3.47.01,8.26.41-3.3-5.64,2.64-5.32-.75-14.26-.41-1.09-.07-3.04-.46-3.89ZM38.45,710.76c1.88.11,3.34-.34,4.85-.26l3.95.21c8.3.44,3.73-.95,12.22-1.95l6.98-.82c1.92-.22,5.76-2.8,7.61-1.53.66.45,1.24,1.49,2.14,2.77,1.1-2.9,1.61-6.03,1.81-9.15l.19-2.95c.2-3.13.5-6.02.92-9.28.7-2.28,3.83-5.87,4.05-7.61.07-.6-.98-1.71-1.1-2.38-1.25-7.02-2.56-2.31-.73-8.49l1.51-5.1c.43-1.47-.68-4.02-1.73-5.62-.65-.02-1.93.85-2.33,1.44-1.26,1.85-2.74,1.36-4.62,1.21l-4.48-.35c-.95-.07-2.36-1.31-3.19-1.28l-13.55.5c-1.68.06-3.53.27-5.27.65-3.83.82-5.65,9.06-5.73,9.17l-4.08,5.02c-1.65,2.03-2.26,4.62-3.72,6.99-.17,1.16,0,3.08-.94,4.14-2.37,2.66-1.94,6.45-3.32,9.51-.76,1.69-1.97,3.37-2.57,5.11l-1.94,5.67c-.41,1.19-.81,2.58-.41,4.11,1.38.49,3.53-.28,5.25-.18l8.23.47ZM477.2,708.45l3.93-.59c1.37-.21,2.92-1.11,4.45-1.81l-4.73-2.48,2.79-5.43c.1-.2.83-.6.74-.78s-.42-.67-.43-.87c-.16-2.93-.67-4.5.89-4.73-.29-.13-.99-1.14-.89-1.71.08-.45.51-1.03.96-1.64-2.02-1.12-.98-3.2-1.11-4.61l-.32-3.63c-.16-1.74-1.26-1.59-.25-7.79.12-.77.21-1.93.74-2.22l2.43-1.36-5.59-2.27c-.62-.25-1.86-1.54-2.16-1.69-1.23.32-1.82.25-3.13.03l-6.98-1.19c-.21-.04-.91-1.21-.79-.94.06.14-.52.85-.74.85l-14.93.41c-3.81.1-7.07.05-10.81-.01-.36,6.13-3.11,5.56-3.44,10.06-.59,8.13-4.54,8.04-4.78,19.37-.04,1.99,1.4,4.73-.71,6.25-.86.62-2.57,1.62-2.66,3.04l-.24,3.69c4.15-2.1,10.14,1.4,12.87,1.44,9.56.15,9.88.92,20.72.35,4.44-.24,12.58.48,14.15.25Z"/><path fill="currentColor" d="M204.88,262.18l-5.83,1.49c-1.67.43-3.47.9-5.05,1.43-1.44.49-2.95,1.65-4.65,1.77-15.01,1.04-5.79,3.04-24.86,1.79l-10.85-.71-5.43-.93c-1.24-.21-2.41-.27-3.55,0-6.05-3.7-6.77-2.06-14.92-5.64l-13.02-5.72-3.92-2.55c-3.39-2.2-6.23-4.44-9.46-6.78l-6.22-4.51c-2.86-2.07-4.99-4.92-7.56-7.35-2.22-2.1-4.28-4.01-6.01-6.57-1.29-1.91-8.03-10.89-8.15-11.17l-4.85-12.19c-1.23-3.1-4.69-12.94-5.2-15.91-.56-3.3-.88-6.4-1.76-9.55l-2.46-24.3c-.52-5.16-.03-10.16.46-15.35.95-10,5.48-18.95,10.33-27.7,3.14-5.65,6.7-10.48,10.54-15.59,3.08-4.1,5.76-8.28,9.72-11.67l10.58-9.05c1.31-1.12,3.32-2,4.82-3.06,3.02-2.14,6.04-3.89,9.25-5.63l6.94-3.77c2.84-1.54,9.11-3.88,11.99-3.72l5,.27c4.27.23,8.44-.45,12.7.14l14.5.53c4.29.16,8.31-.21,12.57.22,8.18.82,9.98-.16,16.3,3.15,2.01,1.05,4.89,1.44,6.75,2.89,6.31,4.9,4.35,0,13.91,6.57,5.21,3.58,12.1,5.29,17.37,8.72,2.78,1.81,5.56,3.41,8.16,5.34l5.9,4.38c1.49,1.11,3.14,2.42,3.6,4.3s1.82,2.62,3.03,3.97c2.78,3.12,5.28,6.4,7.84,9.85.98,1.31.64,4.19,1.31,5.65,1.92,4.18,3.59,8.08,4.83,12.46l3.41,11.96c.89,3.12,1.7,6.17,1.97,9.41.97,11.93,2.94,30.19-.65,41.61-2.61,8.29-4.85,14.72-9.23,21.97l-5.47,9.07-5.66,9.25c-1.29,2.1-3.55,3.89-5.24,5.86-9.23,10.75-9.02,10.56-22.05,16.59l-3.98,1.84-6.69,2.79-7.97,3.3c-.77.32-2.01.61-3.08.89ZM161.23,236.29c1.78-4.53-2.26-7.83-4.92-10.36-2.51-2.38-4.85-5.12-6.91-7.91-8.54-11.57-4.27-4.7-9.51-17.01-1.44-3.4-1.61-7.22-2.47-10.77-1.57-6.45-1.65-5.01-2.78-11.71l-1.41-8.35c-.62-3.7-.48-14.67.35-18.29l2.95-12.88c1.98-8.66,5.97-22.24,10.1-30.08,2.27-4.31,7.11-7.97,8.11-10.17,3.1-6.86,5.55-1.71,7.42-9.98-1.9-.88-3.46-.64-5,.08s-4.09.85-5.23,1.76c-1.74,1.4-2.44,1.59-4.73.91-6.74,3.73-5.94,2.15-12.76,5.18-2.92,1.29-5.73,2.27-8.09,4.83l-3.42.59c-.3,1.92-2.43,1.74-3.41,2.7-6.8,6.69-12.75,14.17-17.51,22.53-2.15,3.78-3.79,7.82-5.27,11.89-2.01,5.5-2.58,11.4-3.15,17.22-.69,7.14.54,13.71,2.01,20.51.26,1.21-.73,3.61-.27,5.12,1.81,5.97,4.33,11.09,7.32,16.43,1.96,3.51,3.27,7.39,5.85,10.4l7.22,8.4c.97,1.13,3.01,2.18,4.27,3.14l5.19,4c12.21,9.41,16.71,9.81,31.27,13.9,2.01.56,4.22,1.64,5.97-.42l-1.18-1.66ZM206.3,224.51c1.64-.3,3.31-2.55,4.6-3.57,2.63-2.06,4.61-4.34,6.9-6.72l6.6-6.86,2.87-3.29c2.34-2.68,3.85-5.65,5.47-8.86l4.69-9.28c2.06-4.08,3.71-8.68,4.3-13.3.59-4.59,0-9.14.05-13.74.05-3.82-.62-7.38-1.17-11.13-.58-3.96-1.03-7.77-2.49-11.48l-3.97-10.08c-.9-2.29-2.39-4.4-3.9-6.37-2.37-3.08-4.42-5.94-6.63-9.24-.55-.81-1.93-2.05-2.7-2.73-5.31-.68-2.36-5.68-10.36-8.25-3.87-1.24-6.06.63-8.52,2.88-.81.74-2.82.92-3.33,2.31-.54,1.48-1.97,1.9-3.53,2.09l-.12,2.76c-5.89-1.11-12.95,6.42-16.45,10.49-6.86,7.97-9.23,12.39-11.76,22.48l-1.59,6.35c-.89,3.55-.44,7.33-.4,10.93.08,6.6.53,12.9,2.24,19.47,2.45,9.41,6.7,18.26,12.16,26.33,2.06,3.04,4.73,5.55,7.08,8.36,6.6,7.92,8.91,5.81,11.15,8.74l2.22,2.91,6.59-1.22Z"/><path fill="currentColor" d="M334.94,597.93c-.87.39-2.34,1.33-3.37,1.99-.84-.28-7.94-4.83-7.06-6.11-1.53-.66-3.66-.97-5.69-1.06l-.13-1.27c-2.53.12-2.83-1.97-3.62-3.74-5.91-3.66-1.26-3.25-4.76-5.82l.42-.8c.12-.23-.5-.45-.88-.69l-.79-.5c-.21-.13.56-.58.9-.86-.64-.19-1.89-.65-1.94-1.26l-.22-2.71c-.13-1.61-.72-3.52-.66-5.09.05-1.11-.08-1.87-.1-2.64-.13-4.03.34-7.86.78-11.78l.53-4.7c.11-.95.38-2.27.58-3.3l.98-4.88c.56-2.81,2.74-10.08,3.87-12.94,3.49-8.83,13.89-13.57,22.39-16.41,5.01-1.67,10.45-1.65,15.66-.5l9.22,2.03c2.75.61,4.65,3.59,6.81,5.02,2.98,1.98,4.15,4.26,5.46,7.46,2.03,4.94,2.83,7.87,1.34,13.84-1.54,6.14.56,2.1-.35,8.96-.75,5.61-.19,8.17-2.14,11.75-1.22,2.22-.37,5.57-1.6,7.83l-6.14,11.33c-3.29,6.08-3.28,5.03-9.96,10.55-1.95,1.61-4.8,3.53-7.05,4.24l-9.21,2.89c-.23.58-.46.79-.66.67-.64-.51-1.95-1.76-2.59-1.47ZM346,569.31c.94-.38,2.62-1.84,3.16-2.6,1.42-2.01,1.33-4.92,1.54-7.41l.56-6.65c2.75-4.22.62-5.95-1.57-11.64-.1-.26-.95-.49-1.21-.69l-2.69-2.06c-.29.43.14-.23.47-.73l-5.59-1.37c-.26.42-.64.91-.96,1.06l-3.45,1.63c-1.58.75-1.79,1.82-2.61,3.24-2.96,5.14-5.9,7.74-4.53,12.14-.92,2.84-1.28,7.28-.5,10.5.29,1.2,1.2,2.14,1.83,3.42.96,1.94,2.72,6.32,6.1,4.96l9.46-3.8Z"/></svg>';
7
+ var blueskyIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="24" height="24"><path fill="currentColor" d="M111.8 62.2C170.2 105.9 233 194.7 256 242.4c23-47.6 85.8-136.4 144.2-180.2c42.1-31.6 110.3-56 110.3 21.8c0 15.5-8.9 130.5-14.1 149.2C478.2 298 412 314.6 353.1 304.5c102.9 17.5 129.1 75.5 72.5 133.5c-107.4 110.2-154.3-27.6-166.3-62.9l0 0c-1.7-4.9-2.6-7.8-3.3-7.8s-1.6 3-3.3 7.8l0 0c-12 35.3-59 173.1-166.3 62.9c-56.5-58-30.4-116 72.5-133.5C100 314.6 33.8 298 15.7 233.1C10.4 214.4 1.5 99.4 1.5 83.9c0-77.8 68.2-53.4 110.3-21.8z"/></svg>';
8
+ var bluepyIconSvg = '<svg width="24" height="24" viewBox="5 7 54 50" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" fill="currentColor" d="M37.774,11.471c14.639,3.752 19.034,16.557 15.889,31.304c-0.696,3.261 -2.563,6.661 -6.356,8.693c-3.204,1.717 -8.07,2.537 -15.338,0.55c0,0 -9.634,-2.404 -9.634,-2.404c-10.684,-2.622 -13.957,-10.881 -12.308,-17.791c3.627,-15.201 15.543,-23.48 27.747,-20.352ZM27.471,24.991c-1.457,-0.698 -7.229,3.213 -7.663,8.926c-0.182,2.39 4.55,3.237 5.071,-0.169c0.725,-4.743 3.715,-8.218 2.592,-8.757ZM38.217,26.996c-2.083,0.327 -0.382,5.901 -0.595,10.727c-0.123,2.8 4.388,3.464 4.703,2.011c1.098,-5.073 -2.066,-13.058 -4.108,-12.738Z"/></svg>';
9
+ var blackskyIconSvg = '<svg width="24" height="24" viewBox="0 0 285 243" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M148.846 144.562C148.846 159.75 161.158 172.062 176.346 172.062H207.012V185.865H176.346C161.158 185.865 148.846 198.177 148.846 213.365V243.045H136.029V213.365C136.029 198.177 123.717 185.865 108.529 185.865H77.8633V172.062H108.529C123.717 172.062 136.029 159.75 136.029 144.562V113.896H148.846V144.562Z" fill="currentColor"/><path d="M170.946 31.8766C160.207 42.616 160.207 60.0281 170.946 70.7675L192.631 92.4516L182.871 102.212L161.186 80.5275C150.447 69.7881 133.035 69.7881 122.296 80.5275L101.309 101.514L92.2456 92.4509L113.232 71.4642C123.972 60.7248 123.972 43.3128 113.232 32.5733L91.5488 10.8899L101.309 1.12988L122.993 22.814C133.732 33.5533 151.144 33.5534 161.884 22.814L183.568 1.12988L192.631 10.1925L170.946 31.8766Z" fill="currentColor"/><path d="M79.0525 75.3259C75.1216 89.9962 83.8276 105.076 98.498 109.006L128.119 116.943L124.547 130.275L94.9267 122.338C80.2564 118.407 65.1772 127.113 61.2463 141.784L53.5643 170.453L41.1837 167.136L48.8654 138.467C52.7963 123.797 44.0902 108.718 29.4199 104.787L-0.201172 96.8497L3.37124 83.5173L32.9923 91.4542C47.6626 95.3851 62.7419 86.679 66.6728 72.0088L74.6098 42.3877L86.9895 45.7048L79.0525 75.3259Z" fill="currentColor"/><path d="M218.413 71.4229C222.344 86.093 237.423 94.7992 252.094 90.8683L281.715 82.9313L285.287 96.2628L255.666 104.2C240.995 108.131 232.29 123.21 236.22 137.88L243.902 166.55L231.522 169.867L223.841 141.198C219.91 126.528 204.831 117.822 190.16 121.753L160.539 129.69L156.967 116.357L186.588 108.42C201.258 104.49 209.964 89.4103 206.033 74.74L198.096 45.1189L210.476 41.8018L218.413 71.4229Z" fill="currentColor"/></svg>';
10
+ var reddwarfIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" width="24" height="24"><path fill="currentColor" d="M12.001 0A12 12 0 1 0 24 11.999A12.01 12.01 0 0 0 12.001 0m0 2.464a9.53 9.53 0 0 1 9.514 8.889a9.5 9.5 0 0 1-.863 4.649H3.35a9.53 9.53 0 0 1 .616-9.14a9.53 9.53 0 0 1 8.036-4.398"/></svg>';
11
+ var improIconSvg = '<svg width="24" height="24" viewBox="703.85 608.54 182 182" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m 750.80907,761.05196 c 32.00856,-14.57508 43.74607,-66.19889 46.75568,-82.89403" stroke="currentColor" stroke-width="17.198" stroke-linecap="round"/><path d="m 838.89477,749.94818 c -23.95309,23.1314 -46.79512,8.32209 -47.93933,-21.18402 -0.73348,-22.86664 6.60931,-50.60623 6.60931,-50.60623" stroke="currentColor" stroke-width="17.198" stroke-linecap="round"/><circle cx="803.50311" cy="640.67676" r="11.303644" fill="currentColor"/></svg>';
12
+ var leaIconSvg = '<svg width="24" height="24" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><rect width="32" height="32" rx="6.4" fill="currentColor"/><path d="M9.6 7.04h4.64v13.6h9.44v4.32H9.6z" fill="var(--bg-primary, white)"/></svg>';
13
+ var leafletIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.19354 43.7615C4.02326 47.9529 2.3971 50.6787 0.825968 54.5903C-0.40065 57.6442 1.08066 61.1142 4.13453 62.3408C7.18841 63.5675 10.6584 62.0862 11.8851 59.0323C12.1956 58.2591 12.4949 57.4976 12.784 56.7619L12.7867 56.755C13.8877 53.9534 14.8372 51.5562 15.9859 49.3971C17.2796 49.3269 18.7589 49.3161 20.4268 49.3067L20.6365 49.3056C23.6784 49.2888 27.3433 49.2687 30.5036 48.629C33.6657 47.989 37.5791 46.476 39.3089 42.4233C39.7772 41.3263 40.2521 39.7069 39.8363 38.0619C39.9611 38.0618 40.0889 38.0618 40.2201 38.0618C40.2903 38.0618 40.3619 38.0618 40.4348 38.0619C42.1036 38.063 44.452 38.0645 46.5513 37.4934C49.0009 36.8271 51.5766 35.2492 52.7066 31.9254C53.115 30.7244 53.1906 29.4632 52.8381 28.2712C52.9461 28.2521 53.0569 28.2327 53.1706 28.2127C53.2252 28.2032 53.2807 28.1935 53.3369 28.1837C54.7713 27.933 56.6912 27.5974 58.3315 26.9838C59.9271 26.3869 62.5489 25.0534 63.3345 21.9971C63.7822 20.2552 63.7353 18.411 62.7294 16.7456C62.3111 16.0531 61.779 15.5078 61.3069 15.1057C61.7466 14.5555 62.3058 13.79 62.6909 12.9455C63.3591 11.4803 63.7036 9.32754 62.3369 7.22123C60.7856 4.83067 58.1256 4.41306 56.8098 4.30487C55.4415 4.19236 53.9707 4.31254 52.9137 4.40806C52.7702 4.05645 52.5725 3.68669 52.2993 3.32178C50.832 1.36219 48.5559 1.19749 47.2748 1.23194C44.6865 1.30155 42.6621 2.45002 41.1987 3.64119C40.4307 4.26635 38.6031 6.82233 38.0052 7.48715C38.0052 5.10325 35.7086 3.89003 34.0939 3.64119C30.959 3.15806 29.0173 5.17673 27.2122 7.48715C24.962 10.3672 23.22 14.0741 21.1617 16.8593C20.4523 16.3978 19.6125 15.3179 18.2694 15.3803C16.0564 15.4831 14.5863 16.9832 13.6351 18.0097C11.9797 19.796 10.9264 23.0413 10.2095 25.4575C9.43004 28.9535 8.89843 30.4276 8.26688 34.2604C7.8913 36.5398 7.70089 38.3385 7.70089 40.8839C7.27002 41.7282 6.77687 42.635 6.19354 43.7615Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M18.9944 18.4871C19.6421 19.0561 20.4012 19.7231 22.0388 19.1533C23.1095 18.7808 24.4933 16.3538 26.0373 13.6458C28.2942 9.68748 30.8934 5.12877 33.3576 5.50855C36.3301 5.96665 36.1471 7.6122 36.0064 8.87787C35.9077 9.76563 35.8298 10.4665 36.8761 10.4396C37.9419 10.4122 38.9792 9.15957 40.1829 7.70596C41.8456 5.69807 43.826 3.30666 46.6379 3.23104C48.6204 3.17772 48.5891 4.03205 48.5574 4.89842C48.5371 5.45219 48.5166 6.01088 49.0218 6.34062C49.5194 6.66547 50.7707 6.55195 52.2092 6.42146C54.5154 6.21226 57.3027 5.95942 58.2369 7.39914C59.0583 8.66485 58.0119 9.92284 57.0089 11.1286C56.1594 12.1499 55.341 13.1337 55.7152 14.0531C56.0204 14.8031 56.647 15.2257 57.2613 15.64C58.2659 16.3175 59.2375 16.9727 58.7159 19.0019C58.1644 21.1475 54.8463 21.7286 51.7361 22.2733C49.1306 22.7296 46.6709 23.1603 46.106 24.4639C45.7516 25.2816 46.3394 25.6623 46.9979 26.0889C47.7849 26.5986 48.673 27.1739 48.1751 28.6384C47.011 32.0622 43.1238 32.0622 39.4756 32.0623C36.3442 32.0623 33.3888 32.0624 32.4827 34.2275C31.9596 35.4776 32.7514 35.6982 33.6201 35.9404C34.6836 36.2368 35.8623 36.5653 34.8856 38.8535C33.0165 43.2324 26.0433 43.2715 19.6599 43.3073C17.3193 43.3205 15.058 43.3332 13.1567 43.5592C12.9396 43.585 12.7471 43.7095 12.6334 43.8962C10.8838 46.767 9.64296 49.9245 8.31937 53.2926C8.0286 54.0325 7.73384 54.7825 7.42881 55.542C7.02558 56.5459 5.88485 57.0328 4.88093 56.6296C3.877 56.2264 3.39005 55.0857 3.79328 54.0817C5.29513 50.3426 7.02775 46.9042 8.92229 43.7479C12.0142 38.0542 18.109 31.0686 24.5542 25.8207C30.2889 21.0461 35.7654 17.4724 42.1392 14.7607C42.9371 14.4212 42.7002 13.4882 41.8673 13.7289C36.2143 15.3625 31.2171 18.6029 26.0373 21.8684C20.4035 25.4201 15.6824 30.2231 12.7771 33.7151C12.2649 34.3308 11.1447 33.8245 11.306 33.04C12.5677 26.9025 13.87 21.27 15.7789 19.2101C17.5913 17.2543 18.2114 17.7992 18.9944 18.4871Z" fill="var(--bg-primary, white)"/></svg>';
14
+ var pdslsIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M14 1a3 3 0 0 1 2.348 4.868l2 3.203Q18.665 9 19 9a3 3 0 1 1-2.347 1.132l-2-3.203a3 3 0 0 1-1.304 0l-2.001 3.203c.408.513.652 1.162.652 1.868s-.244 1.356-.653 1.868l2.002 3.203Q13.664 17 14 17a3 3 0 1 1-2.347 1.132L9.65 14.929a3 3 0 0 1-1.302 0l-2.002 3.203a3 3 0 1 1-1.696-1.06l2.002-3.204A3 3 0 0 1 9.65 9.07l2.002-3.202A3 3 0 0 1 14 1"/></svg>';
15
+ var anisotaReaderIconSvg = anisotaIconSvg;
16
+ var atptoolsIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg>';
17
+ var witchskyIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 512 512" width="24" height="24"><path fill="currentColor" d="M374.473 57.7173C367.666 50.7995 357.119 49.1209 348.441 53.1659C347.173 53.7567 342.223 56.0864 334.796 59.8613C326.32 64.1696 314.568 70.3869 301.394 78.0596C275.444 93.1728 242.399 114.83 218.408 139.477C185.983 172.786 158.719 225.503 140.029 267.661C130.506 289.144 122.878 308.661 117.629 322.81C116.301 326.389 115.124 329.63 114.104 332.478C87.1783 336.42 64.534 341.641 47.5078 348.101C37.6493 351.84 28.3222 356.491 21.0573 362.538C13.8818 368.511 6.00003 378.262 6.00003 391.822C6.00014 403.222 11.8738 411.777 17.4566 417.235C23.0009 422.655 29.9593 426.793 36.871 430.062C50.8097 436.653 69.5275 441.988 90.8362 446.249C133.828 454.846 192.21 460 256.001 460C319.79 460 378.172 454.846 421.164 446.249C442.472 441.988 461.19 436.653 475.129 430.062C482.041 426.793 488.999 422.655 494.543 417.235C500.039 411.862 505.817 403.489 505.996 392.353L506 391.822L505.995 391.188C505.754 377.959 498.012 368.417 490.945 362.534C483.679 356.485 474.35 351.835 464.491 348.095C446.749 341.366 422.906 335.982 394.476 331.987C393.6 330.57 392.633 328.995 391.595 327.273C386.477 318.777 379.633 306.842 372.737 293.115C358.503 264.781 345.757 232.098 344.756 206.636C343.87 184.121 351.638 154.087 360.819 127.789C365.27 115.041 369.795 103.877 373.207 95.9072C374.909 91.9309 376.325 88.7712 377.302 86.6328C377.79 85.5645 378.167 84.7524 378.416 84.2224C378.54 83.9579 378.632 83.7635 378.69 83.643C378.718 83.5829 378.739 83.5411 378.75 83.5181C378.753 83.5108 378.756 83.5049 378.757 83.5015C382.909 74.8634 381.196 64.5488 374.473 57.7173Z"/></svg>';
18
+ var deerIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 512 512" width="24" height="24"><path fill="currentColor" d="m 149.96484,186.56641 46.09766,152.95898 c 0,0 -6.30222,-9.61174 -15.60547,-17.47656 -8.87322,-7.50128 -28.4082,-4.04492 -28.4082,-4.04492 0,0 6.14721,39.88867 15.53125,44.39843 10.71251,5.1482 22.19726,0.16993 22.19726,0.16993 0,0 11.7613,-4.87282 22.82032,31.82421 5.26534,17.47196 15.33258,50.877 20.9707,69.58594 2.16717,7.1913 8.83789,7.25781 8.83789,7.25781 0,0 6.67072,-0.0665 8.83789,-7.25781 5.63812,-18.70894 15.70536,-52.11398 20.9707,-69.58594 11.05902,-36.69703 22.82032,-31.82421 22.82032,-31.82421 0,0 11.48475,4.97827 22.19726,-0.16993 9.38404,-4.50976 15.5332,-44.39843 15.5332,-44.39843 0,0 -19.53693,-3.45636 -28.41015,4.04492 -9.30325,7.86482 -15.60547,17.47656 -15.60547,17.47656 l 46.09766,-152.95898 -49.32618,83.84179 -20.34375,-31.1914 6.35547,54.96875 -23.1582,39.36132 c 0,0 -2.97595,5.06226 -5.94336,4.68946 -0.009,-0.001 -0.0169,0.003 -0.0254,0.01 -0.008,-0.007 -0.0167,-0.0109 -0.0254,-0.01 -2.96741,0.3728 -5.94336,-4.68946 -5.94336,-4.68946 l -23.1582,-39.36132 6.35547,-54.96875 -20.34375,31.1914 z" transform="matrix(2.6921023,0,0,1.7145911,-396.58283,-308.01527)"/></svg>';
19
+ var muIconSvg = '<svg width="24" height="24" viewBox="0 0 1000 712.872" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M875.8816,72.7683l.0813,250.1542c-1.1385,38.3852-17.3221,74.3306-44.1592,100.7611-56.3579,55.382-146.3841,56.6019-204.0432,2.2771-5.2861-4.9608-10.1656-10.3282-14.7197-16.0209-19.5992-24.56-31.5539-55.138-31.6352-87.3425l-.3253-197.8626,112.5531-19.8432.1626,215.3473c0,19.1113,17.2408,33.5057,35.0509,33.3431,18.8673-.244,34.075-15.045,34.7256-34.1563V92.5301l112.3092-19.7619Z M560.0171,298.0372v196.1547l-112.5531,19.8432v-212.8263c.8132-19.5992-14.3131-35.6201-33.2617-36.5147-19.1113-.8946-35.7015,13.7438-36.6774,33.3431v228.3592l-112.4718,19.7619v-217.5431c-1.3012-19.5179-17.8101-33.5057-36.4334-32.6925-18.7046.8132-33.7497,16.3462-33.5057,35.7828v226.8954l-112.3092,19.7619v-251.862c1.1385-37.2466,16.3462-72.3788,42.0448-98.728,45.6231-46.5989,116.6194-57.9031,174.2784-27.0811,1.7891.9759,3.8223.5693,4.8795-.6506,60.0988-65.4662,163.2183-63.3518,220.7147,4.1476,1.3825,1.6265,2.765,3.253,4.0662,4.9608,19.5992,25.1293,30.7407,56.1139,31.2286,88.8877Z"/></svg>';
20
+ var northskyIconSvg = '<svg width="24" height="24" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M341,279.65c13.49-28.78,31.95-68.19,119.16-68.19,68.59,0,137.73,27.84,210.92,57.32C741.22,297,819.21,328.36,904.8,338.15,815.77,218,673,140,511.88,140c-141.15,0-268.24,59.92-357.45,155.62,44,17.32,84.15,29.6,116.89,29.6C317.56,325.22,326.54,310.43,341,279.65Z"/><path fill="currentColor" d="M295.26,506.52c53.69,0,64.49-17.36,80.41-50.63,15.46-32.33,34.7-72.56,128.36-72.56,75,0,154.6,33.2,246.78,71.64,74.85,31.21,156.89,65.34,241,81.63a485.59,485.59,0,0,0-64.23-164.85c-108.88-6-201.82-43.35-284.6-76.69-66.77-26.89-129.69-52.22-182.84-52.22-46.88,0-56.43,15.74-70.55,45.89-13.41,28.65-31.79,67.87-118.24,67.87-44.25,0-90.68-13.48-141-33.11A488.33,488.33,0,0,0,62.86,435.7c8.3,3.38,16.55,6.74,24.68,10.08C163.88,477,235.84,506.52,295.26,506.52Z"/><path fill="currentColor" d="M319.2,687.81c61.24,0,73.38-19.09,91.18-55.66,16.7-34.28,37.48-76.95,137.58-76.95,81.4,0,174.78,39.89,282.9,86.09,52.19,22.29,107.38,45.84,163.42,65.43A483,483,0,0,0,997,570.22C898.41,554.4,806,516,722.27,481.05,640.39,446.91,563.19,414.72,504,414.72c-53.25,0-64,17.29-79.84,50.42-15.51,32.42-34.8,72.77-128.93,72.77-75.08,0-153.29-32-236.08-66l-8.91-3.64A486.91,486.91,0,0,0,24,601.68c27.31,9.55,53.55,19.52,79,29.19C183.24,661.42,252.61,687.81,319.2,687.81Z"/><path fill="currentColor" d="M275.87,880.64l272-184.16,120.79,114,78.55-56.88,184.6,125.1a485.54,485.54,0,0,0,55.81-138.27c-64.41-21.42-127-48.15-185.92-73.32-97-41.44-188.51-80.52-253.69-80.52-59.57,0-71.53,18.85-89.12,55C442,676.14,421.05,719.19,319.2,719.19c-81.26,0-159.95-29.93-243.27-61.61-17.07-6.5-34.57-13.14-52.49-19.69A486.06,486.06,0,0,0,95.19,884l91.29-62.16Z"/></svg>';
21
+ var tangledIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25" width="24" height="24"><path fill="currentColor" d="m 16.775491,24.987061 c -0.78517,-0.0064 -1.384202,-0.234614 -2.033994,-0.631295 -0.931792,-0.490188 -1.643475,-1.31368 -2.152014,-2.221647 C 11.781409,23.136647 10.701392,23.744942 9.4922931,24.0886 8.9774725,24.238111 8.0757679,24.389777 6.5811304,23.84827 4.4270703,23.124679 2.8580086,20.883331 3.0363279,18.599583 3.0037061,17.652919 3.3488675,16.723769 3.8381157,15.925061 2.5329485,15.224503 1.4686756,14.048584 1.0611184,12.606459 0.81344502,11.816973 0.82385989,10.966486 0.91519098,10.154906 1.2422711,8.2387903 2.6795811,6.5725716 4.5299585,5.9732484 5.2685364,4.290122 6.8802592,3.0349975 8.706276,2.7794663 c 1.2124148,-0.1688264 2.46744,0.084987 3.52811,0.7011837 1.545426,-1.7139736 4.237779,-2.2205077 6.293579,-1.1676231 1.568222,0.7488935 2.689625,2.3113526 2.961888,4.0151464 1.492195,0.5977882 2.749007,1.8168898 3.242225,3.3644951 0.329805,0.9581836 0.340709,2.0135956 0.127128,2.9974286 -0.381606,1.535184 -1.465322,2.842146 -2.868035,3.556463 0.0034,0.273204 0.901506,2.243045 0.751284,3.729647 -0.03281,1.858525 -1.211631,3.619894 -2.846433,4.475452 -0.953967,0.556812 -2.084452,0.546309 -3.120531,0.535398 z m -4.470079,-5.349839 c 1.322246,-0.147248 2.189053,-1.300106 2.862307,-2.338363 0.318287,-0.472954 0.561404,-1.002348 0.803,-1.505815 0.313265,0.287151 0.578698,0.828085 1.074141,0.956909 0.521892,0.162542 1.133743,0.03052 1.45325,-0.443554 0.611414,-1.140449 0.31004,-2.516537 -0.04602,-3.698347 C 18.232844,11.92927 17.945151,11.232927 17.397785,10.751793 17.514522,9.9283111 17.026575,9.0919791 16.332883,8.6609491 15.741721,9.1323278 14.842258,9.1294949 14.271975,8.6252369 13.178927,9.7400102 12.177239,9.7029996 11.209704,8.8195135 10.992255,8.6209543 10.577326,10.031484 9.1211947,9.2324497 8.2846288,9.9333947 7.6359672,10.607693 7.0611981,11.578553 6.5026891,12.62523 5.9177873,13.554793 5.867393,14.69141 c -0.024234,0.66432 0.4948601,1.360337 1.1982269,1.306329 0.702996,0.06277 1.1815208,-0.629091 1.7138087,-0.916491 0.079382,0.927141 0.1688108,1.923227 0.4821259,2.828358 0.3596254,1.171275 1.6262605,1.915695 2.8251855,1.745211 0.08481,-0.0066 0.218672,-0.01769 0.218672,-0.0176 z m 0.686342,-3.497495 c -0.643126,-0.394168 -0.33365,-1.249599 -0.359402,-1.870938 0.064,-0.749774 0.115321,-1.538054 0.452402,-2.221125 0.356724,-0.487008 1.226721,-0.299139 1.265134,0.325689 -0.02558,0.628509 -0.314101,1.25416 -0.279646,1.9057 -0.07482,0.544043 0.05418,1.155133 -0.186476,1.652391 -0.197455,0.275121 -0.599638,0.355105 -0.892012,0.208283 z m -2.808766,-0.358124 c -0.605767,-0.328664 -0.4133176,-1.155655 -0.5083256,-1.73063 0.078762,-0.66567 0.013203,-1.510085 0.5705316,-1.976886 0.545037,-0.380109 1.286917,0.270803 1.029164,0.868384 -0.274913,0.755214 -0.09475,1.580345 -0.08893,2.34609 -0.104009,0.451702 -0.587146,0.691508 -1.002445,0.493042 z"/></svg>';
22
+ var pinkskyIconSvg = '<svg viewBox="0 0 512 512" width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g><path fill="currentColor" d="M 208.621 314.167 C 207.265 316.222 205.968 318.315 204.708 320.429 C 203.149 322.581 201.539 324.689 199.925 326.8 C 198.147 329.129 196.403 331.481 194.662 333.837 C 190.539 339.369 186.219 344.736 181.848 350.074 C 178.893 353.711 176.266 357.307 173.969 361.413 C 175.93 363.881 176.919 364.758 180.086 365.239 C 181.15 365.232 182.215 365.224 183.311 365.216 C 184.519 365.216 185.727 365.216 186.971 365.215 C 188.273 365.198 189.576 365.18 190.917 365.162 C 192.252 365.157 193.586 365.152 194.961 365.147 C 199.23 365.128 203.498 365.085 207.767 365.042 C 210.658 365.025 213.55 365.009 216.441 364.995 C 223.535 364.961 230.628 364.894 237.723 364.829 C 237.723 346.795 237.723 328.762 237.723 310.183 C 215.886 307.758 215.886 307.758 208.621 314.167 L 208.621 314.167 L 208.621 314.167 Z M 338.536 0.323 C 339.276 0.315 340.015 0.308 340.777 0.3 C 343.216 0.278 345.655 0.264 348.095 0.253 C 348.932 0.248 349.769 0.244 350.631 0.239 C 355.065 0.215 359.498 0.199 363.931 0.188 C 368.489 0.176 373.046 0.136 377.604 0.091 C 381.127 0.061 384.65 0.052 388.173 0.048 C 389.852 0.042 391.531 0.029 393.209 0.008 C 406.998 -0.156 417.626 2.148 427.844 11.909 C 436.778 22.707 438.538 31.79 438.574 45.53 C 438.588 47.989 438.644 50.445 438.701 52.904 C 438.712 54.47 438.72 56.036 438.726 57.602 C 438.741 59.02 438.757 60.437 438.772 61.897 C 438.09 65.416 438.09 65.416 435.409 67.652 C 432.398 68.831 432.398 68.831 429.12 68.195 C 424.416 66.023 420.045 63.416 415.661 60.673 C 407.646 55.871 399.472 56.144 390.422 56.197 C 389.372 56.199 388.322 56.2 387.24 56.202 C 383.911 56.208 380.583 56.223 377.254 56.237 C 374.987 56.243 372.72 56.248 370.452 56.253 C 364.916 56.265 359.381 56.285 353.845 56.308 C 354.458 56.916 355.072 57.523 355.704 58.149 C 358.526 60.948 361.344 63.751 364.162 66.554 C 365.127 67.51 366.092 68.465 367.086 69.449 C 372.102 74.446 376.923 79.513 381.534 84.885 C 384.841 88.627 388.419 92.09 391.983 95.585 C 396.93 100.48 401.729 105.379 406.213 110.705 C 409.671 114.54 413.362 118.136 417.029 121.769 C 440.92 145.534 456.437 170.996 456.732 205.659 C 456.794 235.826 446.289 260.073 425.781 282.006 C 407.412 299.492 382.719 310.423 357.325 310.312 C 356.325 310.312 355.324 310.312 354.294 310.313 C 351.004 310.312 347.715 310.303 344.426 310.294 C 342.138 310.292 339.851 310.29 337.563 310.289 C 331.556 310.285 325.548 310.274 319.54 310.261 C 312.325 310.247 305.11 310.242 297.895 310.235 C 286.945 310.224 275.995 310.203 265.045 310.183 C 265.045 328.216 265.045 346.249 265.045 364.829 C 270.282 364.762 275.518 364.696 280.913 364.628 C 284.244 364.599 287.574 364.572 290.905 364.551 C 296.184 364.517 301.463 364.477 306.742 364.399 C 311.001 364.337 315.26 364.303 319.519 364.288 C 321.139 364.278 322.758 364.258 324.377 364.227 C 333.667 364.057 341.044 364.016 348.152 370.521 C 354.938 377.336 356.552 382.664 356.62 392.009 C 356.657 392.909 356.694 393.808 356.733 394.735 C 356.777 399.529 356.467 402.598 353.387 406.391 C 348.845 410.748 345.786 410.811 339.672 410.776 C 334.993 410.117 333.109 408.091 329.937 404.674 C 328.799 402.397 328.799 402.397 328.799 392.151 C 307.76 392.151 286.722 392.151 265.045 392.151 C 265.045 422.206 265.045 452.262 265.045 483.227 C 271.432 483.227 277.819 483.227 284.399 483.227 C 292.181 489.713 292.181 489.713 292.68 493.669 C 293.03 502.573 293.03 502.573 289.878 506.566 C 285.159 510.76 281.236 511.975 274.98 511.991 C 273.29 511.996 273.29 511.996 271.565 512 C 270.4 511.991 269.234 511.982 268.034 511.973 C 266.877 511.982 265.721 511.991 264.53 512 C 255.497 511.977 247.857 511.577 241.138 504.858 C 237.434 498.992 237.25 494.241 237.335 487.533 C 237.334 486.499 237.334 485.465 237.333 484.4 C 237.336 481 237.362 477.6 237.389 474.2 C 237.395 471.836 237.4 469.472 237.404 467.108 C 237.417 460.898 237.45 454.688 237.488 448.478 C 237.523 442.137 237.539 435.795 237.556 429.453 C 237.592 417.019 237.651 404.585 237.723 392.151 C 236.892 392.164 236.062 392.177 235.206 392.19 C 227.336 392.304 219.465 392.391 211.594 392.446 C 207.548 392.476 203.504 392.516 199.458 392.581 C 194.795 392.655 190.133 392.682 185.47 392.707 C 184.034 392.737 182.599 392.766 181.12 392.796 C 170.455 392.8 162.943 390.623 154.758 383.684 C 148.061 375.608 145.016 368.616 145.579 358.069 C 147.11 347.032 153.285 339.409 160.423 331.207 C 163.961 327.054 167.17 322.689 170.367 318.272 C 170.937 317.49 171.507 316.708 172.094 315.902 C 173.48 313.998 174.864 312.091 176.246 310.183 C 174.921 310.193 173.595 310.203 172.23 310.214 C 159.734 310.306 147.238 310.374 134.741 310.419 C 128.317 310.443 121.893 310.475 115.469 310.526 C 109.268 310.576 103.068 310.603 96.867 310.615 C 94.502 310.623 92.137 310.64 89.773 310.664 C 86.458 310.697 83.145 310.702 79.831 310.7 C 78.855 310.716 77.879 310.733 76.873 310.749 C 69.804 310.701 65.7 308.834 60.529 303.81 C 54.779 296.599 54.936 290.663 55.57 281.722 C 60.157 246.346 72.819 212.811 95.416 184.953 C 95.913 184.341 96.409 183.729 96.921 183.099 C 129.092 143.679 175.083 116.436 225.941 110.172 C 244.904 108.397 265.212 107.661 283.261 114.369 C 284.473 114.808 285.685 115.247 286.934 115.699 C 305.777 123.069 319.879 134.655 333.906 148.905 C 335.782 150.81 337.665 152.708 339.551 154.605 C 343.539 158.619 347.518 162.642 351.497 166.667 C 356.14 171.364 360.786 176.057 365.443 180.74 C 367.294 182.606 369.138 184.479 370.982 186.352 C 372.115 187.493 373.248 188.633 374.381 189.774 C 375.856 191.267 375.856 191.267 377.361 192.79 C 380.834 195.926 383.23 197.3 387.856 197.903 C 392.349 197.364 394.726 195.704 398.244 192.922 C 400.287 188.837 400.171 184.841 399.383 180.399 C 397.933 178.106 397.933 178.106 395.922 176.062 C 395.195 175.276 394.468 174.49 393.719 173.68 C 390.01 169.838 386.269 166.036 382.466 162.287 C 381.181 161.013 381.181 161.013 379.871 159.714 C 378.027 157.885 376.181 156.058 374.334 154.232 C 371.406 151.334 368.483 148.431 365.561 145.526 C 357.259 137.273 348.954 129.022 340.631 120.79 C 335.526 115.741 330.432 110.68 325.346 105.612 C 323.414 103.691 321.478 101.775 319.538 99.863 C 316.82 97.183 314.116 94.489 311.415 91.792 C 310.622 91.017 309.828 90.242 309.011 89.443 C 298.993 79.363 292.05 67.333 291.835 52.906 C 291.847 52.009 291.858 51.113 291.87 50.189 C 291.88 49.243 291.889 48.298 291.899 47.323 C 292.3 32.708 298.585 21.018 309.16 10.984 C 317.707 3.923 327.58 0.415 338.536 0.323 L 338.536 0.323 L 338.536 0.323 Z"/></g></svg>';
23
+ var marginIconSvg = '<svg width="24" height="24" viewBox="0 0 265 231" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M0 230 V0 H199 V65.7156 H149.5 V115.216 H182.5 L199 131.716 V230 Z"/><path fill="currentColor" d="M215 214.224 V230 H264.5 V0 H215.07 V16.2242 H248.5 V214.224 H215 Z"/></svg>';
24
+ var sembleIconSvg = '<svg width="24" height="24" viewBox="0 0 32 43" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M31.0164 33.1306C31.0164 38.581 25.7882 42.9994 15.8607 42.9994C5.93311 42.9994 0 37.5236 0 32.0732C0 26.6228 5.93311 23.2617 15.8607 23.2617C25.7882 23.2617 31.0164 27.6802 31.0164 33.1306Z" fill="currentColor"/><path d="M25.7295 19.3862C25.7295 22.5007 20.7964 22.2058 15.1558 22.2058C9.51511 22.2058 4.93445 22.1482 4.93445 19.0337C4.93445 15.9192 9.71537 12.6895 15.356 12.6895C20.9967 12.6895 25.7295 16.2717 25.7295 19.3862Z" fill="currentColor"/><path d="M25.0246 10.9256C25.0246 14.0401 20.7964 11.9829 15.1557 11.9829C9.51506 11.9829 6.34424 13.6876 6.34424 10.5731C6.34424 7.45857 9.71537 5.63867 15.356 5.63867C20.9967 5.63867 25.0246 7.81103 25.0246 10.9256Z" fill="currentColor"/><path d="M20.4426 3.5755C20.4426 5.8323 18.2088 4.22951 15.2288 4.22951C12.2489 4.22951 10.5737 5.8323 10.5737 3.5755C10.5737 1.31871 12.2489 0 15.2288 0C18.2088 0 20.4426 1.31871 20.4426 3.5755Z" fill="currentColor"/></svg>';
25
+ var streamplaceIconSvg = '<svg width="24" height="24" viewBox="0 0 493.29 481.09" xmlns="http://www.w3.org/2000/svg"><path d="m253.76 445.69-208.02-93.734-45.742-290.22 243.33-61.739 249.95 58.678-9.9427 310.8z" fill="currentColor" opacity="0.4"/><path d="m253.59 481.09-241.31-105.15-12.277-314.2 253.59 70.875 239.69-73.936-85.842 261.91z" fill="currentColor" opacity="0.7"/><path d="m493.29 58.678-239.7 73.933-0.59253 348.48 230.34-111.61z" fill="currentColor"/></svg>';
26
+ var grainIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.9823 37.4693C22.5838 37.4693 17.3117 36.9511 13.1662 35.9147C9.02069 34.8333 5.95661 33.2336 3.97396 31.1158C1.99132 28.9529 1 26.2493 1 23.005C1 19.986 1.96879 17.3725 3.90637 15.1645C5.84396 12.9115 8.86298 11.1542 12.9634 9.89252C17.109 8.63084 22.4486 8 28.9823 8C30.289 8 31.6183 8 32.9701 8C34.3219 8 35.6512 8 36.9579 8H62.7773V16.5163C59.8484 16.6515 56.8745 16.5164 53.8554 16.1108C50.8815 15.6602 48.1328 15.0744 45.6095 14.3535L44.866 13.3396C46.8937 13.9705 48.8087 14.7815 50.6111 15.7729C52.4586 16.7642 53.9456 17.9583 55.0721 19.3551C56.1986 20.752 56.7618 22.4192 56.7618 24.3568C56.7618 27.1505 55.793 29.5387 53.8554 31.5214C51.9629 33.4589 48.9664 34.9459 44.866 35.9823C40.8106 36.9736 35.516 37.4693 28.9823 37.4693ZM43.379 56.6649V54.8399C43.379 53.4881 42.7707 52.677 41.5541 52.4067C40.3825 52.1814 38.5125 52.0687 35.9441 52.0687H17.0864C13.8872 52.0687 11.2962 51.8434 9.31358 51.3928C7.376 50.9422 5.88902 50.3339 4.85264 49.5679C3.86131 48.8019 3.18541 47.9457 2.82493 46.9995C2.50951 46.0983 2.3518 45.1971 2.3518 44.2959C2.3518 42.3583 3.07276 40.8488 4.51468 39.7673C5.95661 38.6408 8.16455 37.8523 11.1385 37.4017C14.1125 36.9511 17.8975 36.7258 22.4936 36.7258L28.9823 37.4693C25.1973 37.4693 22.5612 37.672 21.0743 38.0776C19.5873 38.4381 18.8438 39.1816 18.8438 40.3081C18.8438 40.9389 19.1367 41.412 19.7225 41.7275C20.3082 41.9978 21.0968 42.133 22.0881 42.133H42.0272C46.4881 42.133 50.0028 42.4484 52.5712 43.0793C55.1397 43.7552 56.9421 44.8591 57.9784 46.3912C59.0599 47.9683 59.6006 50.1086 59.6006 52.8122V56.6649H43.379ZM28.9823 28.615C31.9563 28.615 34.3444 28.3897 36.1468 27.9391C37.9943 27.4434 39.3236 26.79 40.1347 25.979C40.9457 25.1679 41.3513 24.2667 41.3513 23.2754C41.3513 22.1489 40.9457 21.1801 40.1347 20.369C39.3236 19.5579 38.0168 18.9271 36.2144 18.4765C34.412 18.0259 32.0013 17.8006 28.9823 17.8006C26.0083 17.8006 23.5976 18.0259 21.7502 18.4765C19.9027 18.9271 18.5509 19.5579 17.6948 20.369C16.8386 21.1801 16.4105 22.1489 16.4105 23.2754C16.4105 24.2667 16.8161 25.1679 17.6272 25.979C18.4833 26.79 19.8351 27.4434 21.6826 27.9391C23.53 28.3897 25.9633 28.615 28.9823 28.615Z" fill="currentColor"/></svg>';
27
+ var popfeedIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M32.0001 1.09973C45.9147 1.09978 57.2008 12.0113 57.2008 25.4784C57.2008 38.9454 45.9147 49.8567 32.0001 49.8568C29.4003 49.8568 27.047 49.5296 24.7268 48.8357C24.1191 48.6539 23.4581 48.819 23.0353 49.2846L11.8188 61.6346C11.3417 62.1589 10.8682 62.5566 10.3222 62.7565C9.77269 62.9578 9.16182 62.9547 8.41926 62.703C7.66113 62.4459 7.25363 61.9416 7.03822 61.4125C6.82456 60.8876 6.79974 60.3386 6.79915 59.9836V25.4784C6.79917 12.0113 18.0854 1.09973 32.0001 1.09973ZM32.7157 13.178C32.3467 12.3503 31.1719 12.3503 30.8029 13.178L27.6925 20.1556C27.5403 20.4969 27.2177 20.7313 26.8461 20.7706L19.249 21.5722C18.3478 21.6674 17.9848 22.7849 18.658 23.3916L24.3329 28.5057C24.6105 28.7559 24.7338 29.1352 24.6562 29.5008L23.0711 36.9738C22.883 37.8602 23.8336 38.5509 24.6186 38.0982L31.2361 34.2812C31.5598 34.0945 31.9586 34.0945 32.2823 34.2812L38.8998 38.0982C39.6848 38.5509 40.6353 37.8603 40.4473 36.9738L38.8624 29.5008C38.7848 29.1352 38.9079 28.7559 39.1855 28.5057L44.8604 23.3916C45.5336 22.7849 45.1706 21.6674 44.2694 21.5722L36.6723 20.7706C36.3006 20.7313 35.978 20.497 35.8258 20.1556L32.7157 13.178Z" fill="currentColor"/></svg>';
28
+ var sifaIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.2088 1.84613C22.4429 1.84614 28.3956 7.79885 28.3956 15.0329C28.3956 18.8469 26.6327 21.6555 23.1796 21.6555C21.6008 21.6555 20.3755 21.0682 19.5103 20.0663C18.3527 21.0567 16.8502 21.6555 15.2088 21.6555C11.5537 21.6555 8.58621 18.6881 8.5862 15.0329C8.5862 11.3778 11.5536 8.41035 15.2088 8.41035C16.3413 8.41035 17.4076 8.69547 18.3403 9.19744C18.6926 8.72009 19.2591 8.41038 19.8973 8.41035C20.9648 8.41035 21.8314 9.27693 21.8314 10.3444V15.0329C21.8314 15.7841 21.9179 16.4822 22.1573 17.045C22.3416 17.4779 22.6564 17.7874 23.1796 17.7874C23.7027 17.7874 24.0173 17.4778 24.2016 17.045C24.4409 16.4822 24.5275 15.7841 24.5275 15.0329C24.5275 9.92092 20.3208 5.71427 15.2088 5.71426C10.0968 5.71426 5.89011 9.92092 5.89011 15.0329C5.89012 20.145 10.0968 24.3516 15.2088 24.3516C17.1329 24.3516 19.2115 23.7904 20.7023 22.7994C21.5912 22.2086 22.7927 22.4507 23.3836 23.3396C23.9744 24.2286 23.7324 25.4301 22.8434 26.0209C20.7685 27.4 17.8867 28.2198 15.2088 28.2198C7.97469 28.2198 2.02199 22.267 2.02198 15.0329C2.02198 7.79884 7.97469 1.84613 15.2088 1.84613ZM15.2088 12.2785C13.6885 12.2785 12.4543 13.5127 12.4543 15.0329C12.4543 16.5532 13.6885 17.7874 15.2088 17.7874C16.7291 17.7874 17.9632 16.5532 17.9633 15.0329C17.9633 13.5127 16.7291 12.2785 15.2088 12.2785Z" fill="currentColor"/><path d="M21.4505 36.9231C24.5579 36.9231 27.0769 39.4421 27.0769 42.5494V55.2088C27.0769 58.3161 24.5579 60.8351 21.4505 60.8351H8.79121C5.68385 60.8351 3.16483 58.3161 3.16483 55.2088V42.5494C3.16483 39.4421 5.68385 36.9231 8.79121 36.9231H21.4505ZM8.79121 41.1428C8.01437 41.1428 7.38462 41.7726 7.38462 42.5494V55.2088C7.38462 55.9856 8.01437 56.6154 8.79121 56.6154H21.4505C22.2274 56.6154 22.8571 55.9856 22.8571 55.2088V42.5494C22.8571 41.7726 22.2274 41.1428 21.4505 41.1428H8.79121ZM55.2088 3.0769C58.3162 3.0769 60.8352 5.59592 60.8352 8.70328V21.3626C60.8352 24.47 58.3162 26.989 55.2088 26.989H42.5495C39.4421 26.989 36.9231 24.47 36.9231 21.3626V8.70328C36.9231 5.59592 39.4421 3.0769 42.5495 3.0769H55.2088ZM42.5495 7.29668C41.7726 7.29668 41.1429 7.92644 41.1429 8.70328V21.3626C41.1429 22.1395 41.7726 22.7692 42.5495 22.7692H55.2088C55.9856 22.7692 56.6154 22.1395 56.6154 21.3626V8.70328C56.6154 7.92644 55.9856 7.29668 55.2088 7.29668H42.5495Z" fill="currentColor"/><path d="M42.5495 50.989C44.4916 50.989 46.0659 52.5634 46.0659 54.5055C46.0659 56.4476 44.4916 58.022 42.5495 58.022C40.6073 58.022 39.033 56.4476 39.033 54.5055C39.033 52.5634 40.6073 50.989 42.5495 50.989ZM55.2088 50.989C57.1509 50.989 58.7253 52.5634 58.7253 54.5055C58.7253 56.4476 57.1509 58.022 55.2088 58.022C53.2667 58.022 51.6923 56.4476 51.6923 54.5055C51.6923 52.5634 53.2667 50.989 55.2088 50.989ZM48.8791 38.3297C50.8212 38.3297 52.3956 39.904 52.3956 41.8461C52.3956 43.7882 50.8212 45.3626 48.8791 45.3626C46.937 45.3626 45.3626 43.7882 45.3626 41.8461C45.3626 39.904 46.937 38.3297 48.8791 38.3297Z" fill="currentColor"/></svg>';
29
+ var blentoIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.2728 7.25019C24.2728 3.79832 27.0711 1.00003 30.5229 1.00003H57.2186C60.6705 1.00003 63.4688 3.79833 63.4688 7.2502V33.4355C63.4688 36.8874 60.6705 39.6857 57.2186 39.6857H30.5229C27.0711 39.6857 24.2728 36.8874 24.2728 33.4355V7.25019Z" fill="currentColor" opacity="0.8"/><path d="M1 7.25019C1 3.79832 3.7983 1.00003 7.25017 1.00003H10.0608C13.5127 1.00003 16.311 3.79833 16.311 7.2502V33.4355C16.311 36.8874 13.5127 39.6857 10.0608 39.6857H7.25017C3.7983 39.6857 1 36.8874 1 33.4355V7.25019Z" fill="currentColor" opacity="0.6"/><path d="M1 53.8975C1 50.4457 3.7983 47.6474 7.25017 47.6474H33.6396C37.0915 47.6474 39.8898 50.4457 39.8898 53.8975V57.0143C39.8898 60.4662 37.0915 63.2645 33.6396 63.2645H7.25018C3.79831 63.2645 1 60.4662 1 57.0143V53.8975Z" fill="currentColor" opacity="0.9"/><path d="M47.7495 53.8975C47.7495 50.4457 50.5478 47.6474 53.9997 47.6474H57.2186C60.6705 47.6474 63.4687 50.4457 63.4687 53.8975V57.0143C63.4687 60.4662 60.6705 63.2645 57.2186 63.2645H53.9997C50.5478 63.2645 47.7495 60.4662 47.7495 57.0143V53.8975Z" fill="currentColor"/></svg>';
30
+ var offprintIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.3556 31.5106C15.7241 34.5814 17.0753 40.8461 20.1462 46.1283C20.5147 46.8653 21.4975 46.7424 21.743 46.1283L39.4316 13.6992C39.8002 13.085 39.6773 12.2252 39.0631 11.7338C36.4836 9.52275 33.1669 8.17154 29.2362 8.29436C15.1099 8.66289 14.9871 26.4743 15.3556 31.5106ZM34.7638 55.5868C48.5216 55.2181 49.013 37.5296 48.5216 32.6161C48.276 29.4223 46.9247 23.0348 43.7309 17.5072C43.4852 17.0158 42.6254 17.0158 42.3797 17.5072L24.5684 50.1819C24.3227 50.9188 24.4455 51.6559 24.9368 52.1473C27.5165 54.3583 30.8331 55.7095 34.7638 55.5868ZM49.7499 3.99506L49.013 5.34628C48.5216 6.20615 48.7673 7.18884 49.5042 7.55734C59.3314 13.822 62.525 24.6317 62.525 31.7563C62.525 40.6006 55.1548 61.2371 32.6757 61.2371C28.2534 61.2371 24.4455 60.623 21.0061 59.5175C20.3919 59.2718 19.532 59.5175 19.1635 60.1316L18.1808 62.0972C17.8123 62.834 16.9525 63.0797 16.2154 62.7113L14.8642 61.9742C14.1272 61.6058 13.8815 60.7459 14.25 60.0089L15.1099 58.4119C15.4784 57.6749 15.2327 56.815 14.6186 56.4466C4.79158 50.059 1.47498 39.1265 1.47498 32.2477C1.47498 23.4033 8.23102 2.7667 30.8331 2.7667C35.5009 2.7667 39.4316 3.38089 42.8711 4.48641C43.6082 4.73208 44.468 4.36358 44.8364 3.74939L45.942 1.784C46.3106 1.16981 47.1704 0.924138 47.7846 1.29265L49.2587 2.02967C49.8729 2.39819 50.1186 3.25804 49.7499 3.99506Z" fill="currentColor"/></svg>';
31
+ var pcktIconSvg = '<svg width="24" height="24" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M35.0415 0.551819C41.0486 0.551819 46.1485 2.56577 49.6504 6.89075C49.9931 7.31408 50.3154 7.75501 50.6196 8.2117C52.0145 9.12372 53.2731 10.2547 54.3737 11.6141C57.7727 15.8121 59.2539 21.6859 59.2539 28.6181C59.2539 34.128 58.3163 38.9765 56.2292 42.8505C56.4404 42.9955 56.6437 43.1574 56.8374 43.336C57.7636 44.1894 58.3016 45.2584 58.6399 46.2062L58.6595 46.2615L58.6779 46.318C59.1153 47.6859 59.4069 49.675 58.2639 51.5165C58.0283 51.8961 57.7584 52.2242 57.4671 52.5088C57.5288 52.8967 57.5505 53.3056 57.5184 53.7347C57.3555 55.9066 55.9376 57.3616 54.7139 58.2331L54.7116 58.2349C53.8013 58.8821 52.5029 59.5938 50.8721 59.5939C49.9274 59.5938 49.118 59.3623 48.4291 58.9977C47.7318 59.364 46.9175 59.5939 45.9763 59.5939C44.4172 59.5938 43.0829 58.882 42.1726 58.2349L42.1311 58.2049C41.1223 57.4652 39.9082 56.2835 39.4881 54.5718C38.6861 54.3046 37.992 53.8974 37.4493 53.5115L37.4078 53.4816C36.7846 53.0246 36.0834 52.3989 35.5391 51.584C35.046 51.4755 34.5619 51.3493 34.0878 51.204V57.6387C34.0878 58.9405 33.7588 60.5905 32.4428 61.8741C31.1436 63.1417 29.4987 63.4482 28.202 63.4482H15.2791C13.9774 63.4482 12.3506 63.1199 11.0741 61.844C10.1135 60.8834 9.69005 59.7244 9.53922 58.6546C8.46987 58.5037 7.31112 58.0807 6.35072 57.1203C5.07428 55.8439 4.74614 54.2171 4.74609 52.9153V7.11736C4.74609 5.81557 5.07419 4.18831 6.35072 2.91177C7.6272 1.63544 9.25403 1.30773 10.5557 1.30772H23.4787C24.5333 1.30772 25.8009 1.5103 26.9313 2.24467C29.3471 1.12842 32.077 0.551855 35.0415 0.551819Z" fill="currentColor"/><path d="M50.5802 42.6738C51.1877 44.5736 50.5445 45.6642 48.4718 46.016L47.7571 46.1215L48.2574 46.6844C49.6868 48.1268 49.6153 49.4285 47.9358 50.6247C47.2926 51.082 46.7208 51.3283 46.149 51.3283C45.3271 51.3283 44.6482 50.7654 44.0764 49.6747L43.719 49.0063L43.3617 49.6747C42.79 50.7654 42.0753 51.3283 41.2533 51.3283C40.7531 51.3283 40.1455 51.082 39.5023 50.6247C37.8227 49.3933 37.7155 48.1268 39.1807 46.7196L39.7167 46.1215L38.9663 46.016C36.9294 45.6642 36.2147 44.5736 36.8579 42.709C37.2867 41.337 37.9657 40.7037 39.002 40.7037C39.4308 40.7037 39.9669 40.8445 40.5386 41.1259L41.2176 41.4777L41.0747 40.7389C40.8245 38.7337 41.6464 37.7486 43.719 37.7486C45.7559 37.7486 46.6136 38.7337 46.292 40.7389L46.1848 41.4777L46.8995 41.1611C47.507 40.8797 48.0073 40.7389 48.4718 40.7389C49.4367 40.7389 50.1157 41.3722 50.5802 42.6738Z" fill="var(--bg-primary, white)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M35.0419 4.09436C45.3955 4.09436 50.9885 10.8961 50.9885 23.8948C50.9885 29.8304 49.8208 34.4888 47.5676 37.7996C47.4703 37.6397 47.36 37.4833 47.2314 37.3343C46.3152 36.2727 44.9651 35.9771 43.7195 35.9771C42.4584 35.9771 41.1123 36.2715 40.1914 37.3274C39.765 37.8164 39.5143 38.3736 39.3824 38.9517C39.2554 38.9395 39.1286 38.9321 39.0025 38.9321C38.0819 38.9321 37.2067 39.2311 36.4932 39.8978C35.8431 40.5055 35.4464 41.3086 35.1838 42.131C35.0048 42.6498 34.8792 43.2062 34.8603 43.7684C31.311 43.7312 28.2745 42.6054 25.8224 40.7477V52.9154C25.8223 54.4267 25.0661 55.1825 23.4791 55.1825H10.5562C9.04487 55.1825 8.28916 54.4266 8.28906 52.9154V7.11737C8.28906 5.60594 9.04477 4.85029 10.5562 4.85026H23.4791C25.0662 4.85026 25.8224 5.60595 25.8224 7.04186C28.2407 5.15258 31.339 4.09441 35.0419 4.09436ZM30.1346 17.3384C26.5814 17.3384 25.4113 19.989 25.4113 24.4235C25.4113 28.8582 26.5813 31.5085 30.1346 31.5085C33.688 31.5085 34.858 28.8582 34.858 24.4235C34.8579 19.989 33.6879 17.3384 30.1346 17.3384Z" fill="var(--bg-primary, white)"/></svg>';
32
+ var standardReaderIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 7v14"/><path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"/></svg>';
33
+ var taprootIconSvg = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M7 20h10"/><path d="M10 20c5.5-2.5.8-6.4 3-10"/><path d="M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z"/><path d="M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z"/></svg>';
34
+ var WAYPOINT_ICON_SVGS = {
35
+ aturi: aturiIconSvg,
36
+ aturiExplore: aturiExploreIconSvg,
37
+ anisota: anisotaIconSvg,
38
+ bluesky: blueskyIconSvg,
39
+ bluepy: bluepyIconSvg,
40
+ blacksky: blackskyIconSvg,
41
+ reddwarf: reddwarfIconSvg,
42
+ impro: improIconSvg,
43
+ lea: leaIconSvg,
44
+ leaflet: leafletIconSvg,
45
+ pdsls: pdslsIconSvg,
46
+ anisotaReader: anisotaReaderIconSvg,
47
+ atptools: atptoolsIconSvg,
48
+ witchsky: witchskyIconSvg,
49
+ deer: deerIconSvg,
50
+ mu: muIconSvg,
51
+ northsky: northskyIconSvg,
52
+ tangled: tangledIconSvg,
53
+ pinksky: pinkskyIconSvg,
54
+ margin: marginIconSvg,
55
+ semble: sembleIconSvg,
56
+ streamplace: streamplaceIconSvg,
57
+ grain: grainIconSvg,
58
+ popfeed: popfeedIconSvg,
59
+ sifa: sifaIconSvg,
60
+ blento: blentoIconSvg,
61
+ offprint: offprintIconSvg,
62
+ pckt: pcktIconSvg,
63
+ standardReader: standardReaderIconSvg,
64
+ taproot: taprootIconSvg
65
+ };
66
+
67
+ // src/icons.ts
68
+ function getWaypointIconSvg(id) {
69
+ const svg = WAYPOINT_ICON_SVGS[id];
70
+ return typeof svg === "string" ? svg : void 0;
71
+ }
72
+
73
+ exports.WAYPOINT_ICON_SVGS = WAYPOINT_ICON_SVGS;
74
+ exports.anisotaIconSvg = anisotaIconSvg;
75
+ exports.anisotaReaderIconSvg = anisotaReaderIconSvg;
76
+ exports.atptoolsIconSvg = atptoolsIconSvg;
77
+ exports.aturiExploreIconSvg = aturiExploreIconSvg;
78
+ exports.aturiIconSvg = aturiIconSvg;
79
+ exports.blackskyIconSvg = blackskyIconSvg;
80
+ exports.blentoIconSvg = blentoIconSvg;
81
+ exports.bluepyIconSvg = bluepyIconSvg;
82
+ exports.blueskyIconSvg = blueskyIconSvg;
83
+ exports.deerIconSvg = deerIconSvg;
84
+ exports.getWaypointIconSvg = getWaypointIconSvg;
85
+ exports.grainIconSvg = grainIconSvg;
86
+ exports.improIconSvg = improIconSvg;
87
+ exports.leaIconSvg = leaIconSvg;
88
+ exports.leafletIconSvg = leafletIconSvg;
89
+ exports.marginIconSvg = marginIconSvg;
90
+ exports.muIconSvg = muIconSvg;
91
+ exports.northskyIconSvg = northskyIconSvg;
92
+ exports.offprintIconSvg = offprintIconSvg;
93
+ exports.pcktIconSvg = pcktIconSvg;
94
+ exports.pdslsIconSvg = pdslsIconSvg;
95
+ exports.pinkskyIconSvg = pinkskyIconSvg;
96
+ exports.popfeedIconSvg = popfeedIconSvg;
97
+ exports.reddwarfIconSvg = reddwarfIconSvg;
98
+ exports.sembleIconSvg = sembleIconSvg;
99
+ exports.sifaIconSvg = sifaIconSvg;
100
+ exports.standardReaderIconSvg = standardReaderIconSvg;
101
+ exports.streamplaceIconSvg = streamplaceIconSvg;
102
+ exports.tangledIconSvg = tangledIconSvg;
103
+ exports.taprootIconSvg = taprootIconSvg;
104
+ exports.witchskyIconSvg = witchskyIconSvg;
105
+ //# sourceMappingURL=icons.cjs.map
106
+ //# sourceMappingURL=icons.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/waypointIcons.data.ts","../src/icons.ts"],"names":[],"mappings":";;;AAeO,IAAM,YAAA,GAAuB;AAG7B,IAAM,mBAAA,GAA8B;AAGpC,IAAM,cAAA,GAAyB;AAG/B,IAAM,cAAA,GAAyB;AAG/B,IAAM,aAAA,GAAwB;AAG9B,IAAM,eAAA,GAA0B;AAGhC,IAAM,eAAA,GAA0B;AAGhC,IAAM,YAAA,GAAuB;AAG7B,IAAM,UAAA,GAAqB;AAG3B,IAAM,cAAA,GAAyB;AAG/B,IAAM,YAAA,GAAuB;AAG7B,IAAM,oBAAA,GAA+B;AAGrC,IAAM,eAAA,GAA0B;AAGhC,IAAM,eAAA,GAA0B;AAGhC,IAAM,WAAA,GAAsB;AAG5B,IAAM,SAAA,GAAoB;AAG1B,IAAM,eAAA,GAA0B;AAGhC,IAAM,cAAA,GAAyB;AAG/B,IAAM,cAAA,GAAyB;AAG/B,IAAM,aAAA,GAAwB;AAG9B,IAAM,aAAA,GAAwB;AAG9B,IAAM,kBAAA,GAA6B;AAGnC,IAAM,YAAA,GAAuB;AAG7B,IAAM,cAAA,GAAyB;AAG/B,IAAM,WAAA,GAAsB;AAG5B,IAAM,aAAA,GAAwB;AAG9B,IAAM,eAAA,GAA0B;AAGhC,IAAM,WAAA,GAAsB;AAG5B,IAAM,qBAAA,GAAgC;AAGtC,IAAM,cAAA,GAAyB;AAO/B,IAAM,kBAAA,GAA6C;AAAA,EACxD,KAAA,EAAO,YAAA;AAAA,EACP,YAAA,EAAc,mBAAA;AAAA,EACd,OAAA,EAAS,cAAA;AAAA,EACT,OAAA,EAAS,cAAA;AAAA,EACT,MAAA,EAAQ,aAAA;AAAA,EACR,QAAA,EAAU,eAAA;AAAA,EACV,QAAA,EAAU,eAAA;AAAA,EACV,KAAA,EAAO,YAAA;AAAA,EACP,GAAA,EAAK,UAAA;AAAA,EACL,OAAA,EAAS,cAAA;AAAA,EACT,KAAA,EAAO,YAAA;AAAA,EACP,aAAA,EAAe,oBAAA;AAAA,EACf,QAAA,EAAU,eAAA;AAAA,EACV,QAAA,EAAU,eAAA;AAAA,EACV,IAAA,EAAM,WAAA;AAAA,EACN,EAAA,EAAI,SAAA;AAAA,EACJ,QAAA,EAAU,eAAA;AAAA,EACV,OAAA,EAAS,cAAA;AAAA,EACT,OAAA,EAAS,cAAA;AAAA,EACT,MAAA,EAAQ,aAAA;AAAA,EACR,MAAA,EAAQ,aAAA;AAAA,EACR,WAAA,EAAa,kBAAA;AAAA,EACb,KAAA,EAAO,YAAA;AAAA,EACP,OAAA,EAAS,cAAA;AAAA,EACT,IAAA,EAAM,WAAA;AAAA,EACN,MAAA,EAAQ,aAAA;AAAA,EACR,QAAA,EAAU,eAAA;AAAA,EACV,IAAA,EAAM,WAAA;AAAA,EACN,cAAA,EAAgB,qBAAA;AAAA,EAChB,OAAA,EAAS;AACX;;;ACnHO,SAAS,mBAAmB,EAAA,EAAgC;AACjE,EAAA,MAAM,GAAA,GAAM,mBAAmB,EAAE,CAAA;AACjC,EAAA,OAAO,OAAO,GAAA,KAAQ,QAAA,GAAW,GAAA,GAAM,MAAA;AACzC","file":"icons.cjs","sourcesContent":["// GENERATED FILE - do not edit by hand.\n//\n// Written by packages/waypoints/scripts/sync.mjs from the canonical catalog in\n// src/utils/waypointIcons.tsx (and src/components/AnisotaLogo.tsx). Edit those,\n// then run `npm run sync` in packages/. CI fails on drift via `sync:check`.\n//\n// Each value is standalone SVG markup: namespaced, sized 24x24, and painted in\n// `currentColor` so a mark takes the colour of the text around it. A few marks\n// knock part of the shape out to `var(--bg-primary, white)`; set that variable\n// to your own background if white is wrong for your surface.\n//\n// These are third-party brand marks. The MIT licence on this package covers the\n// code, not the trademarks - see the icons section of the README.\n\n/** aturi's mark, from <AturiSVG/> in the canonical catalog. */\nexport const aturiIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z\\\"/><path d=\\\"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12\\\"/></svg>\";\n\n/** aturiExplore's mark, from <AturiExploreSVG/> in the canonical catalog. */\nexport const aturiExploreIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"1.5\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44\\\"/><path d=\\\"m13.56 11.747 4.332-.924\\\"/><path d=\\\"m16 21-3.105-6.21\\\"/><path d=\\\"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z\\\"/><path d=\\\"m6.158 8.633 1.114 4.456\\\"/><path d=\\\"m8 21 3.105-6.21\\\"/><circle cx=\\\"12\\\" cy=\\\"13\\\" r=\\\"2\\\"/></svg>\";\n\n/** anisota's mark, from <AnisotaLogo/> in the canonical catalog. */\nexport const anisotaIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 516.02 741.26\\\" width=\\\"24\\\" height=\\\"24\\\" aria-hidden=\\\"true\\\"><path fill=\\\"currentColor\\\" d=\\\"M419.35,737.26l-1.55,1.09c-8.99,1.34-9.75-.68-17.05.26-1.52.2-3.67-.31-5.21-.22l-6.63.39-6.43.43-4.67.33c-1.62.12-3.41.03-5.03,0l-4.12-.11-13.48.22c-2.15.04-4.05-.13-6-.65-.86.11-2.39.31-3.38.33l-4.21.1c-1.15.03-2.84.03-3.92-.11-3.85-.5-7.19-.54-10.93-.63l-5.06-.12c-1.16-.03-2.1-.01-3.37.11l-3.1-.59-4.29.13-6.6.19-3.65.18-4.13.23c-3.06.17-5.95.48-9.01.52l-8.89.1c-2.72.03-5.74-.75-8.31-.42l-6.35.81c-.63.08-2.28.17-2.87-.17-1.66-.97-4.38-.05-6.05-.04l-13.47.11c-6.68.05-5.45.54-12.7.45l-4.99-.06-4.71-.06c-3.12-.04-6-.12-9.04.12-1.61.13-3.28-.06-4.93-.09l-12.61-.24c-7.54-.14-10.39-1.17-17.7-.33-2.57.3-4.92,0-7.47-.19-5.17-.38-17.29.51-20.58-.64-1.24-.43-13.76.55-15.42.55l-8.57.02-7.04.36c-2.31.12-4.62.45-6.8.44l-9.81-.06c-2.42-.01-4.66-.4-7.06-.25-3.62.24-7.12.31-10.83.27-4.45-.05-8.68.08-13.09.24l-9.28.33-18.55.66c-2.52.09-4.98-.13-7.45-.2l-8.21-.24-9.99-.33c-1.39-.05-2.88-.28-4.2-.27l-9.39.1c-.83-.22-.35-2.36-.08-3.26.86-2.93.42-5.97.5-8.92l.37-12.71.56-15.69c.08-2.28.12-4.25,0-6.55-.23-4.26-.46-19.64.12-23.08,1.2-7.11,2.08-13.83,2.58-20.98l.65-9.41c.04-.57.52-1.25,1.12-2.21l-1.04-.08c-.27-2.81-.42-5.87-.42-8.95v-24.39s.17-11.97.17-11.97l.03-5.24c.02-3.83.08-7.4-.29-11.29-.22-2.4-.16-4.81-.11-7.15l.07-3.55.54-17.17c.14-4.61-.25-4.34-.21-8.32l.23-20.54.11-9.86.31-8.76.1-9.23.14-4.83.31-10.85.09-8.16-.3-11.24-.44-9.48-.12-4.16-.23-7.8-.6-19.35.09-5.78-.1-7.82v-10.37s-.07-3.25-.07-3.25l-.33-9.75-.23-6.58c-.05-1.44-.54-2.85-.59-4.21l-.24-6.17c-.2-5.09-.37-10-.45-15.15-.04-2.56.58-5.11.7-7.62l.39-8.26c.25-5.2-.79-8.03-.28-11.47.41-2.79.37-5.74.11-8.62l-.41-4.55-.08-4.78-.06-7.29-.09-5.01c-.12-6.47-.11-12.7.33-19.23.25-3.76-.11-7.45-.15-11.13l-.06-6.14-.29-10.9c-.19-7.09.41-9.03.38-16.45l-.08-17.12.04-6.3-.16-5.48-.32-12.56-.65-11.72c-.45-8.06-.46-15.75-.21-23.79.19-6.43-.16-12.63-.26-19.05l-.26-17,.05-9.99c.02-3.15.08-6.11-.05-9.31l-.7-16.31-.58-13.07c-.24-5.36-.44-10.46-.33-15.81l.16-7.46.59-9.57c.17-2.74-.3-5.35-.29-8.14l.04-9.83c0-2.44.21-5.12-.48-7.47C-.07,2.96-.48,1.41,1.31,0c.78,2.66,2.26,2.78,3.94,3.26,3.56,1.02,6.83.7,10.41.73,4.94.05,9.56,1.47,14.47.73,5.66-.86,17.17-.13,22.87-.45l4.43-.25c2.51.49,4.63.86,7.18.62,6.14-.58,12-.32,18.13-.06l8.16.35c5.16.22,10.36-.45,15.61-.47l8.46-.02,11.78-.03c6.7-.02,11.68.75,16.1.59,7.18-.26,14.06-.2,21.17-.09,3.15.05,6.37-.15,9.48.12,4.09.36,7.89-.06,11.9.15l17.57.89c4.98.25,9.77-.18,14.82.44,5.61.69,10.99,1.28,16.56,1.29h6.75s12.52.02,12.52.02l34.44.52,8.89-.09,7.01-.06,6.36.03,12.69-.49,6.5.34c1.34.07,2.58-.09,3.88-.18,5.07-.33,10.05.07,15.23-.1l15.74-.52,7.08-.03,18.79-.46,12.25-.28,7.16-.17,18.47-.83,12.38-.59,9.16-.26,5.67-.18,9.7-.23,15.72-.07,17.21.74,6.59-.05c5.97-.04,1.49,2.14,6.07,10.24l.61,4.25,1.81,11.11c1.16,7.13-.85,14.39-.9,21.64-.05,7.15.38,13.92.69,21.06l.77,17.38-.19,13.96c-.03,2.37.14,4.81-.23,7.14-.19,1.19-.88,11-.84,11.76l.79,16.16.03,6.69.09,17.54c0,1.1.12,2.45.19,3.52.22,3.22.21,6.34.37,9.56l.28,5.7.03,3.83.1,7.84v4.2c-.03,7.89,1.43,5.47-.44,14.86-.97,4.87-.31,10.21-.28,14.07.03,3.4-.46,7.05-.67,10.56l-.52,8.49-.31,5.08c-.28,4.59.06,8.86.13,13.31l.19,10.93.5,9.75.19,11.62-.03,18.91-.2,15.59-.38,12.86-.64,12.71-.72,19.65c-.2,5.38-.07,10.64.41,15.89.23,2.53.18,5.1.06,7.72-.19,4.1.09,7.99.11,12.1l.15,29.86-.1,11.16.11,3.79c.08,2.69-.12,5.19-.23,7.96-.05,1.18.36,2.99.4,4.33l.39,13.76.2,6.96-.2,8.37-.04,22.95-.36,13.35-.03,11.97.25,7.04.07,5.31-.2,6.9c-.12,4.03.46,7.82.92,11.72.37,3.09.02,6.07.23,9.28l.46,7.13.19,9.62.54,15.4c.13,3.58.19,7.03.38,10.68l.51,9.75.63,4.23-.18,10.7-.21,4.59c-.08,1.62-.07,3.11-.04,4.67l.11,6.95.4,7.11c.07,1.26-.27,2.7-.31,3.94-.3,7.99.35,15.05.08,21.91l-.16,4.01-.14,5.97-.23,8.87-.04,7.31c-.02,2.57,2.15,5.11-1.11,7.65-.67.52-1.27,1.17-1.76,1.24s-1.59-.72-2.12-.76c-1.41-.12-2.86-.23-4.35-.75l-2.98,1.01-2.84-.73c-.12-.03-.83-.05-.95-.04l-.94.08-.8.06c-.18.01-.17-.21-.35-.95-1.3-.35-3.43.19-5.04.32-1.93.16-3.55-.72-5.44.68-.94.7-2.97.35-4.32.33-3.99-.06-8.02-.22-11.92.29-3.02.4-5.59.1-8.65.05l-8.44-.16-15.35.05-12.48-.04c-2.12,0-3.96-.29-6.02-1.13ZM331.22,8.37l-.74,1.23,1.16.7.74-1.23-1.16-.7ZM282.52,9.37v.93h2.33v-.93h-2.33ZM210.09,19.95c-.21.07.07.67.17.88s.62-.09.71-.29.25-.86.03-.82c-.19.04-.77.18-.91.23ZM368.23,30.97l-2.57-.47,1.37,1.26c.25.23,1.06-.64,1.19-.79ZM354.35,67.7c2.6,2.98,4.95,5.74,7.7,8.31,3.39,3.16-1.46,3.44,3.36,8.81,2.61,2.91-.19,5.31,2.65,4.55l3.1-.82c3.74-.99,6.84-3.07,10.07-5.05,6.51-3.99,3.09-6.13,7.36-7.64.35-.12,1.28-.23,1.35.08l.29,1.2c.37,1.5,1.08,2.68,2.31,3.67,5.32,4.26.87,8.4,6.94,10.42.79,2.15,2.38,5.6.1,6.85-1.3.71-3.52,1.3-4.57,2.32-1.68,1.63-3.69,2.59-5.35,4.03-2.02,1.74-2.84,5.01-5.31,6.87-1.38,1.04-2.22,4.28-1.42,5.66,1.38,2.37,4.03,1.71,5.82.58,1.36-.86,3.89.13,5.28-.37,4.46-1.63,8.3-3.98,12.51-5.99,2.89-1.38,5.71-2.52,8.45-4.14.88-.52,2.33-3.12,3.66-1.28,6.2,8.57,4.43,7.23,8.9,15.65.91,1.72,2.53,3.52,2.68,5.41.12,1.47-1.89,2.26-2.94,2.72-2.43,1.05-4.47,3.35-6.84,4.08-1.43.44-2.73.74-4.04,1.23l-5.82,2.2c-3.93,1.49-7.7,3.64-10.38,6.85-3-.82-9.56.68-9.27,4.45.12,1.58.92,2.73,2.5,3.45l.65,3.39,1.32,1.24c.8.76-2.23,3.67-1.33,5.45,2.34-1.78,3.82-2.45,6.17-3.22l6.71-2.18,7.98-2.65,20.96-7.04c4.36-1.46,6.58-3.75,7.29-1.54s1.73,4.48,2.75,6.57c1.99,4.05,2.83,8.36,3.99,12.81.78,2.98,4.94,3.64,5.07,6.7.07,1.65-1.7,2.36-2.94,2.55-6.45,1.02-11.19,3.97-13.42,4-3.03.04-3.82,1.37-5.99,2.61-2.55,1.45-36.68,7.72-36.63,7.68l-5.19,4.02c-.43.33-1.31.33-1.54.6s.07,1.12.25,1.72c.3.99-.03,2.43.05,3.24.15,1.45.48,2.62-.27,4.04-.27.51-.65,1.09-.41,1.3.79.73,4.31-.09,5.59-.4l5.17-1.28c2.26-.56,3.82-1.59,6.28-1.63,4.19-.07,8.26-1.58,12.38-1.83l7.88-.48,1.87-2.01,12.47-2.96,11.7-3.29c.43-.12,1.7-.09,1.84.29l.59,1.56c1.01,2.69,2.62,5.34,3.36,8.18.98,3.76,1.81,7.01,3.85,10.46,1.08,1.82,1.39,6.85-1.43,6.57-3.39-.34-8.41-.76-11.56.81-1.28.63-3.29.67-4.77,1.11-6.49,1.95-12.56,3.5-19.38,4.24l-3.02,1.45c-7.17.07-13.74,1.46-20.54,3.27-1.76.47-3.47.62-5.08,1.48-7.48,4-5.5,1.08-9.3,3.77-4.55,3.23-1.39,2.56-7.62,6.75-.26.78-.6,1.68-.96,2.17l-.74,1.03c-.4.55,4.33,3.27,10.08-1.18,2.94-.37,6.41-.64,9.46-1.23l7.56-1.45c3.63-.7,7.22-1.38,10.78-2.33l5.23-1.39c1.35-.36,2.95-1.17,4.42-1.44,4.37-.79,8.27-2.15,12.46-3.27l10.02-2.67c1.46-.39,3.12-2.41,4.85-1.78,1.9.69,1.45,4.78,2.01,7.82,1.81,9.84,3.5,5.75.66,12.69-.46,1.12-.81,2.46-.25,3.49s.9,3.77-.56,3.98c-7.08,1.01-13.63,2.48-20.51,4.22l-8.86,2.24-2.86.83-3.62.95c-1.36.35-2.57.99-4.01,1.42l-6.23,1.86c-1.47.44-2.6.91-4.03,1.19l-7.32,1.45c-1.09.22-2.51.56-3.53.93l-4.15,1.54c-1.34.5-2.46.46-3.29-.5s-2.38.72-2.68,2c-.18.75-2.54.44-3.21.93l-6,4.46c-.43.32-2.27.19-2.14.67.11.41.4,1.38.58,1.73l1.42,2.8c10.61,3.11,7.81-2.15,12.09-1.21,2.44.53,4.13-.61,6.24-1.45,1.19-.48,3.24-.56,4.44-1.18,3.84-1.99,7.7-3.14,11.88-4.11,8.24-1.92,9.46-1.61,17.81-4.29l5.65-1.81,5.21-1.71c2.14-.71,3.85-1.4,6.31-2.5,1.15,1.38,3.2,3.68,4.15,5.29l6.52,17.16-2.1,4.45c-1.21,2.56-2.45,2.99-5.19,3.04-2.02.04-13.42,1.51-14.75,2.71-.76.36-2.65.42-3.46.75l-5.34,2.15c-6.04,2.43-5.41,1.06-7.67,3.11-1.13,1.02-3.66,1.02-5.3,1.49-3.73,1.08-7.23,1.92-11.06,2.15l-10.48.62c-4.33.26-7.79,1.53-10.45,5.03-.72.94-1.15,3.57-.62,4.62.47.94.89,1.97,1.18,3.05,1.32.6,3.53.37,5.25.11,2.78-.42,5.89-.18,8.33-1.03l5.67-1.99c3.56-1.25,7.35-2.04,11.1-2.7,2.24-.39,3.63-.91,5.54-2.16,1.76-1.15,4.45-1.49,6.46-2.41,3.64-1.66,7.43-2.88,11.22-4.03.84-.26,2.31-1.61,3.09-1.35,2.1.72,1.05,3.08,1.34,4.36,1.68,7.45,6.28,10.79,8.13,18.17.37,1.47.51,2.71-.55,3.67-.84.76-2.16.8-3.41.13-1-.53-1.9.79-2.63.92l-4.49.81c-1.45.26-3.13.79-3.92,1.37l.24.96c-6.51.37-4.18,1.49-10.08,2.95-2.99,4.08-3.91,1.14-6.45,2.88-3.41,2.34-7.37,3.29-11.58,3.49-2.68.12-5.55,1.82-8.23,2.22l-1.4.21c-.92.14,1.76,5.83,5.48,5.77,1.32-.02,3.07.21,4.17-.04l7.97-1.77c1.25-.28,3.86.58,4.84-.23l3.18-2.6c.08-.67.24-1.67.67-1.78,3.33-.87-.32.77,3.56-.39l10.37-3.11c.66-.2,1.72.62,1.88,1.23.79,3.04,2.56,5,4.48,7.23,2.03,2.37,3.84,4.16,6.76,5.41.88.37,1.54,2.24,1.33,3.08-.19.78-1.57,2.07-2.39,2.12-2.71.15-4.21,1.23-6.38,2.43-1.43.8-2.57,1.39-3.73,2.42-2.91,2.6-7.01,3.56-10.29,5.54-.76.46-1.88,1.38-2.75,2.03-.79.59-.28,3.07.32,3.93,2.05.81,4.89.72,6.83-.19l12.66-5.94c2.6-1.22,4.69-2.93,5.35-6.02,1.11-.36,3.41-.42,4.31.19,2.13,4.46,7.37,8.71,11.58,11.24.66,2.12,1.57,6.41.57,8.06-.5.82-2.02,1.34-3.21,1.92l-3.79,1.83c-.6.29-1.23,1.61-1.73,2.54l5.91,1.43c1.44,3.22,4.32,5.39,8.01,5.45.71.66,1.35,1.33,2.07,1.78l6.02,3.71c.21.13,1.97.07,1.56-1.12-.49-1.42.03-4.09,1.14-5.48,1.5-1.88,1.66-3.39,1.77-5.77.18-3.86.28-7.64.12-11.58l-.3-7.31-.23-7.61.09-6.54.56-17.87c.18-5.94.03-11.64.07-17.57l.05-9.7.45-22.34.27-15.4c.09-5.22-.16-9.99-.78-15.18s.16-10.36.41-15.55l.76-15.64c.38-7.76.9-15.37.83-23.14-.04-4.46-.45-8.77-.23-13.32l.79-16.34c.21-4.42.44-8.58.3-13.02l-.47-15.37,1-21.29c.58-12.46.01-24.68.69-37.13.16-3.03.13-5.91.11-8.93l-.07-10.82.52-4.14c.18-1.43.23-3.56-.26-4.68-1.46-3.29.4-6.2-.1-9.46-.44-2.85-2.39-7.11-.93-10.04,1.22-2.45-3.78.96-10.02-1.2-2.99-1.04-5.98.62-9.09.35l-7.22-.62c-.75-.06-1.76-1.94-2.8-.77-.37.41-1.75.97-2.1.6l-1.26-1.32c-2.06,1.49-4.39,1.69-6.62.46l-3.47.51c-.44.06-1.04-.08-1.76-.2-2.33-.38-4.9-.22-7.35-.37-4.48-.27-8.7-.32-13.12-.14l-5.53.23-5.61.16c-2.78.08-7.01-.11-10.2-.23l-19.88-.78-11.16.56-3.71.42c-1.04.03-3.05-1.74-3.99-1.32-1.96.87-3.33-.2-4.64-.08l-5.74.52c-1.9.17-3.51.09-5.28.82-5.11,2.12-3.66-.78-7.1-.77h-4.96c-3.42.02-6.36-.57-9.77-.17s-3.85.05-5.68-.09c-10.35-.76-7.57.62-11.63.62-6.81,0-8.39-1.27-13.2-.85l-4.57.4c-2.83.25-9.49-.38-9.94-.29-1.19.24-1.93.35-2.96.44l-7.55.63c-2.93.24-5.71.06-8.45.03-1.71-.02-4.24.66-5.61.25-1.62-.49-2.39-.5-3.88-.54l-12.7-.34c-1.41-.04-2.63.17-4.12.03-2.32-.23-4.85.27-7.11.18-4.1-.16-7.97-.05-12.06.02-1.83.03-3.29-.29-5.23.14-1.67.37-4.19-.92-5.85-.69-2.03.29-3.84.26-5.72-.22-8.43,1.1-5.52-.2-8.41-.32-8.65-.36-1.63-1.29-15.39-.84l-4.83.16c-2.93.1-6.3-1.31-9.21-.12-4.82,1.97-.93-.55-8.37.3-1.66.19-3.64-.14-5.48-.14-1.12,0-3.27,1.74-4.24.82-1-.95-2.25-1.98-3.58-1.26-3,1.63-5.83,1.14-9.04,1.22s-8.35-.12-11.22-.7c-.51-.1-1.74.06-2.25.03l-10.6-.62c-1.56-.09-3.64-.84-5.04-.72-2.44.21-4.25.17-6.58-.39-1.67-.4-4.03.19-5.87.17l-11.9-.11-6.69-.19c-3.05-.09-6.12.22-9.13-.01-2.47-.19-4.3.17-6.2,1.85-1.35.32-3.82.33-5.48.23-.57-1.97,2.02-2.64,1.4-3.04-1.78-1.17-4.82-1.35-6.73-1.07-.42.06-.8,1.66-.39,1.78l1.6.46c.73.21,1.79.92,1.8,1.4l-3.37,2.19-3.29,2.17.05,1.8c.01.4-1.12.95-1.25,1.33-1.56,4.63-.03,3.38-.11,9.66-.03,2.6-.29,5.25-.03,7.73l.82,8.14c.13,1.3.03,2.77-.02,4.12l-.18,4.36c-.2,4.9.13,11.62.68,16.07.07.6,1.84,1.66,1.49,2.06-.3.34-1.51,1.11-1.64,1.59-.52,1.94-.19,5.42-.35,7.65-.45,6.17-.69,11.88-.41,18.03l.47,10.27-.07,10.31v17.89s-.03,20.69-.03,20.69l.31,36.25c.07,8.33-1.18,16.42-.51,24.83.3,3.74-.06,7.37.03,11.09l.45,19.68c.31,13.53,1.12,26.67.73,40.14-.06,1.91.21,3.86-.11,5.69-.27,1.52.91,3.25.77,4.31l-.86,6.23-.43,6.37-.49,6.07c-.05.63-.5,2.12-.28,2.67l1.52,3.73c.79,1.95,1.37,3.7-.53,5.67-2.32,2.41-3.94,6.73-2.68,10.1,3.29,1,6.87-1.95,8.19-4.99.38-.88,1.26-2.35,1.9-2.75l4.68-.76c2.63-.43,4.19-7.18,4.95-8.01,1.58-1.75,4.05-4.25,6.12-5.76l6.5-4.74,6.57-5.21c4.26-3.37,9.75-10.42,13.44-14.91,1-1.22,1.77-1.93,3.14-2.84,2.44-1.62,4.52-3.9,6.87-5.68,3.66-2.77,7.42-5.12,10.41-8.74l1.28-2.69c3.73,2.7,5.34-1.24,6.12,2.57,1.66,2.03,4.21,3.38,6.58,4.63,3.14,6.44,4.61,3.54,5.66,6.82,1.21,3.78,1.62,5.39,4.79,8.68l3.51,3.64c1.73,1.8,3.62,3.43,5.35,5.29l11.45,12.34c1.71,1.85,3.06,3.99,4.58,6.12,1.38,1.94.67,3.1,4.08,7.48l4.93,6.33,4.29,5.64c7.74-2,4.2.02,10.61-3.52,2.47-1.36,4.87-3.16,6.87-5.06l6.72-6.38,7.72-7.25c5.31-4.99,11.59-10.59,17.05-14.01.61-.38,1.66-1.5,2.07-1.34,5.55,2.16,5.67,4.17,11,4.14,3.61,5.38,7.62,10.4,11.5,15.45,3.26,4.24,6.46,8.05,10.25,11.81,1.27,1.26,2.6,2.7,3.72,4.07l2.35,2.87,5.73,6.72,2.6,3.16c2.43,2.96,4.63,5.76,6.87,8.92l4.04,5.72c1.93,2.73,3.6,5.61,5.93,8.06l15.17,16.03c3.52,3.72,6.56,7.62,9.79,11.61,2.08,2.57,4.06,5.18,7.47,6.22l5.36-1.94,5.4-.15c2.81-.08,5.59-1.54,8.43-1.74,4.34-.31,8.48-.54,12.81-1.34,3.56-.66,7.04-.79,10.63-1.19l9.87-1.09,9.68-1.02c1.25-.13,2.3-.33,3.49-.75,3.38-1.21,6.85-1.82,10.42-2.55l15.22-3.11c2.12-.43,4.13-.56,6.23-1.13l12.76-3.51c2.89-.79,8.72.48,10.45-.57.21-.13.21-.77-.01-.88l-1.08-.51c-1.33-.62-2.7-1.45-3.99-1.91-1.52-.55-2.36-1.16-3.31-2.42-2.48-3.3-6.54,2.26-11.12,1.56-.63,1.37-1.25,2.5-1.96,3.45l-.68-.73.27-.86c.43-1.39-.56,1.1-4.3.38-1.17-.22-9.13.98-10.97,1.3l-8.15,1.4c-1.5.26-3.51.55-4.75.58-.32-2.23-1.05-2.6-2.16-3.89-2.29-2.67-5.99-13.51-6.17-16.47-.16-2.58,3.64-3.61,5.37-3.4,3.3.41,5.42-1.33,8.13-2.07,2.63-.71,5.95.36,8.39-.98l.76-.42c.11-.06-.28-.39-.4-.45l-4.43-2.16,1.07-1.57c-5.2-1.12-5.04-3.69-5.84-3.62l-2.14.19c-3.62.32-7.69,1.88-11.28,2.91l-4.28-.15c-.43-.02-1.51-.4-1.85-.48-1.34.3-3.27.14-4.76-.08-4.57,2.78-1.57,0-10.39,1.95-8.35,1.85-6.68-.22-14.27,1.5-2.49.56-4.8.61-7.7.46-.16-1.33,0-2.71.21-4.31.29-2.15-.82-4.58-.96-6.71l-.87-13.27c-.04-.56.02-1.83.45-2.04,1.91-.91,4.08,1.59,6,1.44l5.67-.46,5.72-.22c5.92-.23,11.19.66,15.43-.53.36-.1,1.43-.81,1.33-1.11l-.38-1.18c2.04-1.47-3.49-.89-3.56-2.89-.08-2.25-.56-3.75-2.95-4.52-1.23-.39-3.38-.95-4.85-1.01l-15.4-.68c-4.05-.18-7.98.04-12.11.11l-6.11.1c-2.35.04-4.9,1.53-6.96-.51-1.93-1.9-4.87-1.61-7.41-1.97l-13.56-1.9c-.4-3.69-.4-8.48.29-12.14,1.25-6.6-1.09-10.09.45-16.56l4.93,3.19c7.58,2.07,15.13,1.45,22.88.8,7.88-.67,17.27,5.02,27.33,0-1.02-1.55-1.34-3.23-1.76-5.21l-.89-4.14c-1.47-.64-3.15-1.31-4.26-2.56l-4.39-.94c-2.42-.52-9.95-.18-9.66-.13l-10.16-1.44c-1.64-.23-2.79-.34-4.25-.62l-8.37-1.59-3.62-.39c-2.19-.24-4-.7-6.29-.61-3.37.13-7.13-.58-10.36.33-2.16.61-3.35.9-4.89-1.25-1.42-1.97-3.54-4.53-4.28-7.01-.82-2.74.58-5.92.6-8.65l.08-14.44c4.75-.39,5.56,3.47,10.07,3.12,3.54-.27,6.42.59,9.71,1.65,3.86,1.24,8.13.64,12.19,1.01l8.53.79c3.95.37,16.86,5.74,25.1,4.43.48-1.9,1.34-4.25,1.24-6.32l-.2-4.18,2.12-.52-2.17-2.41c-2.79-.3-6.13-3.05-5.97-3.08-1.91.34-2.14,2.06-2.64,1.4l-.99-1.3c-1.75.59-3.95,1.03-5.86.81l-3.88-.44c-2.75-.31-5.19-.8-8-.69-1.79.07-9.37-.86-11.74-1.31l-6.77-1.3c-2.79-.53-11.65-.58-14.95-.57-1.66,0-3.47-.62-5.27.18-.41.18-1.7.41-1.82,0l-.51-1.67-.98-3.11c.93-2.56.15-5.33.55-7.89l1.51-9.63c1.03-6.54,2.35-6.02,5.81-11.74,2.42,1.78,4.92,3.02,7.82,3.63l6.61,1.4c2.96.63,6.19.57,9.29,1.11l21.35,3.74c5.77,1.01,12.69,3.73,16.99,1.74,1.19-.3,3.74-.19,5.01-.31-.22-2.57.97-6.12,2.4-7.76-.13-3.51-4.26-4.42-6.96-4.87l-6.57-1.09c-1.11-.18-4.76-2.44-11.82-3.24-4.49-.51-9.33-1.33-13.71-2.12-.37-.07-1.39-.73-1.79-.86l-8.18-2.6-5.29-1.75c-.55-.18-1.93.1-2.57.18-1.17-1.66-.74-3.78-.39-5.76,2.08-11.73,3.89-9.86,6.8-20.16,1.87-.65,3.65.88,4.68,2.4,1.18,1.74,3.99,1.63,5.81,2.15,3.16.91,6.35.42,9.54.79l14.19,1.64,16.1,4.77c2.02.6,4.3.21,6.13,1.12.42.21,1.52.3,1.82.04,1.12-1.01,1.12-4.95,1.02-5.81l-.55-4.35,3.56-1.43c-.89-1.31-1.87-1.78-3.42-1.98l-1.87-1.91c-1.96-.45-4.75.22-6.72-.07l-11.99-1.78c-2.05-.3-3.97-.26-6.08-.54l-12.12-1.58c-1.22-.16-3.32.83-4.42.63l-4.35-.78c-1.14-1.7-.37-4.3-.18-6.35l.59-6.49c.13-1.4,1.03-2.71,2.04-3.54l.92-10.12c7.51,1.97,7,2.96,15.01,4.24,4.79.77,9.38.81,14.23.92,4.59.1,8.81.11,13.49-.3,2.45-.21,5.36.53,7.38-1.52-2.68-4.9.48-6.08-4.63-8.48-2.39-1.12-4.31-1.22-6.86-.8-1.51.25-2.61.23-4.13,1.29-.78.55-2.5-.76-3.38-.86l-10.87-1.23c-1.92-.22-4.59,1.19-6.34.89l-4.44-.75-.47-3.77c-2.24-3.77-3.48-7.54-2.64-11.88l1.26-6.55c.08-.44,1.18-.85,1.49-.61,4.12,3.2,9.92,2.47,15.34,2.36,3.49-.07,6.53-.39,9.91-.95,2.85-.47,9.1-1.34,11.53-.15.74-.55-.02-2.28-.65-3.13-4.41-5.93-9.48-6.25-16.75-5.73-.93.07-2.49-.09-3.24.14-1.08.33-1.91.49-2.89.51l-6.83.17c.45-8.43-1.76-4.85-1.49-14.46.07-2.36-.22-4.98-.29-7.23l3.44.3c.72.06,1.53-1.36,2.17-1.99.44-.43,2.11-.04,2.72-.21l4.58-1.3c.86.54,1.83,1.08,2.41.76,2.23-1.25.76-6.55-1.68-9.14l-5.18-5.48c-1.79-1.89-2.6-4.68-3.76-7-.59-1.18-1.4-3.35.02-4.67,3.87-3.59,8.67-5.8,13.78-8.04l3.99,4.57ZM503.89,165.36l-1.66,1.23,1.5.02c.25,0,.21-.57.16-1.25ZM190.72,459.48c2.96.2,7.41.37,9.79.35.43,0,1.46-1.52,1.65-1.17l.91,1.7c.39.73,1.21,1.93,1.89,2.02.59.08,1.92-.93,2.2-1.48.21-1.92-1.48-4.02-2.78-5.43l-1.43-1.56-3.94-4.33c-2.49-2.74-6.15-5.85-7.66-7.78l-3.02-3.89c-1.57-2.01-5.81-6.97-7.89-7.42.04-1.52-.77-2.69-1.97-3.78l-3.61-3.27c-.83-.76-1.89-1.61-2.61-2.56l-5.74-7.68c-.71-.96-1.86-1.74-2.51-2.71-1.37-2-2.77-3.58-4.67-5.12-1.51-1.22-2.6-2.98-4-4.46l-2.64-2.79c-2.09-2.21-3.75-4.52-5.91-6.72-2.04-2.08-3.69-4.68-5.88-6.56-1.85-1.59-2.92-3.16-4.41-5.03l-4.94-6.18-2.8-4.22c-1.86-2.8-4.06-5.18-6.46-7.57l-5.09-5.08c-4.74-4.73-3.29-7.14-6.84-9.78-4.66-3.45-2.3-4.2-4.18-4.59-.41-.08-1.35.33-1.67.63-5.1,4.91-5.02,1.17-8.1,5.97l-2.95,1.53c-.04,2.38-1.71,2.3-3.14,3.11-6.59,3.73-18.84,16.15-24.44,22.03-13.41,14.06-18.39,11.33-21.18,14.69-7.62,9.2-8.18,15.83-8.29,28.01l-.33,36.45c-.05,5.21.39,10-1.14,15.2-.7,2.38-.44,4.83-.34,7.31.17,4.4,1.88,3.45,1.28,4.35l-1.04,1.58c4.98,2.93,17.68,1.98,23.53.93l16.04-2.89c1.99-.36,4.38.12,6.4-.36l9.76-2.36,4.26-1c6.42-1.51,12.51-2.41,19.15-3.06,4.75-.47,9.33-1.88,14-2.71l7.91-1.41,17.58-3.87c4.8-1.06,9.49-1.14,14.28-1.7l12.8-1.49c8.16-.95,3.31-4.31,10.17-3.85ZM260.71,447.37c3.69.23,6.74-.13,9.81-2.04,4.76-2.96,8.19,1.47,13-2.83l-1.93-2.78c-.72-2.54-2.16-4.07-4.1-5.78l-7.51-6.62c-1.16-3.15-3.48-5.19-5.43-7.97l-3.38-4.84c-.83-1.19-1.98-1.8-2.83-2.84l-3.01-3.62-4.65-5.54c-1-1.19-2.46-2.26-3.24-3.64-1.26-2.22-3.82-3.27-5.15-5.2l-4.74-6.88c-.73-1.06-1.44-1.82-2.39-2.76-1.35-1.32-2.43-3.72-3.82-4.91-5.66-2.57-7.3-12.6-12.29-12.32-.24,2.14.02,4.01.42,6.24.21,1.18-2.11,1.49-2.84,2.06-2.59,2-5.25,4.11-8.06,5.85-5.89,3.64-11.64,8.76-14.95,14.73l1.37,3.44c.17.42.97,1.21,1.22,1.55,2.19,2.97,4.68,5.48,7.15,8.21l7.75,8.55,5.74,7.28c.79,1,1.74,2.11,2.59,2.98l8.48,8.68c1.09,1.11,2.33,2.02,3.1,3.54,2.02,4,4.4,7.42,7.18,10.99.57.74,1.14,3.16,2.52,2.95,5.46-.82,6.86-4.73,9.85-4.08,2.3.5,4.27.41,6.47-.64l3.68-1.76ZM440.34,480.67l3.66-.29,4.98-.15c.54-.03,1.62-.99,2.09-.77l1.78.82c5.65-5.28,2.85-9.41,6.94-11.03l-1.36-2.26,1.02-7.78.67-6.11c.19-1.73-.97-4.21.87-5.56.42-.3,1.34-.47,1.55-.87.17-.32.06-1.46-.12-1.77l-1.59-2.82-6.72.69c-1.98.2-3.87.71-5.88.21s-4.05-.35-5.71.53c-1.86,4.59-.31,8.56-1.93,11.15-1.35,2.16-1.43,4.3-2.2,6.72-.37,1.18-1.46,3.03-2.09,4.38l-2.88,6.18-3.64,7.96,5.59.73c1.46.19,3.29.17,4.94.04ZM345.29,691.82l1.36-4.49,3.03-13.95,1.06-4.4c1.67-6.93,3.08-13.74,5.7-20.39s2.44-13.66,4.21-20.27c1.16-4.34,2.94-8.36,4.13-12.77l2.58-9.59,3.07-7.99c1.21-3.14,1.87-5.82,3.37-8.86.76-1.55,1.56-3.61,2.02-5.33l1.8-6.81c1.4-5.32,2.55-10.49,3.58-15.89.18-.93.67-2.29,1.07-3.14,3.52-7.49,4.49-15.45,5.97-23.48l2.07-11.29,2.36-10.77c.38-1.72,1.68-4.05.64-5.78-.43-.72-2.03-1.45-2.76-1.95-.29-.2-.82-1.19-1.07-.96l-1.07.96c-1.57,1.4-4.16,1.08-6.22,1.33-2.2.26-3.31-.15-4.68-1.75-.88-1.02-3.02,0-3.56,1.3-.87,2.1-3.31.28-6.53,1.25-2.49-1.91-5.49-1.24-10.41-2.45l-3.46-.85c-.61-.15-1.68-.39-1.86-.45l.09-5.62.11-6.99c.03-2.2.92-4.78-.01-6.96-.76-1.78-1.14-3.79.63-5.06l5.54-3.96c.93,1.31,2.07,1.53,3.69,1.61,4.35.21,8.56,1.06,12.83-.47,1.46-.52,2.8-.24,4.34-.23l13.07.05,6.32-.17c.76-.02,1.72-.06,2.32-.15,1.52-.21.19-4.42,4.12-7.29,1.88-1.38,2.2-3.2,2.65-5.36l1.37-6.57c-.39-1.01-.96-2.31-.5-3.36.86-1.96,4.81-3.42,2.94-4.53-2.47-1.46-4.99-.89-7.33-.29-.06-.25-.87-.97-1.25-.78-3.56,1.77-8.94,3.54-13.08,4.15-1.18.33-2.7,1.82-3.65,1.89-6.85.51-7.48-.66-14.37,2.1-3.16,1.26-5.98,2.74-8.88,4.56l-3.98,2.5-5.93,3.9-8.16,5.39-5.21,3.21-3.53,2.56c-.88.64-2.23,1.68-3.06,2.42l-15.38,13.89c-3.68,3.33-6.43,8.51-8.65,11.43-3.28,4.32-8.57,12.24-10.12,17.06-.95,2.95-2.08,5.65-2.44,8.6l-1.04,8.34c-.27,2.13-.27,4.27-.44,6.42l-.32,4.15-.46,5.42c-.24,2.8-.24,5.51-.14,8.3l.14,3.71c.28,7.31.57,9.91,2.94,16.61l3.92,11.07c1.86,5.26,3.45,5.72,5.85,11.33,1.72,4.02,5.35,12.4,7.49,15.75,3,4.69,9.21,21.15,9.39,24.26l.53,9.24c.15,2.67,3.06,6.79.42,15.06-.7,2.18-1.27,4.08-1.68,6.29l-.72,3.82c-1.11,5.89-4.4,10.92-8.04,15.67-2.69,3.52-4.37,7.47-5.79,11.81,4.67,1.01,6.45-3.49,9.96-1.35,2.78,1.69,5.32,1.02,8.14.47l5.61-1.1c1.06-.21,3.55.29,4.17-.63,1.07-1.6,1.77-1.58,3.5-2.5s4.65-3.72,4.89-5.6.23-3.39.82-5.3ZM261.47,708.68c1.15-.34,2.52-2.12,3.45-2.63,1.97-1.08,3.66-2.36,5.23-4.12l5.87-6.59c.73-.81,1.27-1.48,2.16-2.2,1.66-1.33,2.57-3.63,3.93-5.32l6.87-8.62c.34-1.3.57-3.49,1-4.81l1.64-5.07c.89-2.75,1.17-5.24.9-8.14-.67-7.19-.49-10.93-2.87-17.86l-1.06-3.09-.72-2.13c-1.05-.61-1.63-1.89-2.3-3.24-2.15-4.35-4.24-8.59-5-13.39-4.66-2.12-2.02-4.9-5.52-8.51-.69-7.19-.57-1.71-1.62-5.63-.77-2.88-2.12-5.35-3.34-8.13-.81-1.85-.66-4.33-1.16-6.32l-2.7-10.78c-.66-2.62-.62-5.28-.53-7.93l.29-8.35-.51-4.14c-.23-1.89-.11-3.65.03-5.44l.77-9.65c.46-5.8-.54-8.93,1.1-14.19,2.34-7.52.58-5.4,1.72-11.25l.85-4.4c.71-3.65,1.36-7.14,2.55-10.66l1.91-5.63c.21-.63.27-2.08.32-2.96,2.46-2.09,4.24-4.95,5.35-8.05.69-.42,2.51-.83,2.96-1.39l2.62-3.29,6.33-5.97,2.6-2.36c4.09-.83,6.66-4.53,6.14-8.55l-4.1-.45c-1.21-.13-3.19,1.22-4.52,1.72-2.49.95-5.06,1.28-7.7,1.88-2.02.46-4.33,1.84-6.46,1.9-3.2.1-5.37.42-8.29,1.35l-4.78,1.54c-2.5.8-3.21,1.56-4.15,4.14-.82,2.24-3,9.27-2.83,11.24l.43,4.96c.29,3.38-.67,5.21-1.76,9.71l-1.61,6.66-2.88,14.94c-2.27,11.79-1.16,5.13-1.74,15.99l-.54,10.17-.69,8.22v4.03c.02,5.88-1.4,9.65-.8,13.89.23,1.63,1.62,3.86,1.42,5.51l-.73,5.97c-.28,2.3-1.2,4.61-1.28,6.92l-.26,7.62-.55,7.03c-.34,4.41-.54,8.22-.26,12.66.07,1.11-.44,3.24-.61,4.59l-1.1,8.91-.87,8.36c-.19,1.86-.49,3.67-.78,5.54l-2.29,14.92c-.39,2.53-.91,4.88-.98,7.46-.07,2.76-.56,5.31-.97,7.99l-.95,6.22c-.68,4.48-2.52,10.3,0,14.36.78,1.27,3.13,2.07,4.28,3.12,5.59,5.09,6.92.25,11.86,2.57,2.63-.76,3.25-3.81,7.17-.82ZM210.23,699.51c1.26-4.94,2.11-9.73,2.59-14.54l1.01-10.11,1.15-8.04c.55-3.84.48-7.82.83-11.76l1.36-15.31c.14-1.61.66-3.65.67-5.13l.07-6.67c.02-2.05-.42-4.49.14-6.45,1.46-5.1-.42-2.8.42-9.23l1.4-10.72c.1-.74.14-1.98.2-2.77l.66-8.12.76-9.44c.45-5.6.95-10.94,2.65-16.47.43-1.39.2-3.05.26-4.51l.24-5.66.53-9.34.53-9.83c.16-2.9.93-5.87,1.46-8.77.58-3.21.39-6.43.76-9.65.23-1.96,1.03-4.02,1.12-6.1l.4-9.42c.1-2.38-.18-4.84-.28-7.35-.26-6.09-1.25-2.31-.94-9.88l-5.23-.28c-.38,1.18-1.99,3.4-2.22,4.61-.98,5.34-1.53,10.39-2.01,15.75-.2,2.2-.06,4.58-.51,6.56-.39,1.74-.93,3.52-1.08,5.18l-.61,6.46c-.47,5,.02,9.8-.47,14.76l-1.46,14.96c-.24,2.43-.04,3.52-.88,5.83-1.16,3.17-.25,10.52-.94,14.39l-1.11,6.21-1.75,12.27c-.37,2.62-1.18,5.34-1.25,7.94-.13,4.41-.12,8.54-.94,12.79l-2.56,13.29c-.08.4-.17,7.18-.47,10.25-.62,6.38-.93,12.64-1.2,19.09l-.33,8.09-.83,10.24c-.42,5.22-.27,10.3-.88,15.61-.45,3.95.05,8.1-.74,11.84-.42,1.97-1.52,3.72-1.32,5.85l.46,5.02c1.39-.99,2.48-1.72,3.13-2.02.9,1.98,1.26,2.69,2.36,4.01,2.95-1.98,2.65-4.87,3.4-7.81l1.43-5.61ZM460.75,631.27c2.49.86,3.56,1.33,6,.49,1.6-.55,4.29-.98,6.18-.6l5.91,1.2c2.23.45,2.13-2.29,2.12-3.65l-.1-15.91c0-1.47.33-2.52.8-4.48,1.01.22.37.08-.52-.11-.5-3.53-.81-6.98-.75-10.76l.1-6.3c.05-3.22-.16-6.26.19-9.49l.9-8.28c.09-.82-.48-2.56-.44-3.34.68-11.32-1.56-6.69.41-19,.3-1.85.42-3.15.28-4.92-.15-1.95.66-4.35.67-6.3l.02-5.26.08-5.02.1-3.32c.04-1.26.49-2.84.5-3.8l.05-2.82c.04-2.37.34-4.19-.62-6.41-.73-1.68.51-4.17.69-5.84l.63-5.91.28-3c.28-3.02.65-5.8.87-8.82.06-.79-1.63-1.82-2.09-1.16-.43.61-2.44,7.71-1.19,7.99-.45,1.29-1.07,3.06-1.61,4.59l-1.56,4.43c-.22.62-.17,1.8-.14,2.4l-1.14,4.7-1.48,5.87-3.73,13.77-1.73,6.45-1.2,5.38-1.61,7.24-.42,2.89c-.33,2.23-1.08,4.41-1.59,6.6l-2.13,9.09c-.16.67-.6,1.74-.67,2.44-.1.96-.1,2.42-.31,3.13l-2.01,6.85c-1.03,3.5-2,7.01-2.8,10.6l-1.76,7.88-.72,4.37c-.45,2.75-.96,5.39-1.8,8.12l-1.49,4.82-2.27,8.26c-.49,1.77-.48,3.76.11,5.49,1.83-1.24,4.55-2.25,6.28-.75,1.82,1.58,3.42-.24,4.76.23ZM178.2,611.81c.38-.16,1.18-1.3,1.19-1.9,0-5.19.45-13.68,1.61-18.21-.48-1-.07-2.15.04-3.27l.62-6.61,1.92-23.97c.64-7.96,1.07-8.96,1.27-17.83l.28-12.46.72-3.72.83-14.84.4-5.14c.25-3.25-.42-5.27-.34-9.85,0-.53.28-1.48-.07-1.64l-1.4-.65c-2.07-.96-4.75-1.14-5.81,1.34-.38.88-1.08,2.01-1.74,2.37-.57.31-2.28-.43-3.04-.33-2.76.36-6.34,1.09-9.48.37-3.71-.86-1.58,5.28-1.2,11.24.06,1.01,1.18,14.6,1.08,14.09,1.48,7.29,3.03,14.48,3.48,22.12l.25,4.24,1.41,13.65.7,8.87.37,5.38c.22,3.21.7,5.85,2.9,8.44.1,1.3.19,3.2.18,4.6l-.08,9.36c-.04,4.8-.14,10.68,3.92,14.35ZM107.12,698.95c-.1,2.04-1.56,5.16.4,6.91.45.37,2.05.51,2.08,1.08l.16,2.78,3.95-.56c2.03-2.71-1.32-3.52.38-6.64.76-1.4.57-2.46.34-4.02-.43-2.85.86-6.06.62-8.79-.11-1.27-.21-2.16-.11-3.41l.38-4.82.55-.91c.12-.2-.45-.84-.36-1.07l.5-1.17c.11-.26-1.01-.73-1.08-1-.27-.99.88-3.16.86-4.2-.03-1.3-.44-3.05-.2-4.54.9-5.74.57-11.66,1.59-17.28l.5-2.72c1.27-6.94-.43-11.52,1.51-15.72.74-1.61,1.19-2.79,1.37-4.66l2.01-20.93.32-3.56,1.25-13.72c.14-1.49.47-2.82.76-4.31.63-3.3.8-6.7,1.15-10.12l.68-6.6.63-7.87c.23-2.91.57-5.74.68-8.62.17-4.3.42-8.37,1.11-12.67.21-1.29-.28-2.98-.22-4.04.4-8.07.38-6.07,3.2-11.44.6-1.14.18-2.57.29-3.77.18-2,2.03-8.17,2.83-10.32.68-1.81,1.94-2.72,1.13-4.95l-1.53-4.19c-.39-1.06-1.42-1.96-2.4-1.8-.71.11-1.59,1.34-2.02,2.04-3.23-1.59-1.35.51-7.39-.19-2.44-.28-5.67,2.43-5.33,5.05.31,2.38,2.82,4.77,1.39,7.29-.9,1.58-.69,3.54-1.2,5.2-.79,2.56-2.76,4.93-3.46,7.76-.95,3.83-.8,7.79-.69,11.8.01.52-.04,1.46.29,1.62s1.11.01,1.17-.36l.16-1.01c.04-.22.92-.1.91.12l-.08,1.01-.09,1.12c-.02.26-2.41.58-2,1.07l.66.79c.61.74,1.27,1.44,1.57,1.99s-.82,2.12-.68,2.82c.53,2.71.31,6.69-.36,9.66-.58,2.59-.6,5.14-.98,7.71-.53,3.57-.7,7.53,0,11.03l.85,4.22c.96,4.78-.62.63-1.22,7.13-.33,3.65-.99,7.12-.69,10.64.19,2.3-.21,3.98-1.86,5.65-.41.48.99,1.62,1.82,1.95l-.41,6.85c-.1,1.7.1,3.63-.14,5.24-.28,1.86-.67,3.57-.42,5.53.23,1.83-.14,3.39-.34,5.14-.31,2.72-.58,5.49-.72,8.23l-.41,7.63c-.14,2.54.17,5.15-.48,7.54-.55,2,.09,4.3-.13,6.41l-.84,7.91-.37,6.31-.58,6.99c-.41,4.92-.31,8.92-.76,13.25-.23,2.23-.39,4.2-.51,6.52ZM393.64,711.17l4.54-3.64c-.19-6.92,2.57-2.08,4.23-9.7l1.76-8.14c1.11-5.12,3.52-9.62,4.38-14.75.64-3.83,1.56-7.58,2.43-11.44l1.39-6.12c2.8-12.35,3.75-8.66,5.28-24.55.28-2.86,1.45-5.85,1.88-8.67l.9-5.94.93-5.75.58-3.57c.7-4.27,1.07-8.46,2.33-12.65l3.87-12.84c.99-3.3,1.89-6.57,2.73-9.95l2.42-9.7c.84-3.35,1.37-6.59,2.19-9.96l3.63-14.88c1.01-4.13,1.74-8.25,3.26-12.18l1.53-3.93c1.14-2.94,6.62-14.86,5.38-16.6-10.03-3.33-4.39-2.5-10.97-1.76-2.1.24-4.28-.42-6.43.71-3.66,1.94-5.61-5.07-6.3-1.33-.54,2.94-1.24,5.4-2.26,8.16-1.53,4.1-.89,4.95-2.66,9.93-.65,1.81-.94,3.42-1.35,5.27-1.11,5.02-3.58,9.77-3.84,14.89-.36,7.11-1.9,7.58-3.17,14.48-1,5.43-1.71,10.64-3.37,15.88-1.57,4.94.62,6-2.29,13.58-.5,1.3-.89,2.39-1.14,3.63l-1.82,8.81-2.89,11.19-.83,3.26-3.2,9.9-2.19,9.42-1.59,7.07-1.81,7.73c-.55,2.34-1.06,4.87-1.76,7.17-1.5,4.97-2.12,9.72-3.45,14.71l-1.88,7.07c-.43,1.6-.68,3.52-1.15,5.15l-2.82,9.91-1.56,5.93c-.36,1.37-.41,3.83-.97,4.96-1.04,2.09-2.13,4.35-2.13,6.74,8.9.19,6.93,3.31,18.21,2.5ZM27.06,623.47l.18,3.17c.55.08,1.62-.62,1.86-1.12l1.87-3.89c2.48-5.17,2.27-8.4,5.69-9.98,1.1-1.1,1.29-4.02,2.04-5.6,1.36-2.87,2.67-5.66,4.26-8.32,1.48-2.46,2.89-4.67,3.83-7.43.66-1.93,1.67-3.3,2.87-4.94,1.72-2.34,1.68-5.79,2.83-8.43l4.22-9.61c1.13-2.56,1.65-5.52,3.11-7.82,3.7-5.84,6.44-11.8,9.16-18.13.51-1.18,1.4-2.5,2.09-3.59,4.31-6.85,3.61-8.88,8.15-14.67,2.64-3.37,4.87-7,5.63-11.18-.85-.84-2.14-.75-3.27-.62-2.07.24-3.42.81-5.13,2.24-1.41,1.18-3.64.18-5.41.09-4-.2-10.19,3.04-18.97,3.66-11.65.83-7,3.09-15.19,4.04-2.97,3.95-1.85,8.82-1.51,13.21.83,10.95-.98,20.92-.93,31.46.02,4.9-1.03,18.66-2.49,23.2-1.15,3.57-1.69,6.91-.39,10.65-3.93,8.15,0,4.22-2.2,10.32-.71,1.99-1.12,4.62-1.27,6.7,1.58,1.23,1.88,3.14,1,4.6-.68.09-1.15.13-1.5.26s-.58,1.36-.55,1.75ZM74.37,635.09c.97-.14,2.84,2.31,3.71.49.25-.53.73-1.27,1.06-1.55.85-.73,3.13.75,3.9-.25.28-.36.6-1.24.77-1.84l1.74-6.41c-.52-1.14-.64-2.1-.48-3.17l.36-2.45c-.41-.03-.94.07-.9-.13s.27-1.19.19-1.37c-.7-1.52.8-4.67.91-6.37l.81-12.25c.24-3.61.12-7.27,1.02-10.72.82-3.17.26-6.1.44-9.08.34-5.66,3.3-11.01,3.06-16.86l-.13-3.02-2.29-1.82c-1.26,2.3-1.9,4.21-2.67,6.5l-3.04,9.01-4.22,10.08-1.24,3.52c-.57,1.61-.86,3.53-2,4.9-2.56,3.1-4.52,6.23-6.01,9.96-.85,2.14-1.81,4.32-2.27,6.55-1.48,7.09-2.18,5.45-4.08,11.61l-3.94,4.95c-1.18,1.49-1.9,1.87-1.8,4,.04.8-.36,2.1.06,2.66,2.36,3.12,5.68,2.87,7.57,3.22,3.11.57,6.35.31,9.48-.16ZM29.69,560.7c-.4-.62-1.87-.59-1.9,0,.12.58,1.9.54,1.9,0ZM170.3,692.07c-.5-1.1-1.24-2.61-1.5-3.57l-.92-3.45-1.85-6.75-.97-5.06c-.35-1.83-1.38-6.76-2.91-7.98l-.16-1.97-.5-7.09-.5-3.82c-.3-2.27-.91-4.41-1.54-6.5-1.09-3.63-2.23-5.09-1.55-6.7-2.09-.42-.98-3.24-1.68-4.22-.97-1.36-2.23-2.7-2.21-4.72l.06-4.68c-.5-.23-2.45-2.03-2.3-3.07l.82-5.65c.11-.75-.04-1.66-.21-2.53-.43-2.21-.08-7.6-.55-9.91-.24-1.21-.57-3.36.27-4.27.31-.34.52-1.82.12-1.85l-1.9-.17.05-2.82-.83-.62c-.16-.12.41-.42.59-.49l.99-.35c-4.47-1.72-1.73,3.78-2.83,10.93-.34,2.22-.09,4.67-.27,6.88l-.34,3.97c-.08,1-.48,2.3-.49,3.33-.04,5.54-2.19,11.12-1.72,16.56.27,3.15.09,5.52-.38,8.66l-1.37,9.09-.87,4.81c-.54,3.02-1.91,17.46-.42,20.4l-.87,2.85.07,7.34c.07,8.03,2.24,6.31,1,11.37l-1.1,4.47c.84,1.78,4.39,3.17,6.23,2.19,2.24-1.19,4.38-1.05,6.14.82l4.45.41c1.88.17,3.71-.09,4.88,1.88,2.12,3.54,3.47.01,8.26.41-3.3-5.64,2.64-5.32-.75-14.26-.41-1.09-.07-3.04-.46-3.89ZM38.45,710.76c1.88.11,3.34-.34,4.85-.26l3.95.21c8.3.44,3.73-.95,12.22-1.95l6.98-.82c1.92-.22,5.76-2.8,7.61-1.53.66.45,1.24,1.49,2.14,2.77,1.1-2.9,1.61-6.03,1.81-9.15l.19-2.95c.2-3.13.5-6.02.92-9.28.7-2.28,3.83-5.87,4.05-7.61.07-.6-.98-1.71-1.1-2.38-1.25-7.02-2.56-2.31-.73-8.49l1.51-5.1c.43-1.47-.68-4.02-1.73-5.62-.65-.02-1.93.85-2.33,1.44-1.26,1.85-2.74,1.36-4.62,1.21l-4.48-.35c-.95-.07-2.36-1.31-3.19-1.28l-13.55.5c-1.68.06-3.53.27-5.27.65-3.83.82-5.65,9.06-5.73,9.17l-4.08,5.02c-1.65,2.03-2.26,4.62-3.72,6.99-.17,1.16,0,3.08-.94,4.14-2.37,2.66-1.94,6.45-3.32,9.51-.76,1.69-1.97,3.37-2.57,5.11l-1.94,5.67c-.41,1.19-.81,2.58-.41,4.11,1.38.49,3.53-.28,5.25-.18l8.23.47ZM477.2,708.45l3.93-.59c1.37-.21,2.92-1.11,4.45-1.81l-4.73-2.48,2.79-5.43c.1-.2.83-.6.74-.78s-.42-.67-.43-.87c-.16-2.93-.67-4.5.89-4.73-.29-.13-.99-1.14-.89-1.71.08-.45.51-1.03.96-1.64-2.02-1.12-.98-3.2-1.11-4.61l-.32-3.63c-.16-1.74-1.26-1.59-.25-7.79.12-.77.21-1.93.74-2.22l2.43-1.36-5.59-2.27c-.62-.25-1.86-1.54-2.16-1.69-1.23.32-1.82.25-3.13.03l-6.98-1.19c-.21-.04-.91-1.21-.79-.94.06.14-.52.85-.74.85l-14.93.41c-3.81.1-7.07.05-10.81-.01-.36,6.13-3.11,5.56-3.44,10.06-.59,8.13-4.54,8.04-4.78,19.37-.04,1.99,1.4,4.73-.71,6.25-.86.62-2.57,1.62-2.66,3.04l-.24,3.69c4.15-2.1,10.14,1.4,12.87,1.44,9.56.15,9.88.92,20.72.35,4.44-.24,12.58.48,14.15.25Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M204.88,262.18l-5.83,1.49c-1.67.43-3.47.9-5.05,1.43-1.44.49-2.95,1.65-4.65,1.77-15.01,1.04-5.79,3.04-24.86,1.79l-10.85-.71-5.43-.93c-1.24-.21-2.41-.27-3.55,0-6.05-3.7-6.77-2.06-14.92-5.64l-13.02-5.72-3.92-2.55c-3.39-2.2-6.23-4.44-9.46-6.78l-6.22-4.51c-2.86-2.07-4.99-4.92-7.56-7.35-2.22-2.1-4.28-4.01-6.01-6.57-1.29-1.91-8.03-10.89-8.15-11.17l-4.85-12.19c-1.23-3.1-4.69-12.94-5.2-15.91-.56-3.3-.88-6.4-1.76-9.55l-2.46-24.3c-.52-5.16-.03-10.16.46-15.35.95-10,5.48-18.95,10.33-27.7,3.14-5.65,6.7-10.48,10.54-15.59,3.08-4.1,5.76-8.28,9.72-11.67l10.58-9.05c1.31-1.12,3.32-2,4.82-3.06,3.02-2.14,6.04-3.89,9.25-5.63l6.94-3.77c2.84-1.54,9.11-3.88,11.99-3.72l5,.27c4.27.23,8.44-.45,12.7.14l14.5.53c4.29.16,8.31-.21,12.57.22,8.18.82,9.98-.16,16.3,3.15,2.01,1.05,4.89,1.44,6.75,2.89,6.31,4.9,4.35,0,13.91,6.57,5.21,3.58,12.1,5.29,17.37,8.72,2.78,1.81,5.56,3.41,8.16,5.34l5.9,4.38c1.49,1.11,3.14,2.42,3.6,4.3s1.82,2.62,3.03,3.97c2.78,3.12,5.28,6.4,7.84,9.85.98,1.31.64,4.19,1.31,5.65,1.92,4.18,3.59,8.08,4.83,12.46l3.41,11.96c.89,3.12,1.7,6.17,1.97,9.41.97,11.93,2.94,30.19-.65,41.61-2.61,8.29-4.85,14.72-9.23,21.97l-5.47,9.07-5.66,9.25c-1.29,2.1-3.55,3.89-5.24,5.86-9.23,10.75-9.02,10.56-22.05,16.59l-3.98,1.84-6.69,2.79-7.97,3.3c-.77.32-2.01.61-3.08.89ZM161.23,236.29c1.78-4.53-2.26-7.83-4.92-10.36-2.51-2.38-4.85-5.12-6.91-7.91-8.54-11.57-4.27-4.7-9.51-17.01-1.44-3.4-1.61-7.22-2.47-10.77-1.57-6.45-1.65-5.01-2.78-11.71l-1.41-8.35c-.62-3.7-.48-14.67.35-18.29l2.95-12.88c1.98-8.66,5.97-22.24,10.1-30.08,2.27-4.31,7.11-7.97,8.11-10.17,3.1-6.86,5.55-1.71,7.42-9.98-1.9-.88-3.46-.64-5,.08s-4.09.85-5.23,1.76c-1.74,1.4-2.44,1.59-4.73.91-6.74,3.73-5.94,2.15-12.76,5.18-2.92,1.29-5.73,2.27-8.09,4.83l-3.42.59c-.3,1.92-2.43,1.74-3.41,2.7-6.8,6.69-12.75,14.17-17.51,22.53-2.15,3.78-3.79,7.82-5.27,11.89-2.01,5.5-2.58,11.4-3.15,17.22-.69,7.14.54,13.71,2.01,20.51.26,1.21-.73,3.61-.27,5.12,1.81,5.97,4.33,11.09,7.32,16.43,1.96,3.51,3.27,7.39,5.85,10.4l7.22,8.4c.97,1.13,3.01,2.18,4.27,3.14l5.19,4c12.21,9.41,16.71,9.81,31.27,13.9,2.01.56,4.22,1.64,5.97-.42l-1.18-1.66ZM206.3,224.51c1.64-.3,3.31-2.55,4.6-3.57,2.63-2.06,4.61-4.34,6.9-6.72l6.6-6.86,2.87-3.29c2.34-2.68,3.85-5.65,5.47-8.86l4.69-9.28c2.06-4.08,3.71-8.68,4.3-13.3.59-4.59,0-9.14.05-13.74.05-3.82-.62-7.38-1.17-11.13-.58-3.96-1.03-7.77-2.49-11.48l-3.97-10.08c-.9-2.29-2.39-4.4-3.9-6.37-2.37-3.08-4.42-5.94-6.63-9.24-.55-.81-1.93-2.05-2.7-2.73-5.31-.68-2.36-5.68-10.36-8.25-3.87-1.24-6.06.63-8.52,2.88-.81.74-2.82.92-3.33,2.31-.54,1.48-1.97,1.9-3.53,2.09l-.12,2.76c-5.89-1.11-12.95,6.42-16.45,10.49-6.86,7.97-9.23,12.39-11.76,22.48l-1.59,6.35c-.89,3.55-.44,7.33-.4,10.93.08,6.6.53,12.9,2.24,19.47,2.45,9.41,6.7,18.26,12.16,26.33,2.06,3.04,4.73,5.55,7.08,8.36,6.6,7.92,8.91,5.81,11.15,8.74l2.22,2.91,6.59-1.22Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M334.94,597.93c-.87.39-2.34,1.33-3.37,1.99-.84-.28-7.94-4.83-7.06-6.11-1.53-.66-3.66-.97-5.69-1.06l-.13-1.27c-2.53.12-2.83-1.97-3.62-3.74-5.91-3.66-1.26-3.25-4.76-5.82l.42-.8c.12-.23-.5-.45-.88-.69l-.79-.5c-.21-.13.56-.58.9-.86-.64-.19-1.89-.65-1.94-1.26l-.22-2.71c-.13-1.61-.72-3.52-.66-5.09.05-1.11-.08-1.87-.1-2.64-.13-4.03.34-7.86.78-11.78l.53-4.7c.11-.95.38-2.27.58-3.3l.98-4.88c.56-2.81,2.74-10.08,3.87-12.94,3.49-8.83,13.89-13.57,22.39-16.41,5.01-1.67,10.45-1.65,15.66-.5l9.22,2.03c2.75.61,4.65,3.59,6.81,5.02,2.98,1.98,4.15,4.26,5.46,7.46,2.03,4.94,2.83,7.87,1.34,13.84-1.54,6.14.56,2.1-.35,8.96-.75,5.61-.19,8.17-2.14,11.75-1.22,2.22-.37,5.57-1.6,7.83l-6.14,11.33c-3.29,6.08-3.28,5.03-9.96,10.55-1.95,1.61-4.8,3.53-7.05,4.24l-9.21,2.89c-.23.58-.46.79-.66.67-.64-.51-1.95-1.76-2.59-1.47ZM346,569.31c.94-.38,2.62-1.84,3.16-2.6,1.42-2.01,1.33-4.92,1.54-7.41l.56-6.65c2.75-4.22.62-5.95-1.57-11.64-.1-.26-.95-.49-1.21-.69l-2.69-2.06c-.29.43.14-.23.47-.73l-5.59-1.37c-.26.42-.64.91-.96,1.06l-3.45,1.63c-1.58.75-1.79,1.82-2.61,3.24-2.96,5.14-5.9,7.74-4.53,12.14-.92,2.84-1.28,7.28-.5,10.5.29,1.2,1.2,2.14,1.83,3.42.96,1.94,2.72,6.32,6.1,4.96l9.46-3.8Z\\\"/></svg>\";\n\n/** bluesky's mark, from <BlueskySVG/> in the canonical catalog. */\nexport const blueskyIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"24\\\" height=\\\"24\\\"><path fill=\\\"currentColor\\\" d=\\\"M111.8 62.2C170.2 105.9 233 194.7 256 242.4c23-47.6 85.8-136.4 144.2-180.2c42.1-31.6 110.3-56 110.3 21.8c0 15.5-8.9 130.5-14.1 149.2C478.2 298 412 314.6 353.1 304.5c102.9 17.5 129.1 75.5 72.5 133.5c-107.4 110.2-154.3-27.6-166.3-62.9l0 0c-1.7-4.9-2.6-7.8-3.3-7.8s-1.6 3-3.3 7.8l0 0c-12 35.3-59 173.1-166.3 62.9c-56.5-58-30.4-116 72.5-133.5C100 314.6 33.8 298 15.7 233.1C10.4 214.4 1.5 99.4 1.5 83.9c0-77.8 68.2-53.4 110.3-21.8z\\\"/></svg>\";\n\n/** bluepy's mark, from <BluepySVG/> in the canonical catalog. */\nexport const bluepyIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"5 7 54 50\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" fill=\\\"currentColor\\\" d=\\\"M37.774,11.471c14.639,3.752 19.034,16.557 15.889,31.304c-0.696,3.261 -2.563,6.661 -6.356,8.693c-3.204,1.717 -8.07,2.537 -15.338,0.55c0,0 -9.634,-2.404 -9.634,-2.404c-10.684,-2.622 -13.957,-10.881 -12.308,-17.791c3.627,-15.201 15.543,-23.48 27.747,-20.352ZM27.471,24.991c-1.457,-0.698 -7.229,3.213 -7.663,8.926c-0.182,2.39 4.55,3.237 5.071,-0.169c0.725,-4.743 3.715,-8.218 2.592,-8.757ZM38.217,26.996c-2.083,0.327 -0.382,5.901 -0.595,10.727c-0.123,2.8 4.388,3.464 4.703,2.011c1.098,-5.073 -2.066,-13.058 -4.108,-12.738Z\\\"/></svg>\";\n\n/** blacksky's mark, from <BlackskySVG/> in the canonical catalog. */\nexport const blackskyIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 285 243\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M148.846 144.562C148.846 159.75 161.158 172.062 176.346 172.062H207.012V185.865H176.346C161.158 185.865 148.846 198.177 148.846 213.365V243.045H136.029V213.365C136.029 198.177 123.717 185.865 108.529 185.865H77.8633V172.062H108.529C123.717 172.062 136.029 159.75 136.029 144.562V113.896H148.846V144.562Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M170.946 31.8766C160.207 42.616 160.207 60.0281 170.946 70.7675L192.631 92.4516L182.871 102.212L161.186 80.5275C150.447 69.7881 133.035 69.7881 122.296 80.5275L101.309 101.514L92.2456 92.4509L113.232 71.4642C123.972 60.7248 123.972 43.3128 113.232 32.5733L91.5488 10.8899L101.309 1.12988L122.993 22.814C133.732 33.5533 151.144 33.5534 161.884 22.814L183.568 1.12988L192.631 10.1925L170.946 31.8766Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M79.0525 75.3259C75.1216 89.9962 83.8276 105.076 98.498 109.006L128.119 116.943L124.547 130.275L94.9267 122.338C80.2564 118.407 65.1772 127.113 61.2463 141.784L53.5643 170.453L41.1837 167.136L48.8654 138.467C52.7963 123.797 44.0902 108.718 29.4199 104.787L-0.201172 96.8497L3.37124 83.5173L32.9923 91.4542C47.6626 95.3851 62.7419 86.679 66.6728 72.0088L74.6098 42.3877L86.9895 45.7048L79.0525 75.3259Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M218.413 71.4229C222.344 86.093 237.423 94.7992 252.094 90.8683L281.715 82.9313L285.287 96.2628L255.666 104.2C240.995 108.131 232.29 123.21 236.22 137.88L243.902 166.55L231.522 169.867L223.841 141.198C219.91 126.528 204.831 117.822 190.16 121.753L160.539 129.69L156.967 116.357L186.588 108.42C201.258 104.49 209.964 89.4103 206.033 74.74L198.096 45.1189L210.476 41.8018L218.413 71.4229Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** reddwarf's mark, from <RedDwarfSVG/> in the canonical catalog. */\nexport const reddwarfIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" fill=\\\"none\\\" viewBox=\\\"0 0 24 24\\\" width=\\\"24\\\" height=\\\"24\\\"><path fill=\\\"currentColor\\\" d=\\\"M12.001 0A12 12 0 1 0 24 11.999A12.01 12.01 0 0 0 12.001 0m0 2.464a9.53 9.53 0 0 1 9.514 8.889a9.5 9.5 0 0 1-.863 4.649H3.35a9.53 9.53 0 0 1 .616-9.14a9.53 9.53 0 0 1 8.036-4.398\\\"/></svg>\";\n\n/** impro's mark, from <ImproSVG/> in the canonical catalog. */\nexport const improIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"703.85 608.54 182 182\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"m 750.80907,761.05196 c 32.00856,-14.57508 43.74607,-66.19889 46.75568,-82.89403\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"17.198\\\" stroke-linecap=\\\"round\\\"/><path d=\\\"m 838.89477,749.94818 c -23.95309,23.1314 -46.79512,8.32209 -47.93933,-21.18402 -0.73348,-22.86664 6.60931,-50.60623 6.60931,-50.60623\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"17.198\\\" stroke-linecap=\\\"round\\\"/><circle cx=\\\"803.50311\\\" cy=\\\"640.67676\\\" r=\\\"11.303644\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** lea's mark, from <LeaSVG/> in the canonical catalog. */\nexport const leaIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 32 32\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><rect width=\\\"32\\\" height=\\\"32\\\" rx=\\\"6.4\\\" fill=\\\"currentColor\\\"/><path d=\\\"M9.6 7.04h4.64v13.6h9.44v4.32H9.6z\\\" fill=\\\"var(--bg-primary, white)\\\"/></svg>\";\n\n/** leaflet's mark, from <LeafletSVG/> in the canonical catalog. */\nexport const leafletIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M6.19354 43.7615C4.02326 47.9529 2.3971 50.6787 0.825968 54.5903C-0.40065 57.6442 1.08066 61.1142 4.13453 62.3408C7.18841 63.5675 10.6584 62.0862 11.8851 59.0323C12.1956 58.2591 12.4949 57.4976 12.784 56.7619L12.7867 56.755C13.8877 53.9534 14.8372 51.5562 15.9859 49.3971C17.2796 49.3269 18.7589 49.3161 20.4268 49.3067L20.6365 49.3056C23.6784 49.2888 27.3433 49.2687 30.5036 48.629C33.6657 47.989 37.5791 46.476 39.3089 42.4233C39.7772 41.3263 40.2521 39.7069 39.8363 38.0619C39.9611 38.0618 40.0889 38.0618 40.2201 38.0618C40.2903 38.0618 40.3619 38.0618 40.4348 38.0619C42.1036 38.063 44.452 38.0645 46.5513 37.4934C49.0009 36.8271 51.5766 35.2492 52.7066 31.9254C53.115 30.7244 53.1906 29.4632 52.8381 28.2712C52.9461 28.2521 53.0569 28.2327 53.1706 28.2127C53.2252 28.2032 53.2807 28.1935 53.3369 28.1837C54.7713 27.933 56.6912 27.5974 58.3315 26.9838C59.9271 26.3869 62.5489 25.0534 63.3345 21.9971C63.7822 20.2552 63.7353 18.411 62.7294 16.7456C62.3111 16.0531 61.779 15.5078 61.3069 15.1057C61.7466 14.5555 62.3058 13.79 62.6909 12.9455C63.3591 11.4803 63.7036 9.32754 62.3369 7.22123C60.7856 4.83067 58.1256 4.41306 56.8098 4.30487C55.4415 4.19236 53.9707 4.31254 52.9137 4.40806C52.7702 4.05645 52.5725 3.68669 52.2993 3.32178C50.832 1.36219 48.5559 1.19749 47.2748 1.23194C44.6865 1.30155 42.6621 2.45002 41.1987 3.64119C40.4307 4.26635 38.6031 6.82233 38.0052 7.48715C38.0052 5.10325 35.7086 3.89003 34.0939 3.64119C30.959 3.15806 29.0173 5.17673 27.2122 7.48715C24.962 10.3672 23.22 14.0741 21.1617 16.8593C20.4523 16.3978 19.6125 15.3179 18.2694 15.3803C16.0564 15.4831 14.5863 16.9832 13.6351 18.0097C11.9797 19.796 10.9264 23.0413 10.2095 25.4575C9.43004 28.9535 8.89843 30.4276 8.26688 34.2604C7.8913 36.5398 7.70089 38.3385 7.70089 40.8839C7.27002 41.7282 6.77687 42.635 6.19354 43.7615Z\\\" fill=\\\"currentColor\\\"/><path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M18.9944 18.4871C19.6421 19.0561 20.4012 19.7231 22.0388 19.1533C23.1095 18.7808 24.4933 16.3538 26.0373 13.6458C28.2942 9.68748 30.8934 5.12877 33.3576 5.50855C36.3301 5.96665 36.1471 7.6122 36.0064 8.87787C35.9077 9.76563 35.8298 10.4665 36.8761 10.4396C37.9419 10.4122 38.9792 9.15957 40.1829 7.70596C41.8456 5.69807 43.826 3.30666 46.6379 3.23104C48.6204 3.17772 48.5891 4.03205 48.5574 4.89842C48.5371 5.45219 48.5166 6.01088 49.0218 6.34062C49.5194 6.66547 50.7707 6.55195 52.2092 6.42146C54.5154 6.21226 57.3027 5.95942 58.2369 7.39914C59.0583 8.66485 58.0119 9.92284 57.0089 11.1286C56.1594 12.1499 55.341 13.1337 55.7152 14.0531C56.0204 14.8031 56.647 15.2257 57.2613 15.64C58.2659 16.3175 59.2375 16.9727 58.7159 19.0019C58.1644 21.1475 54.8463 21.7286 51.7361 22.2733C49.1306 22.7296 46.6709 23.1603 46.106 24.4639C45.7516 25.2816 46.3394 25.6623 46.9979 26.0889C47.7849 26.5986 48.673 27.1739 48.1751 28.6384C47.011 32.0622 43.1238 32.0622 39.4756 32.0623C36.3442 32.0623 33.3888 32.0624 32.4827 34.2275C31.9596 35.4776 32.7514 35.6982 33.6201 35.9404C34.6836 36.2368 35.8623 36.5653 34.8856 38.8535C33.0165 43.2324 26.0433 43.2715 19.6599 43.3073C17.3193 43.3205 15.058 43.3332 13.1567 43.5592C12.9396 43.585 12.7471 43.7095 12.6334 43.8962C10.8838 46.767 9.64296 49.9245 8.31937 53.2926C8.0286 54.0325 7.73384 54.7825 7.42881 55.542C7.02558 56.5459 5.88485 57.0328 4.88093 56.6296C3.877 56.2264 3.39005 55.0857 3.79328 54.0817C5.29513 50.3426 7.02775 46.9042 8.92229 43.7479C12.0142 38.0542 18.109 31.0686 24.5542 25.8207C30.2889 21.0461 35.7654 17.4724 42.1392 14.7607C42.9371 14.4212 42.7002 13.4882 41.8673 13.7289C36.2143 15.3625 31.2171 18.6029 26.0373 21.8684C20.4035 25.4201 15.6824 30.2231 12.7771 33.7151C12.2649 34.3308 11.1447 33.8245 11.306 33.04C12.5677 26.9025 13.87 21.27 15.7789 19.2101C17.5913 17.2543 18.2114 17.7992 18.9944 18.4871Z\\\" fill=\\\"var(--bg-primary, white)\\\"/></svg>\";\n\n/** pdsls's mark, from <PdslsSVG/> in the canonical catalog. */\nexport const pdslsIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\"><path fill=\\\"currentColor\\\" d=\\\"M14 1a3 3 0 0 1 2.348 4.868l2 3.203Q18.665 9 19 9a3 3 0 1 1-2.347 1.132l-2-3.203a3 3 0 0 1-1.304 0l-2.001 3.203c.408.513.652 1.162.652 1.868s-.244 1.356-.653 1.868l2.002 3.203Q13.664 17 14 17a3 3 0 1 1-2.347 1.132L9.65 14.929a3 3 0 0 1-1.302 0l-2.002 3.203a3 3 0 1 1-1.696-1.06l2.002-3.204A3 3 0 0 1 9.65 9.07l2.002-3.202A3 3 0 0 1 14 1\\\"/></svg>\";\n\n/** anisotaReader's mark, the same one `anisotaIconSvg` carries. */\nexport const anisotaReaderIconSvg: string = anisotaIconSvg;\n\n/** atptools's mark, from <WrenchSVG/> in the canonical catalog. */\nexport const atptoolsIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" aria-hidden=\\\"true\\\"><path d=\\\"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z\\\"/></svg>\";\n\n/** witchsky's mark, from <WitchskySVG/> in the canonical catalog. */\nexport const witchskyIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" fill=\\\"none\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"24\\\" height=\\\"24\\\"><path fill=\\\"currentColor\\\" d=\\\"M374.473 57.7173C367.666 50.7995 357.119 49.1209 348.441 53.1659C347.173 53.7567 342.223 56.0864 334.796 59.8613C326.32 64.1696 314.568 70.3869 301.394 78.0596C275.444 93.1728 242.399 114.83 218.408 139.477C185.983 172.786 158.719 225.503 140.029 267.661C130.506 289.144 122.878 308.661 117.629 322.81C116.301 326.389 115.124 329.63 114.104 332.478C87.1783 336.42 64.534 341.641 47.5078 348.101C37.6493 351.84 28.3222 356.491 21.0573 362.538C13.8818 368.511 6.00003 378.262 6.00003 391.822C6.00014 403.222 11.8738 411.777 17.4566 417.235C23.0009 422.655 29.9593 426.793 36.871 430.062C50.8097 436.653 69.5275 441.988 90.8362 446.249C133.828 454.846 192.21 460 256.001 460C319.79 460 378.172 454.846 421.164 446.249C442.472 441.988 461.19 436.653 475.129 430.062C482.041 426.793 488.999 422.655 494.543 417.235C500.039 411.862 505.817 403.489 505.996 392.353L506 391.822L505.995 391.188C505.754 377.959 498.012 368.417 490.945 362.534C483.679 356.485 474.35 351.835 464.491 348.095C446.749 341.366 422.906 335.982 394.476 331.987C393.6 330.57 392.633 328.995 391.595 327.273C386.477 318.777 379.633 306.842 372.737 293.115C358.503 264.781 345.757 232.098 344.756 206.636C343.87 184.121 351.638 154.087 360.819 127.789C365.27 115.041 369.795 103.877 373.207 95.9072C374.909 91.9309 376.325 88.7712 377.302 86.6328C377.79 85.5645 378.167 84.7524 378.416 84.2224C378.54 83.9579 378.632 83.7635 378.69 83.643C378.718 83.5829 378.739 83.5411 378.75 83.5181C378.753 83.5108 378.756 83.5049 378.757 83.5015C382.909 74.8634 381.196 64.5488 374.473 57.7173Z\\\"/></svg>\";\n\n/** deer's mark, from <DeerSVG/> in the canonical catalog. */\nexport const deerIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" fill=\\\"none\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"24\\\" height=\\\"24\\\"><path fill=\\\"currentColor\\\" d=\\\"m 149.96484,186.56641 46.09766,152.95898 c 0,0 -6.30222,-9.61174 -15.60547,-17.47656 -8.87322,-7.50128 -28.4082,-4.04492 -28.4082,-4.04492 0,0 6.14721,39.88867 15.53125,44.39843 10.71251,5.1482 22.19726,0.16993 22.19726,0.16993 0,0 11.7613,-4.87282 22.82032,31.82421 5.26534,17.47196 15.33258,50.877 20.9707,69.58594 2.16717,7.1913 8.83789,7.25781 8.83789,7.25781 0,0 6.67072,-0.0665 8.83789,-7.25781 5.63812,-18.70894 15.70536,-52.11398 20.9707,-69.58594 11.05902,-36.69703 22.82032,-31.82421 22.82032,-31.82421 0,0 11.48475,4.97827 22.19726,-0.16993 9.38404,-4.50976 15.5332,-44.39843 15.5332,-44.39843 0,0 -19.53693,-3.45636 -28.41015,4.04492 -9.30325,7.86482 -15.60547,17.47656 -15.60547,17.47656 l 46.09766,-152.95898 -49.32618,83.84179 -20.34375,-31.1914 6.35547,54.96875 -23.1582,39.36132 c 0,0 -2.97595,5.06226 -5.94336,4.68946 -0.009,-0.001 -0.0169,0.003 -0.0254,0.01 -0.008,-0.007 -0.0167,-0.0109 -0.0254,-0.01 -2.96741,0.3728 -5.94336,-4.68946 -5.94336,-4.68946 l -23.1582,-39.36132 6.35547,-54.96875 -20.34375,31.1914 z\\\" transform=\\\"matrix(2.6921023,0,0,1.7145911,-396.58283,-308.01527)\\\"/></svg>\";\n\n/** mu's mark, from <MuSVG/> in the canonical catalog. */\nexport const muIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 1000 712.872\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path fill=\\\"currentColor\\\" d=\\\"M875.8816,72.7683l.0813,250.1542c-1.1385,38.3852-17.3221,74.3306-44.1592,100.7611-56.3579,55.382-146.3841,56.6019-204.0432,2.2771-5.2861-4.9608-10.1656-10.3282-14.7197-16.0209-19.5992-24.56-31.5539-55.138-31.6352-87.3425l-.3253-197.8626,112.5531-19.8432.1626,215.3473c0,19.1113,17.2408,33.5057,35.0509,33.3431,18.8673-.244,34.075-15.045,34.7256-34.1563V92.5301l112.3092-19.7619Z M560.0171,298.0372v196.1547l-112.5531,19.8432v-212.8263c.8132-19.5992-14.3131-35.6201-33.2617-36.5147-19.1113-.8946-35.7015,13.7438-36.6774,33.3431v228.3592l-112.4718,19.7619v-217.5431c-1.3012-19.5179-17.8101-33.5057-36.4334-32.6925-18.7046.8132-33.7497,16.3462-33.5057,35.7828v226.8954l-112.3092,19.7619v-251.862c1.1385-37.2466,16.3462-72.3788,42.0448-98.728,45.6231-46.5989,116.6194-57.9031,174.2784-27.0811,1.7891.9759,3.8223.5693,4.8795-.6506,60.0988-65.4662,163.2183-63.3518,220.7147,4.1476,1.3825,1.6265,2.765,3.253,4.0662,4.9608,19.5992,25.1293,30.7407,56.1139,31.2286,88.8877Z\\\"/></svg>\";\n\n/** northsky's mark, from <NorthskySVG/> in the canonical catalog. */\nexport const northskyIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 1024 1024\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path fill=\\\"currentColor\\\" d=\\\"M341,279.65c13.49-28.78,31.95-68.19,119.16-68.19,68.59,0,137.73,27.84,210.92,57.32C741.22,297,819.21,328.36,904.8,338.15,815.77,218,673,140,511.88,140c-141.15,0-268.24,59.92-357.45,155.62,44,17.32,84.15,29.6,116.89,29.6C317.56,325.22,326.54,310.43,341,279.65Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M295.26,506.52c53.69,0,64.49-17.36,80.41-50.63,15.46-32.33,34.7-72.56,128.36-72.56,75,0,154.6,33.2,246.78,71.64,74.85,31.21,156.89,65.34,241,81.63a485.59,485.59,0,0,0-64.23-164.85c-108.88-6-201.82-43.35-284.6-76.69-66.77-26.89-129.69-52.22-182.84-52.22-46.88,0-56.43,15.74-70.55,45.89-13.41,28.65-31.79,67.87-118.24,67.87-44.25,0-90.68-13.48-141-33.11A488.33,488.33,0,0,0,62.86,435.7c8.3,3.38,16.55,6.74,24.68,10.08C163.88,477,235.84,506.52,295.26,506.52Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M319.2,687.81c61.24,0,73.38-19.09,91.18-55.66,16.7-34.28,37.48-76.95,137.58-76.95,81.4,0,174.78,39.89,282.9,86.09,52.19,22.29,107.38,45.84,163.42,65.43A483,483,0,0,0,997,570.22C898.41,554.4,806,516,722.27,481.05,640.39,446.91,563.19,414.72,504,414.72c-53.25,0-64,17.29-79.84,50.42-15.51,32.42-34.8,72.77-128.93,72.77-75.08,0-153.29-32-236.08-66l-8.91-3.64A486.91,486.91,0,0,0,24,601.68c27.31,9.55,53.55,19.52,79,29.19C183.24,661.42,252.61,687.81,319.2,687.81Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M275.87,880.64l272-184.16,120.79,114,78.55-56.88,184.6,125.1a485.54,485.54,0,0,0,55.81-138.27c-64.41-21.42-127-48.15-185.92-73.32-97-41.44-188.51-80.52-253.69-80.52-59.57,0-71.53,18.85-89.12,55C442,676.14,421.05,719.19,319.2,719.19c-81.26,0-159.95-29.93-243.27-61.61-17.07-6.5-34.57-13.14-52.49-19.69A486.06,486.06,0,0,0,95.19,884l91.29-62.16Z\\\"/></svg>\";\n\n/** tangled's mark, from <TangledSVG/> in the canonical catalog. */\nexport const tangledIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" viewBox=\\\"0 0 25 25\\\" width=\\\"24\\\" height=\\\"24\\\"><path fill=\\\"currentColor\\\" d=\\\"m 16.775491,24.987061 c -0.78517,-0.0064 -1.384202,-0.234614 -2.033994,-0.631295 -0.931792,-0.490188 -1.643475,-1.31368 -2.152014,-2.221647 C 11.781409,23.136647 10.701392,23.744942 9.4922931,24.0886 8.9774725,24.238111 8.0757679,24.389777 6.5811304,23.84827 4.4270703,23.124679 2.8580086,20.883331 3.0363279,18.599583 3.0037061,17.652919 3.3488675,16.723769 3.8381157,15.925061 2.5329485,15.224503 1.4686756,14.048584 1.0611184,12.606459 0.81344502,11.816973 0.82385989,10.966486 0.91519098,10.154906 1.2422711,8.2387903 2.6795811,6.5725716 4.5299585,5.9732484 5.2685364,4.290122 6.8802592,3.0349975 8.706276,2.7794663 c 1.2124148,-0.1688264 2.46744,0.084987 3.52811,0.7011837 1.545426,-1.7139736 4.237779,-2.2205077 6.293579,-1.1676231 1.568222,0.7488935 2.689625,2.3113526 2.961888,4.0151464 1.492195,0.5977882 2.749007,1.8168898 3.242225,3.3644951 0.329805,0.9581836 0.340709,2.0135956 0.127128,2.9974286 -0.381606,1.535184 -1.465322,2.842146 -2.868035,3.556463 0.0034,0.273204 0.901506,2.243045 0.751284,3.729647 -0.03281,1.858525 -1.211631,3.619894 -2.846433,4.475452 -0.953967,0.556812 -2.084452,0.546309 -3.120531,0.535398 z m -4.470079,-5.349839 c 1.322246,-0.147248 2.189053,-1.300106 2.862307,-2.338363 0.318287,-0.472954 0.561404,-1.002348 0.803,-1.505815 0.313265,0.287151 0.578698,0.828085 1.074141,0.956909 0.521892,0.162542 1.133743,0.03052 1.45325,-0.443554 0.611414,-1.140449 0.31004,-2.516537 -0.04602,-3.698347 C 18.232844,11.92927 17.945151,11.232927 17.397785,10.751793 17.514522,9.9283111 17.026575,9.0919791 16.332883,8.6609491 15.741721,9.1323278 14.842258,9.1294949 14.271975,8.6252369 13.178927,9.7400102 12.177239,9.7029996 11.209704,8.8195135 10.992255,8.6209543 10.577326,10.031484 9.1211947,9.2324497 8.2846288,9.9333947 7.6359672,10.607693 7.0611981,11.578553 6.5026891,12.62523 5.9177873,13.554793 5.867393,14.69141 c -0.024234,0.66432 0.4948601,1.360337 1.1982269,1.306329 0.702996,0.06277 1.1815208,-0.629091 1.7138087,-0.916491 0.079382,0.927141 0.1688108,1.923227 0.4821259,2.828358 0.3596254,1.171275 1.6262605,1.915695 2.8251855,1.745211 0.08481,-0.0066 0.218672,-0.01769 0.218672,-0.0176 z m 0.686342,-3.497495 c -0.643126,-0.394168 -0.33365,-1.249599 -0.359402,-1.870938 0.064,-0.749774 0.115321,-1.538054 0.452402,-2.221125 0.356724,-0.487008 1.226721,-0.299139 1.265134,0.325689 -0.02558,0.628509 -0.314101,1.25416 -0.279646,1.9057 -0.07482,0.544043 0.05418,1.155133 -0.186476,1.652391 -0.197455,0.275121 -0.599638,0.355105 -0.892012,0.208283 z m -2.808766,-0.358124 c -0.605767,-0.328664 -0.4133176,-1.155655 -0.5083256,-1.73063 0.078762,-0.66567 0.013203,-1.510085 0.5705316,-1.976886 0.545037,-0.380109 1.286917,0.270803 1.029164,0.868384 -0.274913,0.755214 -0.09475,1.580345 -0.08893,2.34609 -0.104009,0.451702 -0.587146,0.691508 -1.002445,0.493042 z\\\"/></svg>\";\n\n/** pinksky's mark, from <PinskySVG/> in the canonical catalog. */\nexport const pinkskyIconSvg: string = \"<svg viewBox=\\\"0 0 512 512\\\" width=\\\"24\\\" height=\\\"24\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><g><path fill=\\\"currentColor\\\" d=\\\"M 208.621 314.167 C 207.265 316.222 205.968 318.315 204.708 320.429 C 203.149 322.581 201.539 324.689 199.925 326.8 C 198.147 329.129 196.403 331.481 194.662 333.837 C 190.539 339.369 186.219 344.736 181.848 350.074 C 178.893 353.711 176.266 357.307 173.969 361.413 C 175.93 363.881 176.919 364.758 180.086 365.239 C 181.15 365.232 182.215 365.224 183.311 365.216 C 184.519 365.216 185.727 365.216 186.971 365.215 C 188.273 365.198 189.576 365.18 190.917 365.162 C 192.252 365.157 193.586 365.152 194.961 365.147 C 199.23 365.128 203.498 365.085 207.767 365.042 C 210.658 365.025 213.55 365.009 216.441 364.995 C 223.535 364.961 230.628 364.894 237.723 364.829 C 237.723 346.795 237.723 328.762 237.723 310.183 C 215.886 307.758 215.886 307.758 208.621 314.167 L 208.621 314.167 L 208.621 314.167 Z M 338.536 0.323 C 339.276 0.315 340.015 0.308 340.777 0.3 C 343.216 0.278 345.655 0.264 348.095 0.253 C 348.932 0.248 349.769 0.244 350.631 0.239 C 355.065 0.215 359.498 0.199 363.931 0.188 C 368.489 0.176 373.046 0.136 377.604 0.091 C 381.127 0.061 384.65 0.052 388.173 0.048 C 389.852 0.042 391.531 0.029 393.209 0.008 C 406.998 -0.156 417.626 2.148 427.844 11.909 C 436.778 22.707 438.538 31.79 438.574 45.53 C 438.588 47.989 438.644 50.445 438.701 52.904 C 438.712 54.47 438.72 56.036 438.726 57.602 C 438.741 59.02 438.757 60.437 438.772 61.897 C 438.09 65.416 438.09 65.416 435.409 67.652 C 432.398 68.831 432.398 68.831 429.12 68.195 C 424.416 66.023 420.045 63.416 415.661 60.673 C 407.646 55.871 399.472 56.144 390.422 56.197 C 389.372 56.199 388.322 56.2 387.24 56.202 C 383.911 56.208 380.583 56.223 377.254 56.237 C 374.987 56.243 372.72 56.248 370.452 56.253 C 364.916 56.265 359.381 56.285 353.845 56.308 C 354.458 56.916 355.072 57.523 355.704 58.149 C 358.526 60.948 361.344 63.751 364.162 66.554 C 365.127 67.51 366.092 68.465 367.086 69.449 C 372.102 74.446 376.923 79.513 381.534 84.885 C 384.841 88.627 388.419 92.09 391.983 95.585 C 396.93 100.48 401.729 105.379 406.213 110.705 C 409.671 114.54 413.362 118.136 417.029 121.769 C 440.92 145.534 456.437 170.996 456.732 205.659 C 456.794 235.826 446.289 260.073 425.781 282.006 C 407.412 299.492 382.719 310.423 357.325 310.312 C 356.325 310.312 355.324 310.312 354.294 310.313 C 351.004 310.312 347.715 310.303 344.426 310.294 C 342.138 310.292 339.851 310.29 337.563 310.289 C 331.556 310.285 325.548 310.274 319.54 310.261 C 312.325 310.247 305.11 310.242 297.895 310.235 C 286.945 310.224 275.995 310.203 265.045 310.183 C 265.045 328.216 265.045 346.249 265.045 364.829 C 270.282 364.762 275.518 364.696 280.913 364.628 C 284.244 364.599 287.574 364.572 290.905 364.551 C 296.184 364.517 301.463 364.477 306.742 364.399 C 311.001 364.337 315.26 364.303 319.519 364.288 C 321.139 364.278 322.758 364.258 324.377 364.227 C 333.667 364.057 341.044 364.016 348.152 370.521 C 354.938 377.336 356.552 382.664 356.62 392.009 C 356.657 392.909 356.694 393.808 356.733 394.735 C 356.777 399.529 356.467 402.598 353.387 406.391 C 348.845 410.748 345.786 410.811 339.672 410.776 C 334.993 410.117 333.109 408.091 329.937 404.674 C 328.799 402.397 328.799 402.397 328.799 392.151 C 307.76 392.151 286.722 392.151 265.045 392.151 C 265.045 422.206 265.045 452.262 265.045 483.227 C 271.432 483.227 277.819 483.227 284.399 483.227 C 292.181 489.713 292.181 489.713 292.68 493.669 C 293.03 502.573 293.03 502.573 289.878 506.566 C 285.159 510.76 281.236 511.975 274.98 511.991 C 273.29 511.996 273.29 511.996 271.565 512 C 270.4 511.991 269.234 511.982 268.034 511.973 C 266.877 511.982 265.721 511.991 264.53 512 C 255.497 511.977 247.857 511.577 241.138 504.858 C 237.434 498.992 237.25 494.241 237.335 487.533 C 237.334 486.499 237.334 485.465 237.333 484.4 C 237.336 481 237.362 477.6 237.389 474.2 C 237.395 471.836 237.4 469.472 237.404 467.108 C 237.417 460.898 237.45 454.688 237.488 448.478 C 237.523 442.137 237.539 435.795 237.556 429.453 C 237.592 417.019 237.651 404.585 237.723 392.151 C 236.892 392.164 236.062 392.177 235.206 392.19 C 227.336 392.304 219.465 392.391 211.594 392.446 C 207.548 392.476 203.504 392.516 199.458 392.581 C 194.795 392.655 190.133 392.682 185.47 392.707 C 184.034 392.737 182.599 392.766 181.12 392.796 C 170.455 392.8 162.943 390.623 154.758 383.684 C 148.061 375.608 145.016 368.616 145.579 358.069 C 147.11 347.032 153.285 339.409 160.423 331.207 C 163.961 327.054 167.17 322.689 170.367 318.272 C 170.937 317.49 171.507 316.708 172.094 315.902 C 173.48 313.998 174.864 312.091 176.246 310.183 C 174.921 310.193 173.595 310.203 172.23 310.214 C 159.734 310.306 147.238 310.374 134.741 310.419 C 128.317 310.443 121.893 310.475 115.469 310.526 C 109.268 310.576 103.068 310.603 96.867 310.615 C 94.502 310.623 92.137 310.64 89.773 310.664 C 86.458 310.697 83.145 310.702 79.831 310.7 C 78.855 310.716 77.879 310.733 76.873 310.749 C 69.804 310.701 65.7 308.834 60.529 303.81 C 54.779 296.599 54.936 290.663 55.57 281.722 C 60.157 246.346 72.819 212.811 95.416 184.953 C 95.913 184.341 96.409 183.729 96.921 183.099 C 129.092 143.679 175.083 116.436 225.941 110.172 C 244.904 108.397 265.212 107.661 283.261 114.369 C 284.473 114.808 285.685 115.247 286.934 115.699 C 305.777 123.069 319.879 134.655 333.906 148.905 C 335.782 150.81 337.665 152.708 339.551 154.605 C 343.539 158.619 347.518 162.642 351.497 166.667 C 356.14 171.364 360.786 176.057 365.443 180.74 C 367.294 182.606 369.138 184.479 370.982 186.352 C 372.115 187.493 373.248 188.633 374.381 189.774 C 375.856 191.267 375.856 191.267 377.361 192.79 C 380.834 195.926 383.23 197.3 387.856 197.903 C 392.349 197.364 394.726 195.704 398.244 192.922 C 400.287 188.837 400.171 184.841 399.383 180.399 C 397.933 178.106 397.933 178.106 395.922 176.062 C 395.195 175.276 394.468 174.49 393.719 173.68 C 390.01 169.838 386.269 166.036 382.466 162.287 C 381.181 161.013 381.181 161.013 379.871 159.714 C 378.027 157.885 376.181 156.058 374.334 154.232 C 371.406 151.334 368.483 148.431 365.561 145.526 C 357.259 137.273 348.954 129.022 340.631 120.79 C 335.526 115.741 330.432 110.68 325.346 105.612 C 323.414 103.691 321.478 101.775 319.538 99.863 C 316.82 97.183 314.116 94.489 311.415 91.792 C 310.622 91.017 309.828 90.242 309.011 89.443 C 298.993 79.363 292.05 67.333 291.835 52.906 C 291.847 52.009 291.858 51.113 291.87 50.189 C 291.88 49.243 291.889 48.298 291.899 47.323 C 292.3 32.708 298.585 21.018 309.16 10.984 C 317.707 3.923 327.58 0.415 338.536 0.323 L 338.536 0.323 L 338.536 0.323 Z\\\"/></g></svg>\";\n\n/** margin's mark, from <MarginSVG/> in the canonical catalog. */\nexport const marginIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 265 231\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path fill=\\\"currentColor\\\" d=\\\"M0 230 V0 H199 V65.7156 H149.5 V115.216 H182.5 L199 131.716 V230 Z\\\"/><path fill=\\\"currentColor\\\" d=\\\"M215 214.224 V230 H264.5 V0 H215.07 V16.2242 H248.5 V214.224 H215 Z\\\"/></svg>\";\n\n/** semble's mark, from <SembleSVG/> in the canonical catalog. */\nexport const sembleIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 32 43\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M31.0164 33.1306C31.0164 38.581 25.7882 42.9994 15.8607 42.9994C5.93311 42.9994 0 37.5236 0 32.0732C0 26.6228 5.93311 23.2617 15.8607 23.2617C25.7882 23.2617 31.0164 27.6802 31.0164 33.1306Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M25.7295 19.3862C25.7295 22.5007 20.7964 22.2058 15.1558 22.2058C9.51511 22.2058 4.93445 22.1482 4.93445 19.0337C4.93445 15.9192 9.71537 12.6895 15.356 12.6895C20.9967 12.6895 25.7295 16.2717 25.7295 19.3862Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M25.0246 10.9256C25.0246 14.0401 20.7964 11.9829 15.1557 11.9829C9.51506 11.9829 6.34424 13.6876 6.34424 10.5731C6.34424 7.45857 9.71537 5.63867 15.356 5.63867C20.9967 5.63867 25.0246 7.81103 25.0246 10.9256Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M20.4426 3.5755C20.4426 5.8323 18.2088 4.22951 15.2288 4.22951C12.2489 4.22951 10.5737 5.8323 10.5737 3.5755C10.5737 1.31871 12.2489 0 15.2288 0C18.2088 0 20.4426 1.31871 20.4426 3.5755Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** streamplace's mark, from <StreamplaceSVG/> in the canonical catalog. */\nexport const streamplaceIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 493.29 481.09\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"m253.76 445.69-208.02-93.734-45.742-290.22 243.33-61.739 249.95 58.678-9.9427 310.8z\\\" fill=\\\"currentColor\\\" opacity=\\\"0.4\\\"/><path d=\\\"m253.59 481.09-241.31-105.15-12.277-314.2 253.59 70.875 239.69-73.936-85.842 261.91z\\\" fill=\\\"currentColor\\\" opacity=\\\"0.7\\\"/><path d=\\\"m493.29 58.678-239.7 73.933-0.59253 348.48 230.34-111.61z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** grain's mark, from <GrainSVG/> in the canonical catalog. */\nexport const grainIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M28.9823 37.4693C22.5838 37.4693 17.3117 36.9511 13.1662 35.9147C9.02069 34.8333 5.95661 33.2336 3.97396 31.1158C1.99132 28.9529 1 26.2493 1 23.005C1 19.986 1.96879 17.3725 3.90637 15.1645C5.84396 12.9115 8.86298 11.1542 12.9634 9.89252C17.109 8.63084 22.4486 8 28.9823 8C30.289 8 31.6183 8 32.9701 8C34.3219 8 35.6512 8 36.9579 8H62.7773V16.5163C59.8484 16.6515 56.8745 16.5164 53.8554 16.1108C50.8815 15.6602 48.1328 15.0744 45.6095 14.3535L44.866 13.3396C46.8937 13.9705 48.8087 14.7815 50.6111 15.7729C52.4586 16.7642 53.9456 17.9583 55.0721 19.3551C56.1986 20.752 56.7618 22.4192 56.7618 24.3568C56.7618 27.1505 55.793 29.5387 53.8554 31.5214C51.9629 33.4589 48.9664 34.9459 44.866 35.9823C40.8106 36.9736 35.516 37.4693 28.9823 37.4693ZM43.379 56.6649V54.8399C43.379 53.4881 42.7707 52.677 41.5541 52.4067C40.3825 52.1814 38.5125 52.0687 35.9441 52.0687H17.0864C13.8872 52.0687 11.2962 51.8434 9.31358 51.3928C7.376 50.9422 5.88902 50.3339 4.85264 49.5679C3.86131 48.8019 3.18541 47.9457 2.82493 46.9995C2.50951 46.0983 2.3518 45.1971 2.3518 44.2959C2.3518 42.3583 3.07276 40.8488 4.51468 39.7673C5.95661 38.6408 8.16455 37.8523 11.1385 37.4017C14.1125 36.9511 17.8975 36.7258 22.4936 36.7258L28.9823 37.4693C25.1973 37.4693 22.5612 37.672 21.0743 38.0776C19.5873 38.4381 18.8438 39.1816 18.8438 40.3081C18.8438 40.9389 19.1367 41.412 19.7225 41.7275C20.3082 41.9978 21.0968 42.133 22.0881 42.133H42.0272C46.4881 42.133 50.0028 42.4484 52.5712 43.0793C55.1397 43.7552 56.9421 44.8591 57.9784 46.3912C59.0599 47.9683 59.6006 50.1086 59.6006 52.8122V56.6649H43.379ZM28.9823 28.615C31.9563 28.615 34.3444 28.3897 36.1468 27.9391C37.9943 27.4434 39.3236 26.79 40.1347 25.979C40.9457 25.1679 41.3513 24.2667 41.3513 23.2754C41.3513 22.1489 40.9457 21.1801 40.1347 20.369C39.3236 19.5579 38.0168 18.9271 36.2144 18.4765C34.412 18.0259 32.0013 17.8006 28.9823 17.8006C26.0083 17.8006 23.5976 18.0259 21.7502 18.4765C19.9027 18.9271 18.5509 19.5579 17.6948 20.369C16.8386 21.1801 16.4105 22.1489 16.4105 23.2754C16.4105 24.2667 16.8161 25.1679 17.6272 25.979C18.4833 26.79 19.8351 27.4434 21.6826 27.9391C23.53 28.3897 25.9633 28.615 28.9823 28.615Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** popfeed's mark, from <PopfeedSVG/> in the canonical catalog. */\nexport const popfeedIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M32.0001 1.09973C45.9147 1.09978 57.2008 12.0113 57.2008 25.4784C57.2008 38.9454 45.9147 49.8567 32.0001 49.8568C29.4003 49.8568 27.047 49.5296 24.7268 48.8357C24.1191 48.6539 23.4581 48.819 23.0353 49.2846L11.8188 61.6346C11.3417 62.1589 10.8682 62.5566 10.3222 62.7565C9.77269 62.9578 9.16182 62.9547 8.41926 62.703C7.66113 62.4459 7.25363 61.9416 7.03822 61.4125C6.82456 60.8876 6.79974 60.3386 6.79915 59.9836V25.4784C6.79917 12.0113 18.0854 1.09973 32.0001 1.09973ZM32.7157 13.178C32.3467 12.3503 31.1719 12.3503 30.8029 13.178L27.6925 20.1556C27.5403 20.4969 27.2177 20.7313 26.8461 20.7706L19.249 21.5722C18.3478 21.6674 17.9848 22.7849 18.658 23.3916L24.3329 28.5057C24.6105 28.7559 24.7338 29.1352 24.6562 29.5008L23.0711 36.9738C22.883 37.8602 23.8336 38.5509 24.6186 38.0982L31.2361 34.2812C31.5598 34.0945 31.9586 34.0945 32.2823 34.2812L38.8998 38.0982C39.6848 38.5509 40.6353 37.8603 40.4473 36.9738L38.8624 29.5008C38.7848 29.1352 38.9079 28.7559 39.1855 28.5057L44.8604 23.3916C45.5336 22.7849 45.1706 21.6674 44.2694 21.5722L36.6723 20.7706C36.3006 20.7313 35.978 20.497 35.8258 20.1556L32.7157 13.178Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** sifa's mark, from <SifaSVG/> in the canonical catalog. */\nexport const sifaIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M15.2088 1.84613C22.4429 1.84614 28.3956 7.79885 28.3956 15.0329C28.3956 18.8469 26.6327 21.6555 23.1796 21.6555C21.6008 21.6555 20.3755 21.0682 19.5103 20.0663C18.3527 21.0567 16.8502 21.6555 15.2088 21.6555C11.5537 21.6555 8.58621 18.6881 8.5862 15.0329C8.5862 11.3778 11.5536 8.41035 15.2088 8.41035C16.3413 8.41035 17.4076 8.69547 18.3403 9.19744C18.6926 8.72009 19.2591 8.41038 19.8973 8.41035C20.9648 8.41035 21.8314 9.27693 21.8314 10.3444V15.0329C21.8314 15.7841 21.9179 16.4822 22.1573 17.045C22.3416 17.4779 22.6564 17.7874 23.1796 17.7874C23.7027 17.7874 24.0173 17.4778 24.2016 17.045C24.4409 16.4822 24.5275 15.7841 24.5275 15.0329C24.5275 9.92092 20.3208 5.71427 15.2088 5.71426C10.0968 5.71426 5.89011 9.92092 5.89011 15.0329C5.89012 20.145 10.0968 24.3516 15.2088 24.3516C17.1329 24.3516 19.2115 23.7904 20.7023 22.7994C21.5912 22.2086 22.7927 22.4507 23.3836 23.3396C23.9744 24.2286 23.7324 25.4301 22.8434 26.0209C20.7685 27.4 17.8867 28.2198 15.2088 28.2198C7.97469 28.2198 2.02199 22.267 2.02198 15.0329C2.02198 7.79884 7.97469 1.84613 15.2088 1.84613ZM15.2088 12.2785C13.6885 12.2785 12.4543 13.5127 12.4543 15.0329C12.4543 16.5532 13.6885 17.7874 15.2088 17.7874C16.7291 17.7874 17.9632 16.5532 17.9633 15.0329C17.9633 13.5127 16.7291 12.2785 15.2088 12.2785Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M21.4505 36.9231C24.5579 36.9231 27.0769 39.4421 27.0769 42.5494V55.2088C27.0769 58.3161 24.5579 60.8351 21.4505 60.8351H8.79121C5.68385 60.8351 3.16483 58.3161 3.16483 55.2088V42.5494C3.16483 39.4421 5.68385 36.9231 8.79121 36.9231H21.4505ZM8.79121 41.1428C8.01437 41.1428 7.38462 41.7726 7.38462 42.5494V55.2088C7.38462 55.9856 8.01437 56.6154 8.79121 56.6154H21.4505C22.2274 56.6154 22.8571 55.9856 22.8571 55.2088V42.5494C22.8571 41.7726 22.2274 41.1428 21.4505 41.1428H8.79121ZM55.2088 3.0769C58.3162 3.0769 60.8352 5.59592 60.8352 8.70328V21.3626C60.8352 24.47 58.3162 26.989 55.2088 26.989H42.5495C39.4421 26.989 36.9231 24.47 36.9231 21.3626V8.70328C36.9231 5.59592 39.4421 3.0769 42.5495 3.0769H55.2088ZM42.5495 7.29668C41.7726 7.29668 41.1429 7.92644 41.1429 8.70328V21.3626C41.1429 22.1395 41.7726 22.7692 42.5495 22.7692H55.2088C55.9856 22.7692 56.6154 22.1395 56.6154 21.3626V8.70328C56.6154 7.92644 55.9856 7.29668 55.2088 7.29668H42.5495Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M42.5495 50.989C44.4916 50.989 46.0659 52.5634 46.0659 54.5055C46.0659 56.4476 44.4916 58.022 42.5495 58.022C40.6073 58.022 39.033 56.4476 39.033 54.5055C39.033 52.5634 40.6073 50.989 42.5495 50.989ZM55.2088 50.989C57.1509 50.989 58.7253 52.5634 58.7253 54.5055C58.7253 56.4476 57.1509 58.022 55.2088 58.022C53.2667 58.022 51.6923 56.4476 51.6923 54.5055C51.6923 52.5634 53.2667 50.989 55.2088 50.989ZM48.8791 38.3297C50.8212 38.3297 52.3956 39.904 52.3956 41.8461C52.3956 43.7882 50.8212 45.3626 48.8791 45.3626C46.937 45.3626 45.3626 43.7882 45.3626 41.8461C45.3626 39.904 46.937 38.3297 48.8791 38.3297Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** blento's mark, from <BlentoSVG/> in the canonical catalog. */\nexport const blentoIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M24.2728 7.25019C24.2728 3.79832 27.0711 1.00003 30.5229 1.00003H57.2186C60.6705 1.00003 63.4688 3.79833 63.4688 7.2502V33.4355C63.4688 36.8874 60.6705 39.6857 57.2186 39.6857H30.5229C27.0711 39.6857 24.2728 36.8874 24.2728 33.4355V7.25019Z\\\" fill=\\\"currentColor\\\" opacity=\\\"0.8\\\"/><path d=\\\"M1 7.25019C1 3.79832 3.7983 1.00003 7.25017 1.00003H10.0608C13.5127 1.00003 16.311 3.79833 16.311 7.2502V33.4355C16.311 36.8874 13.5127 39.6857 10.0608 39.6857H7.25017C3.7983 39.6857 1 36.8874 1 33.4355V7.25019Z\\\" fill=\\\"currentColor\\\" opacity=\\\"0.6\\\"/><path d=\\\"M1 53.8975C1 50.4457 3.7983 47.6474 7.25017 47.6474H33.6396C37.0915 47.6474 39.8898 50.4457 39.8898 53.8975V57.0143C39.8898 60.4662 37.0915 63.2645 33.6396 63.2645H7.25018C3.79831 63.2645 1 60.4662 1 57.0143V53.8975Z\\\" fill=\\\"currentColor\\\" opacity=\\\"0.9\\\"/><path d=\\\"M47.7495 53.8975C47.7495 50.4457 50.5478 47.6474 53.9997 47.6474H57.2186C60.6705 47.6474 63.4687 50.4457 63.4687 53.8975V57.0143C63.4687 60.4662 60.6705 63.2645 57.2186 63.2645H53.9997C50.5478 63.2645 47.7495 60.4662 47.7495 57.0143V53.8975Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** offprint's mark, from <OffprintSVG/> in the canonical catalog. */\nexport const offprintIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M15.3556 31.5106C15.7241 34.5814 17.0753 40.8461 20.1462 46.1283C20.5147 46.8653 21.4975 46.7424 21.743 46.1283L39.4316 13.6992C39.8002 13.085 39.6773 12.2252 39.0631 11.7338C36.4836 9.52275 33.1669 8.17154 29.2362 8.29436C15.1099 8.66289 14.9871 26.4743 15.3556 31.5106ZM34.7638 55.5868C48.5216 55.2181 49.013 37.5296 48.5216 32.6161C48.276 29.4223 46.9247 23.0348 43.7309 17.5072C43.4852 17.0158 42.6254 17.0158 42.3797 17.5072L24.5684 50.1819C24.3227 50.9188 24.4455 51.6559 24.9368 52.1473C27.5165 54.3583 30.8331 55.7095 34.7638 55.5868ZM49.7499 3.99506L49.013 5.34628C48.5216 6.20615 48.7673 7.18884 49.5042 7.55734C59.3314 13.822 62.525 24.6317 62.525 31.7563C62.525 40.6006 55.1548 61.2371 32.6757 61.2371C28.2534 61.2371 24.4455 60.623 21.0061 59.5175C20.3919 59.2718 19.532 59.5175 19.1635 60.1316L18.1808 62.0972C17.8123 62.834 16.9525 63.0797 16.2154 62.7113L14.8642 61.9742C14.1272 61.6058 13.8815 60.7459 14.25 60.0089L15.1099 58.4119C15.4784 57.6749 15.2327 56.815 14.6186 56.4466C4.79158 50.059 1.47498 39.1265 1.47498 32.2477C1.47498 23.4033 8.23102 2.7667 30.8331 2.7667C35.5009 2.7667 39.4316 3.38089 42.8711 4.48641C43.6082 4.73208 44.468 4.36358 44.8364 3.74939L45.942 1.784C46.3106 1.16981 47.1704 0.924138 47.7846 1.29265L49.2587 2.02967C49.8729 2.39819 50.1186 3.25804 49.7499 3.99506Z\\\" fill=\\\"currentColor\\\"/></svg>\";\n\n/** pckt's mark, from <PcktSVG/> in the canonical catalog. */\nexport const pcktIconSvg: string = \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 64 64\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M35.0415 0.551819C41.0486 0.551819 46.1485 2.56577 49.6504 6.89075C49.9931 7.31408 50.3154 7.75501 50.6196 8.2117C52.0145 9.12372 53.2731 10.2547 54.3737 11.6141C57.7727 15.8121 59.2539 21.6859 59.2539 28.6181C59.2539 34.128 58.3163 38.9765 56.2292 42.8505C56.4404 42.9955 56.6437 43.1574 56.8374 43.336C57.7636 44.1894 58.3016 45.2584 58.6399 46.2062L58.6595 46.2615L58.6779 46.318C59.1153 47.6859 59.4069 49.675 58.2639 51.5165C58.0283 51.8961 57.7584 52.2242 57.4671 52.5088C57.5288 52.8967 57.5505 53.3056 57.5184 53.7347C57.3555 55.9066 55.9376 57.3616 54.7139 58.2331L54.7116 58.2349C53.8013 58.8821 52.5029 59.5938 50.8721 59.5939C49.9274 59.5938 49.118 59.3623 48.4291 58.9977C47.7318 59.364 46.9175 59.5939 45.9763 59.5939C44.4172 59.5938 43.0829 58.882 42.1726 58.2349L42.1311 58.2049C41.1223 57.4652 39.9082 56.2835 39.4881 54.5718C38.6861 54.3046 37.992 53.8974 37.4493 53.5115L37.4078 53.4816C36.7846 53.0246 36.0834 52.3989 35.5391 51.584C35.046 51.4755 34.5619 51.3493 34.0878 51.204V57.6387C34.0878 58.9405 33.7588 60.5905 32.4428 61.8741C31.1436 63.1417 29.4987 63.4482 28.202 63.4482H15.2791C13.9774 63.4482 12.3506 63.1199 11.0741 61.844C10.1135 60.8834 9.69005 59.7244 9.53922 58.6546C8.46987 58.5037 7.31112 58.0807 6.35072 57.1203C5.07428 55.8439 4.74614 54.2171 4.74609 52.9153V7.11736C4.74609 5.81557 5.07419 4.18831 6.35072 2.91177C7.6272 1.63544 9.25403 1.30773 10.5557 1.30772H23.4787C24.5333 1.30772 25.8009 1.5103 26.9313 2.24467C29.3471 1.12842 32.077 0.551855 35.0415 0.551819Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M50.5802 42.6738C51.1877 44.5736 50.5445 45.6642 48.4718 46.016L47.7571 46.1215L48.2574 46.6844C49.6868 48.1268 49.6153 49.4285 47.9358 50.6247C47.2926 51.082 46.7208 51.3283 46.149 51.3283C45.3271 51.3283 44.6482 50.7654 44.0764 49.6747L43.719 49.0063L43.3617 49.6747C42.79 50.7654 42.0753 51.3283 41.2533 51.3283C40.7531 51.3283 40.1455 51.082 39.5023 50.6247C37.8227 49.3933 37.7155 48.1268 39.1807 46.7196L39.7167 46.1215L38.9663 46.016C36.9294 45.6642 36.2147 44.5736 36.8579 42.709C37.2867 41.337 37.9657 40.7037 39.002 40.7037C39.4308 40.7037 39.9669 40.8445 40.5386 41.1259L41.2176 41.4777L41.0747 40.7389C40.8245 38.7337 41.6464 37.7486 43.719 37.7486C45.7559 37.7486 46.6136 38.7337 46.292 40.7389L46.1848 41.4777L46.8995 41.1611C47.507 40.8797 48.0073 40.7389 48.4718 40.7389C49.4367 40.7389 50.1157 41.3722 50.5802 42.6738Z\\\" fill=\\\"var(--bg-primary, white)\\\"/><path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M35.0419 4.09436C45.3955 4.09436 50.9885 10.8961 50.9885 23.8948C50.9885 29.8304 49.8208 34.4888 47.5676 37.7996C47.4703 37.6397 47.36 37.4833 47.2314 37.3343C46.3152 36.2727 44.9651 35.9771 43.7195 35.9771C42.4584 35.9771 41.1123 36.2715 40.1914 37.3274C39.765 37.8164 39.5143 38.3736 39.3824 38.9517C39.2554 38.9395 39.1286 38.9321 39.0025 38.9321C38.0819 38.9321 37.2067 39.2311 36.4932 39.8978C35.8431 40.5055 35.4464 41.3086 35.1838 42.131C35.0048 42.6498 34.8792 43.2062 34.8603 43.7684C31.311 43.7312 28.2745 42.6054 25.8224 40.7477V52.9154C25.8223 54.4267 25.0661 55.1825 23.4791 55.1825H10.5562C9.04487 55.1825 8.28916 54.4266 8.28906 52.9154V7.11737C8.28906 5.60594 9.04477 4.85029 10.5562 4.85026H23.4791C25.0662 4.85026 25.8224 5.60595 25.8224 7.04186C28.2407 5.15258 31.339 4.09441 35.0419 4.09436ZM30.1346 17.3384C26.5814 17.3384 25.4113 19.989 25.4113 24.4235C25.4113 28.8582 26.5813 31.5085 30.1346 31.5085C33.688 31.5085 34.858 28.8582 34.858 24.4235C34.8579 19.989 33.6879 17.3384 30.1346 17.3384Z\\\" fill=\\\"var(--bg-primary, white)\\\"/></svg>\";\n\n/** standardReader's mark, from <StandardReaderSVG/> in the canonical catalog. */\nexport const standardReaderIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" aria-hidden=\\\"true\\\"><path d=\\\"M12 7v14\\\"/><path d=\\\"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z\\\"/></svg>\";\n\n/** taproot's mark, from <TaprootSVG/> in the canonical catalog. */\nexport const taprootIconSvg: string = \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" aria-hidden=\\\"true\\\"><path d=\\\"M7 20h10\\\"/><path d=\\\"M10 20c5.5-2.5.8-6.4 3-10\\\"/><path d=\\\"M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z\\\"/><path d=\\\"M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z\\\"/></svg>\";\n/**\n * Every waypoint's brand mark as standalone SVG markup, keyed by waypoint id.\n *\n * Keys match `WAYPOINT_ORDER` in `waypoints.data`; every id in that list has\n * an entry here.\n */\nexport const WAYPOINT_ICON_SVGS: Record<string, string> = {\n aturi: aturiIconSvg,\n aturiExplore: aturiExploreIconSvg,\n anisota: anisotaIconSvg,\n bluesky: blueskyIconSvg,\n bluepy: bluepyIconSvg,\n blacksky: blackskyIconSvg,\n reddwarf: reddwarfIconSvg,\n impro: improIconSvg,\n lea: leaIconSvg,\n leaflet: leafletIconSvg,\n pdsls: pdslsIconSvg,\n anisotaReader: anisotaReaderIconSvg,\n atptools: atptoolsIconSvg,\n witchsky: witchskyIconSvg,\n deer: deerIconSvg,\n mu: muIconSvg,\n northsky: northskyIconSvg,\n tangled: tangledIconSvg,\n pinksky: pinkskyIconSvg,\n margin: marginIconSvg,\n semble: sembleIconSvg,\n streamplace: streamplaceIconSvg,\n grain: grainIconSvg,\n popfeed: popfeedIconSvg,\n sifa: sifaIconSvg,\n blento: blentoIconSvg,\n offprint: offprintIconSvg,\n pckt: pcktIconSvg,\n standardReader: standardReaderIconSvg,\n taproot: taprootIconSvg,\n};\n","// Entry point for `@aturi.to/waypoints/icons`.\n//\n// The marks live behind a subpath rather than the package root on purpose. They\n// are a `Record` keyed by waypoint id, and a bundler cannot drop unused keys of\n// an object literal, so putting them on the main entry would charge every\n// consumer that only wanted a link builder for ~80KB of brand marks. Importing\n// this module is the opt in.\n//\n// The values are plain SVG markup, so any framework can render them: React via\n// `dangerouslySetInnerHTML`, Svelte via `{@html}`, Vue via `v-html`, or a\n// template engine writing HTML directly. React consumers who would rather have\n// components can use `@aturi.to/waypoints-react` instead.\nimport { WAYPOINT_ICON_SVGS } from './waypointIcons.data';\n\nexport * from './waypointIcons.data';\n\n/**\n * The SVG markup for a waypoint's brand mark, or `undefined` for an id the\n * catalog does not carry.\n *\n * Every id in `WAYPOINT_ORDER` has a mark, so this only returns `undefined` for\n * an id that is not a waypoint at all. The `typeof` guard is what keeps an\n * arbitrary caller-supplied string off `Object.prototype`: a plain lookup of\n * `\"toString\"` would otherwise hand back a function.\n */\nexport function getWaypointIconSvg(id: string): string | undefined {\n const svg = WAYPOINT_ICON_SVGS[id];\n return typeof svg === 'string' ? svg : undefined;\n}\n"]}