@humanforest/nuxt-layer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +67 -0
- package/README.md +208 -0
- package/app.config.ts +10 -0
- package/assets/icons/forest/bike-asterisk.svg +21 -0
- package/assets/icons/forest/bike-down.svg +19 -0
- package/assets/icons/forest/bike-off.svg +20 -0
- package/assets/icons/forest/bike-up.svg +19 -0
- package/assets/icons/forest/bike-x.svg +19 -0
- package/assets/icons/forest/bike.svg +18 -0
- package/assets/icons/forest/mark-fill.svg +6 -0
- package/assets/icons/forest/mark.svg +6 -0
- package/assets/icons/forest/parking.svg +3 -0
- package/assets/icons/forest/star-fill.svg +4 -0
- package/assets/icons/forest/star.svg +4 -0
- package/assets/icons/forest/traffic-light-caution.svg +8 -0
- package/assets/icons/forest/traffic-light-go.svg +8 -0
- package/assets/icons/forest/traffic-light-lit.svg +8 -0
- package/assets/icons/forest/traffic-light-stop.svg +8 -0
- package/assets/icons/forest/traffic-light.svg +8 -0
- package/nuxt.config.ts +81 -0
- package/package.json +35 -0
- package/packages/charts/src/FBoroughShape.vue +52 -0
- package/packages/charts/src/FCalendarGrid.vue +332 -0
- package/packages/charts/src/FCellLegend.vue +54 -0
- package/packages/charts/src/FChartFrame.vue +201 -0
- package/packages/charts/src/FChartFrameSingle.vue +91 -0
- package/packages/charts/src/FChartLegend.vue +26 -0
- package/packages/charts/src/FDistributionBar.vue +224 -0
- package/packages/charts/src/FDottedMap.vue +335 -0
- package/packages/charts/src/FLondonMap.vue +399 -0
- package/packages/charts/src/FSparkline.vue +198 -0
- package/packages/charts/src/FStatusTrack.vue +151 -0
- package/packages/charts/src/cellSize.ts +46 -0
- package/packages/charts/src/distribution.ts +99 -0
- package/packages/charts/src/engine.ts +15 -0
- package/packages/charts/src/forestTooltip.ts +110 -0
- package/packages/charts/src/fromCategories.ts +43 -0
- package/packages/charts/src/index.ts +87 -0
- package/packages/charts/src/londonAreas.ts +75 -0
- package/packages/charts/src/londonGrid.ts +67 -0
- package/packages/charts/src/motionDuration.ts +49 -0
- package/packages/charts/src/presets.ts +143 -0
- package/packages/charts/src/resolveVar.ts +21 -0
- package/packages/charts/src/snapTooltip.ts +154 -0
- package/packages/charts/src/tooltipStandIn.ts +58 -0
- package/packages/charts/src/useCellScale.ts +155 -0
- package/packages/charts/src/useChartPalette.ts +61 -0
- package/packages/charts/src/useChartRepaintKey.ts +22 -0
- package/packages/charts/src/useThemeVersion.ts +17 -0
- package/packages/frames/src/FBrowserFrame.vue +53 -0
- package/packages/frames/src/FDeviceFrame.vue +242 -0
- package/packages/frames/src/FFitFrame.vue +83 -0
- package/packages/frames/src/art/iphone-11.svg +124 -0
- package/packages/frames/src/art/iphone-12.svg +601 -0
- package/packages/frames/src/art/iphone-13-pro.svg +820 -0
- package/packages/frames/src/art/iphone-13.svg +849 -0
- package/packages/frames/src/art/iphone-14.svg +681 -0
- package/packages/frames/src/art/iphone-15-pro.svg +633 -0
- package/packages/frames/src/art/iphone-15.svg +713 -0
- package/packages/frames/src/art/iphone-16-plus.svg +685 -0
- package/packages/frames/src/art/iphone-16-pro-max.svg +611 -0
- package/packages/frames/src/art/iphone-16-pro.svg +631 -0
- package/packages/frames/src/art/iphone-16.svg +713 -0
- package/packages/frames/src/art/iphone-17-pro-max.svg +355 -0
- package/packages/frames/src/art/iphone-17.svg +305 -0
- package/packages/frames/src/art/iphone-air.svg +389 -0
- package/packages/frames/src/art/iphone-se-3.svg +473 -0
- package/packages/frames/src/art/iphone-x.svg +652 -0
- package/packages/frames/src/art/pixel-10-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-10-pro.svg +32 -0
- package/packages/frames/src/art/pixel-10.svg +32 -0
- package/packages/frames/src/art/pixel-8-pro.svg +208 -0
- package/packages/frames/src/art/pixel-8.svg +208 -0
- package/packages/frames/src/art/pixel-8a.svg +8 -0
- package/packages/frames/src/art/pixel-9-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-9-pro.svg +34 -0
- package/packages/frames/src/art/pixel-9a.svg +25 -0
- package/packages/frames/src/art.ts +29 -0
- package/packages/frames/src/devices.ts +337 -0
- package/packages/frames/src/index.ts +15 -0
- package/packages/tokens/geo/london-boroughs.json +1 -0
- package/packages/tokens/geo/london-dots-coarse.json +1 -0
- package/packages/tokens/geo/london-dots-fine.json +1 -0
- package/packages/tokens/geo/london-dots-medium.json +1 -0
- package/packages/tokens/geo/london-dots-ultra.json +1 -0
- package/packages/tokens/geo/london-wards.json +1 -0
- package/packages/tokens/glyphs/glyphs.json +1 -0
- package/packages/tokens/logos/f-rot.svg +4 -0
- package/packages/tokens/logos/f.svg +4 -0
- package/packages/tokens/logos/favicon-c2w.svg +9 -0
- package/packages/tokens/logos/favicon-console.svg +9 -0
- package/packages/tokens/logos/favicon-ds.svg +9 -0
- package/packages/tokens/logos/favicon-fleet.svg +9 -0
- package/packages/tokens/logos/favicon-flex.svg +9 -0
- package/packages/tokens/logos/favicon-plus.svg +9 -0
- package/packages/tokens/logos/favicon-radar.svg +9 -0
- package/packages/tokens/logos/favicon-tower.svg +9 -0
- package/packages/tokens/logos/lockup-horizontal.svg +17 -0
- package/packages/tokens/logos/lockup-vertical.svg +17 -0
- package/packages/tokens/logos/mark-mono.svg +4 -0
- package/packages/tokens/logos/mark.svg +7 -0
- package/packages/tokens/logos/wordmark.svg +9 -0
- package/packages/tokens/src/colourEngine.ts +604 -0
- package/packages/tokens/src/glyphs.ts +127 -0
- package/packages/tokens/src/logo.ts +50 -0
- package/packages/tokens/src/subbrands.ts +44 -0
- package/packages/tokens/src/sublogo.ts +80 -0
- package/packages/ui/icons/forest/map/forest-place-count.svg +21 -0
- package/packages/ui/icons/forest/map/forest-place-marker.svg +17 -0
- package/packages/ui/icons/forest/map/forest-vehicle-marker.svg +73 -0
- package/packages/ui/icons/forest/map/manifest.json +373 -0
- package/packages/ui/icons/forest/map/place-count-manifest.json +83 -0
- package/packages/ui/icons/forest/map/place-manifest.json +74 -0
- package/packages/ui/src/address/address.ts +125 -0
- package/packages/ui/src/address/autofill.ts +78 -0
- package/packages/ui/src/address/geocode.ts +55 -0
- package/packages/ui/src/address/index.ts +31 -0
- package/packages/ui/src/address/validate.ts +91 -0
- package/packages/ui/src/canvas/FCanvasCard.vue +97 -0
- package/packages/ui/src/canvas/FCanvasControl.vue +121 -0
- package/packages/ui/src/canvas/FCanvasControlGroup.vue +100 -0
- package/packages/ui/src/canvas/FCanvasFlyout.vue +216 -0
- package/packages/ui/src/canvas/FCanvasHud.vue +402 -0
- package/packages/ui/src/canvas/canvasSurface.ts +39 -0
- package/packages/ui/src/canvas/index.ts +17 -0
- package/packages/ui/src/contexts/ForestContext.vue +53 -0
- package/packages/ui/src/contexts/contexts.ts +153 -0
- package/packages/ui/src/contexts/index.ts +23 -0
- package/packages/ui/src/contexts/marketing-theme.ts +214 -0
- package/packages/ui/src/contexts/mobile-theme.ts +402 -0
- package/packages/ui/src/filter/FFilterBar.vue +72 -0
- package/packages/ui/src/filter/FFilterChip.vue +362 -0
- package/packages/ui/src/filter/FFilterClauses.vue +104 -0
- package/packages/ui/src/filter/FFilterTrigger.vue +183 -0
- package/packages/ui/src/filter/filter.theme.ts +27 -0
- package/packages/ui/src/filter/filterClause.ts +265 -0
- package/packages/ui/src/filter/filterPredicate.ts +134 -0
- package/packages/ui/src/filter/filterSchema.ts +82 -0
- package/packages/ui/src/filter/index.ts +36 -0
- package/packages/ui/src/forest-preset.ts +68 -0
- package/packages/ui/src/icons.ts +79 -0
- package/packages/ui/src/index.ts +17 -0
- package/packages/ui/src/kpi/FKpi.vue +253 -0
- package/packages/ui/src/kpi/FKpiGroup.vue +161 -0
- package/packages/ui/src/kpi/index.ts +20 -0
- package/packages/ui/src/kpi/kpi.theme.ts +168 -0
- package/packages/ui/src/kpi/kpiDelta.ts +82 -0
- package/packages/ui/src/kpi/kpiFormat.ts +72 -0
- package/packages/ui/src/kpi/kpiGroupState.ts +63 -0
- package/packages/ui/src/logo/FLogo.vue +52 -0
- package/packages/ui/src/logo/FSubLogo.vue +214 -0
- package/packages/ui/src/logo/index.ts +8 -0
- package/packages/ui/src/map/FMap.vue +355 -0
- package/packages/ui/src/map/FMapCompass.vue +154 -0
- package/packages/ui/src/map/FMapCoordinates.vue +134 -0
- package/packages/ui/src/map/FMapDrawTools.vue +116 -0
- package/packages/ui/src/map/FMapFullscreen.vue +92 -0
- package/packages/ui/src/map/FMapGeolocate.vue +208 -0
- package/packages/ui/src/map/FMapLayers.vue +75 -0
- package/packages/ui/src/map/FMapLegend.vue +45 -0
- package/packages/ui/src/map/FMapPopup.vue +129 -0
- package/packages/ui/src/map/FMapRamp.vue +69 -0
- package/packages/ui/src/map/FMapRegion.vue +77 -0
- package/packages/ui/src/map/FMapScale.vue +107 -0
- package/packages/ui/src/map/FMapSearch.vue +362 -0
- package/packages/ui/src/map/FMapTilt.vue +87 -0
- package/packages/ui/src/map/FMapTools.vue +61 -0
- package/packages/ui/src/map/FMapZoom.vue +81 -0
- package/packages/ui/src/map/FMarker.vue +218 -0
- package/packages/ui/src/map/FTrackScrubber.vue +94 -0
- package/packages/ui/src/map/FVehicleLegend.vue +72 -0
- package/packages/ui/src/map/FVehicleMark.vue +166 -0
- package/packages/ui/src/map/bin.ts +196 -0
- package/packages/ui/src/map/coordinates.ts +83 -0
- package/packages/ui/src/map/density.ts +401 -0
- package/packages/ui/src/map/draw.ts +356 -0
- package/packages/ui/src/map/ease.ts +67 -0
- package/packages/ui/src/map/fullscreen.ts +59 -0
- package/packages/ui/src/map/heat.ts +160 -0
- package/packages/ui/src/map/index.ts +351 -0
- package/packages/ui/src/map/liveMarkers.ts +60 -0
- package/packages/ui/src/map/map.css +116 -0
- package/packages/ui/src/map/mapColor.ts +31 -0
- package/packages/ui/src/map/mapContext.ts +12 -0
- package/packages/ui/src/map/mapLayers.ts +55 -0
- package/packages/ui/src/map/mapLegend.ts +70 -0
- package/packages/ui/src/map/mapSearch.theme.ts +79 -0
- package/packages/ui/src/map/mapSearch.ts +279 -0
- package/packages/ui/src/map/mapUrl.ts +117 -0
- package/packages/ui/src/map/markerAsset.ts +3 -0
- package/packages/ui/src/map/padding.ts +39 -0
- package/packages/ui/src/map/place.ts +192 -0
- package/packages/ui/src/map/ramp.ts +95 -0
- package/packages/ui/src/map/regionSelect.ts +163 -0
- package/packages/ui/src/map/route.ts +167 -0
- package/packages/ui/src/map/scale.ts +329 -0
- package/packages/ui/src/map/scaleBar.ts +67 -0
- package/packages/ui/src/map/selectionModel.ts +50 -0
- package/packages/ui/src/map/sources/coordinates.ts +58 -0
- package/packages/ui/src/map/sources/mapboxPlaces.ts +71 -0
- package/packages/ui/src/map/style.ts +14 -0
- package/packages/ui/src/map/track.ts +279 -0
- package/packages/ui/src/map/useFeatureSelect.ts +230 -0
- package/packages/ui/src/map/useLiveMarkers.ts +84 -0
- package/packages/ui/src/map/useMap.ts +150 -0
- package/packages/ui/src/map/useMapDraw.ts +776 -0
- package/packages/ui/src/map/useMapOverlay.ts +421 -0
- package/packages/ui/src/map/useMapTableSelection.ts +101 -0
- package/packages/ui/src/map/useMapUrlState.ts +155 -0
- package/packages/ui/src/map/useMarkerSource.ts +163 -0
- package/packages/ui/src/map/useRegionSelect.ts +309 -0
- package/packages/ui/src/map/useTokenMode.ts +61 -0
- package/packages/ui/src/map/useTrackPlayback.ts +131 -0
- package/packages/ui/src/map/useVehicleFilter.ts +51 -0
- package/packages/ui/src/map/useVisibleFeatures.ts +124 -0
- package/packages/ui/src/map/vehicle.ts +807 -0
- package/packages/ui/src/map/vehicleFilter.ts +284 -0
- package/packages/ui/src/map/vehicleLegend.ts +155 -0
- package/packages/ui/src/map/visibleFeatures.ts +192 -0
- package/packages/ui/src/map/zone.ts +291 -0
- package/packages/ui/src/shell/FAppNavbar.vue +68 -0
- package/packages/ui/src/shell/FAppShell.vue +163 -0
- package/packages/ui/src/shell/FAppSidebar.vue +215 -0
- package/packages/ui/src/shell/FPageToolbar.vue +126 -0
- package/packages/ui/src/shell/FScrollShadow.vue +43 -0
- package/packages/ui/src/shell/FSidePanel.vue +258 -0
- package/packages/ui/src/shell/FToolbarActions.vue +32 -0
- package/packages/ui/src/shell/index.ts +33 -0
- package/packages/ui/src/shell/nav.ts +37 -0
- package/packages/ui/src/shell/pageToolbar.ts +69 -0
- package/packages/ui/src/shell/shell.ts +74 -0
- package/packages/ui/src/shell/sidePanel.ts +115 -0
- package/packages/ui/src/themes/accordion.ts +36 -0
- package/packages/ui/src/themes/alert.ts +16 -0
- package/packages/ui/src/themes/auth-form.ts +19 -0
- package/packages/ui/src/themes/avatar-group.ts +9 -0
- package/packages/ui/src/themes/avatar.ts +18 -0
- package/packages/ui/src/themes/badge.ts +51 -0
- package/packages/ui/src/themes/banner.ts +21 -0
- package/packages/ui/src/themes/breadcrumb.ts +10 -0
- package/packages/ui/src/themes/button.mechanics.ts +191 -0
- package/packages/ui/src/themes/button.ts +136 -0
- package/packages/ui/src/themes/calendar.ts +29 -0
- package/packages/ui/src/themes/card.ts +67 -0
- package/packages/ui/src/themes/carousel.ts +41 -0
- package/packages/ui/src/themes/checkbox-group.ts +20 -0
- package/packages/ui/src/themes/checkbox.ts +47 -0
- package/packages/ui/src/themes/chip.ts +50 -0
- package/packages/ui/src/themes/collapsible.ts +26 -0
- package/packages/ui/src/themes/color-picker.ts +13 -0
- package/packages/ui/src/themes/command-palette.ts +37 -0
- package/packages/ui/src/themes/container.ts +14 -0
- package/packages/ui/src/themes/context-menu.ts +38 -0
- package/packages/ui/src/themes/dashboard-group.ts +11 -0
- package/packages/ui/src/themes/dashboard-navbar.ts +10 -0
- package/packages/ui/src/themes/dashboard-panel.ts +18 -0
- package/packages/ui/src/themes/dashboard-resize-handle.ts +35 -0
- package/packages/ui/src/themes/dashboard-sidebar-collapse.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar-toggle.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar.ts +58 -0
- package/packages/ui/src/themes/dashboard-toolbar.ts +15 -0
- package/packages/ui/src/themes/drawer.ts +45 -0
- package/packages/ui/src/themes/dropdown-menu.ts +38 -0
- package/packages/ui/src/themes/empty.ts +43 -0
- package/packages/ui/src/themes/field-group.ts +52 -0
- package/packages/ui/src/themes/file-upload.ts +38 -0
- package/packages/ui/src/themes/footer-columns.ts +13 -0
- package/packages/ui/src/themes/footer.ts +9 -0
- package/packages/ui/src/themes/form-field.ts +25 -0
- package/packages/ui/src/themes/form.ts +22 -0
- package/packages/ui/src/themes/header.ts +12 -0
- package/packages/ui/src/themes/icon.ts +61 -0
- package/packages/ui/src/themes/index.ts +99 -0
- package/packages/ui/src/themes/input-date.ts +73 -0
- package/packages/ui/src/themes/input-menu.ts +66 -0
- package/packages/ui/src/themes/input-number.ts +58 -0
- package/packages/ui/src/themes/input-rating.ts +25 -0
- package/packages/ui/src/themes/input-tags.ts +63 -0
- package/packages/ui/src/themes/input-time.ts +70 -0
- package/packages/ui/src/themes/input.ts +148 -0
- package/packages/ui/src/themes/kbd.ts +27 -0
- package/packages/ui/src/themes/link.ts +27 -0
- package/packages/ui/src/themes/listbox.ts +48 -0
- package/packages/ui/src/themes/main.ts +6 -0
- package/packages/ui/src/themes/marquee.ts +45 -0
- package/packages/ui/src/themes/modal.ts +46 -0
- package/packages/ui/src/themes/navigation-menu.ts +80 -0
- package/packages/ui/src/themes/page-anchors.ts +7 -0
- package/packages/ui/src/themes/page-aside.ts +7 -0
- package/packages/ui/src/themes/page-card.ts +22 -0
- package/packages/ui/src/themes/page-cta.ts +18 -0
- package/packages/ui/src/themes/page-feature.ts +13 -0
- package/packages/ui/src/themes/page-header.ts +16 -0
- package/packages/ui/src/themes/page-hero.ts +15 -0
- package/packages/ui/src/themes/page-links.ts +12 -0
- package/packages/ui/src/themes/page-section.ts +14 -0
- package/packages/ui/src/themes/page.ts +7 -0
- package/packages/ui/src/themes/pagination.ts +17 -0
- package/packages/ui/src/themes/pin-input.ts +73 -0
- package/packages/ui/src/themes/popover.ts +30 -0
- package/packages/ui/src/themes/progress.ts +29 -0
- package/packages/ui/src/themes/prose.ts +45 -0
- package/packages/ui/src/themes/radio-group.ts +39 -0
- package/packages/ui/src/themes/scroll-area.ts +23 -0
- package/packages/ui/src/themes/select-menu.ts +71 -0
- package/packages/ui/src/themes/select.ts +72 -0
- package/packages/ui/src/themes/separator.ts +28 -0
- package/packages/ui/src/themes/sidebar.ts +127 -0
- package/packages/ui/src/themes/skeleton.ts +15 -0
- package/packages/ui/src/themes/slideover.ts +87 -0
- package/packages/ui/src/themes/slider.ts +48 -0
- package/packages/ui/src/themes/stepper.ts +41 -0
- package/packages/ui/src/themes/switch.ts +63 -0
- package/packages/ui/src/themes/table.ts +34 -0
- package/packages/ui/src/themes/tabs.ts +74 -0
- package/packages/ui/src/themes/textarea.ts +77 -0
- package/packages/ui/src/themes/timeline.ts +25 -0
- package/packages/ui/src/themes/toast.ts +29 -0
- package/packages/ui/src/themes/toaster.ts +66 -0
- package/packages/ui/src/themes/tooltip.ts +31 -0
- package/packages/ui/src/themes/tree.ts +41 -0
- package/packages/ui/src/themes/user.ts +28 -0
- package/styles.cdn.gen.css +2047 -0
- package/theme.gen.json +1 -0
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="390"
|
|
4
|
+
height="796"
|
|
5
|
+
viewBox="0 0 103.1875 210.60836"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg8"
|
|
8
|
+
xml:space="preserve"
|
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
12
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
13
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
14
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
|
15
|
+
id="defs2"><linearGradient
|
|
16
|
+
id="linearGradient821"><stop
|
|
17
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
18
|
+
offset="0"
|
|
19
|
+
id="stop817" /><stop
|
|
20
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
21
|
+
offset="1"
|
|
22
|
+
id="stop819" /></linearGradient><clipPath
|
|
23
|
+
clipPathUnits="userSpaceOnUse"
|
|
24
|
+
id="clipPath4960"><path
|
|
25
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
26
|
+
d="m 56.734381,2.01367 c -29.678552,0 -53.5722709,23.893694 -53.5722709,53.572268 V 666.02928 c 0,29.67855 23.8937189,53.57223 53.5722709,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68944 c 26.58218,0 47.98243,21.3983043 47.98243,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98243,47.98246 H 55.310558 c -26.582175,0 -47.9824257,-21.40029 -47.9824257,-47.98246 V 53.972658 c 0,-26.582168 21.4002507,-47.9804723 47.9824257,-47.9804723 z"
|
|
27
|
+
id="path4962" /></clipPath><clipPath
|
|
28
|
+
clipPathUnits="userSpaceOnUse"
|
|
29
|
+
id="clipPath5059"><path
|
|
30
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
31
|
+
d="m 56.734381,2.01367 c -29.678554,0 -53.5722728,23.893694 -53.5722728,53.572268 V 666.02928 c 0,29.67855 23.8937188,53.57223 53.5722728,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68945 c 26.58217,0 47.98242,21.3983043 47.98242,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98242,47.98246 H 55.310558 c -26.582177,0 -47.9824276,-21.40029 -47.9824276,-47.98246 V 53.972658 c 0,-26.582168 21.4002506,-47.9804723 47.9824276,-47.9804723 z"
|
|
32
|
+
id="path5061" /></clipPath><clipPath
|
|
33
|
+
clipPathUnits="userSpaceOnUse"
|
|
34
|
+
id="clipPath5401"><rect
|
|
35
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
36
|
+
id="rect5403"
|
|
37
|
+
width="4.3765388"
|
|
38
|
+
height="7.4167299"
|
|
39
|
+
x="-13.8777"
|
|
40
|
+
y="25.856594"
|
|
41
|
+
ry="0.45101735" /></clipPath><clipPath
|
|
42
|
+
clipPathUnits="userSpaceOnUse"
|
|
43
|
+
id="clipPath5589"><path
|
|
44
|
+
id="path5591"
|
|
45
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
46
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
47
|
+
clipPathUnits="userSpaceOnUse"
|
|
48
|
+
id="clipPath5589-7"><path
|
|
49
|
+
id="path5591-5"
|
|
50
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
51
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
52
|
+
clipPathUnits="userSpaceOnUse"
|
|
53
|
+
id="clipPath5738"><path
|
|
54
|
+
id="path5740"
|
|
55
|
+
d="m 0.45113544,39.688016 c -0.24986192,0 -0.4511331182662,0.200755 -0.4511331182662,0.450619 v 20.944606 c 0,0.249864 0.2012711982662,0.451135 0.4511331182662,0.451135 H 3.9253423 c 0.2498645,0 0.4511357,-0.201271 0.4511357,-0.451135 V 40.138635 c 0,-0.249864 -0.2012712,-0.450619 -0.4511357,-0.450619 z"
|
|
56
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
57
|
+
clipPathUnits="userSpaceOnUse"
|
|
58
|
+
id="clipPath922"><rect
|
|
59
|
+
style="opacity:1;vector-effect:none;fill:#474747;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.4065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
60
|
+
id="rect924"
|
|
61
|
+
width="77.201637"
|
|
62
|
+
height="33.545391"
|
|
63
|
+
x="-67.752235"
|
|
64
|
+
y="-14.211905" /></clipPath><clipPath
|
|
65
|
+
clipPathUnits="userSpaceOnUse"
|
|
66
|
+
id="clipPath972"><rect
|
|
67
|
+
style="opacity:1;vector-effect:none;fill:#29ec68;fill-opacity:0.658879;fill-rule:nonzero;stroke:none;stroke-width:38.3451;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
68
|
+
id="rect974"
|
|
69
|
+
width="253.12003"
|
|
70
|
+
height="506.59415"
|
|
71
|
+
x="-527.82013"
|
|
72
|
+
y="-172.67062" /></clipPath><mask
|
|
73
|
+
maskUnits="userSpaceOnUse"
|
|
74
|
+
id="mask1062"><path
|
|
75
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0529167;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
76
|
+
d="m 42.746746,7.2620904 c -0.399166,0 -0.72037,0.3212029 -0.72037,0.7203695 0,0.3991665 0.321204,0.7203694 0.72037,0.7203694 h 9.921876 c 0.399166,0 0.72037,-0.3212029 0.72037,-0.7203694 0,-0.3991666 -0.321204,-0.7203695 -0.72037,-0.7203695 z"
|
|
77
|
+
id="path1064" /></mask><pattern
|
|
78
|
+
patternUnits="userSpaceOnUse"
|
|
79
|
+
width="1.171848"
|
|
80
|
+
height="1.1718804"
|
|
81
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
82
|
+
id="pattern2874"><g
|
|
83
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
84
|
+
id="g2781"><rect
|
|
85
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
86
|
+
id="rect2730"
|
|
87
|
+
width="0.15502979"
|
|
88
|
+
height="0.15502979"
|
|
89
|
+
x="-76.445686"
|
|
90
|
+
y="7.0699267" /><rect
|
|
91
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
92
|
+
id="rect2730-5"
|
|
93
|
+
width="0.15502979"
|
|
94
|
+
height="0.15502979"
|
|
95
|
+
x="-76.290665"
|
|
96
|
+
y="7.224957" /><rect
|
|
97
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
98
|
+
id="rect2730-5-5"
|
|
99
|
+
width="0.15502979"
|
|
100
|
+
height="0.15502979"
|
|
101
|
+
x="-76.290665"
|
|
102
|
+
y="7.0699267" /><rect
|
|
103
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
104
|
+
id="rect2730-5-5-0"
|
|
105
|
+
width="0.15502979"
|
|
106
|
+
height="0.15502979"
|
|
107
|
+
x="-76.445686"
|
|
108
|
+
y="7.224957" /></g></pattern><clipPath
|
|
109
|
+
clipPathUnits="userSpaceOnUse"
|
|
110
|
+
id="clipPath5738-4"><path
|
|
111
|
+
id="path5740-9"
|
|
112
|
+
d="m 0.45113544,39.688016 c -0.24986192,0 -0.4511331182662,0.200755 -0.4511331182662,0.450619 v 20.944606 c 0,0.249864 0.2012711982662,0.451135 0.4511331182662,0.451135 H 3.9253423 c 0.2498645,0 0.4511357,-0.201271 0.4511357,-0.451135 V 40.138635 c 0,-0.249864 -0.2012712,-0.450619 -0.4511357,-0.450619 z"
|
|
113
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
114
|
+
clipPathUnits="userSpaceOnUse"
|
|
115
|
+
id="clipPath5401-9"><rect
|
|
116
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
117
|
+
id="rect5403-9"
|
|
118
|
+
width="4.3765388"
|
|
119
|
+
height="7.4167299"
|
|
120
|
+
x="-13.8777"
|
|
121
|
+
y="25.856594"
|
|
122
|
+
ry="0.45101735" /></clipPath><clipPath
|
|
123
|
+
clipPathUnits="userSpaceOnUse"
|
|
124
|
+
id="clipPath5589-3"><path
|
|
125
|
+
id="path5591-6"
|
|
126
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
127
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
128
|
+
clipPathUnits="userSpaceOnUse"
|
|
129
|
+
id="clipPath5589-7-8"><path
|
|
130
|
+
id="path5591-5-3"
|
|
131
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888773 0,40.138637 v 12.912612 c 0,0.249864 0.20127166,0.451136 0.45113526,0.451136 H 3.9253421 c 0.2498635,0 0.4511352,-0.201272 0.4511352,-0.451136 V 40.138637 c 0,-0.249864 -0.2012717,-0.45062 -0.4511352,-0.45062 z"
|
|
132
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0264583;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /></clipPath><clipPath
|
|
133
|
+
clipPathUnits="userSpaceOnUse"
|
|
134
|
+
id="clipPath4960-5"><path
|
|
135
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#ebebeb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.2765;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
136
|
+
d="m 56.734381,2.01367 c -29.678552,0 -53.5722709,23.893694 -53.5722709,53.572268 V 666.02928 c 0,29.67855 23.8937189,53.57223 53.5722709,53.57223 H 303.26562 c 29.67859,0 53.57227,-23.89368 53.57227,-53.57223 V 55.585938 c 0,-29.678574 -23.89368,-53.572268 -53.57227,-53.572268 z M 55.310558,5.9921857 H 304.68944 c 26.58218,0 47.98243,21.3983043 47.98243,47.9804723 V 668.20893 c 0,26.58217 -21.40025,47.98246 -47.98243,47.98246 H 55.310558 c -26.582175,0 -47.9824257,-21.40029 -47.9824257,-47.98246 V 53.972658 c 0,-26.582168 21.4002507,-47.9804723 47.9824257,-47.9804723 z"
|
|
137
|
+
id="path4962-4" /></clipPath><pattern
|
|
138
|
+
patternUnits="userSpaceOnUse"
|
|
139
|
+
width="1.171848"
|
|
140
|
+
height="1.1718804"
|
|
141
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
142
|
+
id="pattern2874-7"><g
|
|
143
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
144
|
+
id="g2781-1"><rect
|
|
145
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
146
|
+
id="rect2730-3"
|
|
147
|
+
width="0.15502979"
|
|
148
|
+
height="0.15502979"
|
|
149
|
+
x="-76.445686"
|
|
150
|
+
y="7.0699267" /><rect
|
|
151
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
152
|
+
id="rect2730-5-8"
|
|
153
|
+
width="0.15502979"
|
|
154
|
+
height="0.15502979"
|
|
155
|
+
x="-76.290665"
|
|
156
|
+
y="7.224957" /><rect
|
|
157
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
158
|
+
id="rect2730-5-5-1"
|
|
159
|
+
width="0.15502979"
|
|
160
|
+
height="0.15502979"
|
|
161
|
+
x="-76.290665"
|
|
162
|
+
y="7.0699267" /><rect
|
|
163
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
164
|
+
id="rect2730-5-5-0-1"
|
|
165
|
+
width="0.15502979"
|
|
166
|
+
height="0.15502979"
|
|
167
|
+
x="-76.445686"
|
|
168
|
+
y="7.224957" /></g></pattern><clipPath
|
|
169
|
+
clipPathUnits="userSpaceOnUse"
|
|
170
|
+
id="clipPath948"><rect
|
|
171
|
+
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.783566;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
172
|
+
id="rect950"
|
|
173
|
+
width="161.20644"
|
|
174
|
+
height="317.73975"
|
|
175
|
+
x="-280.93082"
|
|
176
|
+
y="-83.752052" /></clipPath><clipPath
|
|
177
|
+
clipPathUnits="userSpaceOnUse"
|
|
178
|
+
id="clipPath967"><rect
|
|
179
|
+
style="fill:#6ecb55;fill-opacity:0.540323;stroke:none;stroke-width:0.405315;stroke-linecap:round;stroke-linejoin:round"
|
|
180
|
+
id="rect969"
|
|
181
|
+
width="84.888893"
|
|
182
|
+
height="172.10544"
|
|
183
|
+
x="81.619461"
|
|
184
|
+
y="-32.789757" /></clipPath><mask
|
|
185
|
+
maskUnits="userSpaceOnUse"
|
|
186
|
+
id="mask2042"><path
|
|
187
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.0626366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
188
|
+
d="m 43.127825,7.2620903 c -0.559276,0 -1.00932,0.321203 -1.00932,0.7203695 0,0.3991665 0.450044,0.7203695 1.00932,0.7203695 h 9.481534 c 0.559276,0 1.009317,-0.321203 1.009317,-0.7203695 0,-0.3991665 -0.450041,-0.7203695 -1.009317,-0.7203695 z"
|
|
189
|
+
id="path2044" /></mask><clipPath
|
|
190
|
+
clipPathUnits="userSpaceOnUse"
|
|
191
|
+
id="clipPath2353"><rect
|
|
192
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
193
|
+
id="rect2355"
|
|
194
|
+
width="355.61673"
|
|
195
|
+
height="728.3255"
|
|
196
|
+
x="2.1916344"
|
|
197
|
+
y="-3.1627369"
|
|
198
|
+
ry="55.641438" /></clipPath><clipPath
|
|
199
|
+
clipPathUnits="userSpaceOnUse"
|
|
200
|
+
id="clipPath1745"><rect
|
|
201
|
+
style="display:inline;fill:#f7d82b;fill-opacity:0.451613;stroke:none;stroke-width:44.958;stroke-linecap:round"
|
|
202
|
+
id="rect1747"
|
|
203
|
+
width="61.664673"
|
|
204
|
+
height="124.69236"
|
|
205
|
+
x="-114.9855"
|
|
206
|
+
y="112.05054" /></clipPath><pattern
|
|
207
|
+
patternUnits="userSpaceOnUse"
|
|
208
|
+
width="1.171848"
|
|
209
|
+
height="1.1718804"
|
|
210
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
211
|
+
id="pattern2874-7-2"><g
|
|
212
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
213
|
+
id="g2781-1-7"><rect
|
|
214
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
215
|
+
id="rect2730-3-5"
|
|
216
|
+
width="0.15502979"
|
|
217
|
+
height="0.15502979"
|
|
218
|
+
x="-76.445686"
|
|
219
|
+
y="7.0699267" /><rect
|
|
220
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
221
|
+
id="rect2730-5-8-3"
|
|
222
|
+
width="0.15502979"
|
|
223
|
+
height="0.15502979"
|
|
224
|
+
x="-76.290665"
|
|
225
|
+
y="7.224957" /><rect
|
|
226
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
227
|
+
id="rect2730-5-5-1-3"
|
|
228
|
+
width="0.15502979"
|
|
229
|
+
height="0.15502979"
|
|
230
|
+
x="-76.290665"
|
|
231
|
+
y="7.0699267" /><rect
|
|
232
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
233
|
+
id="rect2730-5-5-0-1-8"
|
|
234
|
+
width="0.15502979"
|
|
235
|
+
height="0.15502979"
|
|
236
|
+
x="-76.445686"
|
|
237
|
+
y="7.224957" /></g></pattern><pattern
|
|
238
|
+
patternUnits="userSpaceOnUse"
|
|
239
|
+
width="1.171848"
|
|
240
|
+
height="1.1718804"
|
|
241
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
242
|
+
id="pattern2874-7-2-1"><g
|
|
243
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
244
|
+
id="g2781-1-7-7"><rect
|
|
245
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
246
|
+
id="rect2730-3-5-3"
|
|
247
|
+
width="0.15502979"
|
|
248
|
+
height="0.15502979"
|
|
249
|
+
x="-76.445686"
|
|
250
|
+
y="7.0699267" /><rect
|
|
251
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
252
|
+
id="rect2730-5-8-3-9"
|
|
253
|
+
width="0.15502979"
|
|
254
|
+
height="0.15502979"
|
|
255
|
+
x="-76.290665"
|
|
256
|
+
y="7.224957" /><rect
|
|
257
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
258
|
+
id="rect2730-5-5-1-3-1"
|
|
259
|
+
width="0.15502979"
|
|
260
|
+
height="0.15502979"
|
|
261
|
+
x="-76.290665"
|
|
262
|
+
y="7.0699267" /><rect
|
|
263
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
264
|
+
id="rect2730-5-5-0-1-8-3"
|
|
265
|
+
width="0.15502979"
|
|
266
|
+
height="0.15502979"
|
|
267
|
+
x="-76.445686"
|
|
268
|
+
y="7.224957" /></g></pattern><pattern
|
|
269
|
+
patternUnits="userSpaceOnUse"
|
|
270
|
+
width="1.171848"
|
|
271
|
+
height="1.1718804"
|
|
272
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
273
|
+
id="pattern2874-7-2-1-0"><g
|
|
274
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
275
|
+
id="g2781-1-7-7-0"><rect
|
|
276
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
277
|
+
id="rect2730-3-5-3-3"
|
|
278
|
+
width="0.15502979"
|
|
279
|
+
height="0.15502979"
|
|
280
|
+
x="-76.445686"
|
|
281
|
+
y="7.0699267" /><rect
|
|
282
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
283
|
+
id="rect2730-5-8-3-9-8"
|
|
284
|
+
width="0.15502979"
|
|
285
|
+
height="0.15502979"
|
|
286
|
+
x="-76.290665"
|
|
287
|
+
y="7.224957" /><rect
|
|
288
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
289
|
+
id="rect2730-5-5-1-3-1-1"
|
|
290
|
+
width="0.15502979"
|
|
291
|
+
height="0.15502979"
|
|
292
|
+
x="-76.290665"
|
|
293
|
+
y="7.0699267" /><rect
|
|
294
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
295
|
+
id="rect2730-5-5-0-1-8-3-5"
|
|
296
|
+
width="0.15502979"
|
|
297
|
+
height="0.15502979"
|
|
298
|
+
x="-76.445686"
|
|
299
|
+
y="7.224957" /></g></pattern><pattern
|
|
300
|
+
patternUnits="userSpaceOnUse"
|
|
301
|
+
width="1.171848"
|
|
302
|
+
height="1.1718804"
|
|
303
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
304
|
+
id="pattern2874-7-2-1-0-3"><g
|
|
305
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
306
|
+
id="g2781-1-7-7-0-3"><rect
|
|
307
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
308
|
+
id="rect2730-3-5-3-3-7"
|
|
309
|
+
width="0.15502979"
|
|
310
|
+
height="0.15502979"
|
|
311
|
+
x="-76.445686"
|
|
312
|
+
y="7.0699267" /><rect
|
|
313
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
314
|
+
id="rect2730-5-8-3-9-8-8"
|
|
315
|
+
width="0.15502979"
|
|
316
|
+
height="0.15502979"
|
|
317
|
+
x="-76.290665"
|
|
318
|
+
y="7.224957" /><rect
|
|
319
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
320
|
+
id="rect2730-5-5-1-3-1-1-2"
|
|
321
|
+
width="0.15502979"
|
|
322
|
+
height="0.15502979"
|
|
323
|
+
x="-76.290665"
|
|
324
|
+
y="7.0699267" /><rect
|
|
325
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
326
|
+
id="rect2730-5-5-0-1-8-3-5-8"
|
|
327
|
+
width="0.15502979"
|
|
328
|
+
height="0.15502979"
|
|
329
|
+
x="-76.445686"
|
|
330
|
+
y="7.224957" /></g></pattern><clipPath
|
|
331
|
+
clipPathUnits="userSpaceOnUse"
|
|
332
|
+
id="clipPath2586"><path
|
|
333
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
334
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
335
|
+
id="path2588" /></clipPath><clipPath
|
|
336
|
+
clipPathUnits="userSpaceOnUse"
|
|
337
|
+
id="clipPath981"><rect
|
|
338
|
+
style="fill:#648bab;stroke-width:0.390385;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
|
339
|
+
id="rect983"
|
|
340
|
+
width="78.45462"
|
|
341
|
+
height="155.37715"
|
|
342
|
+
x="-72.956764"
|
|
343
|
+
y="-68.521217" /></clipPath><clipPath
|
|
344
|
+
clipPathUnits="userSpaceOnUse"
|
|
345
|
+
id="clipPath2353-3"><rect
|
|
346
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
347
|
+
id="rect2355-8"
|
|
348
|
+
width="355.61673"
|
|
349
|
+
height="728.3255"
|
|
350
|
+
x="2.1916344"
|
|
351
|
+
y="-3.1627369"
|
|
352
|
+
ry="55.641438" /></clipPath><filter
|
|
353
|
+
style="color-interpolation-filters:sRGB"
|
|
354
|
+
id="filter2409-8"
|
|
355
|
+
x="-0.0066088708"
|
|
356
|
+
width="1.0132177"
|
|
357
|
+
y="-0.0032087157"
|
|
358
|
+
height="1.0064174"><feGaussianBlur
|
|
359
|
+
stdDeviation="0.96852657"
|
|
360
|
+
id="feGaussianBlur2411-4" /></filter><filter
|
|
361
|
+
style="color-interpolation-filters:sRGB"
|
|
362
|
+
id="filter5343-7"
|
|
363
|
+
x="-0.19227619"
|
|
364
|
+
width="1.3845524"
|
|
365
|
+
y="-0.082464501"
|
|
366
|
+
height="1.164929"><feGaussianBlur
|
|
367
|
+
stdDeviation="0.030983682"
|
|
368
|
+
id="feGaussianBlur5345-1" /></filter><filter
|
|
369
|
+
style="color-interpolation-filters:sRGB"
|
|
370
|
+
id="filter5347-9"
|
|
371
|
+
x="-0.10877967"
|
|
372
|
+
width="1.2175593"
|
|
373
|
+
y="-0.082313925"
|
|
374
|
+
height="1.1646278"><feGaussianBlur
|
|
375
|
+
stdDeviation="0.030983682"
|
|
376
|
+
id="feGaussianBlur5349-7" /></filter><pattern
|
|
377
|
+
patternTransform="matrix(0.20347652,0,0,0.20347652,-55.330551,-9.271854)"
|
|
378
|
+
id="pattern3129-5"
|
|
379
|
+
xlink:href="#pattern2874-7-2-1-0-3-1" /><pattern
|
|
380
|
+
patternUnits="userSpaceOnUse"
|
|
381
|
+
width="1.171848"
|
|
382
|
+
height="1.1718804"
|
|
383
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
384
|
+
id="pattern2874-7-2-1-0-3-1"><g
|
|
385
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
386
|
+
id="g2781-1-7-7-0-3-7"><rect
|
|
387
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
388
|
+
id="rect2730-3-5-3-3-7-9"
|
|
389
|
+
width="0.15502979"
|
|
390
|
+
height="0.15502979"
|
|
391
|
+
x="-76.445686"
|
|
392
|
+
y="7.0699267" /><rect
|
|
393
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
394
|
+
id="rect2730-5-8-3-9-8-8-7"
|
|
395
|
+
width="0.15502979"
|
|
396
|
+
height="0.15502979"
|
|
397
|
+
x="-76.290665"
|
|
398
|
+
y="7.224957" /><rect
|
|
399
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
400
|
+
id="rect2730-5-5-1-3-1-1-2-1"
|
|
401
|
+
width="0.15502979"
|
|
402
|
+
height="0.15502979"
|
|
403
|
+
x="-76.290665"
|
|
404
|
+
y="7.0699267" /><rect
|
|
405
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
406
|
+
id="rect2730-5-5-0-1-8-3-5-8-9"
|
|
407
|
+
width="0.15502979"
|
|
408
|
+
height="0.15502979"
|
|
409
|
+
x="-76.445686"
|
|
410
|
+
y="7.224957" /></g></pattern><clipPath
|
|
411
|
+
clipPathUnits="userSpaceOnUse"
|
|
412
|
+
id="clipPath2586-4"><path
|
|
413
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
414
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
415
|
+
id="path2588-5" /></clipPath><filter
|
|
416
|
+
style="color-interpolation-filters:sRGB"
|
|
417
|
+
id="filter2810-4"
|
|
418
|
+
x="-0.075964987"
|
|
419
|
+
width="1.15193"
|
|
420
|
+
y="-3.1550879"
|
|
421
|
+
height="7.3101759"><feGaussianBlur
|
|
422
|
+
stdDeviation="0.46442349"
|
|
423
|
+
id="feGaussianBlur2812-4" /></filter><pattern
|
|
424
|
+
patternUnits="userSpaceOnUse"
|
|
425
|
+
width="1.171848"
|
|
426
|
+
height="1.1718804"
|
|
427
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
428
|
+
id="pattern2874-7-2-1-0-3-5"><g
|
|
429
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
430
|
+
id="g2781-1-7-7-0-3-1"><rect
|
|
431
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
432
|
+
id="rect2730-3-5-3-3-7-8"
|
|
433
|
+
width="0.15502979"
|
|
434
|
+
height="0.15502979"
|
|
435
|
+
x="-76.445686"
|
|
436
|
+
y="7.0699267" /><rect
|
|
437
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
438
|
+
id="rect2730-5-8-3-9-8-8-2"
|
|
439
|
+
width="0.15502979"
|
|
440
|
+
height="0.15502979"
|
|
441
|
+
x="-76.290665"
|
|
442
|
+
y="7.224957" /><rect
|
|
443
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
444
|
+
id="rect2730-5-5-1-3-1-1-2-9"
|
|
445
|
+
width="0.15502979"
|
|
446
|
+
height="0.15502979"
|
|
447
|
+
x="-76.290665"
|
|
448
|
+
y="7.0699267" /><rect
|
|
449
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
450
|
+
id="rect2730-5-5-0-1-8-3-5-8-3"
|
|
451
|
+
width="0.15502979"
|
|
452
|
+
height="0.15502979"
|
|
453
|
+
x="-76.445686"
|
|
454
|
+
y="7.224957" /></g></pattern><clipPath
|
|
455
|
+
clipPathUnits="userSpaceOnUse"
|
|
456
|
+
id="clipPath2586-6"><path
|
|
457
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
458
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
459
|
+
id="path2588-8" /></clipPath><clipPath
|
|
460
|
+
clipPathUnits="userSpaceOnUse"
|
|
461
|
+
id="clipPath2353-7"><rect
|
|
462
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
463
|
+
id="rect2355-3"
|
|
464
|
+
width="355.61673"
|
|
465
|
+
height="728.3255"
|
|
466
|
+
x="2.1916344"
|
|
467
|
+
y="-3.1627369"
|
|
468
|
+
ry="55.641438" /></clipPath><pattern
|
|
469
|
+
patternUnits="userSpaceOnUse"
|
|
470
|
+
width="1.171848"
|
|
471
|
+
height="1.1718804"
|
|
472
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
473
|
+
id="pattern2874-7-2-1-0-3-5-6"><g
|
|
474
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
475
|
+
id="g2781-1-7-7-0-3-1-0"><rect
|
|
476
|
+
style="opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
477
|
+
id="rect2730-3-5-3-3-7-8-9"
|
|
478
|
+
width="0.15502979"
|
|
479
|
+
height="0.15502979"
|
|
480
|
+
x="-76.445686"
|
|
481
|
+
y="7.0699267" /><rect
|
|
482
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#212121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
483
|
+
id="rect2730-5-8-3-9-8-8-2-1"
|
|
484
|
+
width="0.15502979"
|
|
485
|
+
height="0.15502979"
|
|
486
|
+
x="-76.290665"
|
|
487
|
+
y="7.224957" /><rect
|
|
488
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
489
|
+
id="rect2730-5-5-1-3-1-1-2-9-9"
|
|
490
|
+
width="0.15502979"
|
|
491
|
+
height="0.15502979"
|
|
492
|
+
x="-76.290665"
|
|
493
|
+
y="7.0699267" /><rect
|
|
494
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#060606;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0365544;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
495
|
+
id="rect2730-5-5-0-1-8-3-5-8-3-7"
|
|
496
|
+
width="0.15502979"
|
|
497
|
+
height="0.15502979"
|
|
498
|
+
x="-76.445686"
|
|
499
|
+
y="7.224957" /></g></pattern><clipPath
|
|
500
|
+
clipPathUnits="userSpaceOnUse"
|
|
501
|
+
id="clipPath2586-6-4"><path
|
|
502
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
503
|
+
d="m 22.509766,2.1699219 c -0.317894,0 -0.574219,0.2563261 -0.574219,0.5742188 0,0.3178919 0.256325,0.5761718 0.574219,0.5761718 h 13.564453 c 0.317892,0 0.574218,-0.2582797 0.57422,-0.5761718 0,-0.3178928 -0.256328,-0.5742188 -0.57422,-0.5742188 z m 0,0.041016 h 13.564453 c 0.296061,0 0.533202,0.2371418 0.533202,0.5332032 0,0.2960606 -0.237141,0.5351561 -0.533202,0.5351561 H 22.509766 c -0.296063,0 -0.533204,-0.2390953 -0.533204,-0.5351561 0,-0.2960615 0.237141,-0.5332032 0.533204,-0.5332032 z"
|
|
504
|
+
id="path2588-8-0" /></clipPath><clipPath
|
|
505
|
+
clipPathUnits="userSpaceOnUse"
|
|
506
|
+
id="clipPath2353-7-7"><rect
|
|
507
|
+
style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
508
|
+
id="rect2355-3-7"
|
|
509
|
+
width="355.61673"
|
|
510
|
+
height="728.3255"
|
|
511
|
+
x="2.1916344"
|
|
512
|
+
y="-3.1627369"
|
|
513
|
+
ry="55.641438" /></clipPath><clipPath
|
|
514
|
+
clipPathUnits="userSpaceOnUse"
|
|
515
|
+
id="clipPath1"><rect
|
|
516
|
+
style="fill:#88aa00;fill-opacity:0.461864;stroke-width:1.73044"
|
|
517
|
+
id="rect2"
|
|
518
|
+
width="135.53304"
|
|
519
|
+
height="274.88336"
|
|
520
|
+
x="429.83624"
|
|
521
|
+
y="-85.780159" /></clipPath><linearGradient
|
|
522
|
+
xlink:href="#linearGradient4"
|
|
523
|
+
id="linearGradient7"
|
|
524
|
+
x1="188.60878"
|
|
525
|
+
y1="58.76923"
|
|
526
|
+
x2="188.60878"
|
|
527
|
+
y2="81.310585"
|
|
528
|
+
gradientUnits="userSpaceOnUse"
|
|
529
|
+
gradientTransform="translate(47.326598,-18.513284)" /><linearGradient
|
|
530
|
+
xlink:href="#linearGradient4"
|
|
531
|
+
id="linearGradient14"
|
|
532
|
+
gradientUnits="userSpaceOnUse"
|
|
533
|
+
gradientTransform="translate(-44.724839,-23.757698)"
|
|
534
|
+
x1="188.60878"
|
|
535
|
+
y1="58.76923"
|
|
536
|
+
x2="188.60878"
|
|
537
|
+
y2="72.961754" /><linearGradient
|
|
538
|
+
xlink:href="#linearGradient4"
|
|
539
|
+
id="linearGradient12"
|
|
540
|
+
gradientUnits="userSpaceOnUse"
|
|
541
|
+
gradientTransform="translate(-44.724839,-5.0715004)"
|
|
542
|
+
x1="188.60878"
|
|
543
|
+
y1="58.76923"
|
|
544
|
+
x2="188.60878"
|
|
545
|
+
y2="72.961754" /><linearGradient
|
|
546
|
+
xlink:href="#linearGradient4"
|
|
547
|
+
id="linearGradient9"
|
|
548
|
+
gradientUnits="userSpaceOnUse"
|
|
549
|
+
gradientTransform="translate(-44.724849,-37.513315)"
|
|
550
|
+
x1="188.60878"
|
|
551
|
+
y1="58.76923"
|
|
552
|
+
x2="188.60878"
|
|
553
|
+
y2="65.617485" /><filter
|
|
554
|
+
style="color-interpolation-filters:sRGB"
|
|
555
|
+
id="filter5"
|
|
556
|
+
x="-0.0078007294"
|
|
557
|
+
y="-0.0037279099"
|
|
558
|
+
width="1.0156015"
|
|
559
|
+
height="1.0074558"><feGaussianBlur
|
|
560
|
+
stdDeviation="0.21321584"
|
|
561
|
+
id="feGaussianBlur5" /></filter><linearGradient
|
|
562
|
+
xlink:href="#linearGradient26128"
|
|
563
|
+
id="linearGradient26130"
|
|
564
|
+
x1="39.382565"
|
|
565
|
+
y1="1.3978949"
|
|
566
|
+
x2="39.382565"
|
|
567
|
+
y2="2.0960436"
|
|
568
|
+
gradientUnits="userSpaceOnUse"
|
|
569
|
+
gradientTransform="matrix(1.0064836,0,0,1.1366168,138.13684,-17.719262)" /><linearGradient
|
|
570
|
+
id="linearGradient26128"><stop
|
|
571
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
572
|
+
offset="0"
|
|
573
|
+
id="stop26753" /><stop
|
|
574
|
+
style="stop-color:#212121;stop-opacity:1;"
|
|
575
|
+
offset="1"
|
|
576
|
+
id="stop26126" /></linearGradient><filter
|
|
577
|
+
style="color-interpolation-filters:sRGB"
|
|
578
|
+
id="filter5343-0"
|
|
579
|
+
x="-0.19227619"
|
|
580
|
+
width="1.3845524"
|
|
581
|
+
y="-0.082464501"
|
|
582
|
+
height="1.164929"><feGaussianBlur
|
|
583
|
+
stdDeviation="0.030983682"
|
|
584
|
+
id="feGaussianBlur5345-8" /></filter><filter
|
|
585
|
+
style="color-interpolation-filters:sRGB"
|
|
586
|
+
id="filter5347-6"
|
|
587
|
+
x="-0.10877967"
|
|
588
|
+
width="1.2175593"
|
|
589
|
+
y="-0.082313926"
|
|
590
|
+
height="1.1646279"><feGaussianBlur
|
|
591
|
+
stdDeviation="0.030983682"
|
|
592
|
+
id="feGaussianBlur5349-2" /></filter><linearGradient
|
|
593
|
+
id="linearGradient4"><stop
|
|
594
|
+
style="stop-color:#d3d3e8;stop-opacity:1;"
|
|
595
|
+
offset="0"
|
|
596
|
+
id="stop1" /><stop
|
|
597
|
+
style="stop-color:#707498;stop-opacity:1;"
|
|
598
|
+
offset="0.26727331"
|
|
599
|
+
id="stop2" /><stop
|
|
600
|
+
style="stop-color:#5b5d84;stop-opacity:1;"
|
|
601
|
+
offset="0.91121495"
|
|
602
|
+
id="stop3" /><stop
|
|
603
|
+
style="stop-color:#4a5088;stop-opacity:1;"
|
|
604
|
+
offset="1"
|
|
605
|
+
id="stop4" /></linearGradient></defs><metadata
|
|
606
|
+
id="metadata5"><rdf:RDF><cc:Work
|
|
607
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
608
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
|
|
609
|
+
id="g15"
|
|
610
|
+
transform="translate(-134.47687,17.313946)"><path
|
|
611
|
+
id="rect2415-6-8"
|
|
612
|
+
style="display:inline;fill:#363c71;fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
613
|
+
d="m 235.05179,39.92892 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218717 v 22.646555 c 0,0.121168 -0.0976,0.218715 -0.21872,0.218715 h -2.27465 c -0.12117,0 -0.21871,-0.09754 -0.21871,-0.218715 V 40.147637 c 0,-0.12117 0.0976,-0.218717 0.21871,-0.218717 z" /><path
|
|
614
|
+
id="rect2415-4-9-9"
|
|
615
|
+
style="display:inline;fill:url(#linearGradient7);fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
616
|
+
d="m 235.05179,40.213251 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218716 v 22.165377 c 0,0.12117 -0.0976,0.218717 -0.21872,0.218717 h -2.27465 c -0.12117,0 -0.21871,-0.09755 -0.21871,-0.218717 V 40.431967 c 0,-0.121168 0.0976,-0.218716 0.21871,-0.218716 z" /><path
|
|
617
|
+
id="rect2415-6-8-6"
|
|
618
|
+
style="display:inline;fill:#363c71;fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
619
|
+
d="m 134.8148,34.684505 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218717 v 14.211987 c 0,0.121168 -0.0976,0.218715 -0.21872,0.218715 h -2.27465 c -0.12117,0 -0.21871,-0.09754 -0.21871,-0.218715 V 34.903222 c 0,-0.12117 0.0976,-0.218717 0.21871,-0.218717 z" /><path
|
|
620
|
+
id="rect2415-4-9-9-5"
|
|
621
|
+
style="display:inline;fill:url(#linearGradient14);fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
622
|
+
d="m 134.8148,34.968836 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218716 v 13.730809 c 0,0.12117 -0.0976,0.218717 -0.21872,0.218717 h -2.27465 c -0.12117,0 -0.21871,-0.09755 -0.21871,-0.218717 V 35.187552 c 0,-0.121168 0.0976,-0.218716 0.21871,-0.218716 z" /><path
|
|
623
|
+
id="rect2415-6-8-6-5"
|
|
624
|
+
style="display:inline;fill:#363c71;fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
625
|
+
d="m 134.8148,53.370703 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218717 v 14.211987 c 0,0.121168 -0.0976,0.218715 -0.21872,0.218715 h -2.27465 c -0.12117,0 -0.21871,-0.09754 -0.21871,-0.218715 V 53.58942 c 0,-0.12117 0.0976,-0.218717 0.21871,-0.218717 z" /><path
|
|
626
|
+
id="rect2415-4-9-9-5-9"
|
|
627
|
+
style="display:inline;fill:url(#linearGradient12);fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
628
|
+
d="m 134.8148,53.655034 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218716 v 13.730809 c 0,0.12117 -0.0976,0.218717 -0.21872,0.218717 h -2.27465 c -0.12117,0 -0.21871,-0.09755 -0.21871,-0.218717 V 53.87375 c 0,-0.121168 0.0976,-0.218716 0.21871,-0.218716 z" /><path
|
|
629
|
+
id="rect2415-6-8-7"
|
|
630
|
+
style="display:inline;fill:#363c71;fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
631
|
+
d="m 134.8148,20.928889 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218717 v 6.919413 c 0,0.121168 -0.0976,0.218715 -0.21872,0.218715 h -2.27465 c -0.12117,0 -0.21871,-0.09754 -0.21871,-0.218715 v -6.919413 c 0,-0.12117 0.0976,-0.218717 0.21871,-0.218717 z" /><path
|
|
632
|
+
id="rect2415-4-9-9-3"
|
|
633
|
+
style="display:inline;fill:url(#linearGradient9);fill-opacity:1;stroke:none;stroke-width:1.0478;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
634
|
+
d="m 134.8148,21.21322 h 2.27465 c 0.12117,0 0.21872,0.09755 0.21872,0.218716 v 6.438235 c 0,0.12117 -0.0976,0.218717 -0.21872,0.218717 h -2.27465 c -0.12117,0 -0.21871,-0.09755 -0.21871,-0.218717 v -6.438235 c 0,-0.121168 0.0976,-0.218716 0.21871,-0.218716 z" /><path
|
|
635
|
+
id="rect3"
|
|
636
|
+
style="fill:#525ca8;stroke:#414888;stroke-width:0.264583;fill-opacity:1;stroke-opacity:1"
|
|
637
|
+
d="m 151.12839,-17.130634 h 69.88448 c 8.81307,0 15.90807,7.095 15.90807,15.9080731 V 177.20221 c 0,8.81307 -7.095,15.90807 -15.90807,15.90807 h -69.88448 c -8.81307,0 -15.90807,-7.095 -15.90807,-15.90807 V -1.2225609 c 0,-8.8130731 7.095,-15.9080731 15.90807,-15.9080731 z" /><path
|
|
638
|
+
id="rect4-3"
|
|
639
|
+
style="fill:none;stroke:#a2ade5;stroke-width:0.529167;filter:url(#filter5);stroke-opacity:1"
|
|
640
|
+
d="m 151.67475,-16.13039 h 68.79179 c 8.51076,0 15.36237,6.8516166 15.36237,15.36236937 V 176.74767 c 0,8.51075 -6.85161,15.36236 -15.36237,15.36236 h -68.79179 c -8.51076,0 -15.36237,-6.85161 -15.36237,-15.36236 V -0.76802063 c 0,-8.51075277 6.85161,-15.36236937 15.36237,-15.36236937 z" /><path
|
|
641
|
+
id="rect3-2"
|
|
642
|
+
style="fill:#b7bbda;fill-opacity:0.40784314;stroke:none;stroke-width:0.442383;stroke-dasharray:none;stroke-opacity:1"
|
|
643
|
+
d="M 216.25019,-17.262711 V 2.5541681 h -81.16301 v 1.885156 H 237.05409 V 2.5541681 H 218.13534 V -17.262711 Z m -81.0302,188.803021 v 1.88516 h 18.78541 v 19.81791 h 1.88516 v -19.81791 h 81.0302 v -1.88516 z" /><path
|
|
644
|
+
id="rect4"
|
|
645
|
+
style="display:inline;fill:#0d0d0d;stroke-width:2.90366"
|
|
646
|
+
d="m 151.67475,-16.13039 h 68.79179 c 8.51076,0 15.36237,6.8516166 15.36237,15.36236937 V 176.74767 c 0,8.51075 -6.85161,15.36236 -15.36237,15.36236 h -68.79179 c -8.51076,0 -15.36237,-6.85161 -15.36237,-15.36236 V -0.76802063 c 0,-8.51075277 6.85161,-15.36236937 15.36237,-15.36236937 z" /><path
|
|
647
|
+
id="rect5"
|
|
648
|
+
style="display:inline;stroke-width:2.38764"
|
|
649
|
+
d="m 151.70838,-15.140171 h 68.7245 c 7.72171,0 13.93811,6.2163955 13.93811,13.9381065 V 177.18171 c 0,7.72171 -6.2164,13.93811 -13.93811,13.93811 h -68.7245 c -7.72171,0 -13.9381,-6.2164 -13.9381,-13.93811 V -1.2020645 c 0,-7.721711 6.21639,-13.9381065 13.9381,-13.9381065 z" /><path
|
|
650
|
+
id="rect14"
|
|
651
|
+
style="fill:#333333;stroke-width:3.82924"
|
|
652
|
+
d="m 151.55212,-13.062754 h 69.03703 c 6.73706,0 12.16076,5.423701 12.16076,12.16076406 V 176.88245 c 0,6.73706 -5.4237,12.16076 -12.16076,12.16076 h -69.03703 c -6.73706,0 -12.16076,-5.4237 -12.16076,-12.16076 V -0.90198994 c 0,-6.73706306 5.4237,-12.16076406 12.16076,-12.16076406 z" /><path
|
|
653
|
+
id="path14224"
|
|
654
|
+
style="fill:url(#linearGradient26130);fill-opacity:1;stroke:none;stroke-width:0.282991px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
655
|
+
d="m 175.73932,-16.13039 c 1.05812,0 1.03076,0.245985 1.24984,0.525102 0.15979,0.203576 0.36562,0.268426 0.77081,0.268426 h 16.62131 c 0.40519,0 0.6105,-0.06484 0.77029,-0.268426 0.21908,-0.279117 0.19223,-0.525102 1.25035,-0.525102 z" /><g
|
|
656
|
+
id="g2"
|
|
657
|
+
transform="matrix(0.95270798,0,0,0.95270798,44.5178,-16.890373)"><path
|
|
658
|
+
id="rect16441"
|
|
659
|
+
style="stroke-width:0.264583;stop-color:#000000"
|
|
660
|
+
d="m 138.37099,6.7034149 h 20.41691 c 2.24369,0 4.04998,1.8062912 4.04998,4.0499801 0,2.243689 -1.80629,4.04998 -4.04998,4.04998 h -20.41691 c -2.24369,0 -4.04998,-1.806291 -4.04998,-4.04998 0,-2.2436889 1.80629,-4.0499801 4.04998,-4.0499801 z" /><g
|
|
661
|
+
id="g1832"
|
|
662
|
+
transform="matrix(1.7871898,0,0,1.7871898,56.515339,-13.865451)"><circle
|
|
663
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0a0a0a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.025818;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
664
|
+
id="path5263-6"
|
|
665
|
+
cx="57.21339"
|
|
666
|
+
cy="13.775171"
|
|
667
|
+
r="1.3121531" /><circle
|
|
668
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0a0d13;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0198752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
669
|
+
id="path5265-7"
|
|
670
|
+
cx="57.21339"
|
|
671
|
+
cy="13.775171"
|
|
672
|
+
r="0.8093546" /><circle
|
|
673
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#091427;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0198752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
674
|
+
id="path5267-4"
|
|
675
|
+
cx="57.21339"
|
|
676
|
+
cy="13.775171"
|
|
677
|
+
r="0.61666459" /><path
|
|
678
|
+
style="display:inline;fill:#235a91;fill-opacity:0.556075;fill-rule:evenodd;stroke:none;stroke-width:0.0264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5343-0)"
|
|
679
|
+
d="m -47.128431,5.4302366 c -0.09735,0.010246 -0.235679,0.1588277 -0.245928,0.4508659 -0.01024,0.292038 0.117842,0.4508656 0.189571,0.4508656 0.07173,0 0.368889,-0.4252483 0.05635,-0.9017315 z"
|
|
680
|
+
id="path5271-1"
|
|
681
|
+
transform="matrix(0.75118992,0,0,0.75118992,92.191291,9.2834671)" /><path
|
|
682
|
+
style="display:inline;fill:#235a91;fill-opacity:0.556075;fill-rule:evenodd;stroke:none;stroke-width:0.0264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5347-6)"
|
|
683
|
+
d="m -46.429328,5.3279691 c -0.153553,0.047247 -0.183083,0.2952938 -0.177178,0.4370348 0.0059,0.1417412 0.206706,0.5138116 0.448847,0.4311293 0.242142,-0.082682 0.283483,-0.3897882 0.183084,-0.5964939 -0.100401,-0.2067057 -0.283483,-0.3543525 -0.454753,-0.2716702 z"
|
|
684
|
+
id="path5273-3"
|
|
685
|
+
transform="matrix(0.75118992,0,0,0.75118992,92.191291,9.2834671)" /></g></g></g></svg>
|