Merge branch 'develop'
3
.github/workflows/deploy_pietervdvn.yml
vendored
|
@ -3,7 +3,8 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- develop
|
||||
- feature/svelte
|
||||
- feature/*
|
||||
- theme/*
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
tasks:
|
||||
- init: npm run init
|
||||
command: npm run start
|
||||
name: Initialize and start MapComplete
|
||||
- name: Generate Layeroverview
|
||||
command: npm run generate:layeroverview
|
||||
|
||||
ports:
|
||||
- name: MapComplete Website
|
||||
|
@ -11,4 +14,7 @@ vscode:
|
|||
extensions:
|
||||
- "esbenp.prettier-vscode"
|
||||
- "eamodio.gitlens"
|
||||
- "GitHub.vscode-pull-request-github"
|
||||
- "github.vscode-pull-request-github"
|
||||
- "svelte.svelte-vscode"
|
||||
- "bradlc.vscode-tailwindcss"
|
||||
- "editorconfig.editorconfig"
|
||||
|
|
7
.vscode/extensions.json
vendored
|
@ -2,8 +2,9 @@
|
|||
"recommendations": [
|
||||
"esbenp.prettier-vscode",
|
||||
"eamodio.gitlens",
|
||||
"GitHub.vscode-pull-request-github",
|
||||
"github.vscode-pull-request-github",
|
||||
"svelte.svelte-vscode",
|
||||
"bradlc.vscode-tailwindcss"
|
||||
"bradlc.vscode-tailwindcss",
|
||||
"editorconfig.editorconfig"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@ export class ElementStorage {
|
|||
return es
|
||||
}
|
||||
|
||||
getEventSourceById(elementId): UIEventSource<any> {
|
||||
getEventSourceById(elementId): UIEventSource<any> | undefined {
|
||||
if (elementId === undefined) {
|
||||
return undefined
|
||||
}
|
||||
|
|
|
@ -163,6 +163,11 @@ export abstract class OsmObject {
|
|||
})
|
||||
}
|
||||
|
||||
public static DownloadHistory(id: NodeId): UIEventSource<OsmNode[]>
|
||||
public static DownloadHistory(id: WayId): UIEventSource<OsmWay[]>
|
||||
public static DownloadHistory(id: RelationId): UIEventSource<OsmRelation[]>
|
||||
|
||||
public static DownloadHistory(id: OsmId): UIEventSource<OsmObject[]>
|
||||
public static DownloadHistory(id: string): UIEventSource<OsmObject[]> {
|
||||
if (OsmObject.historyCache.has(id)) {
|
||||
return OsmObject.historyCache.get(id)
|
||||
|
@ -180,6 +185,7 @@ export abstract class OsmObject {
|
|||
const osmObjects: OsmObject[] = []
|
||||
for (const element of elements) {
|
||||
let osmObject: OsmObject = null
|
||||
element.nodes = []
|
||||
switch (type) {
|
||||
case "node":
|
||||
osmObject = new OsmNode(idN)
|
||||
|
|
|
@ -69,7 +69,7 @@ export class ReferencingWaysMetaTagger extends SimpleMetaTagger {
|
|||
{
|
||||
keys: ["_referencing_ways"],
|
||||
isLazy: true,
|
||||
doc: "_referencing_ways contains - for a node - which ways use this this node as point in their geometry. ",
|
||||
doc: "_referencing_ways contains - for a node - which ways use this this node as point in their geometry. If the preset has 'snapToLayer' defined, the icon will be calculated based on the preset tags with `_referencing_ways=[\"way/-1\"]` added.",
|
||||
},
|
||||
(feature, _, __, state) => {
|
||||
if (!ReferencingWaysMetaTagger.enabled) {
|
||||
|
@ -80,20 +80,25 @@ export class ReferencingWaysMetaTagger extends SimpleMetaTagger {
|
|||
if (!id.startsWith("node/")) {
|
||||
return false
|
||||
}
|
||||
console.trace("Downloading referencing ways for", feature.properties.id)
|
||||
OsmObject.DownloadReferencingWays(id).then((referencingWays) => {
|
||||
const currentTagsSource = state.allElements?.getEventSourceById(id) ?? []
|
||||
const wayIds = referencingWays.map((w) => "way/" + w.id)
|
||||
wayIds.sort()
|
||||
const wayIdsStr = wayIds.join(";")
|
||||
if (
|
||||
wayIdsStr !== "" &&
|
||||
currentTagsSource.data["_referencing_ways"] !== wayIdsStr
|
||||
) {
|
||||
currentTagsSource.data["_referencing_ways"] = wayIdsStr
|
||||
currentTagsSource.ping()
|
||||
|
||||
const currentTagsSource = state.allElements?.getEventSourceById(id)
|
||||
if (currentTagsSource === undefined) {
|
||||
return
|
||||
}
|
||||
Utils.AddLazyPropertyAsync(
|
||||
currentTagsSource.data,
|
||||
"_referencing_ways",
|
||||
async () => {
|
||||
const referencingWays = await OsmObject.DownloadReferencingWays(id)
|
||||
const wayIds = referencingWays.map((w) => "way/" + w.id)
|
||||
wayIds.sort()
|
||||
const wayIdsStr = wayIds.join(";")
|
||||
if (wayIdsStr !== "" && currentTagsSource.data[""] !== wayIdsStr) {
|
||||
currentTagsSource.data["_referencing_ways"] = wayIdsStr
|
||||
currentTagsSource.ping()
|
||||
}
|
||||
}
|
||||
})
|
||||
)
|
||||
|
||||
return true
|
||||
}
|
||||
|
@ -282,16 +287,9 @@ export default class SimpleMetaTaggers {
|
|||
},
|
||||
})
|
||||
|
||||
Object.defineProperty(feature.properties, "_surface:ha", {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
get: () => {
|
||||
const sqMeters = GeoOperations.surfaceAreaInSqMeters(feature)
|
||||
const sqMetersHa = "" + Math.floor(sqMeters / 1000) / 10
|
||||
delete feature.properties["_surface:ha"]
|
||||
feature.properties["_surface:ha"] = sqMetersHa
|
||||
return sqMetersHa
|
||||
},
|
||||
Utils.AddLazyProperty(feature.properties, "_surface:ha", () => {
|
||||
const sqMeters = GeoOperations.surfaceAreaInSqMeters(feature)
|
||||
return "" + Math.floor(sqMeters / 1000) / 10
|
||||
})
|
||||
|
||||
return true
|
||||
|
@ -443,8 +441,6 @@ export default class SimpleMetaTaggers {
|
|||
}
|
||||
},
|
||||
})
|
||||
|
||||
const tagsSource = state.allElements.getEventSourceById(feature.properties.id)
|
||||
}
|
||||
)
|
||||
private static directionSimplified = new SimpleMetaTagger(
|
||||
|
|
|
@ -25,6 +25,10 @@ export class RegexTag extends TagsFilter {
|
|||
if (typeof possibleRegex === "string") {
|
||||
return fromTag === possibleRegex
|
||||
}
|
||||
if (typeof fromTag.match !== "function") {
|
||||
console.error("Error: fromTag is not a regex: ", fromTag, possibleRegex)
|
||||
throw "Error: fromTag is not a regex: " + fromTag + possibleRegex
|
||||
}
|
||||
return fromTag.match(possibleRegex) !== null
|
||||
}
|
||||
|
||||
|
|
|
@ -303,8 +303,11 @@ export interface LayerConfigJson {
|
|||
*/
|
||||
tagRenderings?: (
|
||||
| string
|
||||
| { builtin: string | string[]; override: Partial<QuestionableTagRenderingConfigJson> }
|
||||
| { id: string; builtin: string[]; override: Partial<QuestionableTagRenderingConfigJson> }
|
||||
| {
|
||||
id?: string
|
||||
builtin: string | string[]
|
||||
override: Partial<QuestionableTagRenderingConfigJson>
|
||||
}
|
||||
| QuestionableTagRenderingConfigJson
|
||||
| (RewritableConfigJson<
|
||||
(
|
||||
|
|
|
@ -5,7 +5,7 @@ import { TagUtils } from "../../Logic/Tags/TagUtils"
|
|||
import { Utils } from "../../Utils"
|
||||
import Svg from "../../Svg"
|
||||
import WithContextLoader from "./WithContextLoader"
|
||||
import { UIEventSource } from "../../Logic/UIEventSource"
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
||||
import BaseUIElement from "../../UI/BaseUIElement"
|
||||
import { FixedUiElement } from "../../UI/Base/FixedUiElement"
|
||||
import Img from "../../UI/Base/Img"
|
||||
|
@ -164,7 +164,7 @@ export default class PointRenderingConfig extends WithContextLoader {
|
|||
return PointRenderingConfig.FromHtmlMulti(htmlDefs, rotation, false, defaultPin)
|
||||
}
|
||||
|
||||
public GetSimpleIcon(tags: UIEventSource<any>): BaseUIElement {
|
||||
public GetSimpleIcon(tags: Store<any>): BaseUIElement {
|
||||
const self = this
|
||||
if (this.icon === undefined) {
|
||||
return undefined
|
||||
|
@ -175,7 +175,7 @@ export default class PointRenderingConfig extends WithContextLoader {
|
|||
}
|
||||
|
||||
public GenerateLeafletStyle(
|
||||
tags: UIEventSource<any>,
|
||||
tags: Store<any>,
|
||||
clickable: boolean,
|
||||
options?: {
|
||||
noSize?: false | boolean
|
||||
|
@ -272,7 +272,7 @@ export default class PointRenderingConfig extends WithContextLoader {
|
|||
}
|
||||
}
|
||||
|
||||
private GetBadges(tags: UIEventSource<any>): BaseUIElement {
|
||||
private GetBadges(tags: Store<any>): BaseUIElement {
|
||||
if (this.iconBadges.length === 0) {
|
||||
return undefined
|
||||
}
|
||||
|
@ -304,7 +304,7 @@ export default class PointRenderingConfig extends WithContextLoader {
|
|||
).SetClass("absolute bottom-0 right-1/3 h-1/2 w-0")
|
||||
}
|
||||
|
||||
private GetLabel(tags: UIEventSource<any>): BaseUIElement {
|
||||
private GetLabel(tags: Store<any>): BaseUIElement {
|
||||
if (this.label === undefined) {
|
||||
return undefined
|
||||
}
|
||||
|
|
|
@ -335,6 +335,10 @@ export default class TagRenderingConfig {
|
|||
if (allKeys.length > 1 && !allHaveIfNot) {
|
||||
throw `${context}: A multi-answer is defined, which generates values over multiple keys. Please define ifnot-tags too on every mapping`
|
||||
}
|
||||
|
||||
if (allKeys.length > 1 && this.freeform?.key !== undefined) {
|
||||
throw `${context}: A multi-answer is defined, which generates values over multiple keys. This is incompatible with having a freeform key`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,13 +24,17 @@ export default class AddNewMarker extends Combine {
|
|||
for (const preset of filteredLayer.layerDef.presets) {
|
||||
const tags = TagUtils.KVtoProperties(preset.tags)
|
||||
const icon = layer.mapRendering[0]
|
||||
.GenerateLeafletStyle(new UIEventSource<any>(tags), false)
|
||||
.GenerateLeafletStyle(new UIEventSource<any>(tags), false, {
|
||||
noSize: true,
|
||||
})
|
||||
.html.SetClass("block relative")
|
||||
.SetStyle("width: 42px; height: 42px;")
|
||||
icons.push(icon)
|
||||
if (last === undefined) {
|
||||
last = layer.mapRendering[0]
|
||||
.GenerateLeafletStyle(new UIEventSource<any>(tags), false)
|
||||
.GenerateLeafletStyle(new UIEventSource<any>(tags), false, {
|
||||
noSize: true,
|
||||
})
|
||||
.html.SetClass("block relative")
|
||||
.SetStyle("width: 42px; height: 42px;")
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Asks to add a feature at the last clicked location, at least if zoom is sufficient
|
||||
*/
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
||||
import { ImmutableStore, Store, UIEventSource } from "../../Logic/UIEventSource"
|
||||
import Svg from "../../Svg"
|
||||
import { SubtleButton } from "../Base/SubtleButton"
|
||||
import Combine from "../Base/Combine"
|
||||
|
@ -26,7 +26,7 @@ import BaseLayer from "../../Models/BaseLayer"
|
|||
import Loading from "../Base/Loading"
|
||||
import Hash from "../../Logic/Web/Hash"
|
||||
import { GlobalFilter } from "../../Logic/State/MapState"
|
||||
import { WayId } from "../../Models/OsmFeature"
|
||||
import { OsmTags, WayId } from "../../Models/OsmFeature"
|
||||
import { Tag } from "../../Logic/Tags/Tag"
|
||||
import { LoginToggle } from "../Popup/LoginButton"
|
||||
|
||||
|
@ -286,9 +286,16 @@ export default class SimpleAddUI extends LoginToggle {
|
|||
const presets = layer.layerDef.presets
|
||||
for (const preset of presets) {
|
||||
const tags = TagUtils.KVtoProperties(preset.tags ?? [])
|
||||
const isSnapping = preset.preciseInput.snapToLayers?.length > 0
|
||||
let icon: () => BaseUIElement = () =>
|
||||
layer.layerDef.mapRendering[0]
|
||||
.GenerateLeafletStyle(new UIEventSource<any>(tags), false)
|
||||
.GenerateLeafletStyle(
|
||||
new ImmutableStore<OsmTags>(
|
||||
isSnapping ? { _referencing_ways: '["way/-1"]', ...tags } : tags
|
||||
),
|
||||
false,
|
||||
{ noSize: true }
|
||||
)
|
||||
.html.SetClass("w-12 h-12 block relative")
|
||||
const presetInfo: PresetInfo = {
|
||||
layerToAddTo: layer,
|
||||
|
|
|
@ -176,13 +176,13 @@ export default class LocationInput
|
|||
loc.lat,
|
||||
])
|
||||
if (min === undefined) {
|
||||
min = nearestPointOnLine
|
||||
min = { ...nearestPointOnLine }
|
||||
matchedWay = feature
|
||||
continue
|
||||
}
|
||||
|
||||
if (min.properties.dist > nearestPointOnLine.properties.dist) {
|
||||
min = nearestPointOnLine
|
||||
min = { ...nearestPointOnLine }
|
||||
matchedWay = feature
|
||||
}
|
||||
} catch (e) {
|
||||
|
@ -208,6 +208,10 @@ export default class LocationInput
|
|||
}
|
||||
}
|
||||
min.properties = options?.snappedPointTags ?? min.properties
|
||||
min.properties = {
|
||||
...min.properties,
|
||||
_referencing_ways: JSON.stringify([matchedWay.properties.id]),
|
||||
}
|
||||
self.snappedOnto.setData(<any>matchedWay)
|
||||
return min
|
||||
},
|
||||
|
|
57
Utils.ts
|
@ -300,6 +300,49 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
|
|||
return str.substr(0, l - 3) + "..."
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a property to the given object, but the value will _only_ be calculated when it is actually requested
|
||||
* @param object
|
||||
* @param name
|
||||
* @param init
|
||||
* @constructor
|
||||
*/
|
||||
public static AddLazyProperty(object: any, name: string, init: () => any) {
|
||||
Object.defineProperty(object, name, {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
get: () => {
|
||||
delete object[name]
|
||||
object[name] = init()
|
||||
return object[name]
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a property to the given object, but the value will _only_ be calculated when it is actually requested
|
||||
*/
|
||||
public static AddLazyPropertyAsync(
|
||||
object: any,
|
||||
name: string,
|
||||
init: () => Promise<any>,
|
||||
whenDone?: () => void
|
||||
) {
|
||||
Object.defineProperty(object, name, {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
get: () => {
|
||||
init().then((r) => {
|
||||
delete object[name]
|
||||
object[name] = r
|
||||
if (whenDone) {
|
||||
whenDone()
|
||||
}
|
||||
})
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
public static FixedLength(str: string, l: number) {
|
||||
str = Utils.EllipsesAfter(str, l)
|
||||
while (str.length < l) {
|
||||
|
@ -1281,13 +1324,6 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
|
|||
return d
|
||||
}
|
||||
|
||||
private static colorDiff(
|
||||
c0: { r: number; g: number; b: number },
|
||||
c1: { r: number; g: number; b: number }
|
||||
) {
|
||||
return Math.abs(c0.r - c1.r) + Math.abs(c0.g - c1.g) + Math.abs(c0.b - c1.b)
|
||||
}
|
||||
|
||||
static toIdRecord<T extends { id: string }>(ts: T[]): Record<string, T> {
|
||||
const result: Record<string, T> = {}
|
||||
for (const t of ts) {
|
||||
|
@ -1317,4 +1353,11 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
|
|||
// If the element has a parent, repeat the process for the parent element
|
||||
return Utils.findParentWithScrolling(element.parentElement)
|
||||
}
|
||||
|
||||
private static colorDiff(
|
||||
c0: { r: number; g: number; b: number },
|
||||
c1: { r: number; g: number; b: number }
|
||||
) {
|
||||
return Math.abs(c0.r - c1.r) + Math.abs(c0.g - c1.g) + Math.abs(c0.b - c1.b)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,9 +31,6 @@
|
|||
},
|
||||
{
|
||||
"id": "isOpen",
|
||||
"labels": [
|
||||
"defaults"
|
||||
],
|
||||
"#": "Shows a coloured clock if opening hours are parsed. Uses the metatagging, suitable to use as a (badged) overlay",
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -128,4 +125,4 @@
|
|||
}
|
||||
],
|
||||
"mapRendering": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,6 +44,9 @@
|
|||
"tagRenderings": [
|
||||
"images",
|
||||
{
|
||||
"labels": [
|
||||
"map"
|
||||
],
|
||||
"question": {
|
||||
"en": "On which data is this map based?",
|
||||
"nl": "Op welke data is deze kaart gebaseerd?",
|
||||
|
@ -87,6 +90,9 @@
|
|||
},
|
||||
{
|
||||
"id": "map-attribution",
|
||||
"labels": [
|
||||
"map"
|
||||
],
|
||||
"question": {
|
||||
"en": "Is the OpenStreetMap-attribution given?",
|
||||
"nl": "Is de attributie voor OpenStreetMap aanwezig?",
|
||||
|
|
|
@ -164,6 +164,17 @@
|
|||
"https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/plastic_packaging.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "printer_cartridges.svg",
|
||||
"license": "CC-BY",
|
||||
"authors": [
|
||||
"Noun Project",
|
||||
"Zach Bogart"
|
||||
],
|
||||
"sources": [
|
||||
"https://thenounproject.com/icon/ink-4963274/"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "recycling-14.svg",
|
||||
"license": "CC0",
|
||||
|
@ -205,4 +216,4 @@
|
|||
"https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/small_electrical_appliances.svg"
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
|
|
8
assets/layers/recycling/printer_cartridges.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="700pt" height="700pt" version="1.1" viewBox="0 0 700 700" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g>
|
||||
<path d="m258.99 52.527c0.35938-5.1562-2.0781-10.141-6.4102-13.031-4.543-3.0312-10.398-3.2422-15.148-0.55469-15.547 8.7969-34.496 9.0898-50.309 0.77344-1.25-0.65625-2.5039-1.3164-3.7539-1.9727-24.516-12.891-53.91-12.441-78.02 1.1992-4.8711 2.7539-7.6992 8.0586-7.3125 13.602v464.05c0 3.9805 1.5859 7.8047 4.4023 10.625 2.8164 2.8164 6.6367 4.3945 10.625 4.3945h130.91c3.9883 0 7.8047-1.5781 10.625-4.3945 2.8164-2.8164 4.4023-6.6406 4.4023-10.625v-464.07zm-80.477 320.7c-11.406 0-20.668 9.2578-20.668 20.664s9.2617 20.668 20.668 20.668 20.668-9.2617 20.668-20.668-9.2617-20.664-20.668-20.664zm0 10.266c5.7383 0 10.398 4.6602 10.398 10.398 0 5.7461-4.6602 10.406-10.398 10.406s-10.398-4.6602-10.398-10.406c0-5.7383 4.6602-10.398 10.398-10.398zm13.02-206.28c-2.3477-5.0664-7.4258-8.3164-13.02-8.3164s-10.672 3.2461-13.02 8.3164c-7.4297 15.707-20.859 47.234-20.859 63.129 0 18.699 15.18 33.879 33.879 33.879s33.879-15.18 33.879-33.879c0-15.895-13.43-47.422-20.859-63.129zm-8.7422 4.082c-0.76172-1.6797-2.4375-2.7539-4.2773-2.7539-1.8438 0-3.5156 1.0742-4.2773 2.7539-6.957 14.695-19.957 44.145-19.957 59.047 0 13.371 10.859 24.238 24.238 24.238s24.238-10.863 24.238-24.238c0-14.902-13.004-44.352-19.957-59.047z" fill-rule="evenodd"/>
|
||||
<path d="m430.48 52.527c0.35938-5.1562-2.0781-10.141-6.4102-13.031-4.543-3.0312-10.398-3.2422-15.148-0.55469-15.547 8.7969-34.496 9.0898-50.309 0.77344-1.25-0.65625-2.5039-1.3164-3.7539-1.9727-24.516-12.891-53.91-12.441-78.02 1.1992-4.8711 2.7539-7.6992 8.0586-7.3125 13.602v464.05c0 3.9805 1.5859 7.8047 4.4023 10.625 2.8164 2.8164 6.6367 4.3945 10.625 4.3945h130.91c3.9883 0 7.8047-1.5781 10.625-4.3945 2.8164-2.8164 4.4023-6.6406 4.4023-10.625v-464.07zm-105.32 340.89c-11.02 2.9531-17.566 14.293-14.617 25.312 2.9531 11.016 14.297 17.566 25.312 14.617 11.02-2.957 17.566-14.297 14.617-25.316-2.9531-11.016-14.297-17.566-25.312-14.609zm2.6562 9.9102c5.543-1.4844 11.258 1.8125 12.738 7.3594 1.4844 5.543-1.8086 11.25-7.3516 12.738-5.5508 1.4844-11.258-1.8086-12.738-7.3594-1.4883-5.543 1.8086-11.25 7.3516-12.738zm61.645-23.594c2.9531-11.016-3.5938-22.359-14.617-25.312-11.016-2.9531-22.359 3.5938-25.312 14.617-2.9531 11.02 3.5938 22.359 14.617 25.312 11.016 2.9531 22.359-3.5938 25.312-14.617zm-9.918-2.6562c-1.4844 5.543-7.1914 8.8438-12.738 7.3516-5.543-1.4844-8.8359-7.1914-7.3516-12.738 1.4844-5.543 7.1953-8.8359 12.738-7.3516s8.8438 7.1953 7.3516 12.738zm-16.52-199.88c-2.3477-5.0664-7.4258-8.3164-13.02-8.3164s-10.672 3.2461-13.02 8.3164c-7.4297 15.707-20.859 47.234-20.859 63.129 0 18.699 15.18 33.879 33.879 33.879s33.879-15.18 33.879-33.879c0-15.895-13.43-47.422-20.859-63.129zm-8.7422 4.082c-0.76172-1.6797-2.4375-2.7539-4.2773-2.7539-1.8438 0-3.5156 1.0742-4.2773 2.7539-6.957 14.695-19.957 44.145-19.957 59.047 0 13.371 10.859 24.238 24.238 24.238s24.238-10.863 24.238-24.238c0-14.902-13.004-44.352-19.957-59.047z" fill-rule="evenodd"/>
|
||||
<path d="m601.96 52.527c0.35938-5.1562-2.0781-10.141-6.4102-13.031-4.543-3.0312-10.398-3.2422-15.148-0.55469-15.547 8.7969-34.496 9.0898-50.309 0.77344-1.25-0.65625-2.5039-1.3164-3.7539-1.9727-24.516-12.891-53.91-12.441-78.02 1.1992-4.8711 2.7539-7.6992 8.0586-7.3125 13.602v464.05c0 3.9805 1.5859 7.8047 4.4023 10.625 2.8164 2.8164 6.6367 4.3945 10.625 4.3945h130.91c3.9883 0 7.8047-1.5781 10.625-4.3945 2.8164-2.8164 4.4023-6.6406 4.4023-10.625v-464.07zm-97.715 347.34c-9.8789-5.707-22.527-2.3203-28.23 7.5664-5.707 9.8789-2.3203 22.527 7.5586 28.23 9.8828 5.707 22.535 2.3125 28.234-7.5664 5.707-9.8789 2.3125-22.527-7.5664-28.23zm55.145 35.797c9.8789-5.6992 13.266-18.352 7.5586-28.234-5.6992-9.8789-18.352-13.266-28.23-7.5586-9.8789 5.6992-13.273 18.352-7.5664 28.23 5.6992 9.8789 18.352 13.273 28.234 7.5664zm-60.273-26.906c4.9688 2.8711 6.6758 9.2383 3.8086 14.211-2.8711 4.9688-9.2383 6.6758-14.211 3.8086-4.9727-2.8711-6.6758-9.2383-3.8086-14.211 2.8711-4.9727 9.2383-6.6758 14.211-3.8086zm55.137 18.016c-4.9727 2.8711-11.34 1.1641-14.211-3.8008-2.8672-4.9727-1.1602-11.34 3.8086-14.211 4.9727-2.8672 11.34-1.1641 14.211 3.8086 2.8672 4.9727 1.1641 11.34-3.8086 14.207zm-22.438-74.652c-9.8789-5.707-22.527-2.3203-28.23 7.5586-5.707 9.8828-2.3125 22.535 7.5664 28.234 9.8789 5.707 22.527 2.3125 28.23-7.5664 5.707-9.8789 2.3125-22.527-7.5664-28.23zm-5.1289 8.8867c4.9727 2.8711 6.6758 9.2383 3.8086 14.211-2.8711 4.9688-9.2383 6.6758-14.211 3.8008-4.9727-2.8672-6.6758-9.2344-3.8086-14.207 2.8711-4.9727 9.2383-6.6758 14.211-3.8086zm7.8164-183.8c-2.3477-5.0664-7.4258-8.3164-13.02-8.3164s-10.672 3.2461-13.02 8.3164c-7.4297 15.707-20.859 47.234-20.859 63.129 0 18.699 15.18 33.879 33.879 33.879s33.879-15.18 33.879-33.879c0-15.895-13.43-47.422-20.859-63.129zm-8.7422 4.082c-0.76172-1.6797-2.4375-2.7539-4.2773-2.7539-1.8438 0-3.5156 1.0742-4.2773 2.7539-6.957 14.695-19.957 44.145-19.957 59.047 0 13.371 10.859 24.238 24.238 24.238 13.379 0 24.238-10.863 24.238-24.238 0-14.902-13.004-44.352-19.957-59.047z" fill-rule="evenodd"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5 KiB |
|
@ -223,6 +223,15 @@
|
|||
},
|
||||
"then": "circle:white;./assets/layers/recycling/plastic.svg"
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"_waste_amount=1",
|
||||
"recycling:printer_cartridges=yes"
|
||||
]
|
||||
},
|
||||
"then": "circle:white;./assets/layers/recycling/printer_cartridges.svg"
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
|
@ -416,6 +425,15 @@
|
|||
},
|
||||
"then": "circle:white;./assets/layers/recycling/plastic.svg"
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"_waste_amount>1",
|
||||
"recycling:printer_cartridges=yes"
|
||||
]
|
||||
},
|
||||
"then": "circle:white;./assets/layers/recycling/printer_cartridges.svg"
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
|
@ -549,6 +567,7 @@
|
|||
"recycling:plastic_bottles=",
|
||||
"recycling:plastic_packaging=",
|
||||
"recycling:plastic=",
|
||||
"recycling:printer_cartridges=",
|
||||
"recycling:scrap_metal=",
|
||||
"recycling:shoes=",
|
||||
"recycling:small_appliances=",
|
||||
|
@ -918,6 +937,18 @@
|
|||
"class": "medium"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "recycling:printer_cartridges=yes",
|
||||
"ifnot": "recycling:printer_cartridges=",
|
||||
"then": {
|
||||
"en": "Printer cartridges (inkjet/toner) can be recycled here",
|
||||
"nl": "Printer cartridges (inkjet/toner) kunnen hier gerecycled worden"
|
||||
},
|
||||
"icon": {
|
||||
"path": "./assets/layers/recycling/printer_cartridges.svg",
|
||||
"class": "medium"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "recycling:scrap_metal=yes",
|
||||
"ifnot": "recycling:scrap_metal=",
|
||||
|
@ -1271,6 +1302,13 @@
|
|||
},
|
||||
"osmTags": "recycling:plastic=yes"
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "Recycling of printer cartridges",
|
||||
"nl": "Recycling van printer cartridges"
|
||||
},
|
||||
"osmTags": "recycling:printer_cartridges=yes"
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "Recycling of scrap metal",
|
||||
|
@ -1336,4 +1374,4 @@
|
|||
"enableRelocation": true,
|
||||
"enableImproveAccuracy": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -197,6 +197,11 @@
|
|||
]
|
||||
}
|
||||
],
|
||||
"allowMove": {
|
||||
"enableImproveAccuracy": true,
|
||||
"enableRelocation": true
|
||||
},
|
||||
"deletion": true,
|
||||
"filter": [
|
||||
{
|
||||
"#": "ignore-possible-duplicate",
|
||||
|
@ -216,4 +221,4 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
910
assets/svg/brick_wall_raw.svg
Normal file
|
@ -0,0 +1,910 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="40mm"
|
||||
height="40mm"
|
||||
viewBox="0 0 40 40"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="bick_wal_raw.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ddda7c"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.78431373"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:zoom="3.6400926"
|
||||
inkscape:cx="77.470557"
|
||||
inkscape:cy="80.3551"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2">
|
||||
<sodipodi:guide
|
||||
position="-1.158135,35.017833"
|
||||
orientation="0,-1"
|
||||
id="guide1027" />
|
||||
<sodipodi:guide
|
||||
position="-0.65554813,30.013816"
|
||||
orientation="0,-1"
|
||||
id="guide1029" />
|
||||
<sodipodi:guide
|
||||
position="-0.5462901,25.009798"
|
||||
orientation="0,-1"
|
||||
id="guide1031" />
|
||||
<sodipodi:guide
|
||||
position="-0.5025869,20.005781"
|
||||
orientation="0,-1"
|
||||
id="guide1033" />
|
||||
<sodipodi:guide
|
||||
position="-0.30592246,15.001764"
|
||||
orientation="0,-1"
|
||||
id="guide1035" />
|
||||
<sodipodi:guide
|
||||
position="-0.10925802,9.9977463"
|
||||
orientation="0,-1"
|
||||
id="guide1037" />
|
||||
<sodipodi:guide
|
||||
position="-0.021851604,4.993729"
|
||||
orientation="0,-1"
|
||||
id="guide1039" />
|
||||
<sodipodi:guide
|
||||
position="-0.15296123,0.033414841"
|
||||
orientation="0,-1"
|
||||
id="guide1041" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg">
|
||||
<rect
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.799999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3582"
|
||||
width="40.666897"
|
||||
height="40.617493"
|
||||
x="-0.026121488"
|
||||
y="-0.074673384"
|
||||
rx="1.0000006" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3237"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3239"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3241"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3243"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3245"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3247"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3249"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3251"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3253"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3255"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3257"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3259"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3263"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3265"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3267"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3269"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3271"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3273"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3275"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3277"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3279"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3281"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3283"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3285"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3287"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3289"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3291"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3293"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3295"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3297"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3299"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3301"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3303"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3305"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3307"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3309"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3311"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3313"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3315"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3317"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3319"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3321"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3323"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3325"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3327"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3331"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3333"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3347"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3349"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3351"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3353"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3355"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3357"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3359"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3361"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3363"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3365"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3367"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3369"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3371"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3373"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3375"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3377"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3379"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3381"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3383"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3385"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3387"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3389"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3391"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3393"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3395"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3397"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3399"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3401"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3403"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3405"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3407"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3409"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3411"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3413"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3415"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3417"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3419"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3421"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3423"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3425"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3427"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3429"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3431"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3433"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3435"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3437"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3439"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3441"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3443"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3445"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3447"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3449"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 36 KiB |
926
assets/svg/brick_wall_round.svg
Normal file
|
@ -0,0 +1,926 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="40mm"
|
||||
height="40mm"
|
||||
viewBox="0 0 40 40"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="bick_wal_round.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ddda7c"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.78431373"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:zoom="3.6606033"
|
||||
inkscape:cx="81.407347"
|
||||
inkscape:cy="76.080356"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<sodipodi:guide
|
||||
position="-1.158135,35.017833"
|
||||
orientation="0,-1"
|
||||
id="guide1027" />
|
||||
<sodipodi:guide
|
||||
position="-0.65554813,30.013816"
|
||||
orientation="0,-1"
|
||||
id="guide1029" />
|
||||
<sodipodi:guide
|
||||
position="-0.5462901,25.009798"
|
||||
orientation="0,-1"
|
||||
id="guide1031" />
|
||||
<sodipodi:guide
|
||||
position="-0.5025869,20.005781"
|
||||
orientation="0,-1"
|
||||
id="guide1033" />
|
||||
<sodipodi:guide
|
||||
position="-0.30592246,15.001764"
|
||||
orientation="0,-1"
|
||||
id="guide1035" />
|
||||
<sodipodi:guide
|
||||
position="-0.10925802,9.9977463"
|
||||
orientation="0,-1"
|
||||
id="guide1037" />
|
||||
<sodipodi:guide
|
||||
position="-0.021851604,4.993729"
|
||||
orientation="0,-1"
|
||||
id="guide1039" />
|
||||
<sodipodi:guide
|
||||
position="-0.15296123,0.033414841"
|
||||
orientation="0,-1"
|
||||
id="guide1041" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2">
|
||||
<mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask5185">
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.787358;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle5187"
|
||||
cx="20"
|
||||
cy="20"
|
||||
r="20" />
|
||||
</mask>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<circle
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.804731;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path5371"
|
||||
cx="20"
|
||||
cy="20"
|
||||
r="20" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="g4136"
|
||||
mask="url(#mask5185)">
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3237"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3239"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3241"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3243"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3245"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3247"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3249"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3251"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3253"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3255"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3257"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3259"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3263"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3265"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3267"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3269"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3271"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3273"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3275"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3277"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3279"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3281"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3283"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3285"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3287"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3289"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3291"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3293"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3295"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3297"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3299"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3301"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3303"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3305"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3307"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3309"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3311"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3313"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3315"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3317"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3319"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3321"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3323"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3325"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3327"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3331"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3333"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3347"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3349"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3351"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3353"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3355"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3357"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3359"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3361"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3363"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3365"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3367"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3369"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3371"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3373"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3375"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3377"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3379"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3381"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3383"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3385"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3387"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3389"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3391"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3393"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3395"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3397"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3399"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3401"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3403"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3405"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3407"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3409"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3411"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3413"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3415"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3417"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3419"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3421"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3423"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3425"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3427"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3429"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3431"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3433"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3435"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3437"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3439"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3441"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3443"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3445"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3447"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3449"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 38 KiB |
929
assets/svg/brick_wall_square.svg
Normal file
|
@ -0,0 +1,929 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="40mm"
|
||||
height="40mm"
|
||||
viewBox="0 0 40 40"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="bick_wal_square.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ddda7c"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.78431373"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:zoom="3.6400926"
|
||||
inkscape:cx="77.470557"
|
||||
inkscape:cy="91.893267"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<sodipodi:guide
|
||||
position="-1.158135,35.017833"
|
||||
orientation="0,-1"
|
||||
id="guide1027" />
|
||||
<sodipodi:guide
|
||||
position="-0.65554813,30.013816"
|
||||
orientation="0,-1"
|
||||
id="guide1029" />
|
||||
<sodipodi:guide
|
||||
position="-0.5462901,25.009798"
|
||||
orientation="0,-1"
|
||||
id="guide1031" />
|
||||
<sodipodi:guide
|
||||
position="-0.5025869,20.005781"
|
||||
orientation="0,-1"
|
||||
id="guide1033" />
|
||||
<sodipodi:guide
|
||||
position="-0.30592246,15.001764"
|
||||
orientation="0,-1"
|
||||
id="guide1035" />
|
||||
<sodipodi:guide
|
||||
position="-0.10925802,9.9977463"
|
||||
orientation="0,-1"
|
||||
id="guide1037" />
|
||||
<sodipodi:guide
|
||||
position="-0.021851604,4.993729"
|
||||
orientation="0,-1"
|
||||
id="guide1039" />
|
||||
<sodipodi:guide
|
||||
position="-0.15296123,0.033414841"
|
||||
orientation="0,-1"
|
||||
id="guide1041" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2">
|
||||
<mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask1309">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect1311"
|
||||
width="40"
|
||||
height="40"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0" />
|
||||
</mask>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.799999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3582"
|
||||
width="40.666897"
|
||||
height="40.617493"
|
||||
x="-0.026121488"
|
||||
y="-0.074673384"
|
||||
rx="1.0000006" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g4136"
|
||||
mask="url(#mask1309)">
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3237"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3239"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3241"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3243"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3245"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3247"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3249"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3251"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3253"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3255"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3257"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3259"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3263"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3265"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3267"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3269"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3271"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3273"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3275"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3277"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3279"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3281"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3283"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3285"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3287"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3289"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3291"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3293"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3295"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3297"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3299"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3301"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3303"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3305"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3307"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3309"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3311"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3313"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3315"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3317"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3319"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3321"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3323"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3325"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3327"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3331"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3333"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3347"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3349"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3351"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3353"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3355"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3357"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3359"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3361"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3363"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3365"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3367"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3369"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3371"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3373"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3375"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3377"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3379"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3381"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3383"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3385"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3387"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3389"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3391"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3393"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3395"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3397"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3399"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3401"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3403"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3405"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3407"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3409"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3411"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3413"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3415"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3417"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3419"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3421"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3423"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3425"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3427"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3429"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3431"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3433"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3435"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3437"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3439"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3441"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3443"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3445"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3447"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3449"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 38 KiB |
|
@ -95,6 +95,30 @@
|
|||
],
|
||||
"sources": []
|
||||
},
|
||||
{
|
||||
"path": "brick_wall_raw.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Pieter Vander Vennet"
|
||||
],
|
||||
"sources": []
|
||||
},
|
||||
{
|
||||
"path": "brick_wall_round.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Pieter Vander Vennet"
|
||||
],
|
||||
"sources": []
|
||||
},
|
||||
{
|
||||
"path": "brick_wall_square.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Pieter Vander Vennet"
|
||||
],
|
||||
"sources": []
|
||||
},
|
||||
{
|
||||
"path": "bug.svg",
|
||||
"license": "MIT",
|
||||
|
|
|
@ -1936,5 +1936,52 @@
|
|||
"ca": "El nom de la xarxa és <b>{internet_access:ssid}</b>",
|
||||
"pl": "Nazwa sieci to <b>{internet_access:ssid}</b>"
|
||||
}
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"question": {
|
||||
"en": "Is this object lit or does it emit light?"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"lit=yes",
|
||||
"luminous=yes"
|
||||
]
|
||||
},
|
||||
"then": {
|
||||
"en": "This object both emits light and is lighted by an external light source"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "luminous=yes",
|
||||
"then": {
|
||||
"en": "This object emits light"
|
||||
},
|
||||
"addExtraTags": [
|
||||
"lit=no"
|
||||
]
|
||||
},
|
||||
{
|
||||
"if": "lit=yes",
|
||||
"then": {
|
||||
"en": "This object is lit externally, e.g. by a spotlight or other lights"
|
||||
},
|
||||
"addExtraTags": [
|
||||
"luminous=no"
|
||||
]
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"lit=no",
|
||||
"luminous=no"
|
||||
]
|
||||
},
|
||||
"then": {
|
||||
"en": "This object does not emit light and is not lighted by externally"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/themes/advertising/AdvertisingColumn_001.jpg
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
assets/themes/advertising/AdvertisingColumn_003.jpg
Normal file
After Width: | Height: | Size: 126 KiB |
BIN
assets/themes/advertising/AdvertisingTotem_003.jpg
Normal file
After Width: | Height: | Size: 112 KiB |
BIN
assets/themes/advertising/AdvertisingTotem_004.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
assets/themes/advertising/Advertising_flag.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
assets/themes/advertising/Aircraft_Sculpture.jpg
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
assets/themes/advertising/BS.JPG
Normal file
After Width: | Height: | Size: 193 KiB |
BIN
assets/themes/advertising/Capitol_wall.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
assets/themes/advertising/City-Light-Poster.jpg
Normal file
After Width: | Height: | Size: 119 KiB |
BIN
assets/themes/advertising/FGV_Founding.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/themes/advertising/JR_Central.jpg
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
assets/themes/advertising/KFC_Billboard.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/themes/advertising/LIDL_Billboard.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
assets/themes/advertising/Lidl_totem.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
assets/themes/advertising/Mug.jpg
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
assets/themes/advertising/Mupi_Alcoi.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
assets/themes/advertising/Mupi_spain.jpg
Normal file
After Width: | Height: | Size: 163 KiB |
BIN
assets/themes/advertising/Repsol_Billboard.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
assets/themes/advertising/Screen_poster_box.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
assets/themes/advertising/Small_Board.jpg
Normal file
After Width: | Height: | Size: 125 KiB |
BIN
assets/themes/advertising/Subway_screen.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
assets/themes/advertising/TV_media.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
assets/themes/advertising/Times square.jpg
Normal file
After Width: | Height: | Size: 200 KiB |
BIN
assets/themes/advertising/Waitrose_sign.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
1061
assets/themes/advertising/advertising.json
Normal file
173
assets/themes/advertising/billboard.svg
Normal file
|
@ -0,0 +1,173 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="209.25972mm"
|
||||
height="256.42511mm"
|
||||
viewBox="0 0 741.47145 908.59291"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="Billboard.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="1291.7664 : 864.17924 : 1"
|
||||
inkscape:vp_y="-660.45823 : 631.34621 : 0"
|
||||
inkscape:vp_z="767.38733 : 1059.74 : 1"
|
||||
inkscape:persp3d-origin="1593.2984 : 1253.643 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7991692"
|
||||
inkscape:cx="232.7417"
|
||||
inkscape:cy="509.90453"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-1.4071445"
|
||||
originy="-146.62649" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-1.4071445,-146.6265)">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:22.3564;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219"
|
||||
width="719.11511"
|
||||
height="563.40045"
|
||||
x="12.585321"
|
||||
y="157.80467" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4300"
|
||||
width="134.28572"
|
||||
height="324.28571"
|
||||
x="305.71426"
|
||||
y="730.93365" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#ff0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="696.664"
|
||||
height="543.43622"
|
||||
x="23.320917"
|
||||
y="167.35457" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.4731919,0,0,1.303209,-401.95758,-64.293593)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8.00044;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-8.8846271"
|
||||
inkscape:transform-center-y="-0.21661365"
|
||||
transform="matrix(1.5063344,0,0,1.460965,-171.89998,-364.44484)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 634.99073,436.2157 54.84858,-20.43129 -72.65041,-69.44809 -61.45316,14.11784 z"
|
||||
points="689.83931,415.78441 617.1889,346.33632 555.73574,360.45416 634.99073,436.2157 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 634.99073,436.2157 -79.25499,-75.76154 -41.3845,70.89265 94.64947,90.47746 z"
|
||||
points="555.73574,360.45416 514.35124,431.34681 609.00071,521.82427 634.99073,436.2157 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 634.99073,436.2157 54.84858,-20.43129 -13.8343,73.64459 -67.0043,32.39527 z"
|
||||
points="689.83931,415.78441 676.00501,489.429 609.00071,521.82427 634.99073,436.2157 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 609.00071,521.82427 67.0043,-32.39527 -85.37999,-81.61657 -76.27378,23.53438 z"
|
||||
points="676.00501,489.429 590.62502,407.81243 514.35124,431.34681 609.00071,521.82427 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="M 689.83931,415.78441 617.1889,346.33632 590.62502,407.81243 676.00501,489.429 Z"
|
||||
points="617.1889,346.33632 590.62502,407.81243 676.00501,489.429 689.83931,415.78441 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:9.99111;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 555.73574,360.45416 61.45316,-14.11784 -26.56388,61.47611 -76.27378,23.53438 z"
|
||||
points="617.1889,346.33632 590.62502,407.81243 514.35124,431.34681 555.73574,360.45416 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.3 KiB |
180
assets/themes/advertising/board.svg
Normal file
|
@ -0,0 +1,180 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="163.80348mm"
|
||||
height="167.33861mm"
|
||||
viewBox="0 0 580.40604 592.93207"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="Board.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="972.69781 : 585.48216 : 1"
|
||||
inkscape:vp_y="-491.90589 : 452.23511 : 0"
|
||||
inkscape:vp_z="582.14307 : 725.56289 : 1"
|
||||
inkscape:persp3d-origin="1197.2773 : 864.45616 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.0196925"
|
||||
inkscape:cx="573.70235"
|
||||
inkscape:cy="436.8964"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-80.013376"
|
||||
originy="-229.43016" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-80.013378,-229.43016)">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:101.48;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422-8-4"
|
||||
width="478.92584"
|
||||
height="229.2673"
|
||||
x="130.75348"
|
||||
y="280.17026" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#ff0000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="566.664"
|
||||
height="314.814"
|
||||
x="86.892349"
|
||||
y="239.54822" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:14.1347;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422-8"
|
||||
width="8.5147648"
|
||||
height="250.17702"
|
||||
x="211.88652"
|
||||
y="565.11786" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:14.1347;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422-8-0"
|
||||
width="8.5147657"
|
||||
height="250.177"
|
||||
x="531.74725"
|
||||
y="565.11786" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.062387,0,0,0.93980447,-198.19828,47.237072)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8.00044;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-6.6647706"
|
||||
inkscape:transform-center-y="-0.15374529"
|
||||
transform="matrix(1.1299732,0,0,1.0366682,-38.991705,-158.92367)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 562.50001,412.5 40.85094,-14.635 -54.10965,-49.74586 -45.77,10.11264 z"
|
||||
points="603.35095,397.865 549.2413,348.11914 503.4713,358.23178 562.50001,412.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 562.50001,412.5 -59.02871,-54.26822 -30.82299,50.78061 70.49444,64.80926 z"
|
||||
points="503.4713,358.23178 472.64831,409.01239 543.14275,473.82165 562.50001,412.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 562.50001,412.5 40.85094,-14.635 -10.30373,52.75183 -49.90447,23.20482 z"
|
||||
points="603.35095,397.865 593.04722,450.61683 543.14275,473.82165 562.50001,412.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 543.14275,473.82165 49.90447,-23.20482 -63.59058,-58.46218 -56.80833,16.85774 z"
|
||||
points="593.04722,450.61683 529.45664,392.15465 472.64831,409.01239 543.14275,473.82165 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 603.35095,397.865 -54.10965,-49.74586 -19.78466,44.03551 63.59058,58.46218 z"
|
||||
points="549.2413,348.11914 529.45664,392.15465 593.04722,450.61683 603.35095,397.865 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 503.4713,358.23178 45.77,-10.11264 -19.78466,44.03551 -56.80833,16.85774 z"
|
||||
points="549.2413,348.11914 529.45664,392.15465 472.64831,409.01239 503.4713,358.23178 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.5 KiB |
BIN
assets/themes/advertising/clarke_wall.jpg
Normal file
After Width: | Height: | Size: 65 KiB |
285
assets/themes/advertising/column.svg
Normal file
|
@ -0,0 +1,285 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="94.520744mm"
|
||||
height="265.41531mm"
|
||||
viewBox="0 0 334.91602 940.44796"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="Column.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient7260"
|
||||
inkscape:swatch="solid">
|
||||
<stop
|
||||
style="stop-color:#999999;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7262" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="663.33917 : 387.3454 : 1"
|
||||
inkscape:vp_y="-491.90592 : 452.23512 : 0"
|
||||
inkscape:vp_z="272.78439 : 527.42614 : 1"
|
||||
inkscape:persp3d-origin="887.91862 : 666.31944 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.57388031"
|
||||
inkscape:cx="-121.97665"
|
||||
inkscape:cy="514.91573"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-207.49699"
|
||||
originy="-47.527465" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-207.49698,-47.527464)">
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.47272;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7276-0"
|
||||
width="268.05264"
|
||||
height="28.990143"
|
||||
x="240.23636"
|
||||
y="241.1357" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.47272;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7276-0-94"
|
||||
width="268.05264"
|
||||
height="28.990143"
|
||||
x="240.23636"
|
||||
y="832.56342"
|
||||
inkscape:transform-center-x="22.223356"
|
||||
inkscape:transform-center-y="-92.934034" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:5.01362;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353"
|
||||
cx="374.55356"
|
||||
cy="943.07642"
|
||||
rx="142.66008"
|
||||
ry="42.392216" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.95902;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7276"
|
||||
width="285"
|
||||
height="100.68885"
|
||||
x="232"
|
||||
y="841.42468" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4355"
|
||||
width="280.08932"
|
||||
height="5.5357194"
|
||||
x="234.37495"
|
||||
y="939.32648" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:5.01362;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353-3"
|
||||
cx="374.50281"
|
||||
cy="839.58398"
|
||||
rx="142.66008"
|
||||
ry="42.392216" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#fffe73;fill-opacity:1;stroke:#fffe73;stroke-width:2.00624;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353-3-9"
|
||||
cx="374.58447"
|
||||
cy="844.92804"
|
||||
rx="132.45499"
|
||||
ry="27.30596" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#3c24ff;stroke-width:2.01397;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="264.98602"
|
||||
height="581.25702"
|
||||
x="242.13326"
|
||||
y="268.04715" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#a297ff;fill-opacity:1;stroke:#3c24ff;stroke-width:2.10166;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353-3-9-0"
|
||||
cx="374.44641"
|
||||
cy="280.89734"
|
||||
rx="132.96378"
|
||||
ry="29.850483" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.88479;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353-8"
|
||||
cx="374.95499"
|
||||
cy="265.93356"
|
||||
rx="165.01561"
|
||||
ry="42.203125" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.86219;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7276-0-9"
|
||||
width="330.0538"
|
||||
height="49.640549"
|
||||
x="209.9281"
|
||||
y="213.97043" />
|
||||
<rect
|
||||
style="opacity:1;fill:#fffe73;fill-opacity:1;stroke:#fffe73;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4389"
|
||||
width="262.94196"
|
||||
height="5.3562865"
|
||||
x="243.15114"
|
||||
y="845.44342" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4355-8"
|
||||
width="324.86349"
|
||||
height="6.9642887"
|
||||
x="212.38081"
|
||||
y="261.00903" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.88479;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4353-8-5"
|
||||
cx="374.95499"
|
||||
cy="215.21928"
|
||||
rx="165.01561"
|
||||
ry="42.203125" />
|
||||
<ellipse
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:3.60111;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4266"
|
||||
cx="381.66556"
|
||||
cy="153.92078"
|
||||
rx="83.145805"
|
||||
ry="60.425892" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:4.83545;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4187"
|
||||
cx="383.12576"
|
||||
cy="79.631348"
|
||||
rx="20.390472"
|
||||
ry="29.686159"
|
||||
inkscape:transform-center-x="11.392647"
|
||||
inkscape:transform-center-y="-54.46942" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#184a00;stroke-width:2.00724;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4355-0"
|
||||
width="567.05408"
|
||||
height="5.5284724"
|
||||
x="296.16937"
|
||||
y="470.9411"
|
||||
transform="matrix(0,1,1,0,0,0)" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.062387,0,0,0.93980447,-23.012562,71.51878)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-6.6647706"
|
||||
inkscape:transform-center-y="-0.15374529"
|
||||
transform="matrix(1.1299732,0,0,1.0366682,-43.215912,30.023038)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 380.625,776.25002 40.85094,-14.635 -54.10966,-49.74586 -45.76999,10.11265 z"
|
||||
points="421.47594,761.61502 367.36628,711.86916 321.59629,721.98181 380.625,776.25002 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 380.625,776.25002 -59.02871,-54.26821 -30.82297,50.78061 70.49444,64.80927 z"
|
||||
points="321.59629,721.98181 290.77332,772.76242 361.26776,837.57169 380.625,776.25002 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 380.625,776.25002 40.85094,-14.635 -10.30372,52.75185 -49.90446,23.20482 z"
|
||||
points="421.47594,761.61502 411.17222,814.36687 361.26776,837.57169 380.625,776.25002 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 361.26776,837.57169 49.90446,-23.20482 -63.59058,-58.46219 -56.80832,16.85774 z"
|
||||
points="411.17222,814.36687 347.58164,755.90468 290.77332,772.76242 361.26776,837.57169 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 421.47594,761.61502 -54.10966,-49.74586 -19.78464,44.03552 63.59058,58.46219 z"
|
||||
points="367.36628,711.86916 347.58164,755.90468 411.17222,814.36687 421.47594,761.61502 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 321.59629,721.98181 45.76999,-10.11265 -19.78464,44.03552 -56.80832,16.85774 z"
|
||||
points="367.36628,711.86916 347.58164,755.90468 290.77332,772.76242 321.59629,721.98181 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/themes/advertising/farma_sign.jpg
Normal file
After Width: | Height: | Size: 138 KiB |
89
assets/themes/advertising/flag.svg
Normal file
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Creator: CorelDRAW -->
|
||||
|
||||
<svg
|
||||
xml:space="preserve"
|
||||
width="800"
|
||||
height="564"
|
||||
viewBox="0 0 800 564"
|
||||
id="svg2436"
|
||||
version="1.1"
|
||||
sodipodi:docname="flag.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"><defs
|
||||
id="defs7" /><sodipodi:namedview
|
||||
id="namedview5"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.5958327"
|
||||
inkscape:cx="305.54865"
|
||||
inkscape:cy="93.458775"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2436"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:rotation="-1"
|
||||
scale-x="1"><sodipodi:guide
|
||||
position="400.10238,401.41886"
|
||||
orientation="1,0"
|
||||
id="guide865" /></sodipodi:namedview>
|
||||
<path
|
||||
style="fill:none;stroke:#999999;stroke-width:37.4961;stroke-linecap:round;stroke-opacity:1"
|
||||
d="M 400.10267,542.53783 V 22.94903"
|
||||
id="pole" />
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<path
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#9999;stroke-width:7.16246;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 412.60137,27.241927 c 144.75114,62.036203 215.05882,57.900461 368.08145,4.135742 -43.42534,86.850681 -43.42534,153.022661 0,239.873331 -148.88687,51.69684 -208.85521,51.69684 -368.08145,0 z"
|
||||
id="flag-textile" >
|
||||
|
||||
</path>
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="display:inline;fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
transform="matrix(1.4126668,0,0,1.2496675,60.291626,-288.79063)"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649" />
|
||||
<animateTransform attributeName="transform" attributeType="XML"
|
||||
type="skewX" values="-3;5;-3" repeatCount="indefinite" dur="7s" fill="freeze"
|
||||
additive="sum"/>
|
||||
<animateTransform attributeName="transform" attributeType="XML"
|
||||
type="skewY" values="-2;3;-2" repeatCount="indefinite" dur="5s" fill="freeze"
|
||||
additive="sum"/>
|
||||
</g>
|
||||
|
||||
<metadata
|
||||
id="metadata826"><rdf:RDF><cc:Work
|
||||
rdf:about=""><cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /></cc:Work><cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata></svg>
|
After Width: | Height: | Size: 4.1 KiB |
210
assets/themes/advertising/icon.svg
Normal file
|
@ -0,0 +1,210 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="512"
|
||||
height="512"
|
||||
viewBox="0 0 480 479.99999"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="icon.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="542.81824 : 288.38701 : 1"
|
||||
inkscape:vp_y="-301.16974 : 276.88126 : 0"
|
||||
inkscape:vp_z="303.70078 : 374.15153 : 1"
|
||||
inkscape:persp3d-origin="680.31721 : 459.18905 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.90675321"
|
||||
inkscape:cx="116.90061"
|
||||
inkscape:cy="373.30995"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-154.57584"
|
||||
originy="-91.827049" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-154.57585,-91.827051)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:9.82363;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-3"
|
||||
width="227.23341"
|
||||
height="344.23865"
|
||||
x="287.61111"
|
||||
y="105.61009" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:9.82363;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-6"
|
||||
width="227.23341"
|
||||
height="344.23865"
|
||||
x="292.56232"
|
||||
y="100.66245" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:9.82363;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7"
|
||||
width="227.23341"
|
||||
height="344.23865"
|
||||
x="282.69614"
|
||||
y="110.53216" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:9.82363;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8"
|
||||
width="227.23341"
|
||||
height="344.23865"
|
||||
x="277.74164"
|
||||
y="115.53746" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#ff00e4;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="228.53178"
|
||||
height="338.57498"
|
||||
x="271.37961"
|
||||
y="124.52689" />
|
||||
<rect
|
||||
style="fill:#500000;fill-opacity:0;stroke:#999999;stroke-width:9.82363;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219"
|
||||
width="227.23341"
|
||||
height="344.23865"
|
||||
x="272.77884"
|
||||
y="120.47446" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:23.6891;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422"
|
||||
width="86.041298"
|
||||
height="69.540489"
|
||||
x="357.8515"
|
||||
y="476.0845" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(0.65044722,0,0,0.57539598,151.47714,-34.221351)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-4.0805143"
|
||||
inkscape:transform-center-y="-0.094135487"
|
||||
transform="matrix(0.6918269,0,0,0.63470083,137.35837,-54.379281)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 397.26191,390.96348 25.01102,-8.96029 -33.12867,-30.45694 -28.02272,6.19147 z"
|
||||
points="422.27293,382.00319 389.14426,351.54625 361.12154,357.73772 397.26191,390.96348 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 397.26191,390.96348 -36.14037,-33.22576 -18.87139,31.09047 43.16027,39.67951 z"
|
||||
points="361.12154,357.73772 342.25015,388.82819 385.41042,428.5077 397.26191,390.96348 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 397.26191,390.96348 25.01102,-8.96029 -6.30846,32.29735 -30.55405,14.20716 z"
|
||||
points="422.27293,382.00319 415.96447,414.30054 385.41042,428.5077 397.26191,390.96348 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 385.41042,428.5077 30.55405,-14.20716 -38.93338,-35.79352 -34.78094,10.32117 z"
|
||||
points="415.96447,414.30054 377.03109,378.50702 342.25015,388.82819 385.41042,428.5077 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 422.27293,382.00319 -33.12867,-30.45694 -12.11317,26.96077 38.93338,35.79352 z"
|
||||
points="389.14426,351.54625 377.03109,378.50702 415.96447,414.30054 422.27293,382.00319 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 361.12154,357.73772 28.02272,-6.19147 -12.11317,26.96077 -34.78094,10.32117 z"
|
||||
points="389.14426,351.54625 377.03109,378.50702 342.25015,388.82819 361.12154,357.73772 " />
|
||||
</g>
|
||||
<ellipse
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:9.56555;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path14840"
|
||||
cx="400.86063"
|
||||
cy="558.66736"
|
||||
rx="50.10046"
|
||||
ry="5.5391092" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.8 KiB |
484
assets/themes/advertising/license_info.json
Normal file
|
@ -0,0 +1,484 @@
|
|||
[
|
||||
{
|
||||
"path": "AdvertisingColumn_001.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargs"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:AdvertisingColumn_001.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "AdvertisingColumn_003.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargsed"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:AdvertisingColumn_003.jpg#file"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "AdvertisingTotem_003.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargsed"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:AdvertisingTotem_003.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "AdvertisingTotem_004.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargsed"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:AdvertisingTotem_004.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Advertising_flag.jpg",
|
||||
"license": "CC BY-SA 2.0",
|
||||
"authors": [
|
||||
"Sandy B"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Advertising_flags_-_geograph.org.uk_-_2433864.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Aircraft_Sculpture.jpg",
|
||||
"license": "CC BY-SA 2.0",
|
||||
"authors": [
|
||||
"Rod Waddington"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Aircraft_Sculpture-Advertisment-Restaurant_Jimma_Ethiopia.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "BS.JPG",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"TeWeBs"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:BS_Schraubenschluessel.JPG"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Capitol_wall.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Artaxerxes"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Advertising_mural_on_wall_of_Capitol_Stationers_65_Main_Street_downtown_Montpelier_VT_August_2017.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "City-Light-Poster.jpg",
|
||||
"license": "CC-BY SA 4.0",
|
||||
"authors": [
|
||||
"Bärwinkel, Klaus"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:City-Light-Poster_Mittelstra%C3%9Fe.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "FGV_Founding.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/epyuPXs"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "JR_Central.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"ジェーアール東海一口株主"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:JR_Central_corporate_flag_by_Nagoya_Station.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "KFC_Billboard.jpg",
|
||||
"license": "CC BY 4.0",
|
||||
"authors": [
|
||||
"Paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/2xJaUXd"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "LIDL_Billboard.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Paul Williams"
|
||||
],
|
||||
"sources": [
|
||||
"https://archive.org/details/northfleet-2021-05-30/PXL_20210530_175057096.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Lidl_totem.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Donald Trung"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Lidl_informational_sign,_Hesel_(2019)_01.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Mug.jpg",
|
||||
"license": "Public Domain",
|
||||
"authors": [
|
||||
"Carol M. Highsmith"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:The_Frostop_mug_advertising_sign_outside_%22The_Drive_In%22_restaurant_in_Taylors_Falls,_Minnesota.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Mupi_Alcoi.jpg",
|
||||
"license": "CC-BY 4.0",
|
||||
"authors": [
|
||||
"Paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/4Q3glWH"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Mupi_spain.jpg",
|
||||
"license": "CC0 1.0",
|
||||
"authors": [
|
||||
"Jusotil_1943"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Mupi_(42556631491).jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Repsol_Billboard.jpg",
|
||||
"license": "CC BY 4.0",
|
||||
"authors": [
|
||||
"Paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/MwvK0jc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Screen_poster_box.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"T. Segonds"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Screen_poster_box.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Small_Board.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargsed"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:AdvertisingBoard_001.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Subway_screen.jpg",
|
||||
"license": "CC BY 2.0",
|
||||
"authors": [
|
||||
"Metropolitan Transportation Authority of the State of New York"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Subway_Station_Digital_Advertising_Screens_(13251000543).jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "TV_media.jpg",
|
||||
"license": "CC BY 3.0",
|
||||
"authors": [
|
||||
"Roger Carvell"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:TV_media_advertising_at_London_Victoria_station._-_panoramio.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Times square.jpg",
|
||||
"license": "CC BY-SA 4.0",
|
||||
"authors": [
|
||||
"chensiyuan"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:1_times_square_night_2013.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Waitrose_sign.jpg",
|
||||
"license": "CC BY-SA 2.0",
|
||||
"authors": [
|
||||
"Geographer"
|
||||
],
|
||||
"sources": [
|
||||
"https://www.geograph.org.uk/photo/4343364"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "billboard.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Billboard_trunk.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "board.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Board.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "clarke_wall.jpg",
|
||||
"license": "CC BY-SA 2.0",
|
||||
"authors": [
|
||||
"Albert Bridge"
|
||||
],
|
||||
"sources": [
|
||||
"https://www.geograph.org.uk/photo/2478313"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "column.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Column.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "farma_sign.jpg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/bGF0kdd"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "flag.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38",
|
||||
"Ash Crow",
|
||||
"Happy-melon",
|
||||
"Aris Katsaris",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Column.svg",
|
||||
"https://commons.wikimedia.org/wiki/File:Flag_icon_darkblue.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "icon.svg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"Panier Avide"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Advertising_icon.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "local_Board.jpg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"Segnargsed"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:ReservedAdvertisingUnit_008.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "newspaper_kiosk.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Newspaper_kiosk_3.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "poster_box.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Poster_box.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "poster_box_no_support.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Poster_box.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "screen alcoi.jpg",
|
||||
"license": "CC-BY 4.0",
|
||||
"authors": [
|
||||
"paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/HKsRycm"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "screen.svg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"Barnes38",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Poster_box.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "screen_no_support.svg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"Barnes38",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Poster_box.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "sculpture.svg",
|
||||
"license": "CC BY 3.0",
|
||||
"authors": [
|
||||
"Nathaniel Smith",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Column.svg",
|
||||
"https://commons.wikimedia.org/wiki/File:Sculpture_(NP100738).svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "sign.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Totem.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "sign_EOI.jpg",
|
||||
"license": "CC-BY-SA 4.0",
|
||||
"authors": [
|
||||
"paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/8D0BKNq"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "tarp.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Billboard_trunk.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "tarp_feder.jpg",
|
||||
"license": "CC-BY SA 4.0",
|
||||
"authors": [
|
||||
"paunofu"
|
||||
],
|
||||
"sources": [
|
||||
"https://imgur.com/Gc3Tk41"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "tarp_madrid.jpg",
|
||||
"license": "CC BY 2.0",
|
||||
"authors": [
|
||||
"Rogotan"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Lona_(3741637137).jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "totem.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Totem.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "trivision.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"pietervdvn",
|
||||
"Louis Dawson (via the Noun Project)"
|
||||
],
|
||||
"sources": [
|
||||
"https://thenounproject.com/icon/rotating-arrow-184486/"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "wall_painting.svg",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"authors": [
|
||||
"Barnes38",
|
||||
"Pietervdvn"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Billboard_trunk.svg"
|
||||
]
|
||||
}
|
||||
]
|
BIN
assets/themes/advertising/local_Board.jpg
Normal file
After Width: | Height: | Size: 119 KiB |
408
assets/themes/advertising/newspaper_kiosk.svg
Normal file
|
@ -0,0 +1,408 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 744.09448819 1052.3622047"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="Newspaper_kiosk.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="489.83756 : 335.66675 : 1"
|
||||
inkscape:vp_y="-221.02247 : 203.19766 : 0"
|
||||
inkscape:vp_z="314.35404 : 398.60764 : 1"
|
||||
inkscape:persp3d-origin="590.74531 : 461.01499 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.2429549"
|
||||
inkscape:cx="423.98963"
|
||||
inkscape:cy="581.2761"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#0a0d09;fill-opacity:1;stroke:#010b00;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-4-7"
|
||||
width="4.671258"
|
||||
height="555.7677"
|
||||
x="838.35303"
|
||||
y="643.25342"
|
||||
transform="matrix(0.79022392,-0.6128182,0,1,0,0)" />
|
||||
<path
|
||||
style="fill:#25581e;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.99004447;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 371.69252,126.63056 c 0,0 -10.61058,-25.65059 -36.19546,-12.30513 -24.43921,12.74781 -23.81753,43.03998 -48.26064,55.3129 -22.72609,11.41082 -25.53446,-17.57161 -48.26061,-6.16113 -23.2941,11.69558 -24.96603,43.30668 -48.26065,55.31291 -26.17398,13.49029 -22.09198,-19.82815 -48.26063,-6.16111 -24.99062,13.05179 -24.05712,42.58506 -48.260625,55.31296 C 68.610873,281.3953 71.527348,248.74741 45.933276,261.78081 23.182988,273.36595 9.7378019,310.94976 9.7378019,310.94976"
|
||||
id="path6563-0-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssc" />
|
||||
<path
|
||||
style="fill:#25581e;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.68917084;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 734.06218,112.41988 c 0,0 -11.4156,-34.483633 -38.94163,-33.965725 -26.2934,0.494706 -25.62458,34.547665 -51.92218,34.511775 -24.45035,-0.0334 -27.47179,-33.853879 -51.92218,-33.887661 -25.06143,-0.03466 -26.8602,34.201101 -51.92222,34.511771 -28.15981,0.3491 -23.7681,-34.436407 -51.92218,-33.887658 -26.88668,0.524039 -25.88236,33.907298 -51.92218,34.511818 -27.52404,0.63901 -24.3863,-34.053196 -51.9222,-33.887704 -24.47636,0.147105 -38.94165,34.433814 -38.94165,34.433814"
|
||||
id="path6563-0-7-15"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssc" />
|
||||
<path
|
||||
style="fill:#78a072;fill-opacity:1;fill-rule:evenodd;stroke:#2c6823;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.424264,846.20596 367.99573,661.07262 645.16385,662.63107 380.7213,851.97768 Z"
|
||||
id="path3518-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#78a072;fill-opacity:1;fill-rule:evenodd;stroke:#78a072;stroke-width:1.45520663;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 45.715909,849.95783 419.84263,648.72226 407.20259,135.48165 45.715909,318.25446 Z"
|
||||
id="path4324"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
style="fill:#78a072;fill-opacity:1;stroke:#828382;stroke-width:7.75724745;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-3"
|
||||
width="278.2399"
|
||||
height="543.30273"
|
||||
x="380.31882"
|
||||
y="131.76976" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#2c6823;stroke-width:15.42881837;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8"
|
||||
width="305.0206"
|
||||
height="281.62708"
|
||||
x="468.07455"
|
||||
y="808.64545"
|
||||
transform="matrix(0.84848675,-0.52921663,0,1,0,0)" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:3.95503211;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7"
|
||||
width="117.56584"
|
||||
height="107.34969"
|
||||
x="476.77921"
|
||||
y="957.32141"
|
||||
transform="matrix(0.85210621,-0.5233689,0,1,0,0)" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:3.95503211;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-7-0-9"
|
||||
width="117.56584"
|
||||
height="107.34969"
|
||||
x="628.05969"
|
||||
y="833.11609"
|
||||
transform="matrix(0.85210621,-0.5233689,0,1,0,0)"
|
||||
inkscape:transform-center-x="90.282931"
|
||||
inkscape:transform-center-y="39.341631" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:3.95503211;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-7-0"
|
||||
width="117.56584"
|
||||
height="107.34969"
|
||||
x="476.77921"
|
||||
y="827.29639"
|
||||
transform="matrix(0.85210621,-0.5233689,0,1,0,0)"
|
||||
inkscape:transform-center-x="90.282947"
|
||||
inkscape:transform-center-y="39.341587" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#010b00;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-4"
|
||||
width="22.977047"
|
||||
height="554.70178"
|
||||
x="639.62952"
|
||||
y="128.77559" />
|
||||
<path
|
||||
style="fill:#2c6823;fill-opacity:1;fill-rule:evenodd;stroke:#050c04;stroke-width:4.07476425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 337.96236,559.39282 292.83667,-154.62228 87.40786,1.01794 -277.82251,158.07275 z"
|
||||
id="path3518-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:transform-center-x="-40.509534"
|
||||
inkscape:transform-center-y="12.234761" />
|
||||
<rect
|
||||
style="fill:#fffeac;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-8-0"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="560.27832"
|
||||
y="180.22142"
|
||||
inkscape:transform-center-x="-92.019139"
|
||||
inkscape:transform-center-y="5.9012492" />
|
||||
<rect
|
||||
style="fill:#fffeac;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-8-1"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="474.25433"
|
||||
y="176.28725"
|
||||
inkscape:transform-center-x="3.4724437"
|
||||
inkscape:transform-center-y="96.386984" />
|
||||
<rect
|
||||
style="fill:#2c6823;fill-opacity:1;stroke:#010b00;stroke-width:5.59663439;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219"
|
||||
width="345.19373"
|
||||
height="557.8219"
|
||||
x="46.213509"
|
||||
y="295.20825" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:7.31788206;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157"
|
||||
width="275.00174"
|
||||
height="389.46222"
|
||||
x="86.687767"
|
||||
y="332.45871" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="58.226994"
|
||||
y="745.39648" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-1"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="304.94339"
|
||||
y="745.39648" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-5"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="223.34149"
|
||||
y="745.39648" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-7"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="140.00339"
|
||||
y="745.39648" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#e9f9e9;stroke-width:3.95503211;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-7"
|
||||
width="117.56584"
|
||||
height="107.34969"
|
||||
x="628.05969"
|
||||
y="958.01172"
|
||||
transform="matrix(0.85210621,-0.5233689,0,1,0,0)"
|
||||
inkscape:transform-center-x="90.282931"
|
||||
inkscape:transform-center-y="39.341571" />
|
||||
<rect
|
||||
style="fill:#fffeac;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-8"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="560.19238"
|
||||
y="297.51492" />
|
||||
<rect
|
||||
style="fill:#fffeac;fill-opacity:1;stroke:#e9f9e9;stroke-width:1.79972577;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect15157-3-8-3"
|
||||
width="70.104469"
|
||||
height="92.405304"
|
||||
x="474.25433"
|
||||
y="297.51492"
|
||||
inkscape:transform-center-x="-78.129454"
|
||||
inkscape:transform-center-y="-15.736649" />
|
||||
<path
|
||||
style="fill:#2c6823;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.74399996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.1745724,310.96591 396.60747,115.77773 731.72594,112.14453 411.99371,310.50208 Z"
|
||||
id="path3518"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.47030473;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6557"
|
||||
cx="448.5687"
|
||||
cy="248.64709"
|
||||
rx="151.8517"
|
||||
ry="80.622414"
|
||||
transform="matrix(0.99028328,-0.13906481,-0.24660694,0.96911558,0,0)" />
|
||||
<path
|
||||
style="fill:#25581e;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.02551103;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 734.36563,111.20819 c 0,0 -9.51619,-27.598973 -32.46224,-13.239821 -21.91853,13.716121 -21.36098,46.309241 -43.283,59.514381 -20.38212,12.27756 -22.90083,-18.90632 -43.283,-6.62912 -20.89153,12.58397 -22.39102,46.59619 -43.28302,59.51439 -23.47439,14.51499 -19.81341,-21.33427 -43.28301,-6.62911 -22.41307,14.04319 -21.57586,45.81976 -43.283,59.51444 -22.94439,14.47524 -20.32872,-20.65254 -43.28301,-6.62913 -20.40381,12.46512 -32.46226,52.90373 -32.46226,52.90373"
|
||||
id="path6563-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssc" />
|
||||
<path
|
||||
style="fill:#25581e;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 409.10695,311.08365 c 0,0 -11.8634,-46.61 -40.46915,-46.13452 -27.32479,0.45417 -26.62973,46.39609 -53.95889,46.13445 -25.40943,-0.24322 -28.54939,-45.89065 -53.95887,-46.13445 -26.04449,-0.24994 -27.91382,45.91855 -53.95892,46.13445 -29.2644,0.24262 -24.70043,-46.64644 -53.95887,-46.13445 -27.94134,0.48893 -26.89762,45.53015 -53.958891,46.13452 -28.60369,0.63883 -25.342858,-46.13452 -53.958894,-46.13452 -25.436466,0 -40.4691592,46.13452 -40.4691592,46.13452"
|
||||
id="path6563-0-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssssssc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.02;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 392.14849,854.49581 272.13356,-172.12247 0,0"
|
||||
id="path4244"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(0.47175073,0,0,0.43563122,-77.21179,630.3023)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-2.9314067"
|
||||
inkscape:transform-center-y="-0.08502321"
|
||||
transform="matrix(0.49700255,0,0,0.57328227,-3.0665074,478.25835)" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178-8"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(0.47175073,0,0,0.43563122,167.07392,630.3023)" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178-9"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.5886153,0,0,1.4132116,-353.29651,-3.734851)" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6557-2"
|
||||
cx="450.24249"
|
||||
cy="244.18185"
|
||||
rx="159.44762"
|
||||
ry="80.877922"
|
||||
transform="matrix(0.99119114,-0.13243915,-0.25836127,0.96604837,0,0)" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.22430012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6559"
|
||||
cx="484.34894"
|
||||
cy="432.11969"
|
||||
rx="23.457737"
|
||||
ry="52.965115"
|
||||
transform="matrix(0.72057669,-0.69337525,0.08675797,0.99622942,0,0)"
|
||||
inkscape:transform-center-x="18.828937"
|
||||
inkscape:transform-center-y="-2.5791713" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#ff0000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect7798"
|
||||
width="50.245777"
|
||||
height="42.14616"
|
||||
x="370.68158"
|
||||
y="356.06964"
|
||||
transform="matrix(0.79508241,-0.60650142,0.18828405,0.98211462,0,0)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.6590004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 269.57654,795.6048 18.35509,-6.57578 -24.31247,-22.35174 -20.56531,4.5438 z"
|
||||
points="287.93163,789.02902 263.61916,766.67728 243.05385,771.22108 269.57654,795.6048 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 269.57654,795.6048 -26.52269,-24.38372 -13.84934,22.81668 31.67446,29.12001 z"
|
||||
points="243.05385,771.22108 229.20451,794.03776 260.87897,823.15777 269.57654,795.6048 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 269.57654,795.6048 18.35509,-6.57578 -4.62966,23.70239 -22.423,10.42636 z"
|
||||
points="287.93163,789.02902 283.30197,812.73141 260.87897,823.15777 269.57654,795.6048 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 260.87897,823.15777 22.423,-10.42636 -28.57243,-26.26815 -25.52503,7.5745 z"
|
||||
points="283.30197,812.73141 254.72954,786.46326 229.20451,794.03776 260.87897,823.15777 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 243.05385,771.22108 20.56531,-4.5438 -8.88962,19.78598 -25.52503,7.5745 z"
|
||||
points="263.61916,766.67728 254.72954,786.46326 229.20451,794.03776 243.05385,771.22108 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.27894998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 287.93163,789.02902 -24.31247,-22.35174 -8.88962,19.78598 28.57243,26.26815 z"
|
||||
points="263.61916,766.67728 254.72954,786.46326 283.30197,812.73141 287.93163,789.02902 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
210
assets/themes/advertising/poster_box.svg
Normal file
|
@ -0,0 +1,210 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="506.39499"
|
||||
height="933.05249"
|
||||
viewBox="0 0 474.7453 874.73669"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="poster_box.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="793.93998 : 527.81063 : 1"
|
||||
inkscape:vp_y="-556.6837 : 511.78875 : 0"
|
||||
inkscape:vp_z="351.95405 : 686.33822 : 1"
|
||||
inkscape:persp3d-origin="1048.0938 : 843.522 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.76207568"
|
||||
inkscape:cx="224.38716"
|
||||
inkscape:cy="390.38118"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0"
|
||||
units="px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-154.57584"
|
||||
originy="-91.827049" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-154.57585,-91.827051)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-3"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="191.07091"
|
||||
y="110.05134" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-6"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="200.22273"
|
||||
y="100.90605" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="181.98607"
|
||||
y="119.14932" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="172.82809"
|
||||
y="128.40114" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#ff00e4;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="422.41934"
|
||||
height="625.82373"
|
||||
x="161.06851"
|
||||
y="145.01726" />
|
||||
<rect
|
||||
style="fill:#500000;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="163.65485"
|
||||
y="137.5267" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:43.787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422"
|
||||
width="159.03918"
|
||||
height="128.539"
|
||||
x="320.90356"
|
||||
y="794.83813" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.20229,0,0,1.0635649,-60.559869,-148.41382)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-7.5424348"
|
||||
inkscape:transform-center-y="-0.17399835"
|
||||
transform="matrix(1.2787764,0,0,1.1731843,-86.65708,-185.67385)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 393.74995,637.5 46.2305,-16.56225 -61.23521,-56.29676 -51.79733,11.44435 z"
|
||||
points="439.98045,620.93775 378.74524,564.64099 326.94791,576.08534 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 393.74995,637.5 -66.80204,-61.41466 -34.88199,57.46778 79.77767,73.34382 z"
|
||||
points="326.94791,576.08534 292.06592,633.55312 371.84359,706.89694 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 393.74995,637.5 46.2305,-16.56225 -11.6606,59.69859 -56.47626,26.2606 z"
|
||||
points="439.98045,620.93775 428.31985,680.63634 371.84359,706.89694 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 371.84359,706.89694 56.47626,-26.2606 -71.96466,-66.16091 -64.28927,19.07769 z"
|
||||
points="428.31985,680.63634 356.35519,614.47543 292.06592,633.55312 371.84359,706.89694 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 439.98045,620.93775 -61.23521,-56.29676 -22.39005,49.83444 71.96466,66.16091 z"
|
||||
points="378.74524,564.64099 356.35519,614.47543 428.31985,680.63634 439.98045,620.93775 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 326.94791,576.08534 51.79733,-11.44435 -22.39005,49.83444 -64.28927,19.07769 z"
|
||||
points="378.74524,564.64099 356.35519,614.47543 292.06592,633.55312 326.94791,576.08534 " />
|
||||
</g>
|
||||
<ellipse
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:17.681;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path14840"
|
||||
cx="400.40192"
|
||||
cy="947.48474"
|
||||
rx="92.605949"
|
||||
ry="10.238518" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.8 KiB |
194
assets/themes/advertising/poster_box_no_support.svg
Normal file
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="133.98367mm"
|
||||
height="195.03563mm"
|
||||
viewBox="0 0 474.7453 691.07113"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="poster_box_no_support.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="793.93998 : 344.14507 : 1"
|
||||
inkscape:vp_y="-556.6837 : 511.78878 : 0"
|
||||
inkscape:vp_z="351.95405 : 502.67267 : 1"
|
||||
inkscape:persp3d-origin="1048.0938 : 659.85646 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.76207568"
|
||||
inkscape:cx="153.52806"
|
||||
inkscape:cy="469.11351"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-154.57584"
|
||||
originy="-91.827053" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-154.57585,-91.827051)">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-3"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="191.07091"
|
||||
y="110.05134" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-6"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="200.22273"
|
||||
y="100.90605" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="181.98607"
|
||||
y="119.14932" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="172.82809"
|
||||
y="128.40114" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#ff00e4;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="422.41934"
|
||||
height="625.82373"
|
||||
x="161.06851"
|
||||
y="145.01726" />
|
||||
<rect
|
||||
style="fill:#500000;fill-opacity:0;stroke:#999999;stroke-width:18.158;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219"
|
||||
width="420.01941"
|
||||
height="636.29248"
|
||||
x="163.65485"
|
||||
y="137.5267" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.20229,0,0,1.0635649,-60.559869,-148.41382)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-7.5424348"
|
||||
inkscape:transform-center-y="-0.17399835"
|
||||
transform="matrix(1.2787764,0,0,1.1731843,-86.65708,-185.67385)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 393.74995,637.5 46.23049,-16.56224 -61.23521,-56.29677 -51.79733,11.44436 z"
|
||||
points="439.98044,620.93776 378.74523,564.64099 326.9479,576.08535 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 393.74995,637.5 -66.80205,-61.41465 -34.88198,57.46777 79.77767,73.34383 z"
|
||||
points="326.9479,576.08535 292.06592,633.55312 371.84359,706.89695 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 393.74995,637.5 46.23049,-16.56224 -11.6606,59.69859 -56.47625,26.2606 z"
|
||||
points="439.98044,620.93776 428.31984,680.63635 371.84359,706.89695 393.74995,637.5 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 371.84359,706.89695 56.47625,-26.2606 -71.96465,-66.16092 -64.28927,19.07769 z"
|
||||
points="428.31984,680.63635 356.35519,614.47543 292.06592,633.55312 371.84359,706.89695 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 439.98044,620.93776 -61.23521,-56.29677 -22.39004,49.83444 71.96465,66.16092 z"
|
||||
points="378.74523,564.64099 356.35519,614.47543 428.31984,680.63635 439.98044,620.93776 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 326.9479,576.08535 51.79733,-11.44436 -22.39004,49.83444 -64.28927,19.07769 z"
|
||||
points="378.74523,564.64099 356.35519,614.47543 292.06592,633.55312 326.9479,576.08535 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
BIN
assets/themes/advertising/screen alcoi.jpg
Normal file
After Width: | Height: | Size: 28 KiB |
127
assets/themes/advertising/screen.svg
Normal file
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
width="124.24321mm"
|
||||
height="210.29477mm"
|
||||
viewBox="0 0 440.23185 745.13895"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs4"/>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(-155.91226,-136.11101)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#999999;stroke-width:17.8125;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="background"
|
||||
width="422.41934"
|
||||
height="625.82373"
|
||||
x="164.81851"
|
||||
y="145.01726"/>
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7422"
|
||||
width="393.75"
|
||||
height="112.49997"
|
||||
x="178.125"
|
||||
y="768.75"/>
|
||||
<g transform="translate(360,460)" id="spiral">
|
||||
|
||||
<path
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
d="m 0,0 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
>
|
||||
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="rotate"
|
||||
from="0 0 0"
|
||||
to="360 0 0"
|
||||
dur="10s"
|
||||
repeatCount="indefinite"/>
|
||||
|
||||
<animateTransform attributeName="transform" attributeType="XML"
|
||||
type="scale" values="0.1;2;0.1" repeatCount="indefinite" dur="5s" fill="freeze"
|
||||
additive="sum"/>
|
||||
|
||||
|
||||
</path>
|
||||
</g>
|
||||
<g id="star" transform="matrix(1,0,0,1,380,320)">
|
||||
<path
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
d="m 0,0 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
>
|
||||
|
||||
<animate attributeName="fill" values="#ff0000;#ffff00;#ff0000" dur="3s"
|
||||
repeatCount="indefinite"></animate>
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="rotate"
|
||||
values="0 0 0;-30 0 0; 0 0 0; 30 0 0; 0 0 0"
|
||||
dur="1s"
|
||||
repeatCount="indefinite"/>
|
||||
</path>
|
||||
</g>
|
||||
<g
|
||||
id="box"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
|
||||
<animateTransform attributeName="transform" attributeType="XML" type="translate"
|
||||
values="-45 -30; 45 -30;-45 -30"
|
||||
dur="1s"
|
||||
repeatCount="indefinite"
|
||||
></animateTransform>
|
||||
<path
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 46.2305,-16.56225 -61.23521,-56.29676 -51.79733,11.44435 z"
|
||||
points="441.31689,665.22171 380.08168,608.92495 328.28435,620.3693 395.08639,681.78396 "/>
|
||||
<path
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 -66.80204,-61.41466 -34.88198,57.46778 79.77767,73.34382 z"
|
||||
points="328.28435,620.3693 293.40237,677.83708 373.18004,751.1809 395.08639,681.78396 "/>
|
||||
<path
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 46.2305,-16.56225 -11.6606,59.69859 -56.47625,26.2606 z"
|
||||
points="441.31689,665.22171 429.65629,724.9203 373.18004,751.1809 395.08639,681.78396 "/>
|
||||
<path
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 373.18004,751.1809 56.47625,-26.2606 -71.96466,-66.16091 -64.28926,19.07769 z"
|
||||
points="429.65629,724.9203 357.69163,658.75939 293.40237,677.83708 373.18004,751.1809 "/>
|
||||
<path
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 441.31689,665.22171 -61.23521,-56.29676 -22.39005,49.83444 71.96466,66.16091 z"
|
||||
points="380.08168,608.92495 357.69163,658.75939 429.65629,724.9203 441.31689,665.22171 "/>
|
||||
<path
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 328.28435,620.3693 51.79733,-11.44435 -22.39005,49.83444 -64.28926,19.07769 z"
|
||||
points="380.08168,608.92495 357.69163,658.75939 293.40237,677.83708 328.28435,620.3693 "/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.4 KiB |
151
assets/themes/advertising/screen_no_support.svg
Normal file
|
@ -0,0 +1,151 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="124.24321mm"
|
||||
height="181.64844mm"
|
||||
viewBox="0 0 440.23185 643.6362"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
sodipodi:docname="screen_no_support.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview19"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.96248828"
|
||||
inkscape:cx="182.85937"
|
||||
inkscape:cy="368.31617"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs4" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(-155.91226,-136.11101)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#999999;stroke-width:17.8125;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="background"
|
||||
width="422.41934"
|
||||
height="625.82373"
|
||||
x="164.81851"
|
||||
y="145.01726" />
|
||||
<g
|
||||
transform="translate(360,460)"
|
||||
id="spiral">
|
||||
<path
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
d="m 0,0 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 C 59.58467,45.10671 32.90495,70.08239 1.20338,74.01523">
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="rotate"
|
||||
from="0 0 0"
|
||||
to="360 0 0"
|
||||
dur="10s"
|
||||
repeatCount="indefinite" />
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="scale"
|
||||
values="0.1;2;0.1"
|
||||
repeatCount="indefinite"
|
||||
dur="5s"
|
||||
fill="freeze"
|
||||
additive="sum" />
|
||||
</path>
|
||||
</g>
|
||||
<g
|
||||
id="star"
|
||||
transform="translate(380,320)">
|
||||
<path
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
d="m 0,0 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z">
|
||||
<animate
|
||||
attributeName="fill"
|
||||
values="#ff0000;#ffff00;#ff0000"
|
||||
dur="3s"
|
||||
repeatCount="indefinite" />
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="rotate"
|
||||
values="0 0 0;-30 0 0; 0 0 0; 30 0 0; 0 0 0"
|
||||
dur="1s"
|
||||
repeatCount="indefinite" />
|
||||
</path>
|
||||
</g>
|
||||
<g
|
||||
id="box"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
attributeType="XML"
|
||||
type="translate"
|
||||
values="-45 -30; 45 -30;-45 -30"
|
||||
dur="1s"
|
||||
repeatCount="indefinite" />
|
||||
<path
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 46.2305,-16.56225 -61.23521,-56.29676 -51.79733,11.44435 z"
|
||||
points="441.31689,665.22171 380.08168,608.92495 328.28435,620.3693 395.08639,681.78396 " />
|
||||
<path
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 -66.80204,-61.41466 -34.88198,57.46778 79.77767,73.34382 z"
|
||||
points="328.28435,620.3693 293.40237,677.83708 373.18004,751.1809 395.08639,681.78396 " />
|
||||
<path
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 395.08639,681.78396 46.2305,-16.56225 -11.6606,59.69859 -56.47625,26.2606 z"
|
||||
points="441.31689,665.22171 429.65629,724.9203 373.18004,751.1809 395.08639,681.78396 " />
|
||||
<path
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 373.18004,751.1809 56.47625,-26.2606 -71.96466,-66.16091 -64.28926,19.07769 z"
|
||||
points="429.65629,724.9203 357.69163,658.75939 293.40237,677.83708 373.18004,751.1809 " />
|
||||
<path
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 441.31689,665.22171 -61.23521,-56.29676 -22.39005,49.83444 71.96466,66.16091 z"
|
||||
points="380.08168,608.92495 357.69163,658.75939 429.65629,724.9203 441.31689,665.22171 " />
|
||||
<path
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 328.28435,620.3693 51.79733,-11.44435 -22.39005,49.83444 -64.28926,19.07769 z"
|
||||
points="380.08168,608.92495 357.69163,658.75939 293.40237,677.83708 328.28435,620.3693 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7 KiB |
64
assets/themes/advertising/sculpture.svg
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 255.0568 499.44943"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="sculpture.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
width="255.05681"
|
||||
height="499.44943"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs12"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 454.44943 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="166.43101 : 426.34956 : 1"
|
||||
inkscape:persp3d-origin="44.999998 : 439.44943 : 1"
|
||||
id="perspective955" /></defs><sodipodi:namedview
|
||||
id="namedview10"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.55174605"
|
||||
inkscape:cx="574.53968"
|
||||
inkscape:cy="435.88893"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="sculpture"
|
||||
style="display:inline"
|
||||
transform="translate(-29.538009,0.49903361)"><path
|
||||
id="path2"
|
||||
d="m 122.10663,3.6815564 c -4.03008,0.3437396 -7.80472,1.613207 -11.06834,4.045121 -17.147747,12.7690776 -15.49734,36.1064336 -4.55475,57.0457636 6.70255,12.826156 18.63228,22.415705 26.81884,34.972781 19.65916,30.145138 -17.11691,34.046798 -33.22095,47.394808 -24.575995,20.36855 -12.7952,51.29493 2.78699,60.19904 18.41976,10.5349 34.12936,15.58563 37.8394,38.58791 3.71005,23.00228 -14.83839,28.94141 -37.10682,46.75778 -22.260267,17.81637 -37.595677,35.33372 -53.430638,63.08159 -20.262554,35.49412 -23.384365,78.14919 -1.067017,107.62571 l 9.268744,10.09687 c 4.329745,3.92205 9.249884,7.49093 14.810874,10.63835 40.288647,22.74136 109.850077,2.89682 123.662857,-1.44924 10.01305,-3.17188 23.38487,-13.78544 31.34173,-21.89779 4.48429,-5.55816 5.11194,-7.02618 10.54279,-13.34572 4.93314,-6.85747 10.29958,-14.99293 16.26012,-24.89183 23.4589,-38.91062 27.28756,-63.69416 24.95553,-95.31516 -2.60111,-35.18427 -23.08497,-60.02462 -25.43331,-70.18443 -4.4439,-19.29224 2.70151,-37.8319 5.66955,-49.70404 2.96803,-11.8803 9.06718,-30.12539 0,-54.16322 C 248.68516,122.65564 211.95278,107.15589 203.05683,100.4778 194.15272,93.799724 184.50151,75.249624 181.52532,64.119488 178.54913,52.989353 173.54885,35.001878 158.16236,19.60723 148.5672,9.9998444 134.1969,2.6503371 122.10663,3.6815564 Z"
|
||||
sodipodi:nodetypes="scccccsccccccccccccccscs"
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#999999;stroke-width:8.15394;stroke-opacity:1" /><path
|
||||
sodipodi:type="star"
|
||||
style="display:inline;opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8.00044;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
inkscape:transform-center-x="-7.0158563"
|
||||
inkscape:transform-center-y="-0.16181918"
|
||||
transform="matrix(1.2688011,0,0,1.1640327,-295.87121,-251.3695)"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z" /></g></svg>
|
After Width: | Height: | Size: 3.8 KiB |
90
assets/themes/advertising/sign.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="39.126469mm"
|
||||
height="37.535686mm"
|
||||
viewBox="0 0 138.63709 133.00046"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="sign.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="972.69784 : 125.55055 : 1"
|
||||
inkscape:vp_y="-491.9059 : 452.23511 : 0"
|
||||
inkscape:vp_z="582.14309 : 265.63128 : 1"
|
||||
inkscape:persp3d-origin="1197.2773 : 404.52455 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.0196925"
|
||||
inkscape:cx="184.36931"
|
||||
inkscape:cy="205.4541"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="-300"
|
||||
originy="-339.36175" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-300,-339.36174)"
|
||||
style="display:inline">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8.00044;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-6.6647706"
|
||||
inkscape:transform-center-y="-0.15374529"
|
||||
transform="matrix(1.1299732,0,0,1.0366682,-38.991705,-158.92367)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
BIN
assets/themes/advertising/sign_EOI.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
187
assets/themes/advertising/tarp.svg
Normal file
|
@ -0,0 +1,187 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="136.93828mm"
|
||||
height="136.93828mm"
|
||||
viewBox="0 0 485.21437 485.21437"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="tarp.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="608.79093 : 296.55404 : 1"
|
||||
inkscape:vp_y="-438.01858 : 402.69365 : 0"
|
||||
inkscape:vp_z="261.02065 : 421.2892 : 1"
|
||||
inkscape:persp3d-origin="808.76821 : 544.967 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.9362399"
|
||||
inkscape:cx="285.18332"
|
||||
inkscape:cy="303.87511"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
originx="523.85719"
|
||||
originy="-132.3928"
|
||||
spacingx="9.3750001"
|
||||
spacingy="9.3750001" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(369.28136,-224.21986)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:0;stroke:#999999;stroke-width:16.4644;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4219-8-7-6"
|
||||
width="468.75"
|
||||
height="468.75"
|
||||
x="-361.04916"
|
||||
y="232.45206" />
|
||||
<path
|
||||
id="rect861"
|
||||
style="fill:#fffe73;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m -332.92416,260.57705 206.25001,18.75 206.249999,-18.75 -18.75,206.25 18.75,206.25001 -206.249999,-18.75 -206.25001,18.75 18.75001,-206.25001 z"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#444444;stroke-width:7.49999975;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -361.04916,232.45205 56.25001,37.5 65.625,-37.5 46.875,46.875 65.625,-46.875 74.999998,46.875 65.625001,-46.875 37.5,37.5 56.250001,-37.5"
|
||||
id="path1951"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#444444;stroke-width:7.49999975;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -361.04916,701.20206 56.25002,-37.5 65.62499,37.5 46.87501,-46.875 65.62499,46.875 74.999998,-46.875 65.624995,46.875 37.500006,-37.5 56.249991,37.5"
|
||||
id="path2146"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#444444;stroke-width:7.49999975;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -361.04916,232.45205 37.5,56.25 -37.49999,65.62502 46.87499,46.87498 -46.87499,65.62502 46.87499,74.99997 -46.87499,65.62503 37.49999,37.49998 -37.49999,56.25001"
|
||||
id="path2148"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#444444;stroke-width:7.49999975;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 107.70085,232.45205 -37.500001,56.25001 37.500001,65.625 -46.875001,46.875 46.875001,65.625 -46.875001,74.99999 46.875001,65.62501 -37.500001,37.5 37.500001,56.24999"
|
||||
id="path2150"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.12833,0,0,0.99813869,-607.89226,12.670946)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="3.0525127"
|
||||
inkscape:transform-center-y="-2.4410443"
|
||||
transform="matrix(1.0681404,-0.5471226,0.50194513,0.97994105,-697.50884,171.10524)" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m -196.99999,569.2613 36.3758,-13.03176 -48.18204,-44.29631 -40.75599,9.00483 z"
|
||||
points="-160.62419,556.22954 -208.80623,511.93323 -249.56222,520.93806 -196.99999,569.2613 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m -196.99999,569.2613 -52.56223,-48.32324 -27.44639,45.21769 62.77191,57.70954 z"
|
||||
points="-249.56222,520.93806 -277.00861,566.15575 -214.2367,623.86529 -196.99999,569.2613 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m -196.99999,569.2613 36.3758,-13.03176 -9.17497,46.97297 -44.43754,20.66278 z"
|
||||
points="-160.62419,556.22954 -169.79916,603.20251 -214.2367,623.86529 -196.99999,569.2613 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m -214.2367,623.86529 44.43754,-20.66278 -56.62436,-52.05777 -50.58509,15.01101 z"
|
||||
points="-169.79916,603.20251 -226.42352,551.14474 -277.00861,566.15575 -214.2367,623.86529 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m -160.62419,556.22954 -48.18204,-44.29631 -17.61729,39.21151 56.62436,52.05777 z"
|
||||
points="-208.80623,511.93323 -226.42352,551.14474 -169.79916,603.20251 -160.62419,556.22954 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8.25861;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m -249.56222,520.93806 40.75599,-9.00483 -17.61729,39.21151 -50.58509,15.01101 z"
|
||||
points="-208.80623,511.93323 -226.42352,551.14474 -277.00861,566.15575 -249.56222,520.93806 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.9 KiB |
BIN
assets/themes/advertising/tarp_feder.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
assets/themes/advertising/tarp_madrid.jpg
Normal file
After Width: | Height: | Size: 116 KiB |
283
assets/themes/advertising/totem.svg
Normal file
|
@ -0,0 +1,283 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="71.367188mm"
|
||||
height="257.55438mm"
|
||||
viewBox="0 0 252.87586 912.59427"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="Totem.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="1-2"
|
||||
inkscape:swatch="gradient">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop13665" />
|
||||
<stop
|
||||
style="stop-color:#e2e0e0;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop13667" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7260"
|
||||
inkscape:swatch="solid">
|
||||
<stop
|
||||
style="stop-color:#999999;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7262" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="631.04484 : 539.87547 : 1"
|
||||
inkscape:vp_y="-491.9059 : 452.2351 : 0"
|
||||
inkscape:vp_z="240.49008 : 679.9562 : 1"
|
||||
inkscape:persp3d-origin="855.6243 : 818.8495 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.44742011"
|
||||
inkscape:cx="326.31524"
|
||||
inkscape:cy="588.93196"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:pagecheckerboard="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4298"
|
||||
spacingx="0.09375"
|
||||
spacingy="0.09375"
|
||||
snapvisiblegridlinesonly="false"
|
||||
originx="-239.36593"
|
||||
originy="-69.287831" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-239.36594,-69.287832)">
|
||||
<path
|
||||
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:4.44632;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 277.66758,950.95882 198.41598,-0.41446 c 0,0 12.50491,4.01769 13.61247,7.13538 1.56621,4.40906 -2.49298,9.92048 -10.56866,14.34965 -5.71041,3.13191 -24.18108,7.21431 -24.18108,7.21431 l -198.41599,0.41447 c 0,0 -12.50488,-4.01768 -13.61243,-7.13537 -1.56623,-4.40907 2.49295,-9.92048 10.56864,-14.34967 5.71039,-3.13191 24.18107,-7.21431 24.18107,-7.21431 z"
|
||||
id="path11845-5-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccssccaac" />
|
||||
<rect
|
||||
style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:5.06234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect7276"
|
||||
width="246.97043"
|
||||
height="220.96555"
|
||||
x="242.49832"
|
||||
y="738.86218" />
|
||||
<rect
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;stroke:#060606;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11569"
|
||||
width="242.03123"
|
||||
height="8.5714283"
|
||||
x="245"
|
||||
y="953.79077" />
|
||||
<rect
|
||||
style="fill:#fffe73;fill-opacity:1;stroke:#999999;stroke-width:19.709;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7-5"
|
||||
width="232.291"
|
||||
height="632.0105"
|
||||
x="249.85451"
|
||||
y="101.10674" />
|
||||
<path
|
||||
style="fill:#fffe73;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:5.03406;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 277.44998,726.63706 198.14377,-0.41816 c 0,0 12.48775,4.05333 13.59377,7.19863 1.56408,4.44815 -2.48955,10.00841 -10.55415,14.47684 -5.70258,3.15969 -24.14791,7.27825 -24.14791,7.27825 l -198.14379,0.41817 c 0,0 -12.48773,-4.05332 -13.59376,-7.19862 -1.56409,-4.44816 2.48955,-10.00841 10.55416,-14.47686 5.70255,-3.15969 24.14791,-7.27825 24.14791,-7.27825 z"
|
||||
id="path11845-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccssccaac" />
|
||||
<path
|
||||
style="fill:#fffe73;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:6.29871;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 277.44451,72.880085 197.60391,-0.441721 c 0,0 12.45374,4.281941 13.55675,7.604659 1.55982,4.699041 -2.48278,10.572925 -10.52538,15.2934 -5.68705,3.337916 -24.08215,7.688777 -24.08215,7.688777 l -197.60391,0.44174 c 0,0 -12.45373,-4.281918 -13.55674,-7.604641 -1.55982,-4.699058 2.48276,-10.572927 10.52542,-15.293431 5.68701,-3.337897 24.0821,-7.688783 24.0821,-7.688783 z"
|
||||
id="path11845"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccssccaac" />
|
||||
<rect
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:3.70716;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11895"
|
||||
width="0.86569679"
|
||||
height="8.2228403"
|
||||
x="241.875"
|
||||
y="961.23718" />
|
||||
<rect
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11897"
|
||||
width="6.1607132"
|
||||
height="10.999999"
|
||||
x="245.08928"
|
||||
y="959.96936" />
|
||||
<rect
|
||||
style="opacity:1;fill:#a297ff;fill-opacity:1;stroke:#060606;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11569-4-2"
|
||||
width="39.785679"
|
||||
height="35.205822"
|
||||
x="264.10516"
|
||||
y="708.01154" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#999999;stroke-width:3.02409;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11847"
|
||||
width="1.1134398"
|
||||
height="7.1867266"
|
||||
x="483.49316"
|
||||
y="93.758133" />
|
||||
<rect
|
||||
style="opacity:1;fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:11.318;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11847-9"
|
||||
width="8.6744719"
|
||||
height="12.921288"
|
||||
x="245.85678"
|
||||
y="729.45007" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#999999;stroke-width:10.5894;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11847-9-7"
|
||||
width="9.2615595"
|
||||
height="10.594157"
|
||||
x="477.41241"
|
||||
y="722.17432" />
|
||||
<path
|
||||
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.942706px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 472.2276,734.27145 0.17865,13.29458 5.02956,-2.14132 4.08391,-2.26821 4.24615,-4.46884 1.44452,-4.15446 z"
|
||||
id="path12440"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:1.96941px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 242.185,724.52365 15.28949,-0.50126 0.59616,27.93764 -4.27083,-0.17857 -2.69502,-0.73175 -2.1873,-1.45805 -5.15881,-3.26017 -0.86315,-7.13347 -0.33955,-8.22212 z"
|
||||
id="path12442"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649"
|
||||
transform="matrix(1.062387,0,0,0.93980447,-26.951225,-93.33403)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;stroke:#ff0000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z"
|
||||
inkscape:transform-center-x="-6.6647706"
|
||||
inkscape:transform-center-y="-0.15374529"
|
||||
transform="matrix(1.1299732,0,0,1.0366682,-47.154525,-134.82977)" />
|
||||
<rect
|
||||
style="opacity:1;fill:#fffe73;fill-opacity:1;stroke:#060606;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11569-4"
|
||||
width="212.66066"
|
||||
height="40.090702"
|
||||
x="259.46436"
|
||||
y="703.70593" />
|
||||
<rect
|
||||
style="opacity:1;fill:#2c6823;fill-opacity:1;stroke:#999999;stroke-width:5.53973;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect11847-9-7-7"
|
||||
width="1.5569199"
|
||||
height="17.247229"
|
||||
x="487.63058"
|
||||
y="82.802475" />
|
||||
<g
|
||||
sodipodi:type="inkscape:box3d"
|
||||
id="g7229"
|
||||
style="opacity:1;fill:#b5befe;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:8.659;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
inkscape:perspectiveID="#perspective7227"
|
||||
inkscape:corner0="-1.7750984 : -0.31587834 : 0 : 1"
|
||||
inkscape:corner7="-1.8455619 : -0.40889015 : 0.12606765 : 1">
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7235"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="3"
|
||||
d="m 380.19963,617.62659 40.85093,-14.635 -54.10965,-49.74586 -45.76999,10.11265 z"
|
||||
points="421.05056,602.99159 366.94091,553.24573 321.17092,563.35838 380.19963,617.62659 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7231"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="6"
|
||||
d="m 380.19963,617.62659 -59.02871,-54.26821 -30.82297,50.78061 70.49443,64.80926 z"
|
||||
points="321.17092,563.35838 290.34795,614.13899 360.84238,678.94825 380.19963,617.62659 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7233"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="5"
|
||||
d="m 380.19963,617.62659 40.85093,-14.635 -10.30372,52.75184 -49.90446,23.20482 z"
|
||||
points="421.05056,602.99159 410.74684,655.74343 360.84238,678.94825 380.19963,617.62659 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7241"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="11"
|
||||
d="m 360.84238,678.94825 49.90446,-23.20482 -63.59058,-58.46218 -56.80831,16.85774 z"
|
||||
points="410.74684,655.74343 347.15626,597.28125 290.34795,614.13899 360.84238,678.94825 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7237"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="14"
|
||||
d="m 421.05056,602.99159 -54.10965,-49.74586 -19.78465,44.03552 63.59058,58.46218 z"
|
||||
points="366.94091,553.24573 347.15626,597.28125 410.74684,655.74343 421.05056,602.99159 " />
|
||||
<path
|
||||
sodipodi:type="inkscape:box3dside"
|
||||
id="path7239"
|
||||
style="fill:#b5befe;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:7.29761;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:box3dsidetype="13"
|
||||
d="m 321.17092,563.35838 45.76999,-10.11265 -19.78465,44.03552 -56.80831,16.85774 z"
|
||||
points="366.94091,553.24573 347.15626,597.28125 290.34795,614.13899 321.17092,563.35838 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
383
assets/themes/advertising/trivision.svg
Normal file
|
@ -0,0 +1,383 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="75.346275mm"
|
||||
height="136.28893mm"
|
||||
viewBox="0 0 75.346275 136.28893"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="trivision.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:zoom="2.1351313"
|
||||
inkscape:cx="142.38"
|
||||
inkscape:cy="273.2853"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="13.641759,106.82037"
|
||||
orientation="0,-1"
|
||||
id="guide8586" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="110.50655 : 286.25899 : 1"
|
||||
inkscape:vp_y="-130.15011 : 119.65388 : 0"
|
||||
inkscape:vp_z="7.1722599 : 323.32202 : 1"
|
||||
inkscape:persp3d-origin="169.92653 : 360.07087 : 1"
|
||||
id="perspective7227" />
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="227.59561 : 261.14081 : 1"
|
||||
inkscape:vp_y="-186.396 : 178.17994 : 0"
|
||||
inkscape:vp_z="79.604172 : 316.33242 : 1"
|
||||
inkscape:persp3d-origin="312.69465 : 371.05615 : 1"
|
||||
id="perspective7227-4" />
|
||||
<symbol
|
||||
id="w"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 18.766,-1.125 c -0.96875,0.5 -1.9805,0.875 -3.0312,1.125 -1.043,0.25781 -2.1367,0.39062 -3.2812,0.39062 -3.3984,0 -6.0898,-0.94531 -8.0781,-2.8438 -1.9922,-1.9062 -2.9844,-4.4844 -2.9844,-7.7344 0,-3.2578 0.99219,-5.8359 2.9844,-7.7344 1.9883,-1.9062 4.6797,-2.8594 8.0781,-2.8594 1.1445,0 2.2383,0.13281 3.2812,0.39062 1.0508,0.25 2.0625,0.625 3.0312,1.125 v 4.2188 c -0.98047,-0.65625 -1.9453,-1.1406 -2.8906,-1.4531 -0.94922,-0.3125 -1.9492,-0.46875 -3,-0.46875 -1.875,0 -3.3516,0.60547 -4.4219,1.8125 -1.0742,1.1992 -1.6094,2.8555 -1.6094,4.9688 0,2.1055 0.53516,3.7617 1.6094,4.9688 1.0703,1.1992 2.5469,1.7969 4.4219,1.7969 1.0508,0 2.0508,-0.14844 3,-0.45312 0.94531,-0.3125 1.9102,-0.80078 2.8906,-1.4688 z"
|
||||
id="path7799" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="d"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 13.734,-11.141 c -0.4375,-0.19531 -0.87109,-0.34375 -1.2969,-0.4375 -0.41797,-0.10156 -0.83984,-0.15625 -1.2656,-0.15625 -1.2617,0 -2.2305,0.40625 -2.9062,1.2188 -0.67969,0.80469 -1.0156,1.9531 -1.0156,3.4531 v 7.0625 H 2.3591 v -15.312 h 4.8906 v 2.5156 c 0.625,-1 1.3438,-1.7266 2.1562,-2.1875 0.82031,-0.46875 1.8008,-0.70312 2.9375,-0.70312 0.16406,0 0.34375,0.01172 0.53125,0.03125 0.19531,0.01172 0.47656,0.03906 0.84375,0.07813 z"
|
||||
id="path7802" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="b"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 17.641,-7.7031 v 1.4062 H 6.188 c 0.125,1.1484 0.53906,2.0078 1.25,2.5781 0.70703,0.57422 1.7031,0.85938 2.9844,0.85938 1.0312,0 2.082,-0.14844 3.1562,-0.45312 1.082,-0.3125 2.1914,-0.77344 3.3281,-1.3906 v 3.7656 c -1.1562,0.4375 -2.3125,0.76562 -3.4688,0.98438 -1.1562,0.22656 -2.3125,0.34375 -3.4688,0.34375 -2.7734,0 -4.9297,-0.70312 -6.4688,-2.1094 -1.5312,-1.4062 -2.2969,-3.3789 -2.2969,-5.9219 0,-2.5 0.75391,-4.4609 2.2656,-5.8906 1.5078,-1.4375 3.582,-2.1562 6.2188,-2.1562 2.4062,0 4.332,0.73047 5.7812,2.1875 1.4453,1.4492 2.1719,3.3828 2.1719,5.7969 z m -5.0312,-1.625 c 0,-0.92578 -0.27344,-1.6719 -0.8125,-2.2344 -0.54297,-0.57031 -1.25,-0.85938 -2.125,-0.85938 -0.94922,0 -1.7188,0.26562 -2.3125,0.79688 -0.5937,0.53126 -0.96484,1.2969 -1.1094,2.2969 z"
|
||||
id="path7805" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="e"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 9.2188,-6.8906 c -1.0234,0 -1.793,0.17188 -2.3125,0.51562 -0.51172,0.34375 -0.76562,0.85547 -0.76562,1.5312 0,0.625 0.20703,1.1172 0.625,1.4688 0.41406,0.34375 0.98828,0.51562 1.7188,0.51562 0.92578,0 1.7031,-0.32812 2.3281,-0.98438 0.63281,-0.66406 0.95312,-1.4922 0.95312,-2.4844 v -0.5625 z m 7.4688,-1.8438 V 0 h -4.9219 v -2.2656 c -0.65625,0.92969 -1.3984,1.6055 -2.2188,2.0312 -0.82422,0.41406 -1.8242,0.625 -3,0.625 -1.5859,0 -2.8711,-0.45703 -3.8594,-1.375 -0.99219,-0.92578 -1.4844,-2.1289 -1.4844,-3.6094 0,-1.7891 0.61328,-3.1016 1.8438,-3.9375 1.2383,-0.84375 3.1797,-1.2656 5.8281,-1.2656 h 2.8906 v -0.39062 c 0,-0.76953 -0.30859,-1.332 -0.92188,-1.6875 -0.61719,-0.36328 -1.5703,-0.54688 -2.8594,-0.54688 -1.0547,0 -2.0312,0.10547 -2.9375,0.3125 -0.89844,0.21094 -1.7305,0.52344 -2.5,0.9375 v -3.7344 c 1.0391,-0.25 2.0859,-0.44141 3.1406,-0.57812 1.0625,-0.13281 2.125,-0.20312 3.1875,-0.20312 2.7578,0 4.75,0.54688 5.9688,1.6406 1.2266,1.0859 1.8438,2.8555 1.8438,5.3125 z"
|
||||
id="path7808" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="c"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 7.7031,-19.656 v 4.3438 H 12.75 v 3.5 H 7.7031 v 6.5 c 0,0.71094 0.14062,1.1875 0.42188,1.4375 0.28126,0.25 0.83594,0.375 1.6719,0.375 h 2.5156 v 3.5 h -4.1875 c -1.9375,0 -3.3125,-0.39844 -4.125,-1.2031 -0.80469,-0.8125 -1.2031,-2.1797 -1.2031,-4.1094 v -6.5 h -2.4219 v -3.5 h 2.4219 v -4.3438 z"
|
||||
id="path7811" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="l"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 12.766,-13.078 v -8.2031 h 4.9219 V -10e-5 H 12.766 v -2.2188 c -0.66797,0.90625 -1.4062,1.5703 -2.2188,1.9844 -0.8126,0.4141 -1.7578,0.625 -2.8281,0.625 -1.8867,0 -3.4336,-0.75 -4.6406,-2.25 -1.2109,-1.5 -1.8125,-3.4258 -1.8125,-5.7812 0,-2.3633 0.60156,-4.2969 1.8125,-5.7969 1.207,-1.5 2.7539,-2.25 4.6406,-2.25 1.0625,0 2,0.21484 2.8125,0.64062 0.82031,0.42969 1.5664,1.0859 2.2344,1.9688 z m -3.2188,9.9219 c 1.0391,0 1.8359,-0.37891 2.3906,-1.1406 0.55078,-0.76953 0.82812,-1.8828 0.82812,-3.3438 0,-1.457 -0.27734,-2.5664 -0.82812,-3.3281 -0.55469,-0.76953 -1.3516,-1.1562 -2.3906,-1.1562 -1.043,0 -1.8398,0.38672 -2.3906,1.1562 -0.55469,0.76172 -0.82812,1.8711 -0.82812,3.3281 0,1.4609 0.27344,2.5742 0.82812,3.3438 0.55078,0.76172 1.3477,1.1406 2.3906,1.1406 z"
|
||||
id="path7814" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="k"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 10.5,-3.1562 c 1.0508,0 1.8516,-0.37891 2.4062,-1.1406 0.55078,-0.76953 0.82812,-1.8828 0.82812,-3.3438 0,-1.457 -0.27734,-2.5664 -0.82812,-3.3281 -0.55469,-0.76953 -1.3555,-1.1562 -2.4062,-1.1562 -1.0547,0 -1.8594,0.38672 -2.4219,1.1562 -0.55469,0.77344 -0.82812,1.8828 -0.82812,3.3281 0,1.4492 0.27344,2.5586 0.82812,3.3281 0.5625,0.77344 1.3672,1.1562 2.4219,1.1562 z m -3.25,-9.9219 c 0.67578,-0.88281 1.4219,-1.5391 2.2344,-1.9688 0.82031,-0.42578 1.7656,-0.64062 2.8281,-0.64062 1.8945,0 3.4453,0.75 4.6562,2.25 1.207,1.5 1.8125,3.4336 1.8125,5.7969 0,2.3555 -0.60547,4.2812 -1.8125,5.7812 -1.2109,1.5 -2.7617,2.25 -4.6562,2.25 -1.0625,0 -2.0078,-0.21094 -2.8281,-0.625 C 8.6719,-0.6602 7.9258,-1.32032 7.25,-2.21882 V -2e-5 H 2.3594 v -21.281 H 7.25 Z"
|
||||
id="path7817" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="j"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 0.34375,-15.312 h 4.8906 l 4.125,10.391 3.5,-10.391 h 4.8906 l -6.4375,16.766 c -0.64844,1.6953 -1.4023,2.8828 -2.2656,3.5625 -0.86719,0.6875 -2,1.0312 -3.4062,1.0312 H 2.79685 V 2.8289 h 1.5312 c 0.83203,0 1.4375,-0.13672 1.8125,-0.40625 C 6.52336,2.16093 6.82024,1.69218 7.03117,1.01645 L 7.17179,0.59457 Z"
|
||||
id="path7820" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="i"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 2.5781,-20.406 h 5.25 v 16.422 h 9.25 V 4e-4 h -14.5 z"
|
||||
id="path7823" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="a"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 9.6406,-12.188 c -1.0859,0 -1.9141,0.39062 -2.4844,1.1719 -0.57422,0.78125 -0.85938,1.9062 -0.85938,3.375 0,1.4688 0.28516,2.5938 0.85938,3.375 0.57031,0.77344 1.3984,1.1562 2.4844,1.1562 1.0625,0 1.875,-0.38281 2.4375,-1.1562 0.57031,-0.78125 0.85938,-1.9062 0.85938,-3.375 0,-1.4688 -0.28906,-2.5938 -0.85938,-3.375 -0.5625,-0.78125 -1.375,-1.1719 -2.4375,-1.1719 z m 0,-3.5 c 2.6328,0 4.6914,0.71484 6.1719,2.1406 1.4766,1.418 2.2188,3.3867 2.2188,5.9062 0,2.5117 -0.74219,4.4805 -2.2188,5.9062 C 14.332,-0.317 12.2734,0.39 9.6406,0.39 6.9922,0.39 4.9258,-0.31703 3.4375,-1.735 1.9453,-3.1608 1.2031,-5.1295 1.2031,-7.6412 c 0,-2.5195 0.74219,-4.4883 2.2344,-5.9062 1.4883,-1.4258 3.5547,-2.1406 6.2031,-2.1406 z"
|
||||
id="path7826" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="h"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 2.1875,-5.9688 v -9.3438 h 4.9219 v 1.5312 c 0,0.83594 -0.00781,1.875 -0.015625,3.125 -0.011719,1.25 -0.015625,2.0859 -0.015625,2.5 0,1.2422 0.03125,2.1328 0.09375,2.6719 0.070313,0.54297 0.17969,0.93359 0.32812,1.1719 0.20703,0.32422 0.47266,0.57422 0.79688,0.75 0.32031,0.16797 0.69141,0.25 1.1094,0.25 1.0195,0 1.8203,-0.39062 2.4062,-1.1719 0.58203,-0.78125 0.875,-1.8672 0.875,-3.2656 v -7.5625 h 4.8906 V -6e-4 H 12.6875 V -2.2194 C 11.94531,-1.32096 11.1641,-0.6608 10.3437,-0.235 9.51948,0.17906 8.6093,0.39 7.6093,0.39 5.8476,0.39 4.5038,-0.14906 3.5781,-1.235 2.64841,-2.317 2.1875,-3.8952 2.1875,-5.9694 Z"
|
||||
id="path7829" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="v"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="M 2.3594,-15.312 H 7.25 V 0 H 2.3594 Z m 0,-5.9688 H 7.25 v 4 H 2.3594 Z"
|
||||
id="path7832" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="g"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 14.312,-14.828 v 3.7188 c -1.043,-0.4375 -2.0547,-0.76562 -3.0312,-0.98438 -0.98047,-0.21875 -1.9023,-0.32812 -2.7656,-0.32812 -0.92969,0 -1.6211,0.11719 -2.0781,0.34375 -0.44922,0.23047 -0.67188,0.58984 -0.67188,1.0781 0,0.38672 0.17188,0.68359 0.51562,0.89062 0.34375,0.21094 0.95703,0.36719 1.8438,0.46875 l 0.85938,0.125 c 2.5078,0.32422 4.1953,0.85156 5.0625,1.5781 0.86328,0.73047 1.2969,1.8711 1.2969,3.4219 0,1.6367 -0.60547,2.8672 -1.8125,3.6875 -1.1992,0.8125 -2.9922,1.2188 -5.375,1.2188 -1.0234,0 -2.0742,-0.078125 -3.1562,-0.23438 -1.0742,-0.15625 -2.1797,-0.39453 -3.3125,-0.71875 v -3.7188 c 0.96875,0.48047 1.9609,0.83984 2.9844,1.0781 1.0312,0.23047 2.0781,0.34375 3.1406,0.34375 0.95703,0 1.6758,-0.12891 2.1562,-0.39062 0.47656,-0.26953 0.71875,-0.66406 0.71875,-1.1875 0,-0.4375 -0.16797,-0.75781 -0.5,-0.96875 -0.33594,-0.21875 -0.99609,-0.38281 -1.9844,-0.5 L 7.34339,-6.01551 c -2.1797,-0.26953 -3.7031,-0.77344 -4.5781,-1.5156 -0.875,-0.73828 -1.3125,-1.8594 -1.3125,-3.3594 0,-1.625 0.55078,-2.8281 1.6562,-3.6094 1.1133,-0.78906 2.8203,-1.1875 5.125,-1.1875 0.89453,0 1.8359,0.07422 2.8281,0.21875 1,0.13672 2.082,0.35156 3.25,0.64062 z"
|
||||
id="path7835" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="u"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 7.8281,-16.438 v 12.453 h 1.8906 c 2.1562,0 3.8008,-0.53125 4.9375,-1.5938 1.1328,-1.0625 1.7031,-2.6133 1.7031,-4.6562 0,-2.0195 -0.57031,-3.5547 -1.7031,-4.6094 -1.125,-1.0625 -2.7734,-1.5938 -4.9375,-1.5938 z m -5.25,-3.9688 H 8.125 c 3.0938,0 5.3984,0.21875 6.9219,0.65625 1.5195,0.4375 2.8203,1.1875 3.9062,2.25 0.95703,0.91797 1.6641,1.9805 2.125,3.1875 0.46875,1.1992 0.70312,2.5586 0.70312,4.0781 0,1.543 -0.23438,2.918 -0.70312,4.125 -0.46094,1.2109 -1.168,2.2773 -2.125,3.2031 -1.0938,1.0547 -2.4062,1.8047 -3.9375,2.25 C 13.4844,-0.21935 11.1875,-6e-4 8.125,-6e-4 H 2.5781 Z"
|
||||
id="path7838" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="t"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 0.98438,-15.312 h 4.7656 l 2.5625,10.547 2.5781,-10.547 h 4.0938 l 2.5781,10.438 2.5781,-10.438 h 4.75 L 20.85938,0 h -5.3438 L 12.93748,-10.531 10.35938,0 h -5.3438 z"
|
||||
id="path7841" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="f"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="M 17.75,-9.3281 V 0 h -4.9219 v -7.1406 c 0,-1.3203 -0.03125,-2.2344 -0.09375,-2.7344 -0.0625,-0.5 -0.16797,-0.86719 -0.3125,-1.1094 -0.1875,-0.3125 -0.44922,-0.55469 -0.78125,-0.73438 -0.32422,-0.17578 -0.69531,-0.26562 -1.1094,-0.26562 -1.0234,0 -1.8242,0.39844 -2.4062,1.1875 -0.58594,0.78125 -0.875,1.8711 -0.875,3.2656 V -1e-4 H 2.3594 v -15.312 H 7.25 v 2.2344 c 0.73828,-0.88281 1.5195,-1.5391 2.3438,-1.9688 0.83203,-0.42578 1.75,-0.64062 2.75,-0.64062 1.7695,0 3.1133,0.54688 4.0312,1.6406 0.91406,1.0859 1.375,2.6562 1.375,4.7188 z"
|
||||
id="path7844" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="s"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 12.422,-21.281 v 3.2188 H 9.7189 c -0.6875,0 -1.1719,0.125 -1.4531,0.375 -0.27344,0.25 -0.40625,0.6875 -0.40625,1.3125 v 1.0625 h 4.1875 v 3.5 H 7.85955 V -2e-4 h -4.8906 v -11.812 h -2.4375 v -3.5 h 2.4375 v -1.0625 c 0,-1.6641 0.46094,-2.8984 1.3906,-3.7031 0.92578,-0.80078 2.3672,-1.2031 4.3281,-1.2031 z"
|
||||
id="path7847" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="r"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 16.547,-12.766 c 0.61328,-0.94531 1.3477,-1.6719 2.2031,-2.1719 0.85156,-0.5 1.7891,-0.75 2.8125,-0.75 1.7578,0 3.0977,0.54688 4.0156,1.6406 0.92578,1.0859 1.3906,2.6562 1.3906,4.7188 V -4e-4 h -4.9219 v -7.9844 -0.35938 c 0.0078,-0.13281 0.01563,-0.32031 0.01563,-0.5625 0,-1.082 -0.16406,-1.8633 -0.48438,-2.3438 -0.3125,-0.48828 -0.82422,-0.73438 -1.5312,-0.73438 -0.92969,0 -1.6484,0.38672 -2.1562,1.1562 -0.51172,0.76172 -0.77344,1.8672 -0.78125,3.3125 v 7.5156 h -4.9219 v -7.9844 c 0,-1.6953 -0.14844,-2.7852 -0.4375,-3.2656 -0.29297,-0.48828 -0.8125,-0.73438 -1.5625,-0.73438 -0.9375,0 -1.6641,0.38672 -2.1719,1.1562 -0.51172,0.76172 -0.76562,1.8594 -0.76562,3.2969 v 7.5312 h -4.9219 v -15.312 h 4.9219 v 2.2344 c 0.60156,-0.86328 1.2891,-1.5156 2.0625,-1.9531 0.78125,-0.4375 1.6406,-0.65625 2.5781,-0.65625 1.0625,0 2,0.25781 2.8125,0.76562 0.8125,0.51172 1.4258,1.2305 1.8438,2.1562 z"
|
||||
id="path7850" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="q"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="M 17.75,-9.3281 V 0 h -4.9219 v -7.1094 c 0,-1.3438 -0.03125,-2.2656 -0.09375,-2.7656 -0.0625,-0.5 -0.16797,-0.86719 -0.3125,-1.1094 -0.1875,-0.3125 -0.44922,-0.55469 -0.78125,-0.73438 -0.32422,-0.17578 -0.69531,-0.26562 -1.1094,-0.26562 -1.0234,0 -1.8242,0.39844 -2.4062,1.1875 -0.58594,0.78125 -0.875,1.8711 -0.875,3.2656 V -1e-4 H 2.3594 v -21.281 H 7.25 v 8.2031 c 0.73828,-0.88281 1.5195,-1.5391 2.3438,-1.9688 0.83203,-0.42578 1.75,-0.64062 2.75,-0.64062 1.7695,0 3.1133,0.54688 4.0312,1.6406 0.91406,1.0859 1.375,2.6562 1.375,4.7188 z"
|
||||
id="path7853" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="p"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 2.5781,-20.406 h 5.875 l 7.4219,14 v -14 h 4.9844 V 0 h -5.875 L 7.5625,-14 V 0 H 2.5781 Z"
|
||||
id="path7856" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="o"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 2.5781,-20.406 h 8.7344 c 2.5938,0 4.582,0.57812 5.9688,1.7344 1.3945,1.1484 2.0938,2.7891 2.0938,4.9219 0,2.1367 -0.69922,3.7812 -2.0938,4.9375 -1.3867,1.1562 -3.375,1.7344 -5.9688,1.7344 H 7.8281 V 3e-4 h -5.25 z m 5.25,3.8125 v 5.7031 H 10.75 c 1.0195,0 1.8047,-0.25 2.3594,-0.75 0.5625,-0.5 0.84375,-1.2031 0.84375,-2.1094 0,-0.91406 -0.28125,-1.6172 -0.84375,-2.1094 -0.55469,-0.48828 -1.3398,-0.73438 -2.3594,-0.73438 z"
|
||||
id="path7859" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="n"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="M 2.3594,-15.312 H 7.25 v 15.031 c 0,2.0508 -0.49609,3.6172 -1.4844,4.7031 -0.98047,1.082 -2.4062,1.625 -4.2812,1.625 H -0.9375 V 2.8283 h 0.85938 c 0.92578,0 1.5625,-0.21094 1.9062,-0.625 0.35156,-0.41797 0.53125,-1.2461 0.53125,-2.4844 z m 0,-5.9688 H 7.25 v 4 H 2.3594 Z"
|
||||
id="path7862" />
|
||||
</symbol>
|
||||
<symbol
|
||||
id="m"
|
||||
overflow="visible">
|
||||
<path
|
||||
d="m 14.719,-14.828 v 3.9844 c -0.65625,-0.45703 -1.3242,-0.79688 -2,-1.0156 -0.66797,-0.21875 -1.3594,-0.32812 -2.0781,-0.32812 -1.3672,0 -2.4336,0.40234 -3.2031,1.2031 -0.76172,0.79297 -1.1406,1.9062 -1.1406,3.3438 0,1.4297 0.37891,2.543 1.1406,3.3438 0.76953,0.79297 1.8359,1.1875 3.2031,1.1875 0.75781,0 1.4844,-0.10938 2.1719,-0.32812 0.6875,-0.22656 1.3203,-0.56641 1.9062,-1.0156 v 4 c -0.76172,0.28125 -1.5391,0.48828 -2.3281,0.625 -0.78125,0.14453 -1.5742,0.21875 -2.375,0.21875 -2.7617,0 -4.9219,-0.70703 -6.4844,-2.125 -1.5547,-1.4141 -2.3281,-3.3828 -2.3281,-5.9062 0,-2.5312 0.77344,-4.5039 2.3281,-5.9219 1.5625,-1.4141 3.7227,-2.125 6.4844,-2.125 0.80078,0 1.5938,0.07422 2.375,0.21875 0.78125,0.13672 1.5547,0.35156 2.3281,0.64062 z"
|
||||
id="path7865" />
|
||||
</symbol>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline"
|
||||
transform="translate(-30.909027,-60.088003)">
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 31.688199,89.763906 43.727576,100.49171 55.298329,89.576026 Z"
|
||||
id="path869" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 43.727576,100.4917 -0.15848,95.48319 -11.864763,-10.88305 -0.01614,-95.327934 z"
|
||||
id="path1022" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 43.727576,100.4917 11.570753,-10.915674 0.154175,95.856434 -11.883408,10.54243 0.15848,-95.48319"
|
||||
id="path1641" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 31.688199,89.763906 43.727576,100.49171 55.298329,89.576026 Z"
|
||||
id="path6630" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 43.727576,100.4917 -0.15848,95.48319 -11.864763,-10.88305 -0.01614,-95.327934 z"
|
||||
id="path6632" />
|
||||
<path
|
||||
id="path9510"
|
||||
style="color:#000000;fill:#b5befe;fill-opacity:1;stroke:none;stroke-width:1.88976;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="M 50.824219 353.32812 L 77.183594 391.41406 L 51.503906 435.54102 L 92.685547 425.82812 L 92.580078 360.15039 L 50.824219 353.32812 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.242053,94.200204 V 80.766353"
|
||||
id="path6675" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.242053,94.200204 V 80.766353"
|
||||
id="path6677" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 56.365139,89.575359 68.404516,100.30316 79.975269,89.387479 Z"
|
||||
id="path6841" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.404516,100.30316 -0.15848,95.48318 -11.864763,-10.88305 -0.01614,-95.327931 z"
|
||||
id="path6843" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.404516,100.30316 11.570753,-10.915681 0.154175,95.856431 -11.883408,10.54243 0.15848,-95.48318"
|
||||
id="path6845" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 56.365139,89.575359 68.404516,100.30316 79.975269,89.387479 Z"
|
||||
id="path6847" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.404516,100.30316 -0.15848,95.48318 -11.864763,-10.88305 -0.01614,-95.327931 z"
|
||||
id="path6849" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.404516,100.30316 11.570753,-10.915681 0.154175,95.856431 -11.883408,10.54243 0.15848,-95.48318"
|
||||
id="path6851" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 67.918993,94.011657 V 80.577806"
|
||||
id="path6853" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 67.918993,94.011657 V 80.577806"
|
||||
id="path6855" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 81.171644,89.386812 93.211021,100.11461 104.78178,89.198932 Z"
|
||||
id="path6857" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 93.211021,100.11461 -0.15848,95.48318 -11.864763,-10.88305 -0.01614,-95.327928 z"
|
||||
id="path6859" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 93.211021,100.11461 11.570759,-10.915678 0.15417,95.856428 -11.883409,10.54243 0.15848,-95.48318"
|
||||
id="path6861" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 81.171644,89.386812 93.211021,100.11461 104.78178,89.198932 Z"
|
||||
id="path6863" />
|
||||
<path
|
||||
style="fill:#fffd91;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 93.211021,100.11461 -0.15848,95.48318 -11.864763,-10.88305 -0.01614,-95.327928 z"
|
||||
id="path6865" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 93.211021,100.11461 11.570759,-10.915678 0.15417,95.856428 -11.883409,10.54243 0.15848,-95.48318"
|
||||
id="path6867" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 92.725498,93.82311 V 80.389259"
|
||||
id="path6869" />
|
||||
<path
|
||||
style="fill:#fffb1c;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 92.725498,93.82311 V 80.389259"
|
||||
id="path6871" />
|
||||
<path
|
||||
id="path9385"
|
||||
style="color:#000000;fill:#ff0000;stroke-width:0.305454;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="m 44.580027,152.42087 a 1.2757418,1.1704003 0 0 0 -0.938961,0.21549 l -0.0036,2.08204 6.217192,8.98188 -6.249748,10.7394 -0.0026,1.63814 a 1.2757418,1.1704003 0 0 0 1.251604,0.38034 l 10.580232,-2.49545 -0.0036,-2.41536 -8.403621,1.98179 5.429126,-9.32863 a 1.2757418,1.1704003 0 0 0 -0.04858,-1.17822 l -5.419824,-7.83105 8.418607,1.37563 -0.0036,-2.37764 z" />
|
||||
<path
|
||||
id="path8937"
|
||||
style="color:#000000;fill:#b5befe;fill-rule:evenodd;stroke-width:8.52665;-inkscape-stroke:none"
|
||||
d="M 39.574219 167.34961 C 23.205453 167.19237 11.134214 175.39887 9.0527344 192.07812 C 6.3362092 213.84617 22.882472 245.41 48.126953 264.47461 L 48.189453 227.3457 C 46.421108 223.94005 45.323056 220.47813 45.128906 217.54688 C 44.843431 213.23681 46.026521 210.04555 48.220703 207.92383 L 48.287109 168.16016 C 45.27719 167.64839 42.362823 167.3764 39.574219 167.34961 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path8939"
|
||||
style="color:#000000;fill:#ff0000;fill-rule:evenodd;stroke-width:1.06583;-inkscape-stroke:none"
|
||||
d="M 36.611328 162.67578 C 19.40208 162.73223 6.7589764 171.56114 4.5449219 189.30273 C 1.5627284 213.19961 19.99634 247.94986 48.121094 268.59375 L 48.134766 260.30664 C 25.772575 242.82997 11.110932 214.48278 13.560547 194.85352 C 15.742345 177.37037 29.901651 169.95581 48.279297 172.50781 L 48.292969 163.86133 C 44.226859 163.06309 40.313241 162.66364 36.611328 162.67578 z M 48.232422 201.32812 C 43.26431 203.39539 40.117203 208.07762 40.603516 215.41992 C 40.958111 220.77377 43.53534 227.12581 47.748047 233.00195 C 47.887106 233.19592 48.034168 233.38883 48.177734 233.58203 L 48.232422 201.32812 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10961"
|
||||
style="color:#000000;fill:#b5befe;fill-rule:evenodd;stroke-width:8.52665;-inkscape-stroke:none"
|
||||
d="M 96.236328 167.86133 L 96.251953 263.11133 C 99.469601 265.65592 102.83107 268.00785 106.32617 270.10156 C 111.04213 272.92662 115.74291 275.07577 120.26758 276.5625 L 120.87109 309.75586 C 127.95799 312.69064 134.8214 314.6847 141.3125 315.77344 L 141.52148 189.20898 C 137.80144 186.26939 133.93585 183.52181 129.93945 181.01367 C 118.25222 173.67875 106.61633 169.28731 96.236328 167.86133 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10963"
|
||||
style="color:#000000;fill:#ff0000;fill-rule:evenodd;stroke-width:1.06583;-inkscape-stroke:none"
|
||||
d="M 96.234375 163.50586 L 96.236328 172.2793 C 106.34291 173.31426 117.853 177.46423 129.41211 184.71875 C 133.60498 187.3502 137.64625 190.26604 141.51367 193.40625 L 141.5293 185.0332 C 137.96145 182.28031 134.26962 179.69329 130.4668 177.30664 C 128.1956 175.88123 125.92752 174.56155 123.66797 173.34375 C 114.16207 168.22059 104.82656 164.9374 96.234375 163.50586 z M 104.99609 200.05469 C 103.24986 200.06504 101.60179 200.26689 100.08008 200.66211 C 98.680967 201.02549 97.395797 201.57396 96.242188 202.28906 L 96.246094 230.96484 C 96.685073 231.64859 97.144123 232.32847 97.626953 233.00195 C 101.83965 238.87806 108.14872 244.45395 114.81055 246.53125 C 118.51876 247.68756 121.55285 247.27687 123.79102 245.51172 C 124.9101 244.62916 125.81238 243.28442 125.77539 241.10938 C 125.73835 238.93437 124.48921 235.97156 122.48242 233.37695 L 116.53516 236.3125 C 116.67437 236.49249 116.674 236.48699 116.69922 236.51367 C 116.70004 236.51124 116.7109 236.48217 116.71094 236.48438 C 116.71124 236.50158 116.74814 236.56543 116.69922 236.51367 C 116.69017 236.54047 116.63413 236.80558 116.27344 237.08984 C 115.48653 237.71044 113.22762 237.79039 112.69727 237.625 C 109.26976 236.55623 106.48466 234.10398 103.98633 230.61914 C 101.488 227.13434 99.737843 222.79315 99.53125 219.67383 C 99.163086 214.11539 101.75028 210.94204 106.0918 209.81445 C 110.43332 208.68687 116.53154 209.83058 122.44141 213.00977 C 129.92306 217.033 136.49461 223.30775 141.45312 230.29297 L 141.4707 220.01562 C 136.0349 214.07609 129.64063 208.85719 122.58398 205.0625 C 116.35636 201.71362 110.2348 200.02362 104.99609 200.05469 z M 96.251953 258.89648 L 96.251953 267.28711 C 99.364665 269.67047 102.59642 271.89153 105.94336 273.89648 C 118.75304 281.57004 131.46862 284.7815 141.36523 283.37695 L 141.38281 272.54102 C 132.86761 276.29962 119.84444 274.17534 106.70898 266.30664 C 103.06078 264.12121 99.569068 261.62296 96.251953 258.89648 z M 120.3125 305.48438 L 121.42969 314.0293 C 128.29472 316.8722 134.96072 318.87768 141.30469 320.08008 L 141.31836 311.42383 C 134.68932 310.47741 127.62608 308.51302 120.3125 305.48438 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path11071"
|
||||
style="color:#000000;fill:#b5befe;fill-rule:evenodd;stroke-width:8.52665;-inkscape-stroke:none"
|
||||
d="M 189.99609 191.57617 L 190.01562 315.52148 C 212.44473 318.00319 229.75121 309.12349 235.11328 290.12109 L 235.1582 262.45508 C 230.00055 238.51648 213.19835 211.31307 189.99609 191.57617 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path11073"
|
||||
style="color:#000000;fill:#ff0000;fill-rule:evenodd;stroke-width:1.06583;-inkscape-stroke:none"
|
||||
d="M 189.99414 187.3125 L 189.99609 195.87891 C 218.03022 220.51083 235.68184 256.84217 231.73828 282.0918 C 228.52062 302.69369 212.06667 312.83254 190.01562 311.05859 L 190.01758 319.93164 C 210.14926 322.68451 226.58815 316.94188 235.0918 303.44336 L 235.18164 249.17578 C 226.89502 227.29009 210.77827 204.49823 189.99414 187.3125 z M 190 223.85547 L 190.00195 235.83984 C 193.94325 243.1191 196.05851 250.65093 195.63477 256.88477 C 195.2644 262.33347 193.23025 266.42853 190.00781 269.19531 L 190.00977 281.65625 C 198.35661 279.13306 203.96551 272.65197 204.68359 262.08789 C 205.44969 250.81738 199.76276 236.26705 190 223.85547 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10450"
|
||||
style="color:#000000;fill:#b5befe;stroke-width:9.23577;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="M 182.13867 325.33008 L 150.80469 360.09961 L 141.37305 358.55859 L 141.26562 423.29102 L 145.43164 422.30859 L 183.24023 458.35156 L 185.94141 418.7793 L 185.83203 349.73047 L 182.13867 325.33008 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10452"
|
||||
style="color:#000000;fill:#ff0000;stroke-width:1.15447;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="M 182.07812 320.9082 A 4.8217013 4.4235602 0 0 0 178.42383 322.51172 L 148.88281 355.29297 L 141.38086 354.06641 L 141.36523 363.04883 L 149.96094 364.45312 A 4.8217013 4.4235602 0 0 0 154.51953 362.91797 L 178.87109 335.89844 L 184.85938 375.48633 A 4.8217013 4.4235602 0 0 0 185.87695 377.64062 L 185.78711 322.44336 A 4.8217013 4.4235602 0 0 0 183.45508 321.07617 A 4.8217013 4.4235602 0 0 0 182.07812 320.9082 z M 185.92578 408.58203 L 184.20898 409.34766 A 4.8217013 4.4235602 0 0 0 181.50391 413.04883 L 179.11328 448.03906 L 148.90625 419.24219 A 4.8217013 4.4235602 0 0 0 144.23047 418.02539 L 141.27344 418.72266 L 141.25781 427.85938 L 143.9082 427.23438 L 179.76562 461.41797 A 4.8217013 4.4235602 0 0 0 186.01172 461.95117 L 185.92578 408.58203 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10517"
|
||||
style="color:#000000;fill:#b5befe;stroke-width:9.23577;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="M 235.17578 330.18359 L 234.9668 456.08984 L 235.24023 456.35156 L 238.31445 411.32617 L 279.66016 392.90625 L 279.65039 386.67578 L 241.63477 372.87891 L 235.17578 330.18359 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
id="path10519"
|
||||
style="color:#000000;fill:#ff0000;stroke-width:1.15447;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
||||
d="M 235.19336 319.04492 L 235.12305 362.00391 L 236.85938 373.48633 A 4.8217013 4.4235602 0 0 0 239.86133 376.99023 L 275.39648 389.88867 L 236.20703 407.34766 A 4.8217013 4.4235602 0 0 0 235.04688 408.09766 L 234.95898 460.72266 A 4.8217013 4.4235602 0 0 0 240.05273 456.62891 L 242.94922 414.17773 L 279.66797 397.81836 L 279.64258 381.91602 L 246.02539 369.71484 L 238.91602 322.7207 A 4.8217013 4.4235602 0 0 0 235.45508 319.07617 A 4.8217013 4.4235602 0 0 0 235.19336 319.04492 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,30.909027,60.088003)" />
|
||||
<path
|
||||
d="m 67.256092,60.089727 c -8.267745,0.121311 -22.258223,1.379223 -22.258223,5.325801 v 10.153357 c 0,3.186426 9.105544,4.462154 14.53266,4.939285 l 0.754545,0.06621 v -8.60881 c 2.772549,-0.224881 5.693474,-0.343611 8.707948,-0.343611 1.329321,0 2.652769,0.0307 3.965045,0.07582 l -2.81175,3.447196 9.52747,10.890026 -2.67e-4,-5.639785 C 84.924231,79.860009 92.987546,78.551359 92.987546,75.5687 V 65.415345 c 0,-3.382148 -10.771667,-4.953015 -19.996135,-5.270314 -1.297128,-0.04365 -5.113134,-0.06288 -5.73561,-0.05548 z m 7.809838,11.22238 0.808177,-0.990527 2.41122,-2.955675 v 3.008226 l 0.759718,-0.07212 c 3.933227,-0.372832 9.879705,-1.200638 12.553686,-2.920164 v 8.187165 c 0,0.751953 -3.100263,2.597659 -12.684357,3.503822 l -0.62952,0.05992 v 3.206405 L 71.964075,75.114012 Z M 46.387884,67.389198 c 2.61906,1.687333 8.397658,2.518125 12.509183,2.907952 v 8.758985 C 49.467126,78.148837 46.387884,76.329417 46.387884,75.569737 Z m 26.557987,-5.861354 c 12.011127,0.413151 18.654411,2.558082 18.654411,3.881814 0,0.0233 -0.0033,0.04809 -0.0096,0.07324 -0.0013,0.0088 -0.007,0.01812 -0.0088,0.027 -0.0051,0.01812 -0.01,0.03403 -0.01812,0.05252 -0.0051,0.01 -0.01255,0.0211 -0.01849,0.03292 -0.0088,0.01702 -0.01702,0.03329 -0.0281,0.05105 -0.0082,0.01178 -0.01849,0.02405 -0.027,0.03662 -0.01255,0.01739 -0.02443,0.03439 -0.03883,0.05252 -0.01114,0.01332 -0.02404,0.02774 -0.03552,0.03995 -0.01626,0.01849 -0.0318,0.0355 -0.04993,0.05512 -0.01369,0.01369 -0.0307,0.02847 -0.04623,0.0429 -0.01997,0.01812 -0.03884,0.03662 -0.06103,0.0551 -0.01626,0.01442 -0.0355,0.03033 -0.05475,0.04439 -0.02404,0.01959 -0.04735,0.03809 -0.07323,0.0577 -0.0211,0.01554 -0.04402,0.03182 -0.06621,0.04772 -0.02774,0.01924 -0.054,0.03884 -0.08396,0.05845 -0.02182,0.01554 -0.04882,0.0318 -0.07435,0.04772 -0.03218,0.01997 -0.06362,0.04032 -0.09764,0.06213 -0.02663,0.01554 -0.0551,0.0318 -0.08285,0.04809 -0.03662,0.02107 -0.07361,0.04179 -0.112809,0.06399 -0.0307,0.01702 -0.06325,0.03329 -0.09432,0.05103 -0.04032,0.0211 -0.08101,0.04253 -0.12391,0.06399 -0.03403,0.0174 -0.07065,0.03514 -0.106523,0.05253 -0.04512,0.02182 -0.09025,0.04402 -0.137961,0.06584 -0.03699,0.01812 -0.07545,0.03513 -0.113552,0.05252 -0.05103,0.02292 -0.102452,0.04549 -0.155714,0.06879 -0.03995,0.01739 -0.08063,0.03403 -0.12131,0.05142 -0.05585,0.0233 -0.11281,0.0466 -0.172359,0.07065 -0.04365,0.01702 -0.08839,0.03514 -0.13353,0.05252 -0.06139,0.0233 -0.123168,0.04735 -0.18716,0.07102 -0.0466,0.01739 -0.09542,0.0344 -0.143875,0.05179 -0.06732,0.0244 -0.135376,0.04808 -0.205653,0.07212 -0.04993,0.01812 -0.09987,0.03403 -0.151281,0.05141 -0.07435,0.02443 -0.14906,0.04993 -0.225256,0.07435 -0.05252,0.01702 -0.106151,0.03329 -0.159784,0.0503 -0.07989,0.02477 -0.161264,0.04993 -0.243745,0.07472 -0.05622,0.01627 -0.112438,0.03329 -0.170145,0.04993 -0.08544,0.02553 -0.172358,0.04993 -0.260759,0.07435 -0.05992,0.01702 -0.120939,0.03403 -0.181981,0.05105 -0.09284,0.02478 -0.187159,0.04993 -0.283325,0.07471 -0.06029,0.01554 -0.121311,0.0318 -0.184564,0.04772 -0.10135,0.02553 -0.204543,0.05105 -0.31032,0.07582 -0.06362,0.01554 -0.126855,0.03145 -0.19159,0.04623 -0.108738,0.02477 -0.219704,0.0503 -0.331776,0.07582 -0.06583,0.01442 -0.131673,0.02959 -0.198996,0.04439 -0.11651,0.02553 -0.235981,0.05105 -0.355815,0.07619 -0.0688,0.01442 -0.139078,0.02847 -0.209347,0.0429 -0.123538,0.02553 -0.249292,0.0503 -0.376903,0.07545 -0.07176,0.01369 -0.14314,0.0281 -0.216751,0.04142 -0.132043,0.02553 -0.266678,0.04993 -0.40316,0.07472 -0.07472,0.01255 -0.149059,0.027 -0.224884,0.03995 -0.141661,0.02478 -0.287017,0.04993 -0.433121,0.07435 -0.07471,0.01216 -0.149056,0.02553 -0.225252,0.03699 -0.154235,0.02478 -0.311806,0.04993 -0.470853,0.07435 -0.07323,0.01114 -0.145733,0.02292 -0.220442,0.03329 -0.166073,0.02478 -0.336586,0.04919 -0.508577,0.07361 -0.07323,0.01076 -0.144615,0.0211 -0.219704,0.0318 -0.179754,0.02443 -0.36358,0.04882 -0.548893,0.07323 -0.07176,0.0096 -0.140923,0.01812 -0.213047,0.02774 -0.195663,0.02477 -0.396505,0.04882 -0.598825,0.07323 -0.0662,0.0082 -0.131671,0.01554 -0.198258,0.0233 -0.215261,0.02478 -0.435714,0.04919 -0.658001,0.07323 -0.05881,0.007 -0.116139,0.01255 -0.174956,0.01849 -0.0307,0.0037 -0.06251,0.007 -0.09321,0.01 l -2.69e-4,-5.382045 -4.875658,5.977535 -0.735306,0.899902 c -1.664417,-0.07249 -3.368796,-0.109852 -5.06986,-0.109852 -3.008511,0 -5.933127,0.112809 -8.707949,0.333621 V 69.026333 L 59.65114,68.970485 C 49.629402,68.087966 46.38635,66.194243 46.38635,65.415248 c 0,-1.30347 6.979143,-3.733534 20.887145,-3.936922 0.599932,-0.0067 4.424092,0.01216 5.672737,0.04956 z"
|
||||
id="path7870"
|
||||
style="fill:#000000;fill-opacity:1;stroke-width:1.15229;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 37 KiB |
967
assets/themes/advertising/wall_painting.svg
Normal file
|
@ -0,0 +1,967 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="40mm"
|
||||
height="40mm"
|
||||
viewBox="0 0 40 40"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="wall_painting.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ddda7c"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.78431373"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:zoom="2.5894514"
|
||||
inkscape:cx="4.2480041"
|
||||
inkscape:cy="59.665148"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<sodipodi:guide
|
||||
position="-1.158135,35.017833"
|
||||
orientation="0,-1"
|
||||
id="guide1027" />
|
||||
<sodipodi:guide
|
||||
position="-0.65554813,30.013816"
|
||||
orientation="0,-1"
|
||||
id="guide1029" />
|
||||
<sodipodi:guide
|
||||
position="-0.5462901,25.009798"
|
||||
orientation="0,-1"
|
||||
id="guide1031" />
|
||||
<sodipodi:guide
|
||||
position="-0.5025869,20.005781"
|
||||
orientation="0,-1"
|
||||
id="guide1033" />
|
||||
<sodipodi:guide
|
||||
position="-0.30592246,15.001764"
|
||||
orientation="0,-1"
|
||||
id="guide1035" />
|
||||
<sodipodi:guide
|
||||
position="-0.10925802,9.9977463"
|
||||
orientation="0,-1"
|
||||
id="guide1037" />
|
||||
<sodipodi:guide
|
||||
position="-0.021851604,4.993729"
|
||||
orientation="0,-1"
|
||||
id="guide1039" />
|
||||
<sodipodi:guide
|
||||
position="-0.15296123,0.033414841"
|
||||
orientation="0,-1"
|
||||
id="guide1041" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2">
|
||||
<mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask1309">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect1311"
|
||||
width="40"
|
||||
height="40"
|
||||
x="0"
|
||||
y="0"
|
||||
rx="0" />
|
||||
</mask>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="212.23055 : 183.79824 : 1"
|
||||
inkscape:vp_y="-138.82678 : 127.6308 : 0"
|
||||
inkscape:vp_z="102.00732 : 223.33213 : 1"
|
||||
inkscape:persp3d-origin="275.61188 : 262.5309 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.799999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3582"
|
||||
width="40.666897"
|
||||
height="40.617493"
|
||||
x="-0.026121488"
|
||||
y="-0.074673384"
|
||||
rx="1.0000006" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g4136"
|
||||
mask="url(#mask1309)">
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3237"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3239"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3241"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3243"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3245"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3247"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3249"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3251"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3253"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3255"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="20.406551"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3257"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3259"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3263"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3265"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3267"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3269"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3271"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3273"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3275"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3277"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3279"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3281"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3283"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3285"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3287"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3289"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3291"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3293"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3295"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3297"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3299"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3301"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="15.480371"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3303"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3305"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3307"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3309"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3311"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="5.4531813"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3313"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3315"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3317"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3319"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3321"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3323"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="10.423086"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3325"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3327"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3329"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3331"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3333"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3347"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3349"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3351"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3353"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3355"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3357"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3359"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3361"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3363"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3365"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3367"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3369"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3371"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3373"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3375"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3377"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3379"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3381"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3383"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3385"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3387"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3389"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3391"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="35.221924"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3393"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="0.39070213"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3395"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="8.7252398"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3397"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="17.059776"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3399"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="25.394314"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3401"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="33.728851"
|
||||
y="25.340094"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3403"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3405"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3407"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3409"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3411"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3413"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="30.266273"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3415"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3417"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3419"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3421"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3423"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3425"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3427"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3429"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3431"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3433"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3435"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3437"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3439"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="-3.7394707"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3441"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="4.5950665"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3443"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="12.929604"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3445"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="21.264141"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3447"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="29.598679"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3449"
|
||||
width="8.3345375"
|
||||
height="4.1914907"
|
||||
x="37.933216"
|
||||
y="0.42482772"
|
||||
rx="0.98275834" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#001fff;fill-opacity:0.37284482;fill-rule:evenodd;stroke:#ffffff;stroke-width:13.9078929;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.9912985"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
sodipodi:expansion="1"
|
||||
sodipodi:revolution="2.2986083"
|
||||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
transform="matrix(0.16181313,0,0,0.14314247,-46.638251,-41.315378)"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#001fff;fill-opacity:0.37284482;stroke:#ffffff;stroke-width:12.71010332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.9912985"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
sodipodi:cy="544.95685"
|
||||
sodipodi:r1="63.245552"
|
||||
sodipodi:r2="29.670052"
|
||||
sodipodi:arg1="1.2490458"
|
||||
sodipodi:arg2="1.9640381"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
inkscape:transform-center-x="-1.420664"
|
||||
inkscape:transform-center-y="-1.4924413"
|
||||
transform="matrix(0.14633311,-0.09389576,0.08614253,0.13424997,-69.033262,-12.7164)"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 40 KiB |
|
@ -114,6 +114,10 @@
|
|||
"icon": {
|
||||
"render": "teardrop:#00cc00",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "theme=advertising",
|
||||
"then": "./assets/themes/advertising/poster_box.svg"
|
||||
},
|
||||
{
|
||||
"if": "theme=aed",
|
||||
"then": "./assets/themes/aed/aed.svg"
|
||||
|
|
|
@ -152,6 +152,23 @@
|
|||
"question": "On what level is this feature located?",
|
||||
"render": "Located on the {level}th floor"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This object both emits light and is lighted by an external light source"
|
||||
},
|
||||
"1": {
|
||||
"then": "This object emits light"
|
||||
},
|
||||
"2": {
|
||||
"then": "This object is lit externally, e.g. by a spotlight or other lights"
|
||||
},
|
||||
"3": {
|
||||
"then": "This object does not emit light and is not lighted by externally"
|
||||
}
|
||||
},
|
||||
"question": "Is this object lit or does it emit light?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "What levels does this elevator go to?",
|
||||
|
|
|
@ -1,4 +1,222 @@
|
|||
{
|
||||
"advertising": {
|
||||
"description": "Alguna vegada t'has preguntat quanta publictat hi ha als nostres carrers i carreteres? Amb aquest mapa podràs trobar i afegir informació de tots els elements publictaris que t'hi trobes pel carrer",
|
||||
"layers": {
|
||||
"0": {
|
||||
"description": "Completarem les dades dels elements publicitaris amb referència, operador i il·luminació",
|
||||
"name": "Publicitat",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "Una estructura publicitària gran a l'exterior, que normalment es troba a zones transitades com ara al costat de carreteres amb molta intensitat",
|
||||
"title": "una tanca publicitària"
|
||||
},
|
||||
"1": {
|
||||
"title": "un mupi"
|
||||
},
|
||||
"2": {
|
||||
"title": "un mupi sobre la paret"
|
||||
},
|
||||
"3": {
|
||||
"description": "Un xicotet tauló d'anuncics per a anuncis del veïnat, normalment destitat a peatons",
|
||||
"title": "un tauló d'anunis"
|
||||
},
|
||||
"4": {
|
||||
"description": "Una extructura cilíndica exterior que mostra publicitat",
|
||||
"title": "una columna"
|
||||
},
|
||||
"5": {
|
||||
"title": "una bandera"
|
||||
},
|
||||
"6": {
|
||||
"title": "una pantalla"
|
||||
},
|
||||
"7": {
|
||||
"title": "una patalla sobre una paret"
|
||||
},
|
||||
"8": {
|
||||
"description": "Una peça de tèxtil impermeable amb un missatge imprès, fixada permanentment a una paret",
|
||||
"title": "una lona"
|
||||
},
|
||||
"9": {
|
||||
"title": "un tòtem"
|
||||
},
|
||||
"10": {
|
||||
"description": "S'utilitza per a cartells publicitaris, retols de neó, logotips i cartells en entrades institucionals",
|
||||
"title": "un lletrer"
|
||||
},
|
||||
"11": {
|
||||
"title": "una escupltura"
|
||||
},
|
||||
"12": {
|
||||
"title": "una paret pintada"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"Sides": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest mupi té publicitat a un únic costat"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest mupi té publicitat pels dos costas"
|
||||
}
|
||||
},
|
||||
"question": "Per quants costats pots veure publicitat?"
|
||||
},
|
||||
"animated": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>Estàtic</b>, sempre mostra el mateix missatge"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest objecte té una <b>pantalla digital</b> integrada per a mostrar els preus o algun altre missatge"
|
||||
},
|
||||
"2": {
|
||||
"then": "<b>Trivision</b> - la tanca publicitària consta de molts prismes triangulars que giren regularment"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cartells <b>Rotatius</b>"
|
||||
},
|
||||
"4": {
|
||||
"then": "<b>Rota</b> sobre si mateix"
|
||||
}
|
||||
},
|
||||
"question": "Com canvien els anuncis d'aquest element?"
|
||||
},
|
||||
"luminous_or_lit_advertising": {
|
||||
"override": {
|
||||
"+mappings": {
|
||||
"0": {
|
||||
"then": "Aquesta és una llum de tub de neó"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message_type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Missatge comercial"
|
||||
},
|
||||
"1": {
|
||||
"then": "Informació municipal"
|
||||
},
|
||||
"2": {
|
||||
"then": "Informació de seguretat"
|
||||
},
|
||||
"3": {
|
||||
"then": "Publicitat electoral"
|
||||
},
|
||||
"4": {
|
||||
"then": "Informació sobre teatres, concerts, ..."
|
||||
},
|
||||
"5": {
|
||||
"then": "Missatge d'organitzacions sense ànim de lucre"
|
||||
},
|
||||
"6": {
|
||||
"then": "Per a expressar la teua opinió"
|
||||
},
|
||||
"7": {
|
||||
"then": "Missatge religiós"
|
||||
},
|
||||
"8": {
|
||||
"then": "Cartell de financiació"
|
||||
},
|
||||
"9": {
|
||||
"then": "un mapa"
|
||||
}
|
||||
},
|
||||
"question": "Quin tipus de missatge es mostra?"
|
||||
},
|
||||
"operator": {
|
||||
"question": "Qui opera aquest element?",
|
||||
"render": "L'operador és {operator}"
|
||||
},
|
||||
"ref": {
|
||||
"question": "Quin és el número de refèrencia?",
|
||||
"render": "El número de referència és {ref}"
|
||||
},
|
||||
"type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Açò és una tanca publicitària"
|
||||
},
|
||||
"1": {
|
||||
"then": "Açò és un tauló d'anunis"
|
||||
},
|
||||
"2": {
|
||||
"then": "Açò és una columna"
|
||||
},
|
||||
"3": {
|
||||
"then": "Açò és una bandera"
|
||||
},
|
||||
"4": {
|
||||
"then": "Açò és un mupi"
|
||||
},
|
||||
"5": {
|
||||
"then": "Açò és una pantalla"
|
||||
},
|
||||
"6": {
|
||||
"then": "Açò és una esculptura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Açò és un cartell"
|
||||
},
|
||||
"8": {
|
||||
"then": "Açò és una lona (una peça de tèxtil impermeable amb un missatge publicitari)"
|
||||
},
|
||||
"9": {
|
||||
"then": "Açò és un tòtem"
|
||||
},
|
||||
"10": {
|
||||
"then": "Açò és una paret pintada"
|
||||
}
|
||||
},
|
||||
"question": "Quin tipus d'element publicitari és aquest?",
|
||||
"render": "Açò és un {advertising}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tanca publicitària"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tauló d'anuncis"
|
||||
},
|
||||
"2": {
|
||||
"then": "Mupi"
|
||||
},
|
||||
"3": {
|
||||
"then": "Columna"
|
||||
},
|
||||
"4": {
|
||||
"then": "Bandera"
|
||||
},
|
||||
"5": {
|
||||
"then": "Pantalla"
|
||||
},
|
||||
"6": {
|
||||
"then": "Esculptura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Cartell"
|
||||
},
|
||||
"8": {
|
||||
"then": "Lona"
|
||||
},
|
||||
"9": {
|
||||
"then": "Tòtem"
|
||||
},
|
||||
"10": {
|
||||
"then": "Paret Pintada"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"shortDescription": "On puc trobar elements publicitaris?",
|
||||
"title": "Mapa obert de publicitat"
|
||||
},
|
||||
"aed": {
|
||||
"description": "En aquest mapa , qualsevol pot trobar i marcar els desfibril·ladors externs automàtics més propers",
|
||||
"title": "Mapa obert de desfibril·ladors (DEA)"
|
||||
|
|
|
@ -1,4 +1,222 @@
|
|||
{
|
||||
"advertising": {
|
||||
"description": "Have you ever wondered how many advertising there are in our streets and roads? With this map you could find and add information about all the advertising features that you can find on the street",
|
||||
"layers": {
|
||||
"0": {
|
||||
"description": "We will complete data from advertising features with reference, operator and lit",
|
||||
"name": "Advertise",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "A large outdoor advertising structure, typically found in high-traffic areas such as alongside busy roads",
|
||||
"title": "a billboard"
|
||||
},
|
||||
"1": {
|
||||
"title": "a freestanding poster box"
|
||||
},
|
||||
"2": {
|
||||
"title": "a poster box mounted on a wall"
|
||||
},
|
||||
"3": {
|
||||
"description": "Small billboard for neighbourhood advertising, generally intended for pedestrians",
|
||||
"title": "a billboard"
|
||||
},
|
||||
"4": {
|
||||
"description": "A cylindrical outdoor structure which shows advertisements",
|
||||
"title": "a column"
|
||||
},
|
||||
"5": {
|
||||
"title": "a flag"
|
||||
},
|
||||
"6": {
|
||||
"title": "a screen"
|
||||
},
|
||||
"7": {
|
||||
"title": "a screen mounted on a wall"
|
||||
},
|
||||
"8": {
|
||||
"description": "A piece of waterproof textile with a printed message, permanently anchored on a wall",
|
||||
"title": "a tarp"
|
||||
},
|
||||
"9": {
|
||||
"title": "a totem"
|
||||
},
|
||||
"10": {
|
||||
"description": "Used for advertising signs, neon signs, logos & institutional entrance signs",
|
||||
"title": "a sign"
|
||||
},
|
||||
"11": {
|
||||
"title": "a sculpture"
|
||||
},
|
||||
"12": {
|
||||
"title": "a wall painting"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"Sides": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This object has advertisements on a single side"
|
||||
},
|
||||
"1": {
|
||||
"then": "This object has advertisements on both sides"
|
||||
}
|
||||
},
|
||||
"question": "From how many sides you can watch advertisments?"
|
||||
},
|
||||
"animated": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>Static</b>, always shows the same message"
|
||||
},
|
||||
"1": {
|
||||
"then": "This object has a built-in <b>digital display</b> to show prices or some other message"
|
||||
},
|
||||
"2": {
|
||||
"then": "<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate"
|
||||
},
|
||||
"3": {
|
||||
"then": "<b>Scrolling</b> posters"
|
||||
},
|
||||
"4": {
|
||||
"then": "<b>Rotates</b> on itself"
|
||||
}
|
||||
},
|
||||
"question": "Does this advertisement cycle through multiple messages?"
|
||||
},
|
||||
"luminous_or_lit_advertising": {
|
||||
"override": {
|
||||
"+mappings": {
|
||||
"0": {
|
||||
"then": "This is a neon-tube light"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message_type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Commercial message"
|
||||
},
|
||||
"1": {
|
||||
"then": "Local information"
|
||||
},
|
||||
"2": {
|
||||
"then": "Securty information"
|
||||
},
|
||||
"3": {
|
||||
"then": "Electoral advertising"
|
||||
},
|
||||
"4": {
|
||||
"then": "Inormation related to theatre, concerts, ..."
|
||||
},
|
||||
"5": {
|
||||
"then": "Message from non-profit organizations"
|
||||
},
|
||||
"6": {
|
||||
"then": "To expres your opinion"
|
||||
},
|
||||
"7": {
|
||||
"then": "Religious message"
|
||||
},
|
||||
"8": {
|
||||
"then": "Funding sign"
|
||||
},
|
||||
"9": {
|
||||
"then": "A map"
|
||||
}
|
||||
},
|
||||
"question": "What kind of message is shown?"
|
||||
},
|
||||
"operator": {
|
||||
"question": "Who operates this feature?",
|
||||
"render": "Operated by {operator}"
|
||||
},
|
||||
"ref": {
|
||||
"question": "Wich is the reference number?",
|
||||
"render": "Reference number is {ref}"
|
||||
},
|
||||
"type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This is a billboard"
|
||||
},
|
||||
"1": {
|
||||
"then": "This is a board"
|
||||
},
|
||||
"2": {
|
||||
"then": "This is a column"
|
||||
},
|
||||
"3": {
|
||||
"then": "This is a flag"
|
||||
},
|
||||
"4": {
|
||||
"then": "This is a poster Box"
|
||||
},
|
||||
"5": {
|
||||
"then": "This is a screen"
|
||||
},
|
||||
"6": {
|
||||
"then": "This is a sculpture"
|
||||
},
|
||||
"7": {
|
||||
"then": "This is a sign"
|
||||
},
|
||||
"8": {
|
||||
"then": "This is a tarp (a weatherproof piece of textile with an advertising message)"
|
||||
},
|
||||
"9": {
|
||||
"then": "This is a totem"
|
||||
},
|
||||
"10": {
|
||||
"then": "This is a wall painting"
|
||||
}
|
||||
},
|
||||
"question": "Which type of advertising feature is this?",
|
||||
"render": "This is a {advertising}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Billboard"
|
||||
},
|
||||
"1": {
|
||||
"then": "Board"
|
||||
},
|
||||
"2": {
|
||||
"then": "Poster Box"
|
||||
},
|
||||
"3": {
|
||||
"then": "Column"
|
||||
},
|
||||
"4": {
|
||||
"then": "Flag"
|
||||
},
|
||||
"5": {
|
||||
"then": "Screen"
|
||||
},
|
||||
"6": {
|
||||
"then": "Sculpture"
|
||||
},
|
||||
"7": {
|
||||
"then": "Sign"
|
||||
},
|
||||
"8": {
|
||||
"then": "Tarp"
|
||||
},
|
||||
"9": {
|
||||
"then": "Totem"
|
||||
},
|
||||
"10": {
|
||||
"then": "Wall painting"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"shortDescription": "Where I can find advertising features?",
|
||||
"title": "Open Advertising Map"
|
||||
},
|
||||
"aed": {
|
||||
"description": "On this map, one can find and mark nearby defibrillators",
|
||||
"title": "Open AED Map"
|
||||
|
|
|
@ -1,4 +1,222 @@
|
|||
{
|
||||
"advertising": {
|
||||
"description": "¿Alguna vez te has preguntado cuanta publicidad hay en nuestras calles y carreteras? Con este mapa podrás encontrar y añadir información de todos los elementos publicitarios que te encuentres por la calle",
|
||||
"layers": {
|
||||
"0": {
|
||||
"description": "Completaremos los datos de los elementos publicitarios con referencia, operador y iluminación",
|
||||
"name": "Publicidad",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "Una estructura publicitaria grande al aire libre, que normalmente se encuentra en áreas transitadas como carreteras con mucha intensidad",
|
||||
"title": "una valla publicitària"
|
||||
},
|
||||
"1": {
|
||||
"title": "un mupi"
|
||||
},
|
||||
"2": {
|
||||
"title": "un mupi sobre la pared"
|
||||
},
|
||||
"3": {
|
||||
"description": "Un pequeño tablón de anuncios para anuncios del vecindario, normalmente destinado a peatones",
|
||||
"title": "un tablón de anuncios"
|
||||
},
|
||||
"4": {
|
||||
"description": "Una estructura cilíndrica exterior que muestra publicidad",
|
||||
"title": "una columna"
|
||||
},
|
||||
"5": {
|
||||
"title": "una bandera"
|
||||
},
|
||||
"6": {
|
||||
"title": "una pantalla"
|
||||
},
|
||||
"7": {
|
||||
"title": "una pantalla sobre una pared"
|
||||
},
|
||||
"8": {
|
||||
"description": "Una pieza de tela impermeable con un mensaje impreso, anclada permanentemente en una pared",
|
||||
"title": "una lona"
|
||||
},
|
||||
"9": {
|
||||
"title": "un tótem"
|
||||
},
|
||||
"10": {
|
||||
"description": "Se utiliza para carteles publicitarios, letreros de neón, logotipos y carteles en entradas institucionales",
|
||||
"title": "un lletrer"
|
||||
},
|
||||
"11": {
|
||||
"title": "una escultura"
|
||||
},
|
||||
"12": {
|
||||
"title": "una pared pintada"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"Sides": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este mupi tiene publicidad en un único lado"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este mupi tiene publicidad por los dos lados"
|
||||
}
|
||||
},
|
||||
"question": "¿Por cuantos lados puedes ver publicidad?"
|
||||
},
|
||||
"animated": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>Estático</b>, siempre muestra el mismo mensaje"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este objeto tiene una <b>pantalla digital</b> incorporada para mostrar precios o algún otro mensaje"
|
||||
},
|
||||
"2": {
|
||||
"then": "<b>Trivision</b> - la valla publicitaria consta de muchos prismas triangulares que giran regularmente"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cartells <b>Rotatius</b>"
|
||||
},
|
||||
"4": {
|
||||
"then": "<b>Rota</b> sobre si mismo"
|
||||
}
|
||||
},
|
||||
"question": "¿Como cambian los anuncios de este elemento?"
|
||||
},
|
||||
"luminous_or_lit_advertising": {
|
||||
"override": {
|
||||
"+mappings": {
|
||||
"0": {
|
||||
"then": "Esta es una luz de tubo de neón."
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message_type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Mensaje comercial"
|
||||
},
|
||||
"1": {
|
||||
"then": "Información municipal"
|
||||
},
|
||||
"2": {
|
||||
"then": "Información de seguridad"
|
||||
},
|
||||
"3": {
|
||||
"then": "Publicidad electoral"
|
||||
},
|
||||
"4": {
|
||||
"then": "Información sobre teatros, conciertos, ..."
|
||||
},
|
||||
"5": {
|
||||
"then": "Mensaje de organizaciones sin ánimo de lucro"
|
||||
},
|
||||
"6": {
|
||||
"then": "Para expresar tu opinión"
|
||||
},
|
||||
"7": {
|
||||
"then": "Mensaje religioso"
|
||||
},
|
||||
"8": {
|
||||
"then": "Cartel de financiación"
|
||||
},
|
||||
"9": {
|
||||
"then": "un mapa"
|
||||
}
|
||||
},
|
||||
"question": "Que tipo de mensaje se muestra?"
|
||||
},
|
||||
"operator": {
|
||||
"question": "¿Quien opera este elemento?",
|
||||
"render": "El operador es {operator}"
|
||||
},
|
||||
"ref": {
|
||||
"question": "¿Cual es el número de referencia?",
|
||||
"render": "El número de referencia es {ref}"
|
||||
},
|
||||
"type": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Esto es una valla publicitaria"
|
||||
},
|
||||
"1": {
|
||||
"then": "Esto es un tablón de anuncios"
|
||||
},
|
||||
"2": {
|
||||
"then": "Esto es una columna"
|
||||
},
|
||||
"3": {
|
||||
"then": "Esto es una bndera"
|
||||
},
|
||||
"4": {
|
||||
"then": "Esto es un mupi"
|
||||
},
|
||||
"5": {
|
||||
"then": "Esto es una pantalla"
|
||||
},
|
||||
"6": {
|
||||
"then": "Esto es una escultura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Esto es un cartel"
|
||||
},
|
||||
"8": {
|
||||
"then": "Esto es una lona (una pieza de tela resistente a la intemperie con un mensaje publicitario)"
|
||||
},
|
||||
"9": {
|
||||
"then": "Esto es un tótem"
|
||||
},
|
||||
"10": {
|
||||
"then": "Esto es una pared pintada"
|
||||
}
|
||||
},
|
||||
"question": "¿Qué tipo de elemento publicitario es?",
|
||||
"render": "Esto es un {advertising}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Valla publicitaria"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tablon de anuncios"
|
||||
},
|
||||
"2": {
|
||||
"then": "Mupi"
|
||||
},
|
||||
"3": {
|
||||
"then": "Columna"
|
||||
},
|
||||
"4": {
|
||||
"then": "Bandera"
|
||||
},
|
||||
"5": {
|
||||
"then": "Pantalla"
|
||||
},
|
||||
"6": {
|
||||
"then": "Escultura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Cartel"
|
||||
},
|
||||
"8": {
|
||||
"then": "Lona"
|
||||
},
|
||||
"9": {
|
||||
"then": "Tótem"
|
||||
},
|
||||
"10": {
|
||||
"then": "Pared Pintada"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"shortDescription": "Dónde puedo encontrar elementos publicitarios?",
|
||||
"title": "Mapa abierto de publicidad"
|
||||
},
|
||||
"aed": {
|
||||
"description": "En este mapa , cualquiera puede encontrar y marcar los desfibriladores externos automáticos más cercanos",
|
||||
"title": "Mapa Abierto de Desfibriladores (DEA)"
|
||||
|
|
|
@ -32,6 +32,14 @@ class DownloadEli extends Script {
|
|||
continue
|
||||
}
|
||||
|
||||
if(props.id === "Mapbox"){
|
||||
/**
|
||||
* This token is managed by Martin Reifer on the 'OpenStreetMap'-account on MapBox
|
||||
*/
|
||||
const token = "pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjbGZkempiNDkyandvM3lwY3M4MndpdWdzIn0.QnvRv52n3qffVEKmQa9vJA"
|
||||
props.url = props.url.replace("{apikey}", token)
|
||||
}
|
||||
|
||||
if (props.url.toLowerCase().indexOf("apikey") > 0) {
|
||||
continue
|
||||
}
|
||||
|
|
|
@ -21,15 +21,19 @@ import { PrepareLayer } from "../Models/ThemeConfig/Conversion/PrepareLayer"
|
|||
import { PrepareTheme } from "../Models/ThemeConfig/Conversion/PrepareTheme"
|
||||
import { DesugaringContext } from "../Models/ThemeConfig/Conversion/Conversion"
|
||||
import { Utils } from "../Utils"
|
||||
import Script from "./Script"
|
||||
import { AllSharedLayers } from "../Customizations/AllSharedLayers"
|
||||
|
||||
// This scripts scans 'assets/layers/*.json' for layer definition files and 'assets/themes/*.json' for theme definition files.
|
||||
// It spits out an overview of those to be used to load them
|
||||
|
||||
class LayerOverviewUtils {
|
||||
class LayerOverviewUtils extends Script {
|
||||
public static readonly layerPath = "./assets/generated/layers/"
|
||||
public static readonly themePath = "./assets/generated/themes/"
|
||||
|
||||
constructor() {
|
||||
super("Reviews and generates the compiled themes")
|
||||
}
|
||||
private static publicLayerIdsFrom(themefiles: LayoutConfigJson[]): Set<string> {
|
||||
const publicThemes = [].concat(...themefiles.filter((th) => !th.hideFromOverview))
|
||||
|
||||
|
@ -225,7 +229,7 @@ class LayerOverviewUtils {
|
|||
}
|
||||
}
|
||||
|
||||
main(args: string[]) {
|
||||
async main(args: string[]) {
|
||||
if (fakedom === undefined) {
|
||||
throw "Fakedom not initialized"
|
||||
}
|
||||
|
@ -505,4 +509,4 @@ class LayerOverviewUtils {
|
|||
}
|
||||
}
|
||||
|
||||
new LayerOverviewUtils().main(process.argv)
|
||||
new LayerOverviewUtils().run()
|
||||
|
|
|
@ -1,326 +1,352 @@
|
|||
import { existsSync, mkdirSync, readFileSync, unlinkSync, writeFileSync } from "fs"
|
||||
import SmallLicense from "../Models/smallLicense"
|
||||
import ScriptUtils from "./ScriptUtils"
|
||||
import Script from "./Script"
|
||||
|
||||
const prompt = require("prompt-sync")()
|
||||
|
||||
function validateLicenseInfo(l: SmallLicense) {
|
||||
l.sources.map((s) => {
|
||||
try {
|
||||
return new URL(s)
|
||||
} catch (e) {
|
||||
throw "Could not parse URL " + s + " for a license for " + l.path + " due to " + e
|
||||
}
|
||||
})
|
||||
}
|
||||
/**
|
||||
* Sweeps the entire 'assets/' (except assets/generated) directory for image files and any 'license_info.json'-file.
|
||||
* Checks that the license info is included for each of them and generates a compiles license_info.json for those
|
||||
*/
|
||||
|
||||
function generateLicenseInfos(paths: string[]): SmallLicense[] {
|
||||
const licenses = []
|
||||
for (const path of paths) {
|
||||
try {
|
||||
const parsed = JSON.parse(readFileSync(path, { encoding: "utf8" }))
|
||||
if (Array.isArray(parsed)) {
|
||||
const l: SmallLicense[] = parsed
|
||||
for (const smallLicens of l) {
|
||||
smallLicens.path =
|
||||
path.substring(0, path.length - "license_info.json".length) +
|
||||
smallLicens.path
|
||||
}
|
||||
licenses.push(...l)
|
||||
} else {
|
||||
const smallLicens: SmallLicense = parsed
|
||||
smallLicens.path = path.substring(0, 1 + path.lastIndexOf("/")) + smallLicens.path
|
||||
licenses.push(smallLicens)
|
||||
}
|
||||
} catch (e) {
|
||||
console.error("Error: ", e, "while handling", path)
|
||||
}
|
||||
}
|
||||
return licenses
|
||||
}
|
||||
|
||||
function missingLicenseInfos(licenseInfos: SmallLicense[], allIcons: string[]) {
|
||||
const missing = []
|
||||
|
||||
const knownPaths = new Set<string>()
|
||||
for (const licenseInfo of licenseInfos) {
|
||||
knownPaths.add(licenseInfo.path)
|
||||
export class GenerateLicenseInfo extends Script {
|
||||
constructor() {
|
||||
super("Validates the licenses and compiles them into one single asset file")
|
||||
}
|
||||
|
||||
for (const iconPath of allIcons) {
|
||||
if (iconPath.indexOf("license_info.json") >= 0) {
|
||||
continue
|
||||
}
|
||||
if (knownPaths.has(iconPath)) {
|
||||
continue
|
||||
}
|
||||
missing.push(iconPath)
|
||||
}
|
||||
return missing
|
||||
}
|
||||
static defaultLicenses() {
|
||||
const knownLicenses = new Map<string, SmallLicense>()
|
||||
knownLicenses.set("me", {
|
||||
authors: ["Pieter Vander Vennet"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("streetcomplete", {
|
||||
authors: ["Tobias Zwick (westnordost)"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [
|
||||
"https://github.com/streetcomplete/StreetComplete/tree/master/res/graphics",
|
||||
"https://f-droid.org/packages/de.westnordost.streetcomplete/",
|
||||
],
|
||||
})
|
||||
|
||||
const knownLicenses = new Map<string, SmallLicense>()
|
||||
knownLicenses.set("me", {
|
||||
authors: ["Pieter Vander Vennet"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("streetcomplete", {
|
||||
authors: ["Tobias Zwick (westnordost)"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [
|
||||
"https://github.com/streetcomplete/StreetComplete/tree/master/res/graphics",
|
||||
"https://f-droid.org/packages/de.westnordost.streetcomplete/",
|
||||
],
|
||||
})
|
||||
knownLicenses.set("temaki", {
|
||||
authors: ["Temaki"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [
|
||||
"https://github.com/ideditor/temaki",
|
||||
"https://ideditor.github.io/temaki/docs/",
|
||||
],
|
||||
})
|
||||
|
||||
knownLicenses.set("temaki", {
|
||||
authors: ["Temaki"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: ["https://github.com/ideditor/temaki", "https://ideditor.github.io/temaki/docs/"],
|
||||
})
|
||||
knownLicenses.set("maki", {
|
||||
authors: ["Maki"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: ["https://labs.mapbox.com/maki-icons/"],
|
||||
})
|
||||
|
||||
knownLicenses.set("maki", {
|
||||
authors: ["Maki"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: ["https://labs.mapbox.com/maki-icons/"],
|
||||
})
|
||||
|
||||
knownLicenses.set("t", {
|
||||
authors: [],
|
||||
path: undefined,
|
||||
license: "CC0; trivial",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("na", {
|
||||
authors: [],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("tv", {
|
||||
authors: ["Toerisme Vlaanderen"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [
|
||||
"https://toerismevlaanderen.be/pinjepunt",
|
||||
"https://mapcomplete.osm.be/toerisme_vlaanderenn",
|
||||
],
|
||||
})
|
||||
knownLicenses.set("tvf", {
|
||||
authors: ["Jo De Baerdemaeker "],
|
||||
path: undefined,
|
||||
license: "All rights reserved",
|
||||
sources: ["https://www.studiotype.be/fonts/flandersart"],
|
||||
})
|
||||
knownLicenses.set("twemoji", {
|
||||
authors: ["Twemoji"],
|
||||
path: undefined,
|
||||
license: "CC-BY 4.0",
|
||||
sources: ["https://github.com/twitter/twemoji"],
|
||||
})
|
||||
|
||||
function promptLicenseFor(path): SmallLicense {
|
||||
console.log("License abbreviations:")
|
||||
knownLicenses.forEach((value, key) => {
|
||||
console.log(key, " => ", value)
|
||||
})
|
||||
const author = prompt("What is the author for artwork " + path + "? (or: [Q]uit, [S]kip) > ")
|
||||
path = path.substring(path.lastIndexOf("/") + 1)
|
||||
|
||||
if (knownLicenses.has(author)) {
|
||||
const license = knownLicenses.get(author)
|
||||
license.path = path
|
||||
return license
|
||||
knownLicenses.set("t", {
|
||||
authors: [],
|
||||
path: undefined,
|
||||
license: "CC0; trivial",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("na", {
|
||||
authors: [],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [],
|
||||
})
|
||||
knownLicenses.set("tv", {
|
||||
authors: ["Toerisme Vlaanderen"],
|
||||
path: undefined,
|
||||
license: "CC0",
|
||||
sources: [
|
||||
"https://toerismevlaanderen.be/pinjepunt",
|
||||
"https://mapcomplete.osm.be/toerisme_vlaanderenn",
|
||||
],
|
||||
})
|
||||
knownLicenses.set("tvf", {
|
||||
authors: ["Jo De Baerdemaeker "],
|
||||
path: undefined,
|
||||
license: "All rights reserved",
|
||||
sources: ["https://www.studiotype.be/fonts/flandersart"],
|
||||
})
|
||||
knownLicenses.set("twemoji", {
|
||||
authors: ["Twemoji"],
|
||||
path: undefined,
|
||||
license: "CC-BY 4.0",
|
||||
sources: ["https://github.com/twitter/twemoji"],
|
||||
})
|
||||
return knownLicenses
|
||||
}
|
||||
|
||||
if (author == "s") {
|
||||
return null
|
||||
}
|
||||
if (author == "Q" || author == "q" || author == "") {
|
||||
throw "Quitting now!"
|
||||
}
|
||||
let authors = author.split(";")
|
||||
if (author.toLowerCase() == "none") {
|
||||
authors = []
|
||||
}
|
||||
return {
|
||||
authors: author.split(";"),
|
||||
path: path,
|
||||
license: prompt("What is the license for artwork " + path + "? > "),
|
||||
sources: prompt("Where was this artwork found? > ").split(";"),
|
||||
}
|
||||
}
|
||||
|
||||
function createLicenseInfoFor(path): void {
|
||||
const li = promptLicenseFor(path)
|
||||
if (li == null) {
|
||||
return
|
||||
}
|
||||
writeFileSync(path + ".license_info.json", JSON.stringify(li, null, " "))
|
||||
}
|
||||
|
||||
function cleanLicenseInfo(allPaths: string[], allLicenseInfos: SmallLicense[]) {
|
||||
// Read the license info file from the generated assets, creates a compiled license info in every directory
|
||||
// Note: this removes all the old license infos
|
||||
for (const licensePath of allPaths) {
|
||||
unlinkSync(licensePath)
|
||||
}
|
||||
|
||||
const perDirectory = new Map<string, SmallLicense[]>()
|
||||
|
||||
for (const license of allLicenseInfos) {
|
||||
const p = license.path
|
||||
const dir = p.substring(0, p.lastIndexOf("/"))
|
||||
license.path = p.substring(dir.length + 1)
|
||||
if (!perDirectory.has(dir)) {
|
||||
perDirectory.set(dir, [])
|
||||
}
|
||||
const cloned: SmallLicense = {
|
||||
// We make a clone to force the order of the keys
|
||||
path: license.path,
|
||||
license: license.license,
|
||||
authors: license.authors,
|
||||
sources: license.sources,
|
||||
}
|
||||
perDirectory.get(dir).push(cloned)
|
||||
}
|
||||
|
||||
perDirectory.forEach((licenses, dir) => {
|
||||
for (let i = licenses.length - 1; i >= 0; i--) {
|
||||
const license = licenses[i]
|
||||
const path = dir + "/" + license.path
|
||||
if (!existsSync(path)) {
|
||||
console.log(
|
||||
"Found license for now missing file: ",
|
||||
path,
|
||||
" - removing this license"
|
||||
)
|
||||
licenses.splice(i, 1)
|
||||
}
|
||||
}
|
||||
|
||||
licenses.sort((a, b) => (a.path < b.path ? -1 : 1))
|
||||
writeFileSync(dir + "/license_info.json", JSON.stringify(licenses, null, 2))
|
||||
})
|
||||
}
|
||||
|
||||
function queryMissingLicenses(missingLicenses: string[]) {
|
||||
process.on("SIGINT", function () {
|
||||
console.log("Aborting... Bye!")
|
||||
process.exit()
|
||||
})
|
||||
|
||||
let i = 1
|
||||
for (const missingLicens of missingLicenses) {
|
||||
console.log(i + " / " + missingLicenses.length)
|
||||
i++
|
||||
if (i < missingLicenses.length - 5) {
|
||||
// continue
|
||||
}
|
||||
createLicenseInfoFor(missingLicens)
|
||||
}
|
||||
|
||||
console.log("You're through!")
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates the humongous license_info in the generated assets, containing all licenses with a path relative to the root
|
||||
* @param licensePaths
|
||||
*/
|
||||
function createFullLicenseOverview(licensePaths: string[]) {
|
||||
const allLicenses: SmallLicense[] = []
|
||||
for (const licensePath of licensePaths) {
|
||||
if (!existsSync(licensePath)) {
|
||||
continue
|
||||
}
|
||||
const licenses = <SmallLicense[]>JSON.parse(readFileSync(licensePath, { encoding: "utf8" }))
|
||||
for (const license of licenses) {
|
||||
validateLicenseInfo(license)
|
||||
const dir = licensePath.substring(0, licensePath.length - "license_info.json".length)
|
||||
license.path = dir + license.path
|
||||
allLicenses.push(license)
|
||||
}
|
||||
}
|
||||
|
||||
writeFileSync("./assets/generated/license_info.json", JSON.stringify(allLicenses, null, " "))
|
||||
}
|
||||
|
||||
function main(args: string[]) {
|
||||
console.log("Checking and compiling license info")
|
||||
|
||||
if (!existsSync("./assets/generated")) {
|
||||
mkdirSync("./assets/generated")
|
||||
}
|
||||
|
||||
let contents = ScriptUtils.readDirRecSync("./assets")
|
||||
.filter((p) => !p.startsWith("./assets/templates/"))
|
||||
.filter((entry) => entry.indexOf("./assets/generated") != 0)
|
||||
let licensePaths = contents.filter((entry) => entry.indexOf("license_info.json") >= 0)
|
||||
let licenseInfos = generateLicenseInfos(licensePaths)
|
||||
|
||||
const artwork = contents.filter(
|
||||
(pth) => pth.match(/(.svg|.png|.jpg|.ttf|.otf|.woff)$/i) != null
|
||||
)
|
||||
const missingLicenses = missingLicenseInfos(licenseInfos, artwork)
|
||||
if (args.indexOf("--prompt") >= 0 || args.indexOf("--query") >= 0) {
|
||||
queryMissingLicenses(missingLicenses)
|
||||
return main([])
|
||||
}
|
||||
|
||||
const invalidLicenses = licenseInfos
|
||||
.filter((l) => (l.license ?? "") === "")
|
||||
.map((l) => `License for artwork ${l.path} is empty string or undefined`)
|
||||
|
||||
let invalid = 0
|
||||
for (const licenseInfo of licenseInfos) {
|
||||
const isTrivial =
|
||||
licenseInfo.license
|
||||
.split(";")
|
||||
.map((l) => l.trim().toLowerCase())
|
||||
.indexOf("trivial") >= 0
|
||||
if (licenseInfo.sources.length + licenseInfo.authors.length == 0 && !isTrivial) {
|
||||
invalid++
|
||||
invalidLicenses.push(
|
||||
"Invalid license: No sources nor authors given in the license for " +
|
||||
JSON.stringify(licenseInfo)
|
||||
)
|
||||
continue
|
||||
}
|
||||
|
||||
for (const source of licenseInfo.sources) {
|
||||
if (source == "") {
|
||||
invalidLicenses.push(
|
||||
"Invalid license: empty string in " + JSON.stringify(licenseInfo)
|
||||
)
|
||||
}
|
||||
validateLicenseInfo(l: SmallLicense) {
|
||||
l.sources.map((s) => {
|
||||
try {
|
||||
new URL(source)
|
||||
} catch {
|
||||
invalidLicenses.push("Not a valid URL: " + source)
|
||||
return new URL(s)
|
||||
} catch (e) {
|
||||
throw "Could not parse URL " + s + " for a license for " + l.path + " due to " + e
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Sweeps the entire 'assets/' (except assets/generated) directory for image files and any 'license_info.json'-file.
|
||||
* Checks that the license info is included for each of them and generates a compiles license_info.json for those
|
||||
*/
|
||||
|
||||
generateLicenseInfos(paths: string[]): SmallLicense[] {
|
||||
const licenses = []
|
||||
for (const path of paths) {
|
||||
try {
|
||||
const parsed = JSON.parse(readFileSync(path, { encoding: "utf8" }))
|
||||
if (Array.isArray(parsed)) {
|
||||
const l: SmallLicense[] = parsed
|
||||
for (const smallLicens of l) {
|
||||
smallLicens.path =
|
||||
path.substring(0, path.length - "license_info.json".length) +
|
||||
smallLicens.path
|
||||
}
|
||||
licenses.push(...l)
|
||||
} else {
|
||||
const smallLicens: SmallLicense = parsed
|
||||
smallLicens.path =
|
||||
path.substring(0, 1 + path.lastIndexOf("/")) + smallLicens.path
|
||||
licenses.push(smallLicens)
|
||||
}
|
||||
} catch (e) {
|
||||
console.error("Error: ", e, "while handling", path)
|
||||
}
|
||||
}
|
||||
return licenses
|
||||
}
|
||||
|
||||
if (missingLicenses.length > 0 || invalidLicenses.length) {
|
||||
const msg = `There are ${missingLicenses.length} licenses missing and ${invalidLicenses.length} invalid licenses.`
|
||||
console.log(missingLicenses.concat(invalidLicenses).join("\n"))
|
||||
console.error(msg)
|
||||
if (args.indexOf("--no-fail") < 0) {
|
||||
throw msg
|
||||
missingLicenseInfos(licenseInfos: SmallLicense[], allIcons: string[]) {
|
||||
const missing = []
|
||||
|
||||
const knownPaths = new Set<string>()
|
||||
for (const licenseInfo of licenseInfos) {
|
||||
knownPaths.add(licenseInfo.path)
|
||||
}
|
||||
|
||||
for (const iconPath of allIcons) {
|
||||
if (iconPath.indexOf("license_info.json") >= 0) {
|
||||
continue
|
||||
}
|
||||
if (knownPaths.has(iconPath)) {
|
||||
continue
|
||||
}
|
||||
missing.push(iconPath)
|
||||
}
|
||||
return missing
|
||||
}
|
||||
|
||||
promptLicenseFor(path): SmallLicense {
|
||||
const knownLicenses = GenerateLicenseInfo.defaultLicenses()
|
||||
console.log("License abbreviations:")
|
||||
knownLicenses.forEach((value, key) => {
|
||||
console.log(key, " => ", value)
|
||||
})
|
||||
const author = prompt(
|
||||
"What is the author for artwork " + path + "? (or: [Q]uit, [S]kip) > "
|
||||
)
|
||||
path = path.substring(path.lastIndexOf("/") + 1)
|
||||
|
||||
if (knownLicenses.has(author)) {
|
||||
const license = knownLicenses.get(author)
|
||||
license.path = path
|
||||
return license
|
||||
}
|
||||
|
||||
if (author == "s") {
|
||||
return null
|
||||
}
|
||||
if (author == "Q" || author == "q" || author == "") {
|
||||
throw "Quitting now!"
|
||||
}
|
||||
let authors = author.split(";")
|
||||
if (author.toLowerCase() == "none") {
|
||||
authors = []
|
||||
}
|
||||
return {
|
||||
authors: author.split(";"),
|
||||
path: path,
|
||||
license: prompt("What is the license for artwork " + path + "? > "),
|
||||
sources: prompt("Where was this artwork found? > ").split(";"),
|
||||
}
|
||||
}
|
||||
|
||||
cleanLicenseInfo(licensePaths, licenseInfos)
|
||||
createFullLicenseOverview(licensePaths)
|
||||
createLicenseInfoFor(path): void {
|
||||
const li = this.promptLicenseFor(path)
|
||||
if (li == null) {
|
||||
return
|
||||
}
|
||||
writeFileSync(path + ".license_info.json", JSON.stringify(li, null, " "))
|
||||
}
|
||||
|
||||
cleanLicenseInfo(allPaths: string[], allLicenseInfos: SmallLicense[]) {
|
||||
// Read the license info file from the generated assets, creates a compiled license info in every directory
|
||||
// Note: this removes all the old license infos
|
||||
for (const licensePath of allPaths) {
|
||||
unlinkSync(licensePath)
|
||||
}
|
||||
|
||||
const perDirectory = new Map<string, SmallLicense[]>()
|
||||
|
||||
for (const license of allLicenseInfos) {
|
||||
const p = license.path
|
||||
const dir = p.substring(0, p.lastIndexOf("/"))
|
||||
license.path = p.substring(dir.length + 1)
|
||||
if (!perDirectory.has(dir)) {
|
||||
perDirectory.set(dir, [])
|
||||
}
|
||||
const cloned: SmallLicense = {
|
||||
// We make a clone to force the order of the keys
|
||||
path: license.path,
|
||||
license: license.license,
|
||||
authors: license.authors,
|
||||
sources: license.sources,
|
||||
}
|
||||
perDirectory.get(dir).push(cloned)
|
||||
}
|
||||
|
||||
perDirectory.forEach((licenses, dir) => {
|
||||
for (let i = licenses.length - 1; i >= 0; i--) {
|
||||
const license = licenses[i]
|
||||
const path = dir + "/" + license.path
|
||||
if (!existsSync(path)) {
|
||||
console.log(
|
||||
"Found license for now missing file: ",
|
||||
path,
|
||||
" - removing this license"
|
||||
)
|
||||
licenses.splice(i, 1)
|
||||
}
|
||||
}
|
||||
|
||||
licenses.sort((a, b) => (a.path < b.path ? -1 : 1))
|
||||
writeFileSync(dir + "/license_info.json", JSON.stringify(licenses, null, 2))
|
||||
})
|
||||
}
|
||||
|
||||
queryMissingLicenses(missingLicenses: string[]) {
|
||||
process.on("SIGINT", function () {
|
||||
console.log("Aborting... Bye!")
|
||||
process.exit()
|
||||
})
|
||||
|
||||
let i = 1
|
||||
for (const missingLicens of missingLicenses) {
|
||||
console.log(i + " / " + missingLicenses.length)
|
||||
i++
|
||||
if (i < missingLicenses.length - 5) {
|
||||
// continue
|
||||
}
|
||||
this.createLicenseInfoFor(missingLicens)
|
||||
}
|
||||
|
||||
console.log("You're through!")
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates the humongous license_info in the generated assets, containing all licenses with a path relative to the root
|
||||
* @param licensePaths
|
||||
*/
|
||||
createFullLicenseOverview(licensePaths: string[]) {
|
||||
const allLicenses: SmallLicense[] = []
|
||||
for (const licensePath of licensePaths) {
|
||||
if (!existsSync(licensePath)) {
|
||||
continue
|
||||
}
|
||||
const licenses = <SmallLicense[]>(
|
||||
JSON.parse(readFileSync(licensePath, { encoding: "utf8" }))
|
||||
)
|
||||
for (const license of licenses) {
|
||||
this.validateLicenseInfo(license)
|
||||
const dir = licensePath.substring(
|
||||
0,
|
||||
licensePath.length - "license_info.json".length
|
||||
)
|
||||
license.path = dir + license.path
|
||||
allLicenses.push(license)
|
||||
}
|
||||
}
|
||||
|
||||
writeFileSync(
|
||||
"./assets/generated/license_info.json",
|
||||
JSON.stringify(allLicenses, null, " ")
|
||||
)
|
||||
}
|
||||
|
||||
async main(args: string[]) {
|
||||
console.log("Checking and compiling license info")
|
||||
|
||||
if (!existsSync("./assets/generated")) {
|
||||
mkdirSync("./assets/generated")
|
||||
}
|
||||
|
||||
let contents = ScriptUtils.readDirRecSync("./assets")
|
||||
.filter((p) => !p.startsWith("./assets/templates/"))
|
||||
.filter((entry) => entry.indexOf("./assets/generated") != 0)
|
||||
let licensePaths = contents.filter((entry) => entry.indexOf("license_info.json") >= 0)
|
||||
let licenseInfos = this.generateLicenseInfos(licensePaths)
|
||||
|
||||
const artwork = contents.filter(
|
||||
(pth) => pth.match(/(.svg|.png|.jpg|.ttf|.otf|.woff)$/i) != null
|
||||
)
|
||||
const missingLicenses = this.missingLicenseInfos(licenseInfos, artwork)
|
||||
if (args.indexOf("--prompt") >= 0 || args.indexOf("--query") >= 0) {
|
||||
this.queryMissingLicenses(missingLicenses)
|
||||
return this.main([])
|
||||
}
|
||||
|
||||
const invalidLicenses = licenseInfos
|
||||
.filter((l) => (l.license ?? "") === "")
|
||||
.map((l) => `License for artwork ${l.path} is empty string or undefined`)
|
||||
|
||||
let invalid = 0
|
||||
for (const licenseInfo of licenseInfos) {
|
||||
const isTrivial =
|
||||
licenseInfo.license
|
||||
.split(";")
|
||||
.map((l) => l.trim().toLowerCase())
|
||||
.indexOf("trivial") >= 0
|
||||
if (licenseInfo.sources.length + licenseInfo.authors.length == 0 && !isTrivial) {
|
||||
invalid++
|
||||
invalidLicenses.push(
|
||||
"Invalid license: No sources nor authors given in the license for " +
|
||||
JSON.stringify(licenseInfo)
|
||||
)
|
||||
continue
|
||||
}
|
||||
|
||||
for (const source of licenseInfo.sources) {
|
||||
if (source == "") {
|
||||
invalidLicenses.push(
|
||||
"Invalid license: empty string in " + JSON.stringify(licenseInfo)
|
||||
)
|
||||
}
|
||||
try {
|
||||
new URL(source)
|
||||
} catch {
|
||||
invalidLicenses.push("Not a valid URL: " + source)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (missingLicenses.length > 0 || invalidLicenses.length) {
|
||||
const msg = `There are ${missingLicenses.length} licenses missing and ${invalidLicenses.length} invalid licenses.`
|
||||
console.log(missingLicenses.concat(invalidLicenses).join("\n"))
|
||||
console.error(msg)
|
||||
if (args.indexOf("--no-fail") < 0) {
|
||||
throw msg
|
||||
}
|
||||
}
|
||||
|
||||
this.cleanLicenseInfo(licensePaths, licenseInfos)
|
||||
this.createFullLicenseOverview(licensePaths)
|
||||
}
|
||||
}
|
||||
|
||||
main(process.argv.slice(2))
|
||||
new GenerateLicenseInfo().run()
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
import Constants from "../Models/Constants"
|
||||
|
||||
console.log("git tag -a", Constants.vNumber, `-m "Deployed on ${new Date()}"`)
|