--- a/ConfTreeNodeEditor.py Tue Jun 19 21:59:34 2012 +0200
+++ b/ConfTreeNodeEditor.py Fri Jul 06 21:00:43 2012 +0200
@@ -9,9 +9,9 @@
from PLCOpenEditor import TITLE, FILEMENU, PROJECTTREE, PAGETITLES
-from util.misc import opjimg
from util.TextCtrlAutoComplete import TextCtrlAutoComplete
from util.BrowseValuesLibraryDialog import BrowseValuesLibraryDialog
+from utils.BitmapLibrary import GetBitmap
if wx.Platform == '__WXMSW__':
faces = { 'times': 'Times New Roman',
@@ -124,12 +124,8 @@
style = 0,
name = "genstatbmp"):
- bitmappath = Bpath( "images", bitmapname)
- if os.path.isfile(bitmappath):
- bitmap = wx.Bitmap(bitmappath)
- else:
- bitmap = None
- wx.lib.statbmp.GenStaticBitmap.__init__(self, parent, ID, bitmap,
+ wx.lib.statbmp.GenStaticBitmap.__init__(self, parent, ID,
+ GetBitmap(bitmapname),
pos, size,
style,
name)
@@ -151,15 +147,15 @@
def _init_ConfNodeEditor(self, prnt):
self.ConfNodeEditor = None
- def _init_Editor(self, prnt):
- self.Editor = wx.SplitterWindow(id=self.ID, name='EditorSplitter', parent=prnt,
- size=wx.Size(0, 0), style=wx.SUNKEN_BORDER|wx.SP_3D)
+ def _init_Editor(self, parent):
+ self.Editor = wx.SplitterWindow(parent,
+ style=wx.SUNKEN_BORDER|wx.SP_3D)
self.SetNeedUpdating(True)
self.SetMinimumPaneSize(1)
if self.SHOW_PARAMS:
- self.ParamsEditor = wx.ScrolledWindow(self.Editor, -1, size=wx.Size(-1, -1),
- style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL)
+ self.ParamsEditor = wx.ScrolledWindow(self.Editor,
+ style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL)
self.ParamsEditor.SetBackgroundColour(WINDOW_COLOUR)
self.ParamsEditor.Bind(wx.EVT_SIZE, self.OnWindowResize)
self.ParamsEditor.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel)
@@ -175,51 +171,45 @@
self.ParamsEditor.SetSizer(self.ParamsEditorSizer)
baseparamseditor_sizer = wx.BoxSizer(wx.HORIZONTAL)
- self.ParamsEditorSizer.AddSizer(baseparamseditor_sizer, 0, border=5,
- flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.TOP)
+ self.ParamsEditorSizer.AddSizer(baseparamseditor_sizer, border=5,
+ flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.TOP)
self.FullIECChannel = wx.StaticText(self.ParamsEditor, -1)
self.FullIECChannel.SetFont(
wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL,
wx.BOLD, faceName = faces["helv"]))
- baseparamseditor_sizer.AddWindow(self.FullIECChannel, 0, border=0, flag=wx.ALIGN_CENTER_VERTICAL)
+ baseparamseditor_sizer.AddWindow(self.FullIECChannel,
+ flag=wx.ALIGN_CENTER_VERTICAL)
updownsizer = wx.BoxSizer(wx.VERTICAL)
- baseparamseditor_sizer.AddSizer(updownsizer, 0, border=5,
- flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL)
-
- ieccupbutton_id = wx.NewId()
- self.IECCUpButton = wx.lib.buttons.GenBitmapTextButton(
- id=ieccupbutton_id, bitmap=wx.Bitmap(opjimg('IECCDown')),
- name='IECUpButton', parent=self.ParamsEditor, pos=wx.Point(0, 0),
- size=wx.Size(16, 16), style=wx.NO_BORDER)
+ baseparamseditor_sizer.AddSizer(updownsizer, border=5,
+ flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL)
+
+ self.IECCUpButton = wx.lib.buttons.GenBitmapTextButton(self.ParamsEditor,
+ bitmap=GetBitmap('IECCDown'), size=wx.Size(16, 16), style=wx.NO_BORDER)
self.IECCUpButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(1),
- id=ieccupbutton_id)
- updownsizer.AddWindow(self.IECCUpButton, 0, border=0, flag=wx.ALIGN_LEFT)
-
- ieccdownbutton_id = wx.NewId()
- self.IECCDownButton = wx.lib.buttons.GenBitmapButton(
- id=ieccdownbutton_id, bitmap=wx.Bitmap(opjimg('IECCUp')),
- name='IECDownButton', parent=self.ParamsEditor, pos=wx.Point(0, 0),
- size=wx.Size(16, 16), style=wx.NO_BORDER)
+ self.IECCUpButton)
+ updownsizer.AddWindow(self.IECCUpButton, flag=wx.ALIGN_LEFT)
+
+ self.IECCDownButton = wx.lib.buttons.GenBitmapButton(self.ParamsEditor,
+ bitmap=GetBitmap('IECCUp'), size=wx.Size(16, 16), style=wx.NO_BORDER)
self.IECCDownButton.Bind(wx.EVT_BUTTON, self.GetItemChannelChangedFunction(-1),
- id=ieccdownbutton_id)
- updownsizer.AddWindow(self.IECCDownButton, 0, border=0, flag=wx.ALIGN_LEFT)
-
- confnodename_id = wx.NewId()
- self.ConfNodeName = wx.TextCtrl(
- self.ParamsEditor, confnodename_id,
+ self.IECCDownButton)
+ updownsizer.AddWindow(self.IECCDownButton, flag=wx.ALIGN_LEFT)
+
+ self.ConfNodeName = wx.TextCtrl(self.ParamsEditor,
size=wx.Size(150, 25), style=wx.NO_BORDER)
self.ConfNodeName.SetFont(
wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL,
wx.BOLD, faceName = faces["helv"]))
self.ConfNodeName.Bind(wx.EVT_TEXT,
- self.GetTextCtrlCallBackFunction(self.ConfNodeName, "BaseParams.Name", True),
- id=confnodename_id)
- baseparamseditor_sizer.AddWindow(self.ConfNodeName, 0, border=5, flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
+ self.GetTextCtrlCallBackFunction(self.ConfNodeName, "BaseParams.Name", True),
+ self.ConfNodeName)
+ baseparamseditor_sizer.AddWindow(self.ConfNodeName, border=5,
+ flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL)
buttons_sizer = self.GenerateMethodButtonSizer()
- baseparamseditor_sizer.AddSizer(buttons_sizer, 0, border=0, flag=wx.ALIGN_CENTER)
+ baseparamseditor_sizer.AddSizer(buttons_sizer, flag=wx.ALIGN_CENTER)
else:
self.ParamsEditorSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=1, vgap=5)
@@ -227,8 +217,8 @@
self.ParamsEditorSizer.AddGrowableRow(0)
self.ConfNodeParamsSizer = wx.BoxSizer(wx.VERTICAL)
- self.ParamsEditorSizer.AddSizer(self.ConfNodeParamsSizer, 0, border=5,
- flag=wx.LEFT|wx.RIGHT|wx.BOTTOM)
+ self.ParamsEditorSizer.AddSizer(self.ConfNodeParamsSizer, border=5,
+ flag=wx.LEFT|wx.RIGHT|wx.BOTTOM)
self.RefreshConfNodeParamsSizer()
else:
@@ -250,11 +240,12 @@
def __init__(self, parent, controler, window, tagname=""):
EditorPanel.__init__(self, parent, tagname, window, controler)
- icon_path = self.Controler.GetIconPath()
- if icon_path is None:
- icon_path = opjimg("Extension")
- self.SetIcon(wx.Bitmap(icon_path, wx.BITMAP_TYPE_PNG))
-
+ icon_name = self.Controler.GetIconName()
+ if icon_name is not None:
+ self.SetIcon(GetBitmap(icon_name))
+ else:
+ self.SetIcon(GetBitmap("Extension"))
+
def __del__(self):
self.Controler.OnCloseEditor(self)
@@ -313,20 +304,15 @@
for confnode_method in self.Controler.ConfNodeMethods:
if "method" in confnode_method and confnode_method.get("shown",True):
- id = wx.NewId()
- label = confnode_method["name"]
- bitmap_path = confnode_method.get("bitmap", "Unknown")
- if os.path.splitext(bitmap_path)[1] == "":
- bitmap_path = Bpath("images", "%s.png" % bitmap_path)
- button = GenBitmapTextButton(id=id, parent=self.ParamsEditor,
- bitmap=wx.Bitmap(bitmap_path), label=label,
- name=label, pos=wx.DefaultPosition, style=wx.NO_BORDER)
+ button = GenBitmapTextButton(self.ParamsEditor,
+ bitmap=GetBitmap(confnode_method.get("bitmap", "Unknown")),
+ label=confnode_method["name"], style=wx.NO_BORDER)
button.SetFont(normal_bt_font)
button.SetToolTipString(confnode_method["tooltip"])
if confnode_method.get("push", False):
button.Bind(wx.EVT_LEFT_DOWN, self.GetButtonCallBackFunction(confnode_method["method"], True))
else:
- button.Bind(wx.EVT_BUTTON, self.GetButtonCallBackFunction(confnode_method["method"]), id=id)
+ button.Bind(wx.EVT_BUTTON, self.GetButtonCallBackFunction(confnode_method["method"]), button)
# a fancy underline on mouseover
def setFontStyle(b, s):
def fn(event):
@@ -339,7 +325,7 @@
#hack to force size to mini
if not confnode_method.get("enabled",True):
button.Disable()
- msizer.AddWindow(button, 0, border=0, flag=wx.ALIGN_CENTER)
+ msizer.AddWindow(button, flag=wx.ALIGN_CENTER)
return msizer
def GenerateSizerElements(self, sizer, elements, path, clean = True):
@@ -353,57 +339,64 @@
element_path = element_infos["name"]
if element_infos["type"] == "element":
label = element_infos["name"]
- staticbox = wx.StaticBox(id=-1, label=_(label),
- name='%s_staticbox'%element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(10, 0), style=0)
+ staticbox = wx.StaticBox(self.ParamsEditor,
+ label=_(label), size=wx.Size(10, 0))
staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
if first:
- sizer.AddSizer(staticboxsizer, 0, border=5, flag=wx.GROW|wx.TOP|wx.BOTTOM)
+ sizer.AddSizer(staticboxsizer, border=5,
+ flag=wx.GROW|wx.TOP|wx.BOTTOM)
else:
- sizer.AddSizer(staticboxsizer, 0, border=5, flag=wx.GROW|wx.BOTTOM)
- self.GenerateSizerElements(staticboxsizer, element_infos["children"], element_path)
+ sizer.AddSizer(staticboxsizer, border=5,
+ flag=wx.GROW|wx.BOTTOM)
+ self.GenerateSizerElements(staticboxsizer,
+ element_infos["children"],
+ element_path)
else:
boxsizer = wx.FlexGridSizer(cols=3, rows=1)
boxsizer.AddGrowableCol(1)
if first:
- sizer.AddSizer(boxsizer, 0, border=5, flag=wx.GROW|wx.ALL)
+ sizer.AddSizer(boxsizer, border=5,
+ flag=wx.GROW|wx.ALL)
else:
- sizer.AddSizer(boxsizer, 0, border=5, flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.BOTTOM)
- staticbitmap = GenStaticBitmap(ID=-1, bitmapname="%s.png"%element_infos["name"],
+ sizer.AddSizer(boxsizer, border=5,
+ flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.BOTTOM)
+
+ staticbitmap = GenStaticBitmap(ID=-1, bitmapname=element_infos["name"],
name="%s_bitmap"%element_infos["name"], parent=self.ParamsEditor,
pos=wx.Point(0, 0), size=wx.Size(24, 24), style=0)
- boxsizer.AddWindow(staticbitmap, 0, border=5, flag=wx.RIGHT)
- label = element_infos["name"]
- statictext = wx.StaticText(id=-1, label="%s:"%_(label),
- name="%s_label"%element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.DefaultSize, style=0)
- boxsizer.AddWindow(statictext, 0, border=5, flag=wx.ALIGN_CENTER_VERTICAL|wx.RIGHT)
- id = wx.NewId()
+ boxsizer.AddWindow(staticbitmap, border=5, flag=wx.RIGHT)
+
+ statictext = wx.StaticText(self.ParamsEditor,
+ label="%s:"%_(element_infos["name"]))
+ boxsizer.AddWindow(statictext, border=5,
+ flag=wx.ALIGN_CENTER_VERTICAL|wx.RIGHT)
+
if isinstance(element_infos["type"], types.ListType):
if isinstance(element_infos["value"], types.TupleType):
browse_boxsizer = wx.BoxSizer(wx.HORIZONTAL)
- boxsizer.AddSizer(browse_boxsizer, 0, border=0, flag=0)
+ boxsizer.AddSizer(browse_boxsizer)
- textctrl = wx.TextCtrl(id=id, name=element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(275, 25), style=wx.TE_READONLY)
+ textctrl = wx.TextCtrl(self.ParamsEditor,
+ size=wx.Size(275, 25), style=wx.TE_READONLY)
if element_infos["value"] is not None:
textctrl.SetValue(element_infos["value"][0])
value_infos = element_infos["value"][1]
else:
value_infos = None
- browse_boxsizer.AddWindow(textctrl, 0, border=0, flag=0)
- button_id = wx.NewId()
- button = wx.Button(id=button_id, name="browse_%s" % element_infos["name"], parent=self.ParamsEditor,
- label="...", pos=wx.Point(0, 0), size=wx.Size(25, 25))
- browse_boxsizer.AddWindow(button, 0, border=0, flag=0)
+ browse_boxsizer.AddWindow(textctrl)
+
+ button = wx.Button(self.ParamsEditor,
+ label="...", size=wx.Size(25, 25))
+ browse_boxsizer.AddWindow(button)
button.Bind(wx.EVT_BUTTON,
self.GetBrowseCallBackFunction(element_infos["name"], textctrl, element_infos["type"],
value_infos, element_path),
- id=button_id)
+ button)
else:
- combobox = wx.ComboBox(id=id, name=element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(300, 28), style=wx.CB_READONLY)
- boxsizer.AddWindow(combobox, 0, border=0, flag=0)
+ combobox = wx.ComboBox(self.ParamsEditor,
+ size=wx.Size(300, 28), style=wx.CB_READONLY)
+ boxsizer.AddWindow(combobox)
+
if element_infos["use"] == "optional":
combobox.Append("")
if len(element_infos["type"]) > 0 and isinstance(element_infos["type"][0], types.TupleType):
@@ -411,11 +404,11 @@
combobox.Append(choice)
name = element_infos["name"]
value = element_infos["value"]
- staticbox = wx.StaticBox(id=-1, label="%s - %s"%(_(name), _(value)),
- name='%s_staticbox'%element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(10, 0), style=0)
+
+ staticbox = wx.StaticBox(self.ParamsEditor,
+ label="%s - %s"%(_(name), _(value)), size=wx.Size(10, 0))
staticboxsizer = wx.StaticBoxSizer(staticbox, wx.VERTICAL)
- sizer.AddSizer(staticboxsizer, 0, border=5, flag=wx.GROW|wx.BOTTOM)
+ sizer.AddSizer(staticboxsizer, border=5, flag=wx.GROW|wx.BOTTOM)
self.GenerateSizerElements(staticboxsizer, element_infos["children"], element_path)
callback = self.GetChoiceContentCallBackFunction(combobox, staticboxsizer, element_path)
else:
@@ -426,7 +419,8 @@
combobox.SetStringSelection("")
else:
combobox.SetStringSelection(element_infos["value"])
- combobox.Bind(wx.EVT_COMBOBOX, callback, id=id)
+ combobox.Bind(wx.EVT_COMBOBOX, callback, combobox)
+
elif isinstance(element_infos["type"], types.DictType):
scmin = -(2**31)
scmax = 2**31-1
@@ -434,47 +428,52 @@
scmin = element_infos["type"]["min"]
if "max" in element_infos["type"]:
scmax = element_infos["type"]["max"]
- spinctrl = wx.SpinCtrl(id=id, name=element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(300, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
- spinctrl.SetRange(scmin,scmax)
- boxsizer.AddWindow(spinctrl, 0, border=0, flag=0)
+ spinctrl = wx.SpinCtrl(self.ParamsEditor,
+ size=wx.Size(300, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
+ spinctrl.SetRange(scmin, scmax)
+ boxsizer.AddWindow(spinctrl)
if element_infos["value"] is not None:
spinctrl.SetValue(element_infos["value"])
- spinctrl.Bind(wx.EVT_SPINCTRL, self.GetTextCtrlCallBackFunction(spinctrl, element_path), id=id)
+ spinctrl.Bind(wx.EVT_SPINCTRL,
+ self.GetTextCtrlCallBackFunction(spinctrl, element_path),
+ spinctrl)
+
else:
if element_infos["type"] == "boolean":
- checkbox = wx.CheckBox(id=id, name=element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(17, 25), style=0)
- boxsizer.AddWindow(checkbox, 0, border=0, flag=0)
+ checkbox = wx.CheckBox(self.ParamsEditor, size=wx.Size(17, 25))
+ boxsizer.AddWindow(checkbox)
if element_infos["value"] is not None:
checkbox.SetValue(element_infos["value"])
- checkbox.Bind(wx.EVT_CHECKBOX, self.GetCheckBoxCallBackFunction(checkbox, element_path), id=id)
+ checkbox.Bind(wx.EVT_CHECKBOX,
+ self.GetCheckBoxCallBackFunction(checkbox, element_path),
+ checkbox)
+
elif element_infos["type"] in ["unsignedLong", "long","integer"]:
if element_infos["type"].startswith("unsigned"):
scmin = 0
else:
scmin = -(2**31)
scmax = 2**31-1
- spinctrl = wx.SpinCtrl(id=id, name=element_infos["name"], parent=self.ParamsEditor,
- pos=wx.Point(0, 0), size=wx.Size(300, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
+ spinctrl = wx.SpinCtrl(self.ParamsEditor,
+ size=wx.Size(300, 25), style=wx.SP_ARROW_KEYS|wx.ALIGN_RIGHT)
spinctrl.SetRange(scmin, scmax)
- boxsizer.AddWindow(spinctrl, 0, border=0, flag=0)
+ boxsizer.AddWindow(spinctrl)
if element_infos["value"] is not None:
spinctrl.SetValue(element_infos["value"])
- spinctrl.Bind(wx.EVT_SPINCTRL, self.GetTextCtrlCallBackFunction(spinctrl, element_path), id=id)
+ spinctrl.Bind(wx.EVT_SPINCTRL,
+ self.GetTextCtrlCallBackFunction(spinctrl, element_path),
+ spinctrl)
+
else:
choices = self.ParentWindow.GetConfigEntry(element_path, [""])
- textctrl = TextCtrlAutoComplete(id=id,
- name=element_infos["name"],
- parent=self.ParamsEditor,
- appframe=self,
- choices=choices,
- element_path=element_path,
- pos=wx.Point(0, 0),
- size=wx.Size(300, 25),
- style=0)
+ textctrl = TextCtrlAutoComplete(name=element_infos["name"],
+ parent=self.ParamsEditor,
+ appframe=self,
+ choices=choices,
+ element_path=element_path,
+ size=wx.Size(300, 25))
- boxsizer.AddWindow(textctrl, 0, border=0, flag=0)
+ boxsizer.AddWindow(textctrl)
if element_infos["value"] is not None:
textctrl.ChangeValue(str(element_infos["value"]))
textctrl.Bind(wx.EVT_TEXT, self.GetTextCtrlCallBackFunction(textctrl, element_path))
--- a/images/icons.svg Tue Jun 19 21:59:34 2012 +0200
+++ b/images/icons.svg Fri Jul 06 21:00:43 2012 +0200
@@ -43,9 +43,9 @@
pagecolor="#ffffff"
id="base"
showgrid="false"
- inkscape:zoom="2.5600001"
- inkscape:cx="643.14253"
- inkscape:cy="778.71873"
+ inkscape:zoom="28.963095"
+ inkscape:cx="519.38634"
+ inkscape:cy="721.386"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:current-layer="svg2"
@@ -85902,6 +85902,2133 @@
y1="198.01724"
x2="131.52188"
y2="41.586746" />
+ <linearGradient
+ id="linearGradient2915"
+ y2="609.51001"
+ gradientUnits="userSpaceOnUse"
+ x2="302.85999"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1892.2,-872.89)"
+ y1="366.64999"
+ x1="302.85999">
+ <stop
+ id="stop5050-0"
+ style="stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop5056-7"
+ offset=".5" />
+ <stop
+ id="stop5052-7"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2917"
+ xlink:href="#linearGradient5060-1"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1891.6,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient5060-1">
+ <stop
+ id="stop5062-4"
+ offset="0" />
+ <stop
+ id="stop5064-1"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2919"
+ xlink:href="#linearGradient5060-1"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(-2.7744,0,0,1.9697,112.76,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient3035">
+ <stop
+ id="stop3037-1"
+ offset="0" />
+ <stop
+ id="stop3039"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2932"
+ y2="238.39999"
+ gradientUnits="userSpaceOnUse"
+ x2="169.23"
+ gradientTransform="matrix(0.054893,0.013851,0.0025726,0.052482,-0.7128,-0.26741)"
+ y1="58.583"
+ x1="126.7">
+ <stop
+ id="stop2612-5"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop2614-6"
+ style="stop-color:#e18941"
+ offset=".5" />
+ <stop
+ id="stop2616"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2934-3"
+ y2="4.0514002"
+ gradientUnits="userSpaceOnUse"
+ x2="4.1760001"
+ gradientTransform="matrix(1.0083,0,0,1.0006,-8.2398e-4,-0.0066209)"
+ y1="14.993"
+ x1="10.318">
+ <stop
+ id="stop2605-0"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop2607"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2929"
+ y2="24.628"
+ gradientUnits="userSpaceOnUse"
+ x2="20.055"
+ gradientTransform="matrix(0.29669,0,0,0.35207,1.8805,2.1186)"
+ y1="16.408001"
+ x1="18.031">
+ <stop
+ id="stop2687"
+ style="stop-color:#fff;stop-opacity:.2"
+ offset="0" />
+ <stop
+ id="stop2689"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2536"
+ y2="32.485001"
+ gradientUnits="userSpaceOnUse"
+ x2="24.104"
+ gradientTransform="matrix(0.32803,0,0,0.32571,4.445,4.532)"
+ y1="15.169"
+ x1="24.104">
+ <stop
+ id="stop3947"
+ style="stop-color:#ecf5b6"
+ offset="0" />
+ <stop
+ id="stop3949"
+ style="stop-color:#9fba48"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="16"
+ x2="15"
+ y1="1"
+ x1="0"
+ gradientTransform="translate(-40,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient18010-6"
+ xlink:href="#linearGradient5175-3-7-9-2-7"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5175-3-7-9-2-7">
+ <stop
+ style="stop-color:#bdcccd;stop-opacity:1;"
+ offset="0"
+ id="stop5177-6-9-6-1-9" />
+ <stop
+ style="stop-color:#7979ff;stop-opacity:1;"
+ offset="1"
+ id="stop5179-73-8-3-1-8" />
+ </linearGradient>
+ <linearGradient
+ y2="16"
+ x2="15"
+ y1="1"
+ x1="0"
+ gradientTransform="translate(-40,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient17986"
+ xlink:href="#linearGradient5175-3-7-9-2-7"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3262"
+ y2="16"
+ gradientUnits="userSpaceOnUse"
+ x2="25"
+ gradientTransform="translate(-17.058,0)"
+ x1="25">
+ <stop
+ id="stop3311"
+ style="stop-color:#f6f6f6"
+ offset="0" />
+ <stop
+ id="stop3313"
+ style="stop-color:#ccc"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3264"
+ y2="16.004999"
+ gradientUnits="userSpaceOnUse"
+ x2="21"
+ gradientTransform="translate(-17.058,0)"
+ x1="21">
+ <stop
+ id="stop3399"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3401"
+ style="stop-color:#8c8c8c"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3260"
+ y2="20.895"
+ gradientUnits="userSpaceOnUse"
+ x2="84.639"
+ gradientTransform="matrix(0.096142,0,0,0.096142,1.8469,1.943)"
+ y1="105.1"
+ x1="86.133003">
+ <stop
+ id="stop5130-5"
+ style="stop-color:#e5e5e5"
+ offset="0" />
+ <stop
+ id="stop5132"
+ style="stop-color:#ababab"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2447-4-6"
+ id="linearGradient17971-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.035207,0,0,0.0082353,273.01733,211.29633)"
+ x1="302.85999"
+ y1="366.64999"
+ x2="302.85999"
+ y2="609.51001" />
+ <linearGradient
+ id="linearGradient2447-4-6"
+ y2="609.51001"
+ gradientUnits="userSpaceOnUse"
+ x2="302.85999"
+ gradientTransform="matrix(0.035207,0,0,0.0082353,-0.72485,18.981)"
+ y1="366.64999"
+ x1="302.85999">
+ <stop
+ id="stop5050-7-0"
+ style="stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop5056-9"
+ offset=".5" />
+ <stop
+ id="stop5052-1"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060-7"
+ id="radialGradient17973-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.012049,0,0,0.0082353,284.50318,211.29633)"
+ cx="605.71002"
+ cy="486.64999"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient5060-7">
+ <stop
+ id="stop5062-5"
+ offset="0" />
+ <stop
+ id="stop5064-9"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060-7"
+ id="radialGradient17975-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.012049,0,0,0.0082353,286.98118,211.29633)"
+ cx="605.71002"
+ cy="486.64999"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient18060">
+ <stop
+ id="stop18062"
+ offset="0" />
+ <stop
+ id="stop18064"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2435-0-5"
+ id="linearGradient17977-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.48572,0,0,0.47803,274.08501,191.60938)"
+ x1="25.132"
+ y1="0.98521"
+ x2="25.132"
+ y2="47.013" />
+ <linearGradient
+ id="linearGradient2435-0-5"
+ y2="47.013"
+ gradientUnits="userSpaceOnUse"
+ x2="25.132"
+ gradientTransform="matrix(0.48572,0,0,0.47803,274.08501,191.60938)"
+ y1="0.98521"
+ x1="25.132">
+ <stop
+ id="stop3602-1"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3604-2"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2438-2-4"
+ id="linearGradient17979-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39221,0,0,0.44736,302.94118,191.07663)"
+ x1="-51.785999"
+ y1="50.785999"
+ x2="-51.785999"
+ y2="2.9061999" />
+ <linearGradient
+ id="linearGradient2438-2-4"
+ y2="2.9061999"
+ gradientUnits="userSpaceOnUse"
+ x2="-51.785999"
+ gradientTransform="matrix(0.39221,0,0,0.44736,302.94118,191.07663)"
+ y1="50.785999"
+ x1="-51.785999">
+ <stop
+ id="stop3106-5"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3108-7"
+ style="stop-color:#c8c8c8"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient2432-9"
+ id="radialGradient17981-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17021,0,0,-0.19072,274.84858,216.03233)"
+ cx="92.089996"
+ cy="102.7"
+ r="139.56" />
+ <radialGradient
+ id="radialGradient2432-9"
+ gradientUnits="userSpaceOnUse"
+ cy="102.7"
+ cx="92.089996"
+ gradientTransform="matrix(0.17021,0,0,-0.19072,274.84858,216.03233)"
+ r="139.56">
+ <stop
+ id="stop41-4"
+ style="stop-color:#b7b8b9"
+ offset="0" />
+ <stop
+ id="stop47-6"
+ style="stop-color:#ececec"
+ offset=".17403" />
+ <stop
+ id="stop49-0"
+ style="stop-color:#fafafa;stop-opacity:0"
+ offset=".23908" />
+ <stop
+ id="stop51-9"
+ style="stop-color:#fff;stop-opacity:0"
+ offset=".30111" />
+ <stop
+ id="stop53-4"
+ style="stop-color:#fafafa;stop-opacity:0"
+ offset=".53130" />
+ <stop
+ id="stop55-0"
+ style="stop-color:#ebecec;stop-opacity:0"
+ offset=".84490" />
+ <stop
+ id="stop57-4"
+ style="stop-color:#e1e2e3;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2429-7-0"
+ id="linearGradient17983-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.45454,0,0,0.46512,274.83308,192.65256)"
+ x1="24"
+ y1="2"
+ x2="24"
+ y2="46.016998" />
+ <linearGradient
+ id="linearGradient2429-7-0"
+ y2="46.016998"
+ gradientUnits="userSpaceOnUse"
+ x2="24"
+ gradientTransform="matrix(0.45454,0,0,0.46512,274.83308,192.65256)"
+ y1="2"
+ x1="24">
+ <stop
+ id="stop3213-4"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop3215-1"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2425-2-2"
+ id="linearGradient17985-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.47785,0,0,0.55248,274.11443,192.2392)"
+ x1="32.891998"
+ y1="8.059"
+ x2="36.358002"
+ y2="5.4565001" />
+ <linearGradient
+ id="linearGradient2425-2-2"
+ y2="5.4565001"
+ gradientUnits="userSpaceOnUse"
+ x2="36.358002"
+ gradientTransform="matrix(0.47785,0,0,0.55248,274.11443,192.2392)"
+ y1="8.059"
+ x1="32.891998">
+ <stop
+ id="stop8591-7-1"
+ style="stop-color:#fefefe"
+ offset="0" />
+ <stop
+ id="stop8593-9"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1291-0-8"
+ id="linearGradient16528-1-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.3316761,0,0,0.3316761,48.927852,9.2318583)"
+ x1="75.847473"
+ y1="79.6325"
+ x2="109.0923"
+ y2="124.12687" />
+ <linearGradient
+ id="linearGradient1291-0-8">
+ <stop
+ id="stop1292-9-7"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop1293-1-1"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2528"
+ y2="609.51001"
+ gradientUnits="userSpaceOnUse"
+ x2="302.85999"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1892.2,-872.89)"
+ y1="366.64999"
+ x1="302.85999">
+ <stop
+ id="stop5050-5"
+ style="stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop5056-5"
+ offset=".5" />
+ <stop
+ id="stop5052-14"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2530"
+ xlink:href="#linearGradient5060-75"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1891.6,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient5060-75">
+ <stop
+ id="stop5062-9"
+ offset="0" />
+ <stop
+ id="stop5064-97"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2532"
+ xlink:href="#linearGradient5060-75"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(-2.7744,0,0,1.9697,112.76,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient3052">
+ <stop
+ id="stop3054"
+ offset="0" />
+ <stop
+ id="stop3056"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2558"
+ y2="37.502998"
+ gradientUnits="userSpaceOnUse"
+ x2="-28.531"
+ gradientTransform="translate(34.378,-14.501)"
+ y1="17.955999"
+ x1="-28.531">
+ <stop
+ id="stop11113"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop11115-4"
+ style="stop-color:#cdcdcd"
+ offset=".91014" />
+ <stop
+ id="stop11117-8"
+ style="stop-color:#a1a1a1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2560-6"
+ y2="23.062"
+ gradientUnits="userSpaceOnUse"
+ x2="9.8764"
+ y1="2.6015"
+ x1="9.8764">
+ <stop
+ id="stop5159-9"
+ style="stop-color:#c1c1c1"
+ offset="0" />
+ <stop
+ id="stop5161"
+ style="stop-color:#909090"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2553-7"
+ gradientUnits="userSpaceOnUse"
+ cy="8.5608997"
+ cx="7.8186002"
+ gradientTransform="matrix(1.69,0,0,1.0436,-5.449,0.96175)"
+ r="11.268">
+ <stop
+ id="stop2612-6"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop2614-0"
+ style="stop-color:#e18941"
+ offset=".5" />
+ <stop
+ id="stop2616-1"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient2555"
+ y2="4.303"
+ gradientUnits="userSpaceOnUse"
+ x2="9.7046003"
+ gradientTransform="matrix(0.99458,0,0,0.99458,-0.33927,1.7178)"
+ y1="20.882"
+ x1="9.7046003">
+ <stop
+ id="stop2605-5"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop2607-7"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2550"
+ gradientUnits="userSpaceOnUse"
+ cy="5.5927"
+ cx="4.02"
+ gradientTransform="matrix(-0.016802,1.3943,-1.7966,-0.021651,14.152,2.1566)"
+ r="10.273">
+ <stop
+ id="stop3754"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop3760"
+ style="stop-color:#fff"
+ offset=".84754" />
+ <stop
+ id="stop3756"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient2547"
+ y2="24.628"
+ gradientUnits="userSpaceOnUse"
+ x2="20.055"
+ gradientTransform="matrix(0.44503,0,0,0.40237,2.8192,3.8499)"
+ y1="16.408001"
+ x1="18.031">
+ <stop
+ id="stop2687-7"
+ style="stop-color:#fff;stop-opacity:.27451"
+ offset="0" />
+ <stop
+ id="stop2689-9"
+ style="stop-color:#fff;stop-opacity:.078431"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2995-1"
+ y2="32.485001"
+ gradientUnits="userSpaceOnUse"
+ x2="24.104"
+ gradientTransform="matrix(0.46913,0,0,0.4663,7.7005,6.8085)"
+ y1="15.169"
+ x1="24.104">
+ <stop
+ id="stop2266-5"
+ style="stop-color:#d7e866"
+ offset="0" />
+ <stop
+ id="stop2268-3"
+ style="stop-color:#8cab2a"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2992"
+ y2="47.272999"
+ gradientUnits="userSpaceOnUse"
+ x2="24.139"
+ gradientTransform="matrix(0.2818,0,0,0.2801,12.197,11.015)"
+ y1="7.0774999"
+ x1="24.139">
+ <stop
+ id="stop4224"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop4226"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="47.272999"
+ x2="24.139"
+ y1="7.0774999"
+ x1="24.139"
+ gradientTransform="matrix(0.2818,0,0,0.2801,12.197,11.015)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3099"
+ xlink:href="#linearGradient2992"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2528"
+ id="linearGradient18360"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1892.2,-872.89)"
+ x1="302.85999"
+ y1="366.64999"
+ x2="302.85999"
+ y2="609.51001" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060-75"
+ id="radialGradient18362"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1891.6,-872.89)"
+ cx="605.71002"
+ cy="486.64999"
+ r="117.14" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060-75"
+ id="radialGradient18364"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-2.7744,0,0,1.9697,112.76,-872.89)"
+ cx="605.71002"
+ cy="486.64999"
+ r="117.14" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2558"
+ id="linearGradient18366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(34.378,-14.501)"
+ x1="-28.531"
+ y1="17.955999"
+ x2="-28.531"
+ y2="37.502998" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2560-6"
+ id="linearGradient18368"
+ gradientUnits="userSpaceOnUse"
+ x1="9.8764"
+ y1="2.6015"
+ x2="9.8764"
+ y2="23.062" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient2553-7"
+ id="radialGradient18370"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.69,0,0,1.0436,-5.449,0.96175)"
+ cx="7.8186002"
+ cy="8.5608997"
+ r="11.268" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2555"
+ id="linearGradient18373"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99458,0,0,0.99458,-0.33927,1.7178)"
+ x1="9.7046003"
+ y1="20.882"
+ x2="9.7046003"
+ y2="4.303" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient2550"
+ id="radialGradient18375"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.016802,1.3943,-1.7966,-0.021651,14.152,2.1566)"
+ cx="4.02"
+ cy="5.5927"
+ r="10.273" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2547"
+ id="linearGradient18377"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.44503,0,0,0.40237,2.8192,3.8499)"
+ x1="18.031"
+ y1="16.408001"
+ x2="20.055"
+ y2="24.628" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2995-1"
+ id="linearGradient18380"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.46913,0,0,0.4663,7.7005,6.8085)"
+ x1="24.104"
+ y1="15.169"
+ x2="24.104"
+ y2="32.485001" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2992"
+ id="linearGradient18382"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2818,0,0,0.2801,12.197,11.015)"
+ x1="24.139"
+ y1="7.0774999"
+ x2="24.139"
+ y2="47.272999" />
+ <linearGradient
+ id="linearGradient3262-6"
+ y2="16"
+ gradientUnits="userSpaceOnUse"
+ x2="25"
+ gradientTransform="translate(-17.058,0)"
+ x1="25">
+ <stop
+ id="stop3311-5"
+ style="stop-color:#f6f6f6"
+ offset="0" />
+ <stop
+ id="stop3313-9"
+ style="stop-color:#ccc"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3264-0"
+ y2="16.004999"
+ gradientUnits="userSpaceOnUse"
+ x2="21"
+ gradientTransform="translate(-17.058,0)"
+ x1="21">
+ <stop
+ id="stop3399-0"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3401-5"
+ style="stop-color:#8c8c8c"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3260-9"
+ y2="20.895"
+ gradientUnits="userSpaceOnUse"
+ x2="84.639"
+ gradientTransform="matrix(0.096142,0,0,0.096142,1.8469,1.943)"
+ y1="105.1"
+ x1="86.133003">
+ <stop
+ id="stop5130-1"
+ style="stop-color:#e5e5e5"
+ offset="0" />
+ <stop
+ id="stop5132-5"
+ style="stop-color:#ababab"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3262-6"
+ id="linearGradient18422"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-17.058,0)"
+ x1="25"
+ x2="25"
+ y2="16" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3264-0"
+ id="linearGradient18424"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-17.058,0)"
+ x1="21"
+ x2="21"
+ y2="16.004999" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3260-9"
+ id="linearGradient18426"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.096142,0,0,0.096142,1.8469,1.943)"
+ x1="86.133003"
+ y1="105.1"
+ x2="84.639"
+ y2="20.895" />
+ <linearGradient
+ id="linearGradient2990"
+ y2="47.013"
+ xlink:href="#linearGradient3600"
+ gradientUnits="userSpaceOnUse"
+ x2="25.132"
+ gradientTransform="matrix(0.51431,0,0,0.46669,705.20699,460.00841)"
+ y1="6.7287002"
+ x1="25.132" />
+ <linearGradient
+ id="linearGradient3600">
+ <stop
+ id="stop3602-0"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3604-3"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2992-8"
+ y2="-0.10106"
+ xlink:href="#linearGradient3931"
+ gradientUnits="userSpaceOnUse"
+ x2="-47.636002"
+ gradientTransform="matrix(0.4153,0,0,0.43675,735.76184,459.4883)"
+ y1="17.518"
+ x1="-56.333" />
+ <linearGradient
+ id="linearGradient3931">
+ <stop
+ id="stop3933"
+ style="stop-color:#787a75"
+ offset="0" />
+ <stop
+ id="stop3935-6"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2906"
+ y2="47.013"
+ xlink:href="#linearGradient3600"
+ gradientUnits="userSpaceOnUse"
+ x2="25.132"
+ gradientTransform="matrix(0.51431,0,0,0.46669,-5.8439,-5.2)"
+ y1="6.7287002"
+ x1="25.132" />
+ <linearGradient
+ id="linearGradient3015-2">
+ <stop
+ id="stop3017"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3019"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2908-0"
+ y2="2.9061999"
+ xlink:href="#linearGradient3931"
+ gradientUnits="userSpaceOnUse"
+ x2="-51.785999"
+ gradientTransform="matrix(0.4153,0,0,0.43675,24.711,-5.7201)"
+ y1="34.057999"
+ x1="-55.344002" />
+ <linearGradient
+ id="linearGradient3022">
+ <stop
+ id="stop3024"
+ style="stop-color:#787a75"
+ offset="0" />
+ <stop
+ id="stop3026"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="47.013"
+ x2="25.132"
+ y1="6.7287002"
+ x1="25.132"
+ gradientTransform="matrix(0.51431,0,0,0.46669,699.20694,454.00842)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3031"
+ xlink:href="#linearGradient3600"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="2.9061999"
+ x2="-51.785999"
+ y1="34.057999"
+ x1="-55.344002"
+ gradientTransform="matrix(0.4153,0,0,0.43675,729.76184,453.48832)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3033-2"
+ xlink:href="#linearGradient3931"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3600"
+ id="linearGradient18516"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51431,0,0,0.46669,699.20694,454.00842)"
+ x1="25.132"
+ y1="6.7287002"
+ x2="25.132"
+ y2="47.013" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3931"
+ id="linearGradient18518"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4153,0,0,0.43675,729.76184,453.48832)"
+ x1="-55.344002"
+ y1="34.057999"
+ x2="-51.785999"
+ y2="2.9061999" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3600"
+ id="linearGradient18520"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51431,0,0,0.46669,705.20699,460.00841)"
+ x1="25.132"
+ y1="6.7287002"
+ x2="25.132"
+ y2="47.013" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3931"
+ id="linearGradient18522"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4153,0,0,0.43675,735.76184,459.4883)"
+ x1="-56.333"
+ y1="17.518"
+ x2="-47.636002"
+ y2="-0.10106" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3600-8"
+ id="linearGradient18516-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51431,0,0,0.46669,699.20694,454.00842)"
+ x1="25.132"
+ y1="6.7287002"
+ x2="25.132"
+ y2="47.013" />
+ <linearGradient
+ id="linearGradient3600-8">
+ <stop
+ id="stop3602-0-6"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3604-3-2"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3931-4"
+ id="linearGradient18518-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4153,0,0,0.43675,729.76184,453.48832)"
+ x1="-55.344002"
+ y1="34.057999"
+ x2="-51.785999"
+ y2="2.9061999" />
+ <linearGradient
+ id="linearGradient3931-4">
+ <stop
+ id="stop3933-2"
+ style="stop-color:#787a75"
+ offset="0" />
+ <stop
+ id="stop3935-6-8"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3600-8"
+ id="linearGradient18520-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51431,0,0,0.46669,705.20699,460.00841)"
+ x1="25.132"
+ y1="6.7287002"
+ x2="25.132"
+ y2="47.013" />
+ <linearGradient
+ id="linearGradient18543">
+ <stop
+ id="stop18545"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop18547"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3931-4"
+ id="linearGradient18522-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4153,0,0,0.43675,735.76184,459.4883)"
+ x1="-56.333"
+ y1="17.518"
+ x2="-47.636002"
+ y2="-0.10106" />
+ <linearGradient
+ id="linearGradient18550">
+ <stop
+ id="stop18552"
+ style="stop-color:#787a75"
+ offset="0" />
+ <stop
+ id="stop18554"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3732"
+ y2="176.46001"
+ xlink:href="#linearGradient3390-178-986-453-4-5"
+ gradientUnits="userSpaceOnUse"
+ x2="-41.203999"
+ gradientTransform="matrix(0.92957,0,0,0.99594,51.302,-181.74)"
+ y1="198.53999"
+ x1="-48.735001" />
+ <linearGradient
+ id="linearGradient3390-178-986-453-4-5">
+ <stop
+ id="stop3624-8-6"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop3626-1-1"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3021"
+ y2="176.46001"
+ xlink:href="#linearGradient3390-178-986-453-4-5"
+ gradientUnits="userSpaceOnUse"
+ x2="-41.203999"
+ gradientTransform="matrix(0.92957,0,0,0.99594,51.302,-181.74)"
+ y1="198.53999"
+ x1="-48.735001" />
+ <linearGradient
+ id="linearGradient3023">
+ <stop
+ id="stop3025"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop3027"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4322-0"
+ y2="196.53999"
+ gradientUnits="userSpaceOnUse"
+ x2="-48.735001"
+ gradientTransform="matrix(0.92957,0,0,0.99594,51.302,-181.74)"
+ y1="180.47"
+ x1="-42.279999">
+ <stop
+ id="stop3029"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop3031"
+ style="stop-color:#e18941"
+ offset=".57724" />
+ <stop
+ id="stop3033"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4324"
+ y2="196.53999"
+ gradientUnits="userSpaceOnUse"
+ x2="-48.735001"
+ gradientTransform="matrix(0.92957,0,0,0.99594,51.302,-181.74)"
+ y1="179.47"
+ x1="-42.279999">
+ <stop
+ id="stop3618-1-9"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop3270-5-6"
+ style="stop-color:#e18941"
+ offset=".59026" />
+ <stop
+ id="stop3620-9-3"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3026"
+ y2="16"
+ xlink:href="#linearGradient4456"
+ gradientUnits="userSpaceOnUse"
+ x2="6"
+ y1="-3"
+ x1="11" />
+ <linearGradient
+ id="linearGradient4456">
+ <stop
+ id="stop4458-5"
+ style="stop-color:#f6daae"
+ offset="0" />
+ <stop
+ id="stop4460-4"
+ style="stop-color:#f0c178;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4462-8"
+ y2="16"
+ xlink:href="#linearGradient4456"
+ gradientUnits="userSpaceOnUse"
+ x2="6"
+ y1="-3"
+ x1="12" />
+ <linearGradient
+ id="linearGradient3042-4">
+ <stop
+ id="stop3044"
+ style="stop-color:#f6daae"
+ offset="0" />
+ <stop
+ id="stop3046"
+ style="stop-color:#f0c178;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="176.46001"
+ x2="-41.203999"
+ y1="198.53999"
+ x1="-48.735001"
+ gradientTransform="matrix(0.92957,0,0,0.99594,51.302,-181.74)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3056-3"
+ xlink:href="#linearGradient3390-178-986-453-4-5"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="-39.666138"
+ y1="198.90807"
+ x2="-46.583271"
+ y2="176.95729"
+ id="linearGradient3732-9"
+ xlink:href="#linearGradient3390-178-986-453-4-5-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92956783,0,0,0.99594396,51.30231,-181.73954)" />
+ <linearGradient
+ id="linearGradient3390-178-986-453-4-5-2">
+ <stop
+ id="stop3624-8-6-5"
+ style="stop-color:#bb2b12;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3626-1-1-0"
+ style="stop-color:#cd7233;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="-39.666138"
+ y1="198.90807"
+ x2="-46.583271"
+ y2="176.95729"
+ id="linearGradient4452-2"
+ xlink:href="#linearGradient3390-178-986-453-4-5-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92956783,0,0,0.99594396,51.30231,-181.73954)" />
+ <linearGradient
+ id="linearGradient3021-6">
+ <stop
+ id="stop3023"
+ style="stop-color:#bb2b12;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3025-3"
+ style="stop-color:#cd7233;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="-50.886345"
+ y1="180.47154"
+ x2="-45.507504"
+ y2="196.53625"
+ id="linearGradient4322-8"
+ xlink:href="#linearGradient7012-661-145-733-759-865-745-661-970-94-1-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92956783,0,0,0.99594396,51.30231,-181.73954)" />
+ <linearGradient
+ id="linearGradient7012-661-145-733-759-865-745-661-970-94-1-0">
+ <stop
+ id="stop3618-1-9-1"
+ style="stop-color:#f0c178;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3270-5-6-3"
+ style="stop-color:#e18941;stop-opacity:1"
+ offset="0.5" />
+ <stop
+ id="stop3620-9-3-5"
+ style="stop-color:#ec4f18;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="-51.962116"
+ y1="181.47562"
+ x2="-50.043999"
+ y2="197.11452"
+ id="linearGradient4324-9"
+ xlink:href="#linearGradient7012-661-145-733-759-865-745-661-970-94-1-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92956783,0,0,0.99594396,51.30231,-181.73954)" />
+ <linearGradient
+ id="linearGradient3033-9">
+ <stop
+ id="stop3035-3"
+ style="stop-color:#f0c178;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3037-9"
+ style="stop-color:#e18941;stop-opacity:1"
+ offset="0.5" />
+ <stop
+ id="stop3039-1"
+ style="stop-color:#ec4f18;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="5.5"
+ y1="-3"
+ x2="13"
+ y2="16"
+ id="linearGradient3007-8"
+ xlink:href="#linearGradient4456-2"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient4456-2">
+ <stop
+ id="stop4458-6"
+ style="stop-color:#f6daae;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4460-0"
+ style="stop-color:#f0c178;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="5.5"
+ y1="-3"
+ x2="13"
+ y2="16"
+ id="linearGradient4462-81"
+ xlink:href="#linearGradient4456-2"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3046-1">
+ <stop
+ id="stop3048"
+ style="stop-color:#f6daae;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3050"
+ style="stop-color:#f0c178;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2528-5"
+ y2="609.51001"
+ gradientUnits="userSpaceOnUse"
+ x2="302.85999"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1892.2,-872.89)"
+ y1="366.64999"
+ x1="302.85999">
+ <stop
+ id="stop5050-99"
+ style="stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop5056-51"
+ offset=".5" />
+ <stop
+ id="stop5052-9"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2530-6"
+ xlink:href="#linearGradient5060-14"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1891.6,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient5060-14">
+ <stop
+ id="stop5062-1"
+ offset="0" />
+ <stop
+ id="stop5064-0"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2532-3"
+ xlink:href="#linearGradient5060-14"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(-2.7744,0,0,1.9697,112.76,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient3120">
+ <stop
+ id="stop3122"
+ offset="0" />
+ <stop
+ id="stop3124"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2558-0"
+ y2="37.502998"
+ gradientUnits="userSpaceOnUse"
+ x2="-28.531"
+ gradientTransform="translate(34.378,-14.501)"
+ y1="17.955999"
+ x1="-28.531">
+ <stop
+ id="stop11113-8"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop11115-1"
+ style="stop-color:#cdcdcd"
+ offset=".91014" />
+ <stop
+ id="stop11117-3"
+ style="stop-color:#a1a1a1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2560-9"
+ y2="23.062"
+ gradientUnits="userSpaceOnUse"
+ x2="9.8764"
+ y1="2.6015"
+ x1="9.8764">
+ <stop
+ id="stop5159-5"
+ style="stop-color:#c1c1c1"
+ offset="0" />
+ <stop
+ id="stop5161-2"
+ style="stop-color:#909090"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2553-0"
+ gradientUnits="userSpaceOnUse"
+ cy="8.5608997"
+ cx="7.8186002"
+ gradientTransform="matrix(1.69,0,0,1.0436,-5.449,0.96175)"
+ r="11.268">
+ <stop
+ id="stop2612-9"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop2614-67"
+ style="stop-color:#e18941"
+ offset=".5" />
+ <stop
+ id="stop2616-6"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient2555-2"
+ y2="4.303"
+ gradientUnits="userSpaceOnUse"
+ x2="9.7046003"
+ gradientTransform="matrix(0.99458,0,0,0.99458,-0.33927,1.7178)"
+ y1="20.882"
+ x1="9.7046003">
+ <stop
+ id="stop2605-2"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop2607-2"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2550-0"
+ gradientUnits="userSpaceOnUse"
+ cy="5.5927"
+ cx="4.02"
+ gradientTransform="matrix(-0.016802,1.3943,-1.7966,-0.021651,14.152,2.1566)"
+ r="10.273">
+ <stop
+ id="stop3754-6"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop3760-8"
+ style="stop-color:#fff"
+ offset=".84754" />
+ <stop
+ id="stop3756-8"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient2547-3"
+ y2="24.628"
+ gradientUnits="userSpaceOnUse"
+ x2="20.055"
+ gradientTransform="matrix(0.44503,0,0,0.40237,2.8192,3.8499)"
+ y1="16.408001"
+ x1="18.031">
+ <stop
+ id="stop2687-9"
+ style="stop-color:#fff;stop-opacity:.27451"
+ offset="0" />
+ <stop
+ id="stop2689-0"
+ style="stop-color:#fff;stop-opacity:.078431"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2995-0"
+ y2="32.485001"
+ gradientUnits="userSpaceOnUse"
+ x2="24.104"
+ gradientTransform="matrix(0.46913,0,0,0.4663,7.7005,6.8085)"
+ y1="15.169"
+ x1="24.104">
+ <stop
+ id="stop2266-0"
+ style="stop-color:#d7e866"
+ offset="0" />
+ <stop
+ id="stop2268-1"
+ style="stop-color:#8cab2a"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2992-9"
+ y2="47.272999"
+ gradientUnits="userSpaceOnUse"
+ x2="24.139"
+ gradientTransform="matrix(0.2818,0,0,0.2801,12.197,11.015)"
+ y1="7.0774999"
+ x1="24.139">
+ <stop
+ id="stop4224-2"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop4226-5"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="47.272999"
+ x2="24.139"
+ y1="7.0774999"
+ x1="24.139"
+ gradientTransform="matrix(0.2818,0,0,0.2801,12.197,11.015)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3167"
+ xlink:href="#linearGradient2992-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2517"
+ y2="47.013"
+ gradientUnits="userSpaceOnUse"
+ x2="25.132"
+ gradientTransform="matrix(0.31429,0,0,0.32593,0.45711,-0.32225)"
+ y1="0.98521"
+ x1="25.132">
+ <stop
+ id="stop3602-02"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3604-6"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2519"
+ y2="2.9061999"
+ gradientUnits="userSpaceOnUse"
+ x2="-51.785999"
+ gradientTransform="matrix(0.25379,0,0,0.30502,19.129,-0.68549)"
+ y1="50.785999"
+ x1="-51.785999">
+ <stop
+ id="stop3106-8"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3108-0"
+ style="stop-color:#c8c8c8"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2511-6"
+ y2="46.016998"
+ gradientUnits="userSpaceOnUse"
+ x2="24"
+ gradientTransform="matrix(0.27273,0,0,0.30232,1.4546,0.7442)"
+ y1="2"
+ x1="24">
+ <stop
+ id="stop3213-7"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop3215-6"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2507-5"
+ y2="5.4565001"
+ gradientUnits="userSpaceOnUse"
+ x2="36.358002"
+ gradientTransform="matrix(0.3092,0,0,0.37669,0.47615,0.10718)"
+ y1="8.059"
+ x1="32.891998">
+ <stop
+ id="stop8591-0"
+ style="stop-color:#fefefe"
+ offset="0" />
+ <stop
+ id="stop8593-7"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="5.4565001"
+ x2="36.358002"
+ y1="8.059"
+ x1="32.891998"
+ gradientTransform="matrix(0.3092,0,0,0.37669,0.47615,0.10718)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3039-3"
+ xlink:href="#linearGradient2507-5"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="16"
+ x2="15"
+ y1="1"
+ x1="0"
+ gradientTransform="translate(-40,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient17986-0"
+ xlink:href="#linearGradient5175-3-7-9-2-7-4"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5175-3-7-9-2-7-4">
+ <stop
+ style="stop-color:#bdcccd;stop-opacity:1;"
+ offset="0"
+ id="stop5177-6-9-6-1-9-8" />
+ <stop
+ style="stop-color:#7979ff;stop-opacity:1;"
+ offset="1"
+ id="stop5179-73-8-3-1-8-3" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2915-8"
+ y2="609.51001"
+ gradientUnits="userSpaceOnUse"
+ x2="302.85999"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1892.2,-872.89)"
+ y1="366.64999"
+ x1="302.85999">
+ <stop
+ id="stop5050-90"
+ style="stop-opacity:0"
+ offset="0" />
+ <stop
+ id="stop5056-4"
+ offset=".5" />
+ <stop
+ id="stop5052-6"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2917-0"
+ xlink:href="#linearGradient5060-0"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(2.7744,0,0,1.9697,-1891.6,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient5060-0">
+ <stop
+ id="stop5062-52"
+ offset="0" />
+ <stop
+ id="stop5064-14"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient2919-7"
+ xlink:href="#linearGradient5060-0"
+ gradientUnits="userSpaceOnUse"
+ cy="486.64999"
+ cx="605.71002"
+ gradientTransform="matrix(-2.7744,0,0,1.9697,112.76,-872.89)"
+ r="117.14" />
+ <linearGradient
+ id="linearGradient3035-2">
+ <stop
+ id="stop3037-0"
+ offset="0" />
+ <stop
+ id="stop3039-3"
+ style="stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2932-6"
+ y2="238.39999"
+ gradientUnits="userSpaceOnUse"
+ x2="169.23"
+ gradientTransform="matrix(0.054893,0.013851,0.0025726,0.052482,-0.7128,-0.26741)"
+ y1="58.583"
+ x1="126.7">
+ <stop
+ id="stop2612-0"
+ style="stop-color:#f0c178"
+ offset="0" />
+ <stop
+ id="stop2614-7"
+ style="stop-color:#e18941"
+ offset=".5" />
+ <stop
+ id="stop2616-5"
+ style="stop-color:#ec4f18"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2934-0"
+ y2="4.0514002"
+ gradientUnits="userSpaceOnUse"
+ x2="4.1760001"
+ gradientTransform="matrix(1.0083,0,0,1.0006,-8.2398e-4,-0.0066209)"
+ y1="14.993"
+ x1="10.318">
+ <stop
+ id="stop2605-20"
+ style="stop-color:#bb2b12"
+ offset="0" />
+ <stop
+ id="stop2607-0"
+ style="stop-color:#cd7233"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2929-8"
+ y2="24.628"
+ gradientUnits="userSpaceOnUse"
+ x2="20.055"
+ gradientTransform="matrix(0.29669,0,0,0.35207,1.8805,2.1186)"
+ y1="16.408001"
+ x1="18.031">
+ <stop
+ id="stop2687-1"
+ style="stop-color:#fff;stop-opacity:.2"
+ offset="0" />
+ <stop
+ id="stop2689-00"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2536-8"
+ y2="32.485001"
+ gradientUnits="userSpaceOnUse"
+ x2="24.104"
+ gradientTransform="matrix(0.32803,0,0,0.32571,4.445,4.532)"
+ y1="15.169"
+ x1="24.104">
+ <stop
+ id="stop3947-9"
+ style="stop-color:#ecf5b6"
+ offset="0" />
+ <stop
+ id="stop3949-8"
+ style="stop-color:#9fba48"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="32.485001"
+ x2="24.104"
+ y1="15.169"
+ x1="24.104"
+ gradientTransform="matrix(0.32803,0,0,0.32571,4.445,4.532)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3065"
+ xlink:href="#linearGradient2536-8"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient8226-8"
+ y2="104.28"
+ gradientUnits="userSpaceOnUse"
+ x2="53.991001"
+ gradientTransform="matrix(0.12421,0,0,0.1864,0.23313,-3.9907)"
+ y1="87.896004"
+ x1="53.991001">
+ <stop
+ id="stop2223-6-4"
+ style="stop-color:#7a7a7a"
+ offset="0" />
+ <stop
+ id="stop2219-1-2"
+ style="stop-color:#474747"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8223"
+ y2="35.280998"
+ gradientUnits="userSpaceOnUse"
+ x2="24.688"
+ gradientTransform="matrix(0.55458,0,0,0.35955,-1.6911,1.3146)"
+ y1="35.280998"
+ x1="7.0625">
+ <stop
+ id="stop6311-0"
+ offset="0" />
+ <stop
+ id="stop6313-7"
+ style="stop-color:#bbb;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8220"
+ y2="33.758999"
+ gradientUnits="userSpaceOnUse"
+ x2="12.222"
+ gradientTransform="matrix(0.55458,0,0,0.35955,-2.1323,1.7913)"
+ y1="37.206001"
+ x1="12.277">
+ <stop
+ id="stop4238-4-4"
+ style="stop-color:#eee"
+ offset="0" />
+ <stop
+ id="stop4240-3-9"
+ style="stop-color:#eee;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient8215"
+ gradientUnits="userSpaceOnUse"
+ cy="2.3118"
+ cx="4.1992998"
+ gradientTransform="matrix(1.1767,1.0377,-0.76928,0.87233,1.0364,-3.2772)"
+ r="8">
+ <stop
+ id="stop7064-4-6"
+ style="stop-color:#e6e6e6"
+ offset="0" />
+ <stop
+ id="stop7060-2-1"
+ style="stop-color:#c8c8c8"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient8217"
+ y2="6.8646998"
+ gradientUnits="userSpaceOnUse"
+ x2="2.2246001"
+ gradientTransform="matrix(0.64516,0,0,0.97976,0.25806,-6.7257)"
+ y1="11.321"
+ x1="4.6104002">
+ <stop
+ id="stop3486-2-4"
+ style="stop-color:#969696"
+ offset="0" />
+ <stop
+ id="stop3488-0-2"
+ style="stop-color:#b4b4b4"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient8211"
+ xlink:href="#linearGradient4035-5"
+ gradientUnits="userSpaceOnUse"
+ cy="206.42999"
+ cx="141.75"
+ gradientTransform="matrix(0.12709,-0.0021289,9.4059e-4,0.12249,-10.298,-14.5)"
+ r="78.727997" />
+ <linearGradient
+ id="linearGradient4035-5">
+ <stop
+ id="stop4037-8"
+ style="stop-color:#f5f5f5"
+ offset="0" />
+ <stop
+ id="stop4039-7"
+ style="stop-color:#e7e7e7"
+ offset=".47026" />
+ <stop
+ id="stop4041-0"
+ style="stop-color:#8c8c8c"
+ offset=".69349" />
+ <stop
+ id="stop4043-4"
+ style="stop-color:#ddd"
+ offset=".83543" />
+ <stop
+ id="stop4045-8"
+ style="stop-color:#a8a8a8"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient8208"
+ xlink:href="#linearGradient4035-5"
+ gradientUnits="userSpaceOnUse"
+ cy="191.85001"
+ cx="142.62"
+ gradientTransform="matrix(0.061651,0,0,-0.065372,-1.0371,17.524)"
+ r="78.727997" />
+ <linearGradient
+ id="linearGradient3066">
+ <stop
+ id="stop3068"
+ style="stop-color:#f5f5f5"
+ offset="0" />
+ <stop
+ id="stop3070"
+ style="stop-color:#e7e7e7"
+ offset=".47026" />
+ <stop
+ id="stop3072"
+ style="stop-color:#8c8c8c"
+ offset=".69349" />
+ <stop
+ id="stop3074"
+ style="stop-color:#ddd"
+ offset=".83543" />
+ <stop
+ id="stop3076"
+ style="stop-color:#a8a8a8"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient8201"
+ gradientUnits="userSpaceOnUse"
+ cy="42"
+ cx="24"
+ gradientTransform="matrix(0.33333,0,0,0.14286,6.5e-7,8)"
+ r="21">
+ <stop
+ id="stop6312-6-2"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop6314-6-0"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ id="radialGradient8198"
+ gradientUnits="userSpaceOnUse"
+ cy="143.83"
+ cx="127.32"
+ gradientTransform="matrix(0.041797,-0.013884,0.0033869,0.037975,-0.54191,-0.79595)"
+ r="78.727997">
+ <stop
+ id="stop8107"
+ style="stop-color:#f5f5f5"
+ offset="0" />
+ <stop
+ id="stop8109"
+ style="stop-color:#e7e7e7"
+ offset=".25028" />
+ <stop
+ id="stop8111"
+ style="stop-color:#8c8c8c"
+ offset=".69349" />
+ <stop
+ id="stop8113"
+ style="stop-color:#ddd"
+ offset=".83543" />
+ <stop
+ id="stop8115-9"
+ style="stop-color:#a8a8a8"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ r="78.727997"
+ cy="143.83"
+ cx="127.32"
+ gradientTransform="matrix(0.041797,-0.013884,0.0033869,0.037975,-0.54191,-0.79595)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient3101"
+ xlink:href="#radialGradient8198"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="16"
+ x2="15"
+ y1="1"
+ x1="0"
+ gradientTransform="translate(-40,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient17986-08"
+ xlink:href="#linearGradient5175-3-7-9-2-7-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5175-3-7-9-2-7-1">
+ <stop
+ style="stop-color:#bdcccd;stop-opacity:1;"
+ offset="0"
+ id="stop5177-6-9-6-1-9-0" />
+ <stop
+ style="stop-color:#7979ff;stop-opacity:1;"
+ offset="1"
+ id="stop5179-73-8-3-1-8-7" />
+ </linearGradient>
+ <linearGradient
+ y2="16"
+ x2="15"
+ y1="1"
+ x1="0"
+ gradientTransform="translate(-40,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient18365"
+ xlink:href="#linearGradient5175-3-7-9-2-7-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3262-4"
+ y2="16"
+ gradientUnits="userSpaceOnUse"
+ x2="25"
+ gradientTransform="translate(-17.058,0)"
+ x1="25">
+ <stop
+ id="stop3311-1"
+ style="stop-color:#f6f6f6"
+ offset="0" />
+ <stop
+ id="stop3313-5"
+ style="stop-color:#ccc"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3264-6"
+ y2="16.004999"
+ gradientUnits="userSpaceOnUse"
+ x2="21"
+ gradientTransform="translate(-17.058,0)"
+ x1="21">
+ <stop
+ id="stop3399-07"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3401-2"
+ style="stop-color:#8c8c8c"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3260-1"
+ y2="20.895"
+ gradientUnits="userSpaceOnUse"
+ x2="84.639"
+ gradientTransform="matrix(0.096142,0,0,0.096142,1.8469,1.943)"
+ y1="105.1"
+ x1="86.133003">
+ <stop
+ id="stop5130-5-8"
+ style="stop-color:#e5e5e5"
+ offset="0" />
+ <stop
+ id="stop5132-52"
+ style="stop-color:#ababab"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2517-1"
+ y2="47.013"
+ gradientUnits="userSpaceOnUse"
+ x2="25.132"
+ gradientTransform="matrix(0.31429,0,0,0.32593,0.45711,-0.32225)"
+ y1="0.98521"
+ x1="25.132">
+ <stop
+ id="stop3602-3"
+ style="stop-color:#f4f4f4"
+ offset="0" />
+ <stop
+ id="stop3604-1"
+ style="stop-color:#dbdbdb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2519-4"
+ y2="2.9061999"
+ gradientUnits="userSpaceOnUse"
+ x2="-51.785999"
+ gradientTransform="matrix(0.25379,0,0,0.30502,19.129,-0.68549)"
+ y1="50.785999"
+ x1="-51.785999">
+ <stop
+ id="stop3106-86"
+ style="stop-color:#aaa"
+ offset="0" />
+ <stop
+ id="stop3108-5"
+ style="stop-color:#c8c8c8"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2511-5"
+ y2="46.016998"
+ gradientUnits="userSpaceOnUse"
+ x2="24"
+ gradientTransform="matrix(0.27273,0,0,0.30232,1.4546,0.7442)"
+ y1="2"
+ x1="24">
+ <stop
+ id="stop3213-2"
+ style="stop-color:#fff"
+ offset="0" />
+ <stop
+ id="stop3215-9"
+ style="stop-color:#fff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2507-51"
+ y2="5.4565001"
+ gradientUnits="userSpaceOnUse"
+ x2="36.358002"
+ gradientTransform="matrix(0.3092,0,0,0.37669,0.47615,0.10718)"
+ y1="8.059"
+ x1="32.891998">
+ <stop
+ id="stop8591-03"
+ style="stop-color:#fefefe"
+ offset="0" />
+ <stop
+ id="stop8593-1"
+ style="stop-color:#cbcbcb"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="5.4565001"
+ x2="36.358002"
+ y1="8.059"
+ x1="32.891998"
+ gradientTransform="matrix(0.3092,0,0,0.37669,0.47615,0.10718)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3039-9"
+ xlink:href="#linearGradient2507-51"
+ inkscape:collect="always" />
</defs>
<g
id="g19063"
@@ -86085,7 +88212,7 @@
y="181.52583"
x="33.295933"
id="tspan16193"
- sodipodi:role="line">%% Build Clean editPLC HMIEditor ImportFile ImportDEF ImportSVG NetworkEdit ShowMaster ExportSlave Run ShowIECcode Stop Unknown %%</tspan></text>
+ sodipodi:role="line">%% Build Clean editPLC HMIEditor ImportFile ManageFolder ImportDEF ImportSVG NetworkEdit ShowMaster ExportSlave Run ShowIECcode Stop Unknown %%</tspan></text>
<rect
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="Unknown"
@@ -86271,7 +88398,7 @@
inkscape:connector-curvature="0" />
</g>
<g
- transform="translate(1777.0897,-400.03854)"
+ transform="translate(1869.0897,-400.03854)"
id="g16620">
<g
id="g16343">
@@ -86290,7 +88417,7 @@
inkscape:connector-curvature="0" />
</g>
<g
- transform="translate(1560.1847,-369.94418)"
+ transform="translate(1652.1847,-369.94418)"
id="g16552">
<g
id="g16340">
@@ -86567,7 +88694,7 @@
</g>
<g
id="g16346"
- transform="translate(1830.9892,-430.1329)">
+ transform="translate(1922.9892,-430.1329)">
<rect
width="24"
height="24"
@@ -86577,7 +88704,7 @@
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
</g>
<flowRoot
- transform="matrix(1.6473499,0,0,1.6473499,910.92343,183.57576)"
+ transform="matrix(1.6473499,0,0,1.6473499,1002.9234,183.57576)"
id="flowRoot29856"
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19976);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Andale Mono"><flowRegion
@@ -86591,7 +88718,7 @@
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient34167);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Andale Mono" /></flowRegion><flowPara
id="flowPara29862"
style="fill:url(#linearGradient19974);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none">ST</flowPara></flowRoot> <g
- transform="matrix(0.07159976,0,0,0.07159976,773.18029,195.95335)"
+ transform="matrix(0.07159976,0,0,0.07159976,865.18029,195.95335)"
id="g2248">
<path
d="m 144.80549,88.557517 c 0,39.134993 -31.76158,70.896673 -70.896401,70.896673 -39.135167,0 -70.8967476,-31.76168 -70.8967476,-70.896673 0,-39.134957 31.7615806,-70.896643 70.8967476,-70.896643 39.134821,0 70.896401,31.761686 70.896401,70.896643 z"
@@ -86681,7 +88808,7 @@
inkscape:connector-curvature="0" />
</g>
<g
- transform="translate(1898.8886,-460.22727)"
+ transform="translate(1990.8886,-460.22727)"
id="g16694">
<g
id="g16349">
@@ -86777,7 +88904,7 @@
id="g1161"
transform="matrix(0.5724346,-0.3079575,0.3079575,0.5724346,131.42904,887.47867)" />
<g
- transform="translate(1402.788,-309.831)"
+ transform="translate(1494.788,-309.831)"
id="g16313">
<rect
width="24"
@@ -86857,7 +88984,7 @@
</g>
</g>
<g
- transform="translate(1474.788,-339.84989)"
+ transform="translate(1566.788,-339.84989)"
id="g16328">
<rect
width="24"
@@ -86999,7 +89126,7 @@
y="424.36218"
x="20"
id="tspan16197"
- sodipodi:role="line">%% Add Delete Disabled Enabled HideVars IECCDown IECCUp Maximize Minimize minus plus ShowVars %%</tspan></text>
+ sodipodi:role="line">%% Add Delete Disabled Enabled HideVars IECCDown IECCUp Maximize Minimize minus plus ShowVars LeftCopy RightCopy%%</tspan></text>
<g
id="g21181"
transform="matrix(1.0031449,0,0,1.0031449,797.89799,82.2456)" />
@@ -89490,7 +91617,7 @@
</g>
<g
id="g16550"
- transform="translate(1635.0897,-400.03854)">
+ transform="translate(1727.0897,-400.03854)">
<g
id="g16553">
<rect
@@ -89787,7 +91914,7 @@
y="318.55981"
x="166.52481"
id="tspan16195-0"
- sodipodi:role="line">%% Extension Cfile Pyfile wxGlade SVGUI %%</tspan></text>
+ sodipodi:role="line">%% Extension Cfile Pyfile wxGlade SVGUI FOLDER FILE %%</tspan></text>
<use
style="display:inline"
inkscape:label="#use3839"
@@ -90756,7 +92883,7 @@
</g>
<g
id="g16550-5"
- transform="translate(1715.0897,-400.03854)">
+ transform="translate(1807.0897,-400.03854)">
<g
id="g16553-9">
<rect
@@ -90907,4 +93034,586 @@
transform="translate(0,0.99987)" />
</g>
</g>
+ <g
+ transform="matrix(0.78594807,0,0,0.80079582,452.62316,322.85138)"
+ id="layer1">
+ <g
+ id="layer6"
+ transform="matrix(0.36395,0,0,0.34457,-0.64485,-0.38545)">
+ <g
+ id="g2488"
+ transform="matrix(0.021652,0,0,0.014857,43.008,42.685)">
+ <rect
+ id="rect2490"
+ style="opacity:0.40206;fill:url(#linearGradient2915)"
+ height="478.35999"
+ width="1339.6"
+ y="-150.7"
+ x="-1559.3" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2492"
+ style="opacity:0.40206;fill:url(#radialGradient2917)"
+ d="m -219.62,-150.68 v 478.33 c 142.87,0.90045 345.4,-107.17 345.4,-239.2 0,-132.03 -159.44,-239.13 -345.4,-239.13 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2494"
+ style="opacity:0.40206;fill:url(#radialGradient2919)"
+ d="m -1559.3,-150.68 v 478.33 c -142.87,0.90045 -345.4,-107.17 -345.4,-239.2 0,-132.03 159.44,-239.13 345.4,-239.13 z" />
+ </g>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2196-1"
+ style="fill:#ffffff;stroke:#a8a8a8;stroke-width:0.97899997;stroke-linecap:round;stroke-linejoin:round"
+ d="m 0.60164,1.5216 c -0.056258,0 -0.10449,0.060345 -0.10449,0.12267 0,4.6046 0.00337,8.6512 -6.554e-4,12.857 4.7063,-0.02397 9.4151,-0.04826 14.1230004,-0.06552 -0.41713,0 -1.1123,-0.07009 -1.1024,-0.94049 0.0035,-3.597 0.02296,-7.4084 0.01078,-10.981 H 7.4759746 c -0.47749,0 -1.0963,-0.99306 -1.5261,-0.99306 h -5.3477 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3086"
+ style="fill:url(#linearGradient2932);stroke:url(#linearGradient2934-3);stroke-width:0.95339;stroke-linecap:round;stroke-linejoin:round"
+ d="m 2.5254,4.524 c 0.65636,0 12.48,0.031393 12.989,0.031393 0,0.61541 -0.02468,9.9581 -0.05407,9.9581 -4.5588,0.01775 -11.659,-0.01389 -12.987,-0.01389 0,-1.1615 0.05188,-7.5853 0.05188,-9.9756 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2509"
+ style="fill:url(#linearGradient2929);fill-rule:evenodd"
+ d="M 2.8355,4 C 2.37891,4 2.00106,4.44838 2.00106,4.9902 v 5.6331 c 0.00175,0.10077 0.044034,0.21567 0.11126,0.28606 0.067223,0.07039 0.15315,0.10008 0.25033,0.08802 0.00309,9.4e-5 0.00618,9.4e-5 0.00927,0 l 13.351,-2.5081 c 0.1548,-0.028972 0.27598,-0.18812 0.27815,-0.37407 v -3.1246 c 0,-0.54182 -0.37785,-0.9902 -0.83444,-0.9902 h -12.331 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2406"
+ style="opacity:0.35;fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 3.499,14 V 5.5 h 11.5" />
+ </g>
+ <g
+ transform="translate(490.93931,321.78746)"
+ style="display:inline"
+ id="FOLDER"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient17986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m -40,0 0,16 16,0 0,-16 -16,0 z m 1,1 14,0 0,14 -14,0 0,-14 z"
+ id="path3806-1-6-1-9"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:label="#rect2160" />
+ </g>
+ <g
+ transform="matrix(0.39454693,0,0,0.39454693,458.92849,329.94337)"
+ id="layer1-6">
+ <g
+ id="g2479">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2426"
+ style="fill:url(#linearGradient3262);stroke:url(#linearGradient3264);stroke-linejoin:round;display:block"
+ d="M 6.9375,0.5 C 6.6891,0.5 6.5,0.68908 6.5,0.9375 v 1.25 C 5.9461,2.3297 5.4488,2.5594 4.9688,2.8438 L 4.0625,1.9375 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -1.5,1.5 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 L 2.8438,4.9688 C 2.5594,5.4488 2.3297,5.9461 2.1875,6.5 h -1.25 C 0.68908,6.5 0.5,6.6891 0.5,6.9375 v 2.125 c 1e-8,0.24842 0.18908,0.4375 0.4375,0.4375 h 1.25 c 0.1422,0.5539 0.37188,1.0512 0.65625,1.5312 l -0.9063,0.907 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 l 1.5,1.5 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 0.9063,-0.907 c 0.48,0.285 0.9773,0.514 1.5312,0.656 v 1.25 c 1e-7,0.24842 0.18908,0.4375 0.4375,0.4375 h 2.125 c 0.2484,0 0.4375,-0.189 0.4375,-0.438 v -1.25 c 0.5539,-0.1422 1.0512,-0.37188 1.5312,-0.65625 l 0.90625,0.90625 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 1.5,-1.5 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -0.906,-0.906 c 0.285,-0.48 0.514,-0.977 0.656,-1.531 h 1.25 c 0.249,0 0.438,-0.1891 0.438,-0.4375 v -2.125 c 0,-0.2484 -0.189,-0.4375 -0.438,-0.4375 h -1.25 c -0.142,-0.5539 -0.371,-1.0512 -0.656,-1.5312 l 0.906,-0.9063 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -1.5,-1.5 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -0.906,0.9063 c -0.48,-0.2844 -0.977,-0.5141 -1.531,-0.6563 v -1.25 C 9.5004,0.68878 9.3113,0.4997 9.0629,0.4997 H 6.9379 z M 8,6 c 1.104,0 2,0.896 2,2 0,1.104 -0.896,2 -2,2 C 6.896,10 6,9.104 6,8 6,6.896 6.896,6 8,6 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3315"
+ style="opacity:0.05"
+ d="M 8,3.4651 C 5.4994,3.4651 3.4651,5.4994 3.4651,8 c 0,2.501 2.0343,4.535 4.5349,4.535 2.501,0 4.535,-2.034 4.535,-4.535 C 12.535,5.4994 10.501,3.4651 8,3.4651 z m 0,2.093 c 1.3479,0 2.4419,1.094 2.4419,2.4419 0,1.3479 -1.094,2.4419 -2.4419,2.4419 -1.3479,0 -2.4419,-1.0941 -2.4419,-2.442 C 5.5581,6.652 6.6521,5.558 8,5.558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path28"
+ style="fill:none;stroke:url(#linearGradient3260)"
+ d="M 8,4 C 5.7944,4 4,5.7944 4,8 c 0,2.206 1.7944,4 4,4 2.206,0 4,-1.794 4,-4 C 12,5.7944 10.206,4 8,4 z" />
+ </g>
+ </g>
+ <g
+ transform="translate(1419.0472,-309.64524)"
+ id="g16313-4-8">
+ <rect
+ width="24"
+ height="24"
+ x="-1060.788"
+ y="501.19318"
+ id="ManageFolder"
+ style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <g
+ transform="translate(-1060.695,499.97716)"
+ id="layer1-9">
+ <g
+ id="g2589"
+ transform="translate(0.036304,-1.2166e-7)">
+ <g
+ id="g3490"
+ style="stroke-width:1.88259995"
+ transform="matrix(0.54593,0,0,0.51685,-1.002,-0.57818)">
+ <g
+ id="g5022"
+ style="stroke-width:104.95999908"
+ transform="matrix(0.021652,0,0,0.014857,43.008,42.685)">
+ <rect
+ id="rect2527"
+ style="opacity:0.40206;fill:url(#linearGradient18360)"
+ height="478.35999"
+ width="1339.6"
+ y="-150.7"
+ x="-1559.3" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2529"
+ style="opacity:0.40206;fill:url(#radialGradient18362)"
+ d="m -219.62,-150.68 v 478.33 c 142.88,0.9 345.4,-107.17 345.4,-239.2 0,-132.02 -159.44,-239.13 -345.4,-239.13 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2531"
+ style="opacity:0.40206;fill:url(#radialGradient18364)"
+ d="m -1559.3,-150.68 v 478.33 c -142.8,0.9 -345.4,-107.17 -345.4,-239.2 0,-132.02 159.5,-239.13 345.4,-239.13 z" />
+ </g>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path3496"
+ style="fill:url(#linearGradient18366);stroke:url(#linearGradient18368);stroke-width:1.01110005;stroke-linecap:round;stroke-linejoin:round"
+ d="m 0.67728,2.5695 c -0.08554,0 -0.15887,0.0927 -0.15887,0.1885 0,5.8692 -0.04308,12.244 -0.04914,18.225 0.02908,0.895 0.53723,1.505 0.88963,1.508 1.0128,0.009 0.5393,-0.004 1.0486,0 6.4703,-0.016 13.578,-0.078 20.05,-0.094 0.053,0.007 -1.478,-0.108 -1.463,-1.446 0,-4.673 -0.502,-11.187 -0.502,-15.86 0,-0.1865 -0.015,-0.2905 -0.032,-0.3767 -0.012,-0.0665 -0.028,-0.0989 -0.063,-0.1257 -0.028,-0.0244 -0.055,-0.057 -0.096,-0.0628 h -8.82 c -0.815,0 -1.002,-1.992 -2.2134,-1.992 L 0.6768,2.5695 h -2e-5 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3498"
+ style="fill:url(#radialGradient18370);stroke:url(#linearGradient18373);stroke-linecap:round;stroke-linejoin:round"
+ d="m 3.4994,6.5471 c 10.57,0 13.031,5e-4 19.994,-0.0275 0,1.5704 0.258,16.04 -0.484,16.04 -0.714,0 -14.046,-0.094 -21.009,-0.066 1.4717,0 1.4994,-0.623 1.4994,-15.947 v 1e-4 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3211"
+ style="opacity:0.4;fill:none;stroke:url(#radialGradient18375);stroke-width:0.98119998"
+ d="m 22.939,7.6088 c 0,0 -16.832,0.0937 -18.397,-0.0923 -0.0829,13.83 -0.5009,14.44 -0.5009,14.44" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2608"
+ style="fill:url(#linearGradient18377);fill-rule:evenodd"
+ d="M 4.2517,6 C 3.5668,6 3,6.5124 3,7.1317 v 6.4373 c 0.0026,0.116 0.0661,0.247 0.1669,0.327 0.1008,0.081 0.2297,0.115 0.3755,0.101 h 0.0139 l 20.027,-2.867 c 0.232,-0.033 0.414,-0.215 0.417,-0.427 V 7.1317 C 24.0003,6.5124 23.4333,6 22.7483,6 H 4.2523 4.252 z" />
+ </g>
+ <rect
+ id="rect2545"
+ style="fill:#e9a961;display:block"
+ rx="0.53846002"
+ ry="0.5"
+ height="1"
+ width="7"
+ y="4"
+ x="2" />
+ </g>
+ <g
+ transform="matrix(0.82971192,0,0,0.82971192,-1050.1806,511.63512)"
+ id="layer1-97">
+ <g
+ id="g2479-9">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2426-0"
+ style="fill:url(#linearGradient18422);stroke:url(#linearGradient18424);stroke-linejoin:round;display:block"
+ d="M 6.9375,0.5 C 6.6891,0.5 6.5,0.68908 6.5,0.9375 v 1.25 C 5.9461,2.3297 5.4488,2.5594 4.9688,2.8438 L 4.0625,1.9375 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -1.5,1.5 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 L 2.8438,4.9688 C 2.5594,5.4488 2.3297,5.9461 2.1875,6.5 h -1.25 C 0.68908,6.5 0.5,6.6891 0.5,6.9375 v 2.125 c 1e-8,0.24842 0.18908,0.4375 0.4375,0.4375 h 1.25 c 0.1422,0.5539 0.37188,1.0512 0.65625,1.5312 l -0.9063,0.907 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 l 1.5,1.5 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 0.9063,-0.907 c 0.48,0.285 0.9773,0.514 1.5312,0.656 v 1.25 c 1e-7,0.24842 0.18908,0.4375 0.4375,0.4375 h 2.125 c 0.2484,0 0.4375,-0.189 0.4375,-0.438 v -1.25 c 0.5539,-0.1422 1.0512,-0.37188 1.5312,-0.65625 l 0.90625,0.90625 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 1.5,-1.5 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -0.906,-0.906 c 0.285,-0.48 0.514,-0.977 0.656,-1.531 h 1.25 c 0.249,0 0.438,-0.1891 0.438,-0.4375 v -2.125 c 0,-0.2484 -0.189,-0.4375 -0.438,-0.4375 h -1.25 c -0.142,-0.5539 -0.371,-1.0512 -0.656,-1.5312 l 0.906,-0.9063 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -1.5,-1.5 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -0.906,0.9063 c -0.48,-0.2844 -0.977,-0.5141 -1.531,-0.6563 v -1.25 C 9.5004,0.68878 9.3113,0.4997 9.0629,0.4997 H 6.9379 z M 8,6 c 1.104,0 2,0.896 2,2 0,1.104 -0.896,2 -2,2 C 6.896,10 6,9.104 6,8 6,6.896 6.896,6 8,6 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3315-2"
+ style="opacity:0.05"
+ d="M 8,3.4651 C 5.4994,3.4651 3.4651,5.4994 3.4651,8 c 0,2.501 2.0343,4.535 4.5349,4.535 2.501,0 4.535,-2.034 4.535,-4.535 C 12.535,5.4994 10.501,3.4651 8,3.4651 z m 0,2.093 c 1.3479,0 2.4419,1.094 2.4419,2.4419 0,1.3479 -1.094,2.4419 -2.4419,2.4419 -1.3479,0 -2.4419,-1.0941 -2.4419,-2.442 C 5.5581,6.652 6.6521,5.558 8,5.558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path28-6"
+ style="fill:none;stroke:url(#linearGradient18426)"
+ d="M 8,4 C 5.7944,4 4,5.7944 4,8 c 0,2.206 1.7944,4 4,4 2.206,0 4,-1.794 4,-4 C 12,5.7944 10.206,4 8,4 z" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="g18676">
+ <rect
+ style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="RightCopy"
+ y="430.40131"
+ x="765.71875"
+ height="23.999916"
+ width="23.999916" />
+ <g
+ transform="translate(60.836042,-28.859222)"
+ id="g18511-5">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2904-0"
+ style="fill:url(#linearGradient18516-9);stroke:url(#linearGradient18518-4);stroke-width:0.99914002;stroke-linejoin:round"
+ d="m 707.55044,460.70882 h 13 v 15 h -13 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2594-6"
+ style="fill:url(#linearGradient18520-5);stroke:url(#linearGradient18522-8);stroke-width:0.99914002;stroke-linejoin:round"
+ d="m 713.55044,466.70882 h 13 v 15 h -13 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3696-8"
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="m 715.55084,477.70842 h 7 m -7,-3 h 8 m -8,-3 h 5 m -5,-3 h 9 m -15,3 h 3 m -3,-3 h 3 m -3,-3 h 5 m -5,-3 h 9" />
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,788.67933,437.2062)"
+ id="layer1-5">
+ <path
+ d="M 8.4802,-1.4936 2.5,4.9999 8.4802,11.494"
+ style="fill:none;stroke:url(#linearGradient3056-3);stroke-width:5;stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path3169-2-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 19,5 6.5,4.9999"
+ style="fill:none;stroke:url(#linearGradient3732);stroke-width:6;stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path3765"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 8.5111,-1.5245 2.5,4.9999 8.5112,11.524"
+ style="fill:none;stroke:url(#linearGradient4322-0);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path4277"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 19,5 6.5,4.9999"
+ style="fill:none;stroke:url(#linearGradient4324);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path4279"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 9.0423,10.543 6.5,8 C 5.5002,6.9998 6.5,6.5 8,6.5 h 10.5 c 3,0 2.5,-3 0,-3 h -10 c -1.5,0 -3,0 -2,-1.5 l 2.3356,-2.3382 c 1.5,-2 -0.5,-2.5 -1.5,-1.5 L 2,4 C 1.5,4.5 1.4724,5.3333 2,6 l 5.5423,6.0431 c 1,1 2.9997,2.54e-4 1.5,-1.5 z"
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient3026);stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path4454"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 6.5,2 2.4035,-2.1981 c 1.5,-2 -0.5,-2.5 -1.5,-1.5 L 2,4 C 1.5,4.5 1.4724,5.3333 2,6 l 4.7125,5.2812 c 1,1 2.9702,0.02922 1.5,-1.5 L 6.5,8.0002"
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient4462-8);stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path4464"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.2625,-1.35 2,4"
+ style="opacity:0.23999999;fill:none;stroke:#f6daae;stroke-linecap:round;stroke-linejoin:round;enable-background:new"
+ id="path4466"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g18764">
+ <rect
+ style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="LeftCopy"
+ y="430.40131"
+ x="699.71875"
+ height="23.999916"
+ width="23.999916" />
+ <g
+ transform="translate(-5.3861648,-28.726212)"
+ id="g18511">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2904"
+ style="fill:url(#linearGradient18516);stroke:url(#linearGradient18518);stroke-width:0.99914002;stroke-linejoin:round"
+ d="m 707.55044,460.70882 h 13 v 15 h -13 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2594"
+ style="fill:url(#linearGradient18520);stroke:url(#linearGradient18522);stroke-width:0.99914002;stroke-linejoin:round"
+ d="m 713.55044,466.70882 h 13 v 15 h -13 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3696"
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="m 715.55084,477.70842 h 7 m -7,-3 h 8 m -8,-3 h 5 m -5,-3 h 9 m -15,3 h 3 m -3,-3 h 3 m -3,-3 h 5 m -5,-3 h 9" />
+ </g>
+ <g
+ id="layer1-7"
+ transform="translate(700.66938,437.48261)">
+ <path
+ style="fill:none;stroke:url(#linearGradient3732-9);stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path3169-2-3-2"
+ d="M 8.4801887,-1.4935535 2.5,4.99993 8.4801887,11.493553"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4452-2);stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path3765-2"
+ d="M 19,5 6.5,4.99993"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4322-8);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path4277-6"
+ d="M 8.5110963,-1.5245386 2.5,4.99993 8.3036121,11.524354"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4324-9);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path4279-6"
+ d="M 19,5 6.5,4.99993"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient3007-8);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path4454-2"
+ d="M 8.8347091,10.612303 6.5,8 C 5.5575961,6.9455453 6.5,6.5 8,6.5 l 10.5,0 c 3,0 2.5,-3 0,-3 l -10,0 c -1.5,0 -3,0 -2,-1.5 l 2.3355739,-2.54571541 c 1.5000001,-1.99999999 -0.5,-2.49999999 -1.5,-1.49999999 L 2,4 C 1.5,4.5 1.4724356,5.3333333 2,6 l 5.3347091,6.112303 c 1,1 2.9136049,0.08168 1.5,-1.5 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient4462-81);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path4464-3"
+ d="m 6.5,2 2.4034591,-2.54398585 c 1.4999999,-1.99999995 -0.5,-2.49999995 -1.5,-1.49999995 L 2,4 C 1.5,4.5 1.4724356,5.3333333 2,6 l 5.3351415,6.111439 c 1,1 2.9140115,0.08132 1.5,-1.5 L 6.5,8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.41999996;fill:none;stroke:#f6daae;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
+ id="path4466-6"
+ d="M 7.1241352,-1.6267296 2,4"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <text
+ style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ xml:space="preserve"
+ id="text18383-2"
+ y="261.38077"
+ x="394.60934"><tspan
+ id="tspan18385-7"
+ y="261.38077"
+ x="394.60934">Tree icons</tspan></text>
+ <text
+ sodipodi:linespacing="125%"
+ style="font-size:12.76000023px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
+ xml:space="preserve"
+ id="text60407-68"
+ y="253.14807"
+ x="518.62115"><tspan
+ y="253.14807"
+ x="518.62115"
+ id="tspan16195-3"
+ sodipodi:role="line">%% tree_drive tree_folder tree_file %%</tspan></text>
+ <g
+ transform="translate(711.12206,260.10161)"
+ id="layer1-3">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4160-2"
+ style="fill:url(#linearGradient2517);stroke:url(#linearGradient2519);stroke-width:0.99992001;stroke-linejoin:round"
+ d="M 1.5,0.49997 H 9.9412 C 10.383,0.66176 12.88,2.63277 13.5,3.90907 v 11.591 h -12 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2435-8"
+ style="opacity:0.6;fill:none;stroke:url(#linearGradient2511-6)"
+ d="m 12.5,4.2151 v 10.285 h -10 v -13 h 7.2363" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3330"
+ style="fill:#c1c1c1;fill-rule:evenodd"
+ d="M 9.2941,0.8409 C 10.142,3.6448 9,5.0341 9,5.0341 c 0,0 1.893,-1.2514 4.171,-0.1023 1.943,0.9798 0.036,-1.008 -0.041,-1.129 C 12.587,2.9553 10.707,1.1697 10.025,0.8726 9.9696,0.84836 9.5814,0.8409 9.2941,0.8409 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4474-1"
+ style="fill:url(#linearGradient3039-3);fill-rule:evenodd"
+ d="m 9.2941,0.8409 c 0.9879,0 0.7059,3.181 0.7059,3.181 0,0 2.272,-0.5007 3.171,0.9099 0.163,0.2556 0.036,-1.008 -0.041,-1.129 C 12.587,2.9553 10.707,1.1697 10.025,0.8726 9.9696,0.84836 9.5814,0.8409 9.2941,0.8409 z" />
+ </g>
+ <g
+ transform="translate(750.4138,260.14902)"
+ style="display:inline"
+ id="tree_file"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m -40,0 0,16 16,0 0,-16 -16,0 z m 1,1 14,0 0,14 -14,0 0,-14 z"
+ id="path3806-1-6-1-9-8"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:label="#rect2160" />
+ </g>
+ <g
+ transform="translate(676.66234,259.77752)"
+ style="display:inline"
+ id="tree_folder"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m -40,0 0,16 16,0 0,-16 -16,0 z m 1,1 14,0 0,14 -14,0 0,-14 z"
+ id="path3806-1-6-1-9-8-0"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:label="#rect2160" />
+ </g>
+ <g
+ transform="translate(636.59356,259.12098)"
+ id="layer1-39">
+ <g
+ id="layer6-8"
+ transform="matrix(0.36395,0,0,0.34457,-0.64485,-0.38545)">
+ <g
+ id="g2488-3"
+ transform="matrix(0.021652,0,0,0.014857,43.008,42.685)">
+ <rect
+ id="rect2490-5"
+ style="opacity:0.40206;fill:url(#linearGradient2915-8)"
+ height="478.35999"
+ width="1339.6"
+ y="-150.7"
+ x="-1559.3" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2492-4"
+ style="opacity:0.40206;fill:url(#radialGradient2917-0)"
+ d="m -219.62,-150.68 v 478.33 c 142.87,0.90045 345.4,-107.17 345.4,-239.2 0,-132.03 -159.44,-239.13 -345.4,-239.13 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2494-6"
+ style="opacity:0.40206;fill:url(#radialGradient2919-7)"
+ d="m -1559.3,-150.68 v 478.33 c -142.87,0.90045 -345.4,-107.17 -345.4,-239.2 0,-132.03 159.44,-239.13 345.4,-239.13 z" />
+ </g>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2196-1-6"
+ style="fill:#ffffff;stroke:#a8a8a8;stroke-width:0.97899997;stroke-linecap:round;stroke-linejoin:round"
+ d="m 0.60164,1.5216 c -0.056258,0 -0.10449,0.060345 -0.10449,0.12267 0,4.6046 0.00337,8.6512 -6.554e-4,12.857 4.7063,-0.02397 9.4151,-0.04826 14.1230004,-0.06552 -0.41713,0 -1.1123,-0.07009 -1.1024,-0.94049 0.0035,-3.597 0.02296,-7.4084 0.01078,-10.981 H 7.4759746 c -0.47749,0 -1.0963,-0.99306 -1.5261,-0.99306 h -5.3477 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3086-1"
+ style="fill:url(#linearGradient2932-6);stroke:url(#linearGradient2934-0);stroke-width:0.95339;stroke-linecap:round;stroke-linejoin:round"
+ d="m 2.5254,4.524 c 0.65636,0 12.48,0.031393 12.989,0.031393 0,0.61541 -0.02468,9.9581 -0.05407,9.9581 -4.5588,0.01775 -11.659,-0.01389 -12.987,-0.01389 0,-1.1615 0.05188,-7.5853 0.05188,-9.9756 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2509-8"
+ style="fill:url(#linearGradient2929-8);fill-rule:evenodd"
+ d="M 2.8355,4 C 2.37891,4 2.00106,4.44838 2.00106,4.9902 v 5.6331 c 0.00175,0.10077 0.044034,0.21567 0.11126,0.28606 0.067223,0.07039 0.15315,0.10008 0.25033,0.08802 0.00309,9.4e-5 0.00618,9.4e-5 0.00927,0 l 13.351,-2.5081 c 0.1548,-0.028972 0.27598,-0.18812 0.27815,-0.37407 v -3.1246 c 0,-0.54182 -0.37785,-0.9902 -0.83444,-0.9902 h -12.331 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2406-9"
+ style="opacity:0.35;fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 3.499,14 V 5.5 h 11.5" />
+ </g>
+ <g
+ transform="translate(567.48083,260.67786)"
+ id="g3119">
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2992-5"
+ style="fill:url(#linearGradient8226-8);stroke:#353537;stroke-linejoin:round"
+ d="m 15.497,12.5 c -0.30416,2.535 -0.22639,2.9839 -0.77717,2.9839 -0.21573,0.03617 -8.6983,0 -13.47,0 -0.59814,0 -0.447,0.04932 -0.7499,-2.9839 4.8142,0.13977 10.032,-0.37056 14.997,0 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect9146-5"
+ style="fill:url(#linearGradient8223);fill-rule:evenodd"
+ d="m 2,13 h 10 v 2 H 2.2256 L 2,13 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path9148-2"
+ style="opacity:0.81142997;fill:url(#linearGradient8220);fill-rule:evenodd"
+ d="M 2.2256,15 2.07522,13.5577 C 3.09312,14.7008 6.82662,15 9.40042,15 h -7.1749 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2990-9"
+ style="fill:url(#radialGradient8215);stroke:url(#linearGradient8217);stroke-linecap:round;stroke-linejoin:round"
+ d="M 1.4897,1.4658 0.51475,12.4888 C 0.505,12.4888 0.5,12.4918 0.5,12.4998 h 15 c 0,-0.0082 -0.005,-0.01111 -0.01475,-0.01111 l -1.005,-11.241 c 0,0 -0.18775,-0.7434 -0.90964,-0.7434 -0.68815,0 -10.535,-0.004447 -11.26,-0.004447 -0.75868,0 -0.82051,0.96576 -0.82051,0.96576 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2215-0"
+ style="opacity:0.7;fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round"
+ d="m 1.4763,12.5 h 13.047" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path8117"
+ style="fill:url(#radialGradient8211)"
+ d="M 9.875,1.0312 C 9.5425,1.0312 9.2896,1.1934 9.2812,1.4375 7.5462,4.2547 3.716,3.331 2.1875,6.6875 2.1073,7.5502 2.3134,8.6701 3.0938,9.375 4.236,10.407 6.138,11.041 8.1562,11 12.322,10.915 15.991,8.1998 12.812,4.6562 12.795,4.4114 12.562,1.4375 12.562,1.4375 12.545,1.1967 12.268,1.0312 11.938,1.0312 H 9.8755 z M 9.84375,1.4687 h 2.0625 c 0.1199,0 0.214,0.027064 0.21875,0.09375 l -0.437,3.0938 c 3.473,2.8052 0.258,5.1235 -3.438,5.25 -3.3581,0.1148 -5.2801,-1.0583 -5.0938,-3.0624 1.1782,-3.3771 5.7075,-1.762 6.4688,-5.2813 -0.0195,-0.0627 0.1015,-0.0937 0.2188,-0.0937 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path9400"
+ style="fill:url(#radialGradient8208)"
+ d="M 7.9999,8.9999 C 7.3338,9.004 6.6179,8.7648 6.2183,8.2045 5.8879,7.7377 5.9413,7.0421 6.3494,6.638 6.8328,6.1198 7.5867,5.9505 8.2719,6.0129 8.879,6.0691 9.5104,6.3443 9.8354,6.883 10.087,7.317 10.047,7.9042 9.7165,8.2869 9.3098,8.7948 8.6299,8.9998 7.9999,8.9999 z M 8.033429,6.9404 c -0.4657,0.0106 -0.9649,-0.0032 -1.3803,0.2407 -0.2744,0.1909 -0.298,0.6023 -0.1132,0.8636 0.2517,0.392 0.7264,0.5638 1.1687,0.6235 0.5705,0.0718 1.1976,-0.0568 1.6262,-0.4584 0.2414,-0.24 0.3518,-0.6735 0.1113,-0.9512 -0.2382,-0.2503 -0.6084,-0.2735 -0.932,-0.3044 -0.16,-0.0106 -0.3204,-0.0122 -0.4806,-0.0138 z" />
+ <g
+ id="g9436"
+ transform="matrix(-0.046858,0,0,0.077502,4.3055,-2.9911)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path9438"
+ style="fill:#535353"
+ d="m 37.925,187.15 c 0.31446,3.4586 5.0238,6.279 10.514,6.279 5.4879,0 9.6432,-2.8205 9.2763,-6.279 -0.36437,-3.4402 -5.0712,-6.2181 -10.507,-6.2181 -5.438,0.002 -9.5933,2.7778 -9.2838,6.2181 z" />
+ </g>
+ <g
+ id="g9496"
+ transform="matrix(-0.046858,0,0,0.077502,16.206,-2.9911)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path9498"
+ style="fill:#535353"
+ d="m 37.925,187.15 c 0.31446,3.4586 5.0238,6.279 10.514,6.279 5.4879,0 9.6432,-2.8205 9.2763,-6.279 -0.36437,-3.4402 -5.0712,-6.2181 -10.507,-6.2181 -5.438,0.002 -9.5933,2.7778 -9.2838,6.2181 z" />
+ </g>
+ <rect
+ id="rect6300-3-2"
+ style="opacity:0.2;fill:url(#radialGradient8201)"
+ height="2"
+ width="14"
+ y="13"
+ x="1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path8125"
+ style="fill:url(#radialGradient3101)"
+ d="M 3.549,1.2794 C 3.5821,1.4639 3.5033,1.6681 3.4766,1.8578 3.3642,2.438 3.2481,3.0174 3.1388,3.5982 3.0365,3.9765 3.4034,3.8226 3.4488,3.861 3.9285,3.6779 4.4038,3.4775 4.8814,3.2862 5.3796,3.0824 5.8809,2.8849 6.3773,2.6771 6.6903,2.4909 6.7821,2.3238 6.8636,2.0429 6.9085,1.799 6.9139,1.5263 6.792,1.3034 6.7139,1.1494 6.5435,1.0842 6.3798,1.1074 H 3.7772 L 3.549,1.2794 z m 0.58899,0.44397 c 0.59213,0 1.1843,-1e-7 1.7764,-1e-7 0.1871,0.070513 0.054625,0.21948 -0.083295,0.23252 -0.6014,0.2439 -1.2028,0.4878 -1.8041,0.7317 -0.1446,0.0544 -0.155,-0.1673 -0.1113,-0.2613 0.037079,-0.20752 0.074157,-0.41504 0.11124,-0.62256 0.041217,-0.021125 0.065659,-0.065363 0.11102,-0.080349 z" />
+ </g>
+ <g
+ transform="translate(607.62908,260.74427)"
+ style="display:inline"
+ id="tree_drive"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m -40,0 0,16 16,0 0,-16 -16,0 z m 1,1 14,0 0,14 -14,0 0,-14 z"
+ id="path3806-1-6-1-9-8-0-5"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:label="#rect2160" />
+ </g>
+ <g
+ transform="matrix(0.83945151,0,0,0.83945151,496.66938,322.90098)"
+ id="layer1-50">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4160-4"
+ style="fill:url(#linearGradient2517-1);stroke:url(#linearGradient2519-4);stroke-width:0.99992001;stroke-linejoin:round"
+ d="M 1.5,0.49997 H 9.9412 C 10.383,0.66176 12.88,2.63277 13.5,3.90907 v 11.591 h -12 v -15 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2435-5"
+ style="opacity:0.6;fill:none;stroke:url(#linearGradient2511-5)"
+ d="m 12.5,4.2151 v 10.285 h -10 v -13 h 7.2363" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3330-0"
+ style="fill:#c1c1c1;fill-rule:evenodd"
+ d="M 9.2941,0.8409 C 10.142,3.6448 9,5.0341 9,5.0341 c 0,0 1.893,-1.2514 4.171,-0.1023 1.943,0.9798 0.036,-1.008 -0.041,-1.129 C 12.587,2.9553 10.707,1.1697 10.025,0.8726 9.9696,0.84836 9.5814,0.8409 9.2941,0.8409 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4474-14"
+ style="fill:url(#linearGradient3039-9);fill-rule:evenodd"
+ d="m 9.2941,0.8409 c 0.9879,0 0.7059,3.181 0.7059,3.181 0,0 2.272,-0.5007 3.171,0.9099 0.163,0.2556 0.036,-1.008 -0.041,-1.129 C 12.587,2.9553 10.707,1.1697 10.025,0.8726 9.9696,0.84836 9.5814,0.8409 9.2941,0.8409 z" />
+ </g>
+ <g
+ transform="translate(534.91586,321.71842)"
+ style="display:inline"
+ id="FILE"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient18365);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m -40,0 0,16 16,0 0,-16 -16,0 z m 1,1 14,0 0,14 -14,0 0,-14 z"
+ id="path3806-1-6-1-9-0"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:label="#rect2160" />
+ </g>
+ <g
+ transform="matrix(0.39454693,0,0,0.39454693,503.03943,330.01484)"
+ id="layer1-6-4">
+ <g
+ id="g2479-4">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2426-8"
+ style="fill:url(#linearGradient3262-4);stroke:url(#linearGradient3264-6);stroke-linejoin:round;display:block"
+ d="M 6.9375,0.5 C 6.6891,0.5 6.5,0.68908 6.5,0.9375 v 1.25 C 5.9461,2.3297 5.4488,2.5594 4.9688,2.8438 L 4.0625,1.9375 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -1.5,1.5 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 L 2.8438,4.9688 C 2.5594,5.4488 2.3297,5.9461 2.1875,6.5 h -1.25 C 0.68908,6.5 0.5,6.6891 0.5,6.9375 v 2.125 c 1e-8,0.24842 0.18908,0.4375 0.4375,0.4375 h 1.25 c 0.1422,0.5539 0.37188,1.0512 0.65625,1.5312 l -0.9063,0.907 c -0.17566,0.17566 -0.17566,0.44934 0,0.625 l 1.5,1.5 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 0.9063,-0.907 c 0.48,0.285 0.9773,0.514 1.5312,0.656 v 1.25 c 1e-7,0.24842 0.18908,0.4375 0.4375,0.4375 h 2.125 c 0.2484,0 0.4375,-0.189 0.4375,-0.438 v -1.25 c 0.5539,-0.1422 1.0512,-0.37188 1.5312,-0.65625 l 0.90625,0.90625 c 0.17566,0.17566 0.44934,0.17566 0.625,0 l 1.5,-1.5 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -0.906,-0.906 c 0.285,-0.48 0.514,-0.977 0.656,-1.531 h 1.25 c 0.249,0 0.438,-0.1891 0.438,-0.4375 v -2.125 c 0,-0.2484 -0.189,-0.4375 -0.438,-0.4375 h -1.25 c -0.142,-0.5539 -0.371,-1.0512 -0.656,-1.5312 l 0.906,-0.9063 c 0.17566,-0.17566 0.17566,-0.44934 0,-0.625 l -1.5,-1.5 c -0.17566,-0.17566 -0.44934,-0.17566 -0.625,0 l -0.906,0.9063 c -0.48,-0.2844 -0.977,-0.5141 -1.531,-0.6563 v -1.25 C 9.5004,0.68878 9.3113,0.4997 9.0629,0.4997 H 6.9379 z M 8,6 c 1.104,0 2,0.896 2,2 0,1.104 -0.896,2 -2,2 C 6.896,10 6,9.104 6,8 6,6.896 6.896,6 8,6 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3315-1"
+ style="opacity:0.05"
+ d="M 8,3.4651 C 5.4994,3.4651 3.4651,5.4994 3.4651,8 c 0,2.501 2.0343,4.535 4.5349,4.535 2.501,0 4.535,-2.034 4.535,-4.535 C 12.535,5.4994 10.501,3.4651 8,3.4651 z m 0,2.093 c 1.3479,0 2.4419,1.094 2.4419,2.4419 0,1.3479 -1.094,2.4419 -2.4419,2.4419 -1.3479,0 -2.4419,-1.0941 -2.4419,-2.442 C 5.5581,6.652 6.6521,5.558 8,5.558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path28-7"
+ style="fill:none;stroke:url(#linearGradient3260-1)"
+ d="M 8,4 C 5.7944,4 4,5.7944 4,8 c 0,2.206 1.7944,4 4,4 2.206,0 4,-1.794 4,-4 C 12,5.7944 10.206,4 8,4 z" />
+ </g>
+ </g>
</svg>