@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,652 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
width="360"
|
|
14
|
+
height="722"
|
|
15
|
+
viewBox="0 0 95.25 191.02918"
|
|
16
|
+
version="1.1"
|
|
17
|
+
id="svg8"
|
|
18
|
+
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
|
19
|
+
sodipodi:docname="IPhone_X_vector.svg">
|
|
20
|
+
<defs
|
|
21
|
+
id="defs2">
|
|
22
|
+
<linearGradient
|
|
23
|
+
id="linearGradient948"
|
|
24
|
+
inkscape:collect="always">
|
|
25
|
+
<stop
|
|
26
|
+
style="stop-color:#404040;stop-opacity:1"
|
|
27
|
+
offset="0"
|
|
28
|
+
id="stop942" />
|
|
29
|
+
<stop
|
|
30
|
+
id="stop944"
|
|
31
|
+
offset="0.02193147"
|
|
32
|
+
style="stop-color:#464646;stop-opacity:1" />
|
|
33
|
+
<stop
|
|
34
|
+
style="stop-color:#525252;stop-opacity:0.01568628"
|
|
35
|
+
offset="0.99948996"
|
|
36
|
+
id="stop4691" />
|
|
37
|
+
<stop
|
|
38
|
+
style="stop-color:#444444;stop-opacity:0"
|
|
39
|
+
offset="1"
|
|
40
|
+
id="stop946" />
|
|
41
|
+
</linearGradient>
|
|
42
|
+
<linearGradient
|
|
43
|
+
inkscape:collect="always"
|
|
44
|
+
id="linearGradient5830">
|
|
45
|
+
<stop
|
|
46
|
+
style="stop-color:#4f4f4f;stop-opacity:0.13084112"
|
|
47
|
+
offset="0"
|
|
48
|
+
id="stop5826" />
|
|
49
|
+
<stop
|
|
50
|
+
id="stop5834"
|
|
51
|
+
offset="0.07"
|
|
52
|
+
style="stop-color:#4f4f4f;stop-opacity:1" />
|
|
53
|
+
<stop
|
|
54
|
+
style="stop-color:#4f4f4f;stop-opacity:0.95327103"
|
|
55
|
+
offset="0.93699998"
|
|
56
|
+
id="stop5836" />
|
|
57
|
+
<stop
|
|
58
|
+
style="stop-color:#4f4f4f;stop-opacity:0"
|
|
59
|
+
offset="1"
|
|
60
|
+
id="stop5828" />
|
|
61
|
+
</linearGradient>
|
|
62
|
+
<linearGradient
|
|
63
|
+
id="linearGradient5750"
|
|
64
|
+
inkscape:collect="always">
|
|
65
|
+
<stop
|
|
66
|
+
id="stop5742"
|
|
67
|
+
offset="0"
|
|
68
|
+
style="stop-color:#cbcbcb;stop-opacity:0.27450982" />
|
|
69
|
+
<stop
|
|
70
|
+
style="stop-color:#cbcbcb;stop-opacity:1"
|
|
71
|
+
offset="0.04"
|
|
72
|
+
id="stop5744" />
|
|
73
|
+
<stop
|
|
74
|
+
id="stop5746"
|
|
75
|
+
offset="0.95999998"
|
|
76
|
+
style="stop-color:#cbcbcb;stop-opacity:1" />
|
|
77
|
+
<stop
|
|
78
|
+
id="stop5748"
|
|
79
|
+
offset="1"
|
|
80
|
+
style="stop-color:#cbcbcb;stop-opacity:0.27570093" />
|
|
81
|
+
</linearGradient>
|
|
82
|
+
<linearGradient
|
|
83
|
+
inkscape:collect="always"
|
|
84
|
+
id="linearGradient5473-6">
|
|
85
|
+
<stop
|
|
86
|
+
style="stop-color:#cbcbcb;stop-opacity:0.27450982"
|
|
87
|
+
offset="0"
|
|
88
|
+
id="stop5469" />
|
|
89
|
+
<stop
|
|
90
|
+
id="stop5477"
|
|
91
|
+
offset="0.05"
|
|
92
|
+
style="stop-color:#cbcbcb;stop-opacity:1" />
|
|
93
|
+
<stop
|
|
94
|
+
style="stop-color:#cbcbcb;stop-opacity:1"
|
|
95
|
+
offset="0.94999999"
|
|
96
|
+
id="stop5479" />
|
|
97
|
+
<stop
|
|
98
|
+
style="stop-color:#cbcbcb;stop-opacity:0.27570093"
|
|
99
|
+
offset="1"
|
|
100
|
+
id="stop5471" />
|
|
101
|
+
</linearGradient>
|
|
102
|
+
<linearGradient
|
|
103
|
+
inkscape:collect="always"
|
|
104
|
+
id="linearGradient5220">
|
|
105
|
+
<stop
|
|
106
|
+
id="stop5218"
|
|
107
|
+
offset="0"
|
|
108
|
+
style="stop-color:#404040;stop-opacity:1" />
|
|
109
|
+
<stop
|
|
110
|
+
style="stop-color:#838383;stop-opacity:1"
|
|
111
|
+
offset="0.59999961"
|
|
112
|
+
id="stop5224" />
|
|
113
|
+
<stop
|
|
114
|
+
id="stop5216"
|
|
115
|
+
offset="1"
|
|
116
|
+
style="stop-color:#a7a7a7;stop-opacity:1" />
|
|
117
|
+
</linearGradient>
|
|
118
|
+
<linearGradient
|
|
119
|
+
id="linearGradient821">
|
|
120
|
+
<stop
|
|
121
|
+
style="stop-color:#000000;stop-opacity:1;"
|
|
122
|
+
offset="0"
|
|
123
|
+
id="stop817" />
|
|
124
|
+
<stop
|
|
125
|
+
style="stop-color:#000000;stop-opacity:0;"
|
|
126
|
+
offset="1"
|
|
127
|
+
id="stop819" />
|
|
128
|
+
</linearGradient>
|
|
129
|
+
<clipPath
|
|
130
|
+
clipPathUnits="userSpaceOnUse"
|
|
131
|
+
id="clipPath4960">
|
|
132
|
+
<path
|
|
133
|
+
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.27649546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
134
|
+
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"
|
|
135
|
+
id="path4962"
|
|
136
|
+
inkscape:connector-curvature="0" />
|
|
137
|
+
</clipPath>
|
|
138
|
+
<filter
|
|
139
|
+
inkscape:collect="always"
|
|
140
|
+
style="color-interpolation-filters:sRGB"
|
|
141
|
+
id="filter4996"
|
|
142
|
+
x="-0.0017457807"
|
|
143
|
+
width="1.0034916"
|
|
144
|
+
y="-0.00091419626"
|
|
145
|
+
height="1.0018284">
|
|
146
|
+
<feGaussianBlur
|
|
147
|
+
inkscape:collect="always"
|
|
148
|
+
stdDeviation="0.26620632"
|
|
149
|
+
id="feGaussianBlur4998" />
|
|
150
|
+
</filter>
|
|
151
|
+
<clipPath
|
|
152
|
+
clipPathUnits="userSpaceOnUse"
|
|
153
|
+
id="clipPath5059">
|
|
154
|
+
<path
|
|
155
|
+
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.27649546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
156
|
+
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"
|
|
157
|
+
id="path5061"
|
|
158
|
+
inkscape:connector-curvature="0" />
|
|
159
|
+
</clipPath>
|
|
160
|
+
<linearGradient
|
|
161
|
+
inkscape:collect="always"
|
|
162
|
+
xlink:href="#linearGradient5220"
|
|
163
|
+
id="linearGradient5226"
|
|
164
|
+
gradientUnits="userSpaceOnUse"
|
|
165
|
+
x1="340.65216"
|
|
166
|
+
y1="361.12305"
|
|
167
|
+
x2="349.57422"
|
|
168
|
+
y2="361.12305" />
|
|
169
|
+
<linearGradient
|
|
170
|
+
gradientTransform="matrix(-0.26458334,0,0,0.26458334,95.47647,7.5449331e-7)"
|
|
171
|
+
inkscape:collect="always"
|
|
172
|
+
xlink:href="#linearGradient5220"
|
|
173
|
+
id="linearGradient5226-6"
|
|
174
|
+
gradientUnits="userSpaceOnUse"
|
|
175
|
+
x1="340.65216"
|
|
176
|
+
y1="361.12305"
|
|
177
|
+
x2="349.57422"
|
|
178
|
+
y2="361.12305" />
|
|
179
|
+
<filter
|
|
180
|
+
inkscape:collect="always"
|
|
181
|
+
style="color-interpolation-filters:sRGB"
|
|
182
|
+
id="filter5343"
|
|
183
|
+
x="-0.19227619"
|
|
184
|
+
width="1.3845524"
|
|
185
|
+
y="-0.082464499"
|
|
186
|
+
height="1.164929">
|
|
187
|
+
<feGaussianBlur
|
|
188
|
+
inkscape:collect="always"
|
|
189
|
+
stdDeviation="0.030983682"
|
|
190
|
+
id="feGaussianBlur5345" />
|
|
191
|
+
</filter>
|
|
192
|
+
<filter
|
|
193
|
+
inkscape:collect="always"
|
|
194
|
+
style="color-interpolation-filters:sRGB"
|
|
195
|
+
id="filter5347"
|
|
196
|
+
x="-0.10877967"
|
|
197
|
+
width="1.2175593"
|
|
198
|
+
y="-0.082313924"
|
|
199
|
+
height="1.1646278">
|
|
200
|
+
<feGaussianBlur
|
|
201
|
+
inkscape:collect="always"
|
|
202
|
+
stdDeviation="0.030983682"
|
|
203
|
+
id="feGaussianBlur5349" />
|
|
204
|
+
</filter>
|
|
205
|
+
<clipPath
|
|
206
|
+
clipPathUnits="userSpaceOnUse"
|
|
207
|
+
id="clipPath5401">
|
|
208
|
+
<rect
|
|
209
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
210
|
+
id="rect5403"
|
|
211
|
+
width="4.3765388"
|
|
212
|
+
height="7.4167299"
|
|
213
|
+
x="-13.8777"
|
|
214
|
+
y="25.856594"
|
|
215
|
+
ry="0.45101735" />
|
|
216
|
+
</clipPath>
|
|
217
|
+
<filter
|
|
218
|
+
inkscape:collect="always"
|
|
219
|
+
style="color-interpolation-filters:sRGB"
|
|
220
|
+
id="filter5465"
|
|
221
|
+
x="-0.3250591"
|
|
222
|
+
width="1.6501182"
|
|
223
|
+
y="-0.025913246"
|
|
224
|
+
height="1.0518265">
|
|
225
|
+
<feGaussianBlur
|
|
226
|
+
inkscape:collect="always"
|
|
227
|
+
stdDeviation="0.07139097"
|
|
228
|
+
id="feGaussianBlur5467" />
|
|
229
|
+
</filter>
|
|
230
|
+
<linearGradient
|
|
231
|
+
inkscape:collect="always"
|
|
232
|
+
xlink:href="#linearGradient5473-6"
|
|
233
|
+
id="linearGradient5475"
|
|
234
|
+
x1="-13.205618"
|
|
235
|
+
y1="26.258963"
|
|
236
|
+
x2="-13.205618"
|
|
237
|
+
y2="32.87096"
|
|
238
|
+
gradientUnits="userSpaceOnUse" />
|
|
239
|
+
<linearGradient
|
|
240
|
+
inkscape:collect="always"
|
|
241
|
+
xlink:href="#linearGradient5473-6"
|
|
242
|
+
id="linearGradient5475-9"
|
|
243
|
+
x1="-13.205618"
|
|
244
|
+
y1="26.258963"
|
|
245
|
+
x2="-13.205618"
|
|
246
|
+
y2="39.268726"
|
|
247
|
+
gradientUnits="userSpaceOnUse"
|
|
248
|
+
gradientTransform="translate(13.877701,13.831199)" />
|
|
249
|
+
<filter
|
|
250
|
+
inkscape:collect="always"
|
|
251
|
+
style="color-interpolation-filters:sRGB"
|
|
252
|
+
id="filter5465-7"
|
|
253
|
+
x="-0.32505909"
|
|
254
|
+
width="1.6501182"
|
|
255
|
+
y="-0.025913246"
|
|
256
|
+
height="1.0518265">
|
|
257
|
+
<feGaussianBlur
|
|
258
|
+
inkscape:collect="always"
|
|
259
|
+
stdDeviation="0.07139097"
|
|
260
|
+
id="feGaussianBlur5467-9" />
|
|
261
|
+
</filter>
|
|
262
|
+
<clipPath
|
|
263
|
+
clipPathUnits="userSpaceOnUse"
|
|
264
|
+
id="clipPath5589">
|
|
265
|
+
<path
|
|
266
|
+
sodipodi:nodetypes="sssssssss"
|
|
267
|
+
inkscape:connector-curvature="0"
|
|
268
|
+
id="path5591"
|
|
269
|
+
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"
|
|
270
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
271
|
+
</clipPath>
|
|
272
|
+
<clipPath
|
|
273
|
+
clipPathUnits="userSpaceOnUse"
|
|
274
|
+
id="clipPath5589-7">
|
|
275
|
+
<path
|
|
276
|
+
sodipodi:nodetypes="sssssssss"
|
|
277
|
+
inkscape:connector-curvature="0"
|
|
278
|
+
id="path5591-5"
|
|
279
|
+
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"
|
|
280
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
281
|
+
</clipPath>
|
|
282
|
+
<filter
|
|
283
|
+
inkscape:collect="always"
|
|
284
|
+
style="color-interpolation-filters:sRGB"
|
|
285
|
+
id="filter5465-7-8"
|
|
286
|
+
x="-0.32505909"
|
|
287
|
+
width="1.6501182"
|
|
288
|
+
y="-0.025913246"
|
|
289
|
+
height="1.0518265">
|
|
290
|
+
<feGaussianBlur
|
|
291
|
+
inkscape:collect="always"
|
|
292
|
+
stdDeviation="0.07139097"
|
|
293
|
+
id="feGaussianBlur5467-9-2" />
|
|
294
|
+
</filter>
|
|
295
|
+
<linearGradient
|
|
296
|
+
inkscape:collect="always"
|
|
297
|
+
xlink:href="#linearGradient5473-6"
|
|
298
|
+
id="linearGradient5671"
|
|
299
|
+
gradientUnits="userSpaceOnUse"
|
|
300
|
+
gradientTransform="translate(13.877701,13.831199)"
|
|
301
|
+
x1="-13.205618"
|
|
302
|
+
y1="26.258963"
|
|
303
|
+
x2="-13.205618"
|
|
304
|
+
y2="39.268726" />
|
|
305
|
+
<filter
|
|
306
|
+
inkscape:collect="always"
|
|
307
|
+
style="color-interpolation-filters:sRGB"
|
|
308
|
+
id="filter5465-7-2"
|
|
309
|
+
x="-0.32505909"
|
|
310
|
+
width="1.6501182"
|
|
311
|
+
y="-0.025913246"
|
|
312
|
+
height="1.0518265">
|
|
313
|
+
<feGaussianBlur
|
|
314
|
+
inkscape:collect="always"
|
|
315
|
+
stdDeviation="0.07139097"
|
|
316
|
+
id="feGaussianBlur5467-9-1" />
|
|
317
|
+
</filter>
|
|
318
|
+
<linearGradient
|
|
319
|
+
inkscape:collect="always"
|
|
320
|
+
xlink:href="#linearGradient5750"
|
|
321
|
+
id="linearGradient5697"
|
|
322
|
+
gradientUnits="userSpaceOnUse"
|
|
323
|
+
gradientTransform="translate(13.877701,13.831199)"
|
|
324
|
+
x1="-13.205618"
|
|
325
|
+
y1="26.258963"
|
|
326
|
+
x2="-13.205618"
|
|
327
|
+
y2="47.30072" />
|
|
328
|
+
<clipPath
|
|
329
|
+
clipPathUnits="userSpaceOnUse"
|
|
330
|
+
id="clipPath5738">
|
|
331
|
+
<path
|
|
332
|
+
sodipodi:nodetypes="sssssssss"
|
|
333
|
+
inkscape:connector-curvature="0"
|
|
334
|
+
id="path5740"
|
|
335
|
+
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"
|
|
336
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
337
|
+
</clipPath>
|
|
338
|
+
<linearGradient
|
|
339
|
+
inkscape:collect="always"
|
|
340
|
+
xlink:href="#linearGradient5830"
|
|
341
|
+
id="linearGradient5832"
|
|
342
|
+
x1="8.3152552"
|
|
343
|
+
y1="8.4801025"
|
|
344
|
+
x2="86.934753"
|
|
345
|
+
y2="8.4801025"
|
|
346
|
+
gradientUnits="userSpaceOnUse"
|
|
347
|
+
gradientTransform="translate(0.06681739,-2.605878)" />
|
|
348
|
+
<linearGradient
|
|
349
|
+
inkscape:collect="always"
|
|
350
|
+
xlink:href="#linearGradient5830"
|
|
351
|
+
id="linearGradient5832-3"
|
|
352
|
+
x1="8.3152552"
|
|
353
|
+
y1="8.4801025"
|
|
354
|
+
x2="86.934753"
|
|
355
|
+
y2="8.4801025"
|
|
356
|
+
gradientUnits="userSpaceOnUse"
|
|
357
|
+
gradientTransform="matrix(1,0,0,-1,0.0668174,193.56682)" />
|
|
358
|
+
<linearGradient
|
|
359
|
+
inkscape:collect="always"
|
|
360
|
+
xlink:href="#linearGradient948"
|
|
361
|
+
id="linearGradient4693"
|
|
362
|
+
gradientUnits="userSpaceOnUse"
|
|
363
|
+
x1="304.2207"
|
|
364
|
+
y1="22.201172"
|
|
365
|
+
x2="303.2103"
|
|
366
|
+
y2="920.09546" />
|
|
367
|
+
</defs>
|
|
368
|
+
<sodipodi:namedview
|
|
369
|
+
id="base"
|
|
370
|
+
pagecolor="#ffffff"
|
|
371
|
+
bordercolor="#666666"
|
|
372
|
+
borderopacity="1.0"
|
|
373
|
+
inkscape:pageopacity="0.0"
|
|
374
|
+
inkscape:pageshadow="2"
|
|
375
|
+
inkscape:zoom="1"
|
|
376
|
+
inkscape:cx="81.881418"
|
|
377
|
+
inkscape:cy="397.7128"
|
|
378
|
+
inkscape:document-units="px"
|
|
379
|
+
inkscape:current-layer="layer2"
|
|
380
|
+
showgrid="false"
|
|
381
|
+
units="px"
|
|
382
|
+
inkscape:window-width="1888"
|
|
383
|
+
inkscape:window-height="1057"
|
|
384
|
+
inkscape:window-x="24"
|
|
385
|
+
inkscape:window-y="-8"
|
|
386
|
+
inkscape:window-maximized="1"
|
|
387
|
+
inkscape:snap-global="true"
|
|
388
|
+
inkscape:lockguides="true"
|
|
389
|
+
inkscape:snap-smooth-nodes="true"
|
|
390
|
+
inkscape:measure-start="0,0"
|
|
391
|
+
inkscape:measure-end="0,0"
|
|
392
|
+
showguides="false"
|
|
393
|
+
inkscape:guide-bbox="true">
|
|
394
|
+
<sodipodi:guide
|
|
395
|
+
position="59.259581,183.29484"
|
|
396
|
+
orientation="1,0"
|
|
397
|
+
id="guide5275"
|
|
398
|
+
inkscape:locked="true" />
|
|
399
|
+
<sodipodi:guide
|
|
400
|
+
position="56.731865,181.79475"
|
|
401
|
+
orientation="0,1"
|
|
402
|
+
id="guide5277"
|
|
403
|
+
inkscape:locked="true" />
|
|
404
|
+
</sodipodi:namedview>
|
|
405
|
+
<metadata
|
|
406
|
+
id="metadata5">
|
|
407
|
+
<rdf:RDF>
|
|
408
|
+
<cc:Work
|
|
409
|
+
rdf:about="">
|
|
410
|
+
<dc:format>image/svg+xml</dc:format>
|
|
411
|
+
<dc:type
|
|
412
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
413
|
+
<dc:title />
|
|
414
|
+
</cc:Work>
|
|
415
|
+
</rdf:RDF>
|
|
416
|
+
</metadata>
|
|
417
|
+
<g
|
|
418
|
+
inkscape:groupmode="layer"
|
|
419
|
+
id="layer2"
|
|
420
|
+
inkscape:label="iPhone X">
|
|
421
|
+
<g
|
|
422
|
+
id="g5754">
|
|
423
|
+
<path
|
|
424
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
425
|
+
d="m 94.798868,44.206385 c 0.249863,0 0.451135,0.200755 0.451135,0.45062 l 0,20.944605 c 0,0.249865 -0.201272,0.451136 -0.451135,0.451136 h -3.474207 c -0.249863,0 -0.451135,-0.201271 -0.451135,-0.451136 l 0,-20.944605 c 0,-0.249865 0.201272,-0.45062 0.451135,-0.45062 z"
|
|
426
|
+
id="rect5351-5-5"
|
|
427
|
+
inkscape:connector-curvature="0"
|
|
428
|
+
sodipodi:nodetypes="sssssssss" />
|
|
429
|
+
<path
|
|
430
|
+
transform="matrix(-1,0,0,1,95.250003,4.5183682)"
|
|
431
|
+
clip-path="url(#clipPath5738)"
|
|
432
|
+
inkscape:connector-curvature="0"
|
|
433
|
+
id="rect5351-6-6-3"
|
|
434
|
+
d="m 0.547026,40.090161 c -0.222752,0 -0.402042,0.17929 -0.402042,0.402042 l 0,20.237673 c 0,0.222752 0.17929,0.402042 0.402042,0.402042 h 0.125057 l 0,-21.041757 z"
|
|
435
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5697);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02358752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5465-7-2);enable-background:accumulate"
|
|
436
|
+
sodipodi:nodetypes="ssssccs" />
|
|
437
|
+
</g>
|
|
438
|
+
<g
|
|
439
|
+
id="g5503"
|
|
440
|
+
transform="translate(0.01350077)">
|
|
441
|
+
<rect
|
|
442
|
+
ry="0.45101735"
|
|
443
|
+
y="25.856596"
|
|
444
|
+
x="-0.013500771"
|
|
445
|
+
height="7.4167299"
|
|
446
|
+
width="4.3765388"
|
|
447
|
+
id="rect5351"
|
|
448
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
449
|
+
<path
|
|
450
|
+
transform="translate(13.8642)"
|
|
451
|
+
clip-path="url(#clipPath5401)"
|
|
452
|
+
inkscape:connector-curvature="0"
|
|
453
|
+
id="rect5351-6"
|
|
454
|
+
d="m -13.330675,26.258962 c -0.222752,0 -0.402042,0.17929 -0.402042,0.402042 v 5.807914 c 0,0.222752 0.17929,0.402042 0.402042,0.402042 h 0.125057 v -6.611998 z"
|
|
455
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5475);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02358752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5465);enable-background:accumulate" />
|
|
456
|
+
</g>
|
|
457
|
+
<g
|
|
458
|
+
id="g5624">
|
|
459
|
+
<path
|
|
460
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
461
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888772 0,40.138637 v 12.912611 c 0,0.249865 0.20127166,0.451136 0.45113526,0.451136 H 3.925342 c 0.2498635,0 0.4511353,-0.201271 0.4511353,-0.451136 V 40.138637 c 0,-0.249865 -0.2012718,-0.45062 -0.4511353,-0.45062 z"
|
|
462
|
+
id="rect5351-5"
|
|
463
|
+
inkscape:connector-curvature="0"
|
|
464
|
+
sodipodi:nodetypes="sssssssss" />
|
|
465
|
+
<path
|
|
466
|
+
clip-path="url(#clipPath5589)"
|
|
467
|
+
inkscape:connector-curvature="0"
|
|
468
|
+
id="rect5351-6-6"
|
|
469
|
+
d="m 0.547026,40.090161 c -0.222752,0 -0.402042,0.17929 -0.402042,0.402042 v 12.205679 c 0,0.222752 0.17929,0.402042 0.402042,0.402042 H 0.672083 V 40.090161 Z"
|
|
470
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5475-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02358752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5465-7);enable-background:accumulate"
|
|
471
|
+
sodipodi:nodetypes="ssssccs" />
|
|
472
|
+
</g>
|
|
473
|
+
<g
|
|
474
|
+
id="g5624-1"
|
|
475
|
+
transform="translate(0,17.37252)">
|
|
476
|
+
<path
|
|
477
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
478
|
+
d="M 0.45113526,39.688017 C 0.20127166,39.688017 0,39.888772 0,40.138637 v 12.912611 c 0,0.249865 0.20127166,0.451136 0.45113526,0.451136 H 3.925342 c 0.2498635,0 0.4511353,-0.201271 0.4511353,-0.451136 V 40.138637 c 0,-0.249865 -0.2012718,-0.45062 -0.4511353,-0.45062 z"
|
|
479
|
+
id="rect5351-5-6"
|
|
480
|
+
inkscape:connector-curvature="0"
|
|
481
|
+
sodipodi:nodetypes="sssssssss" />
|
|
482
|
+
<path
|
|
483
|
+
clip-path="url(#clipPath5589-7)"
|
|
484
|
+
inkscape:connector-curvature="0"
|
|
485
|
+
id="rect5351-6-6-2"
|
|
486
|
+
d="m 0.547026,40.090161 c -0.222752,0 -0.402042,0.17929 -0.402042,0.402042 v 12.205679 c 0,0.222752 0.17929,0.402042 0.402042,0.402042 H 0.672083 V 40.090161 Z"
|
|
487
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5671);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02358752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5465-7-8);enable-background:accumulate"
|
|
488
|
+
sodipodi:nodetypes="ssssccs" />
|
|
489
|
+
</g>
|
|
490
|
+
<path
|
|
491
|
+
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.12873924;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
492
|
+
d="m 14.483352,0.19895427 c -7.7365203,0 -13.96452034,6.22800503 -13.96452034,13.96452273 V 176.79696 c 0,7.73652 6.22800004,13.96504 13.96452034,13.96504 h 28.3006 l 0.57826,-0.81958 h 2.05258 4.42041 2.05207 l 0.57878,0.81958 h 28.30059 c 7.73652,0 13.96453,-6.22852 13.96453,-13.96504 V 14.163477 c 0,-7.7365177 -6.22801,-13.96452273 -13.96453,-13.96452273 z"
|
|
493
|
+
id="rect4852"
|
|
494
|
+
inkscape:connector-curvature="0" />
|
|
495
|
+
<g
|
|
496
|
+
id="g5128">
|
|
497
|
+
<g
|
|
498
|
+
transform="translate(-244.34124)"
|
|
499
|
+
id="g5116">
|
|
500
|
+
<path
|
|
501
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#7d7e7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
502
|
+
d="m 245.17789,19.826181 h 1.10225 v -1.302763 h -1.10225 z"
|
|
503
|
+
id="path5106"
|
|
504
|
+
inkscape:connector-curvature="0" />
|
|
505
|
+
<path
|
|
506
|
+
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:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
507
|
+
d="m 245.17789,171.20092 h 1.10225 V 19.826181 h -1.10225 z"
|
|
508
|
+
id="path5104"
|
|
509
|
+
inkscape:connector-curvature="0" />
|
|
510
|
+
<path
|
|
511
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#7d7e7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
512
|
+
d="m 245.17789,172.5042 h 1.10225 v -1.30328 h -1.10225 z"
|
|
513
|
+
id="path5102"
|
|
514
|
+
inkscape:connector-curvature="0" />
|
|
515
|
+
<path
|
|
516
|
+
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:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
517
|
+
d="m 338.7546,172.5042 h -1.10225 v 4.35943 c 0,7.0332 -5.66215,12.69535 -12.69535,12.69535 h -65.98151 c -7.0332,0 -12.69535,-5.66215 -12.69535,-12.69535 v -4.35943 h -1.10225 v 3.78272 c 0,7.85245 6.32187,14.17433 14.17432,14.17433 h 65.22807 c 7.85246,0 14.17432,-6.32188 14.17432,-14.17433 z"
|
|
518
|
+
id="path5100"
|
|
519
|
+
inkscape:connector-curvature="0" />
|
|
520
|
+
<path
|
|
521
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#7d7e7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
522
|
+
d="m 338.7546,171.20092 h -1.10225 v 1.30328 h 1.10225 z"
|
|
523
|
+
id="path5098"
|
|
524
|
+
inkscape:connector-curvature="0" />
|
|
525
|
+
<path
|
|
526
|
+
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:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
527
|
+
d="m 338.7546,19.826181 h -1.10225 V 171.20092 h 1.10225 z"
|
|
528
|
+
id="path5096"
|
|
529
|
+
inkscape:connector-curvature="0" />
|
|
530
|
+
<path
|
|
531
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#7d7e7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
532
|
+
d="m 338.7546,18.523418 h -1.10225 v 1.302763 h 1.10225 z"
|
|
533
|
+
id="path5094"
|
|
534
|
+
inkscape:connector-curvature="0" />
|
|
535
|
+
<path
|
|
536
|
+
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:0.33773944;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
537
|
+
d="m 259.35221,0.59944663 c -7.85245,0 -14.17432,6.32187387 -14.17432,14.17432937 v 3.749642 h 1.10225 v -4.17649 c 0,-7.0331973 5.66215,-12.6948324 12.69535,-12.6948324 H 324.957 c 7.0332,0 12.69535,5.6616351 12.69535,12.6948324 v 4.17649 h 1.10225 v -3.749642 c 0,-7.8524555 -6.32186,-14.17432937 -14.17432,-14.17432937 z"
|
|
538
|
+
id="rect4873"
|
|
539
|
+
inkscape:connector-curvature="0" />
|
|
540
|
+
</g>
|
|
541
|
+
<path
|
|
542
|
+
inkscape:connector-curvature="0"
|
|
543
|
+
clip-path="url(#clipPath4960)"
|
|
544
|
+
id="path4878"
|
|
545
|
+
transform="scale(0.26458334)"
|
|
546
|
+
d="m 37.923828,11.580078 c -6.586783,-0.167847 -19.140624,1.825893 -32.0312499,16.3125 -18.7500001,21.071427 -1.9648437,8.392578 -1.9648437,8.392578 0,0 11.5184146,-17.856306 27.5898436,-20.177734 16.071431,-2.321429 11.160156,-3.929688 11.160156,-3.929688 0,0 -1.759914,-0.521362 -4.753906,-0.597656 z m 284.152342,0 c -2.99399,0.0763 -4.7539,0.597656 -4.7539,0.597656 0,0 -4.91128,1.608257 11.16015,3.929688 16.07143,2.321431 27.58985,20.177734 27.58985,20.177734 0,0 16.78515,12.67885 -1.96485,-8.392578 -12.89062,-14.48661 -25.44446,-16.480349 -32.03125,-16.3125 z M -2.4394531,681.94141 c -1.4382784,-0.17232 -0.4570319,2.28878 8.3320312,12.16601 18.7500009,21.07143 36.7851559,15.71485 36.7851559,15.71485 0,0 4.911277,-1.60827 -11.160156,-3.92969 -16.071431,-2.32146 -27.5898436,-20.17774 -27.5898436,-20.17774 0,0 -4.73713871,-3.57814 -6.3671875,-3.77343 z m 364.8789031,0 c -1.63004,0.19529 -6.36718,3.77343 -6.36718,3.77343 0,0 -11.51843,17.85628 -27.58985,20.17774 -16.07146,2.32142 -11.16015,3.92969 -11.16015,3.92969 0,0 18.03514,5.35658 36.78515,-15.71485 8.78907,-9.87723 9.77031,-12.33833 8.33203,-12.16601 z"
|
|
547
|
+
style="fill:#434343;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4996)" />
|
|
548
|
+
</g>
|
|
549
|
+
<g
|
|
550
|
+
id="g5259"
|
|
551
|
+
transform="translate(-0.11323174)">
|
|
552
|
+
<path
|
|
553
|
+
transform="scale(0.26458334)"
|
|
554
|
+
id="rect5132"
|
|
555
|
+
d="m 325.58008,15.363281 c -1.17457,-0.116312 -0.62011,1.054663 2.01562,3.496094 8.69619,8.055118 14.09571,19.714101 14.09571,32.691406 V 361.12305 670.69531 c 0,12.97731 -5.39952,24.63629 -14.09571,32.69141 -2.63573,2.44142 -3.19019,3.6125 -2.01562,3.49609 0.70474,-0.0698 2.03219,-0.60282 3.9043,-1.60156 12.70949,-6.7804 20.08984,-21.40851 20.08984,-36.94531 V 361.12305 53.910156 c 0,-15.536781 -7.38036,-30.164944 -20.08984,-36.945312 -1.87211,-0.998744 -3.19956,-1.531776 -3.9043,-1.601563 z"
|
|
556
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5226);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.68900537;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
557
|
+
inkscape:connector-curvature="0" />
|
|
558
|
+
<path
|
|
559
|
+
id="rect5132-5"
|
|
560
|
+
d="m 9.3334021,4.0648688 c 0.310772,-0.03077 0.164071,0.279046 -0.533299,0.925008 -2.300868,2.13125 -3.729491,5.2160232 -3.729491,8.6496012 V 95.547144 177.4548 c 0,3.43358 1.428623,6.51836 3.729491,8.64961 0.69737,0.64596 0.844071,0.9558 0.533299,0.925 -0.186462,-0.0185 -0.537684,-0.15949 -1.033013,-0.42374 -3.362719,-1.79398 -5.315437,-5.66434 -5.315437,-9.77512 V 95.547144 14.26373 c 0,-4.110774 1.952721,-7.9811422 5.315437,-9.7751142 0.495329,-0.264251 0.846551,-0.405283 1.033013,-0.423747 z"
|
|
561
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5226-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.76979935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
562
|
+
inkscape:connector-curvature="0" />
|
|
563
|
+
</g>
|
|
564
|
+
<g
|
|
565
|
+
id="g5823">
|
|
566
|
+
<rect
|
|
567
|
+
ry="0.72051716"
|
|
568
|
+
y="7.2618647"
|
|
569
|
+
x="42.02623"
|
|
570
|
+
height="1.4410343"
|
|
571
|
+
width="11.36291"
|
|
572
|
+
id="rect5261"
|
|
573
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#1e1e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458335;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
574
|
+
<circle
|
|
575
|
+
r="1.3446997"
|
|
576
|
+
cy="7.8897238"
|
|
577
|
+
cx="57.914883"
|
|
578
|
+
id="path5263"
|
|
579
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#2b2b2b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
580
|
+
<circle
|
|
581
|
+
r="1.0774302"
|
|
582
|
+
cy="7.8897238"
|
|
583
|
+
cx="57.914883"
|
|
584
|
+
id="path5265"
|
|
585
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
586
|
+
<circle
|
|
587
|
+
r="0.82091707"
|
|
588
|
+
cy="7.8897238"
|
|
589
|
+
cx="57.914883"
|
|
590
|
+
id="path5267"
|
|
591
|
+
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.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
|
592
|
+
<path
|
|
593
|
+
inkscape:connector-curvature="0"
|
|
594
|
+
id="path5271"
|
|
595
|
+
d="m 57.349775,7.3405086 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"
|
|
596
|
+
style="fill:#235a91;fill-opacity:0.55607474;fill-rule:evenodd;stroke:none;stroke-width:0.02645833;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5343)" />
|
|
597
|
+
<path
|
|
598
|
+
inkscape:connector-curvature="0"
|
|
599
|
+
id="path5273"
|
|
600
|
+
d="M 58.048878,7.2382411 C 57.895325,7.285488 57.865795,7.5335349 57.8717,7.6752759 57.8776,7.8170171 58.078406,8.1890875 58.320547,8.1064052 58.562689,8.0237229 58.60403,7.716617 58.503631,7.5099113 58.40323,7.3032056 58.220148,7.1555588 58.048878,7.2382411 Z"
|
|
601
|
+
style="fill:#235a91;fill-rule:evenodd;stroke:none;stroke-width:0.02645833;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.55607474;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5347)" />
|
|
602
|
+
<path
|
|
603
|
+
id="path5267-7"
|
|
604
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#0f0f0f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.02645833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
605
|
+
sodipodi:type="arc"
|
|
606
|
+
sodipodi:cx="39.183693"
|
|
607
|
+
sodipodi:cy="8.013669"
|
|
608
|
+
sodipodi:rx="1.0571522"
|
|
609
|
+
sodipodi:ry="1.0571522"
|
|
610
|
+
sodipodi:start="0"
|
|
611
|
+
sodipodi:end="6.2684653"
|
|
612
|
+
d="m 40.240845,8.013669 a 1.0571522,1.0571522 0 0 1 -1.053262,1.057145 1.0571522,1.0571522 0 0 1 -1.061014,-1.0493644 1.0571522,1.0571522 0 0 1 1.045453,-1.0648683 1.0571522,1.0571522 0 0 1 1.068709,1.041527 l -1.057038,0.015561 z" />
|
|
613
|
+
<path
|
|
614
|
+
id="path5267-7-9"
|
|
615
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#101010;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03099457;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
616
|
+
sodipodi:type="arc"
|
|
617
|
+
sodipodi:cx="32.651237"
|
|
618
|
+
sodipodi:cy="8.0384884"
|
|
619
|
+
sodipodi:rx="1.5945871"
|
|
620
|
+
sodipodi:ry="1.5692955"
|
|
621
|
+
sodipodi:start="0"
|
|
622
|
+
sodipodi:end="6.2684653"
|
|
623
|
+
d="m 34.245825,8.0384884 a 1.5945871,1.5692955 0 0 1 -1.588719,1.5692849 1.5945871,1.5692955 0 0 1 -1.600412,-1.557735 1.5945871,1.5692955 0 0 1 1.57694,-1.5807498 1.5945871,1.5692955 0 0 1 1.612018,1.5461007 l -1.594415,0.023099 z" />
|
|
624
|
+
</g>
|
|
625
|
+
<path
|
|
626
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5832);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.08883588;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
627
|
+
d="m 14.624068,2.5772683 c -2.29857,0 -4.436824,0.6574018 -6.2419958,1.7921386 V 5.8742247 C 10.10245,4.7457624 12.162112,4.0888038 14.382223,4.0888038 h 26.411826 13.795539 26.411825 c 2.220111,0 4.279774,0.6569586 6.000153,1.7854209 V 4.3694069 C 85.196393,3.2346701 83.058139,2.5772683 80.759568,2.5772683 H 54.589588 40.794049 Z"
|
|
628
|
+
id="rect5756"
|
|
629
|
+
inkscape:connector-curvature="0" />
|
|
630
|
+
<path
|
|
631
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient5832-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.08883588;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
632
|
+
d="m 14.624068,188.38368 c -2.29857,0 -4.436824,-0.65741 -6.2419958,-1.79214 v -1.50482 c 1.7203778,1.12846 3.7800398,1.78542 6.0001508,1.78542 H 40.79405 54.589589 81.001412 c 2.220111,0 4.279774,-0.65696 6.000153,-1.78542 v 1.50482 c -1.805173,1.13473 -3.943427,1.79214 -6.241998,1.79214 H 54.589589 40.79405 Z"
|
|
633
|
+
id="rect5756-4"
|
|
634
|
+
inkscape:connector-curvature="0" />
|
|
635
|
+
<path
|
|
636
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:url(#linearGradient4693);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66800001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.95294118;marker:none;enable-background:accumulate"
|
|
637
|
+
d="M 55.779297 22.201172 C 38.011217 22.201172 23.707031 36.505358 23.707031 54.273438 L 23.707031 667.46875 C 23.707031 685.23683 38.011217 699.54102 55.779297 699.54102 L 304.2207 699.54102 C 321.98878 699.54102 336.29297 685.23683 336.29297 667.46875 L 336.29297 54.273438 C 336.29297 36.505358 321.98878 22.201172 304.2207 22.201172 L 272.84766 22.201172 A 5.3578527 5.3578527 0 0 0 267.49023 27.558594 L 267.49023 30.025391 C 267.49023 39.678914 259.71993 47.451172 250.06641 47.451172 L 109.93359 47.451172 C 100.28007 47.451172 92.509766 39.678914 92.509766 30.025391 L 92.509766 27.558594 A 5.3578528 5.3578528 0 0 0 87.152344 22.201172 L 55.779297 22.201172 z "
|
|
638
|
+
id="rect5872"
|
|
639
|
+
transform="scale(0.26458334)" />
|
|
640
|
+
<path
|
|
641
|
+
id="path5267-7-7"
|
|
642
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;vector-effect:none;fill:#0f0f0f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.05308891;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
|
643
|
+
sodipodi:type="arc"
|
|
644
|
+
sodipodi:cx="64.264961"
|
|
645
|
+
sodipodi:cy="7.8693609"
|
|
646
|
+
sodipodi:rx="2.1329119"
|
|
647
|
+
sodipodi:ry="2.1095259"
|
|
648
|
+
sodipodi:start="0"
|
|
649
|
+
sodipodi:end="6.2684653"
|
|
650
|
+
d="M 66.397873,7.8693609 A 2.1329119,2.1095259 0 0 1 64.27281,9.9788726 2.1329119,2.1095259 0 0 1 62.132107,7.8848869 2.1329119,2.1095259 0 0 1 64.241414,5.7599636 2.1329119,2.1095259 0 0 1 66.397642,7.8383098 l -2.132681,0.031051 z" />
|
|
651
|
+
</g>
|
|
652
|
+
</svg>
|