@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,601 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
9
|
+
width="363"
|
|
10
|
+
height="730"
|
|
11
|
+
viewBox="0 0 96.04375 193.14585"
|
|
12
|
+
version="1.1"
|
|
13
|
+
id="svg8">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs2">
|
|
16
|
+
<linearGradient
|
|
17
|
+
id="linearGradient821">
|
|
18
|
+
<stop
|
|
19
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
20
|
+
offset="0"
|
|
21
|
+
id="stop817" />
|
|
22
|
+
<stop
|
|
23
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
24
|
+
offset="1"
|
|
25
|
+
id="stop819" />
|
|
26
|
+
</linearGradient>
|
|
27
|
+
<clipPath
|
|
28
|
+
clipPathUnits="userSpaceOnUse"
|
|
29
|
+
id="clipPath4960">
|
|
30
|
+
<path
|
|
31
|
+
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"
|
|
32
|
+
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"
|
|
33
|
+
id="path4962" />
|
|
34
|
+
</clipPath>
|
|
35
|
+
<clipPath
|
|
36
|
+
clipPathUnits="userSpaceOnUse"
|
|
37
|
+
id="clipPath5059">
|
|
38
|
+
<path
|
|
39
|
+
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"
|
|
40
|
+
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"
|
|
41
|
+
id="path5061" />
|
|
42
|
+
</clipPath>
|
|
43
|
+
<clipPath
|
|
44
|
+
clipPathUnits="userSpaceOnUse"
|
|
45
|
+
id="clipPath5401">
|
|
46
|
+
<rect
|
|
47
|
+
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"
|
|
48
|
+
id="rect5403"
|
|
49
|
+
width="4.3765388"
|
|
50
|
+
height="7.4167299"
|
|
51
|
+
x="-13.8777"
|
|
52
|
+
y="25.856594"
|
|
53
|
+
ry="0.45101735" />
|
|
54
|
+
</clipPath>
|
|
55
|
+
<clipPath
|
|
56
|
+
clipPathUnits="userSpaceOnUse"
|
|
57
|
+
id="clipPath5589">
|
|
58
|
+
<path
|
|
59
|
+
id="path5591"
|
|
60
|
+
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"
|
|
61
|
+
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" />
|
|
62
|
+
</clipPath>
|
|
63
|
+
<clipPath
|
|
64
|
+
clipPathUnits="userSpaceOnUse"
|
|
65
|
+
id="clipPath5589-7">
|
|
66
|
+
<path
|
|
67
|
+
id="path5591-5"
|
|
68
|
+
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"
|
|
69
|
+
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" />
|
|
70
|
+
</clipPath>
|
|
71
|
+
<clipPath
|
|
72
|
+
clipPathUnits="userSpaceOnUse"
|
|
73
|
+
id="clipPath5738">
|
|
74
|
+
<path
|
|
75
|
+
id="path5740"
|
|
76
|
+
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"
|
|
77
|
+
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" />
|
|
78
|
+
</clipPath>
|
|
79
|
+
<clipPath
|
|
80
|
+
clipPathUnits="userSpaceOnUse"
|
|
81
|
+
id="clipPath922">
|
|
82
|
+
<rect
|
|
83
|
+
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"
|
|
84
|
+
id="rect924"
|
|
85
|
+
width="77.201637"
|
|
86
|
+
height="33.545391"
|
|
87
|
+
x="-67.752235"
|
|
88
|
+
y="-14.211905" />
|
|
89
|
+
</clipPath>
|
|
90
|
+
<clipPath
|
|
91
|
+
clipPathUnits="userSpaceOnUse"
|
|
92
|
+
id="clipPath972">
|
|
93
|
+
<rect
|
|
94
|
+
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"
|
|
95
|
+
id="rect974"
|
|
96
|
+
width="253.12003"
|
|
97
|
+
height="506.59415"
|
|
98
|
+
x="-527.82013"
|
|
99
|
+
y="-172.67062" />
|
|
100
|
+
</clipPath>
|
|
101
|
+
<mask
|
|
102
|
+
maskUnits="userSpaceOnUse"
|
|
103
|
+
id="mask1062">
|
|
104
|
+
<path
|
|
105
|
+
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"
|
|
106
|
+
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"
|
|
107
|
+
id="path1064" />
|
|
108
|
+
</mask>
|
|
109
|
+
<pattern
|
|
110
|
+
patternUnits="userSpaceOnUse"
|
|
111
|
+
width="1.171848"
|
|
112
|
+
height="1.1718804"
|
|
113
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
114
|
+
id="pattern2874">
|
|
115
|
+
<g
|
|
116
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
117
|
+
id="g2781">
|
|
118
|
+
<rect
|
|
119
|
+
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"
|
|
120
|
+
id="rect2730"
|
|
121
|
+
width="0.15502979"
|
|
122
|
+
height="0.15502979"
|
|
123
|
+
x="-76.445686"
|
|
124
|
+
y="7.0699267" />
|
|
125
|
+
<rect
|
|
126
|
+
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"
|
|
127
|
+
id="rect2730-5"
|
|
128
|
+
width="0.15502979"
|
|
129
|
+
height="0.15502979"
|
|
130
|
+
x="-76.290665"
|
|
131
|
+
y="7.224957" />
|
|
132
|
+
<rect
|
|
133
|
+
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"
|
|
134
|
+
id="rect2730-5-5"
|
|
135
|
+
width="0.15502979"
|
|
136
|
+
height="0.15502979"
|
|
137
|
+
x="-76.290665"
|
|
138
|
+
y="7.0699267" />
|
|
139
|
+
<rect
|
|
140
|
+
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"
|
|
141
|
+
id="rect2730-5-5-0"
|
|
142
|
+
width="0.15502979"
|
|
143
|
+
height="0.15502979"
|
|
144
|
+
x="-76.445686"
|
|
145
|
+
y="7.224957" />
|
|
146
|
+
</g>
|
|
147
|
+
</pattern>
|
|
148
|
+
<clipPath
|
|
149
|
+
clipPathUnits="userSpaceOnUse"
|
|
150
|
+
id="clipPath5738-4">
|
|
151
|
+
<path
|
|
152
|
+
id="path5740-9"
|
|
153
|
+
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"
|
|
154
|
+
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" />
|
|
155
|
+
</clipPath>
|
|
156
|
+
<clipPath
|
|
157
|
+
clipPathUnits="userSpaceOnUse"
|
|
158
|
+
id="clipPath5401-9">
|
|
159
|
+
<rect
|
|
160
|
+
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"
|
|
161
|
+
id="rect5403-9"
|
|
162
|
+
width="4.3765388"
|
|
163
|
+
height="7.4167299"
|
|
164
|
+
x="-13.8777"
|
|
165
|
+
y="25.856594"
|
|
166
|
+
ry="0.45101735" />
|
|
167
|
+
</clipPath>
|
|
168
|
+
<clipPath
|
|
169
|
+
clipPathUnits="userSpaceOnUse"
|
|
170
|
+
id="clipPath5589-3">
|
|
171
|
+
<path
|
|
172
|
+
id="path5591-6"
|
|
173
|
+
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"
|
|
174
|
+
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" />
|
|
175
|
+
</clipPath>
|
|
176
|
+
<clipPath
|
|
177
|
+
clipPathUnits="userSpaceOnUse"
|
|
178
|
+
id="clipPath5589-7-8">
|
|
179
|
+
<path
|
|
180
|
+
id="path5591-5-3"
|
|
181
|
+
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"
|
|
182
|
+
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" />
|
|
183
|
+
</clipPath>
|
|
184
|
+
<clipPath
|
|
185
|
+
clipPathUnits="userSpaceOnUse"
|
|
186
|
+
id="clipPath4960-5">
|
|
187
|
+
<path
|
|
188
|
+
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"
|
|
189
|
+
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"
|
|
190
|
+
id="path4962-4" />
|
|
191
|
+
</clipPath>
|
|
192
|
+
<pattern
|
|
193
|
+
patternUnits="userSpaceOnUse"
|
|
194
|
+
width="1.171848"
|
|
195
|
+
height="1.1718804"
|
|
196
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
197
|
+
id="pattern2874-7">
|
|
198
|
+
<g
|
|
199
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
200
|
+
id="g2781-1">
|
|
201
|
+
<rect
|
|
202
|
+
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"
|
|
203
|
+
id="rect2730-3"
|
|
204
|
+
width="0.15502979"
|
|
205
|
+
height="0.15502979"
|
|
206
|
+
x="-76.445686"
|
|
207
|
+
y="7.0699267" />
|
|
208
|
+
<rect
|
|
209
|
+
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"
|
|
210
|
+
id="rect2730-5-8"
|
|
211
|
+
width="0.15502979"
|
|
212
|
+
height="0.15502979"
|
|
213
|
+
x="-76.290665"
|
|
214
|
+
y="7.224957" />
|
|
215
|
+
<rect
|
|
216
|
+
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"
|
|
217
|
+
id="rect2730-5-5-1"
|
|
218
|
+
width="0.15502979"
|
|
219
|
+
height="0.15502979"
|
|
220
|
+
x="-76.290665"
|
|
221
|
+
y="7.0699267" />
|
|
222
|
+
<rect
|
|
223
|
+
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"
|
|
224
|
+
id="rect2730-5-5-0-1"
|
|
225
|
+
width="0.15502979"
|
|
226
|
+
height="0.15502979"
|
|
227
|
+
x="-76.445686"
|
|
228
|
+
y="7.224957" />
|
|
229
|
+
</g>
|
|
230
|
+
</pattern>
|
|
231
|
+
<clipPath
|
|
232
|
+
clipPathUnits="userSpaceOnUse"
|
|
233
|
+
id="clipPath948">
|
|
234
|
+
<rect
|
|
235
|
+
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"
|
|
236
|
+
id="rect950"
|
|
237
|
+
width="161.20644"
|
|
238
|
+
height="317.73975"
|
|
239
|
+
x="-280.93082"
|
|
240
|
+
y="-83.752052" />
|
|
241
|
+
</clipPath>
|
|
242
|
+
<clipPath
|
|
243
|
+
clipPathUnits="userSpaceOnUse"
|
|
244
|
+
id="clipPath967">
|
|
245
|
+
<rect
|
|
246
|
+
style="fill:#6ecb55;fill-opacity:0.540323;stroke:none;stroke-width:0.405315;stroke-linecap:round;stroke-linejoin:round"
|
|
247
|
+
id="rect969"
|
|
248
|
+
width="84.888893"
|
|
249
|
+
height="172.10544"
|
|
250
|
+
x="81.619461"
|
|
251
|
+
y="-32.789757" />
|
|
252
|
+
</clipPath>
|
|
253
|
+
<mask
|
|
254
|
+
maskUnits="userSpaceOnUse"
|
|
255
|
+
id="mask2042">
|
|
256
|
+
<path
|
|
257
|
+
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"
|
|
258
|
+
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"
|
|
259
|
+
id="path2044" />
|
|
260
|
+
</mask>
|
|
261
|
+
<clipPath
|
|
262
|
+
clipPathUnits="userSpaceOnUse"
|
|
263
|
+
id="clipPath2353">
|
|
264
|
+
<rect
|
|
265
|
+
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"
|
|
266
|
+
id="rect2355"
|
|
267
|
+
width="355.61673"
|
|
268
|
+
height="728.3255"
|
|
269
|
+
x="2.1916344"
|
|
270
|
+
y="-3.1627369"
|
|
271
|
+
ry="55.641438" />
|
|
272
|
+
</clipPath>
|
|
273
|
+
<linearGradient
|
|
274
|
+
xlink:href="#linearGradient2460"
|
|
275
|
+
id="linearGradient2462-4-1"
|
|
276
|
+
x1="-0.69643712"
|
|
277
|
+
y1="29.932404"
|
|
278
|
+
x2="-0.69643712"
|
|
279
|
+
y2="52.201885"
|
|
280
|
+
gradientUnits="userSpaceOnUse"
|
|
281
|
+
gradientTransform="translate(96.622301,20.068058)" />
|
|
282
|
+
<linearGradient
|
|
283
|
+
id="linearGradient2460">
|
|
284
|
+
<stop
|
|
285
|
+
style="stop-color:#455d80;stop-opacity:1;"
|
|
286
|
+
offset="0"
|
|
287
|
+
id="stop2456" />
|
|
288
|
+
<stop
|
|
289
|
+
style="stop-color:#19365e;stop-opacity:1"
|
|
290
|
+
offset="0.2"
|
|
291
|
+
id="stop2468" />
|
|
292
|
+
<stop
|
|
293
|
+
style="stop-color:#19365e;stop-opacity:1"
|
|
294
|
+
offset="0.80000001"
|
|
295
|
+
id="stop2466" />
|
|
296
|
+
<stop
|
|
297
|
+
style="stop-color:#455d80;stop-opacity:1"
|
|
298
|
+
offset="1"
|
|
299
|
+
id="stop2458" />
|
|
300
|
+
</linearGradient>
|
|
301
|
+
<linearGradient
|
|
302
|
+
xlink:href="#linearGradient2460"
|
|
303
|
+
id="linearGradient2462-4"
|
|
304
|
+
x1="-0.69643712"
|
|
305
|
+
y1="29.932404"
|
|
306
|
+
x2="-0.69643712"
|
|
307
|
+
y2="43.662617"
|
|
308
|
+
gradientUnits="userSpaceOnUse"
|
|
309
|
+
gradientTransform="translate(3.4851821,15.166878)" />
|
|
310
|
+
<linearGradient
|
|
311
|
+
xlink:href="#linearGradient2460"
|
|
312
|
+
id="linearGradient2462-4-3"
|
|
313
|
+
x1="-0.69643712"
|
|
314
|
+
y1="29.932404"
|
|
315
|
+
x2="-0.69643712"
|
|
316
|
+
y2="43.662617"
|
|
317
|
+
gradientUnits="userSpaceOnUse"
|
|
318
|
+
gradientTransform="translate(3.4851821,33.697473)" />
|
|
319
|
+
<linearGradient
|
|
320
|
+
xlink:href="#linearGradient2460"
|
|
321
|
+
id="linearGradient2462"
|
|
322
|
+
x1="-0.69643712"
|
|
323
|
+
y1="29.932404"
|
|
324
|
+
x2="-0.69643712"
|
|
325
|
+
y2="36.839325"
|
|
326
|
+
gradientUnits="userSpaceOnUse"
|
|
327
|
+
gradientTransform="translate(3.4851821,1.0989413)" />
|
|
328
|
+
<clipPath
|
|
329
|
+
clipPathUnits="userSpaceOnUse"
|
|
330
|
+
id="clipPath2353-4">
|
|
331
|
+
<rect
|
|
332
|
+
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"
|
|
333
|
+
id="rect2355-5"
|
|
334
|
+
width="355.61673"
|
|
335
|
+
height="728.3255"
|
|
336
|
+
x="2.1916344"
|
|
337
|
+
y="-3.1627369"
|
|
338
|
+
ry="55.641438" />
|
|
339
|
+
</clipPath>
|
|
340
|
+
<filter
|
|
341
|
+
style="color-interpolation-filters:sRGB"
|
|
342
|
+
id="filter2409"
|
|
343
|
+
x="-0.0066088708"
|
|
344
|
+
width="1.0132177"
|
|
345
|
+
y="-0.0032087157"
|
|
346
|
+
height="1.0064174">
|
|
347
|
+
<feGaussianBlur
|
|
348
|
+
stdDeviation="0.96852657"
|
|
349
|
+
id="feGaussianBlur2411" />
|
|
350
|
+
</filter>
|
|
351
|
+
<filter
|
|
352
|
+
style="color-interpolation-filters:sRGB"
|
|
353
|
+
id="filter5343"
|
|
354
|
+
x="-0.19227619"
|
|
355
|
+
width="1.3845524"
|
|
356
|
+
y="-0.082464501"
|
|
357
|
+
height="1.164929">
|
|
358
|
+
<feGaussianBlur
|
|
359
|
+
stdDeviation="0.030983682"
|
|
360
|
+
id="feGaussianBlur5345" />
|
|
361
|
+
</filter>
|
|
362
|
+
<filter
|
|
363
|
+
style="color-interpolation-filters:sRGB"
|
|
364
|
+
id="filter5347"
|
|
365
|
+
x="-0.10877967"
|
|
366
|
+
width="1.2175593"
|
|
367
|
+
y="-0.082313925"
|
|
368
|
+
height="1.1646278">
|
|
369
|
+
<feGaussianBlur
|
|
370
|
+
stdDeviation="0.030983682"
|
|
371
|
+
id="feGaussianBlur5349" />
|
|
372
|
+
</filter>
|
|
373
|
+
<pattern
|
|
374
|
+
patternTransform="matrix(0.33424321,0,0,0.33424321,-106.98839,-8.8496532)"
|
|
375
|
+
id="pattern3129"
|
|
376
|
+
xlink:href="#pattern2874-7-5" />
|
|
377
|
+
<pattern
|
|
378
|
+
patternUnits="userSpaceOnUse"
|
|
379
|
+
width="1.171848"
|
|
380
|
+
height="1.1718804"
|
|
381
|
+
patternTransform="matrix(0.26458334,0,0,0.26458334,-76.445686,-5.7812643)"
|
|
382
|
+
id="pattern2874-7-5">
|
|
383
|
+
<g
|
|
384
|
+
transform="matrix(3.7795274,0,0,3.7795274,288.92857,-26.720982)"
|
|
385
|
+
id="g2781-1-5">
|
|
386
|
+
<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-8"
|
|
389
|
+
width="0.15502979"
|
|
390
|
+
height="0.15502979"
|
|
391
|
+
x="-76.445686"
|
|
392
|
+
y="7.0699267" />
|
|
393
|
+
<rect
|
|
394
|
+
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"
|
|
395
|
+
id="rect2730-5-8-4"
|
|
396
|
+
width="0.15502979"
|
|
397
|
+
height="0.15502979"
|
|
398
|
+
x="-76.290665"
|
|
399
|
+
y="7.224957" />
|
|
400
|
+
<rect
|
|
401
|
+
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"
|
|
402
|
+
id="rect2730-5-5-1-0"
|
|
403
|
+
width="0.15502979"
|
|
404
|
+
height="0.15502979"
|
|
405
|
+
x="-76.290665"
|
|
406
|
+
y="7.0699267" />
|
|
407
|
+
<rect
|
|
408
|
+
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"
|
|
409
|
+
id="rect2730-5-5-0-1-9"
|
|
410
|
+
width="0.15502979"
|
|
411
|
+
height="0.15502979"
|
|
412
|
+
x="-76.445686"
|
|
413
|
+
y="7.224957" />
|
|
414
|
+
</g>
|
|
415
|
+
</pattern>
|
|
416
|
+
<mask
|
|
417
|
+
maskUnits="userSpaceOnUse"
|
|
418
|
+
id="mask2042-2">
|
|
419
|
+
<path
|
|
420
|
+
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"
|
|
421
|
+
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"
|
|
422
|
+
id="path2044-8" />
|
|
423
|
+
</mask>
|
|
424
|
+
<filter
|
|
425
|
+
style="color-interpolation-filters:sRGB"
|
|
426
|
+
id="filter1214"
|
|
427
|
+
x="-0.09973029"
|
|
428
|
+
width="1.1994606"
|
|
429
|
+
y="-2.5665836"
|
|
430
|
+
height="6.1331673">
|
|
431
|
+
<feGaussianBlur
|
|
432
|
+
stdDeviation="0.49125426"
|
|
433
|
+
id="feGaussianBlur1216" />
|
|
434
|
+
</filter>
|
|
435
|
+
<linearGradient
|
|
436
|
+
xlink:href="#linearGradient2650"
|
|
437
|
+
id="linearGradient2652"
|
|
438
|
+
x1="64.657043"
|
|
439
|
+
y1="0.37720415"
|
|
440
|
+
x2="64.657043"
|
|
441
|
+
y2="192.34035"
|
|
442
|
+
gradientUnits="userSpaceOnUse"
|
|
443
|
+
gradientTransform="translate(0.39687228,1.0583264)" />
|
|
444
|
+
<linearGradient
|
|
445
|
+
id="linearGradient2650">
|
|
446
|
+
<stop
|
|
447
|
+
style="stop-color:#404040;stop-opacity:1"
|
|
448
|
+
offset="0"
|
|
449
|
+
id="stop2646" />
|
|
450
|
+
<stop
|
|
451
|
+
style="stop-color:#262626;stop-opacity:1"
|
|
452
|
+
offset="1"
|
|
453
|
+
id="stop2648" />
|
|
454
|
+
</linearGradient>
|
|
455
|
+
</defs>
|
|
456
|
+
<metadata
|
|
457
|
+
id="metadata5">
|
|
458
|
+
<rdf:RDF>
|
|
459
|
+
<cc:Work
|
|
460
|
+
rdf:about="">
|
|
461
|
+
<dc:format>image/svg+xml</dc:format>
|
|
462
|
+
<dc:type
|
|
463
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
464
|
+
<dc:title></dc:title>
|
|
465
|
+
</cc:Work>
|
|
466
|
+
</rdf:RDF>
|
|
467
|
+
</metadata>
|
|
468
|
+
<path
|
|
469
|
+
id="rect2415-6-8"
|
|
470
|
+
style="display:inline;fill:#12284a;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
471
|
+
d="m 93.470393,49.720453 h 2.240082 c 0.119329,0 0.2154,0.09607 0.2154,0.215392 v 22.302413 c 0,0.119327 -0.0961,0.215392 -0.2154,0.215392 h -2.240082 c -0.11933,0 -0.215389,-0.09606 -0.215389,-0.215392 V 49.935845 c 0,-0.119327 0.0961,-0.215392 0.215389,-0.215392 z" />
|
|
472
|
+
<path
|
|
473
|
+
id="rect2415-4-9-9"
|
|
474
|
+
style="display:inline;fill:url(#linearGradient2462-4-1);fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
475
|
+
d="m 93.470393,50.000465 h 2.240082 c 0.119329,0 0.2154,0.09607 0.2154,0.215392 v 21.828544 c 0,0.119329 -0.0961,0.215394 -0.2154,0.215394 h -2.240082 c -0.11933,0 -0.215389,-0.09607 -0.215389,-0.215394 V 50.215857 c 0,-0.119327 0.0961,-0.215392 0.215389,-0.215392 z" />
|
|
476
|
+
<path
|
|
477
|
+
id="rect2415-6"
|
|
478
|
+
style="display:inline;fill:#12284a;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
479
|
+
d="M 0.33327228,44.819275 H 2.5733523 c 0.11933,0 0.2153899,0.09607 0.2153899,0.215392 v 13.773296 c 0,0.119327 -0.0961,0.215392 -0.2153899,0.215392 H 0.33327228 c -0.11933,0 -0.21539,-0.09606 -0.21539,-0.215392 V 45.034667 c 0,-0.119328 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
480
|
+
<path
|
|
481
|
+
id="rect2415-4-9"
|
|
482
|
+
style="display:inline;fill:url(#linearGradient2462-4);fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
483
|
+
d="M 0.33327228,45.099283 H 2.5733523 c 0.11933,0 0.2153899,0.09607 0.2153899,0.215395 v 13.29943 c 0,0.119327 -0.0961,0.215392 -0.2153899,0.215392 H 0.33327228 c -0.11933,0 -0.21539,-0.09607 -0.21539,-0.215392 v -13.29943 c 0,-0.119327 0.0961,-0.215395 0.21539,-0.215395 z" />
|
|
484
|
+
<path
|
|
485
|
+
id="rect2415-6-0"
|
|
486
|
+
style="display:inline;fill:#12284a;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
487
|
+
d="M 0.33327228,63.349869 H 2.5733523 c 0.11933,0 0.2153899,0.09607 0.2153899,0.215392 v 13.773296 c 0,0.119327 -0.0961,0.215392 -0.2153899,0.215392 H 0.33327228 c -0.11933,0 -0.21539,-0.09606 -0.21539,-0.215392 V 63.565261 c 0,-0.119327 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
488
|
+
<path
|
|
489
|
+
id="rect2415-4-9-6"
|
|
490
|
+
style="display:inline;fill:url(#linearGradient2462-4-3);fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
491
|
+
d="M 0.33327228,63.62988 H 2.5733523 c 0.11933,0 0.2153899,0.09607 0.2153899,0.215392 v 13.29943 c 0,0.119327 -0.0961,0.215392 -0.2153899,0.215392 H 0.33327228 c -0.11933,0 -0.21539,-0.09607 -0.21539,-0.215392 v -13.29943 c 0,-0.119327 0.0961,-0.215392 0.21539,-0.215392 z" />
|
|
492
|
+
<rect
|
|
493
|
+
style="display:inline;fill:#12284a;fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
494
|
+
id="rect2415"
|
|
495
|
+
width="2.6708689"
|
|
496
|
+
height="7.3807893"
|
|
497
|
+
x="0.11787938"
|
|
498
|
+
y="30.751335"
|
|
499
|
+
ry="0.21539268" />
|
|
500
|
+
<rect
|
|
501
|
+
style="display:inline;fill:url(#linearGradient2462);fill-opacity:1;stroke:none;stroke-width:1.03188;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
502
|
+
id="rect2415-4"
|
|
503
|
+
width="2.6708689"
|
|
504
|
+
height="6.9069233"
|
|
505
|
+
x="0.11787938"
|
|
506
|
+
y="31.031345"
|
|
507
|
+
ry="0.21539268" />
|
|
508
|
+
<rect
|
|
509
|
+
style="display:inline;fill:#455d80;fill-opacity:1;stroke:#12284a;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
510
|
+
id="rect2163"
|
|
511
|
+
width="94.090263"
|
|
512
|
+
height="192.7028"
|
|
513
|
+
x="0.97673559"
|
|
514
|
+
y="0.22151855"
|
|
515
|
+
ry="14.721798" />
|
|
516
|
+
<path
|
|
517
|
+
id="rect2163-1"
|
|
518
|
+
style="display:inline;fill:#142b4b;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter2409)"
|
|
519
|
+
d="m 57.830078,-1.2109375 c -29.778781,0 -53.689453,23.9106715 -53.689453,53.6894535 V 669.52344 c 0,29.77878 23.910672,53.6875 53.689453,53.6875 H 302.16992 c 29.77878,0 53.68946,-23.90872 53.68946,-53.6875 V 52.478516 c 0,-29.778782 -23.91068,-53.6894535 -53.68946,-53.6894535 z"
|
|
520
|
+
transform="matrix(0.26458334,0,0,0.26458334,0.39687226,1.0583265)"
|
|
521
|
+
clip-path="url(#clipPath2353-4)" />
|
|
522
|
+
<path
|
|
523
|
+
id="rect2172"
|
|
524
|
+
style="display:inline;fill:#445b75;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
525
|
+
d="M 73.970674,0.08939338 V 3.2540581 h 2.152838 V 0.08939338 Z M 0.84438229,19.314576 v 2.152841 H 95.199352 v -2.152841 z m 0,152.699724 v 2.15233 H 95.199352 V 172.0143 Z M 19.920223,190.33154 v 2.72488 h 2.15284 v -2.72488 z" />
|
|
526
|
+
<rect
|
|
527
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#434343;stroke-width:0.132292;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
528
|
+
id="rect3540"
|
|
529
|
+
width="91.90802"
|
|
530
|
+
height="190.27477"
|
|
531
|
+
x="2.0678611"
|
|
532
|
+
y="1.4355307"
|
|
533
|
+
ry="13.878329" />
|
|
534
|
+
<g
|
|
535
|
+
id="g2170"
|
|
536
|
+
transform="translate(104.02232,1.0583265)"
|
|
537
|
+
style="display:inline">
|
|
538
|
+
<circle
|
|
539
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#161616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0343694;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
540
|
+
id="path5263"
|
|
541
|
+
cx="-46.563324"
|
|
542
|
+
cy="5.9794521"
|
|
543
|
+
r="1.7467661" />
|
|
544
|
+
<circle
|
|
545
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#0a0d13;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"
|
|
546
|
+
id="path5265"
|
|
547
|
+
cx="-46.563324"
|
|
548
|
+
cy="5.9794521"
|
|
549
|
+
r="1.0774301" />
|
|
550
|
+
<circle
|
|
551
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#091427;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"
|
|
552
|
+
id="path5267"
|
|
553
|
+
cx="-46.563324"
|
|
554
|
+
cy="5.9794521"
|
|
555
|
+
r="0.82091707" />
|
|
556
|
+
<path
|
|
557
|
+
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)"
|
|
558
|
+
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"
|
|
559
|
+
id="path5271" />
|
|
560
|
+
<path
|
|
561
|
+
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)"
|
|
562
|
+
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"
|
|
563
|
+
id="path5273" />
|
|
564
|
+
</g>
|
|
565
|
+
<g
|
|
566
|
+
id="g2051"
|
|
567
|
+
transform="matrix(0.98624005,0,0,0.98624005,1.1090123,-1.4667031)"
|
|
568
|
+
style="display:inline">
|
|
569
|
+
<rect
|
|
570
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#pattern3129);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.334243;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
571
|
+
id="rect5261"
|
|
572
|
+
width="10.362609"
|
|
573
|
+
height="1.8204322"
|
|
574
|
+
x="42.674976"
|
|
575
|
+
y="7.627502"
|
|
576
|
+
ry="0.91021591" />
|
|
577
|
+
<path
|
|
578
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#292929;stroke-width:0.0668487;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
579
|
+
d="m 43.58519,7.6277645 c -0.504259,0 -0.91003,0.4057697 -0.91003,0.9100294 0,0.5042587 0.405771,0.9100287 0.91003,0.9100287 h 8.548817 c 0.504259,0 0.91003,-0.40577 0.91003,-0.9100287 0,-0.5042597 -0.405771,-0.9100294 -0.91003,-0.9100294 z"
|
|
580
|
+
id="rect5261-0" />
|
|
581
|
+
<g
|
|
582
|
+
id="g1041"
|
|
583
|
+
mask="url(#mask2042-2)"
|
|
584
|
+
style="display:inline;filter:url(#filter1214)"
|
|
585
|
+
transform="matrix(0.90162812,0,0,1.2632814,4.6999299,-1.5462883)"
|
|
586
|
+
clip-path="none">
|
|
587
|
+
<path
|
|
588
|
+
id="path999"
|
|
589
|
+
d="M 42.25606,7.9824588 A 0.22968481,0.22968481 0 0 1 42.026375,8.2121435 0.22968481,0.22968481 0 0 1 41.79669,7.9824588 0.22968481,0.22968481 0 0 1 42.026375,7.752774 0.22968481,0.22968481 0 0 1 42.25606,7.9824588 Z"
|
|
590
|
+
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0319826;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
591
|
+
<path
|
|
592
|
+
id="path999-2"
|
|
593
|
+
d="M 53.618677,7.9824588 A 0.22968481,0.22968481 0 0 1 53.388992,8.2121435 0.22968481,0.22968481 0 0 1 53.159307,7.9824588 0.22968481,0.22968481 0 0 1 53.388992,7.752774 0.22968481,0.22968481 0 0 1 53.618677,7.9824588 Z"
|
|
594
|
+
style="display:inline;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0319826;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
595
|
+
</g>
|
|
596
|
+
</g>
|
|
597
|
+
<path
|
|
598
|
+
id="path998"
|
|
599
|
+
style="display:inline;fill:url(#linearGradient2652);fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
600
|
+
d="M 15.576303,4.4888699 C 10.010253,4.4886924 5.4979523,9.0007597 5.4978523,14.566807 V 178.57851 c -1.799e-4,5.56625 4.5122007,10.07862 10.0784507,10.07844 h 64.891141 c 5.566249,1.8e-4 10.078628,-4.51219 10.078448,-10.07844 V 14.566807 C 90.545784,9.0007597 86.033484,4.4886924 80.467444,4.4888699 h -7.69049 c -1.17783,0 -1.78697,0.1217769 -1.78697,1.9900594 0,1.868282 -1.157732,5.0162307 -5.300461,5.0162307 h -35.33531 c -4.14272,0 -5.30045,-3.1479487 -5.30045,-5.0162307 0,-1.8682825 -0.60914,-1.9900594 -1.78697,-1.9900594 z" />
|
|
601
|
+
</svg>
|