First commit of POC version
@@ -136,6 +136,7 @@ venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
.DS_Store
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
from flask import Blueprint, render_template, redirect, url_for
|
||||
from flask_login import login_required, current_user
|
||||
from models import db
|
||||
from models import User
|
||||
|
||||
admin_bp = Blueprint("admin", __name__, url_prefix="/admin")
|
||||
|
||||
@admin_bp.route("/")
|
||||
@login_required
|
||||
def dashboard():
|
||||
if not current_user.is_admin:
|
||||
return "Forbidden", 403
|
||||
users = User.query.filter_by(is_approved=False).all()
|
||||
return render_template("admin.html", users=users)
|
||||
|
||||
@admin_bp.route("/approve/<int:user_id>")
|
||||
@login_required
|
||||
def approve(user_id):
|
||||
if not current_user.is_admin:
|
||||
return "Forbidden", 403
|
||||
user = User.query.get(user_id)
|
||||
user.is_approved = True
|
||||
db.session.commit()
|
||||
return redirect(url_for("admin.dashboard"))
|
||||
@@ -0,0 +1,39 @@
|
||||
from flask import Flask
|
||||
from flask_login import LoginManager
|
||||
from models import db
|
||||
from models import User
|
||||
from auth import auth_bp
|
||||
from admin import admin_bp
|
||||
from lists import lists_bp
|
||||
from items import items_bp
|
||||
|
||||
login_manager = LoginManager()
|
||||
|
||||
def create_app():
|
||||
app = Flask(__name__)
|
||||
app.config["SECRET_KEY"] = "9823740934riurehoiuwerf873487qe78feri"
|
||||
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///app.db"
|
||||
|
||||
db.init_app(app)
|
||||
login_manager.init_app(app)
|
||||
login_manager.login_view = "auth.login"
|
||||
|
||||
app.register_blueprint(auth_bp)
|
||||
app.register_blueprint(admin_bp)
|
||||
app.register_blueprint(lists_bp)
|
||||
app.register_blueprint(items_bp)
|
||||
|
||||
with app.app_context():
|
||||
db.create_all()
|
||||
|
||||
@login_manager.user_loader
|
||||
def load_user(user_id):
|
||||
# Return User.query.get(int(user_id))
|
||||
return db.get_or_404(User, int(user_id))
|
||||
|
||||
return app
|
||||
|
||||
if __name__ == "__main__":
|
||||
my_app = create_app()
|
||||
# if needed - initialize data
|
||||
my_app.run(debug=True, host='0.0.0.0', port=5001)
|
||||
@@ -0,0 +1,38 @@
|
||||
from flask import Blueprint, render_template, request, redirect, url_for, flash
|
||||
from flask_login import login_user, logout_user, login_required, current_user
|
||||
from models import db
|
||||
from models import User
|
||||
from log import Log
|
||||
|
||||
auth_bp = Blueprint("auth", __name__)
|
||||
|
||||
#. @auth_bp.route("/", methods=["GET", "POST"])
|
||||
@auth_bp.route("/login", methods=["GET", "POST"])
|
||||
def login():
|
||||
if request.method == "POST":
|
||||
user = User.query.filter_by(name=request.form["name"]).first()
|
||||
if user and user.check_password(request.form["password"]):
|
||||
if not user.is_approved:
|
||||
return render_template("pending.html")
|
||||
login_user(user)
|
||||
return redirect(url_for("lists.home"))
|
||||
flash("Invalid credentials")
|
||||
Log.info(f"Authorization failure for user '{request.form["name"]}' ")
|
||||
return render_template("login.html")
|
||||
|
||||
@auth_bp.route("/register", methods=["GET", "POST"])
|
||||
def register():
|
||||
if request.method == "POST":
|
||||
user = User(name=request.form["name"])
|
||||
user.set_password(request.form["password"])
|
||||
db.session.add(user)
|
||||
db.session.commit()
|
||||
return render_template("pending.html")
|
||||
return render_template("register.html")
|
||||
|
||||
@auth_bp.route("/logout")
|
||||
@login_required
|
||||
def logout():
|
||||
logout_user()
|
||||
return redirect(url_for("auth.login"))
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
from app import create_app
|
||||
import sqlalchemy as sa
|
||||
from models import db, User, ListOfItems, Shared, Item
|
||||
|
||||
if __name__ == "__main__":
|
||||
app = create_app()
|
||||
app.app_context().push()
|
||||
query = sa.select(User)
|
||||
users = db.session.scalars(query).all()
|
||||
print(users)
|
||||
if len(users) == 0:
|
||||
admin = User(name="admin", is_admin=True, is_approved=True, is_private=True)
|
||||
admin.set_password("suy2025")
|
||||
db.session.add(admin)
|
||||
user1 = User(name="ignace", is_admin=False, is_approved=True)
|
||||
user1.set_password("xanderj2")
|
||||
db.session.add(user1)
|
||||
db.session.commit()
|
||||
|
||||
lol1 = ListOfItems(owner_user_id = user1.id, name="Supermarkt", is_active=True)
|
||||
db.session.add(lol1)
|
||||
lol2 = ListOfItems(owner_user_id = user1.id, name="Klusjes", is_active=True)
|
||||
db.session.add(lol2)
|
||||
db.session.commit()
|
||||
|
||||
item1 = Item(listofitems_id=lol1.id, label="Stokbrood")
|
||||
item2 = Item(listofitems_id=lol1.id, label="Speltbroodje", category="Brood")
|
||||
item3 = Item(listofitems_id=lol1.id, label="Boter", category="Zuivel", unit='x', quantity=1)
|
||||
item4 = Item(listofitems_id=lol1.id, label="Notenbroodjes", is_checked=True)
|
||||
db.session.add(item1)
|
||||
db.session.add(item2)
|
||||
db.session.add(item3)
|
||||
db.session.add(item4)
|
||||
|
||||
db.session.commit()
|
||||
@@ -0,0 +1,155 @@
|
||||
from flask import Blueprint, render_template, redirect, url_for, request
|
||||
from flask_login import login_required, current_user
|
||||
from models import db
|
||||
from models import User, Item
|
||||
from sqlalchemy import desc
|
||||
import os
|
||||
from log import Log
|
||||
|
||||
items_bp = Blueprint("items", __name__)
|
||||
|
||||
ICONPATH = "static/categories/" #without starting / and with ending /
|
||||
|
||||
# home screen for items
|
||||
@items_bp.route("/items/<listid>")
|
||||
@login_required
|
||||
def items(listid):
|
||||
return render_template("items_show.html", user=current_user,
|
||||
items=Item.query.filter_by(listofitems_id=listid, is_suggestion=False).order_by(Item.is_checked).all(),
|
||||
button_top_url1 = url_for("items.items_append", listid=listid),
|
||||
button_top_txt1 = "add",
|
||||
button_top_url2 = url_for("items.items_clean", listid=listid),
|
||||
button_top_txt2 = "clean")
|
||||
|
||||
# webservice for updating checked state of one item
|
||||
@items_bp.route("/item_update/<itemid>/<itemchecked>")
|
||||
@login_required
|
||||
def item_update(itemid, itemchecked):
|
||||
i = Item.query.get(itemid)
|
||||
i.is_checked = True if itemchecked == 'true' else False
|
||||
db.session.commit()
|
||||
return '', 204
|
||||
|
||||
# user adds items to list
|
||||
@items_bp.route("/items_append/<listid>", methods=["GET", "POST"])
|
||||
@login_required
|
||||
def items_append(listid):
|
||||
if request.method == "POST":
|
||||
# a new item has been added
|
||||
newlabel = request.form["newItem"]
|
||||
# could be
|
||||
# appeltjes
|
||||
# appel goudr
|
||||
#. appel zilver 4
|
||||
#. appel zilver 4kratten
|
||||
print(newlabel)
|
||||
unit = ''
|
||||
quantity = ''
|
||||
if ' ' in newlabel:
|
||||
# take the last word
|
||||
words = newlabel.split(' ')
|
||||
if any(char.isdigit() for char in words[-1]):
|
||||
# there is a numeric value
|
||||
for char in words[-1]:
|
||||
if char.isdigit():
|
||||
quantity += char
|
||||
else:
|
||||
unit += char
|
||||
if unit == '':
|
||||
unit = 'x'
|
||||
newlabel = ' '.join(words[0:-1])
|
||||
|
||||
newitem= Item(listofitems_id=listid, label=newlabel)
|
||||
if unit:
|
||||
newitem.unit = unit
|
||||
if quantity:
|
||||
newitem.quantity = int(quantity)
|
||||
db.session.add(newitem)
|
||||
db.session.commit()
|
||||
|
||||
# read icons
|
||||
icon_names = []
|
||||
icon_list = os.listdir(ICONPATH)
|
||||
for i in icon_list:
|
||||
if not i.startswith('.'):
|
||||
icon_names.append(os.path.splitext(i)[0])
|
||||
|
||||
return render_template("items_append.html", user=current_user,
|
||||
items=Item.query.filter_by(listofitems_id=listid).order_by(Item.label).all(),
|
||||
icons = icon_names,
|
||||
iconpath = '/'+ICONPATH,
|
||||
logo_url=url_for("items.items", listid=listid))
|
||||
|
||||
# webservice for deleting one item
|
||||
@items_bp.route("/item_delete/<itemid>")
|
||||
@login_required
|
||||
def item_delete(itemid):
|
||||
i = Item.query.get(itemid)
|
||||
listid = i.listofitems_id
|
||||
db.session.delete(i)
|
||||
db.session.commit()
|
||||
Log.info(f'User {current_user.id} deleted item {itemid}')
|
||||
return render_template("items_append.html", user=current_user,
|
||||
items=Item.query.filter_by(listofitems_id=listid).order_by(Item.label).all(),
|
||||
iconpath = '/'+ICONPATH,
|
||||
logo_url=url_for("items.items", listid=listid))
|
||||
|
||||
# webservice for cleaning all checked items to suggestion
|
||||
@items_bp.route("/items_clean/<listid>")
|
||||
@login_required
|
||||
def items_clean(listid):
|
||||
for i in Item.query.filter_by(listofitems_id=listid, is_checked=True, is_suggestion=False).all():
|
||||
i.is_suggestion = True
|
||||
db.session.commit()
|
||||
return redirect(url_for("items.items", listid=listid))
|
||||
|
||||
# webservice for adding one item
|
||||
@items_bp.route("/item_addone/<itemid>")
|
||||
@login_required
|
||||
def item_addone(itemid):
|
||||
i = Item.query.get(itemid)
|
||||
listid = i.listofitems_id
|
||||
# if it is checked or not on the list yet, set quantity to one
|
||||
if i.is_suggestion or i.is_checked:
|
||||
i.quantity = 1
|
||||
# and make sure its on the list
|
||||
i.is_suggestion = False
|
||||
i.is_checked = False
|
||||
else:
|
||||
# else add one to the quantity, to a minimum of 2
|
||||
i.quantity += 1 if i.quantity else 2
|
||||
# if no unit given, make it 'x'
|
||||
if not i.unit:
|
||||
i.unit = 'x'
|
||||
db.session.commit()
|
||||
return render_template("items_append.html", user=current_user,
|
||||
items=Item.query.filter_by(listofitems_id=listid).order_by(Item.label).all(),
|
||||
logo_url=url_for("items.items", listid=listid))
|
||||
|
||||
# webservice for adding one item with a quantity/unit
|
||||
@items_bp.route("/item_addquantity/<itemid>/<quantity>")
|
||||
@login_required
|
||||
def item_addquantity(itemid, quantity):
|
||||
i = Item.query.get(itemid)
|
||||
print(f"{i.quantity} / {quantity}")
|
||||
listid = i.listofitems_id
|
||||
# always add the item to the active todo
|
||||
if i.is_suggestion or i.is_checked:
|
||||
# and make sure its on the list
|
||||
i.is_suggestion = False
|
||||
i.is_checked = False
|
||||
else:
|
||||
i.quantity += int(quantity)
|
||||
db.session.commit()
|
||||
return render_template("items_append.html", user=current_user,
|
||||
items=Item.query.filter_by(listofitems_id=listid).order_by(Item.label).all(),
|
||||
logo_url=url_for("items.items", listid=listid))
|
||||
|
||||
# webservice for updating category of one item
|
||||
@items_bp.route("/item_update_category/<itemid>/<category>")
|
||||
@login_required
|
||||
def item_upitem_update_categorydate(itemid, category):
|
||||
i = Item.query.get(itemid)
|
||||
i.category = category
|
||||
db.session.commit()
|
||||
return '', 204
|
||||
@@ -0,0 +1,90 @@
|
||||
from flask import Blueprint, render_template, redirect, url_for, request
|
||||
from flask_login import login_required, current_user
|
||||
from models import db
|
||||
from models import User, ListOfItems, Item, Shared
|
||||
from log import Log
|
||||
|
||||
lists_bp = Blueprint("lists", __name__)
|
||||
|
||||
def not_current_user(current_user_id):
|
||||
result = []
|
||||
users = User.query.all()
|
||||
for user in users:
|
||||
if user.id != current_user_id and not user.is_admin:
|
||||
result.append(user)
|
||||
return result
|
||||
|
||||
@lists_bp.route("/")
|
||||
@login_required
|
||||
def home():
|
||||
return render_template("lists_show.html", user=current_user, ilists=current_user.all_my_lists())
|
||||
|
||||
@lists_bp.route("/lists_edit", methods=["GET", "POST"])
|
||||
@login_required
|
||||
def edit():
|
||||
newlist = ListOfItems(name="")
|
||||
|
||||
if request.method == "POST":
|
||||
if "iid" in request.form:
|
||||
ilist_id = int(request.form["iid"])
|
||||
newname = request.form["name"]
|
||||
print(ilist_id)
|
||||
print(newname)
|
||||
double = False
|
||||
for d in ListOfItems.query.filter_by(owner_user_id=current_user.id, name=newname).all():
|
||||
if not d.id == ilist_id:
|
||||
# there is a duplicate name
|
||||
double = True
|
||||
if double:
|
||||
print("found double")
|
||||
return render_template("lists_edit.html", user=current_user, ilists=current_user.my_owned_lists(with_inactive=True), newlist=newlist, error_id=ilist_id)
|
||||
|
||||
# if id already exists, overwrite the existing list, else create a new one
|
||||
ilist = ListOfItems.query.get(ilist_id)
|
||||
if ilist:
|
||||
# exists: delete OR overwrite shared data, activate data and update
|
||||
if "to_be_deleted" in request.form:
|
||||
# remove all items connected tothis list
|
||||
Log.info(f'User {current_user.id} deleted list {ilist.id} and all its items')
|
||||
for item in Item.query.filter_by(listofitems_id=ilist.id).all():
|
||||
db.session.delete(item)
|
||||
db.session.delete(ilist)
|
||||
else:
|
||||
print("not to be deleted but updated")
|
||||
# update name
|
||||
ilist.name = newname
|
||||
# update active
|
||||
ilist.is_active = True if "is_active" in request.form else False
|
||||
# sharing. there may be 0 or more chacboces named "sharing_<n>" where <N> is the user.id
|
||||
# first, remoe all the existing shares
|
||||
for s in Shared.query.filter_by(listofitem_id=ilist_id).all():
|
||||
print(f"deleting {s.user_id} - {s.listofitem_id}")
|
||||
db.session.delete(s)
|
||||
# and then rebuild them
|
||||
for u in not_current_user(current_user.id):
|
||||
print(f"tryin user {u.id}")
|
||||
if f"shares_{u.id}" in request.form:
|
||||
print(f"found sharebox: {u.id}")
|
||||
shared1 = Shared(user_id=u.id, listofitem_id=ilist_id)
|
||||
db.session.add(shared1)
|
||||
|
||||
else:
|
||||
# must be a new list
|
||||
newlist = ListOfItems(name=request.form["name"], owner_user_id=current_user.id)
|
||||
# check if name exists
|
||||
duplicate = ListOfItems.query.filter_by(owner_user_id=current_user.id, name=request.form["name"]).first()
|
||||
if duplicate:
|
||||
# there is a duplicate name
|
||||
return render_template("lists_edit.html", user=current_user, ilists=current_user.my_owned_lists(with_inactive=True), newlist=newlist, error_id=9999)
|
||||
|
||||
newlist.is_active = True
|
||||
newlist.owner_user_id = current_user.id
|
||||
db.session.add(newlist)
|
||||
db.session.commit()
|
||||
return home()
|
||||
|
||||
|
||||
return render_template("lists_edit.html", user=current_user,
|
||||
ilists=current_user.my_owned_lists(with_inactive=True),
|
||||
users=not_current_user(current_user.id),
|
||||
newlist=newlist)
|
||||
@@ -0,0 +1,22 @@
|
||||
from sys import stderr
|
||||
|
||||
LOGFILE = '/tmp/wsgi_lapp.log'
|
||||
DEBUG = 0
|
||||
INFO = 1
|
||||
|
||||
class Log:
|
||||
@staticmethod
|
||||
def info(someString):
|
||||
if INFO:
|
||||
f = open(LOGFILE, "a")
|
||||
f.write( "flower: %s \n" % someString )
|
||||
f.close()
|
||||
if DEBUG:
|
||||
print(someString)
|
||||
|
||||
@staticmethod
|
||||
def debug(someString):
|
||||
if DEBUG:
|
||||
f = open(LOGFILE, "a")
|
||||
f.write( "flower: %s \n" % someString )
|
||||
f.close()
|
||||
@@ -0,0 +1,70 @@
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
from flask_login import UserMixin
|
||||
from werkzeug.security import generate_password_hash, check_password_hash
|
||||
from datetime import datetime
|
||||
|
||||
db = SQLAlchemy() # Create the extension object
|
||||
|
||||
class User(UserMixin, db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
updated_at = db.Column(db.TIMESTAMP, default=datetime.now(), onupdate=datetime.now(), nullable=False)
|
||||
name = db.Column(db.String(40), unique=True, nullable=False)
|
||||
password_hash = db.Column(db.String(256))
|
||||
is_admin = db.Column(db.Boolean, default=False)
|
||||
is_approved = db.Column(db.Boolean, default=False)
|
||||
is_private = db.Column(db.Boolean, default=False)
|
||||
is_guest = db.Column(db.Boolean, default=False)
|
||||
|
||||
def set_password(self, password):
|
||||
self.password_hash = generate_password_hash(password)
|
||||
|
||||
def check_password(self, password):
|
||||
return check_password_hash(self.password_hash, password)
|
||||
|
||||
def my_owned_lists(self, with_inactive=False):
|
||||
if with_inactive:
|
||||
return ListOfItems.query.filter_by(owner_user_id=self.id).all()
|
||||
return ListOfItems.query.filter_by(owner_user_id=self.id, is_active=True).all()
|
||||
|
||||
def all_my_lists(self):
|
||||
result = self.my_owned_lists()
|
||||
for s in Shared.query.filter_by(user_id=self.id).all():
|
||||
l = ListOfItems.query.filter_by(id=s.listofitem_id, is_active=True).first()
|
||||
if l:
|
||||
result.append(l)
|
||||
return result
|
||||
|
||||
def shares_in_list(self, listofitem_id):
|
||||
shared = Shared.query.filter_by(user_id=self.id, listofitem_id=listofitem_id).first()
|
||||
return True if shared else False
|
||||
|
||||
|
||||
class ListOfItems(db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
updated_at = db.Column(db.TIMESTAMP, default=datetime.now(), onupdate=datetime.now(), nullable=False)
|
||||
owner_user_id = db.Column(db.Integer, nullable=False)
|
||||
name = db.Column(db.String(40), unique=True, nullable=False)
|
||||
is_active = db.Column(db.Boolean, default=False)
|
||||
|
||||
def items_left(self):
|
||||
return len(Item.query.filter_by(listofitems_id=self.id, is_checked=False, is_suggestion=False).all())
|
||||
|
||||
def items_total(self):
|
||||
return len(Item.query.filter_by(listofitems_id=self.id, is_suggestion=False).all())
|
||||
|
||||
class Item(db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
updated_at = db.Column(db.TIMESTAMP, default=datetime.now(), onupdate=datetime.now(), nullable=False)
|
||||
listofitems_id = db.Column(db.Integer, nullable=False)
|
||||
label = db.Column(db.String(40), nullable=False)
|
||||
quantity = db.Column(db.Integer, default=0)
|
||||
unit = db.Column(db.String(10))
|
||||
label_alt1 = db.Column(db.String(40))
|
||||
label_alt2 = db.Column(db.String(40))
|
||||
is_checked = db.Column(db.Boolean, default=False)
|
||||
is_suggestion = db.Column(db.Boolean, default=False)
|
||||
category = db.Column(db.String(20))
|
||||
|
||||
class Shared(db.Model):
|
||||
user_id = db.Column(db.Integer, primary_key=True)
|
||||
listofitem_id = db.Column(db.Integer, primary_key=True)
|
||||
@@ -0,0 +1,257 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="118.82239"
|
||||
height="122.92707"
|
||||
viewBox="0 0 118.82239 122.92707"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="positive.svg">
|
||||
<title
|
||||
id="title5066">Positive Icon</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1,0,0,0.08641975,-311.54127,-1303.7362)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#3"
|
||||
id="5"
|
||||
r="53.91"
|
||||
cy="117.35"
|
||||
cx="63.894001" />
|
||||
<linearGradient
|
||||
id="3">
|
||||
<stop
|
||||
id="I" />
|
||||
<stop
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="J" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#2"
|
||||
id="A"
|
||||
y2="120.54"
|
||||
x2="0"
|
||||
y1="8.7069998"
|
||||
gradientTransform="matrix(1.0119373,0,0,1.0266947,-314.97601,-1418.8024)" />
|
||||
<linearGradient
|
||||
id="2">
|
||||
<stop
|
||||
id="G"
|
||||
style="stop-color:#cf6161;stop-opacity:1" />
|
||||
<stop
|
||||
offset="1"
|
||||
id="H"
|
||||
style="stop-color:#8a0000;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.5353487,-0.7140729,0.764706,0.9803922,169.49135,1199.2767)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#4"
|
||||
id="7"
|
||||
r="38.945999"
|
||||
cy="148.57001"
|
||||
cx="-64" />
|
||||
<linearGradient
|
||||
id="4">
|
||||
<stop
|
||||
stop-color="#eee"
|
||||
id="K" />
|
||||
<stop
|
||||
stop-color="#dcdcdc"
|
||||
offset="1"
|
||||
id="L" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.5330966,-3.1358239e-8,2.404893e-8,1.1240308,-33.828167,2.9909361)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#9"
|
||||
id="8"
|
||||
r="55.27"
|
||||
cy="-15.174"
|
||||
cx="64.699997" />
|
||||
<linearGradient
|
||||
id="9">
|
||||
<stop
|
||||
stop-color="#eee"
|
||||
id="M" />
|
||||
<stop
|
||||
stop-opacity="0"
|
||||
stop-color="#eee"
|
||||
offset="1"
|
||||
id="N" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#3"
|
||||
id="radialGradient4358"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.08641975,-291.03518,-1322.121)"
|
||||
cx="63.894001"
|
||||
cy="117.35"
|
||||
r="53.91" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4376"
|
||||
id="linearGradient4360"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0119373,0,0,1.0266947,-294.46992,-1437.1872)"
|
||||
y1="8.7069998"
|
||||
x2="0"
|
||||
y2="120.54" />
|
||||
<linearGradient
|
||||
id="linearGradient4376">
|
||||
<stop
|
||||
style="stop-color:#65cf61;stop-opacity:1"
|
||||
id="stop4378" />
|
||||
<stop
|
||||
style="stop-color:#038a00;stop-opacity:1"
|
||||
id="stop4380"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#4"
|
||||
id="radialGradient4362"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5353487,-0.7140729,0.764706,0.9803922,148.98526,1217.6615)"
|
||||
cx="-64"
|
||||
cy="148.57001"
|
||||
r="38.945999" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#9"
|
||||
id="radialGradient4364"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.5330966,-3.1358239e-8,2.404893e-8,1.1240308,-33.828167,2.9909361)"
|
||||
cx="64.699997"
|
||||
cy="-15.174"
|
||||
r="55.27" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#4"
|
||||
id="radialGradient4374"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5353487,-0.7140729,0.764706,0.9803922,1291.4895,-381.51256)"
|
||||
cx="-64"
|
||||
cy="148.57001"
|
||||
r="38.945999" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="-90.058141"
|
||||
inkscape:cy="36.898977"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="974"
|
||||
inkscape:window-x="3600"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Positive Icon</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>adlerweb</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>based on "Minus Emblem Icon" by sixsixfive</dc:source>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-737.73163,-182.32723)">
|
||||
<g
|
||||
transform="translate(1025.4777,1612.5749)"
|
||||
id="g4382">
|
||||
<path
|
||||
style="opacity:0.44299999;fill:url(#radialGradient4358)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -173.23152,-1311.9795 a 53.91015,4.6589018 0 0 1 -107.8203,0 53.91015,4.6589018 0 1 1 107.8203,0 z"
|
||||
id="path4346" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4360)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -170.92353,-1370.8365 a 57.41135,57.411349 0 0 1 -114.8227,0 57.41135,57.411349 0 1 1 114.8227,0 z"
|
||||
id="path4348" />
|
||||
<path
|
||||
style="fill:none;stroke:#036e00;stroke-width:3.99969125;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -170.92353,-1370.8365 a 57.41135,57.411349 0 0 1 -114.8227,0 57.41135,57.411349 0 1 1 114.8227,0 z"
|
||||
id="path4350" />
|
||||
<rect
|
||||
style="fill:url(#radialGradient4362)"
|
||||
width="59.560001"
|
||||
height="14.13"
|
||||
x="198.55489"
|
||||
y="1363.7742"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4352"
|
||||
rx="3.3640001" />
|
||||
<g
|
||||
transform="translate(-292.33943,-1432.7836)"
|
||||
id="g4354">
|
||||
<path
|
||||
style="fill:none;stroke:url(#radialGradient4364);stroke-width:2.079"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 65.34375,11.21875 c -29.979853,0 -54.21875,23.915681 -54.21875,53.40625 0,29.490569 24.238897,53.40625 54.21875,53.40625 29.979853,0 54.25,-23.917374 54.25,-53.40625 0,-29.488876 -24.270147,-53.40625 -54.25,-53.40625 z"
|
||||
transform="matrix(1.0119373,0,0,1.0266947,-2.1350421,-4.4029736)"
|
||||
id="path4356" />
|
||||
</g>
|
||||
<rect
|
||||
rx="3.3640001"
|
||||
id="rect4372"
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="-235.39989"
|
||||
x="1341.0592"
|
||||
height="14.13"
|
||||
width="59.560001"
|
||||
style="fill:url(#radialGradient4374)" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#e07f14" d="M12.71 56.61s-.71 25.48-.71 29s-.31 7.14 2.48 9.31c1.69 1.32 9.48 7.18 19.87 13.04s24.27 12.83 27.12 14s6.11.52 9.77-.84c3.35-1.24 10.84-5.03 21.73-10.56s15.9-8.32 18.94-10.73c2.3-1.82 4.52-4.19 4.19-8.38c-.34-4.19-.24-13.71-.57-17.73c-.34-4.02-.6-18.73-.6-18.73l8.96-16.45s-.22-3.43-1-5.55c-1.16-3.16-3.31-4.86-3.31-4.86L48.91 15.74s-36.07 8.52-38.07 9.68s-7.19 5.47-7.05 13.15C4 49.6 12.71 56.61 12.71 56.61"/><path fill="#ffebca" d="M17.39 55.09s-1.33 29.35-.62 33.58c.59 3.54 11.4 9.85 19.28 14.35c7.1 4.06 22.15 10.43 24.21 11.41s3.04-.87 3.04-2.5s.11-36.89.11-36.89s9.16-1.63 10.89-9.77s-7.57-21.02-32.49-30.7c-25.72-9.97-33.26-4.18-33.56 3c-.43 10.64 9.14 17.52 9.14 17.52"/><path fill="#ac5811" d="M81.46 57.13s2.9 10.21-2.45 15.86c-5.42 5.72-9.98 6.73-9.98 6.73s-.37 4.61-.15 5.15c.51 1.27 16.53-5.26 26.62-9.49l19.64-8.24s-.33-4.99 0-4.88s5.53-4.99 7.38-11.61c1.84-6.62 1.38-12.08 1.38-12.08s-16.63 6.94-22.42 9.58c-5.54 2.52-17.5 7.6-20.02 8.98"/><path fill="#f5b03e" d="M76.94 48.77c.66.72 44.61-18.42 44.61-18.42S106.58 6.8 68.93 6.16C30.42 5.5 8.62 26.29 8.16 27.55c-.36.98 6.96-8.59 31.48-.67s33.68 17.97 37.3 21.89"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 183 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#50352f" d="M9.15 43.27S6.54 44.7 5.5 45.88c-1.04 1.17-1.77 2.21-1.56 3.65c.39 2.74 9.9 10.03 16.42 16.55c5.54 5.54 17.33 15.77 17.33 15.77l5.6-5.73l-9.64-12.38z"/><path fill="#865c50" d="M79.9 37.54S69.86 27.07 63.6 20.59C58.98 15.81 49.78 5.47 48.81 4.82s-3.56-1.19-5.07.32C42.22 6.66 32.29 17.46 28.4 21.56S5.54 45.86 5.54 45.86s2.02-1.2 3.97.74c1.35 1.35 31.31 30.66 31.31 30.66l27.42-10.8z"/><path fill="#50352f" d="M46.65 73.75L17.71 46c-.5-.48-.51-1.27-.04-1.76l28.4-29.8c.23-.25.56-.38.89-.39c.36.01.66.13.9.37L75.5 42.49l-1.78 1.75l-26.73-27.15l-26.65 27.97l28.04 26.88z"/><path fill="#50352f" d="m33.03 31.104l1.764-1.771l25.655 25.553l-1.764 1.772z"/><path fill="#50352f" d="m28.245 54.301l27.926-29.595l1.818 1.716l-27.925 29.595zm10.642 10.243l26.799-29.06l1.838 1.695l-26.799 29.06z"/><path fill="#dc0d28" d="m48.44 80.65l-.71 7.01S58.1 98.33 62.06 102.4s17.79 16.27 17.79 16.27s6.81-3.15 7.01-3.86s34.87-37.41 34.87-37.41s-12.71-12.81-17.28-17.38s-14.54-15.96-14.54-15.96z"/><path fill="#b0091b" d="M90.22 52.59s2.95 5.29 3.46 6.4c.51 1.12 1.29 3 .01 3.52c-1.73.71-15.66 3.74-15.66 3.74s-.3 14.19-1.78 15.66c-1.63 1.63-24.34 3.7-25.07 3.81c-1.42.2-.2 1.42.61 2.34c.81.91 29.68 28.57 29.68 28.57l-1.42 5.79l-2.95-2.44s-8.7-8.45-17.95-17.5s-17.32-17.26-17.32-17.26l43-36.09z"/><path fill="#b0b3af" d="m83.89 115.96l-2.85.3l-3.94 3.73s2.97 3.79 4.61 3.97s19.27-19.18 24.64-24.46c5.36-5.27 18.32-18.6 18.32-19.09c0-1.09-2.93-3.02-2.93-3.02z"/><path fill="#e4e0e8" d="M83.58 118.72c.27-.64 39.83-40.04 39.83-40.04l-2.46-2.1l-39.91 39.68z"/><path fill="#e0e0e0" d="m66 45.99l8.38-3.58s4.3-5.59 4.81-6.1s6.63-.94 6.63-.94l5.14 4.24s1.21 4.76 1.42 5.79c.2 1.02 2.21 8.52 1.41 10.71c-.73 2-16.05 5.48-17.62 5.92c-.91.26-.69.96-.87 2.46c-.11.92-.46 11.75-1.38 12.87s-9.95 2.65-13.12 3.27c-1.78.35-13.36 2.3-13.36 2.3l-2.99 4.34s.31 1.63-.72 2.15c-1.02.51-3.8-.82-4.31-1.43s-4.14-7.06-3.73-7.98s4.33-6.45 5.04-6.86c.72-.41 6.17-1.71 6.17-1.71s5.19-13.74 6.35-14.82c.69-.64 10.1-4.69 10.1-4.69z"/><path fill="#fff" d="M68.25 48.8c-.7.04-2.09 7.76-1.89 8.26c.21.49 14.29.25 14.42-.9c.12-1.16-10.37-7.49-12.53-7.36m20.43-6.01c.33.9-3.04 3.98-3.29 4.03s-7.38-1.87-7.6-3.41c-.21-1.44 4.05-1.23 5.86-1.23c1.82-.01 4.83.06 5.03.61M55 60.58c-1.45-.69-4.65 8.24-5.09 9.37c-.53 1.36 2.48 1.89 4.23 2.04c2.56.21 11.24.64 11.43-.08c.32-1.28-8.6-10.39-10.57-11.33M41.81 75.9c-1.31.58 2.27 11.37 2.6 11.37s3.03-4.39 3.03-4.39s-4.26-7.58-5.63-6.98"/></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#feb502" d="m57.64 20.92l-29.45 5.37s.35 29.12.04 42.77s-.42 33-.2 35.45c.19 2.13 6.75 8.9 6.75 8.9l22.09 7.98l21.47-.77l18.71-8.74s2.79-3.75 3.32-5.02c.41-.97.03-28.13.03-41.06c0-10.89.55-40.46.55-40.46z"/><path fill="#b0b0b0" d="M28.3 109.44c.34 1.48 12.21 14.85 36.18 14.85s35.46-11.73 35.68-12.94s.26-4.66.26-4.66s-11.64 12.65-35.61 12.76c-24.31.11-36.8-15.08-36.8-15.08s-.05 3.59.29 5.07"/><path fill="#e0e0e0" d="m38.42 10.35l-10.27 7.7s-.3 3.29-.29 4.84c.02 2.3.33 3.41.33 3.41s6.9 11.2 36.68 12c26.91.72 36.02-9.46 36.02-9.46s1.15-2.41 1.4-4.15c.42-2.87-.08-5.31-.08-5.31z"/><path fill="#b0b0b0" d="M65.37 3.86C47.56 3.21 28.19 9.25 28.08 18.7c-.11 9.79 24.53 15.53 36.73 15.62c15.15.11 37.17-5.28 37.5-14.08c.34-8.79-17.46-15.67-36.94-16.38"/><path fill="#858585" d="M65.37 16.72s-28.81 5.5-30.46 4.07s-2.97-2.64.77-5.94s14.06-7.74 30.57-7.04c17.32.74 30.22 6.61 31.05 11.27c.15.82-.08 2.32-1.02 2.84c-.21.12-5.47 2.66-5.47 2.66s-26.21-7.97-25.44-7.86"/><path fill="#e0e0e0" d="M83.18 13.23c-11.17-3.16-29.44-3.98-39.12.31s-9.08 7.3-9.08 7.3s8.32 7.84 30.06 8.1c23.21.28 31.23-7.04 31.23-7.04s-.66-5.15-13.09-8.67"/><path fill="#719921" d="M40.62 46.75c-.71.35-.77 1.65-.88 3.3s-.44 49.16-.22 49.6s7.81 8.58 25.08 8.25c16.61-.32 24.74-6.21 24.74-6.21s.22-29.99.33-37.03s.91-15.29 0-16.12c-1.51-1.38-8.58.51-24.96.29s-22.77-2.74-24.09-2.08"/><path fill="#e5dda0" d="M44.14 51.92c-.78 1.16-.47 22.56-.47 26.85s-.04 17.88-.04 17.88s6.69 6.32 19.86 6.3c13.36-.02 21.63-4.4 21.63-4.4s.37-18.15.48-26.28s.32-17.78.34-19.27c.02-1.25-12.5.77-22.39.33c-12.53-.54-18.75-2.4-19.41-1.41"/><path fill="#749b22" d="M50.17 59.93c-.67.33-1.07.68-1.2 1.84c-.17 1.5.49 2.44 1.24 2.86s6.8.73 14.39.77c7.95.05 14.71-.19 14.71-.19s.83-.92.83-2.58c0-1.34-.38-1.94-.83-2.25c-.46-.31-9.32.1-15.07.06c-6.49-.05-13.41-.84-14.07-.51"/><path fill="#ff5119" d="M50.26 82.35c0 8.01 5.17 14.26 14.67 14.17s13.53-8.74 13.26-13.76c-.33-6.17-3.84-13.42-13.84-13.42s-14.09 7.18-14.09 13.01"/></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 262 KiB |
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" id="svg2" viewBox="0 0 155.33 684.48" version="1.1">
|
||||
<g id="layer1" transform="translate(-279 -196.09)">
|
||||
<path id="path2904" d="m335.38 879.9c-25.37-2.6228-44.679-9.7583-51.85-19.161-7.0787-9.2807-5.5572-31.003 4.364-62.305 5.319-16.782 6.3942-25.468 5.6858-45.933-0.50631-14.625-1.5294-22.659-7.2017-56.547-5.4977-32.845-6.5114-40.679-6.0169-46.5 0.32707-3.85 0.66234-8.125 0.74505-9.5 0.0827-1.375-0.44875-7.9-1.181-14.5-2.2817-20.565-0.23234-49.563 5.1591-73 1.1583-5.0351 2.1573-13.185 2.2678-18.5 0.17119-8.2356 0.66751-10.698 3.7289-18.5 22.266-56.744 24.137-62.161 27.812-80.5 3.1217-15.576 5.5745-38.993 4.6688-44.574-0.30571-1.8838-1.9958-6.3502-3.7558-9.9252-2.9932-6.0802-3.1528-6.936-2.471-13.251 0.78986-7.3151 0.78828-8.0559-0.041-19.275-0.49165-6.6514-0.30946-7.8384 1.5699-10.228 2.8775-3.6581 9.5355-5.4713 24.865-6.7712 19.268-1.634 42.514 0.59395 48.736 4.671 4.312 2.8253 5.7589 12.201 2.9285 18.975-1.1746 2.8113-1.2398 4.0117-0.31026 5.7179 0.64708 1.1878 1.1838 5.1514 1.1926 8.8082 0.0135 5.5625-0.5076 7.6479-3.1897 12.765-2.871 5.4771-3.2059 6.9969-3.2059 14.55 0 10.337 2.2354 27.884 5.5559 43.61 2.477 11.732 11.655 37.917 22.967 65.526 6.7084 16.373 8.9284 25.107 7.6024 29.91-0.70663 2.5592-0.46444 5.2724 0.97066 10.874 5.9196 23.108 8.6819 53.653 6.7506 74.65-0.68127 7.4067-1.1567 15.717-1.0566 18.467 0.65387 17.954 0.25994 21.924-5.6057 56.5-10.122 59.664-10.288 75.971-1.066 104.36 7.1943 22.148 10.13 47.321 6.5248 55.949-4.2125 10.082-19.14 17.905-41.567 21.783-13.488 2.3327-41.795 3.2752-55.576 1.8506zm-2.5-15.946c1.1-1.1 2-2.3879 2-2.862 0-0.78569-9.4953-3.138-12.667-3.138-1.8026 0-1.6844 3.0536 0.22348 5.7775 2.0351 2.9054 7.6409 3.0249 10.443 0.22251zm0.61047-34.765c2.8464-1.8832 6.1442-11.738 8.9468-26.735 2.8564-15.285 2.2593-32.572-3.9838-115.35-1.3419-17.792-2.5824-32.486-2.7566-32.651-0.17426-0.16585-3.3536-0.62327-7.0651-1.0165l-6.7483-0.71494 0.50568 2.8663c0.6808 3.8588 6.0472 62.083 7.9603 86.366 0.84491 10.725 1.593 25.125 1.6625 32 0.13181 13.047-0.52181 16.704-6.5995 36.926-2.9438 9.7949-3.1927 14.687-0.87744 17.245 1.6635 1.8381 6.8531 2.4544 8.9555 1.0634zm5.7599-275.53c0.47871-3.188 0.61809-6.0486 0.30973-6.3569-0.30836-0.30835-4.3441-0.79669-8.9682-1.0852l-8.4076-0.52453-0.64117 3.8815c-1.3142 7.9559-0.9781 9.2136 2.5868 9.6793 1.7875 0.23349 5.725 0.3745 8.75 0.31336l5.5-0.11116 0.87039-5.7963zm1.5571-19.013c1.4053-3.6961 5.0484-49.919 8.5668-108.69 0.83959-14.025 1.7624-27.638 2.0506-30.25l0.52404-4.75h-7.8122l-0.69236 13.25c-0.91563 17.523-3.156 39.333-5.6238 54.75-4.0719 25.438-6.9906 41.942-10.41 58.864-1.9296 9.55-3.2618 17.763-2.9606 18.25 0.30128 0.48748 3.9074 0.88633 8.0135 0.88633 6.879 0 7.5347-0.18151 8.3437-2.3094zm12.547-163.64c0.83912-1.6227 1.5257-4.4914 1.5257-6.375 0-3.0356-0.355-3.4957-3.125-4.0497-4.6822-0.93644-8.6765-0.75514-9.4071 0.42698-1.1631 1.8819-0.81718 9.8222 0.49682 11.405 0.74818 0.9015 2.8809 1.5425 5.1321 1.5425 3.254 0 4.0887-0.45791 5.3776-2.9503zm1.7954-59.532c-3.62-1.57-7.27-6.78-7.28-10.37-0.006-3.7716 3.0351-9.1199 6.0814-10.695 1.5485-0.80077 4.5377-1.456 6.6426-1.456 12.356 0 15.495 16.697 4.2335 22.52-3.5079 1.814-5.5143 1.8135-9.6917-0.003v0.00043zm-17.712-32.715c-2.4129-0.66849-5.7214-2.879-8.5277-5.6974-8.9846-9.0237-9.3097-20.507-0.8408-29.694 13.362-14.496 37.119-5.1618 37.131 14.589 0.008 14.443-13.684 24.703-27.762 20.803zm3.6137-24.458c5.264-4.7638-1.7879-13.401-7.4254-9.095-2.7995 2.1384-3.1991 6.2968-0.83252 8.6633 2.5115 2.5115 5.7714 2.6819 8.2579 0.43167zm20.144-24.352c-7.5228-3.031-4.5365-15.993 3.6846-15.993 8.2075 0 11.187 11.783 3.9285 15.537-3.1816 1.6453-4.4699 1.7224-7.6131 0.45604zm-8.376-24.054c-2.7822-2.7822-2.2205-6.94 1.1954-8.8484 2.3598-1.3184 2.9076-1.2932 5.25 0.24151 3.3788 2.2139 3.5798 6.8784 0.39272 9.1108-2.9526 2.0681-4.3706 1.9636-6.8381-0.50388z" fill="#e0a1a1"/>
|
||||
<path id="path2902" d="m340.62 879.53c-18.864-1.4269-35.018-5.0725-45.042-10.165-5.3157-2.7006-12.672-9.6627-14.298-13.531-1.817-4.3234-1.7462-20.762 0.13582-31.554 0.81851-4.6937 3.1226-13.865 5.1202-20.381 5.6238-18.344 6.2423-21.094 7.3235-32.559 1.5126-16.04-0.20456-34.222-7.1102-75.288-5.8665-34.887-6.3738-40.011-5.5933-56.5 0.11715-2.475-0.37312-10.35-1.0895-17.5-2.0539-20.5 0.43616-49.928 6.2527-73.897 1.8242-7.517 2.1667-10.572 1.4242-12.702-1.5649-4.489 0.63115-12.54 9.6559-35.401 17.901-45.347 22.684-61.809 25.48-87.711 1.8892-17.5 1.4728-23.95-1.971-30.525-3.699-7.0622-4.631-14.12-2.6906-20.375 1.1955-3.854 1.2128-5.0021 0.10547-7-1.743-3.1447-1.7488-11.108-0.0112-15.267 2.7652-6.6179 16.473-9.1776 44.616-8.3314 19 0.57129 26.542 1.9907 30.541 5.7471 2.1952 2.0622 2.4591 3.1286 2.4591 9.9359 0 4.3123-0.48849 8.1142-1.1242 8.7499-0.83231 0.83231-0.83231 1.9616 0 4.3492 0.61833 1.7737 1.1242 6.0371 1.1242 9.4742 0 5.0718-0.586 7.3518-3.1101 12.101l-3.1101 5.8516 0.53689 15c1.0827 30.25 5.6699 47.457 26.525 99.5 8.469 21.134 8.618 21.653 8.7488 30.5 0.0813 5.5001 1.1687 13.816 2.7961 21.384 5.4134 25.174 7.2063 58.491 4.2036 78.116-0.78424 5.1255-0.9611 9.4191-0.44549 10.815 1.8448 4.9948 0.64385 17.525-4.6946 48.983-10.408 61.329-10.885 81.46-2.5141 105.99 8.4126 24.648 11.444 49.379 7.1988 58.725-4.8171 10.604-21.037 18.4-45.561 21.899-13.434 1.917-32.622 2.5741-45.881 1.5712h-0.00001zm-7.1501-16.026c2.5998-2.8727 1.2905-4.3041-5.1095-5.5861-6.7043-1.343-7.4332-1.1468-7.4332 2.0013 0 5.9881 8.2372 8.3424 12.543 3.5848zm1.3936-34.889c2.3763-2.3763 6.5321-15.249 8.6818-26.893 2.766-14.981 1.975-40.522-3.6906-119.17-1.3092-18.174-2.4832-28.912-3.2404-29.636-0.65303-0.62468-4.4498-1.4394-8.4373-1.8106l-7.25-0.67476v3.7135c0 2.0424 1.5631 19.282 3.4735 38.311 7.5314 75.014 8.0483 88.305 4.0418 103.92-1.3665 5.3247-3.3881 12.606-4.4924 16.181-1.1042 3.575-2.0112 7.983-2.0154 9.7954-0.0156 6.725 8.3945 10.802 12.929 6.2682zm4.3414-268.48c1.5631-1.5631 3.1834-13.565 1.9772-14.646-0.41527-0.37227-4.8694-0.95121-9.898-1.2865-6.6678-0.44464-9.4074-0.2763-10.12 0.62181-1.3008 1.64-2.4385 12.911-1.4566 14.431 0.43882 0.67943 3.7967 1.3531 7.7469 1.5541 3.8348 0.1952 7.7277 0.44304 8.6509 0.55076 0.92322 0.10772 2.3179-0.44345 3.0992-1.2248zm1.9642-22.829c1.9454-1.4971 2.8756-9.0186 5.8438-47.25 1.1529-14.85 1.8576-29.7 1.5658-33-0.29173-3.3 0.35626-19.252 1.44-35.448s1.7456-30.034 1.4708-30.75c-0.63754-1.6614-6.0022-1.6996-7.3091-0.0521-0.54537 0.6875-1.2414 8.45-1.5467 17.25-0.67134 19.349-3.2644 42.892-5.1767 47-0.76813 1.65-2.3636 9.3-3.5455 17-1.8203 11.859-9.9167 55.109-11.652 62.243-0.41401 1.7021 0.0226 2.4703 1.8111 3.1866 3.5028 1.4029 15.202 1.2801 17.099-0.1794zm10.778-164.56c2.1522-1.7428 4.1451-9.1909 3.2099-11.997-0.25013-0.75037-2.7188-1.1886-6.6962-1.1886-5.688 0-6.3586 0.21857-6.903 2.25-1.6741 6.2469-0.10987 11.118 3.8697 12.05 3.5821 0.83885 4.248 0.72503 6.5196-1.1145zm2.2217-62.51c-6.853-3.8059-7.5991-13.54-1.457-19.01 3.1002-2.7606 9.3724-3.2765 13.096-1.077 3.261 1.9263 6.1198 6.7671 6.1198 10.362 0 2.9793-2.553 7.6227-5.2168 9.4885-2.6582 1.8619-9.3859 1.9882-12.542 0.23547zm-18.096-32.692c-12.079-5.1062-17.128-19.511-10.69-30.496 1.4604-2.492 4.51-5.7583 6.777-7.2585 3.5964-2.38 5.1078-2.7276 11.859-2.7276 6.9834 0 8.1517 0.29219 11.996 3 6.3881 4.4993 9.1516 10.405 8.7143 18.622-0.62843 11.811-7.9794 19.125-19.692 19.592-3.6352 0.14503-7.6691-0.18429-8.9642-0.73182zm5.6548-23.182c1.7116-1.7116 1.4838-7.3734-0.37143-9.2286-5.3385-5.3385-13.843 2.9979-8.7736 8.5998 1.8787 2.0759 7.3235 2.4503 9.145 0.62874zm21.2-24.516c-7.2765-2.6114-8.0528-11.532-1.3157-15.12 3.2319-1.7213 4.8272-1.4453 8.239 1.4256 2.1128 1.7778 3.0767 3.4834 3.0767 5.4442 0 4.8456-5.9072 9.7195-10 8.2506zm-10.464-25.243c-2.2247-2.4582-1.3745-6.6396 1.538-7.5639 5.692-1.8066 10.122 3.4386 6.389 7.5639-2.2669 2.5049-5.6601 2.5049-7.9271 0z" fill="#a1a0a3"/>
|
||||
<path id="path2900" d="m338.27 878.47c-22.954-2.0368-41.116-7.5627-49.706-15.124-6.9638-6.1298-7.8792-8.5709-7.8069-20.82 0.0727-12.324 2.5744-25.536 8.1956-43.281 5.6269-17.764 6.4643-24.545 5.8052-47.016-0.51468-17.547-1.0964-22.308-6.7449-55.203-6.0236-35.08-6.6583-41.368-5.803-57.5 0.13122-2.475-0.36362-10.125-1.0996-17-2.1389-19.979-0.0579-46.858 5.5355-71.5 1.7497-7.7082 2.3228-12.496 1.9154-16-0.7706-6.6263 0.99031-12.985 9.3887-33.905 17.454-43.477 23.131-63.064 26.029-89.805 1.8802-17.35 1.4878-22.929-2.0931-29.761-3.7089-7.0756-4.5522-13.706-2.5613-20.139 1.1925-3.8531 1.2093-5.0026 0.10221-7-0.72853-1.3144-1.3406-4.9167-1.36-8.005-0.0463-7.3301 2.2221-10.322 9.4089-12.412 10.879-3.1626 45.23-3.43 57.656-0.44897 2.6818 0.64336 6.0062 2.0588 7.3876 3.1454 2.295 1.8052 2.5116 2.642 2.5116 9.703 0 4.3202-0.48852 8.2159-1.1079 8.8354-0.81058 0.81058-0.79141 2.067 0.0714 4.6814 2.2255 6.7433 1.5024 14.282-2.0391 21.26l-3.2185 6.3409 0.57553 14.255c0.71133 17.618 4.52 39.114 9.7016 54.755 3.3564 10.131 9.935 27.441 21.854 57.5 3.1227 7.8756 3.59 10.187 3.7404 18.5 0.0945 5.225 0.88692 12.201 1.7609 15.503 4.4445 16.791 6.0081 31.318 5.9733 55.497-0.0802 55.773 0.17156 52.139-6.3052 91-7.2042 43.226-8.8796 61.161-7.2085 77.171 1.253 12.004 1.8492 14.632 7.4499 32.829 8.2644 26.853 9.0155 48.399 1.9646 56.36-6.0191 6.796-22.905 13.527-40.212 16.03-13.679 1.9782-36.833 2.7012-49.762 1.5539h0.00003zm-4.2381-13.944c2.923-2.923 2.5886-5.8384-0.75-6.5387-1.5125-0.31723-4.6856-1.0131-7.0513-1.5464-2.3657-0.53328-4.7282-0.70575-5.25-0.38327-1.4761 0.91231-1.117 5.783 0.608 8.2458 2.1087 3.0107 9.5226 3.1432 12.443 0.22251zm-0.59524-34.139c2.6505-1.2077 4.3594-4.2452 6.9541-12.361 5.1556-16.126 6.5186-34.025 4.7594-62.5-3.0984-50.154-7.3237-101.57-8.4344-102.64-0.65115-0.62468-4.4464-1.4394-8.4339-1.8106l-7.25-0.67476v3.6253c0 1.9939 1.1172 14.959 2.4826 28.811 4.7967 48.661 6.7429 74.335 6.8365 90.185l0.0944 16-4.7482 16c-4.9563 16.701-5.2824 20.783-1.8957 23.732 3.2628 2.8412 5.9704 3.299 9.6352 1.6292h0.00003zm5.8731-270.28c1.5631-1.5631 3.1834-13.565 1.9772-14.646-0.41527-0.37227-4.8694-0.95121-9.898-1.2865-6.6678-0.44464-9.4073-0.2763-10.12 0.62181-1.3008 1.64-2.4385 12.911-1.4566 14.431 0.43882 0.67943 3.7967 1.3531 7.7469 1.5541 3.8348 0.1952 7.7277 0.44304 8.6509 0.55076 0.92322 0.10772 2.3179-0.44345 3.0992-1.2248zm1.9571-22.829c1.0903-0.84275 1.9412-4.0193 2.6118-9.75 2.1956-18.765 9.4898-135.65 8.5592-137.15-0.28815-0.46624-2.5138-0.8477-4.9458-0.8477-5.4156 0-5.1334-1.0206-5.9457 21.5-0.83727 23.214-6.2603 59.69-15.971 107.42-1.9491 9.5806-3.5438 17.583-3.5438 17.782 0 2.2031 16.572 3.1065 19.235 1.0485zm12.24-164.86c1.5097-1.451 1.9808-3.2521 2-7.6455l0.0251-5.7473-6.7573-0.29586c-6.4819-0.28379-6.7978-0.18942-7.75 2.3151-3.9467 10.381 5.0173 18.548 12.482 11.374h-0.00005zm4.025-61.606c-2.8607-0.68834-7.2304-5.0765-7.9634-7.997-0.8726-3.4767 1.1259-8.8791 4.1707-11.274 4.1695-3.2797 9.7886-2.7198 13.893 1.3844 2.4274 2.4274 3.4 4.301 3.4 6.5497 0 4.664-2.676 9.017-6.5343 10.629-3.5401 1.4792-3.6952 1.4949-6.9657 0.70798zm-23.593-35.614c-2.8514-1.5059-5.4343-3.9858-7.3164-7.0246-9.8098-15.839 5.1386-35.481 22.972-30.185 5.4265 1.6115 11.573 7.057 13.378 11.852 1.3624 3.6199 1.3615 11.754-0.002 15.37-1.4395 3.8181-6.735 9.2516-10.657 10.934-5.0698 2.1754-13.262 1.7532-18.375-0.94688h0.00021zm7.8702-20.229c4.7646-3.3373 1.6011-12.443-4.3229-12.443-2.9918 0-7.4546 4.0827-7.4546 6.8197 0 1.0508 0.93266 3.0963 2.0726 4.5454 2.385 3.032 6.2952 3.4664 9.7049 1.0782zm21.223-26.163c-5.5438-2.0014-6.8393-8.6886-2.3651-12.208 1.4492-1.1399 3.4135-2.0726 4.3651-2.0726 3.0669 0 7 3.9116 7 6.9618 0 4.7341-4.9683 8.7743-9 7.3188zm-9.757-24.438c-2.8638-2.8638-0.31073-7.2869 3.8498-6.6697 3.0362 0.45036 4.7249 3.303 3.3012 5.5768-1.3453 2.1485-5.4657 2.7783-7.151 1.093z" fill="#d72a2a"/>
|
||||
<path id="path2898" d="m338.25 878.46c-22.954-2.0368-41.116-7.5627-49.706-15.124-6.9638-6.1298-7.8792-8.5709-7.8069-20.82 0.0727-12.324 2.5744-25.536 8.1956-43.281 5.6269-17.764 6.4643-24.545 5.8052-47.016-0.51468-17.547-1.0964-22.308-6.7449-55.203-6.0236-35.08-6.6583-41.368-5.803-57.5 0.13122-2.475-0.36362-10.125-1.0996-17-2.1389-19.979-0.0579-46.858 5.5355-71.5 1.7497-7.7082 2.3228-12.496 1.9154-16-0.7706-6.6263 0.99031-12.985 9.3887-33.905 17.454-43.477 23.131-63.064 26.029-89.805 1.8802-17.35 1.4878-22.929-2.0931-29.761-3.7089-7.0756-4.5522-13.706-2.5613-20.139 1.1925-3.8531 1.2093-5.0026 0.10221-7-0.72853-1.3144-1.3406-4.9167-1.36-8.005-0.0463-7.3301 2.2221-10.322 9.4089-12.412 10.879-3.1626 45.23-3.43 57.656-0.44897 2.6818 0.64336 6.0062 2.0588 7.3876 3.1454 2.295 1.8052 2.5116 2.642 2.5116 9.703 0 4.3202-0.48852 8.2159-1.1079 8.8354-0.81058 0.81058-0.79141 2.067 0.0714 4.6814 2.2255 6.7433 1.5024 14.282-2.0391 21.26l-3.2185 6.3409 0.57553 14.255c0.71133 17.618 4.52 39.114 9.7016 54.755 3.3564 10.131 9.935 27.441 21.854 57.5 3.1227 7.8756 3.59 10.187 3.7404 18.5 0.0945 5.225 0.88692 12.201 1.7609 15.503 4.4445 16.791 6.0081 31.318 5.9733 55.497-0.0802 55.773 0.17156 52.139-6.3052 91-7.2042 43.226-8.8796 61.161-7.2085 77.171 1.253 12.004 1.8492 14.632 7.4499 32.829 8.2644 26.853 9.0155 48.399 1.9646 56.36-6.0191 6.796-22.905 13.527-40.212 16.03-13.679 1.9782-36.833 2.7012-49.762 1.5539h0.00003zm-4.2381-13.944c2.923-2.923 2.5886-5.8384-0.75-6.5387-1.5125-0.31723-4.6856-1.0131-7.0513-1.5464-2.3657-0.53328-4.7282-0.70575-5.25-0.38327-1.4761 0.91231-1.117 5.783 0.608 8.2458 2.1088 3.0107 9.5226 3.1432 12.443 0.22251zm-0.59524-34.139c2.6505-1.2077 4.3594-4.2452 6.9541-12.361 5.1762-16.191 6.5126-33.956 4.7391-63-0.63809-10.45-1.386-23.05-1.662-28-0.27598-4.95-1.1588-19.125-1.9618-31.5-0.80301-12.375-1.7438-27-2.0907-32.5-0.34689-5.5-1.0325-10.505-1.5236-11.122-1.2558-1.5784-16.945-2.8585-17.813-1.4534-0.36926 0.59748-0.0938 6.1464 0.61206 12.331 0.70589 6.1846 2.4332 22.495 3.8384 36.245s2.7598 26.8 3.0102 29c1.7048 14.978 2.7764 32.195 2.8322 45.5l0.065 15.5-4.7438 16c-4.9516 16.701-5.277 20.784-1.8913 23.732 3.2628 2.8412 5.9704 3.299 9.6352 1.6292h-0.00004zm-27.52-207.87c5.8111 0 10.175-0.44818 10.84-1.1133 0.7231-0.7231 2.6333-0.8497 5.45-0.36122 2.3852 0.41365 24.514 0.89274 49.176 1.0646 29.462 0.20537 45.274 0.6735 46.107 1.3651 0.9919 0.82321 1.4083-0.28761 1.9111-5.098 2.0748-19.851-0.65669-48.579-7.0138-73.765-2.0626-8.1719-2.3817-10.801-1.4852-12.236 1.8109-2.8998 1.396-5.3226-2.7696-16.17-2.1513-5.6021-7.5211-19.636-11.933-31.186s-8.7328-22.688-9.602-24.75l-1.5803-3.75h-17.518c-13.98 0-17.625-0.27895-18.048-1.3814-0.29155-0.75976 0.38962-15.441 1.5137-32.624 1.1241-17.184 1.8002-31.637 1.5024-32.119-0.29773-0.48175-2.5312-0.8759-4.9633-0.8759-5.406 0-5.1588-0.86441-5.8641 20.5-0.55365 16.77-3.0071 40.454-4.5778 44.19-0.69796 1.6603-1.9176 2.2651-5.0418 2.5l-4.1212 0.30988-7.7662 21c-4.2714 11.55-9.6887 25.725-12.038 31.5-2.3498 5.775-4.9277 12.681-5.7288 15.347-1.321 4.3956-1.3007 5.019 0.21799 6.6971 1.5711 1.736 1.5149 2.456-0.90891 11.653-4.6172 17.52-6.7951 32.734-7.3602 51.416-0.47763 15.791 0.43494 34.148 1.4733 29.636 0.34965-1.5191 1.6861-1.75 10.129-1.75zm47.6-250.1c1.5097-1.451 1.9808-3.2521 2-7.6455l0.0251-5.7473-6.7573-0.29586c-6.4819-0.28379-6.7978-0.18942-7.75 2.3151-3.9467 10.381 5.0173 18.548 12.482 11.374h-0.00005zm4.025-61.606c-2.8607-0.68834-7.2304-5.0765-7.9634-7.997-0.8726-3.4767 1.1259-8.8791 4.1707-11.274 4.1695-3.2797 9.7886-2.7198 13.893 1.3844 2.4274 2.4274 3.4 4.301 3.4 6.5497 0 4.664-2.676 9.017-6.5343 10.629-3.5401 1.4792-3.6952 1.4949-6.9657 0.70798zm-23.593-35.614c-2.8514-1.5059-5.4343-3.9858-7.3164-7.0246-9.8098-15.839 5.1386-35.481 22.972-30.185 5.4265 1.6115 11.573 7.057 13.378 11.852 1.3624 3.6199 1.3615 11.754-0.002 15.37-1.4395 3.8181-6.735 9.2516-10.657 10.934-5.0698 2.1754-13.262 1.7532-18.375-0.94688h0.00021zm7.8702-20.229c4.7646-3.3373 1.6011-12.443-4.3229-12.443-2.9918 0-7.4546 4.0827-7.4546 6.8197 0 1.0508 0.93266 3.0963 2.0726 4.5454 2.385 3.032 6.2952 3.4664 9.7049 1.0782zm21.223-26.163c-5.5438-2.0014-6.8393-8.6886-2.3651-12.208 1.4492-1.1399 3.4135-2.0726 4.3651-2.0726 3.0669 0 7 3.9116 7 6.9618 0 4.7341-4.9683 8.7743-9 7.3188zm-9.757-24.438c-2.8638-2.8638-0.31073-7.2869 3.8498-6.6697 3.0362 0.45036 4.7249 3.303 3.3012 5.5768-1.3453 2.1485-5.4657 2.7783-7.151 1.093z" fill="#616062"/>
|
||||
<path id="path2896" d="m338.25 877.46c-28.031-2.4872-46.971-9.538-53.95-20.084-2.4633-3.7223-2.6419-4.741-2.574-14.68 0.0856-12.518 2.5663-25.655 8.2067-43.461 5.6269-17.764 6.4643-24.545 5.8052-47.016-0.51468-17.547-1.0964-22.308-6.7449-55.203-6.0236-35.08-6.6583-41.368-5.803-57.5 0.13122-2.475-0.36362-10.125-1.0996-17-2.1389-19.979-0.0579-46.858 5.5355-71.5 1.7497-7.7082 2.3228-12.496 1.9154-16-0.78683-6.7658 0.8162-12.333 10.848-37.673 16.957-42.834 21.68-59.372 24.57-86.038 1.8802-17.35 1.4878-22.929-2.0931-29.761-3.7639-7.1805-4.553-13.7-2.4727-20.433 1.3259-4.2912 1.3342-5.1629 0.0668-6.9725-1.9604-2.7989-1.8984-12.536 0.098-15.386 2.2289-3.1822 10.356-5.1974 24.332-6.0334 23.316-1.3947 45.706 1.2828 48.097 5.7517 1.3436 2.5106 1.3179 13.627-0.0374 16.159-0.76143 1.4227-0.72466 3.0035 0.1301 5.5935 2.1472 6.5059 1.4258 13.98-1.9881 20.6-2.8144 5.457-3.0806 6.8058-3.0806 15.609 0 12.125 1.2931 22.689 5.029 41.083 3.064 15.087 8.3598 30.645 21.784 64 8.3476 20.741 9.6141 25.336 8.8956 32.274-0.35632 3.4408 0.10393 7.8072 1.3475 12.784 4.8745 19.508 6.2903 32.397 6.255 56.941-0.0802 55.773 0.17156 52.139-6.3052 91-7.2042 43.226-8.8796 61.161-7.2085 77.171 1.253 12.004 1.8492 14.632 7.4499 32.829 6.8295 22.19 8.7482 43.246 4.7024 51.604-4.5157 9.3281-19.9 16.556-42.147 19.801-13.457 1.963-36.663 2.6833-49.565 1.5384zm-3.6927-12.398c2.5659-2.5659 3.2212-5.9536 1.3727-7.096-0.595-0.36773-4.261-1.3266-8.1466-2.1308-5.8336-1.2074-7.2108-1.2319-7.9029-0.14041-1.4744 2.3254-0.93091 6.473 1.2039 9.1869 2.8847 3.6673 9.8921 3.7611 13.473 0.18031zm1.1981-35.914c2.8501-2.7485 5.5544-10.445 8.3248-23.693 2.9866-14.282 2.8054-30.298-0.98376-86.938-1.6742-25.025-3.3337-50-3.6878-55.5-0.35415-5.5-1.0457-10.505-1.5368-11.122-1.2375-1.5555-16.943-2.8605-17.797-1.4788-0.36063 0.58351 0.56571 12.207 2.0585 25.831 5.6392 51.464 7.2153 71.499 7.2977 92.77l0.0813 21-4.25 14.17c-4.9038 16.35-5.3521 21.965-2 25.056 4.0534 3.7372 8.5552 3.7031 12.494-0.0948l0.00001-0.00003zm-29.87-206.64c5.8111 0 10.175-0.44818 10.84-1.1133 0.7231-0.7231 2.6333-0.8497 5.45-0.36122 2.3852 0.41365 24.514 0.89274 49.176 1.0646 29.462 0.20537 45.274 0.6735 46.107 1.3651 0.9919 0.82321 1.4083-0.28761 1.9111-5.098 2.0748-19.851-0.65669-48.579-7.0138-73.765-2.0626-8.1719-2.3817-10.801-1.4852-12.236 1.8109-2.8998 1.396-5.3226-2.7696-16.17-2.1513-5.6021-7.5211-19.636-11.933-31.186s-8.7328-22.688-9.602-24.75l-1.5803-3.75h-34.974v-2.3888c0-1.3138 0.90615-16.197 2.0137-33.073 1.1075-16.877 1.756-31.102 1.441-31.611-0.31498-0.50964-3.0007-0.92662-5.9684-0.92662-5.3196 0-5.4026 0.0458-5.8889 3.25-0.27128 1.7875-0.72738 10.225-1.0136 18.75-0.45869 13.664-2.5554 35.427-4.1616 43.196-0.47873 2.3155-1.1224 2.7387-4.5622 3l-4.0049 0.3042-7.7662 21c-4.2714 11.55-9.6887 25.725-12.038 31.5-2.3498 5.775-4.9277 12.681-5.7288 15.347-1.321 4.3956-1.3007 5.019 0.21799 6.6971 1.5711 1.736 1.5149 2.456-0.90891 11.653-4.6172 17.52-6.7951 32.734-7.3602 51.416-0.47763 15.791 0.43494 34.148 1.4733 29.636 0.34965-1.5191 1.6861-1.75 10.129-1.75zm45.085-247.14c3.888-1.3554 6.0416-5.7133 6.0416-12.226 0-5.2639-0.63963-5.6391-9.6132-5.6391-7.4066 0-7.7614 0.39106-7.8386 8.64-0.0525 5.6079 1.9305 8.9099 5.8062 9.668 1.1801 0.23083 2.1909 0.48097 2.2464 0.55587 0.0554 0.0749 1.5663-0.37472 3.3576-0.99914zm5.0428-66.592c-4.7891-2.4268-6.5825-6.3892-5.1125-11.296 2.1864-7.2975 10.79-9.4522 16.188-4.0541 3.9287 3.9287 3.9945 8.8843 0.17308 13.025-3.5681 3.8666-6.8622 4.5473-11.249 2.3245zm-20.001-33.341c-3.1803-1.331-7.8041-5.6986-9.4556-8.9316-3.6194-7.0853-2.5719-15.621 2.6462-21.564 4.185-4.7664 8.2668-6.7056 14.284-6.786 6.316-0.0843 11.9 2.5993 15.932 7.6565 2.5709 3.2246 3.0865 4.8294 3.3734 10.5 0.39764 7.8596-1.3554 11.916-7.1913 16.639-3.1664 2.5628-4.6682 3.0343-10.395 3.264-3.6815 0.14764-7.8186-0.20238-9.1936-0.77784zm6.6856-20.106c4.9337-4.635 1.258-13.826-5.5293-13.826-4.7109 0-7.6108 3.0482-7.6108 8 0 3.2101 0.5568 4.6644 2.3381 6.1068 3.1369 2.5401 7.9318 2.4153 10.802-0.28107zm19.314-28.127c-2.0296-1.021-2.5-1.9975-2.5-5.1898 0-3.25 0.47706-4.199 2.75-5.4705 2.4706-1.382 3.0294-1.3828 5.5-0.007 7.0464 3.9234 1.457 14.293-5.75 10.667v-0.00015zm-8.6127-24.132c-1.0735-2.7976 0.40152-4.7239 3.357-4.3839 2.1882 0.2517 2.7557 0.8318 2.7557 2.817s-0.56748 2.5653-2.7557 2.817c-1.7971 0.20671-2.9649-0.22813-3.357-1.25z" fill="#9f2420"/>
|
||||
<path id="path2894" d="m338.25 877.46c-28.031-2.4872-46.971-9.538-53.95-20.084-2.4633-3.7223-2.6419-4.741-2.574-14.68 0.0856-12.518 2.5663-25.655 8.2067-43.461 5.6269-17.764 6.4643-24.545 5.8052-47.016-0.51468-17.547-1.0964-22.308-6.7449-55.203-6.0236-35.08-6.6583-41.368-5.803-57.5 0.13122-2.475-0.36362-10.125-1.0996-17-2.1389-19.979-0.0579-46.858 5.5355-71.5 1.7497-7.7082 2.3228-12.496 1.9154-16-0.78683-6.7658 0.8162-12.333 10.848-37.673 16.957-42.834 21.68-59.372 24.57-86.038 1.8802-17.35 1.4878-22.929-2.0931-29.761-3.7639-7.1805-4.553-13.7-2.4727-20.433 1.3259-4.2912 1.3342-5.1629 0.0668-6.9725-1.9604-2.7989-1.8984-12.536 0.098-15.386 2.2289-3.1822 10.356-5.1974 24.332-6.0334 23.316-1.3947 45.706 1.2828 48.097 5.7517 1.3436 2.5106 1.3179 13.627-0.0374 16.159-0.76143 1.4227-0.72466 3.0035 0.1301 5.5935 2.1472 6.5059 1.4258 13.98-1.9881 20.6-2.8144 5.457-3.0806 6.8058-3.0806 15.609 0 12.125 1.2931 22.689 5.029 41.083 3.064 15.087 8.3598 30.645 21.784 64 8.3476 20.741 9.6141 25.336 8.8956 32.274-0.35632 3.4408 0.10393 7.8072 1.3475 12.784 4.8745 19.508 6.2903 32.397 6.255 56.941-0.0802 55.773 0.17156 52.139-6.3052 91-7.2042 43.226-8.8796 61.161-7.2085 77.171 1.253 12.004 1.8492 14.632 7.4499 32.829 6.8295 22.19 8.7482 43.246 4.7024 51.604-4.5157 9.3281-19.9 16.556-42.147 19.801-13.457 1.963-36.663 2.6833-49.565 1.5384zm-3.6927-12.398c2.5659-2.5659 3.2212-5.9536 1.3727-7.096-0.595-0.36773-4.261-1.3266-8.1466-2.1308-5.8336-1.2074-7.2108-1.2319-7.9029-0.14041-1.4744 2.3254-0.93091 6.473 1.2039 9.1869 2.8847 3.6673 9.8921 3.7611 13.473 0.18031zm2.046-35.883c4.9643-5.709 10.189-29.093 11.097-49.662l0.59556-13.5 27.808 0.5c31.923 0.574 28.863 1.6328 28.904-10 0.0374-10.71 2.7276-30.409 8.5805-62.831 6.4857-35.927 7.3219-43.578 5.205-47.618-1.3109-2.5019-1.3021-3.5775 0.0771-9.4375 1.1878-5.0467 1.5608-12.537 1.5744-31.614 0.0193-27.129-1.3867-39.194-7.0986-60.916-2.0436-7.7715-2.3616-10.31-1.4706-11.736 1.7682-2.8313 1.3339-5.6766-2.266-14.848-3.5644-9.0804-21.088-54.659-22.779-59.25l-1.0133-2.75h-17.902c-16.884 0-17.902-0.10741-17.902-1.8888 0-1.0388 0.90615-15.697 2.0137-32.573 1.1075-16.877 1.756-31.102 1.441-31.611-0.31498-0.50964-3.0007-0.92662-5.9684-0.92662-5.3196 0-5.4026 0.0458-5.8889 3.25-0.27128 1.7875-0.72738 10.225-1.0136 18.75-0.45753 13.629-2.6365 36.382-4.0886 42.693-0.40559 1.7626-1.3319 2.253-4.7222 2.5-3.9798 0.28994-4.3165 0.56101-5.9723 4.8073-3.8862 9.966-19.15 50.1-22.437 58.993-3.3558 9.0803-3.4378 9.6119-1.8889 12.234 1.5081 2.553 1.4846 3.206-0.34234 9.5072-5.8539 20.191-8.4893 39.843-8.5513 63.766-0.0374 14.407 0.40023 21.44 1.8101 29.094 1.7637 9.5743 1.7707 10.229 0.1365 12.723-2.1199 3.2354-2.1848 2.6929 5.585 46.683 5.9493 33.683 8.889 55.969 8.885 67.357l-0.002 6.1432 10.002-0.31641 10.002-0.31642v10.023c0 8.2865-0.6237 12.414-3.5992 23.816-5.7564 22.06-5.6491 21.442-4.4366 25.53 2.0179 6.8039 10.981 8.7685 15.627 3.4253h-0.00018zm14.367-453.8c3.888-1.3554 6.0416-5.7133 6.0416-12.226 0-5.2639-0.63963-5.6391-9.6132-5.6391-7.4066 0-7.7614 0.39106-7.8386 8.64-0.0525 5.6079 1.9305 8.9099 5.8062 9.668 1.1801 0.23083 2.1909 0.48097 2.2464 0.55587 0.0554 0.0749 1.5663-0.37472 3.3576-0.99914zm5.0428-66.592c-4.7891-2.4268-6.5825-6.3892-5.1125-11.296 2.1864-7.2975 10.79-9.4522 16.188-4.0541 3.9287 3.9287 3.9945 8.8843 0.17308 13.025-3.5681 3.8666-6.8622 4.5473-11.249 2.3245zm-20.001-33.341c-3.1803-1.331-7.8041-5.6986-9.4556-8.9316-3.6194-7.0853-2.5719-15.621 2.6462-21.564 4.185-4.7664 8.2668-6.7056 14.284-6.786 6.316-0.0843 11.9 2.5993 15.932 7.6565 2.5709 3.2246 3.0865 4.8294 3.3734 10.5 0.39764 7.8596-1.3554 11.916-7.1913 16.639-3.1664 2.5628-4.6682 3.0343-10.395 3.264-3.6815 0.14764-7.8186-0.20238-9.1936-0.77784zm6.6856-20.106c4.9337-4.635 1.258-13.826-5.5293-13.826-4.7109 0-7.6108 3.0482-7.6108 8 0 3.2101 0.5568 4.6644 2.3381 6.1068 3.1369 2.5401 7.9318 2.4153 10.802-0.28107zm19.314-28.127c-2.0296-1.021-2.5-1.9975-2.5-5.1898 0-3.25 0.47706-4.199 2.75-5.4705 2.4706-1.382 3.0294-1.3828 5.5-0.007 7.0464 3.9234 1.457 14.293-5.75 10.667v-0.00015zm-8.6127-24.132c-1.0735-2.7976 0.40152-4.7239 3.357-4.3839 2.1882 0.2517 2.7557 0.8318 2.7557 2.817s-0.56748 2.5653-2.7557 2.817c-1.7971 0.20671-2.9649-0.22813-3.357-1.25z" fill="#6b1f18"/>
|
||||
<path id="path2892" d="m341.01 877.51c-30.211-2.3037-51.363-10.068-57.151-20.98-3.7667-7.1001-1.9953-30.472 3.715-49.016 11.589-37.633 11.72-49.283 1.2581-111.5-5.8665-34.887-6.3738-40.011-5.5933-56.5 0.11715-2.475-0.37312-10.35-1.0895-17.5-2.0539-20.5 0.43616-49.928 6.2527-73.897 1.8242-7.517 2.1667-10.572 1.4242-12.702-1.537-4.409 0.61183-12.502 8.7359-32.901 13.923-34.961 19.327-50.881 22.401-66 3.3677-16.561 5.0482-30.454 5.0451-41.711-0.002-6.7281-0.41256-8.568-3.0142-13.504-3.9504-7.4942-4.709-13.272-2.5922-19.744 1.531-4.6809 1.5318-5.2296 0.0101-7.552-1.2257-1.8706-1.5285-4.0584-1.1967-8.646 0.5346-7.3908 2.1716-9.098 10.576-11.03 7.7467-1.7805 46.622-1.7974 54.324-0.0236 8.2492 1.8997 9.8947 3.8557 9.8947 11.762 0 3.561-0.54694 7.3504-1.2154 8.4208-0.95391 1.5274-0.95391 2.6694 0 5.3074 0.66849 1.8487 1.2154 6.0784 1.2154 9.3994 0 4.8512-0.61641 7.1934-3.1357 11.914l-3.1357 5.8761 0.57239 15.015c1.1736 30.785 6.1157 49.129 27.485 102.01 7.4851 18.525 7.6804 19.225 7.8075 28 0.0799 5.5101 1.1631 13.802 2.7935 21.384 5.4134 25.174 7.2063 58.491 4.2036 78.116-0.78424 5.1255-0.9611 9.4191-0.44549 10.815 1.8424 4.9882 0.64144 17.498-4.7004 48.962-10.438 61.482-10.881 80.793-2.4407 106.39 7.8712 23.87 11.228 47.773 7.9367 56.518-2.7403 7.2808-13.425 14.503-27.038 18.275-15.888 4.4028-42.873 6.5631-62.902 5.0358v0.00005zm-6.3991-12.079c0.7739-0.64228 1.7728-2.5737 2.2198-4.292l0.81268-3.1242 13.433 0.35495c27.961 0.73883 53.4-5.3723 66.166-15.895 6.2067-5.1161 5.8732-11.429-1.859-35.185-5.9785-18.368-7.2814-24.911-8.0197-40.275-0.85079-17.705 0.4991-30.166 8.3239-76.841 6.5818-39.26 6.6535-39.889 4.9176-43.112-1.6497-3.0632-1.664-3.9313-0.22588-13.659 2.4537-16.597 2.8353-26.381 1.647-42.231-1.239-16.527-3.799-32.207-7.674-47.002-2.1658-8.2692-2.3794-10.217-1.3341-12.17 1.7676-3.3027 0.67548-7.848-5.5184-22.968-2.9326-7.159-8.0272-20.216-11.321-29.016-3.2941-8.8-6.9136-18.138-8.0433-20.75l-2.054-4.75h-17.477c-9.6121 0-17.73-0.40953-18.039-0.91008-0.30936-0.50054 0.3797-14.989 1.5312-32.197 2.006-29.978 2.0191-31.342 0.31232-32.59-2.3611-1.7265-7.8981-1.6608-9.6737 0.11487-1.0621 1.0621-1.5691 5.763-2.0223 18.75-0.52758 15.118-2.6791 37.882-4.2086 44.528-0.41841 1.8181-1.3136 2.2478-5.2093 2.5l-4.704 0.30457-5.8285 16c-3.2057 8.8-9.1424 24.325-13.193 34.5-8.5805 21.556-9.3619 24.453-7.2338 26.817 1.3598 1.5107 1.2264 2.808-1.3044 12.683-7.9166 30.891-10.104 66.413-5.5958 90.878 1.3034 7.0734 1.2903 8.1247-0.12814 10.29-2.1352 3.2587-1.6156 8.017 5.1245 46.927 6.8727 39.675 7.8651 48.107 7.8741 66.906 0.0103 21.484-2.3261 32.983-10.87 53.497-1.9622 4.7114-2.8403 8.8534-3.1947 15.069-0.48217 8.4567-0.44717 8.619 2.6095 12.1 2.8291 3.2222 12.193 8.5872 21.252 12.177 3.2443 1.2855 3.5492 1.7284 3.1345 4.5542-0.70026 4.7712 1.4687 8.9627 5.1443 9.9414 3.3097 0.88124 7.8863 0.0209 10.228-1.9228zm16.786-489.87c1.3845-0.52637 3.2089-2.2947 4.0544-3.9296 2.0495-3.9633 2.3387-12.007 0.47413-13.187-1.9601-1.2407-14.654-1.1592-15.431 0.0991-0.34866 0.56414-0.87249 3.3766-1.1641 6.25-0.43871 4.3232-0.16363 5.6871 1.5948 7.9074 1.1687 1.4757 3.1285 2.8769 4.3551 3.1138 1.2265 0.23691 2.5383 0.49204 2.915 0.56694s1.8176-0.29449 3.2021-0.82086zm2.912-67.546c-1.1803-0.82671-2.6596-3.0596-3.2875-4.9619-3.5999-10.908 12.21-17.742 17.478-7.555 2.1835 4.2224 1.866 7.4439-1.0785 10.943-2.1321 2.5339-3.3279 3.0767-6.7775 3.0767-2.3037 0-5.1543-0.6764-6.3346-1.5031zm-18.923-33.084c-8.2707-4.08-12.334-13.284-9.9392-22.516 0.72793-2.8062 2.3287-6.0688 3.5572-7.25l2.2337-2.1477-1.1137 2.1843c-4.3632 8.5572 6.3626 16.76 12.865 9.8386 5.1-5.4288 0.72811-14.174-6.6549-13.312-3.0305 0.35379-3.2045 0.24191-1.8032-1.1594 1.1359-1.1359 3.6363-1.551 9.3431-1.551 6.9988 0 8.167 0.28589 11.474 2.8079 9.0111 6.8731 10.318 20.474 2.7923 29.048-4.6348 5.2805-16.122 7.3285-22.754 4.0568zm26.904-47.433c-4.615-1.857-3.8147-10.306 1.0929-11.537 7.0704-1.7746 10.688 8.3862 4.0609 11.406-1.3903 0.63347-2.6192 1.1232-2.7308 1.0884-0.11162-0.0349-1.202-0.46538-2.423-0.95671zm-8.7934-25.022c-0.86242-2.7173 0.58816-4.2251 3.6482-3.7922 1.7671 0.25003 2.3653 0.96695 2.3653 2.8347 0 3.4399-4.9742 4.2319-6.0135 0.95748z" fill="#110f0f"/>
|
||||
</g>
|
||||
<metadata>
|
||||
<rdf:RDF>
|
||||
<cc:Work>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
|
||||
<dc:publisher>
|
||||
<cc:Agent rdf:about="http://openclipart.org/">
|
||||
<dc:title>Openclipart</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:title>Bottle with Soda</dc:title>
|
||||
<dc:date>2010-04-13T16:33:29</dc:date>
|
||||
<dc:description>Red Bottle with Soda</dc:description>
|
||||
<dc:source>http://openclipart.org/detail/46639/bottle-with-soda-by-keksschafuser</dc:source>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>keksschafUSER</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>bottle</rdf:li>
|
||||
<rdf:li>clip art</rdf:li>
|
||||
<rdf:li>clipart</rdf:li>
|
||||
<rdf:li>drink</rdf:li>
|
||||
<rdf:li>food</rdf:li>
|
||||
<rdf:li>red</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 30 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#6ea517" d="M78.7 52.85L60.22 36.83l6.86-5.1s19.91-11.15 38.9 2.29c18.66 13.2 16.9 52.45 2.46 70.4s-24.47 19.01-29.92 18.83c-5.46-.18-6.34-2.82-11.62-2.29s-7.04 3.52-16.72 2.82c-8.78-.64-16.02-4.05-19.54-7.92c-3.33-3.68 48.06-63.01 48.06-63.01"/><path fill="#87c244" d="M100.21 34.4s-7.93 3.42-15.85 4.04c-7.93.62-22.07-.47-22.07-.47s-1.55-8.24-2.02-8.24s-21.28-7.24-36.52 4.2C7.69 45.98 6.11 69.38 8.67 80.55c5.89 25.67 24.78 37.76 24.78 37.76s16.87 1.87 38.01-7.45s39.44-25.64 39.01-47.55C110 39.99 100.21 34.4 100.21 34.4"/><path fill="#e5dd9f" d="M37.7 38.9c-2.71-3.13-10.15-2.43-15.93 5.84c-6.02 8.6-6.29 24.36-1.33 24.79c4.07.35 5.11-6.54 7.61-11.42c4.7-9.16 15.85-12.04 9.65-19.21"/><path fill="#59702c" d="M44.25 35.36c-1.19 2.48 2.73 8.58 17.37 9.03c15.4.47 20.45-8.11 18.69-10.11s-7.52 1.29-18.45 1.18s-15.58-4.31-17.61-.1"/><path fill="#513532" d="M51.86 18.64c-1.18-.24-5.99-1.06-6.47-2.94c-.22-.89.94-3.76 4-5.88s6.11-2.7 6.82-1.06c.71 1.65.47 2.7.47 3.06c0 .35 2.42 3.18 4.11 6.82c2.35 5.05 3.64 9.99 3.41 15.05c-.17 3.66-.24 8.82-2.35 8.46c-2.2-.37-1.74-5.53-2.82-9.17c-2.58-8.69-6.46-14.19-7.17-14.34"/><path fill="#2f7c31" d="M82.59 24.36c.24-.35 24.57-15.63 24.68-16.57S94.7 4.61 86.71 7.55s-16.27 7.67-20.22 15.87c-3.17 6.58-3.17 11.05-2.35 12.11c.39.5 18.45-11.17 18.45-11.17"/><path fill="#4c8c19" d="M79.89 23.42c10.74-6.86 27.39-15.63 27.39-15.63s.5 1.31-2.7 6.82c-4.23 7.29-14.11 16.69-24.1 19.63c-10.84 3.19-16.34 1.29-16.34 1.29s7.29-6.7 15.75-12.11"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" id="svg11300" viewBox="0 0 48 48">
|
||||
<defs id="defs3">
|
||||
<linearGradient id="linearGradient3041">
|
||||
<stop id="stop3043" offset="0"/>
|
||||
<stop id="stop3045" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient3047" xlink:href="#linearGradient3041" gradientUnits="userSpaceOnUse" cy="39.125" cx="24.812" gradientTransform="matrix(1 0 0 .37456 7.1943e-15 24.47)" r="17.688"/>
|
||||
<linearGradient id="linearGradient3055" x1="19.648" gradientUnits="userSpaceOnUse" y1="42.254" gradientTransform="matrix(.87827 0 0 .87827 2.537 4.9677)" x2="20.631" y2="6.7758">
|
||||
<stop id="stop3051" stop-color="#b6b6b6" offset="0"/>
|
||||
<stop id="stop2262" stop-color="#f2f2f2" offset=".5"/>
|
||||
<stop id="stop2264" stop-color="#fafafa" offset=".67613"/>
|
||||
<stop id="stop2268" stop-color="#d8d8d8" offset=".84052"/>
|
||||
<stop id="stop2266" stop-color="#f2f2f2" offset=".875"/>
|
||||
<stop id="stop3053" stop-color="#dbdbdb" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient3067" x1="50.153" gradientUnits="userSpaceOnUse" y1="-3.6324" gradientTransform="matrix(.87827 -1.3759e-15 1.3759e-15 .87827 5.3283 1.6502)" x2="25.291" y2="-4.3003">
|
||||
<stop id="stop3063" stop-color="#fff" offset="0"/>
|
||||
<stop id="stop3065" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient3083" x1="38.228" gradientUnits="userSpaceOnUse" y1="13.603" gradientTransform="matrix(.87827 0 0 .87827 2.8475 5.5887)" x2="37.535" y2="6.6286">
|
||||
<stop id="stop3079" stop-color="#98a0a9" offset="0"/>
|
||||
<stop id="stop3081" stop-color="#c3d0dd" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient3093" x1="9.7503" gradientUnits="userSpaceOnUse" y1="32.284" gradientTransform="matrix(.87827 0 0 .87827 2.537 4.9677)" x2="16.915" y2="39.443">
|
||||
<stop id="stop3089" stop-color="#3465a4" offset="0"/>
|
||||
<stop id="stop3095" stop-color="#9fbce1" offset="0"/>
|
||||
<stop id="stop2242" stop-color="#6b95ca" offset="0"/>
|
||||
<stop id="stop2244" stop-color="#3d6aa5" offset=".75"/>
|
||||
<stop id="stop3091" stop-color="#386eb4" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient2263" x1="12.005" gradientUnits="userSpaceOnUse" y1="35.688" gradientTransform="matrix(1.0073 -.026365 .026365 1.0073 1.5934 .079191)" x2="10.651" y2="33.195">
|
||||
<stop id="stop2259" stop-color="#fff" offset="0"/>
|
||||
<stop id="stop2261" stop-color="#fff" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient2271" x1="14.018" gradientUnits="userSpaceOnUse" y1="36.943" gradientTransform="matrix(.87810 -.017324 .017324 .87810 2.1637 4.0679)" x2="15.416" y2="38.268">
|
||||
<stop id="stop2267" offset="0"/>
|
||||
<stop id="stop2269" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient2256" y2="9.6569" gradientUnits="userSpaceOnUse" y1="19.822" x2="40.859" x1="31.177">
|
||||
<stop id="stop2252" stop-color="#fff" offset="0"/>
|
||||
<stop id="stop2254" stop-color="#fff" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient2260" xlink:href="#linearGradient3041" gradientUnits="userSpaceOnUse" cy="39.125" cx="24.812" gradientTransform="matrix(1 0 0 .37456 7.2728e-15 24.47)" r="17.688"/>
|
||||
</defs>
|
||||
<g id="layer1">
|
||||
<path id="path2258" opacity=".19886" style="color:#000000" d="m42.5 39.125a17.688 6.625 0 1 1 -35.375 0 17.688 6.625 0 1 1 35.375 0z" transform="matrix(.75112 0 0 .57870 17.041 19.363)" fill="url(#radialGradient2260)"/>
|
||||
<path id="path3039" opacity=".3125" style="color:#000000" d="m42.5 39.125a17.688 6.625 0 1 1 -35.375 0 17.688 6.625 0 1 1 35.375 0z" transform="matrix(.83607 0 0 .68544 -7.9596 15.718)" fill="url(#radialGradient3047)"/>
|
||||
<path id="path2140" style="color:#000000" fill="url(#linearGradient3055)" stroke="#888a85" d="m17.907 21.216l18.992 19.431c0.769 0.879 3.204 1.557 4.831 0 1.571-1.503 1.207-3.622-0.33-5.159l-18.224-19.542c2.25-6.2499-2.304-11.5-8.179-10.374l-1.262 1.1522 3.952 3.7328 0.22 3.293-2.951 2.694-3.527-0.388-3.6224-3.403-1.2701 1.254c-0.5908 5.642 5.3075 10.684 11.37 7.309z"/>
|
||||
<path id="path3057" opacity=".42614" style="color:#000000" d="m18.117 19.94l19.203 20.028c0.595 0.68 2.48 1.205 3.74 0 1.216-1.164 0.935-2.805-0.255-3.995l-18.492-19.621c1.5-6.4998-1.859-10.004-6.859-9.8795l-0.27 0.2734 3.603 3.2363 0.13 4.1818-3.614 3.298-4.242-0.458-3.1764-2.991-0.3527 0.43c-0.3125 5.969 6.4921 8.685 10.585 5.497z" stroke="#fff" fill="none"/>
|
||||
<rect id="rect3059" opacity=".17045" style="color:#000000" rx=".88388" ry=".88388" transform="rotate(45.738)" width="23.268" stroke="url(#linearGradient3067)" y="-2.6184" x="28.185" height="2.0555" fill="none"/>
|
||||
<path id="path2144" style="color:#000000" fill="url(#linearGradient3083)" stroke="#878f9d" d="m22.499 30.125c0.833-0.714 13.284-13.448 13.284-13.448l3.074-0.22 4.83-6.6965-4.024-3.5852-6.258 5.3797v3.074l-12.735 13.229c-0.604 0.603 1.06 2.926 1.829 2.267z"/>
|
||||
<path id="path3085" opacity=".53977" style="color:#000000" d="m22.402 29.085c0.647-0.554 13.024-13.229 13.024-13.229l2.929-0.248 4.214-5.6624-2.89-2.549-5.476 4.7174 0.155 2.851-12.676 13.292c-0.469 0.469 0.124 1.34 0.72 0.828z" stroke="url(#linearGradient2256)" fill="none"/>
|
||||
<path id="path2142" style="color:#000000" fill="url(#linearGradient3093)" stroke="#204a87" d="m8.4653 43.612c1.3166 1.465 4.9737 2.128 6.5957-0.71 0.707-1.238 2.094-4.703 8.281-10.272 1.039-0.934 2.14-3.071 1.207-4.223l-2.416-2.416c-0.988-1.098-3.734-0.585-4.861 0.951-3.359 4.596-8.8459 8.255-10.083 8.697-2.3682 0.846-2.1017 4.336-0.5351 5.996l1.8114 1.977z"/>
|
||||
<path id="path2146" style="color:#000000" d="m43.25 37.5a1.375 1.375 0 1 1 -2.75 0 1.375 1.375 0 1 1 2.75 0z" transform="matrix(.87827 0 0 .87827 2.4272 5.0775)" stroke="#a1a1a1" stroke-width="1.1386" fill="#fff"/>
|
||||
<path id="path3101" opacity=".60227" style="color:#000000" d="m20.771 28.201a1.7678 1.7678 0 1 1 -3.535 0 1.7678 1.7678 0 1 1 3.535 0z" transform="matrix(.57088 0 0 .57088 9.1548 11.251)" fill="#fff"/>
|
||||
<path id="path3103" stroke-linejoin="round" style="color:#000000" d="m18.679 29.625s-7.17 7.299-10.529 8.537" stroke="url(#linearGradient2263)" stroke-linecap="round" stroke-width="2.2945" fill="none"/>
|
||||
<path id="path2270" opacity=".19886" style="color:#000000" d="m8.806 42.487c1.441 1.745 4.6 2.161 5.591-0.371 0.681-1.739 3.334-5.666 8.198-10.043 0.817-0.735 1.682-2.415 0.948-3.321l-1.898-1.898c-0.777-0.864-2.936-0.461-3.822 0.747-2.64 3.613-8.4832 8.34-9.8956 8.806-2.1868 0.721-1.777 3.221-0.5454 4.526l1.424 1.554z" stroke="#fff" fill="none"/>
|
||||
<path id="path2247" opacity=".27841" stroke-linejoin="round" style="color:#000000" d="m20.825 31.261s-7.323 6.617-8.914 10.86" stroke="url(#linearGradient2271)" stroke-linecap="round" stroke-width="2.2945" fill="none"/>
|
||||
</g>
|
||||
<metadata>
|
||||
<rdf:RDF>
|
||||
<cc:Work>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
|
||||
<dc:publisher>
|
||||
<cc:Agent rdf:about="http://openclipart.org/">
|
||||
<dc:title>Openclipart</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:title>tango preferences system</dc:title>
|
||||
<dc:date>2010-03-29T09:07:18</dc:date>
|
||||
<dc:description>"System preferences" icon from <a href="http://tango.freedesktop.org/Tango_Desktop_Project"> Tango Project </a> 
\n<br><br>
\nSince version 0.8.90 Tango Project icons are Public Domain: <a href="http://tango.freedesktop.org/Frequently_Asked_Questions#Terms_of_Use.3F"> Tango Project FAQ </a></dc:description>
|
||||
<dc:source>http://openclipart.org/detail/35431/tango-preferences-system-by-warszawianka</dc:source>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>warszawianka</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>clip art</rdf:li>
|
||||
<rdf:li>clipart</rdf:li>
|
||||
<rdf:li>externalsource</rdf:li>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>preferences</rdf:li>
|
||||
<rdf:li>screwdriver</rdf:li>
|
||||
<rdf:li>settings</rdf:li>
|
||||
<rdf:li>spanner</rdf:li>
|
||||
<rdf:li>tango</rdf:li>
|
||||
<rdf:li>tool</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#2f7c31" d="M21.74 24.77L8.57 41.04s-3.95 4.95-2.93 9.84c1.15 5.46 4.05 5.79 4.05 5.79S9.5 60.91 12 64.52s3.69 5.32 12.77 8.07s25.46 5.84 25.46 5.84l4.22 16.38s1.13 4.05 6.16 6.16s8.96 1.56 8.96 1.56s2.08 5.75 8.99 7.35c5.98 1.39 10.75-1.62 10.75-1.62s5.03 3.08 11.51 1.62c7.52-1.69 9.24-6.32 9.24-6.32s6.16-.65 10.21-6.49s1.13-12.48 1.13-12.48s3.59-5.32 2.59-11.35c-.9-5.46-3.07-7.32-3.07-7.32l-12.98-9.06s5.51-2.27 7.46-12s-2.92-14.59-2.92-14.59s1.91-5.49-1.3-10.38c-3.08-4.7-7.46-2.43-9.57-4.54c-2.6-2.6-17.35-4.22-17.35-4.22L67.25 25.26z"/><path fill="#709921" d="M28 8.45s5.09-5.58 11.92-5.09s8.07 4.61 8.07 4.61s4.19-.69 6.82.48c5.38 2.4 4.81 5.19 6.44 5s1.63-7.11 9.23-9.52s11.73 1.25 13.36 1.15s3.65-2.03 9.42-.19c5.19 1.66 6.3 5.1 6.54 6.15c.28 1.27.28 2.69 1.82 4.32s-.11 7.54-2.32 9.94s-6.52 2.65-6.52 2.65s1.01 8.3-5.89 12.86c-4.85 3.2-10.07 1.94-10.07 1.94s-5.57 4.82-11.82 2.8s-6.92-4.61-3.46-7.5c3.46-2.88 5-8.46.87-9.52s-8.36.96-9.8 5.48s-1.54 8.46-6.25 11.82s-8.17 2.31-12.88 3.56s-7.88 5.29-11.82 5.38c-3.94.1-7.02-2.79-9.04-2.5s-6.15 1.25-6.15 1.25s-1.83-3.46-.67-7.69s2.78-4.8 2.78-4.8s-9.37-9.06-.76-22.88C15.6 5.66 28 8.45 28 8.45m51.71 64.78s3.65-1.54 6.06-5.67c2.4-4.13 3.65-7.21 7.5-9.23c3.84-2.02 8.17-1.83 13.75-1.54s6.99 1.99 8.36 3.36c2.69 2.69 5.58 5.77 5.58 5.77s-4.71.38-7.21 4.23s-4.04 9.13-4.04 9.13s-3.36 1.25-6.92 3.17s-11.44 7.02-16.63 5.67s-7.88-7.31-7.88-7.98c-.01-.66 1.43-6.91 1.43-6.91"/><path fill="#9fb525" d="M35.34 81.83c-.24.72-25.28 28.89-25.28 28.89s3.01 4.57 5.66 6.74s6.95 5.41 9.68 6.15c2.96.8 5.24 1.68 7.89-1.81s4.69-8.06 11.92-15.77s12.4-12.4 18.17-15.17s14.08-4.69 16.25-4.93s4.93-.48 4.93-.48s1.63-3.29 1.08-5.9c-.61-2.91-4.69-4.21-4.69-4.21l-20.7 3.01l2.45-.82s-.97-1.43.32-3.28c1.12-1.61 6.26-7.83 7.95-10.12s5.12-6.73 5.05-7.45c-.12-1.32-3.25-3.01-4.21-3.61s-3.01-1.44-3.01-1.44L46.65 74.6l-1.2-1.08s-1.44-.07-2.29-2.29c-.6-1.56-.84-6.26-1.32-10.35c-.3-2.56-.48-5.54-.48-5.54s-3.49-1.56-5.78-1.32s-4.93 2.77-4.93 2.77z"/><path fill="#b7d118" d="M26.91 57.51c-.36.96.24 5.3.24 11.07s-.33 11.12-3.13 14.56c-3.61 4.45-9.75 10.71-14.44 14.92c-2.03 1.82-3.37 2.53-3.49 3.01s.87 4.86 1.81 6.74c1.7 3.4 4.82 6.49 4.82 6.49s12.51-14.07 17.81-19.49s8.18-9.03 9.39-7.82c1.2 1.2-2.79 5.89-5.66 9.15c-4.33 4.93-16.47 22.92-16.47 22.92s.67.7 2.03 1.63c1.2.83 2.14 1.26 2.14 1.26s6.4-10.41 15.31-19.8s13.96-13.72 20.1-15.77s28.28-6.86 28.28-6.86s-.96-3.37-1.56-4.81s-1.93-3.13-1.93-3.13s-11.07 2.89-13 3.49s-12.88 1.93-13.36.72c-.48-1.2 7.34-10.95 9.63-13.96s6.43-8.79 6.43-8.79s-2.45-1.68-5.46-2.4s-4.09-.12-4.09-.12s-7.34 9.87-9.51 12.76s-6.38 9.15-10.23 10.23s-4.81.12-5.3-2.77c-.48-2.89-1.69-16.73-1.69-16.73s-3.85.24-5.3.96s-3.01 1.58-3.37 2.54"/><path fill="#2f7c31" d="M102.96 75.13s2.24-4.05 4.17-2.36c1.94 1.69-1.75 7.02-2.54 7.2s-6.95-1.87-6.05-4.17c.92-2.3 4.42-.67 4.42-.67M44.78 34.49c2.3-.08 7.13-4.8 5.09-7.25c-1.65-1.98-5.09 1.86-5.09 1.86s-3.64-3.75-5.08-1.94c-2.05 2.62 3.39 7.39 5.08 7.33m-12.82 4.72s2-4.11 4.29-2.36c2.3 1.75-1.69 7.68-2.9 8.04s-7.71-3.36-5.99-5.99c1.4-2.11 4.6.31 4.6.31m-17.6-3.75c.72.12 5.87-2.78 4.41-5.32s-4.41.67-4.41.67s-2.79-2.47-3.99-.97c-1.93 2.42 2.91 5.44 3.99 5.62m.91 8.35s1.94-3.99 3.99-2.48c2.06 1.51-1.51 7.56-2.06 7.8c-.54.24-7.81-1.81-6.23-4.72c1.1-1.99 4.3-.6 4.3-.6m63.94-4.5c1.59-.69 4.25-6.07 1.76-7.16c-2.01-.88-3.06 2.4-3.06 2.4s-2.23-1.96-3.76-.35c-2.35 2.47 4.1 5.53 5.06 5.11m11.3-20.93s.13-2.34 1.93-2.22c1.98.14 1.72 5.02.21 5.94s-6.49-1.72-5.36-3.56c.72-1.17 3.35-.37 3.22-.16"/></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,232 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1205.354 1709.334" enable-background="new 0 0 1205.354 1709.334" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#ACACAC" stroke="#ACACAC" stroke-width="0.8341" d="M584.145,75.167c24.531-6.448,48.712-14.163,73.352-20.152
|
||||
c2.944-0.676,6.256-0.484,8.8,1.276c2.878,2.127,3.987,5.689,5.205,8.892c1.727,5.113,4.788,9.601,7.449,14.247
|
||||
c3.295,5.68,7.874,10.435,12.32,15.214c5.755,6.189,11.627,12.328,18.309,17.541c9.734,7.599,21.345,12.236,32.914,16.248
|
||||
c16.123,5.455,32.388,10.526,48.979,14.388c20.953,4.88,41.672,10.685,62.483,16.132c12.57,3.62,25.841,6.948,36.117,15.506
|
||||
c4.246,3.595,8.433,7.974,9.684,13.571c0.709,2.778-1.31,5.13-2.652,7.332c-9.542,14.363-19.335,28.568-29.319,42.615
|
||||
c-0.217-0.5-0.642-1.501-0.859-2.002c8.625-13.412,17.975-26.358,26.675-39.72c-5.68,1.785-11.402,3.428-17.033,5.355
|
||||
c-4.154,1.518-8.483,2.502-12.862,2.994c-1.001-0.375-1.993-0.759-2.969-1.151c4.896-1.376,9.976-2.06,14.772-3.82
|
||||
c4.779-1.76,9.742-2.969,14.572-4.596c2.694-0.993,5.589-2.052,7.474-4.354c0.634-3.912-1.977-7.365-4.329-10.21
|
||||
c-7.457-8.5-18.25-12.92-28.802-16.19c-16.057-4.888-32.414-8.666-48.562-13.196c-16.991-4.521-34.282-7.932-51.081-13.179
|
||||
c-14.464-4.588-29.169-8.775-42.848-15.448c-11.527-5.597-21.136-14.347-29.711-23.714c-5.497-5.939-11.369-11.678-15.464-18.726
|
||||
c-2.677-4.671-5.689-9.225-7.39-14.372c-1.251-3.311-2.536-7.49-6.373-8.541c-4.429-1.018-8.75,1.143-12.995,2.102
|
||||
c-17.108,4.204-33.915,9.492-50.881,14.172c-31.955,9.15-64.86,14.564-96.64,24.364c-18.125,5.564-35.341,13.629-52.44,21.745
|
||||
c-14.088,6.648-27.901,14.03-42.631,19.185c-10.018,3.553-20.811,4.396-30.637,8.55c-11.794,4.913-22.112,12.62-32.313,20.185
|
||||
c-24.348,18.517-47.486,38.561-70.315,58.905c-13.304,11.994-27.1,23.48-39.37,36.559c-11.719,12.453-20.928,28.059-23.138,45.225
|
||||
c-1.343,14.614,4.513,28.927,12.737,40.73c13.196,19.251,29.553,36.042,45.326,53.158c18.234,20.01,38.386,38.578,61.691,52.541
|
||||
c5.989,3.62,12.203,6.856,18.359,10.184c-0.609,0.475-1.209,0.968-1.802,1.46c-3.795-1.969-7.549-4.02-11.294-6.081
|
||||
c-23.472-13.029-44.066-30.67-62.441-50.13c-15.031-16.14-30.32-32.097-44.008-49.413c-7.382-9.717-14.714-19.877-18.284-31.705
|
||||
c-3.295-9.943-3.528-20.853-0.467-30.887c3.712-12.003,10.001-23.188,18.25-32.655c11.294-12.895,24.398-23.997,37.16-35.375
|
||||
c24.256-21.704,48.77-43.19,74.636-62.975c10.627-7.941,21.337-16.082,33.581-21.403c9.943-4.437,20.961-5.263,31.204-8.783
|
||||
c11.235-3.812,21.845-9.217,32.547-14.28c16.64-8.032,33.273-16.165,50.597-22.629C520.177,88.729,552.558,83.299,584.145,75.167z"
|
||||
/>
|
||||
<path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8341" d="M649.998,59.21c4.246-0.959,8.566-3.12,12.995-2.102
|
||||
c3.837,1.051,5.121,5.23,6.373,8.541c1.702,5.146,4.713,9.701,7.39,14.372c4.096,7.048,9.968,12.787,15.464,18.726
|
||||
c8.575,9.367,18.184,18.117,29.711,23.714c13.679,6.673,28.385,10.86,42.848,15.448c16.799,5.247,34.09,8.658,51.081,13.179
|
||||
c16.148,4.529,32.505,8.308,48.562,13.196c10.552,3.27,21.345,7.69,28.802,16.19c2.352,2.844,4.963,6.298,4.329,10.21
|
||||
c-1.885,2.302-4.779,3.361-7.474,4.354c-4.83,1.627-9.792,2.836-14.572,4.596c-4.796,1.76-9.876,2.444-14.772,3.82
|
||||
c-4.154,0.676-7.207,3.662-9.392,7.065c-38.286,49.279-76.738,98.425-115.065,147.662c-20.869,26.667-41.464,53.542-62.792,79.841
|
||||
c-12.161,15.248-24.731,30.353-34.224,47.469c-4.946,8.741-6.998,18.659-10.451,28.001c-5.63,15.339-10.126,31.062-15.097,46.618
|
||||
c-5.163,0.5-10.326-0.259-15.481-0.5c-9.008-0.525-17.958-1.718-26.883-3.053c2.969-7.182,6.573-14.272,7.465-22.096
|
||||
c0.576-5.138,1.134-10.376,3.286-15.139c2.778-6.748,7.699-12.22,12.195-17.85c4.971-6.206,10.251-12.278,13.938-19.376
|
||||
c2.594-4.996,3.186-10.693,3.854-16.198c0.792-8.575,0.759-17.258-0.592-25.774c1.627-4.179,0.459-8.725,0.884-13.07
|
||||
c1.034-19.376,5.447-38.352,8.516-57.453c8.141-42.598,16.248-85.204,24.523-127.777c-0.609-0.2-1.209-0.409-1.802-0.609
|
||||
c-2.628,10.835-4.229,21.912-6.473,32.847c-7.624,40.212-15.765,80.333-22.696,120.671c-1.593,9.559-3.145,19.134-3.887,28.802
|
||||
c-0.534,4.079-0.359,8.191-0.45,12.295c-1.96-0.158-4.337-1.285-5.822,0.567c-4.154,4.095-6.923,9.325-9.968,14.247
|
||||
c-14.655,25.015-27.401,51.073-40.763,76.78c-3.637,7.24-7.39,14.422-11.01,21.67c-5.438-2.361-11.127-4.087-16.607-6.331
|
||||
c-11.786-4.646-23.413-9.717-34.891-15.072c1.935-7.791,5.146-15.206,7.265-22.955c0.067-0.242,0.2-0.734,0.267-0.976
|
||||
c11.869-34.465,22.838-69.248,34.14-103.905c4.404-14.188,10.043-28.018,13.254-42.556c3.779-14.555,10.443-28.126,16.582-41.789
|
||||
c26.141-55.96,53.934-111.12,81.334-166.472c5.539-11.319,11.411-22.488,16.757-33.89c-0.375-0.225-1.109-0.676-1.485-0.901
|
||||
c-1.877,2.703-3.103,5.764-4.588,8.683c-30.003,60.715-60.565,121.171-89.533,182.395c-6.281,13.646-12.82,27.209-17.975,41.33
|
||||
c-3.253,8.633-4.546,17.825-7.59,26.516c-5.063,14.689-9.784,29.477-14.614,44.241c-1.827-4.955-1.81-10.301-2.144-15.498
|
||||
c0.242-15.239,2.127-30.854-1.952-45.784c-3.311-12.929-7.741-25.941-16.007-36.609c-8.533-10.627-18.584-20.152-30.186-27.359
|
||||
c-10.551-6.581-22.513-10.643-34.707-12.887c-19.535-3.837-39.428-5.405-59.28-6.481c-9.834-0.225-19.877-0.509-29.436,2.194
|
||||
c-2.719,0.792-5.647,2.11-6.965,4.779c-0.726,1.86,0.742,3.612,1.868,4.946c4.938,5.238,11.26,8.85,17.166,12.87
|
||||
c9.058,5.655,17.683,11.986,26.983,17.241c12.52,7.19,25.082,14.505,35.975,24.056c21.278,18.467,41.288,38.736,57.07,62.183
|
||||
c5.18,8.258,10.351,17.099,11.219,27.017c0.175,12.487-10.652,22.237-9.759,34.857c0.884,13.146,6.106,25.457,11.019,37.518
|
||||
c0.492,1.084,0.534,2.269,0.15,3.403c-3.42-3.42-6.039-7.515-9.025-11.286c-2.919-4.037-6.189-7.849-8.658-12.178
|
||||
c-1.969-3.336-1.001-8.141-4.446-10.577c-6.214-4.504-13.488-7.207-20.394-10.451c-7.207-3.036-14.363-6.539-22.096-7.999
|
||||
c0.45,1.143,1.059,2.235,2.077,2.978c9.601,7.607,20.436,13.855,28.668,23.055c5.922,7.207,3.82,17.041,4.379,25.599
|
||||
c0.367,7.34,6.573,12.336,11.969,16.44c2.194,1.91,5.472,2.828,6.773,5.614c-24.314-11.402-48.07-24.156-73.393-33.231
|
||||
c-6.172-2.269-12.67-3.595-18.634-6.423c-14.539-6.706-29.119-13.354-43.357-20.686c-6.156-3.328-12.37-6.564-18.359-10.184
|
||||
c-23.305-13.963-43.457-32.53-61.691-52.541c-15.773-17.116-32.13-33.907-45.326-53.158c-8.224-11.803-14.08-26.116-12.737-40.73
|
||||
c2.21-17.166,11.419-32.772,23.138-45.225c12.27-13.079,26.066-24.565,39.37-36.559c22.83-20.344,45.968-40.388,70.315-58.905
|
||||
c10.201-7.565,20.519-15.273,32.313-20.185c9.826-4.154,20.619-4.996,30.637-8.55c14.73-5.155,28.543-12.537,42.631-19.185
|
||||
c17.099-8.116,34.315-16.182,52.44-21.745c31.78-9.801,64.685-15.214,96.64-24.364C616.083,68.702,632.891,63.414,649.998,59.21
|
||||
M564.127,96.069c0.025,2.152,1.476,3.862,2.461,5.664c8.107,13.588,15.89,27.759,19.21,43.382
|
||||
c3.587,15.948,3.286,32.705-0.667,48.554c-3.053,11.202-8.558,21.495-12.837,32.238c-5.855,13.938-9.576,28.618-13.504,43.174
|
||||
c-7.424,28.752-14.322,57.645-21.07,86.572c-0.951,1.368,1.426,2.861,1.777,1.051c5.864-24.439,11.519-48.929,17.7-73.293
|
||||
c3.962-15.056,7.624-30.228,12.562-45c4.479-13.621,11.31-26.316,16.048-39.829c7.691-25.524,5.463-54.042-6.531-77.898
|
||||
c-4.12-8.441-8.725-16.674-13.763-24.59C565.161,96.094,564.469,96.078,564.127,96.069 M286.402,315.273
|
||||
c0.467,2.986,1.86,5.697,3.253,8.349c4.321,8.074,8.867,16.015,13.488,23.922c7.949,13.679,15.006,27.843,22.596,41.714
|
||||
c13.729,25.932,29.002,51.273,48.345,73.452c5.872,6.081,11.602,12.537,19.009,16.807c6.456,3.645,13.204,6.856,20.327,8.95
|
||||
c2.886,0.859,5.905,1.376,8.925,1.068c0.567-1.91-0.584-3.578-1.693-4.988c-11.277-13.179-24.781-24.531-34.023-39.37
|
||||
c-10.226-16.665-17.992-34.766-29.169-50.856c-8.917-13.095-19.543-24.906-29.778-36.959
|
||||
c-10.927-12.42-21.904-24.806-33.648-36.467C291.715,318.777,289.621,315.982,286.402,315.273z"/>
|
||||
<path fill="#9A9A9A" stroke="#9A9A9A" stroke-width="0.8341" d="M564.127,96.069c0.342,0.008,1.034,0.025,1.385,0.025
|
||||
c5.038,7.916,9.642,16.148,13.763,24.59c11.995,23.856,14.222,52.374,6.531,77.898c-4.738,13.513-11.569,26.208-16.048,39.829
|
||||
c-4.938,14.772-8.6,29.945-12.562,45c-6.181,24.364-11.836,48.854-17.7,73.293c-0.35,1.81-2.728,0.317-1.777-1.051
|
||||
c6.748-28.927,13.646-57.82,21.07-86.572c3.929-14.555,7.649-29.236,13.504-43.174c4.279-10.743,9.784-21.036,12.837-32.238
|
||||
c3.954-15.848,4.254-32.605,0.667-48.554c-3.32-15.623-11.102-29.794-19.21-43.382C565.603,99.931,564.152,98.221,564.127,96.069z"
|
||||
/>
|
||||
<path fill="#9B9B9B" stroke="#9B9B9B" stroke-width="0.8341" d="M654.578,122.928c1.485-2.919,2.711-5.981,4.588-8.683
|
||||
c0.375,0.225,1.109,0.676,1.485,0.901c-5.347,11.402-11.219,22.571-16.757,33.89c-27.401,55.352-55.193,110.511-81.334,166.472
|
||||
c-6.139,13.663-12.804,27.234-16.582,41.789c-3.211,14.539-8.85,28.368-13.254,42.556c-11.302,34.657-22.271,69.44-34.14,103.905
|
||||
c0.484-4.429,2.369-8.508,3.67-12.72c7.257-22.738,14.397-45.509,21.687-68.23c0.5-1.76,0.734-3.587,0.926-5.397
|
||||
c4.83-14.764,9.551-29.553,14.614-44.241c3.044-8.691,4.337-17.883,7.59-26.516c5.155-14.121,11.694-27.684,17.975-41.33
|
||||
C594.013,244.099,624.575,183.643,654.578,122.928z"/>
|
||||
<path fill="#D9D9D9" stroke="#D9D9D9" stroke-width="0.8341" d="M876.568,201.609c5.63-1.927,11.352-3.57,17.033-5.355
|
||||
c-8.7,13.362-18.05,26.308-26.675,39.72c-0.609,0.851-1.285,1.643-1.944,2.452c-7.09-4.504-12.403-12.603-11.961-21.211
|
||||
c0.25-3.103,0.826-6.381,2.769-8.908c2.077-2.16,5.163-2.794,7.916-3.703C868.085,204.112,872.414,203.127,876.568,201.609z"/>
|
||||
<path fill="#A4A4A4" stroke="#A4A4A4" stroke-width="0.8341" d="M851.344,210.518c2.185-3.403,5.238-6.389,9.392-7.065
|
||||
c0.976,0.392,1.969,0.776,2.969,1.151c-2.753,0.909-5.839,1.543-7.916,3.703c-1.943,2.527-2.519,5.805-2.769,8.908
|
||||
c-0.442,8.608,4.871,16.707,11.961,21.211c0.659-0.809,1.335-1.601,1.944-2.452c0.217,0.5,0.642,1.501,0.859,2.002
|
||||
c-0.292,0.701-0.567,1.401-0.809,2.119c9.826,7.507,20.744,13.504,30.286,21.395c8.708,7.115,17.858,13.754,25.824,21.729
|
||||
c3.386,3.612,7.082,7.64,7.49,12.837c0.634,5.772-2.711,10.994-2.861,16.674c0.801,5.956,8.983,6.356,10.56,11.953
|
||||
c2.878,8.55-0.033,17.483-3.078,25.532c-4.237,11.411-8.666,22.755-13.729,33.823c-5.714,12.762-12.453,25.273-21.87,35.708
|
||||
c-7.782,8.716-17.274,15.623-26.483,22.721c-6.239,4.821-12.67,9.392-19.151,13.871c-15.356,10.41-31.029,20.344-46.468,30.62
|
||||
c-5.297,3.286-10.376,6.931-15.706,10.168c-7.24,4.646-15.081,8.516-21.362,14.497c-4.98,4.738-7.807,11.119-11.719,16.665
|
||||
c-5.33,7.474-12.97,12.82-20.452,17.933c-5.422,3.587-10.927,7.073-16.816,9.834c-4.212,1.885-8.158,5.105-13.054,4.538
|
||||
c-13.404-0.45-26.783,0.3-40.171,0.717c1.176-0.759,2.361-1.518,3.512-2.336c12.22-0.392,24.456-0.642,36.684-0.4
|
||||
c3.854,0.425,7.007-2.002,10.293-3.562c11.461-5.455,22.104-12.578,31.821-20.719c6.381-5.313,9.659-13.137,14.505-19.685
|
||||
c7.273-9.851,18.918-14.622,28.768-21.311c24.848-16.574,50.422-32.088,74.469-49.83c10.735-8.333,22.087-16.14,30.954-26.558
|
||||
c6.823-7.766,12.095-16.732,16.624-25.974c6.231-12.795,11.577-25.991,16.532-39.32c2.961-7.982,6.381-16.574,4.179-25.198
|
||||
c-1.251-5.522-8.408-6.214-10.46-11.244c-1.418-3.445,0.158-7.107,1.051-10.468c1.41-4.329,2.227-9.4-0.367-13.463
|
||||
c-4.362-6.881-10.943-11.919-17.116-17.083c-8.274-6.481-16.198-13.438-24.957-19.268c-7.749-5.28-15.79-10.176-23.03-16.157
|
||||
c-4.196-3.47-7.832-7.832-9.542-13.062c-1.251-3.437-1.101-7.132-1.285-10.718c-16.032,19.902-31.471,40.296-47.286,60.381
|
||||
c-22.179,28.443-44.366,56.878-66.52,85.338c-19.426,24.773-38.528,49.796-58.346,74.261
|
||||
c-12.954,16.365-26.683,32.313-36.993,50.555c-3.462,5.939-5.73,12.453-7.682,19.018c-2.502,8.425-5.88,16.557-8.475,24.948
|
||||
c-3.253,10.268-6.606,20.511-9.584,30.854c15.548,0.45,31.112-0.025,46.635-0.834c0.526,0.676,1.076,1.351,1.635,2.027
|
||||
c-19.176,1.143-38.419,1.184-57.62,0.701c-20.886-1.068-42.206-3.044-61.799-10.843c9,0.918,17.55,4.254,26.533,5.197
|
||||
c8.925,1.335,17.875,2.527,26.883,3.053c5.155,0.242,10.318,1.001,15.481,0.5c4.971-15.556,9.467-31.279,15.097-46.618
|
||||
c3.453-9.342,5.505-19.26,10.451-28.001c9.492-17.116,22.062-32.222,34.224-47.469c21.328-26.299,41.922-53.174,62.792-79.841
|
||||
C774.606,308.943,813.058,259.797,851.344,210.518z"/>
|
||||
<path fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.8341" d="M803.566,275.336c15.815-20.085,31.254-40.479,47.286-60.381
|
||||
c0.184,3.587,0.033,7.282,1.285,10.718c1.71,5.23,5.347,9.592,9.542,13.062c7.24,5.981,15.281,10.877,23.03,16.157
|
||||
c8.758,5.83,16.682,12.787,24.957,19.268c6.172,5.163,12.754,10.201,17.116,17.083c2.594,4.062,1.777,9.134,0.367,13.463
|
||||
c-0.893,3.361-2.469,7.023-1.051,10.468c2.052,5.03,9.208,5.722,10.46,11.244c2.202,8.625-1.218,17.216-4.179,25.198
|
||||
c-4.955,13.329-10.301,26.525-16.532,39.32c-4.529,9.242-9.801,18.209-16.624,25.974c-8.867,10.418-20.219,18.225-30.954,26.558
|
||||
c-24.047,17.741-49.621,33.256-74.469,49.83c-9.851,6.69-21.495,11.461-28.768,21.311c-4.846,6.548-8.124,14.372-14.505,19.685
|
||||
c-9.717,8.141-20.361,15.264-31.821,20.719c-3.286,1.56-6.439,3.987-10.293,3.562c-12.228-0.242-24.464,0.008-36.684,0.4
|
||||
c4.863-4.354,9.617-8.858,14.83-12.804c11.394-8.174,21.403-18.058,32.288-26.867c9.375-7.949,19.702-14.73,30.67-20.277
|
||||
c11.644-6.498,23.989-11.744,35.233-18.959c4.571-3.086,9.15-6.773,11.269-12.036c2.16-5.388,5.58-10.143,7.999-15.406
|
||||
c3.211-6.923,7.574-13.321,12.97-18.717c9.943-10.093,20.744-19.293,31.221-28.81c4.346-4.304,9.259-8.141,12.804-13.171
|
||||
c-5.805,1.71-10.71,5.405-15.906,8.366c-22.604,14.197-44.867,28.935-66.787,44.166c-7.432,5.313-14.922,10.577-21.929,16.457
|
||||
c-6.973,5.789-13.029,12.612-18.617,19.718c-8.558,11.994-14.088,25.941-23.447,37.402c-3.587,4.462-8.408,8.174-14.13,9.267
|
||||
c-9.459,1.818-19.043-0.142-28.543-0.284c-3.395,0.083-7.457-0.042-9.893,2.761c-2.978,3.345-2.953,8.133-2.903,12.353
|
||||
c0.042,5.972,1.627,11.786,3.745,17.341c-15.523,0.809-31.087,1.285-46.635,0.834c2.978-10.343,6.331-20.586,9.584-30.854
|
||||
c2.594-8.391,5.972-16.524,8.475-24.948c1.952-6.564,4.221-13.079,7.682-19.018c10.31-18.242,24.039-34.19,36.993-50.555
|
||||
c19.818-24.464,38.92-49.488,58.346-74.261C759.2,332.214,781.387,303.779,803.566,275.336z"/>
|
||||
<path fill="#999999" stroke="#999999" stroke-width="0.8341" d="M643.617,241.213c0.592,0.2,1.193,0.409,1.802,0.609
|
||||
c-8.274,42.573-16.382,85.179-24.523,127.777c-3.07,19.101-7.482,38.077-8.516,57.453c-0.425,4.346,0.742,8.892-0.884,13.07
|
||||
c-1.877-5.338-0.726-11.069-0.934-16.59c0.742-9.667,2.294-19.243,3.887-28.802c6.931-40.338,15.072-80.458,22.696-120.671
|
||||
C639.388,263.125,640.99,252.048,643.617,241.213z"/>
|
||||
<path fill="#D9D9D9" stroke="#D9D9D9" stroke-width="0.8341" d="M351.153,274.986c9.559-2.703,19.602-2.419,29.436-2.194
|
||||
c19.852,1.076,39.745,2.644,59.28,6.481c12.195,2.244,24.156,6.306,34.707,12.887c11.602,7.207,21.654,16.732,30.186,27.359
|
||||
c8.266,10.668,12.695,23.68,16.007,36.609c4.079,14.931,2.194,30.545,1.952,45.784c0.334,5.197,0.317,10.543,2.144,15.498
|
||||
c-0.192,1.81-0.425,3.637-0.926,5.397c-7.29,22.721-14.43,45.492-21.687,68.23c-1.301,4.212-3.186,8.291-3.67,12.72
|
||||
c-0.067,0.242-0.2,0.734-0.267,0.976c-0.4-0.175-1.209-0.534-1.618-0.709c-1.935,7.757-4.663,15.298-7.198,22.88
|
||||
c-1.601-0.234-3.011-1.034-4.371-1.852c-1.301-2.786-4.579-3.703-6.773-5.614c-5.397-4.104-11.602-9.1-11.969-16.44
|
||||
c-0.559-8.558,1.543-18.392-4.379-25.599c-8.233-9.2-19.068-15.448-28.668-23.055c-1.018-0.742-1.626-1.835-2.077-2.978
|
||||
c7.732,1.46,14.889,4.963,22.096,7.999c6.906,3.245,14.18,5.947,20.394,10.451c3.445,2.436,2.477,7.24,4.446,10.577
|
||||
c2.469,4.329,5.739,8.141,8.658,12.178c2.986,3.77,5.605,7.866,9.025,11.286c0.384-1.134,0.342-2.319-0.15-3.403
|
||||
c-4.913-12.061-10.134-24.373-11.019-37.518c-0.892-12.62,9.934-22.371,9.759-34.857c-0.867-9.918-6.039-18.759-11.219-27.017
|
||||
c-15.781-23.447-35.792-43.716-57.07-62.183c-10.893-9.551-23.455-16.866-35.975-24.056c-9.3-5.255-17.925-11.586-26.983-17.241
|
||||
c-5.905-4.02-12.228-7.632-17.166-12.87c-1.126-1.335-2.594-3.086-1.868-4.946C345.507,277.096,348.434,275.778,351.153,274.986z"
|
||||
/>
|
||||
<path fill="#D9D9D9" stroke="#D9D9D9" stroke-width="0.8341" d="M286.402,315.273c3.22,0.709,5.313,3.503,7.632,5.622
|
||||
c11.744,11.661,22.721,24.047,33.648,36.467c10.234,12.053,20.861,23.864,29.778,36.959c11.177,16.09,18.943,34.19,29.169,50.856
|
||||
c9.242,14.839,22.746,26.191,34.023,39.37c1.109,1.41,2.26,3.078,1.693,4.988c-3.019,0.309-6.039-0.209-8.925-1.068
|
||||
c-7.123-2.094-13.871-5.305-20.327-8.95c-7.407-4.271-13.137-10.727-19.009-16.807c-19.343-22.179-34.616-47.519-48.345-73.452
|
||||
c-7.59-13.871-14.647-28.034-22.596-41.714c-4.621-7.907-9.167-15.848-13.488-23.922
|
||||
C288.262,320.97,286.869,318.26,286.402,315.273z"/>
|
||||
<path fill="#D9D9D9" stroke="#D9D9D9" stroke-width="0.8341" d="M845.105,400.294c5.196-2.961,10.101-6.656,15.906-8.366
|
||||
c-3.545,5.03-8.458,8.867-12.804,13.171c-10.476,9.517-21.278,18.717-31.221,28.81c-5.397,5.397-9.759,11.794-12.97,18.717
|
||||
c-2.419,5.263-5.839,10.018-7.999,15.406c-2.119,5.263-6.698,8.95-11.269,12.036c-11.244,7.215-23.589,12.462-35.233,18.959
|
||||
c-10.969,5.547-21.295,12.328-30.67,20.277c-10.885,8.808-20.894,18.692-32.288,26.867c-5.213,3.945-9.968,8.45-14.83,12.804
|
||||
c-1.151,0.817-2.336,1.576-3.512,2.336c-1.335,0.083-2.661,0.125-3.979,0.192c-0.559-0.676-1.109-1.351-1.635-2.027
|
||||
c-2.119-5.555-3.703-11.369-3.745-17.341c-0.05-4.221-0.075-9.008,2.903-12.353c2.436-2.803,6.498-2.677,9.893-2.761
|
||||
c9.5,0.142,19.084,2.102,28.543,0.284c5.722-1.093,10.543-4.804,14.13-9.267c9.359-11.461,14.889-25.407,23.447-37.402
|
||||
c5.589-7.107,11.644-13.93,18.617-19.718c7.006-5.88,14.497-11.144,21.929-16.457C800.238,429.23,822.501,414.491,845.105,400.294z
|
||||
"/>
|
||||
<path fill="#D9D9D9" stroke="#D9D9D9" stroke-width="0.8341" d="M610.111,435.827c0.092-4.104-0.083-8.216,0.45-12.295
|
||||
c0.208,5.522-0.943,11.252,0.934,16.59c1.351,8.516,1.385,17.199,0.592,25.774c-0.667,5.505-1.26,11.202-3.854,16.198
|
||||
c-3.687,7.098-8.967,13.171-13.938,19.376c-4.496,5.63-9.417,11.102-12.195,17.85c-2.152,4.763-2.711,10.001-3.286,15.139
|
||||
c-0.893,7.824-4.496,14.914-7.465,22.096c-8.983-0.943-17.533-4.279-26.533-5.197c-0.893-0.242-1.793-0.475-2.677-0.692
|
||||
c0.1-0.392,0.309-1.185,0.409-1.576c3.62-7.248,7.373-14.43,11.01-21.67c13.362-25.707,26.108-51.765,40.763-76.78
|
||||
c3.044-4.921,5.814-10.151,9.968-14.247C605.774,434.543,608.151,435.669,610.111,435.827z"/>
|
||||
<path fill="#A4A3A4" stroke="#A4A3A4" stroke-width="0.8341" d="M349.744,464.713c14.238,7.332,28.819,13.98,43.357,20.686
|
||||
c5.964,2.828,12.462,4.154,18.634,6.423c25.324,9.075,49.079,21.829,73.393,33.231c1.36,0.817,2.769,1.618,4.371,1.852
|
||||
c2.536-7.582,5.263-15.122,7.198-22.88c0.409,0.175,1.218,0.534,1.618,0.709c-2.119,7.749-5.33,15.164-7.265,22.955
|
||||
c11.477,5.355,23.105,10.426,34.891,15.072c5.48,2.244,11.169,3.97,16.607,6.331c-0.1,0.392-0.309,1.184-0.409,1.576
|
||||
c-9.242-2.361-17.958-6.373-26.808-9.859c-17.775-7.457-35.183-15.748-52.566-24.081c-20.277-9.792-40.588-19.902-62.283-26.216
|
||||
c-8.566-2.661-16.374-7.182-24.631-10.585c-8.525-4.204-17.041-8.424-25.682-12.387c-0.742-0.467-1.485-0.926-2.227-1.368
|
||||
C348.534,465.68,349.135,465.188,349.744,464.713z"/>
|
||||
<path fill="#777671" stroke="#777671" stroke-width="0.8341" d="M333.921,494.741c13.121-7.057,27.609-11.002,41.931-14.814
|
||||
c8.258,3.403,16.065,7.924,24.631,10.585c21.695,6.314,42.006,16.424,62.283,26.216c17.383,8.333,34.791,16.624,52.566,24.081
|
||||
c8.85,3.487,17.566,7.499,26.808,9.859c0.884,0.217,1.785,0.45,2.677,0.692c19.593,7.799,40.913,9.776,61.799,10.843
|
||||
c19.201,0.484,38.444,0.442,57.62-0.701c1.318-0.067,2.644-0.108,3.979-0.192c13.387-0.417,26.767-1.168,40.171-0.717
|
||||
c4.896,0.567,8.842-2.652,13.054-4.538c5.889-2.761,11.394-6.247,16.816-9.834c7.482-5.113,15.122-10.46,20.452-17.933
|
||||
c3.912-5.547,6.74-11.928,11.719-16.665c6.281-5.981,14.121-9.851,21.362-14.497c5.33-3.236,10.41-6.881,15.706-10.168
|
||||
c7.432,2.169,14.797,4.529,22.137,6.982c8.45,3.403,16.907,6.915,24.573,11.894c4.763,3.345,9.117,7.44,11.686,12.745
|
||||
c1.118,4.93-0.25,10.159-3.795,13.78c-8.108,8.716-19.702,12.737-30.47,17.066c-25.082,8.116-51.106,12.879-77.197,16.357
|
||||
c-30.462,3.987-61.124,6.323-91.81,7.49c-45.551,1.585-91.177,0.809-136.652-2.202c-38.136-2.502-76.213-6.698-113.773-13.863
|
||||
c-10.593-2.01-21.12-4.396-31.554-7.098c-13.663-3.662-27.275-7.791-40.062-13.913c-7.557-3.662-15.014-8.108-20.311-14.772
|
||||
c-3.253-4.905-3.203-11.311,0.15-16.157C324.22,500.955,328.849,497.435,333.921,494.741z"/>
|
||||
<path fill="#5BD4FF" stroke="#5BD4FF" stroke-width="0.8341" d="M55.261,498.519c85.721,38.619,171.51,77.105,257.248,115.683
|
||||
c10.485,4.554,20.753,9.617,31.363,13.855c17.65,8.475,35.7,16.165,53.55,24.231c0.601,6.623-0.259,13.296,0.384,19.91
|
||||
c0.092,0.576,0.267,1.727,0.359,2.302c0.534,8.199-0.192,16.44,0.609,24.623c0.434,4.02,0.509,8.066,0.3,12.111
|
||||
c-0.359,3.128-0.525,6.289-0.275,9.442c0.417,5.063-0.242,10.193,0.817,15.206c0.058,0.517,0.184,1.551,0.242,2.069
|
||||
c-0.551,7.64-0.3,15.373,0.601,22.98c0.25,2.961,0.392,5.939,0.392,8.925c0.05,10.493,0.801,20.978,0.692,31.471
|
||||
c-0.284,2.844-0.467,5.722-0.259,8.591c0.325,4.796-0.05,9.642,0.842,14.397c0.551,6.047,0.292,12.12,0.601,18.175
|
||||
c0.2,7.682,0.642,15.364,0.475,23.055c-0.667,5.071,0.058,10.159-0.025,15.247c-0.033,2.319,0.242,4.629,0.617,6.923
|
||||
c0.909,23.547,1.401,47.111,2.019,70.666c4.087,152.642,8.057,305.284,12.22,457.91c0.142,8.324,0.234,16.657,0.676,24.982
|
||||
c0.334,9.209,0.175,18.434,0.709,27.642c0.492,11.628,0.3,23.28,0.951,34.908c0.334,9.208,0.158,18.434,0.717,27.642
|
||||
c0.5,12.478,0.309,24.973,1.034,37.452c0.175,10.568,0.325,21.153,0.851,31.721c0.033,17.883,1.335,35.75,1.051,53.642
|
||||
c-101.144-74.937-202.122-150.115-303.216-225.135c-14.764-11.085-29.769-21.879-44.391-33.139
|
||||
c-1.301-42.723-2.052-85.463-3.145-128.194c-5.739-243.277-11.469-486.553-17.216-729.821c-0.325-10.435-0.409-20.869-0.792-31.304
|
||||
v-8.168H55.261z"/>
|
||||
<path fill="#95E3FF" stroke="#95E3FF" stroke-width="0.8341" d="M1148.337,563.029c0.526,0.075,1.585,0.217,2.11,0.292v5.956
|
||||
c-2.152,126.918-4.012,253.845-6.064,380.763c-2.953,185.69-5.772,371.379-8.825,557.069c-4.12,1.134-8.358,1.76-12.52,2.703
|
||||
c-232.767,48.27-465.508,96.673-698.283,144.843l-0.734-0.375c0.284-17.892-1.018-35.758-1.051-53.642
|
||||
c-0.526-10.568-0.676-21.153-0.851-31.721c-0.726-12.478-0.534-24.973-1.034-37.452c-0.559-9.208-0.384-18.434-0.717-27.642
|
||||
c-0.651-11.628-0.459-23.28-0.951-34.908c-0.534-9.208-0.375-18.434-0.709-27.642c-0.442-8.324-0.534-16.657-0.676-24.982
|
||||
c-4.162-152.625-8.133-305.268-12.22-457.91c-0.617-23.555-1.109-47.119-2.019-70.666c0.392-7.382,0.234-14.83-0.592-22.171
|
||||
c0.167-7.691-0.275-15.373-0.475-23.055c-0.309-6.056-0.05-12.128-0.601-18.175c0.367-7.649,0.209-15.364-0.584-22.988
|
||||
c0.108-10.493-0.642-20.978-0.692-31.471c0-2.986-0.142-5.964-0.392-8.925c0.359-7.649,0.234-15.373-0.601-22.98
|
||||
c-0.058-0.517-0.184-1.551-0.242-2.069c0.509-8.208,0.284-16.482-0.542-24.648c0.209-4.045,0.133-8.091-0.3-12.111
|
||||
c-0.317-8.199,0.242-16.457-0.609-24.623c-0.092-0.576-0.267-1.727-0.359-2.302c-0.15-6.69-0.133-13.379-0.058-20.06
|
||||
c40.971-5.046,81.993-9.701,122.989-14.589C626.101,625.12,731.474,612.7,836.839,600.28c6.081-0.55,12.103-1.793,18.234-1.802
|
||||
c0.909-0.008,1.827-0.017,2.753-0.033c4.296-0.342,8.566-1.051,12.795-1.927c7.54,0.1,14.939-1.576,22.438-2.194
|
||||
c37.994-4.621,76.021-8.9,114.006-13.554c42.498-5.188,85.038-10.018,127.535-15.181
|
||||
C1139.237,565.139,1144.025,565.014,1148.337,563.029z"/>
|
||||
<path opacity="0.89" fill="#81C9E4" stroke="#81C9E4" stroke-width="0.8341" enable-background="new " d="M855.815,597.419
|
||||
c4.913-0.409,9.859-1.835,14.805-0.901c-4.229,0.876-8.5,1.585-12.795,1.927C857.325,598.187,856.315,597.678,855.815,597.419z"/>
|
||||
|
||||
<radialGradient id="SVGID_1_" cx="602.0625" cy="1155.9608" r="558.4534" gradientTransform="matrix(1 0 0 -1 0 1710)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#58D2FF"/>
|
||||
<stop offset="1" style="stop-color:#92E2FF"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_1_)" stroke="#92E2FF" stroke-width="0.8341" d="M1112.154,549.808
|
||||
c-32.272-11.702-64.543-23.388-96.848-34.974c-12.812-4.729-25.674-9.35-38.544-13.921c-10.977-4.079-22.021-7.999-33.039-11.978
|
||||
c-29.895-10.935-59.939-21.462-89.759-32.597c-15.356,10.41-31.029,20.344-46.468,30.62c7.432,2.169,14.797,4.529,22.137,6.981
|
||||
c8.45,3.403,16.907,6.915,24.573,11.894c4.763,3.345,9.117,7.44,11.686,12.745c1.118,4.93-0.25,10.159-3.795,13.78
|
||||
c-8.108,8.716-19.702,12.737-30.47,17.066c-25.082,8.116-51.106,12.879-77.197,16.357c-30.462,3.987-61.124,6.322-91.81,7.49
|
||||
c-45.551,1.585-91.177,0.809-136.652-2.202c-38.136-2.502-76.213-6.698-113.773-13.863c-10.593-2.01-21.12-4.396-31.554-7.098
|
||||
c-13.663-3.662-27.275-7.791-40.062-13.913c-7.557-3.662-15.014-8.108-20.311-14.772c-3.253-4.905-3.203-11.31,0.15-16.157
|
||||
c3.804-4.312,8.433-7.832,13.504-10.527c13.121-7.057,27.609-11.002,41.931-14.814c-8.525-4.204-17.041-8.424-25.682-12.386
|
||||
c-39.62,4.279-79.29,8.041-118.936,12.12c-58.479,5.914-116.967,11.769-175.447,17.725c4.229,2.519,8.858,4.287,13.371,6.222
|
||||
c14.096,6.606,28.318,12.929,42.531,19.276c22.196,10.118,44.425,20.194,66.704,30.136c20.327,9.309,40.73,18.459,61.115,27.659
|
||||
c22.704,10.226,45.317,20.661,68.113,30.687c11.961,5.814,24.323,10.793,36.25,16.691c17.258,7.415,34.282,15.389,51.431,23.055
|
||||
c2.461,1.31,5.221,0.2,7.816,0.025c102.387-12.061,204.791-24.022,307.169-36.125c43.732-5.013,87.431-10.31,131.155-15.356
|
||||
c4.529-0.509,9.05-1.401,13.629-1.176c0.909-0.008,1.827-0.017,2.753-0.033c-0.5-0.259-1.51-0.767-2.01-1.026
|
||||
c4.913-0.409,9.859-1.835,14.805-0.901c7.54,0.1,14.939-1.576,22.438-2.194c37.994-4.621,76.021-8.9,114.006-13.554
|
||||
c42.498-5.188,85.038-10.018,127.535-15.181c4.638-0.45,9.426-0.576,13.738-2.561
|
||||
C1136.393,558.316,1124.207,554.221,1112.154,549.808z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#ffe265" d="M48.18 68.45L6.7 69.95s-2.63-2.63-2.25-3.57S39.18 38.6 40.49 38.79s4.32 3.38 6.76 2.25s0-7.7.75-8.63c.75-.94 27.59-15.39 29.28-16.14s3.19-2.44 6.57-1.69s11.83 2.25 21.02 8.45s18.77 13.33 18.02 17.27s-74.71 28.15-74.71 28.15"/><path fill="#feb502" d="M19.46 115.57c9.2-1.13 94.98-19.52 98.55-20.08s5.82-3.94 5.82-7.7s-.94-47.49-.94-47.49s-4.13 1.31-9.01 2.44C109 43.86 69.01 53.62 53.25 57.19S12.33 67.33 9.51 67.33s-5.07-.94-5.07-.94s.75 39.04.94 41.86s1.5 6.19 4.69 7.13s5.27.69 9.39.19"/><path fill="#ff8b0d" d="M74.97 25.56c0 2.4 2.44 3.99 6.48 3.87c4.41-.13 5.63-2.75 5.49-4.43c-.14-1.69-2.17-3.17-6.19-3.1c-3.73.07-5.78 1.55-5.78 3.66"/><path fill="#ed6b31" d="M29.92 55.48c-6.5 2.19-5.77 7.88-3.87 9.15s4.43 1.2 7.39.14s4.84-2.27 5.14-4.25c.28-1.88-2.18-7.23-8.66-5.04m59.06-16.26c-4.36.2-9.18 3.33-10.98 6.34c-1.9 3.17-2.04 6.9 2.32 9.22s19.78-3.59 19.01-9.01c-.77-5.43-5.77-6.76-10.35-6.55M73.85 83.07s6.19-4.58 6.19-7.81c0-3.24-2.67-10.89-14.01-11.47c-10.63-.55-17.18 13.94-10.21 21.4s11.19 4.08 13.8 3.38c2.61-.71 4.23-5.5 4.23-5.5M43.23 96.09s6.15-3.85 1.43-8.07c-3.32-2.97-7.76-1.63-10.02.68c-2.89 2.96-2.11 7.67.56 9.78c2.68 2.12 8.03-2.39 8.03-2.39M22.39 78.78s-.7-2.21-3.21-3.1c-2.82-1-7.03 2.51-5.23 6.26c1.62 3.38 5.21 2.39 5.21 2.39zm90.03 3.23c.61-.66 4.6-3.54 4.6-5.73c0-2.18-6.01-8.92-13.68-3.85s-3.66 12.74-1.55 14.01s7.96-1.54 10.63-4.43"/><path fill="#ff8b0d" d="M30.86 58.93c-4.27 1.48-5.88 4.5-4.81 5.7c1.13 1.27 3.59 2.11 7.88.56c3.32-1.2 5-3.21 4.72-5c-.2-1.3-3.92-2.6-7.79-1.26m-14.24 19.7c-1.87 2.34-.35 5 1.41 5.63s4.86-1.27 4.65-4.43c-.22-3.17-4.37-3.31-6.06-1.2m21.75 12.75c-4.02 3.26-4.13 6.45-2.58 7.53c1.08.76 5.06 2.34 8.7-.35c2.7-1.99 2.75-6.17 1.9-8.17c-.71-1.7-4.64-1.76-8.02.99m24.4-17.77c-5.38 5.23-6.66 13.72-1.38 15.72c4.65 1.76 11.33.7 15.27-4.15c4.14-5.1 4.58-10.73 1.92-14.05c-3.18-3.99-11.65-1.55-15.81 2.48m24.45-29.18c-7.04 2.39-11.19 7.46-7.6 10c3.59 2.53 7.32 2.16 11.4.77c4.63-1.57 8.17-5.21 8.31-8.66c.11-2.83-5.91-4.22-12.11-2.11m18.8 32.37c-4.79 3.9-6.19 7.81-4.22 9.64s6.69 2.67 11.05-.35c4.53-3.14 4.86-6.7 4.36-9.57c-.56-3.23-6.27-3.73-11.19.28"/></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 114 KiB |
@@ -0,0 +1,980 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32.706978mm"
|
||||
height="27.021095mm"
|
||||
viewBox="0 0 115.89086 95.744036"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="Topf-coloured.svg">
|
||||
<title
|
||||
id="title4138">cooking pot - coloured</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6317">
|
||||
<stop
|
||||
style="stop-color:#1e315f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6319" />
|
||||
<stop
|
||||
id="stop6325"
|
||||
offset="0.38062251"
|
||||
style="stop-color:#1e315f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#1c263d;stop-opacity:1"
|
||||
offset="0.57023102"
|
||||
id="stop6327" />
|
||||
<stop
|
||||
style="stop-color:#151924;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6321" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6301">
|
||||
<stop
|
||||
style="stop-color:#11234d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6303" />
|
||||
<stop
|
||||
id="stop6309"
|
||||
offset="0.41709986"
|
||||
style="stop-color:#11234d;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#404f72;stop-opacity:1"
|
||||
offset="0.59841013"
|
||||
id="stop6311" />
|
||||
<stop
|
||||
id="stop6315"
|
||||
offset="0.72766608"
|
||||
style="stop-color:#223050;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop6313"
|
||||
offset="0.89640331"
|
||||
style="stop-color:#11234d;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#43547c;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6305" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6285">
|
||||
<stop
|
||||
style="stop-color:#e07971;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6287" />
|
||||
<stop
|
||||
id="stop6293"
|
||||
offset="0.11962335"
|
||||
style="stop-color:#ed695e;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#d62e21;stop-opacity:1;"
|
||||
offset="0.44168144"
|
||||
id="stop6295" />
|
||||
<stop
|
||||
id="stop6299"
|
||||
offset="0.72451526"
|
||||
style="stop-color:#d62e21;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6297"
|
||||
offset="0.94231969"
|
||||
style="stop-color:#b02116;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#db6b62;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6289" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6263">
|
||||
<stop
|
||||
style="stop-color:#c0e3ff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6265" />
|
||||
<stop
|
||||
id="stop6271"
|
||||
offset="0.57951736"
|
||||
style="stop-color:#c0e3ff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#9dc0dc;stop-opacity:1"
|
||||
offset="0.71986979"
|
||||
id="stop6273" />
|
||||
<stop
|
||||
style="stop-color:#8d9fae;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6267" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6251">
|
||||
<stop
|
||||
style="stop-color:#e3f3ff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6253" />
|
||||
<stop
|
||||
id="stop6259"
|
||||
offset="0.17045636"
|
||||
style="stop-color:#cce5f8;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c0e3ff;stop-opacity:1;"
|
||||
offset="0.33710676"
|
||||
id="stop6261" />
|
||||
<stop
|
||||
style="stop-color:#c0e3ff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6255" />
|
||||
</linearGradient>
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Polkadots-large"
|
||||
id="pattern6230"
|
||||
patternTransform="scale(0.38749998,0.48749998)" />
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Polkadots-large"
|
||||
id="pattern6132"
|
||||
patternTransform="scale(1.0988203,0.84134812)" />
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Polkadots-large"
|
||||
id="pattern5877"
|
||||
patternTransform="scale(0.46784302,0.59788609)" />
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Strips1_1"
|
||||
id="pattern5773"
|
||||
patternTransform="matrix(0.39814067,-0.41409084,4.7353172,4.5529197,-4.0346257,-2.2455566)" />
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Polkadots-large"
|
||||
id="pattern5767"
|
||||
patternTransform="matrix(0.59442711,0,0,0.58443615,-4.0346257,-2.2455566)" />
|
||||
<pattern
|
||||
inkscape:stockid="Polka dots, large"
|
||||
id="Polkadots-large"
|
||||
patternTransform="translate(0,0) scale(10,10)"
|
||||
height="10"
|
||||
width="10"
|
||||
patternUnits="userSpaceOnUse"
|
||||
inkscape:collect="always">
|
||||
<circle
|
||||
id="circle5447"
|
||||
r="0.45"
|
||||
cy="0.810"
|
||||
cx="2.567"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5449"
|
||||
r="0.45"
|
||||
cy="2.33"
|
||||
cx="3.048"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5451"
|
||||
r="0.45"
|
||||
cy="2.415"
|
||||
cx="4.418"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5453"
|
||||
r="0.45"
|
||||
cy="3.029"
|
||||
cx="1.844"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5455"
|
||||
r="0.45"
|
||||
cy="1.363"
|
||||
cx="6.08"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5457"
|
||||
r="0.45"
|
||||
cy="4.413"
|
||||
cx="5.819"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5459"
|
||||
r="0.45"
|
||||
cy="4.048"
|
||||
cx="4.305"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5461"
|
||||
r="0.45"
|
||||
cy="3.045"
|
||||
cx="5.541"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5463"
|
||||
r="0.45"
|
||||
cy="5.527"
|
||||
cx="4.785"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5465"
|
||||
r="0.45"
|
||||
cy="5.184"
|
||||
cx="2.667"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5467"
|
||||
r="0.45"
|
||||
cy="1.448"
|
||||
cx="7.965"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5469"
|
||||
r="0.45"
|
||||
cy="5.049"
|
||||
cx="7.047"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5471"
|
||||
r="0.45"
|
||||
cy="0.895"
|
||||
cx="4.340"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5473"
|
||||
r="0.45"
|
||||
cy="0.340"
|
||||
cx="7.125"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5475"
|
||||
r="0.45"
|
||||
cy="1.049"
|
||||
cx="9.553"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5477"
|
||||
r="0.45"
|
||||
cy="2.689"
|
||||
cx="7.006"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5479"
|
||||
r="0.45"
|
||||
cy="2.689"
|
||||
cx="8.909"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5481"
|
||||
r="0.45"
|
||||
cy="4.407"
|
||||
cx="9.315"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5483"
|
||||
r="0.45"
|
||||
cy="3.870"
|
||||
cx="7.820"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5485"
|
||||
r="0.45"
|
||||
cy="5.948"
|
||||
cx="8.270"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5487"
|
||||
r="0.45"
|
||||
cy="7.428"
|
||||
cx="7.973"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5489"
|
||||
r="0.45"
|
||||
cy="8.072"
|
||||
cx="9.342"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5491"
|
||||
r="0.45"
|
||||
cy="9.315"
|
||||
cx="8.206"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5493"
|
||||
r="0.45"
|
||||
cy="9.475"
|
||||
cx="9.682"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5495"
|
||||
r="0.45"
|
||||
cy="6.186"
|
||||
cx="9.688"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5497"
|
||||
r="0.45"
|
||||
cy="6.296"
|
||||
cx="3.379"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5499"
|
||||
r="0.45"
|
||||
cy="8.204"
|
||||
cx="2.871"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5501"
|
||||
r="0.45"
|
||||
cy="8.719"
|
||||
cx="4.59"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5503"
|
||||
r="0.45"
|
||||
cy="9.671"
|
||||
cx="3.181"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5505"
|
||||
r="0.45"
|
||||
cy="7.315"
|
||||
cx="5.734"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5507"
|
||||
r="0.45"
|
||||
cy="6.513"
|
||||
cx="6.707"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5509"
|
||||
r="0.45"
|
||||
cy="9.670"
|
||||
cx="5.730"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5511"
|
||||
r="0.45"
|
||||
cy="8.373"
|
||||
cx="6.535"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5513"
|
||||
r="0.45"
|
||||
cy="7.154"
|
||||
cx="4.37"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5515"
|
||||
r="0.45"
|
||||
cy="7.25"
|
||||
cx="0.622"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5517"
|
||||
r="0.45"
|
||||
cy="5.679"
|
||||
cx="0.831"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5519"
|
||||
r="0.45"
|
||||
cy="8.519"
|
||||
cx="1.257"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5521"
|
||||
r="0.45"
|
||||
cy="6.877"
|
||||
cx="1.989"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5523"
|
||||
r="0.45"
|
||||
cy="3.181"
|
||||
cx="0.374"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5525"
|
||||
r="0.45"
|
||||
cy="1.664"
|
||||
cx="1.166"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5527"
|
||||
r="0.45"
|
||||
cy="0.093"
|
||||
cx="1.151"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5529"
|
||||
r="0.45"
|
||||
cy="10.093"
|
||||
cx="1.151"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5531"
|
||||
r="0.45"
|
||||
cy="4.451"
|
||||
cx="1.302"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5533"
|
||||
r="0.45"
|
||||
cy="3.763"
|
||||
cx="3.047"
|
||||
style="fill:black;stroke:none" />
|
||||
</pattern>
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Strips1_1"
|
||||
id="pattern5716"
|
||||
patternTransform="matrix(0.36460897,0.44390038,-2.2196161,1.8231387,-4.0346257,-2.2455566)" />
|
||||
<pattern
|
||||
inkscape:isstock="true"
|
||||
inkscape:stockid="Stripes 1:1"
|
||||
id="Strips1_1"
|
||||
patternTransform="translate(0,0) scale(10,10)"
|
||||
height="1"
|
||||
width="2"
|
||||
patternUnits="userSpaceOnUse"
|
||||
inkscape:collect="always">
|
||||
<rect
|
||||
id="rect4997"
|
||||
height="2"
|
||||
width="1"
|
||||
y="-0.5"
|
||||
x="0"
|
||||
style="fill:black;stroke:none" />
|
||||
</pattern>
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Polkadots-large-3"
|
||||
id="pattern5877-9"
|
||||
patternTransform="matrix(-0.46784302,0,0,0.59788609,105.43624,1.4096179)" />
|
||||
<pattern
|
||||
inkscape:stockid="Polka dots, large"
|
||||
id="Polkadots-large-3"
|
||||
patternTransform="translate(0,0) scale(10,10)"
|
||||
height="10"
|
||||
width="10"
|
||||
patternUnits="userSpaceOnUse"
|
||||
inkscape:collect="always">
|
||||
<circle
|
||||
id="circle5447-3"
|
||||
r="0.45"
|
||||
cy="0.810"
|
||||
cx="2.567"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5449-6"
|
||||
r="0.45"
|
||||
cy="2.33"
|
||||
cx="3.048"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5451-3"
|
||||
r="0.45"
|
||||
cy="2.415"
|
||||
cx="4.418"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5453-9"
|
||||
r="0.45"
|
||||
cy="3.029"
|
||||
cx="1.844"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5455-0"
|
||||
r="0.45"
|
||||
cy="1.363"
|
||||
cx="6.08"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5457-3"
|
||||
r="0.45"
|
||||
cy="4.413"
|
||||
cx="5.819"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5459-2"
|
||||
r="0.45"
|
||||
cy="4.048"
|
||||
cx="4.305"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5461-0"
|
||||
r="0.45"
|
||||
cy="3.045"
|
||||
cx="5.541"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5463-6"
|
||||
r="0.45"
|
||||
cy="5.527"
|
||||
cx="4.785"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5465-2"
|
||||
r="0.45"
|
||||
cy="5.184"
|
||||
cx="2.667"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5467-0"
|
||||
r="0.45"
|
||||
cy="1.448"
|
||||
cx="7.965"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5469-0"
|
||||
r="0.45"
|
||||
cy="5.049"
|
||||
cx="7.047"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5471-5"
|
||||
r="0.45"
|
||||
cy="0.895"
|
||||
cx="4.340"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5473-0"
|
||||
r="0.45"
|
||||
cy="0.340"
|
||||
cx="7.125"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5475-4"
|
||||
r="0.45"
|
||||
cy="1.049"
|
||||
cx="9.553"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5477-3"
|
||||
r="0.45"
|
||||
cy="2.689"
|
||||
cx="7.006"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5479-1"
|
||||
r="0.45"
|
||||
cy="2.689"
|
||||
cx="8.909"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5481-2"
|
||||
r="0.45"
|
||||
cy="4.407"
|
||||
cx="9.315"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5483-9"
|
||||
r="0.45"
|
||||
cy="3.870"
|
||||
cx="7.820"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5485-8"
|
||||
r="0.45"
|
||||
cy="5.948"
|
||||
cx="8.270"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5487-5"
|
||||
r="0.45"
|
||||
cy="7.428"
|
||||
cx="7.973"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5489-8"
|
||||
r="0.45"
|
||||
cy="8.072"
|
||||
cx="9.342"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5491-1"
|
||||
r="0.45"
|
||||
cy="9.315"
|
||||
cx="8.206"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5493-1"
|
||||
r="0.45"
|
||||
cy="9.475"
|
||||
cx="9.682"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5495-8"
|
||||
r="0.45"
|
||||
cy="6.186"
|
||||
cx="9.688"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5497-7"
|
||||
r="0.45"
|
||||
cy="6.296"
|
||||
cx="3.379"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5499-8"
|
||||
r="0.45"
|
||||
cy="8.204"
|
||||
cx="2.871"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5501-7"
|
||||
r="0.45"
|
||||
cy="8.719"
|
||||
cx="4.59"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5503-2"
|
||||
r="0.45"
|
||||
cy="9.671"
|
||||
cx="3.181"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5505-9"
|
||||
r="0.45"
|
||||
cy="7.315"
|
||||
cx="5.734"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5507-2"
|
||||
r="0.45"
|
||||
cy="6.513"
|
||||
cx="6.707"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5509-7"
|
||||
r="0.45"
|
||||
cy="9.670"
|
||||
cx="5.730"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5511-7"
|
||||
r="0.45"
|
||||
cy="8.373"
|
||||
cx="6.535"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5513-8"
|
||||
r="0.45"
|
||||
cy="7.154"
|
||||
cx="4.37"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5515-7"
|
||||
r="0.45"
|
||||
cy="7.25"
|
||||
cx="0.622"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5517-7"
|
||||
r="0.45"
|
||||
cy="5.679"
|
||||
cx="0.831"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5519-1"
|
||||
r="0.45"
|
||||
cy="8.519"
|
||||
cx="1.257"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5521-1"
|
||||
r="0.45"
|
||||
cy="6.877"
|
||||
cx="1.989"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5523-9"
|
||||
r="0.45"
|
||||
cy="3.181"
|
||||
cx="0.374"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5525-8"
|
||||
r="0.45"
|
||||
cy="1.664"
|
||||
cx="1.166"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5527-5"
|
||||
r="0.45"
|
||||
cy="0.093"
|
||||
cx="1.151"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5529-0"
|
||||
r="0.45"
|
||||
cy="10.093"
|
||||
cx="1.151"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5531-0"
|
||||
r="0.45"
|
||||
cy="4.451"
|
||||
cx="1.302"
|
||||
style="fill:black;stroke:none" />
|
||||
<circle
|
||||
id="circle5533-2"
|
||||
r="0.45"
|
||||
cy="3.763"
|
||||
cx="3.047"
|
||||
style="fill:black;stroke:none" />
|
||||
</pattern>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6251"
|
||||
id="radialGradient6257"
|
||||
cx="43.594852"
|
||||
cy="64.037575"
|
||||
fx="43.594852"
|
||||
fy="64.037575"
|
||||
r="40.309017"
|
||||
gradientTransform="matrix(0.59648475,0.00739768,-0.04385539,3.5361183,20.778733,-151.03969)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6263"
|
||||
id="radialGradient6269"
|
||||
cx="9.3633108"
|
||||
cy="55.759705"
|
||||
fx="9.3633108"
|
||||
fy="55.759705"
|
||||
r="10.192934"
|
||||
gradientTransform="matrix(1.7219869,-0.16759611,0.20238823,2.0794627,-18.045295,-57.994962)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6263"
|
||||
id="radialGradient6281"
|
||||
cx="94.971725"
|
||||
cy="51.34853"
|
||||
fx="94.971725"
|
||||
fy="51.34853"
|
||||
r="10.11339"
|
||||
gradientTransform="matrix(1.712509,0.22121172,-0.24487092,1.8956667,-54.958458,-66.475438)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6285"
|
||||
id="radialGradient6291"
|
||||
cx="51.848541"
|
||||
cy="40.586941"
|
||||
fx="51.848541"
|
||||
fy="40.586941"
|
||||
r="39.872793"
|
||||
gradientTransform="matrix(1.0306387,-0.02813654,0.01290035,0.47253874,-2.1652835,18.242233)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6301"
|
||||
id="radialGradient6307"
|
||||
cx="51.174587"
|
||||
cy="23.774878"
|
||||
fx="51.174587"
|
||||
fy="23.774878"
|
||||
r="13.729521"
|
||||
gradientTransform="matrix(1.7711326,0.21454766,-0.1314814,1.0854049,-36.068589,-13.333513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6317"
|
||||
id="radialGradient6323"
|
||||
cx="52.769822"
|
||||
cy="25.955126"
|
||||
fx="52.769822"
|
||||
fy="25.955126"
|
||||
r="13.984869"
|
||||
gradientTransform="matrix(1,0,0,0.67350139,0,8.4743126)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="94.627422"
|
||||
inkscape:cy="46.695776"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1907"
|
||||
inkscape:window-height="1171"
|
||||
inkscape:window-x="559"
|
||||
inkscape:window-y="71"
|
||||
inkscape:window-maximized="0"
|
||||
borderlayer="true"
|
||||
inkscape:snap-global="false"
|
||||
fit-margin-top="2"
|
||||
fit-margin-right="1"
|
||||
fit-margin-bottom="1"
|
||||
fit-margin-left="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>cooking pot - coloured</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>saucepan</rdf:li>
|
||||
<rdf:li>pot</rdf:li>
|
||||
<rdf:li>pan</rdf:li>
|
||||
<rdf:li>boiling</rdf:li>
|
||||
<rdf:li>kitchen</rdf:li>
|
||||
<rdf:li>topf</rdf:li>
|
||||
<rdf:li>kochtopf</rdf:li>
|
||||
<rdf:li>küche</rdf:li>
|
||||
<rdf:li>line art</rdf:li>
|
||||
<rdf:li>outline</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:description>coloured line art cooking pot</dc:description>
|
||||
<dc:date>2015-06-16</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Frank Tremmel</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Ebene 2"
|
||||
transform="translate(4.6629416,-9.0371309)">
|
||||
<path
|
||||
style="fill:url(#radialGradient6257);fill-rule:evenodd;stroke:#97c1d5;stroke-width:0.29055119;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 13.057516,34.390919 c -0.970858,3.620986 -0.13302,7.015885 1.664277,10.290851 l 3.301257,40.100125 c 0,0 8.980519,15.003378 32.735744,14.896602 33.515361,-0.150646 37.517369,-16.367871 37.517369,-16.367871 l 3.126447,-38.253004 1.395092,-4.933981 c 0,0 0.345369,-3.909324 0.07618,-7.939626 C 92.399464,25.081107 77.013723,20.763784 66.39103,18.390864 59.387023,16.826294 49.358197,16.730118 42.298995,18.023047 c -8.981437,1.644996 -19.2044,2.6532 -25.931123,8.827616 -2.022232,1.856194 -3.310356,7.540256 -3.310356,7.540256 z"
|
||||
id="path4236"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccscccssssc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6291);fill-rule:evenodd;stroke:#00ff00;stroke-width:0.29055116;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="M 54.203698,16.746378 C 51.043852,16.539432 15.001199,19.52367 13.368281,32.125951 11.8575,43.785624 37.784241,48.085198 50.31461,48.74296 65.397651,49.53472 91.79952,44.56666 92.741017,32.833057 93.628635,21.770932 63.800818,17.374916 54.203698,16.746378 Z"
|
||||
id="path6283"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:url(#pattern6132);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29055119;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.308"
|
||||
d="m 15.052485,43.878537 3.153545,40.963566 c 12.226513,17.666627 28.154208,14.965309 35.019674,15.468587 13.540281,0.99259 25.773589,-4.405468 34.683411,-16.769018 l 4.356443,-42.426551 c -1.117727,1.912501 -1.477611,3.687213 -3.446142,5.754406 0,0 0.597736,20.89054 -2.99099,30.430078 -2.515924,6.687819 -6.493073,13.531677 -12.484135,17.425771 -5.752256,3.738874 -13.298276,4.35606 -20.156676,4.529196 -7.103189,0.179316 -11.281858,0.228173 -17.806659,-2.585085 -4.850589,-2.091399 -10.123923,-7.3092 -11.973204,-11.437254 -5.390965,-12.033976 -6.274578,-38.9479 -6.274578,-38.9479 -0.820391,-0.29462 -1.552405,-1.300366 -2.080689,-2.405796 z"
|
||||
id="path6032"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccscccssssscc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#114665;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 86.331028,43.136012 c -7.902505,4.223131 -16.631038,6.098474 -25.54433,7.005703 -9.524605,0.96945 -21.215527,0.05002 -31.815819,-2.813733 -3.606253,-0.974257 -8.134791,-3.10385 -10.921599,-4.994928 -2.766266,-1.877138 -4.994515,-4.535999 -4.979227,-6.69883 l -0.828972,-2.774259 c 3.31e-4,1.079047 -0.503668,3.312139 -0.129971,5.678972 0.453631,2.873093 0.953308,4.971374 1.84554,5.775706 l 3.124553,40.378551 c 1.307384,3.193811 3.6137,6.418036 6.045416,8.321042 5.019287,3.927979 14.045069,8.021314 28.631747,8.217114 14.6251,0.19632 24.441836,-4.080731 30.235265,-8.412675 5.793428,-4.331945 7.749679,-9.390129 7.749679,-9.390129 l 3.125817,-39.54574 c 0.451647,-0.821268 0.423211,-1.766977 0.472172,-2.534902 0.12372,-1.940469 0.881469,-6.184266 0.743499,-8.066137 -0.785357,3.756377 -2.278335,6.928151 -7.75377,9.854245 z m 5.699364,-2.709546 c -0.02667,1.295234 -0.654892,3.600925 -1.446747,4.229835 -1.120013,10.384175 -1.889482,28.174236 -3.555168,37.830847 -0.108145,0.227683 -1.197015,3.817974 -6.348508,7.669921 C 75.363614,94.13229 66.020776,98.6828 51.952462,98.493952 37.845727,98.304588 29.70998,94.135747 25.258945,90.582851 22.959704,88.747556 20.997769,86.65721 19.84293,83.973476 18.220104,73.570993 17.281273,55.482523 15.494006,43.968092 c -0.93713,-0.783066 -1.78652,-3.307084 -1.964584,-4.21442 0.588711,0.808185 3.882149,3.850612 4.547059,4.301808 3.114008,2.11311 6.98591,3.871305 10.896326,4.927735 10.915818,2.94899 22.413055,3.712111 32.349925,2.700699 9.219834,-0.938429 20.124063,-3.842798 25.896484,-7.277187 1.458858,-0.86797 3.880794,-2.726347 4.811176,-3.980261 z"
|
||||
id="path4182"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssccsccsssccscscccssscccssssc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6269);fill-rule:evenodd;stroke:none;stroke-width:0.29055119;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 12.028983,35.620801 -5.0066572,-0.09753 c -3.4777953,0.739873 -4.69785,2.695452 -5.9819812,4.616529 -1.74356053,2.80447 -0.83945,4.886847 -0.84528,7.21739 l 3.1860552,4.031336 13.1018392,5.136701 3.38112,0.747747 0.487661,-3.576184 c -0.439934,-2.135547 0.140905,-3.821955 -2.275753,-6.827261 L 15.507636,47.162126 7.2173904,43.553431 7.2824114,41.40772 12.679199,41.147635 C 12.281975,39.708752 11.981814,37.72942 12.028983,35.620801 Z"
|
||||
id="path4240"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6281);fill-rule:evenodd;stroke:none;stroke-width:0.29055119;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 93.435945,40.952567 0.650216,-7.477476 5.266744,-0.06502 c 0,0 4.628435,1.916429 6.047005,3.836271 1.12176,1.518143 1.55333,3.575079 1.49549,5.461809 -0.0617,2.014138 -0.60888,4.21848 -1.95064,5.721895 -4.4866,5.027159 -18.271054,8.647864 -18.271054,8.647864 l 0.195064,-5.91696 1.430474,-4.161378 3.901292,-0.84528 7.477477,-3.576184 c 0.922017,-0.780259 1.317087,-1.560517 0,-2.340776 z"
|
||||
id="path4238"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsssccccccc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#114665;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 3.5377717,35.989435 c -1.7636463,1.110238 -3.05409124,2.838046 -3.81000341,4.78298 -0.58227496,1.498172 -1.01154169,3.094836 -0.78652879,4.674773 0.27021251,1.897308 1.16994419,4.629469 2.313946,5.368023 4.8415875,3.125671 10.9323845,6.059986 16.4807465,7.413077 1.007274,0.245646 2.456816,0.862516 3.103509,-0.299316 0.794919,-1.42813 0.210955,-4.427521 0.08979,-5.963656 C 20.77834,50.052324 20.130302,48.10735 18.914608,46.598972 18.182658,45.933164 17.03823,45.725125 16.13867,46.164049 13.953169,45.879736 11.833282,45.084182 9.5205674,43.991386 9.053278,43.716649 8.0491965,42.782937 9.392252,42.872727 c 0.754245,-0.02209 2.524532,0.07028 3.729098,0.102898 -0.488065,-1.781224 -0.825954,-3.583585 -0.932884,-4.6307 -0.126832,-1.242004 -0.187656,-1.887266 -0.08742,-3.984497 -2.029657,-0.463936 -5.6409038,-0.210663 -8.5632703,1.629007 z m 8.4355043,0.220283 c -0.06949,0.194022 -0.215553,1.688258 0.303948,3.860274 -1.932136,0.289603 -4.1066337,-0.417822 -5.893105,0.06579 -1.0658112,0.305862 -1.1775399,2.249448 -0.4771872,3.029573 1.7390234,1.937103 4.3381182,2.585262 6.6516622,3.539716 1.127266,0.402279 2.251091,0.905612 3.383774,1.23714 0.383917,-0.09156 0.827628,-0.266894 1.096602,-0.239113 1.276925,0.193098 1.569658,1.873354 1.8791,2.931676 0.3972,1.358462 0.359516,2.808959 0.506781,4.213174 0.132466,1.263102 -1.604624,0.230497 -2.313763,0.07306 C 12.105193,53.809645 7.2213468,51.875471 2.9351344,48.982794 1.3756614,47.930338 1.0905282,45.943324 0.91905773,44.247229 0.73213467,42.398285 1.549942,40.537244 2.6685465,39.103421 3.8450987,37.595321 5.6335003,36.65846 7.6437403,36.360603 9.6539802,36.062746 10.575694,36.13986 11.973276,36.209718 Z"
|
||||
id="path4188"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssssscccccscscccscccsssssssc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#114665;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 96.664785,32.324802 c -1.00554,-0.0059 -1.457703,0.01982 -2.486071,0.117331 -0.339156,3.302519 -1.099684,6.89679 -0.944831,9.86997 1.382288,-0.249723 1.968243,-0.439891 3.561386,-0.768807 0.711252,-0.146843 2.429101,-0.241617 2.680121,0.102745 -2.983188,2.432319 -6.883396,3.998402 -10.272265,4.615717 -1.126815,-0.561762 -1.420436,0.720613 -1.828768,1.73269 -1.268411,3.143835 -1.408882,6.954252 -1.142852,9.78073 6.215335,-1.50532 11.236529,-3.448899 16.784595,-6.649499 1.95868,-1.129929 3.80714,-3.150007 4.31153,-5.489844 0.87938,-4.079347 0.26275,-8.51166 -3.30298,-10.852996 -2.32191,-1.524616 -4.565931,-2.441682 -7.359865,-2.458037 z m -0.885756,1.772539 c 2.255871,-0.25982 5.086841,0.625606 7.029251,1.771522 2.90566,1.714179 3.11234,5.241104 2.91071,8.491924 -0.12298,1.98277 -1.62031,3.417946 -3.21068,4.361607 -4.838916,2.871222 -9.807438,5.646597 -15.206001,7.173996 0.1763,-2.4708 0.28014,-5.707124 1.402769,-7.939359 0.913705,0.418305 1.805672,-0.301457 2.649544,-0.592812 1.650541,-0.569865 3.392365,-1.037708 4.976006,-1.788073 1.897966,-0.899299 3.584633,-2.202502 5.222102,-3.496068 1.0908,-0.86171 -0.089,-2.61237 -1.22584,-2.883902 -1.770917,-0.422967 -2.75876,-0.403095 -3.733526,-0.336824 -0.867387,0.05897 -1.78377,0.212753 -2.956183,0.341533 l 0.467705,-4.744326 c 0.485588,-0.183344 1.155438,-0.299473 1.674143,-0.359218 z"
|
||||
id="path4186"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccsccscssssssssccsssssccs" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#761400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 53.884766,16.126953 c -5.557786,0.07355 -15.61495,1.137209 -24.458985,3.658203 -4.422017,1.260498 -8.534763,2.874592 -11.654297,5.011719 -3.119533,2.137127 -5.580497,4.603389 -5.567419,8.06621 0.01297,3.435685 2.385648,6.458012 5.454138,8.63074 3.068491,2.172729 7.145378,4.004026 11.638672,5.273753 8.986587,2.539454 19.531414,3.342116 26.851405,3.025075 7.27763,-0.315206 16.345486,-1.657015 23.966325,-4.425465 3.810419,-1.384226 7.652616,-3.436889 10.151177,-5.541646 2.498561,-2.104756 4.072366,-4.40144 3.93539,-7.454448 C 94.059597,29.215589 91.836997,26.673561 88.822266,24.667969 85.807535,22.662376 81.867704,21.075254 77.626953,19.808594 69.145452,17.275272 59.514029,16.052458 53.884766,16.126953 Z m -0.09375,1.990235 c 5.161275,-0.0683 14.875844,1.388094 23.02539,3.822265 4.074773,1.217085 8.063243,2.881791 10.695313,4.632813 2.63207,1.751022 4.201928,4.44425 4.248047,6.316406 0.0422,1.713101 -0.513538,2.816894 -1.50586,3.888672 0.133792,-1.284739 -0.05585,-2.638781 -0.294922,-3.792969 -0.883295,-4.26434 -4.674866,-6.026122 -4.987383,-6.142263 -1.944578,-0.722666 -3.489926,-0.740489 -0.413007,0.704763 0.301769,0.141743 3.282497,1.95974 4.054058,5.684649 0.330916,1.597587 0.623683,3.614384 0.09462,4.525926 -0.529064,0.911543 -0.86296,1.163661 -1.213128,1.416378 0.05709,-0.73712 0.0247,-1.689944 -0.197266,-2.761719 -0.478086,-2.308383 -1.837013,-5.129104 -4.982422,-7.007812 -8.801122,-5.256785 -20.228371,-7.643036 -30.455078,-7.0757 -12.256666,0.67995 -25.285897,2.847788 -33.010821,10.468704 -1.65682,1.634513 -1.775821,4.267344 -1.688398,5.706605 -0.32994,-0.339464 -0.63949,-0.686588 -0.910156,-1.044922 -0.286064,-1.702067 0.08772,-3.625798 0.730469,-4.829652 2.445831,-4.426017 5.168618,-5.465565 6.29382,-5.98332 2.636318,-1.213088 1.111932,-1.089748 0.14368,-0.661637 -1.700823,0.752016 -4.779003,1.769504 -7.367188,6.453125 -0.604493,1.0939 -0.868513,2.085621 -0.96875,2.960938 -0.291275,-0.739379 -0.462164,-1.479511 -0.464843,-2.189454 -0.0085,-2.250548 1.731253,-4.874631 4.43164,-6.724609 2.700387,-1.849979 6.709155,-3.736408 10.957031,-4.947266 8.495751,-2.421717 18.552403,-3.350674 23.785154,-3.419921 z m 28.101717,12.100507 c 2.87771,1.718815 3.988327,4.295526 4.423671,6.397539 0.217672,1.051007 0.512681,2.131639 -0.564368,3.4153 -1.07705,1.283662 -3.796741,2.324722 -6.367272,3.258528 -7.230461,2.626638 -16.609361,3.943673 -23.591795,4.246094 -6.940074,0.300586 -17.708429,-0.672706 -26.310547,-3.103515 -4.301059,-1.215405 -9.009965,-3.437776 -10.558197,-4.60329 -0.214894,-1.579308 -0.812957,-4.584683 0.673431,-5.998273 7.542359,-7.17296 20.204767,-10.512797 32.362383,-10.871251 10.940373,-0.322565 21.984503,2.647538 29.932694,7.258868 z"
|
||||
id="path4184"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssssssssssssssscssssccsssscccssscsssscscssscssc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6307);fill-rule:evenodd;stroke:#000000;stroke-width:0.31568876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||
d="m 53.013876,16.936135 c -3.411973,0.04344 -9.422474,1.739094 -9.290568,4.297259 0.03092,0.59979 0.482412,1.119976 1.173523,1.561868 -0.337217,-0.180129 -0.663019,-0.365858 -0.974045,-0.562357 0.88819,2.509088 2.374404,4.567967 4.244207,6.340844 -1.351681,-1.008345 -2.397818,-2.62946 -3.446296,-4.244207 -3.2545,0.902265 -4.723168,2.400917 -5.593865,4.097782 1.073644,2.203659 2.911725,3.682856 5.143978,4.445807 3.053011,1.043474 6.253282,1.889712 9.39243,1.648874 3.722913,-0.285626 7.45543,-0.607065 10.890634,-2.947602 0.953104,-0.649386 1.698669,-1.530882 1.697682,-3.147079 -1.100336,-1.832471 -3.02877,-3.212815 -5.593863,-4.246328 -0.669039,1.487842 -1.687551,2.783567 -3.153446,3.836763 2.628349,-2.144901 3.240975,-4.289317 4.152956,-6.434218 -0.143617,0.111132 -0.301455,0.217175 -0.45413,0.324682 0.350792,-0.359912 0.570164,-0.749857 0.602677,-1.173523 0.187185,-2.439138 -5.599876,-3.839198 -8.791874,-3.798565 z m -5.67026,6.873493 c 1.157324,0.328959 2.420671,0.546354 3.58211,0.647241 -1.370341,-0.105751 -2.548504,-0.33103 -3.58211,-0.647241 z m 5.738167,0.687561 c -0.10956,0.0101 -0.206357,0.02476 -0.318315,0.03395 -0.05938,1.74e-4 -0.111036,-0.004 -0.169768,-0.0042 0.152554,-0.003 0.326639,-0.02114 0.488083,-0.02971 z"
|
||||
id="path4242"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:url(#pattern5716);fill-opacity:1;fill-rule:evenodd;stroke:#7e0000;stroke-width:0.31568876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.319"
|
||||
d="m 53.14815,17.116699 c -3.411973,0.04344 -9.423531,1.737963 -9.291624,4.296128 0.112349,2.178881 5.662426,3.342614 8.792074,3.297028 3.345426,-0.04873 9.111906,-1.454726 9.291625,-3.796578 0.187185,-2.439138 -5.600077,-3.837212 -8.792075,-3.796578 z"
|
||||
id="path4242-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:url(#pattern5773);fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.31568876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.31"
|
||||
d="m 44.056345,22.411926 c 0.929247,2.62507 2.502073,4.767457 4.495948,6.594056 1.348784,0.540875 2.697568,1.177895 4.046352,0.949145 2.39459,0.01448 3.565145,-0.787051 4.795677,-1.548605 2.853158,-2.21467 3.454392,-4.42934 4.396037,-6.644011 -1.847022,1.429237 -4.394677,2.578221 -8.891984,2.947344 -4.192504,0.01225 -6.766826,-0.986865 -8.84203,-2.297929 z"
|
||||
id="path4244-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#pattern5767);fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:0.31568876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.293"
|
||||
d="m 44.855625,24.510034 c -3.2545,0.902265 -4.72426,2.399443 -5.594957,4.096308 1.073644,2.203658 2.913109,3.683041 5.145363,4.445992 3.05301,1.043475 6.252385,1.889353 9.391533,1.648515 3.722913,-0.285626 7.45498,-0.606807 10.890184,-2.947343 0.953104,-0.649387 1.699456,-1.530967 1.698469,-3.147164 -1.100336,-1.832471 -3.029863,-3.212659 -5.594957,-4.246172 -0.88882,1.976606 -2.392424,3.617876 -4.745722,4.795677 -1.975229,0.706106 -3.984605,1.35944 -7.393335,-0.149865 -1.527615,-0.974474 -2.658272,-2.742859 -3.796578,-4.495948 z"
|
||||
id="path4246-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsssccccc" />
|
||||
<path
|
||||
style="fill:url(#pattern5877);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35433072;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.308"
|
||||
d="m 93.701469,35.356439 -0.781615,6.942553 c 1.646746,-0.500902 4.820596,-1.350077 6.650863,-0.935288 0.600773,-0.852196 2.707393,-0.821466 3.017413,-0.881483 0.42053,-3.007273 -6.096967,-5.081763 -8.886661,-5.125782 z"
|
||||
id="path5777"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#pattern5877-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35433072;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.304"
|
||||
d="m 12.148571,37.087896 c -0.146246,2.048063 0.493186,3.899707 0.781615,5.839101 C 11.237462,42.83989 7.649818,42.588418 5.8655282,42.773321 5.5406182,42.840668 5.0431994,42.595535 4.8251337,42.02977 4.2441254,38.541061 9.2803564,36.896354 12.148571,37.087896 Z"
|
||||
id="path5777-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#pattern6230);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29055119;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.306"
|
||||
d="m 19.4375,32.861709 c -1.677921,1.729167 -1.529343,5.708333 -1.125,7.5 0,0 12.465924,7.555534 34.3125,7.8125 21.846576,0.256966 34,-7.625 34,-7.625 0.782169,-2.496438 0.391409,-4.717091 -1.25,-7.375 0.80026,1.67934 -5.163519,11.840375 -32.8125,12.25 -27.648981,0.409625 -32.971993,-10.879418 -33.125,-12.5625 z"
|
||||
id="path6134"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cczcczc" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient6323);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 52.532159,16.556279 c -2.714489,0.132582 -5.503322,0.728548 -7.836928,2.186207 -1.085432,0.678002 -1.837325,2.008118 -1.358146,3.365214 0.311477,0.882142 0.776289,1.928268 0.776289,1.928268 -1.70073,0.346989 -4.879489,2.004243 -5.271083,3.868959 -0.41159,1.959931 1.473539,3.812598 3.068696,4.63298 3.22678,1.659518 7.449033,2.597898 11.041137,2.804578 3.650547,0.210042 7.197007,-0.648004 10.546055,-2.076237 1.377219,-0.587328 3.028282,-1.745617 3.235482,-3.652107 0.218251,-2.008168 -1.298518,-3.537862 -2.869366,-4.488676 -0.747733,-0.452593 -2.510709,-1.238328 -2.510709,-1.238328 0.541675,-1.091617 1.167613,-2.307767 1.050756,-3.529831 -0.159309,-1.666024 -2.00184,-2.438714 -3.414112,-2.90397 -2.071578,-0.682458 -4.2806,-1.00341 -6.458071,-0.897057 z m 7.583414,2.55932 c 1.216098,0.532371 1.62392,2.030524 0.359432,2.751621 -2.138443,1.219485 -4.616291,1.672458 -7.025463,1.817041 -2.662919,0.15981 -5.3876,-0.1565 -7.935145,-1.04975 -1.219091,-0.427453 -1.212539,-1.988755 -0.05451,-2.815673 1.962375,-1.401277 3.818399,-1.79449 6.750171,-1.996946 2.93177,-0.202456 5.530639,0.254058 7.905515,1.293707 z m 0.423286,3.983124 c -1.02791,1.987049 -2.360814,3.972321 -4.323302,5.125719 -2.105167,1.237256 -4.768634,0.851173 -6.915408,-0.07356 -1.941861,-0.836464 -2.784559,-2.49055 -3.767221,-4.294839 2.643447,1.093376 5.231023,1.421667 8.054458,1.265432 2.400544,-0.132834 4.796519,-0.89671 6.951473,-2.022755 z m -15.926385,1.871695 c 1.116885,1.840307 2.667984,4.028448 4.761983,4.778426 2.489555,0.891648 5.381306,0.751329 7.69507,-0.766339 1.511895,-0.991696 2.649621,-2.448868 3.624246,-3.946302 1.794312,0.580593 3.828216,1.290276 4.807154,3.04277 0.621036,1.111777 -0.278094,2.120225 -1.20834,2.636943 -2.88343,1.601639 -6.164166,2.446802 -9.427659,2.68102 -3.397977,0.24387 -6.853589,-0.327427 -10.073713,-1.427026 -1.718123,-0.586699 -3.65447,-1.383658 -4.527026,-3.101705 -0.570378,-1.123064 0.42755,-2.159632 1.359286,-2.670608 0.947775,-0.519771 1.957281,-0.917054 2.988999,-1.227179 z"
|
||||
id="path4190"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssscsssssscsssssssssscsscsccsscssssssc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 47 KiB |
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="salt_shaker"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="297px"
|
||||
height="309px"
|
||||
viewBox="0 0 297 309"
|
||||
enable-background="new 0 0 297 309"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="pepe-creolo.svg"><metadata
|
||||
id="metadata50"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs48" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="851"
|
||||
id="namedview46"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.1035599"
|
||||
inkscape:cx="148.5"
|
||||
inkscape:cy="154.5"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="salt_shaker" /><path
|
||||
style="fill:#6c5353;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4"
|
||||
d="m 38.327,223.182 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6"
|
||||
d="m 38.327,250.455 c 3.762,0 6.818,3.056 6.818,6.817 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 0,-3.761 3.055,-6.817 6.818,-6.817" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8"
|
||||
d="m 65.6,236.818 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 -10e-4,-3.762 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10"
|
||||
d="m 86.054,230 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12"
|
||||
d="m 65.6,209.545 c 3.762,0 6.818,3.057 6.818,6.818 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 -10e-4,-3.761 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path14"
|
||||
d="m 86.054,257.272 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#483737;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path16"
|
||||
d="m 58.781,264.091 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path18"
|
||||
d="m 11.054,243.637 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.763 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path20"
|
||||
d="m 65.6,291.363 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.819 -6.818,6.819 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.819 6.818,-6.819" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path22"
|
||||
d="m 24.69,270.909 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.057,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.762 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#c2dbff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path24"
|
||||
d="m 148.782,187.726 113.865,-63.407 c 2.044,-1.365 4.088,-2.73 6.133,-4.774 5.46,-5.453 8.183,-12.271 8.183,-19.772 l 0,-30.683 -50.45,-50.454 -30.682,0 c -7.504,0 -14.322,2.727 -19.775,8.18 -2.045,2.047 -3.409,4.091 -4.774,6.136 l -63.408,113.865 40.908,40.909 z" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path26"
|
||||
d="m 182.194,44.544 c -3.409,-2.044 -7.504,-0.682 -9.548,2.727 l -25.229,45.001 c -2.044,3.409 -0.682,7.5 2.73,9.545 1.365,0.682 2.044,0.682 3.409,0.682 2.724,0 4.774,-1.365 6.133,-3.409 l 25.229,-45.001 c 2.044,-4.092 0.686,-8.18 -2.724,-9.545" /><path
|
||||
d="m 256.509,48.636 0,30.682 c 0,7.501 -2.73,14.319 -8.184,19.772 -2.044,2.047 -4.088,3.409 -6.132,4.774 l -42.858,23.866 56.485,0 -106.009,59.422 112.836,-62.834 c 2.044,-1.365 4.088,-2.727 6.133,-4.774 5.453,-5.453 8.183,-12.271 8.183,-19.772 l 0,-30.682 -20.454,-20.454 z"
|
||||
id="path30"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#b0c4d8" /><polygon
|
||||
points="108.55,147.5 148.78,187.73 149.812,187.152 148.782,187.726 128.328,167.271 199.335,127.73 118.78,127.73 107.87,146.82 "
|
||||
id="polygon32"
|
||||
style="fill:#c2dbff;fill-opacity:1;stroke:none" /><polygon
|
||||
points="255.82,127.73 199.335,127.73 128.328,167.271 148.782,187.726 149.812,187.152 "
|
||||
id="polygon34"
|
||||
style="fill:#b0c4d8;fill-opacity:1;stroke:none" /><path
|
||||
style="fill:#b0c4d8"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path36"
|
||||
d="m 81.962,175.455 c -1.365,1.364 -1.365,3.408 -1.365,4.773 2.729,8.184 7.5,15.681 12.957,21.134 6.136,6.139 13.636,10.228 21.134,12.957 1.365,0.68 3.409,0 4.774,-1.364 l 17.728,-17.725 -37.5,-37.5 -17.728,17.725 z" /><path
|
||||
style="fill:#6d90a8"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path40"
|
||||
d="m 129.007,187.047 -17.045,17.045 c -1.365,1.365 -3.409,1.365 -4.774,1.365 -6.818,-2.044 -13.636,-6.139 -19.089,-10.913 2.044,2.73 4.091,5.46 6.136,7.504 6.136,6.133 13.636,10.228 21.137,12.951 1.365,0.686 3.409,0 4.774,-1.358 l 18.725,-17.231 -9.864,-9.363 z" /><path
|
||||
d="m 153.84546,155.202 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.818 6.818,-6.818"
|
||||
id="path3728"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6c5353;fill-opacity:1" /><path
|
||||
d="m 148.61623,165.36115 c 3.762,0 6.818,3.056 6.818,6.817 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 0,-3.761 3.055,-6.817 6.818,-6.817"
|
||||
id="path3730"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff2a7f;fill-opacity:1" /><path
|
||||
d="m 164.48,151.72415 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 -0.001,-3.762 3.055,-6.818 6.818,-6.818"
|
||||
id="path3732"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffe680;fill-opacity:1" /><path
|
||||
d="m 173.52477,143.95538 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818"
|
||||
id="path3734"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff2a7f;fill-opacity:1" /><path
|
||||
d="m 182.54462,139.66346 c 3.762,0 6.818,3.057 6.818,6.818 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 -0.001,-3.761 3.055,-6.818 6.818,-6.818"
|
||||
id="path3736"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#808000;fill-opacity:1" /><path
|
||||
d="m 178.754,155.0643 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818"
|
||||
id="path3738"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#808000;fill-opacity:1" /><path
|
||||
d="m 140.35862,160.92007 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.763 3.056,-6.818 6.818,-6.818"
|
||||
id="path3742"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#808000;fill-opacity:1" /><path
|
||||
d="m 160.67693,164.4353 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.819 -6.818,6.819 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.819 6.818,-6.819"
|
||||
id="path3744"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff2a7f;fill-opacity:1" /><path
|
||||
d="m 170.021,161.40792 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818"
|
||||
id="path3740"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#483737;fill-opacity:1" /><path
|
||||
d="m 151.14232,171.55361 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.057,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.762 3.056,-6.818 6.818,-6.818"
|
||||
id="path3746"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffe680;fill-opacity:1" /><path
|
||||
style="fill:#6c5353;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3748"
|
||||
d="m 201.84546,129.202 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3750"
|
||||
d="m 196.61623,139.36115 c 3.762,0 6.818,3.056 6.818,6.817 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 0,-3.761 3.055,-6.817 6.818,-6.817" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3752"
|
||||
d="m 212.48,125.72415 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 -0.001,-3.762 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3754"
|
||||
d="m 235.78631,125.08615 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3758"
|
||||
d="m 226.754,129.0643 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3760"
|
||||
d="m 188.35862,134.92007 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.763 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3762"
|
||||
d="m 208.67693,138.4353 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.819 -6.818,6.819 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.819 6.818,-6.819" /><path
|
||||
style="fill:#483737;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3764"
|
||||
d="m 218.021,135.40792 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3766"
|
||||
d="m 199.14232,145.55361 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.057,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.762 3.056,-6.818 6.818,-6.818" /><path
|
||||
d="m 188.07177,150.62023 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818"
|
||||
id="path3768"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#483737;fill-opacity:1" /><path
|
||||
style="fill:#6c5353;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3770"
|
||||
d="m 129.12546,128.58046 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3772"
|
||||
d="m 140.53469,143.49346 c 3.762,0 6.818,3.056 6.818,6.817 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 0,-3.761 3.055,-6.817 6.818,-6.817" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3774"
|
||||
d="m 134.53077,134.6103 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 -0.001,-3.762 3.055,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#014463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path38"
|
||||
d="M 288.56,61.59 234.01,7.04 C 232.64,5.68 231.28,5 229.24,5 l -33.42,0 c -10.9,0 -21.811,4.09 -29.311,12.27 -2.729,2.73 -4.779,6.14 -6.819,9.55 L 94.24,144.77 72.42,165.91 c -4.78,4.77 -6.82,12.27 -4.09,19.09 0.44,1.32 0.91,2.61 1.42,3.88 0.3,-0.06 0.61,-0.09 0.92,-0.09 2.79,0 5.07,2.28 5.07,5.07 0,1.52 -0.67,2.89 -1.74,3.81 1.65,2.87 3.5,5.6 5.57,8.19 0.73,-0.4 1.57,-0.63 2.46,-0.63 2.8,0 5.07,2.27 5.07,5.06 0,1.04 -0.31,2 -0.84,2.81 2.55,2.4 5.24,4.57 8.09,6.511 0.91,-0.931 2.19,-1.5 3.59,-1.5 2.8,0 5.07,2.279 5.07,5.069 0,0.46 -0.06,0.91 -0.19,1.34 2.71,1.32 5.53,2.461 8.46,3.44 2.05,0.67 4.09,0.67 6.14,0.67 4.77,0 9.54,-2.04 12.95,-5.45 l 21.82,-21.819 117.949,-65.45 c 3.41,-2.05 6.82,-4.09 9.551,-6.82 8.18,-8.18 12.27,-18.41 12.27,-29.32 l 0,-33.411 c -1.36,-2.04 -2.04,-3.41 -3.4,-4.77 z M 120.15,213.63 c -1.37,1.37 -3.41,1.37 -4.78,1.37 -8.18,-2.73 -15,-7.5 -21.13,-12.96 -6.14,-6.13 -10.23,-12.95 -12.96,-21.13 -0.68,-1.37 0,-3.41 1.37,-4.78 l 17.72,-17.72 38.19,38.18 -18.41,17.04 z M 276.96,99.77 c 0,7.5 -2.729,14.32 -8.18,19.77 -2.04,2.05 -4.09,3.41 -6.13,4.78 L 148.78,187.73 108.55,147.5 171.96,33.63 c 1.37,-2.04 2.73,-4.08 4.771,-6.13 4.779,-6.14 11.6,-8.86 19.09,-8.86 l 30.689,0 50.45,50.45 0,30.68 z" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3776"
|
||||
d="m 181.60631,126.84153 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3780"
|
||||
d="m 158.78784,133.67199 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3782"
|
||||
d="m 121.81862,132.39699 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.763 3.056,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ff2a7f;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3784"
|
||||
d="m 124.5477,144.94453 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.819 -6.818,6.819 -3.762,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.055,-6.819 6.818,-6.819" /><path
|
||||
style="fill:#483737;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3786"
|
||||
d="m 131.15189,151.13479 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818" /><path
|
||||
style="fill:#ffe680;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3788"
|
||||
d="m 118.81616,139.70284 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.057,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.762 3.056,-6.818 6.818,-6.818" /><path
|
||||
d="m 155.73315,128.62423 c 3.762,0 6.818,3.056 6.818,6.817 0,3.763 -3.056,6.818 -6.818,6.818 -3.762,0 -6.818,-3.056 -6.818,-6.818 0,-3.761 3.055,-6.817 6.818,-6.817"
|
||||
id="path3790"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff2a7f;fill-opacity:1" /><path
|
||||
d="m 143.19708,128.74007 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.056,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.763 3.056,-6.818 6.818,-6.818"
|
||||
id="path3792"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#808000;fill-opacity:1" /><path
|
||||
d="m 170.61924,128.91515 c 3.762,0 6.818,3.056 6.818,6.818 0,3.762 -3.057,6.817 -6.818,6.817 -3.762,0 -6.818,-3.056 -6.818,-6.817 0,-3.762 3.056,-6.818 6.818,-6.818"
|
||||
id="path3794"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffe680;fill-opacity:1" /><path
|
||||
style="fill:#483737;fill-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3796"
|
||||
d="m 150.99177,138.73561 c 3.762,0 6.818,3.057 6.818,6.818 0,3.761 -3.057,6.818 -6.818,6.818 -3.761,0 -6.818,-3.057 -6.818,-6.818 0,-3.761 3.057,-6.818 6.818,-6.818" /><polygon
|
||||
style="fill:#c2dbff;fill-opacity:1;stroke:none;opacity:0.66"
|
||||
id="polygon4598"
|
||||
points="108.55,147.5 148.78,187.73 149.812,187.152 148.782,187.726 128.328,167.271 199.335,127.73 118.78,127.73 107.87,146.82 " /></svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#f44336" d="M74.06 115.46c11.38 11.38 30.01 11.38 41.4 0c11.38-11.38 11.38-30.01 0-41.4L84.7 43.3L43.3 84.7z"/><path fill="#fdd835" d="M84.7 43.3L53.94 12.54c-11.38-11.38-30.01-11.38-41.4 0c-11.38 11.38-11.38 30.01 0 41.4L43.3 84.7z"/><path fill="#c62828" d="m86.819 45.423l-41.4 41.401l-2.122-2.12l41.4-41.403z"/><path fill="#fff" d="M69.43 36.25C81.59 49.5 103.65 74.5 103.65 74.5c2.86 2.61 6.79 9.34 4.22 11.66c-2.74 2.48-9.12-2.75-11.98-5.36L49.22 36.89c-2.85-2.61-12.39-11.06-10.53-17.01c3.51-11.23 17.2 1.61 30.74 16.37" opacity="0.65"/></svg>
|
||||
|
After Width: | Height: | Size: 648 B |
@@ -0,0 +1,8 @@
|
||||
<svg width="688" height="688" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="imagebot_1">
|
||||
<title/>
|
||||
<path fill="#ffffff" stroke="#ffffff" stroke-width="3" stroke-linejoin="round" stroke-linecap="round" id="imagebot_2" d="M 1.500000748049021 344.12735173511504 L 1.500000748049021 344.12735173511504 C 1.500000748049021 154.89949025154115 154.8994909667969 1.5000000327932836 344.1273524503708 1.5000000327932836 L 344.1273524503708 1.5000000327932836 C 434.9967777963877 1.5000000327932836 522.1460601760149 37.59820956543684 586.4011555858851 101.8535485996008 C 650.6562509957552 166.10783192849158 686.7540626087189 253.25711430811884 686.7540626087189 344.12735173511504 L 686.7540626087189 344.12735173511504 C 686.7540626087189 533.3535890567302 533.353589771986 686.7540618934631 344.1273524503708 686.7540618934631 L 344.1273524503708 686.7540618934631 C 154.8994909667969 686.7540618934631 1.500000748049021 533.3535890567302 1.500000748049021 344.12735173511504 z"/>
|
||||
</g>
|
||||
<metadata>image/svg+xmlOpenclipartStriped Ball2013-08-26T15:48:18A striped ball.https://openclipart.org/detail/182218/striped-ball-by-gustavorezende-182218gustavorezendeballcirclespherestripedstripes</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,23 @@
|
||||
<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="color">
|
||||
<path fill="#fcea2b" d="M45.8041,27.7451A13.8885,13.8885,0,0,0,36,31.7816c-.0415-.0411-.0876-.0773-.13-.1178V13.46a1.001,1.001,0,0,0-1-1.0031h-4.333a1.001,1.001,0,0,0-1,1.0031V28.1653A13.9287,13.9287,0,1,0,36,51.5791a13.934,13.934,0,1,0,9.8042-23.834Z"/>
|
||||
<path fill="#d0cfce" d="M47.2667,41.7489c0,13.88-3.4667,25.1334-11.2667,25.1334A25.1335,25.1335,0,0,0,61.1333,41.7489Z"/>
|
||||
<path fill="#fff" d="M10.8667,41.7489A25.1335,25.1335,0,0,0,36,66.8823c7.8,0,11.2667-11.2532,11.2667-25.1334Z"/>
|
||||
</g>
|
||||
<g id="line">
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.8667,41.7489a25.1333,25.1333,0,1,0,50.2666,0Z"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.4667,39.1489a13.0019,13.0019,0,0,1,25.4778,0"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.9362,39.1489a8.6687,8.6687,0,0,1,16.5379,0"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22.7588,39.1489a4.2946,4.2946,0,0,1,6.8944,0"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38.6059,30.9156a13.0036,13.0036,0,0,1,19.9274,8.2333"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41.0206,34.5151a8.6692,8.6692,0,0,1,13.0432,4.6338"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.9282,38.5176a4.2871,4.2871,0,0,1,6.313.6313"/>
|
||||
<g id="line-2">
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M61,15.5946l-19.4123-.554h0c-.7408,1.287-2.6022,2.191-5.5708,2.191-3.9478,0-8.1058-.1115-8.1058-.1115"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27.9113,9.8105s4.158-.1115,8.1058-.1115c2.9609,0,4.82.8993,5.565,2.1809h0L61,11.8605"/>
|
||||
<line x1="27.9113" x2="37.4962" y1="13.4654" y2="13.4654" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
<line x1="34.8705" x2="34.8705" y1="13.5222" y2="32.0589" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<line x1="30.5371" x2="30.5371" y1="13.5222" y2="25.6827" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,302 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
<svg
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
id="Layer_1"
|
||||
enable-background="new 0 0 402.75 326.25"
|
||||
xml:space="preserve"
|
||||
viewBox="0 0 402.75 326.25"
|
||||
version="1.1"
|
||||
y="0px"
|
||||
x="0px"
|
||||
>
|
||||
<polygon
|
||||
points="8.25 201.75 279.75 198 269.25 229.5 268.5 229.5 268.5 231 267.75 231 267 232.5 266.25 233.25 265.5 234.75 265.5 235.5 264.75 236.25 264.75 237 263.25 238.5 263.25 239.25 262.5 240.75 261.75 241.5 261.75 242.25 261 243 260.25 244.5 259.5 245.25 259.5 246 258.75 247.5 258 248.25 257.25 249.75 256.5 250.5 255.75 252 255 252.75 254.25 253.5 253.5 255 252.75 255.75 252 257.25 251.25 258 250.5 259.5 247.5 262.5 246.75 264 243.75 267 243 268.5 242.25 269.25 240.75 270 240 271.5 237 274.5 236.25 276 234.75 276.75 234 277.5 232.5 278.25 231.75 279.75 231 280.5 229.5 281.25 228.75 282 227.25 282.75 226.5 283.5 225 284.25 224.25 285 222.75 285.75 221.25 287.25 219.75 288 219 288.75 218.25 288.75 216.75 289.5 215.25 291 214.5 291 212.25 293.25 211.5 293.25 210.75 294 210 294 209.25 294.75 206.25 296.25 205.5 296.25 204 297 202.5 298.5 201 298.5 200.25 299.25 198.75 299.25 197.25 300 195.75 300 195 300.75 196.5 313.5 195 313.5 194.25 314.25 193.5 314.25 192.75 315 191.25 315 190.5 315.75 189 315.75 187.5 316.5 186 316.5 184.5 317.25 183 317.25 182.25 318 180.75 318 180 318.75 177 318.75 175.5 319.5 174.75 319.5 174 320.25 170.25 320.25 168.75 321 166.5 321 165.75 321.75 162 321.75 160.5 322.5 152.25 322.5 151.5 323.25 144 323.25 143.25 322.5 134.25 322.5 133.5 321.75 127.5 321.75 126 321 124.5 321 123.75 320.25 120 320.25 119.25 319.5 116.25 319.5 114.75 318.75 111.75 318.75 111 318 110.25 318 108.75 317.25 105.75 317.25 105 316.5 102.75 316.5 101.25 315.75 99.75 315.75 98.25 315 97.5 315 96 314.25 95.25 314.25 94.5 313.5 93 313.5 93 303 59.25 279 58.5 278.25 57.75 278.25 47.25 267.75 45.75 265.5 44.25 264.75 43.5 263.25 42.75 262.5 41.25 261.75 41.25 261 39.75 260.25 39.75 258.75 38.25 258 38.25 257.25 36.75 256.5 36 255.75 35.25 254.25 33 252 32.25 250.5 31.5 249.75 30.75 248.25 30 247.5 30 246.75 29.25 245.25 28.5 244.5 27.75 243 26.25 241.5 25.5 240 24.75 239.25 24.75 238.5 24 237 23.25 236.25 23.25 234.75 21.75 233.25 21.75 231.75 21 231 21 229.5 19.5 228 19.5 226.5 18.75 225.75 18.75 225 18 224.25 18 223.5 17.25 222.75 17.25 222 16.5 221.25 16.5 219.75 15.75 219 15.75 218.25 15 216.75 14.25 216 13.5 214.5 13.5 213 12.75 211.5 12.75 210.75 11.25 209.25 11.25 207.75 10.5 207 10.5 206.25 9.75 205.5 9.75 204 9 203.25 9 202.5 8.25 202.5"
|
||||
fill="#ED1C24"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="57 129 56.25 129 55.5 129.75 54 129.75 52.5 130.5 51 130.5 49.5 131.25 48.75 131.25 48 132 45.75 132 44.25 133.5 42.75 133.5 42 134.25 41.25 134.25 39.75 135 39 135.75 38.25 135.75 36.75 136.5 36 137.25 34.5 138 33.75 138.75 32.25 138.75 31.5 139.5 30 140.25 29.25 141 26.25 142.5 25.5 144 24.75 144.75 23.25 145.5 22.5 146.25 21 147 20.25 148.5 18.75 149.25 15.75 152.25 15 153.75 14.25 154.5 13.5 156 12 156.75 10.5 159.75 9.75 160.5 6 168 6 169.5 4.5 172.5 4.5 174.75 3.75 176.25 3.75 183.75 4.5 185.25 4.5 187.5 6 190.5 6 192 7.5 193.5 7.5 195 9 196.5 11.25 201 14.25 204 15 205.5 16.5 206.25 17.25 207.75 21.75 212.25 23.25 213 26.25 216 27.75 216.75 32.25 221.25 35.25 222.75 36.75 224.25 39 225 41.25 227.25 42.75 228 45 229.5 46.5 230.25 47.25 231 54.75 234.75 55.5 235.5 57 236.25 57.75 237 59.25 237 60 237.75 61.5 238.5 62.25 238.5 63 239.25 63.75 239.25 65.25 240 66 240.75 67.5 240.75 68.25 241.5 69.75 241.5 70.5 242.25 72.75 242.25 73.5 243 75 243 76.5 243.75 77.25 243.75 78.75 244.5 79.5 244.5 81 245.25 84.75 245.25 87.75 246.75 91.5 246.75 93 247.5 95.25 247.5 97.5 248.25 99.75 248.25 101.25 249 103.5 249 105.75 249.75 108 249.75 110.25 250.5 115.5 250.5 117.75 251.25 123 251.25 125.25 252 138.75 252 141.75 252.75 150.75 252.75 153.75 252 165.75 252 168.75 251.25 171.75 251.25 174.75 250.5 178.5 250.5 181.5 249.75 184.5 249.75 187.5 249 191.25 248.25 197.25 246.75 201 246 210 243.75 212.25 243 218.25 241.5 220.5 240.75 223.5 240 239.25 234.75 240.75 234 243 233.25 244.5 232.5 246 231 247.5 230.25 249.75 229.5 252.75 228 253.5 227.25 258 225 258.75 224.25 260.25 223.5 261 222.75 262.5 222 266.25 218.25 267 218.25 268.5 216.75 270 216 270.75 214.5 271.5 213.75 272.25 212.25 274.5 210 274.5 209.25 275.25 209.25 275.25 207.75 276 207 276 206.25 276.75 204.75 276.75 204 277.5 202.5 277.5 201 278.25 199.5 278.25 197.25 279 196.5 279 192.75 279.75 192 279.75 183 279 181.5 279 177.75 278.25 177 278.25 174.75 277.5 173.25 277.5 172.5 276.75 171 276.75 170.25 276 168.75 275.25 168 274.5 166.5 273.75 165.75 273.75 164.25 270.75 161.25 270 159.75 269.25 159 268.5 157.5 267 156.75 266.25 156 266.25 155.25 265.5 155.25 265.5 154.5 264.75 153 263.25 152.25 262.5 150.75 259.5 147.75 258 147 257.25 146.25 255.75 145.5 255 144.75 253.5 144 252.75 143.25 249.75 141.75 249 141.75 247.5 141 246.75 141 246 140.25 244.5 140.25 243.75 139.5 241.5 139.5 240.75 138.75 237.75 138.75 236.25 138 234.75 138"
|
||||
fill="#F48072"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="15.75 207.75 16.5 195.75 21.75 186 21 174 23.25 163.5 40.5 151.5 52.5 148.5 56.25 138 56.25 137.25 57 136.5 57 134.25 57.75 133.5 57.75 132.75 58.5 131.25 58.5 129.75 59.25 129 59.25 126.75 60 126.75 60 122.25 60 121.5 60 116.25 60.75 116.25 79.5 111 99.75 110.25 110.25 101.25 118.5 94.5 129 93.75 134.25 95.25 144 98.25 157.5 92.25 174 94.5 181.5 104.25 186 112.5 207.75 121.5 231.75 130.5 239.25 137.25 245.25 147 241.5 159 254.25 162.75 262.5 182.25 262.5 199.5 272.25 207.75 270.75 210.75 269.25 212.25 268.5 213.75 267 215.25 266.25 215.25 258.75 222.75 255.75 224.25 255 225 250.5 227.25 249 228.75 246.75 229.5 243.75 231 241.5 231.75 240 232.5 237.75 233.25 236.25 234.75 234 235.5 231 236.25 222 239.25 219 240 216 241.5 213 242.25 210.75 243 207 243.75 201 245.25 197.25 246 194.25 246.75 190.5 247.5 186.75 247.5 175.5 249.75 171.75 249.75 167.25 250.5 163.5 250.5 159.75 251.25 156 251.25 152.25 252 131.25 252 128.25 251.25 121.5 251.25 118.5 250.5 115.5 250.5 111.75 249.75 109.5 249.75 106.5 249 103.5 249 97.5 247.5 95.25 247.5 93 246.75 90 246 85.5 244.5 82.5 243.75 78 242.25 76.5 242.25 69.75 240 68.25 239.25 66 238.5 63 237 60.75 236.25 54.75 233.25 54 232.5 51 231 50.25 231 48.75 230.25 48 229.5 47.25 229.5 45.75 228 44.25 227.25 43.5 227.25 42 225.75 41.25 225.75"
|
||||
fill="#FFFFFF"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="60 133.5 58.5 133.5 57.75 134.25 56.25 134.25 54.75 135 53.25 135 52.5 135.75 50.25 135.75 49.5 136.5 48.75 136.5 47.25 137.25 46.5 137.25 45 138 44.25 138 42.75 138.75 42 139.5 40.5 139.5 39.75 140.25 38.25 141 36.75 141 36 141.75 34.5 142.5 33.75 143.25 32.25 144 30.75 144.75 30 145.5 27 147 26.25 147.75 24.75 148.5 24 150 22.5 150.75 21.75 151.5 20.25 152.25 19.5 153.75 18 154.5 17.25 156 16.5 156.75 15.75 158.25 13.5 160.5 12 163.5 11.25 164.25 9.75 167.25 9.75 168.75 9 170.25 9 171.75 8.25 173.25 8.25 175.5 7.5 177 7.5 185.25 8.25 187.5 8.25 189 9 190.5 9.75 192.75 12 197.25 13.5 199.5 14.25 201 15.75 202.5 16.5 204 21.75 209.25 23.25 210 26.25 213 30.75 216 32.25 217.5 39 222 41.25 222.75 44.25 224.25 46.5 225.75 48.75 226.5 51 228 54 229.5 57 230.25 59.25 231.75 62.25 232.5 64.5 233.25 67.5 234.75 73.5 236.25 76.5 237.75 97.5 243 101.25 243.75 104.25 244.5 107.25 244.5 110.25 245.25 113.25 245.25 117 246 120 246.75 126.75 246.75 129.75 247.5 135.75 247.5 139.5 248.25 158.25 248.25 161.25 247.5 166.5 247.5 169.5 246.75 174.75 246.75 177.75 246 180.75 246 183 245.25 186 245.25 188.25 244.5 191.25 243.75 193.5 243.75 195.75 243 198.75 242.25 201 242.25 207.75 240 210.75 239.25 213 239.25 222 236.25 223.5 235.5 230.25 233.25 231.75 232.5 234 231.75 235.5 231 237.75 230.25 239.25 229.5 241.5 228 247.5 225 249.75 224.25 252 222 255 220.5 256.5 219 259.5 217.5 260.25 216.75 261.75 216 262.5 214.5 263.25 213.75 264.75 213 265.5 211.5 266.25 210.75 267.75 210 269.25 208.5 270 207 270.75 206.25 270.75 205.5 273 203.25 273 202.5 273.75 201 274.5 200.25 274.5 198 275.25 198 275.25 195 276 194.25 276 192.75 276.75 191.25 276.75 183 276 181.5 276 177.75 275.25 177 275.25 175.5 274.5 174 274.5 173.25 273.75 172.5 273.75 171 273 170.25 273 169.5 271.5 168.75 271.5 168 276.75 163.5 277.5 163.5 277.5 164.25 278.25 165 279.75 168 279.75 168.75 280.5 169.5 280.5 170.25 281.25 171.75 281.25 172.5 282 173.25 282 174.75 282.75 175.5 282.75 177.75 283.5 179.25 283.5 186 284.25 186.75 283.5 187.5 283.5 195 282.75 196.5 282.75 198 282 198.75 282 201 280.5 204 279.75 204.75 278.25 207.75 277.5 208.5 274.5 214.5 273 215.25 271.5 216.75 270.75 218.25 269.25 219 264 224.25 263.25 224.25 261.75 225.75 260.25 226.5 259.5 227.25 258.75 227.25 258 228.75 256.5 228.75 255 230.25 253.5 231 252.75 231.75 251.25 232.5 250.5 232.5 249.75 233.25 248.25 234 247.5 234 246.75 234.75 246 234.75 245.25 235.5 244.5 235.5 243 237 241.5 237 240.75 237.75 240 237.75 239.25 238.5 237.75 238.5 237 239.25 236.25 239.25 235.5 240 234 240 233.25 240.75 232.5 240.75 231 241.5 230.25 241.5 229.5 242.25 228 242.25 227.25 243 226.5 243 225 243.75 223.5 243.75 222.75 244.5 222 244.5 220.5 245.25 219.75 245.25 218.25 246 216.75 246 216 246.75 213.75 246.75 212.25 247.5 211.5 247.5 210 248.25 207 248.25 206.25 249 204.75 249 204 249.75 201 249.75 199.5 250.5 197.25 250.5 195.75 251.25 194.25 251.25 192.75 252 189 252 187.5 252.75 186 252.75 184.5 253.5 180 253.5 178.5 254.25 172.5 254.25 169.5 255 160.5 255 157.5 255.75 135 255.75 132 255 123.75 255 120.75 254.25 118.5 254.25 115.5 253.5 110.25 253.5 108 252.75 105 252.75 102.75 252 100.5 252 97.5 251.25 93 249.75 90 249.75 85.5 248.25 82.5 247.5 80.25 246.75 78 246.75 75.75 245.25 73.5 245.25 64.5 242.25 63 240.75 56.25 238.5 54.75 237.75 50.25 236.25 48.75 235.5 46.5 234 45 233.25 42.75 232.5 39.75 231 37.5 230.25 36 228.75 34.5 228 32.25 226.5 27.75 224.25 26.25 222.75 24.75 222 24 221.25 22.5 220.5 21.75 219 21 218.25 19.5 217.5 15.75 213.75 15 212.25 9.75 207 9 205.5 7.5 204 4.5 198 3.75 197.25 2.25 194.25 2.25 192.75 1.5 191.25 0.75 189 0.75 185.25 0 183.75 0 177 0.75 175.5 0.75 172.5 1.5 171 1.5 169.5 2.25 168 2.25 166.5 4.5 162 6 161.25 6 159.75 7.5 158.25 9.75 153.75 11.25 152.25 12.75 151.5 13.5 150 18.75 144.75 21 144 24 141 25.5 140.25 27.75 138.75 29.25 138 31.5 136.5 33 135.75 35.25 135 37.5 133.5 53.25 128.25 56.25 127.5 58.5 126.75 61.5 126.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="180.75 207.75 182.25 210 183.75 213.75 187.5 214.5 294 156.75 399 96 399 85.5 390.75 83.25"
|
||||
fill="#FFCB05"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="240.75 144 241.5 144.75 242.25 144.75 243 145.5 244.5 145.5 245.25 146.25 246 146.25 246.75 147 247.5 147 248.25 147.75 249.75 148.5 250.5 148.5 252 150 252.75 150 254.25 150.75 255 152.25 256.5 152.25 257.25 153 258.75 153.75 259.5 155.25 261 156 261.75 156.75 263.25 157.5 264 159 270 156 270 155.25 268.5 153.75 267 153 262.5 148.5 261 147.75 259.5 146.25 256.5 144.75 255.75 144 252.75 142.5 252 141.75 251.25 141.75 250.5 141 249.75 141 249 140.25 248.25 140.25 247.5 139.5 246.75 139.5 246 138.75 245.25 138.75 244.5 138 243 138 242.25 137.25 240.75 137.25 240 136.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="147.75 185.25 276.75 3 287.25 6 288 13.5 157.5 191.25 156 190.5 152.25 188.25"
|
||||
fill="#FFCB05"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="24 182.25 23.25 181.5 23.25 180.75 22.5 179.25 22.5 174.75 23.25 173.25 23.25 171.75 24 171 24 170.25 24.75 169.5 24.75 168.75 26.25 167.25 27 165.75 28.5 165 30 163.5 31.5 162.75 32.25 161.25 33 160.5 36 159 36.75 158.25 38.25 157.5 39.75 156.75 40.5 156.75 41.25 156 44.25 154.5 45 154.5 46.5 153.75 47.25 153.75 48.75 153 49.5 153 50.25 152.25 51 152.25 52.5 151.5 54 151.5 54 150.75 55.5 150.75 56.25 150 57.75 150 57.75 148.5 57 147.75 57 144 57.75 142.5 57.75 140.25 59.25 138.75 60 137.25 60.75 136.5 61.5 135 61.5 134.25 62.25 132.75 62.25 125.25 63 124.5 63 122.25 64.5 120.75 65.25 119.25 65.25 118.5 66 117.75 66.75 117.75 67.5 117 69 116.25 70.5 116.25 71.25 115.5 90 115.5 91.5 114.75 93.75 114.75 95.25 114 97.5 114 99 113.25 100.5 113.25 102 112.5 103.5 112.5 103.5 111 104.25 110.25 104.25 108.75 105 107.25 105 106.5 105.75 105.75 105.75 105 104.25 105 102.75 105.75 102 105.75 100.5 106.5 98.25 106.5 97.5 107.25 94.5 107.25 93.75 108 88.5 108 87.75 108.75 69 108.75 66 110.25 64.5 110.25 63.75 111 62.25 111.75 58.5 115.5 58.5 116.25 57.75 117 57.75 117.75 57 118.5 57 120.75 56.25 121.5 56.25 129.75 55.5 131.25 55.5 132 54.75 132.75 54.75 133.5 54 134.25 54 135 52.5 136.5 52.5 138 51.75 138.75 51.75 139.5 51 140.25 51 145.5 48.75 145.5 48 146.25 46.5 146.25 45.75 147 45 147 44.25 147.75 42.75 147.75 42 148.5 41.25 148.5 40.5 149.25 39 149.25 38.25 150 37.5 150 36 151.5 35.25 151.5 34.5 152.25 33 153 32.25 153.75 30.75 153.75 27.75 156.75 27 156.75 21 162.75 20.25 164.25 19.5 165 18.75 166.5 18 167.25 17.25 168.75 16.5 169.5 16.5 170.25 15.75 171.75 15.75 180 16.5 181.5 16.5 183 17.25 184.5 18 185.25 18 186 18.75 186.75 18.75 187.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="106.5 118.5 106.5 117 107.25 116.25 107.25 114 108.75 111 108.75 109.5 109.5 108.75 109.5 108 110.25 107.25 110.25 106.5 111.75 105 112.5 102.75 114 102 116.25 99.75 117 99.75 117.75 99 118.5 99 119.25 98.25 120.75 98.25 121.5 97.5 128.25 97.5 129 98.25 131.25 98.25 132 99 133.5 99 136.5 100.5 137.25 101.25 138.75 102 140.25 103.5 141 102.75 141.75 102.75 142.5 102 144 101.25 144.75 101.25 147 100.5 147.75 99.75 149.25 99 150 99 150.75 98.25 152.25 98.25 153 97.5 156 97.5 157.5 96.75 165 96.75 166.5 97.5 167.25 98.25 168.75 98.25 169.5 99 171 99.75 171.75 99.75 172.5 101.25 173.25 101.25 174 102.75 174.75 103.5 176.25 104.25 176.25 105.75 177 106.5 177 107.25 178.5 108.75 179.25 110.25 180 111 181.5 111.75 182.25 112.5 183 112.5 184.5 114 186 114.75 186.75 114.75 188.25 116.25 190.5 116.25 191.25 117 197.25 117 198 116.25 198.75 116.25 201 110.25 198.75 110.25 198 111 194.25 111 192.75 110.25 192 109.5 191.25 109.5 189.75 108.75 189 108.75 188.25 108 186.75 107.25 186 106.5 184.5 105.75 183.75 105 182.25 102 179.25 99 178.5 97.5 177 96.75 176.25 95.25 173.25 93.75 172.5 93 168 90.75 166.5 90.75 165 90 156.75 90 155.25 90.75 152.25 90.75 151.5 91.5 150 91.5 148.5 92.25 147.75 93 146.25 93 144.75 93.75 144 93.75 143.25 94.5 142.5 94.5 141.75 95.25 141.75 96 141 95.25 140.25 95.25 139.5 94.5 138.75 94.5 138 93.75 136.5 93 135 93 134.25 92.25 133.5 92.25 132.75 91.5 120 91.5 118.5 92.25 117.75 92.25 116.25 93 115.5 93 114 93.75 113.25 94.5 111.75 94.5 111 95.25 110.25 96.75 105 102 104.25 103.5 104.25 104.25 103.5 105 102.75 106.5 102.75 107.25 102 108 102 108.75 101.25 110.25 101.25 112.5 100.5 113.25 100.5 117.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="205.5 121.5 207.75 123.75 208.5 123.75 210 125.25 210.75 125.25 212.25 126 214.5 128.25 216 128.25 216.75 129 217.5 129 218.25 129.75 220.5 129.75 221.25 130.5 223.5 130.5 224.25 131.25 225.75 131.25 227.25 132 228 132 229.5 132.75 230.25 132.75 231.75 133.5 232.5 134.25 233.25 134.25 237.75 138.75 237.75 141 239.25 142.5 239.25 144 240 145.5 240 150.75 239.25 152.25 239.25 153 237.75 154.5 237.75 156 237 156.75 237 157.5 236.25 159 236.25 159.75 237 160.5 237 162 237.75 162.75 239.25 162.75 240.75 163.5 248.25 163.5 249.75 164.25 249.75 165 250.5 165 251.25 166.5 257.25 162.75 256.5 162.75 253.5 159.75 252 159 251.25 158.25 249.75 157.5 244.5 157.5 243.75 156.75 243.75 156 244.5 155.25 245.25 153.75 246 153 246 143.25 245.25 142.5 245.25 141.75 244.5 140.25 244.5 138.75 242.25 134.25 237.75 129.75 236.25 129 234.75 127.5 233.25 126.75 232.5 126.75 231.75 126 229.5 126 228.75 125.25 226.5 125.25 225.75 124.5 224.25 124.5 223.5 123.75 221.25 123.75 220.5 123 219.75 123 219 122.25 218.25 122.25 216.75 121.5 216 121.5 215.25 120.75 213.75 120 213 119.25 213 118.5 211.5 117.75 210.75 116.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="257.25 175.5 258 176.25 258 177 258.75 177.75 258.75 178.5 259.5 179.25 259.5 181.5 260.25 183 260.25 193.5 259.5 194.25 259.5 201 259.5 201.75 260.25 202.5 260.25 204 263.25 205.5 264 206.25 265.5 207 267 208.5 268.5 209.25 268.5 210 269.25 210.75 270.75 213.75 276 211.5 276 210 275.25 208.5 275.25 207.75 273.75 206.25 273.75 205.5 272.25 204.75 271.5 204 270.75 202.5 267.75 201 266.25 199.5 265.5 198 265.5 197.25 266.25 195.75 266.25 191.25 267 190.5 267 186 266.25 184.5 266.25 179.25 265.5 178.5 265.5 176.25 264.75 175.5 264.75 174.75 263.25 173.25 263.25 172.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="60 204 60 203.25 60.75 203.25 63 201 63.75 201 64.5 200.25 65.25 200.25 66 199.5 68.25 199.5 69 200.25 69.75 200.25 71.25 201 72 201 77.25 206.25 77.25 207 78 207.75 78 209.25 78.75 210 78.75 210.75 84.75 209.25 84.75 207.75 84 207 84 205.5 83.25 204 82.5 203.25 82.5 201.75 78.75 198 78 196.5 72 193.5 63.75 193.5 63 194.25 61.5 194.25 60 195.75 57 197.25 56.25 198.75 54.75 200.25 54.75 201 54 201.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="91.5 160.5 91.5 159.75 90.75 159 90.75 158.25 90 156.75 90 156 93.75 152.25 102.75 152.25 103.5 153 106.5 147.75 105.75 147.75 105 147 104.25 147 103.5 146.25 102 146.25 101.25 146.25 99.75 145.5 94.5 145.5 93.75 146.25 93 146.25 91.5 147 90 147 88.5 148.5 87 149.25 85.5 150.75 84 153.75 84 160.5 84.75 162 84.75 162.75 87 165"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="158.25 138.75 157.5 138 153.75 138 152.25 137.25 151.5 138 150 138 149.25 138.75 148.5 138.75 147.75 139.5 147 141 145.5 142.5 145.5 144.75 144.75 145.5 144.75 146.25 145.5 147 145.5 150 146.25 150.75 146.25 151.5 146.25 152.25 140.25 152.25 139.5 150.75 139.5 147 138.75 145.5 138.75 143.25 139.5 141.75 139.5 140.25 140.25 139.5 141 138 141.75 137.25 142.5 135.75 144.75 133.5 147.75 132 148.5 132 150 131.25 156 131.25 157.5 132 158.25 132 161.25 133.5 162.75 133.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="142.5 228.75 143.25 228 143.25 227.25 144 227.25 144.75 226.5 145.5 226.5 146.25 225.75 147.75 225.75 148.5 225 150 225 150.75 224.25 156.75 224.25 158.25 225 159.75 225 161.25 226.5 162.75 227.25 162.75 228.75 164.25 230.25 164.25 231 165 231 165 232.5 165 233.25 165.75 233.25 172.5 232.5 171.75 232.5 171.75 229.5 171 228.75 170.25 227.25 170.25 226.5 168 224.25 167.25 222.75 165.75 222 163.5 219.75 162.75 219.75 161.25 219 160.5 219 159 218.25 158.25 218.25 157.5 217.5 149.25 217.5 147.75 218.25 146.25 218.25 145.5 219 144 219 143.25 219.75 142.5 219.75 141 220.5 141 221.25 140.25 221.25 138.75 222 138 222.75 136.5 223.5 135.75 224.25 135.75 225 135 225.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="216 168.75 219.75 172.5 219.75 173.25 221.25 174.75 222 176.25 222.75 177 223.5 178.5 223.5 180 224.25 181.5 224.25 182.25 225 182.25 226.5 181.5 228 180 229.5 179.25 230.25 179.25 230.25 178.5 229.5 177 229.5 176.25 228.75 175.5 228.75 174.75 228 173.25 227.25 172.5 226.5 171 225.75 170.25 224.25 167.25 222.75 166.5 222 165 220.5 164.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="181.5 209.25 391.5 87 392.25 87.75 393 87.75 393.75 89.25 394.5 90 395.25 91.5 395.25 94.5 183.75 213.75 188.25 219 402 98.25 402.75 97.5 402.75 93 402 91.5 402 90 401.25 88.5 401.25 87.75 400.5 87 400.5 86.25 399.75 85.5 399 84 397.5 82.5 396.75 81.75 396 81.75 394.5 80.25 393.75 80.25 393 79.5 392.25 79.5 391.5 78.75 177.75 204"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="12 201 12 201.75 12.75 202.5 12.75 204 13.5 205.5 14.25 206.25 14.25 207.75 15 208.5 15 209.25 15.75 210 15.75 210.75 16.5 212.25 16.5 213 17.25 214.5 18 215.25 18.75 216.75 18.75 217.5 19.5 219 20.25 219.75 21.75 222.75 21.75 224.25 22.5 225.75 23.25 226.5 24.75 229.5 25.5 231 27 234 28.5 234.75 32.25 242.25 33.75 243.75 35.25 246.75 36.75 248.25 38.25 251.25 40.5 253.5 41.25 255 44.25 258 45 259.5 48.75 263.25 49.5 264.75 51 265.5 52.5 267 53.25 268.5 54.75 269.25 59.25 273.75 60 273.75 60.75 275.25 62.25 275.25 63 276.75 63.75 276.75 63.75 277.5 65.25 278.25 66 279 66.75 279 66.75 279.75 68.25 280.5 69 281.25 69.75 281.25 73.5 285 74.25 285 75.75 285.75 78 288 79.5 288 81 289.5 84 291 84.75 291.75 85.5 291.75 86.25 292.5 87 292.5 87.75 293.25 88.5 293.25 90 294.75 92.25 294.75 93.75 296.25 96 296.25 97.5 297.75 99.75 297.75 100.5 298.5 101.25 298.5 102.75 299.25 104.25 299.25 105.75 300 107.25 300 108.75 300.75 110.25 300.75 111.75 301.5 113.25 301.5 114.75 302.25 117.75 302.25 118.5 303 123.75 303 125.25 303.75 129 303.75 130.5 304.5 159.75 304.5 161.25 303.75 164.25 303.75 166.5 303 171 303 172.5 302.25 174 302.25 175.5 301.5 179.25 301.5 182.25 300 185.25 300 189.75 297.75 192 297.75 195 296.25 196.5 296.25 199.5 294.75 201.75 294 202.5 293.25 204.75 292.5 205.5 291.75 207.75 291 208.5 290.25 210.75 289.5 213.75 288 215.25 286.5 221.25 283.5 222.75 282 224.25 281.25 228 277.5 229.5 276.75 232.5 273.75 234 273 234.75 271.5 239.25 267 240 265.5 243.75 261.75 245.25 259.5 246 258 247.5 256.5 248.25 255 249.75 253.5 251.25 250.5 252.75 249 253.5 247.5 254.25 246.75 257.25 240.75 258 240 260.25 235.5 261 234.75 261.75 233.25 261.75 232.5 262.5 231 264 229.5 264 228 264.75 226.5 266.25 225 266.25 224.25 267 222.75 267 222 267.75 221.25 267.75 220.5 268.5 219 268.5 217.5 269.25 216.75 269.25 215.25 270 214.5 270 213 270.75 212.25 270.75 210.75 271.5 210 271.5 207.75 272.25 207 272.25 206.25 283.5 196.5 283.5 197.25 282.75 198 282.75 199.5 282 200.25 282 201.75 281.25 203.25 281.25 204 280.5 205.5 279.75 206.25 279.75 207.75 279 209.25 279 210.75 276.75 215.25 276.75 216.75 276 219 274.5 222 273.75 224.25 273 225.75 271.5 230.25 270 231.75 268.5 236.25 267.75 237.75 266.25 240 265.5 242.25 264 244.5 262.5 246 261.75 248.25 260.25 250.5 259.5 252.75 258 255 256.5 256.5 252 263.25 248.25 267 245.25 271.5 243 273 241.5 275.25 237.75 279 235.5 280.5 234 282.75 231.75 285 225 289.5 222.75 291.75 220.5 292.5 218.25 294 215.25 295.5 213 297 211.5 298.5 204.75 300.75 203.25 301.5 198.75 303 196.5 304.5 194.25 304.5 192 305.25 190.5 306 186 307.5 183.75 307.5 181.5 308.25 180 309 177.75 309 175.5 309.75 173.25 309.75 171 310.5 168.75 310.5 166.5 311.25 160.5 311.25 158.25 312 133.5 312 131.25 311.25 125.25 311.25 123 310.5 121.5 310.5 119.25 309.75 115.5 309.75 114 309 111.75 309 110.25 308.25 108.75 308.25 107.25 307.5 105 307.5 103.5 306.75 102 306.75 99 305.25 97.5 305.25 96 304.5 94.5 304.5 91.5 303 90 303 88.5 302.25 87.75 301.5 84.75 300 83.25 300 81.75 298.5 80.25 297.75 79.5 297 72 293.25 68.25 289.5 65.25 288 63.75 286.5 60.75 285 60 283.5 58.5 282.75 57 281.25 55.5 280.5 54.75 279 53.25 278.25 51 276 49.5 275.25 48.75 273.75 47.25 273 46.5 271.5 45.75 270.75 44.25 270 43.5 268.5 39 264 38.25 262.5 37.5 261.75 36.75 260.25 33 256.5 32.25 255 31.5 254.25 30.75 252.75 30 252 28.5 249 27 248.25 26.25 246.75 25.5 246 24.75 244.5 24 243.75 22.5 240.75 21.75 240 19.5 235.5 18.75 234.75 16.5 230.25 15.75 229.5 15 227.25 14.25 226.5 14.25 225 10.5 217.5 9.75 216.75 9 215.25 9 213.75 7.5 210.75 7.5 209.25 5.25 204.75 5.25 202.5 4.5 201.75 3.75 199.5 3.75 198 2.25 195 2.25 193.5 1.5 192 1.5 190.5 0.75 189"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="96.75 302.25 96.75 309.75 97.5 309.75 98.25 310.5 99 310.5 99.75 311.25 100.5 311.25 101.25 312 102 312 103.5 312.75 104.25 312.75 105.75 313.5 107.25 313.5 108 314.25 110.25 314.25 111 315 113.25 315 114 315.75 117 315.75 117.75 316.5 119.25 316.5 120.75 316.5 121.5 317.25 126.75 317.25 127.5 318 132.75 318 134.25 318.75 157.5 318.75 158.25 318 163.5 318 164.25 317.25 169.5 317.25 170.25 316.5 174 316.5 174.75 315.75 177 315.75 178.5 315 180 315 180.75 314.25 183.75 314.25 184.5 313.5 186 312.75 186.75 312.75 188.25 312 189 312 189.75 311.25 191.25 311.25 192 310.5 192.75 310.5 192.75 300.75 200.25 298.5 200.25 315 199.5 315 198.75 315.75 198 315.75 197.25 316.5 196.5 316.5 195.75 317.25 195 317.25 192 318.75 191.25 318.75 189.75 319.5 189 319.5 188.25 320.25 186.75 320.25 185.25 321 184.5 321 183 321.75 181.5 321.75 180.75 322.5 177 322.5 176.25 323.25 174 323.25 172.5 324 170.25 324 168.75 324.75 165 324.75 163.5 325.5 153 325.5 151.5 326.25 142.5 326.25 141 325.5 129.75 325.5 128.25 324.75 123.75 324.75 122.25 324 118.5 324 117 323.25 114.75 323.25 113.25 322.5 110.25 322.5 108.75 321.75 108 321.75 107.25 321 105.75 321 105 320.25 102 320.25 101.25 319.5 100.5 319.5 99.75 318.75 98.25 318.75 97.5 318 96 318 94.5 317.25 93.75 317.25 93 316.5 91.5 315.75 90.75 315.75 90 315 89.25 315 88.5 314.25 88.5 297.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="13.5 204 13.5 203.25 12.75 201.75 12.75 198 13.5 196.5 13.5 195 14.25 193.5 14.25 192.75 15 191.25 15.75 190.5 17.25 187.5 18.75 186 19.5 184.5 21 183.75 21.75 183 23.25 182.25 24.75 180.75 26.25 180.75 27 180 28.5 180 29.25 180 33 185.25 31.5 185.25 30 186 29.25 186 28.5 186.75 27 187.5 26.25 187.5 24 189.75 23.25 191.25 21.75 192.75 21 194.25 21 195 19.5 196.5 19.5 200.25 18.75 201.75 19.5 203.25 19.5 207.75 20.25 208.5 20.25 209.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="151.5 187.5 278.25 7.5 279 6.75 279.75 6.75 281.25 7.5 282 7.5 283.5 8.25 284.25 9.75 285 10.5 285 12 156 190.5 162.75 194.25 293.25 12.75 293.25 10.5 292.5 9 291.75 8.25 291 6.75 290.25 6 289.5 4.5 285 2.25 283.5 0.75 282.75 0.75 282 0.75 281.25 0.75 279.75 0 275.25 0 274.5 0.75 145.5 183.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="120 111 118.5 111 117.75 110.25 116.25 109.5 115.5 109.5 113.25 108.75 111.75 108 116.25 102 116.25 102.75 117.75 102.75 118.5 103.5 120 104.25 120.75 104.25 122.25 105"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="120 122.25 119.25 122.25 118.5 121.5 116.25 121.5 115.5 120.75 114 120.75 113.25 120 112.5 120 111 119.25 109.5 117.75 108.75 117.75 110.25 111.75 111 111.75 111 112.5 112.5 112.5 112.5 113.25 113.25 113.25 114 114 116.25 114 117 114.75 118.5 115.5 119.25 115.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="63.75 134.25 70.5 134.25 72 135 69.75 141 68.25 141 66.75 140.25 60.75 140.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="69.75 151.5 69.75 150.75 66 150.75 65.25 150 62.25 150 61.5 149.25 60.75 149.25 59.25 148.5 59.25 143.25 60.75 143.25 62.25 144 66 144 66.75 144.75 69 144.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="57 152.25 60.75 152.25 62.25 153 63 153.75 64.5 153.75 65.25 154.5 59.25 158.25 58.5 157.5 57.75 157.5 57 156.75 55.5 156.75 54.75 156 54 156 52.5 155.25 49.5 155.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="45 156.75 48.75 156.75 49.5 157.5 51 157.5 52.5 159 53.25 159 54 159.75 55.5 159.75 48.75 163.5 48 163.5 47.25 162.75 45.75 162 44.25 162 43.5 161.25 42.75 161.25 41.25 160.5 38.25 160.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="33.75 162.75 35.25 162.75 36.75 163.5 39 163.5 39.75 164.25 41.25 164.25 42 165 45 166.5 39.75 171 39 171 39 170.25 38.25 170.25 36.75 169.5 36 169.5 35.25 168.75 33.75 168.75 32.25 168 31.5 168 30 167.25 28.5 167.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="35.25 180.75 34.5 180.75 33 180 32.25 180 30.75 179.25 30 179.25 28.5 177.75 27 177.75 26.25 177 24.75 176.25 24 176.25 26.25 170.25 27 170.25 28.5 171 29.25 171.75 30.75 171.75 31.5 172.5 33 173.25 33.75 173.25 34.5 174 36 174 37.5 174.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="72.75 131.25 67.5 131.25 66.75 130.5 64.5 130.5 64.5 124.5 66 124.5 66.75 125.25 72 125.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="29.25 213 29.25 212.25 28.5 212.25 27.75 211.5 26.25 210.75 25.5 210.75 24.75 210 24.75 209.25 23.25 207.75 22.5 207.75 21.75 206.25 21 206.25 21 198.75 24 201.75 25.5 202.5 26.25 203.25 27 203.25 28.5 204 29.25 204.75"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="30 200.25 29.25 199.5 28.5 199.5 27 198 25.5 197.25 24.75 196.5 24 196.5 22.5 195 27 189.75 28.5 191.25 29.25 191.25 30.75 192 32.25 193.5 33 193.5 33.75 194.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="52.5 245.25 48.75 245.25 47.25 244.5 46.5 244.5 45 243.75 43.5 243.75 42 243 40.5 243 34.5 240 27.75 228 27.75 228.75 29.25 229.5 30 229.5 31.5 231 36 233.25 36.75 233.25 37.5 234 38.25 234 39.75 234.75 40.5 235.5 41.25 235.5 42 236.25 43.5 236.25 44.25 237 45.75 237.75 47.25 237.75 48 238.5"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="80.25 286.5 89.25 286.5 90 285.75 105 296.25 102.75 296.25 102 295.5 99.75 295.5 98.25 294.75 96 294.75 93 293.25 91.5 293.25 90 292.5 89.25 291.75 86.25 290.25 85.5 289.5 84.75 289.5 83.25 288.75 82.5 288 81.75 288"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="63 258.75 57 258.75 55.5 258 52.5 258 51 257.25 49.5 257.25 48 256.5 46.5 256.5 45.75 255.75 39 246.75 39.75 247.5 41.25 247.5 42 248.25 42.75 248.25 44.25 249 47.25 249 48 249 48.75 249.75 51 249.75 52.5 250.5 55.5 250.5 57 251.25"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="75 271.5 62.25 271.5 60.75 270.75 60 270.75 51 261.75 51.75 262.5 54 262.5 54.75 263.25 59.25 263.25 60 264 60.75 264 67.5 264"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<polygon
|
||||
points="86.25 282 84 282 83.25 282.75 74.25 282.75 66 276 75.75 276 77.25 276 78.75 276"
|
||||
fill="#010101"
|
||||
clip-rule="evenodd"
|
||||
fill-rule="evenodd"
|
||||
/>
|
||||
<metadata
|
||||
><rdf:RDF
|
||||
><cc:Work
|
||||
><dc:format
|
||||
>image/svg+xml</dc:format
|
||||
><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/><cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/><dc:publisher
|
||||
><cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
><dc:title
|
||||
>Openclipart</dc:title
|
||||
></cc:Agent
|
||||
></dc:publisher
|
||||
><dc:title
|
||||
>bowl of rice</dc:title
|
||||
><dc:date
|
||||
>2009-05-22T18:03:45</dc:date
|
||||
><dc:description
|
||||
>source: \n \nA California Alphabet & coloring book \n \nUSDA Farm Service Agency \nwww.fsa.usda.gov/ca/agforkids.htm \n \ncleaned up and colored by me</dc:description
|
||||
><dc:source
|
||||
>https://openclipart.org/detail/26154/bowl-of-rice-by-johnny_automatic</dc:source
|
||||
><dc:creator
|
||||
><cc:Agent
|
||||
><dc:title
|
||||
>johnny_automatic</dc:title
|
||||
></cc:Agent
|
||||
></dc:creator
|
||||
><dc:subject
|
||||
><rdf:Bag
|
||||
><rdf:li
|
||||
>bowl</rdf:li
|
||||
><rdf:li
|
||||
>chopsticks</rdf:li
|
||||
><rdf:li
|
||||
>externalsource</rdf:li
|
||||
><rdf:li
|
||||
>food</rdf:li
|
||||
><rdf:li
|
||||
>grain</rdf:li
|
||||
><rdf:li
|
||||
>rice</rdf:li
|
||||
></rdf:Bag
|
||||
></dc:subject
|
||||
></cc:Work
|
||||
><cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/><cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/></cc:License
|
||||
></rdf:RDF
|
||||
></metadata
|
||||
></svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="color">
|
||||
<path fill="#fff" d="m57.5367,18.0513l-16.5406,2.5102-2.0738.4311-31.9223,5.0074c-1.1045,0-2,.8965-2,2v12h1c2.7617,0,5-2.2383,5-4.999s2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999h1v-12c0-4.7112-3.2599-8.6632-7.647-9.7215-.4344-.1048-1.3618-.1812-1.8163-.2272"/>
|
||||
<circle cx="49.5" cy="18.0005" r="5" fill="#ea5a47"/>
|
||||
<path fill="#fcea2b" d="m67,39v20c0,1.1055-.8955,2-2,2H7c-1.1045,0-2-.8945-2-2v-20"/>
|
||||
<path fill="#fcea2b" d="m67,40h-1c-2.7607,0-5-2.2383-5-5s-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5-5-2.2383-5-5-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5-5-2.2383-5-5-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5h-1"/>
|
||||
</g>
|
||||
<g id="line">
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m67,28v31c0,1.1055-.8955,2-2,2H7c-1.1045,0-2-.8945-2-2v-31c0-1.1035.8955-2,2-2l33.9961-5.4385"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m58.0186,18.0513c5.0439.5102,8.9814,4.771,8.9814,9.9487"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m5,40h1c2.7617,0,5-2.2383,5-4.999s2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999h1"/>
|
||||
<line x1="5" x2="67" y1="48" y2="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<line x1="5" x2="67" y1="52" y2="52" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<circle cx="49.5" cy="18.0005" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m49.5,16c0-5.5229,4.4766-10,10-10"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,274 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.0"
|
||||
viewBox="0 0 500 500"
|
||||
id="svg3836">
|
||||
<defs
|
||||
id="defs3838">
|
||||
<radialGradient
|
||||
r="37.83"
|
||||
gradientTransform="matrix(2.8660315,8.3296663e-6,1.0758513e-7,2.8292699,-90.210244,116.31901)"
|
||||
cx="121.11"
|
||||
cy="66.073"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect"
|
||||
id="radialGradient4901">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#5aff00"
|
||||
id="stop2789" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#008a00"
|
||||
id="stop2791" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
r="37.83"
|
||||
gradientTransform="matrix(3.6875782,-0.61360772,0.64145129,3.8548414,-235.19252,49.60465)"
|
||||
cx="120.08"
|
||||
cy="76.821"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4905">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#5aff00;stop-opacity:0.26"
|
||||
id="stop2989" />
|
||||
<stop
|
||||
offset=".52734"
|
||||
style="stop-color:#43e100;stop-opacity:.46667"
|
||||
id="stop2995" />
|
||||
<stop
|
||||
offset=".625"
|
||||
style="stop-color:#2dc400;stop-opacity:.64314"
|
||||
id="stop2993" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#008a00"
|
||||
id="stop2991" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
r="37.83"
|
||||
gradientTransform="matrix(4.1854524,3.6318152,-2.363526,1.2418429,-114.13492,-572.99165)"
|
||||
cx="112.21"
|
||||
cy="43.835"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4907">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:white"
|
||||
id="stop2799" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0"
|
||||
id="stop2801" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
x1="83.49"
|
||||
y1="44.723"
|
||||
gradientTransform="matrix(3.4283,0,0,3.4283,26.81,39.681)"
|
||||
x2="54.624"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="reflect"
|
||||
y2="60.631"
|
||||
id="linearGradient4916">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#00683f"
|
||||
id="stop3048" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#00f800"
|
||||
id="stop3050" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(5.7276,0,0,4.7405,-2044.1,-402.53)"
|
||||
id="g3163">
|
||||
<path
|
||||
d="m 400.62,111.66 c -16.04,0.23 -27.91,18.17 -22.65,33.06 3.89,15.12 23.36,22.96 36.53,14.37 14.29,-8.17 16.41,-30.14 3.97,-40.9 -4.76,-4.44 -11.33,-6.89 -17.85,-6.53 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3165" />
|
||||
<path
|
||||
d="m 400.59,111.28 c -16.11,0.23 -28.37,18.38 -22.97,33.56 6.24,26.42 48.31,21.9 49.32,-5 1.95,-15.03 -10.99,-29.59 -26.35,-28.56 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3170" />
|
||||
<path
|
||||
d="m 399.81,110.97 c -16.62,0.77 -28.35,19.91 -22.15,35.19 4.86,15.23 24.84,22.35 37.96,13.03 14.55,-8.88 15.82,-31.88 2.38,-42.38 -4.96,-4.23 -11.75,-6.39 -18.19,-5.84 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3175" />
|
||||
<path
|
||||
d="m 399.78,110.59 c -16.48,0.8 -28.22,19.36 -22.87,34.44 4.08,15.59 23.99,23.91 37.75,15.22 15.03,-8.2 17.65,-30.92 5.03,-42.44 -5.22,-5.09 -12.71,-7.85 -19.91,-7.22 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3180" />
|
||||
<path
|
||||
d="m 400.5,110.19 c -16.84,0.26 -29.52,19.19 -23.94,34.97 4.07,15.46 23.45,23.85 37.32,15.96 15.46,-7.63 19.15,-30.42 7,-42.59 -5.14,-5.62 -12.8,-8.76 -20.38,-8.34 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3185" />
|
||||
<path
|
||||
d="m 400.47,109.81 c -17.42,0.36 -30.1,19.88 -24.09,36.03 4.43,15.44 24.12,23.66 38.12,15.35 15.12,-7.71 18.76,-30.22 7.06,-42.47 -5.2,-5.91 -13.12,-9.35 -21.09,-8.91 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3190" />
|
||||
<path
|
||||
d="m 400.44,109.44 c -16.8,0.33 -29.71,18.71 -24.97,34.62 3.53,16.28 23.39,25.94 38.06,18.03 16.22,-7.39 20.52,-30.79 8.31,-43.59 -5.27,-6.08 -13.47,-9.51 -21.4,-9.06 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3195" />
|
||||
<path
|
||||
d="m 400.41,109.09 c -17.79,0.31 -30.96,20.39 -24.69,37.03 4.68,16.2 25.47,24.4 39.78,15.35 15.57,-8.56 18.42,-32.07 5.69,-44.25 -5.35,-5.44 -13.1,-8.61 -20.78,-8.13 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3200" />
|
||||
<path
|
||||
d="m 400.38,108.72 c -17.27,0.35 -30.43,19.15 -25.63,35.53 3.52,16.14 22.91,26.2 37.84,19.06 16.76,-6.56 22.5,-29.98 11.1,-43.72 -5.41,-7.21 -14.37,-11.39 -23.31,-10.87 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3205" />
|
||||
<path
|
||||
d="m 400.34,108.34 c -17.71,0.37 -31.16,19.87 -25.75,36.72 3.98,16.27 23.81,25.89 38.85,18.32 16.46,-7.02 21.89,-30.33 10.53,-44.04 -5.5,-7.31 -14.53,-11.5 -23.63,-11 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3210" />
|
||||
<path
|
||||
d="m 400.31,107.97 c -17.8,0.48 -31.12,19.53 -26.28,36.47 3.66,16.55 23.33,26.84 38.88,19.56 16.31,-6.43 22.76,-28.83 12.59,-43.19 -5.36,-8.24 -15.16,-13.43 -25.19,-12.84 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3215" />
|
||||
<path
|
||||
d="m 400.28,107.62 c -14.76,0.41 -27.4,13.9 -27.49,28.56 -0.8,14.56 10.71,28.68 25.27,30.23 14.42,2.27 28.93,-8.32 31.92,-22.41 3.62,-14.2 -4.84,-30.31 -18.92,-34.84 -3.45,-1.29 -7.1,-1.67 -10.78,-1.54 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3220" />
|
||||
<path
|
||||
d="m 400.25,107.25 c -7.08,0.35 -13.9,3.43 -18.88,8.35 -5,4.94 -8.27,11.76 -8.84,18.86 -0.72,7.73 1.69,15.7 6.59,21.7 2.9,3.61 6.92,6.74 11.39,8.6 8.02,3.45 17.82,2.94 25.4,-1.41 4.13,-2.33 7.52,-5.54 10.12,-9.37 3.76,-5.6 5.52,-12.39 5,-19.17 -0.49,-6.36 -2.9,-12.41 -7.09,-17.25 -5.62,-6.84 -14.69,-10.83 -23.69,-10.31 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3225" />
|
||||
<path
|
||||
d="m 400.25,106.88 c -8.04,0.39 -15.78,4.26 -20.94,10.43 -6.73,7.72 -9.01,19.03 -5.93,28.81 1.59,5.2 4.57,9.94 8.54,13.53 5.47,5.07 12.92,7.94 20.41,7.76 8.14,-0.1 16.04,-3.84 21.42,-9.91 2.92,-3.2 5.21,-7.39 6.49,-11.55 2.16,-7.32 1.52,-15.54 -1.84,-22.28 -3.32,-6.84 -9.26,-12.32 -16.4,-14.98 -3.68,-1.43 -7.78,-1.99 -11.75,-1.81 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3230" />
|
||||
<path
|
||||
d="m 400.22,106.5 c -15.16,0.52 -28.07,14 -28.53,29.06 -1.08,15.35 10.87,30.27 26.25,31.97 15.04,2.3 30.15,-8.76 33.15,-23.5 3.77,-15 -5.54,-31.73 -20.37,-36.19 -3.4,-1.03 -6.95,-1.53 -10.5,-1.34 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3235" />
|
||||
<path
|
||||
d="m 400.22,106.16 c -18.52,0.41 -32.8,20.1 -28.16,37.96 3.35,17.11 22.89,28.59 39.47,22.41 17.01,-5.38 25.77,-26.9 17.72,-42.81 -5.11,-11.02 -16.83,-18.33 -29.03,-17.56 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3240" />
|
||||
<path
|
||||
d="m 400.19,105.78 c -19.04,0.42 -33.58,21.02 -28.28,39.19 3.86,17.8 25.2,28.91 41.84,21.06 17.94,-7.07 24.62,-31.73 13.16,-47.06 -5.92,-8.61 -16.26,-13.83 -26.72,-13.19 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3245" />
|
||||
<path
|
||||
d="m 400.19,105.41 c -19.32,0.44 -34.01,21.28 -28.63,39.65 3.84,17.72 24.9,29.01 41.69,21.6 17.98,-6.66 25.46,-30.8 14.81,-46.63 -5.83,-9.44 -16.77,-15.29 -27.87,-14.62 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3250" />
|
||||
<path
|
||||
d="m 400.16,105.03 c -19.52,0.49 -34.36,21.44 -28.97,40.13 3.9,17.68 24.56,29.05 41.56,22.12 17.71,-6.2 26.07,-29.23 16.78,-45.47 -5.59,-10.63 -17.27,-17.5 -29.37,-16.78 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3255" />
|
||||
<path
|
||||
d="m 400.91,104.66 c -19.07,-0.09 -34.51,19.73 -30.6,38.18 2.66,18.46 23.25,31.53 40.97,25.32 18.6,-5.4 28.08,-28.85 18.97,-45.75 -5.37,-10.93 -17.12,-18.23 -29.34,-17.75 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3260" />
|
||||
<path
|
||||
d="m 400.12,104.31 c -19.92,0.43 -35.19,21.96 -29.62,41.03 4.03,18.67 26.33,30.23 43.84,22.04 18.1,-7.12 25.52,-31.73 14.66,-47.94 -6.06,-9.74 -17.3,-15.82 -28.88,-15.13 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3265" />
|
||||
<path
|
||||
d="m 400.12,103.94 c -19.89,0.46 -35.24,21.63 -30.18,40.72 3.59,18.35 24.68,30.65 42.37,23.93 18.55,-5.9 27.77,-29.55 18.57,-46.59 -5.64,-11.39 -18.01,-18.85 -30.76,-18.06 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3270" />
|
||||
<path
|
||||
d="m 400.09,103.56 c -19.77,0.47 -35.2,21.22 -30.68,40.38 3.25,18.71 24.08,31.52 42.21,25.28 18.58,-5.37 28.68,-28.57 20.22,-45.97 -5.34,-12.32 -18.26,-20.47 -31.75,-19.69 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3275" />
|
||||
<path
|
||||
d="m 400.09,103.19 c -19.98,0.47 -35.64,21.44 -31.06,40.81 3.25,18.87 24.45,31.93 42.69,25.56 18.82,-5.44 29.01,-28.86 20.47,-46.47 -5.38,-12.42 -18.54,-20.71 -32.1,-19.9 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3280" />
|
||||
<path
|
||||
d="m 400.06,102.84 c -19.89,0.44 -35.56,21.07 -31.56,40.28 2.74,19.24 23.92,33.01 42.56,27.04 19.54,-5.17 30.22,-29.23 21.44,-47.22 -5.39,-12.56 -18.76,-20.95 -32.44,-20.1 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3285" />
|
||||
<path
|
||||
d="m 400.06,102.47 c -20.42,0.46 -36.43,21.91 -31.75,41.69 3.33,19.27 25.02,32.63 43.66,26.09 19.52,-5.67 29.78,-30.1 20.59,-48.13 -5.68,-12.27 -18.9,-20.51 -32.5,-19.65 z"
|
||||
style="color:#000000;opacity:0.02831798;fill:#808080;fill-rule:evenodd"
|
||||
id="path3290" />
|
||||
</g>
|
||||
<ellipse
|
||||
ry="150.42567"
|
||||
rx="152.65422"
|
||||
cy="247.54398"
|
||||
cx="256.88321"
|
||||
style="color:#000000;fill:url(#radialGradient4901);fill-rule:evenodd;stroke-width:4.03529978"
|
||||
id="path1891" />
|
||||
<ellipse
|
||||
ry="150.42567"
|
||||
rx="152.65422"
|
||||
cy="247.54398"
|
||||
cx="256.88321"
|
||||
style="color:#000000;opacity:0.89011003;fill:url(#radialGradient4905);fill-rule:evenodd;stroke:#fefffa;stroke-width:2.85965562;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.77048998"
|
||||
id="path2983" />
|
||||
<path
|
||||
d="m 213.32,150.961 c -0.52,0 -0.96,0.439 -0.96,0.969 v 51.1 h -51.1 c -0.53,0 -0.97,0.44 -0.97,0.96 v 87.1 c 0,0.53 0.44,0.97 0.97,0.97 h 51.1 v 51.1 c 0,0.52 0.44,0.96 0.96,0.96 h 87.1 c 0.53,0 0.97,-0.44 0.97,-0.96 v -51.1 h 51.1 c 0.53,0 0.97,-0.44 0.97,-0.97 v -87.1 c 0,-0.52 -0.44,-0.96 -0.97,-0.96 h -51.1 v -51.1 c 0,-0.53 -0.44,-0.969 -0.97,-0.969 z"
|
||||
style="color:#000000;fill:#ffffff;fill-opacity:0.59016;fill-rule:evenodd;stroke:url(#linearGradient4916);stroke-width:4.18330002;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect3032" />
|
||||
<ellipse
|
||||
ry="103.35506"
|
||||
rx="94.924728"
|
||||
cy="-99.363304"
|
||||
cx="289.49847"
|
||||
transform="matrix(0.57690223,0.81681321,-0.90435307,0.42678511,0,0)"
|
||||
style="color:#000000;opacity:0.90110019;fill:url(#radialGradient4907);fill-rule:evenodd;stroke-width:2.63764286"
|
||||
id="path2793" />
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata53">
|
||||
<rdf:RDF>
|
||||
<cc:Work>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
|
||||
<dc:publisher>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/">
|
||||
<dc:title>Openclipart</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:title></dc:title>
|
||||
<dc:date>2006-09-21T01:18:52</dc:date>
|
||||
<dc:description>crux, cross, green</dc:description>
|
||||
<dc:source>https://openclipart.org/detail/172/crux---green-by-tomas_arad</dc:source>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>tomas_arad</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>add</rdf:li>
|
||||
<rdf:li>button</rdf:li>
|
||||
<rdf:li>cartoon</rdf:li>
|
||||
<rdf:li>cross</rdf:li>
|
||||
<rdf:li>icon</rdf:li>
|
||||
<rdf:li>plus</rdf:li>
|
||||
<rdf:li>shiny</rdf:li>
|
||||
<rdf:li>sign</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 36 36"><path fill="#FFD983" d="M18 11c-9 0-17 3.461-17 9c0 4.154 4 7.615 10 7.615c3.454 0 7.111-2.085 9.727-2.085c.093 0 .184.003.273.008c3.909.235 4 3.462 9 3.462c2.341 0 5-2.077 5-6.923C35 15.846 28 11 18 11z"/><path fill="#FFD983" d="M33 18h2v4h-2zM1 16h2v4H1z"/><path fill="#A0041E" d="M30 24.308c-2.271 0-3.282-.755-4.455-1.628c-1.069-.797-2.281-1.699-4.458-1.831a6.101 6.101 0 0 0-.36-.011c-1.433 0-2.978.483-4.613.996c-1.712.535-3.482 1.089-5.113 1.089c-5.215 0-9-2.912-9-6.923c0-5.396 8.244-8.308 16-8.308c9.271 0 16 4.367 16 10.385C34 22.648 31.607 24.308 30 24.308z"/><path fill="#FFE8B6" d="M18 8.385c8.691 0 15 4.076 15 9.692c0 4.144-2.06 5.538-3 5.538c-1.834 0-2.585-.559-3.723-1.407c-1.133-.844-2.543-1.895-5.104-2.049a7.253 7.253 0 0 0-.446-.014c-1.648 0-3.289.514-5.025 1.057c-1.616.506-3.286 1.028-4.702 1.028c-3.976 0-8-2.141-8-6.23c0-4.946 7.729-7.615 15-7.615M18 7C9 7 1 10.461 1 16c0 4.154 4 7.615 10 7.615c3.454 0 7.111-2.085 9.727-2.085c.093 0 .184.003.273.008c3.909.235 4 3.462 9 3.462c2.341 0 5-2.077 5-6.923C35 11.846 28 7 18 7z"/><path fill="#FFE8B6" d="M16.161 8.443S19 8.385 21 9.769c1 .692.335 2.25.335 2.25l1.665.52s-.062-.835 3-1.385c2.251-.404 4.542 1.385 4.542 1.385S28 9.077 23 8.385c-5-.693-6.839.058-6.839.058z"/><path fill="#E6E7E8" d="M25 13.923c0 1.529-1.791 2.769-4 2.769s-4-1.24-4-2.769c0-1.529 1.791-2.769 4-2.769s4 1.24 4 2.769z"/><path fill="#A7A9AC" d="M23 13.923c0 .765-.896 1.385-2 1.385s-2-.62-2-1.385s.896-1.384 2-1.384s2 .619 2 1.384z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><path fill="#fff" d="m43.34 11.83l11.98 6.53l17.92.49l11.11-6.5l1.58 4.22s6.99 18.86 6.46 29.41c-.49 9.88-1.7 18.62-10.81 26.51c-6.86 5.93-13.71 6.46-13.71 6.46L68 99.13s8.97.4 14.24 3.82c4.76 3.09 5.54 6.07 5.54 8.04c0 1.98-1.85 12.13-24.26 11.87s-23.74-11.21-23.74-13.19s2.12-5.79 8.44-8.18c5.93-2.24 11.08-1.98 11.08-1.98V78.56s-8.31-2.11-14.64-8.18c-3.91-3.75-10.42-12.26-9.49-26.11c.8-12.14 8.17-32.44 8.17-32.44" opacity="0.5"/><path fill="#e0e0e0" d="m43.34 11.83l4.75-4.35l7.38-2.37l17.01.13l7.78 3.3l4.09 3.82l1.58 4.22s6.99 18.86 6.46 29.41c-.49 9.88-1.7 18.62-10.81 26.51c-6.86 5.93-13.71 6.46-13.71 6.46l.06 20.14s9.02 1.03 14.3 4.46c4.76 3.09 5.55 5.47 5.55 7.45s-1.85 12.13-24.26 11.87s-23.74-11.21-23.74-13.19s2.12-5.79 8.44-8.18c5.93-2.24 11.01-2.4 11.01-2.4l.07-20.54s-8.31-2.11-14.64-8.18c-3.91-3.75-10.42-12.26-9.49-26.11c.8-12.15 8.17-32.45 8.17-32.45" opacity="0.7"/><path fill="#d4d4d4" d="M58.59 79.03c-.29-.09-6.77-1.66-11.17-5.1c-8.56-6.7-12.62-14.09-13.14-23.95c-.31-5.82 2.08-15.71 3.78-22.64c1.74-7.06 3.84-12.34 3.86-12.4c0 0 .28-.8.58-.65c.63.32 0 3.1 0 3.1c-.48 1.78-.94 3.46-2.64 10.42c-1.67 6.81-3.86 16.5-3.57 22.05c.49 9.23 4.3 16.17 12.37 22.48c4.1 3.21 9.31 4.47 10.02 4.81s1.63.5 1.5 1.41c-.14.94-1.59.47-1.59.47"/><path fill="#9e9e9e" d="M68.62 79.28c-.75.07-1.48-.06-1.54-.79c-.08-.9 1.04-.96 1.04-.96c.74-.27 4.53-.58 8.28-2.83c10.57-6.34 15.69-16.29 15.03-29.19c-.92-17.79-7.9-31.34-7.97-31.47l1.32-1.94c.07.14 7.7 15.08 8.65 33.31c.71 13.69-4.4 24.3-15.65 31.04c-4.1 2.46-8.77 2.79-9.16 2.83"/><path fill="#c8c8c8" d="M65.13 21.92c-.25 0-.5 0-.75-.01c-8.8-.13-16.32-2.61-19.96-6.13c-1.3-1.25-1.48-2.12-1.55-3.5c-.13-2.37 2.69-8.29 21.06-8.19c12.11.06 21.1 3.81 21.15 8.51c.02 1.42-.23 2.58-1.58 3.92c-3.45 3.39-10.29 5.4-18.37 5.4m-2.1-15.34c-12.04.1-17.2 3.42-17.15 5.57c.01.55.05.86.71 1.54c2.4 2.5 8.85 5.08 17.84 5.21c8.96.15 14.65-2.25 16.97-4.54c.75-.73 1.13-.97 1.13-1.55c0-2.27-4.87-5.94-17.75-6.22c-.59 0-1.18-.01-1.75-.01"/><path fill="#fff" d="M65.32 19.74c-.81 0-1.66-.02-2.54-.07c-14-.74-16.72-6.35-16.85-6.61c-.24-.5-.35-1.47.03-1.58c.51-.15.78.3 1.3.78c.84.78 3.87 4.83 16.52 5.12c12.4.29 16.39-3.49 17.12-4.15c.55-.5 1.13-1.54 1.59-1.24s.22 1.5-.05 1.97c-.42.72-3.55 5.78-17.12 5.78"/><path fill="#9e9e9e" d="M63.79 79.74c-2.15 0-1.71 1.65-1.82 12.62c-.08 8.75.83 10.31 1.73 10.4c.91.08 1.73-.58 1.73-9.82c.01-10.72.34-13.2-1.64-13.2"/><path fill="#fff" d="M67.11 100.05c-.82.07.07 1.86-1.04 3.28c-.88 1.12-2.53 1.79-2.46 3.05c.07 1.27 6.55.45 6.55-1.94c0-.93-.68-1.58-1.34-2.46s-1.3-1.97-1.71-1.93"/><path fill="#9e9e9e" d="M52.14 109.06s2.85 3.82 11.63 3.9c8.86.08 11.05-2.6 11.38-3.66c.24-.8-2.76-4.99-3.13-4.92s-1.34 3.96-8.19 3.71s-7.03-2.94-7.58-3.45c-.44-.41-4.11 4.42-4.11 4.42"/><path fill="#fff" d="M43.95 107.2c-2.22.29-2.32 2.87-.89 5.21c2.9 4.77 12.53 8.03 13.03 5.44c.45-2.31-4.61-2.9-4.1-6.78c.37-2.83 5.44-5.44 4.02-6.93c-1.41-1.49-3.57 2.01-6.48 2.68c-2.54.59-3.87.16-5.58.38"/><path fill="#cacaca" d="M76.12 103.4c-1.24.99 2.46 2.01 2.31 5.06s-3.2 4.37-2.61 5.21c.89 1.27 6.14-1.42 5.96-5.59c-.15-3.41-4.54-5.57-5.66-4.68"/><path fill="#fff" d="M74.78 117.48c.45 1.41 6.37.8 9.16-3.2c2.9-4.17.89-7.67-.22-7.3c-1.12.37.45 2.98-2.38 5.73c-2.84 2.75-7.06 3.19-6.56 4.77"/><path fill="#9e9e9e" d="M39.79 109.54c-.26-.24-.73 2.12.06 4.06c.67 1.64 4.1 10.2 24.65 10.35c22.86.17 24.03-9.63 23.74-12.37c-.19-1.81-.54-2.43-.72-2.43c-.17-.01-.35 1.6-.5 2.47c-.48 2.72-3.16 9.58-22.15 9.73c-17.28.14-22.34-6.93-23.23-8.19c-.63-.9-1.7-3.48-1.85-3.62"/><path fill="#cc1935" d="m38.26 47.89l3.07 8.36l11.26 6.06L67 65.03l14.33-12.45l5.03-7.42s-4.94-2.1-10.52-2.92c-8.7-1.28-16.09-1.6-24.79.02c-10.69 1.99-12.79 5.63-12.79 5.63"/><radialGradient id="SVG77Ji2K8F" cx="63.951" cy="49.576" r="25.281" gradientTransform="matrix(-.00271 1 -1.0419 -.00283 115.778 -14.234)" gradientUnits="userSpaceOnUse"><stop offset=".404" stop-color="#af0d1a"/><stop offset=".535" stop-color="#ab0c19"/><stop offset=".667" stop-color="#9f0b17"/><stop offset=".801" stop-color="#8a0813"/><stop offset=".935" stop-color="#6e050d"/><stop offset=".96" stop-color="#68040c"/></radialGradient><path fill="url(#SVG77Ji2K8F)" d="M57.96 60.51c10.06.34 11.43-5.54 19.62-11.34s11.51-4.09 11.51-4.09s2.75 12.47-6.74 22.34c-8.27 8.61-23.42 11.2-35.38 1.07c-8.87-7.51-8.71-20.6-8.71-20.6s6.99 12.19 19.7 12.62"/><path fill="#fff" d="M45.09 20.08s-1.41 3.97-3.19 11.93c-1.53 6.84-2.16 11.19-2.16 11.19s3.22-1.6 6.81-2.54c3.25-.85 6.06-.68 6.06-.68s-.09-5.21.34-8.97c.35-3.1 1.11-7.09 1.11-7.09s-2.82-.68-4.53-1.45s-4.44-2.39-4.44-2.39"/></svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1,192 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
id="svg3854"
|
||||
sodipodi:docname="milk.svg"
|
||||
inkscape:export-filename="/home/rugby471/Desktop/milk.png"
|
||||
viewBox="0 0 48 48"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:version="0.46"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
bordercolor="#666666"
|
||||
inkscape:pageshadow="2"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:zoom="0.875"
|
||||
showgrid="true"
|
||||
borderopacity="1.0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cx="223.06299"
|
||||
inkscape:cy="67.312489"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:document-units="px"
|
||||
/>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
>
|
||||
<g
|
||||
id="g4485"
|
||||
transform="matrix(.21196 0 0 .21196 -3.8611 19.962)"
|
||||
>
|
||||
<path
|
||||
id="path3887"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#555753;stroke-width:4.5217;fill:#ffffff"
|
||||
d="m99.585-90.241l24.115 13.316-24.115-5.403v-7.913z"
|
||||
/>
|
||||
<path
|
||||
id="path3881"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#555753;stroke-width:4.5217;fill:#ffffff"
|
||||
d="m72.334-53.7l16.351-28.86 28.975 40.962-45.326-12.102z"
|
||||
/>
|
||||
<path
|
||||
id="path3883"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#204a87;stroke-width:4.5217;fill:#729fcf"
|
||||
d="m88.685-83.724l32.985 6.284-4.59 34.678-28.395-40.962z"
|
||||
/>
|
||||
<path
|
||||
id="path3885"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#555753;stroke-width:4.5217;fill:#ffffff"
|
||||
d="m184.78-49.046l-67.98 8.146 6.59-46.315 12.34 5.818 26.39-0.698 0.57 7.448 22.09 25.601z"
|
||||
/>
|
||||
<path
|
||||
id="path3877"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#204a87;stroke-width:4.4901;fill:#729fcf"
|
||||
d="m184.87-48.594l7.38 160.02-68.69 17.16-5.11-169.76 66.42-7.424z"
|
||||
/>
|
||||
<path
|
||||
id="path3879"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#555753;stroke-width:4.316;fill:#eeeeec"
|
||||
d="m72.794-53.793l41.246 13.047 5.75 169.15-41.775-21.44-5.221-160.75z"
|
||||
/>
|
||||
<path
|
||||
id="path4434"
|
||||
style="stroke:#ffffff;stroke-width:4.49;fill:none"
|
||||
d="m78.349-47.369l4.926 151.9 30.905 15.86-5.37-158.14-30.461-9.619z"
|
||||
/>
|
||||
<path
|
||||
id="path4429"
|
||||
style="opacity:.70513;stroke:#ffffff;stroke-width:4.49;fill:none"
|
||||
d="m179.75-43.627l-55.85 6.211 4.84 160.17 58.04-14.51-7.03-151.87z"
|
||||
/>
|
||||
<path
|
||||
id="path4449"
|
||||
style="opacity:.65385;stroke:#ffffff;stroke-width:5;fill:none"
|
||||
sodipodi:type="inkscape:offset"
|
||||
d="m98.812-124.78l15.028 26.624 2.41-22.534-17.438-4.09z"
|
||||
inkscape:original="M 88.84375 -132.28125 L 117.15625 -82 L 121.71875 -124.5625 L 88.84375 -132.28125 z "
|
||||
transform="matrix(1.004 0 0 .81459 -.52572 24.035)"
|
||||
inkscape:radius="-5.0233502"
|
||||
/>
|
||||
</g
|
||||
>
|
||||
</g
|
||||
>
|
||||
<metadata
|
||||
>
|
||||
<rdf:RDF
|
||||
>
|
||||
<cc:Work
|
||||
>
|
||||
<dc:format
|
||||
>image/svg+xml</dc:format
|
||||
>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/>
|
||||
<dc:publisher
|
||||
>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
>
|
||||
<dc:title
|
||||
>Openclipart</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:publisher
|
||||
>
|
||||
<dc:title
|
||||
>Tango Style Milk Carton</dc:title
|
||||
>
|
||||
<dc:date
|
||||
>2009-03-29T13:04:22</dc:date
|
||||
>
|
||||
<dc:description
|
||||
>A Tango Style Milk Carton</dc:description
|
||||
>
|
||||
<dc:source
|
||||
>https://openclipart.org/detail/23491/tango-style-milk-carton-by-rugby471</dc:source
|
||||
>
|
||||
<dc:creator
|
||||
>
|
||||
<cc:Agent
|
||||
>
|
||||
<dc:title
|
||||
>rugby471</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:creator
|
||||
>
|
||||
<dc:subject
|
||||
>
|
||||
<rdf:Bag
|
||||
>
|
||||
<rdf:li
|
||||
>cartoon</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>food</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>milk</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>tango</rdf:li
|
||||
>
|
||||
</rdf:Bag
|
||||
>
|
||||
</dc:subject
|
||||
>
|
||||
</cc:Work
|
||||
>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/>
|
||||
</cc:License
|
||||
>
|
||||
</rdf:RDF
|
||||
>
|
||||
</metadata
|
||||
>
|
||||
</svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 5.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 36 36"><path fill="#F7DECE" d="M23.142 3.403C21.492 1.899 19.712 1 18 1C12.375 1 6 10.611 6 20c0 .975.079 1.899.202 2.791C7.261 30.484 12.623 35 18 35c6 0 12-5.611 12-15c0-6.531-3.086-13.161-6.858-16.597z"/><path fill="#E0AA94" d="M23.142 3.403c2.908 3.519 5.108 9.018 5.108 14.453c0 9.009-5.672 14.393-11.344 14.393c-4.541 0-9.075-3.459-10.705-9.459C7.261 30.484 12.623 35 18 35c6 0 12-5.611 12-15c0-6.531-3.086-13.161-6.858-16.597z"/></svg>
|
||||
|
After Width: | Height: | Size: 520 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 36 36"><path fill="#3B88C3" d="M32.153 24c0-1 1.523-6.212 3.047-7.735c1.522-1.523 0-3.166-1.523-3.166c-3.405 0-9.139 6.901-9.139 10.901c0 5 5.733 10.424 9.139 10.424c1.523 0 3.046-1.404 1.523-2.928C33.677 29.974 32.153 26 32.153 24z"/><path fill="#3B88C3" d="M9.021 14.384c0-3.046 1.497-6.093 3.02-6.093c4.569 0 13.322 4.823 14.845 12.439c1.524 7.616-17.865-6.346-17.865-6.346zm4.854 18.278c1.523 1.523 4.57 3.047 7.617 3.047c3.046 0-3.111-4.189-1.523-6.092c2.18-2.617-6.094 3.045-6.094 3.045z"/><path d="M2.071 28.727c.761-2.285.19-3.935-1.143-5.584c-1.333-1.651 3.872-1.904 5.585.381s5.713 6.281 2.158 6.22c-3.553-.065-6.6-1.017-6.6-1.017z"/><path fill="#55ACEE" d="M.168 23.488c.959.874 7.223 4.309 7.165 5.137c-.058.828-2.279-.088-3.105-.279c-1.485-.342-1.905-.598-2.317-.526c-.84.321-.554 1.201-.242 1.704c1.498 2.61 7.286 4.662 12.16 4.662c8.412 0 16.802-7.615 16.802-10.662c0-3.046-9.345-10.663-17.757-10.663C4.483 12.86.18 18.922.168 23.488z"/><path d="M7 17a2 2 0 1 1 .001 3.999A2 2 0 0 1 7 17z"/><path fill="#269" d="M15.08 29.98a.997.997 0 0 1-.885-1.463c1.585-3.034 2.218-5.768.154-9.243a1 1 0 0 1 1.72-1.022c2.693 4.535 1.46 8.202-.102 11.191a.999.999 0 0 1-.887.537z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,509 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
id="svg1306"
|
||||
sodipodi:docname="edit-clear.svg"
|
||||
inkscape:export-filename="/home/andreas/projekt/bild/tango/clear2.png"
|
||||
viewBox="0 0 48 48"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:version="0.46"
|
||||
sodipodi:docbase="/home/tigert/cvs/freedesktop.org/tango-icon-theme/scalable/actions"
|
||||
>
|
||||
<defs
|
||||
id="defs1308"
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient3564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="30.857"
|
||||
cx="22.571"
|
||||
gradientTransform="matrix(1 0 0 .65138 4.7924e-15 10.758)"
|
||||
r="15.571"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3560"
|
||||
style="stop-color:#000000"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3562"
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient5739"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop5741"
|
||||
style="stop-color:#c4a000"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop5743"
|
||||
style="stop-color:#c4a000;stop-opacity:0"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient7988"
|
||||
y2="30.141"
|
||||
xlink:href="#linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="10.147"
|
||||
gradientTransform="matrix(.86603 -0.5 .79749 1.3813 -15.699 -9.2251)"
|
||||
y1="38.828"
|
||||
x1="9.1054"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<linearGradient
|
||||
id="linearGradient7990"
|
||||
y2="29.909"
|
||||
xlink:href="#linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="18.486"
|
||||
gradientTransform="matrix(.86603 -0.5 .79796 1.3821 -15.729 -9.2775)"
|
||||
y1="39.253"
|
||||
x1="19.616"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<linearGradient
|
||||
id="linearGradient7992"
|
||||
y2="29"
|
||||
xlink:href="#linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="14.045"
|
||||
gradientTransform="matrix(.86603 -0.5 .84348 1.4609 -19.741 -11.134)"
|
||||
y1="36.968"
|
||||
x1="15.097"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<linearGradient
|
||||
id="linearGradient7994"
|
||||
y2="29"
|
||||
xlink:href="#linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="14.045"
|
||||
gradientTransform="matrix(.86603 -0.5 .80130 1.3879 -12.818 -11.145)"
|
||||
y1="37.576"
|
||||
x1="14.045"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<linearGradient
|
||||
id="linearGradient7996"
|
||||
y2="29"
|
||||
xlink:href="#linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="14.045"
|
||||
gradientTransform="matrix(.86603 -0.5 .86149 1.4921 -17.88 -13.911)"
|
||||
y1="34.011"
|
||||
x1="16.929"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<linearGradient
|
||||
id="linearGradient11653"
|
||||
y2="17.111"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="16.871"
|
||||
gradientTransform="matrix(.96593 .26210 -.25882 .97818 2.9571 -5.9397)"
|
||||
y1="12.363"
|
||||
x1="12.233"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop11649"
|
||||
style="stop-color:#c17d10"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop11651"
|
||||
style="stop-color:#9b650c"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient15309"
|
||||
y2="27.235"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="2.007"
|
||||
gradientTransform="matrix(1.1767 2.2371e-17 2.3198e-17 1.1767 -.81977 -5.3071)"
|
||||
y1="28.123"
|
||||
x1="10.615"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop15305"
|
||||
style="stop-color:#b30000"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop15311"
|
||||
style="stop-color:#ff5c5c"
|
||||
offset=".5"
|
||||
/>
|
||||
<stop
|
||||
id="stop15307"
|
||||
style="stop-color:#c30000"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient8582"
|
||||
y2="16.235"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="17.774"
|
||||
gradientTransform="matrix(1.0149 0 0 1.0059 -.33170 -.14019)"
|
||||
y1="19.592"
|
||||
x1="11.997"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop8578"
|
||||
style="stop-color:#dac203"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop8584"
|
||||
style="stop-color:#fdec69"
|
||||
offset=".5"
|
||||
/>
|
||||
<stop
|
||||
id="stop8580"
|
||||
style="stop-color:#fdef7e"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient9318"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="19.541"
|
||||
cx="20.764"
|
||||
gradientTransform="matrix(.44940 -.21649 .56442 1.1716 -1.4323 2.5461)"
|
||||
r="14.8"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop9322"
|
||||
style="stop-color:#fef088"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop9324"
|
||||
style="stop-color:#fde63a"
|
||||
offset=".5"
|
||||
/>
|
||||
<stop
|
||||
id="stop9326"
|
||||
style="stop-color:#dac203"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient2249"
|
||||
y2="14.2"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="14.767"
|
||||
y1="6.9526"
|
||||
x1="9.5622"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop2245"
|
||||
style="stop-color:#ffffff"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop2247"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
</defs
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
bordercolor="#666666"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-y="30"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:window-height="818"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:zoom="4"
|
||||
inkscape:window-x="518"
|
||||
showgrid="false"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cx="9.561293"
|
||||
inkscape:cy="43.364823"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="916"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:document-units="px"
|
||||
/>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
>
|
||||
<path
|
||||
id="path3556"
|
||||
sodipodi:rx="15.571428"
|
||||
sodipodi:ry="10.142858"
|
||||
style="opacity:.47368;color:#000000;fill:url(#radialGradient3564)"
|
||||
sodipodi:type="arc"
|
||||
d="m38.143 30.857a15.571 10.143 0 1 1 -31.143 0 15.571 10.143 0 1 1 31.143 0z"
|
||||
transform="matrix(1.4358 0 0 .82570 -5.0505 13.432)"
|
||||
sodipodi:cy="30.857143"
|
||||
sodipodi:cx="22.571428"
|
||||
/>
|
||||
<path
|
||||
id="path7966"
|
||||
sodipodi:nodetypes="cccsccz"
|
||||
style="fill-rule:evenodd;stroke:#8f5902;stroke-linecap:round;stroke-width:1.0063;fill:url(#linearGradient11653)"
|
||||
d="m6.9163 1.778c1.7298-0.87804 4.1257 0.0035 5.0117 1.5573l4.17 9.4847c0.886 1.554 0.634 3.369-0.566 4.071-1.199 0.701-2.878 0.015-3.764-1.539l-5.9182-8.356c-0.8859-1.5538-0.629-4.3573 1.0665-5.218z"
|
||||
/>
|
||||
<path
|
||||
id="path14575"
|
||||
sodipodi:nodetypes="cccccz"
|
||||
style="opacity:.42308;stroke:url(#linearGradient2249);stroke-linecap:round;stroke-width:1.0057;fill:none"
|
||||
d="m7.4463 2.7359c1.4219-0.7858 2.8207-0.1927 3.6957 1.3394l4.448 10.087-2.432 1.42-6.2964-8.8205c-0.8746-1.5321-0.8763-3.2182 0.5847-4.0256z"
|
||||
/>
|
||||
<path
|
||||
id="path7968"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill-rule:evenodd;stroke:#c4a000;fill:url(#radialGradient9318)"
|
||||
d="m14.781 22.794c-0.796 4.286 0.634 13.952 6.259 19.694 4.347 0.141 13.99-3.418 20.531-10.197-9.236-4.517-15.536-15.723-20.435-13.283l-6.355 3.786z"
|
||||
/>
|
||||
<path
|
||||
id="path7972"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke:url(#linearGradient7988);stroke-linecap:round;fill:none"
|
||||
d="m16.338 24.367c2.349 6.271 2.49 12.789 7.184 17.92"
|
||||
/>
|
||||
<path
|
||||
id="path7970"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:.46154;stroke:#ffffff;fill:none"
|
||||
d="m15.919 23.414c-0.912 0.508-0.161 12.52 5.584 18 7.386-0.186 15.524-6.396 18.393-8.837-9.499-5.984-14.925-14.762-18.481-12.574l-5.496 3.411z"
|
||||
/>
|
||||
<path
|
||||
id="path7974"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke:url(#linearGradient7990);stroke-linecap:round;fill:none"
|
||||
d="m23.848 22.273c0.867-0.749 5.751 6.088 14.999 12.382"
|
||||
/>
|
||||
<path
|
||||
id="path7976"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke:url(#linearGradient7992);stroke-linecap:round;fill:none"
|
||||
d="m18.013 22.864c3.712 5.347 2.963 12.424 8.841 18.081"
|
||||
/>
|
||||
<path
|
||||
id="path7978"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke:url(#linearGradient7994);stroke-linecap:round;fill:none"
|
||||
d="m22.984 22.776s8.177 13.071 11.182 15.104"
|
||||
/>
|
||||
<path
|
||||
id="path7980"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke:url(#linearGradient7996);stroke-linecap:round;fill:none"
|
||||
d="m19.3 22.201c3.447 2.917 8.703 14.163 11.31 17.477"
|
||||
/>
|
||||
<path
|
||||
id="path7982"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#c4a000;stroke-linecap:round;stroke-width:1.0104;fill:url(#linearGradient8582)"
|
||||
d="m8.5089 18.062l11.462-6.559c0.598 2.383-0.342 3.241 1.796 7.148l-7.911 4.526c-1.453-3.477-3.565-3.41-5.3471-5.115z"
|
||||
/>
|
||||
<path
|
||||
id="path11655"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="opacity:.24725;stroke:#ffffff;fill:none"
|
||||
d="m14.043 21.246c-0.814-1.422-2.562-2.237-3.679-3.128l8.758-4.933c-0.02 1.481 0.566 3.088 0.875 4.518l-5.954 3.543z"
|
||||
/>
|
||||
<rect
|
||||
id="rect7984"
|
||||
style="fill-rule:evenodd;stroke:#690000;stroke-linecap:round;fill:url(#linearGradient15309)"
|
||||
transform="matrix(.86602 -0.5 0.5 .86603 0 0)"
|
||||
rx="1"
|
||||
ry="1"
|
||||
height="3.4599"
|
||||
width="13.015"
|
||||
y="24.175"
|
||||
x="-1.4128"
|
||||
/>
|
||||
<path
|
||||
id="path10193"
|
||||
sodipodi:rx="2.1465743"
|
||||
sodipodi:ry="2.1465743"
|
||||
style="stroke-linejoin:round;fill-rule:evenodd;stroke:#8f5902;stroke-linecap:round;stroke-width:1.6552;fill:#ffffff"
|
||||
sodipodi:type="arc"
|
||||
d="m-17.173 4.0836a2.1466 2.1466 0 1 1 -4.293 0 2.1466 2.1466 0 1 1 4.293 0z"
|
||||
transform="matrix(.58356 .15636 -.15636 .58356 20.458 5.1588)"
|
||||
sodipodi:cy="4.0836182"
|
||||
sodipodi:cx="-19.319168"
|
||||
/>
|
||||
<path
|
||||
id="path3558"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m27.735 40.555s1.506-0.5 2.176-0.942c-1.238-1.944-3.403-5.895-5.403-8.875 1.193 6.54 3.227 9.817 3.227 9.817z"
|
||||
/>
|
||||
<path
|
||||
id="path3560"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m31.142 39.058l2.026-1.085c-1.945-1.856-7.469-10.116-7.469-10.116l5.443 11.201z"
|
||||
/>
|
||||
<path
|
||||
id="path3562"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m35.659 36.388l2.436-1.744c-3.182-1.326-11.587-9.88-11.587-9.88 2.383 3.012 6.768 8.612 9.151 11.624z"
|
||||
/>
|
||||
<path
|
||||
id="path3565"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m39.154 33.917l1.692-1.409c-3.315-1.503-12.496-9.912-12.496-9.912s6.075 9.2 10.804 11.321z"
|
||||
/>
|
||||
<path
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m24.376 41.572s1.197-0.28 2.044-0.456c-1.459-1.237-3.801-4.437-5.094-8.611 0.53 6.895 3.05 9.067 3.05 9.067z"
|
||||
/>
|
||||
<path
|
||||
id="path2267"
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="opacity:.31731;fill-rule:evenodd;fill:#ffffff"
|
||||
d="m21.371 41.969l1.248-0.013c-2.298-2.519-3.138-5.366-4.431-9.406-0.133 4.684 3.183 9.419 3.183 9.419z"
|
||||
/>
|
||||
</g
|
||||
>
|
||||
<metadata
|
||||
>
|
||||
<rdf:RDF
|
||||
>
|
||||
<cc:Work
|
||||
>
|
||||
<dc:format
|
||||
>image/svg+xml</dc:format
|
||||
>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/>
|
||||
<dc:publisher
|
||||
>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
>
|
||||
<dc:title
|
||||
>Openclipart</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:publisher
|
||||
>
|
||||
<dc:title
|
||||
>tango edit clear</dc:title
|
||||
>
|
||||
<dc:date
|
||||
>2010-03-18T17:13:35</dc:date
|
||||
>
|
||||
<dc:description
|
||||
>"Clear" icon from <A href="http://tango.freedesktop.org/Tango_Desktop_Project"> Tango Project </A> \n<BR><BR> \nSince version 0.8.90 Tango Project icons are Public Domain: <A href="http://tango.freedesktop.org/Frequently_Asked_Questions#Terms_of_Use.3F"> Tango Project FAQ </A></dc:description
|
||||
>
|
||||
<dc:source
|
||||
>https://openclipart.org/detail/32329/tango-edit-clear-by-warszawianka</dc:source
|
||||
>
|
||||
<dc:creator
|
||||
>
|
||||
<cc:Agent
|
||||
>
|
||||
<dc:title
|
||||
>warszawianka</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:creator
|
||||
>
|
||||
<dc:subject
|
||||
>
|
||||
<rdf:Bag
|
||||
>
|
||||
<rdf:li
|
||||
>broom</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>clear</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>edit</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>externalsource</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>household</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>icon</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>sweep</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>tango</rdf:li
|
||||
>
|
||||
</rdf:Bag
|
||||
>
|
||||
</dc:subject
|
||||
>
|
||||
</cc:Work
|
||||
>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/>
|
||||
</cc:License
|
||||
>
|
||||
</rdf:RDF
|
||||
>
|
||||
</metadata
|
||||
>
|
||||
</svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,123 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
id="svg4847"
|
||||
sodipodi:docname="edit-icon.svg"
|
||||
viewBox="0 0 581.98 744.96"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
bordercolor="#666666"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-y="24"
|
||||
fit-margin-left="0"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:window-height="844"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:zoom="0.17110443"
|
||||
inkscape:window-x="0"
|
||||
showgrid="false"
|
||||
borderopacity="1.0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cx="1337.0235"
|
||||
inkscape:cy="-553.48697"
|
||||
fit-margin-top="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1589"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:document-units="px"
|
||||
/>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(-105.03 -121.31)"
|
||||
>
|
||||
<g
|
||||
id="g4885"
|
||||
>
|
||||
<g
|
||||
id="g4830"
|
||||
style="fill:#000000"
|
||||
transform="matrix(11.996 0 0 11.996 -1026.7 -3323.3)"
|
||||
>
|
||||
<path
|
||||
id="path11535"
|
||||
sodipodi:nodetypes="sccccscccccccccccccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;fill:#000000"
|
||||
d="m139.16 289.02c-1.2148-0.82153-2.4093-1.383-3.6056-1.8664l-1.2844 1.7675 7.3028 5.3067 1.2844-1.7675c-1.2539-1.5418-2.4824-2.6188-3.6972-3.4403zm-5.7164 1.0383-1.2844 1.7675 7.3028 5.3067 1.2844-1.7675zm-2.2202 3.0554-17.334 23.854 3.9697 1.2896 16.735-22.702zm4.0836 3.0131-16.643 22.656 2.2523 3.5376 17.61-23.9zm-21.862 21.863-1.8834 9.5262 8.3239-4.591-2.3632-3.5249z"
|
||||
/>
|
||||
<path
|
||||
id="rect4819"
|
||||
sodipodi:nodetypes="ssssssccssssssccs"
|
||||
style="fill:#000000"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m101.62 290.19c-4.0274 0-7.2812 3.2539-7.2812 7.2812v44.531c0 4.0274 3.2539 7.25 7.2812 7.25h29.75c4.0274 0 7.2812-3.2226 7.2812-7.25v-34.844l-4.4375 6v27.156c0 2.4813-1.9874 4.5-4.4688 4.5h-26.5c-2.4813 0-4.4688-2.0187-4.4688-4.5v-41.188c0-2.4813 1.9874-4.4688 4.4688-4.4688h21.127l2.8419-4.4688z"
|
||||
/>
|
||||
</g
|
||||
>
|
||||
</g
|
||||
>
|
||||
</g
|
||||
>
|
||||
<metadata
|
||||
>
|
||||
<rdf:RDF
|
||||
>
|
||||
<cc:Work
|
||||
>
|
||||
<dc:format
|
||||
>image/svg+xml</dc:format
|
||||
>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/>
|
||||
<dc:publisher
|
||||
>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
>
|
||||
<dc:title
|
||||
>Openclipart</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:publisher
|
||||
>
|
||||
</cc:Work
|
||||
>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/>
|
||||
</cc:License
|
||||
>
|
||||
</rdf:RDF
|
||||
>
|
||||
</metadata
|
||||
>
|
||||
</svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!--part of the matt icon theme by sixsixfive released under CC0 (https://creativecommons.org/publicdomain/zero/1.0/) on openclipart-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128">
|
||||
<defs id="0">
|
||||
<linearGradient id="8">
|
||||
<stop id="f" stop-color="#888"/>
|
||||
<stop offset="1" id="g" stop-color="#323232"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="9">
|
||||
<stop id="h" stop-color="#b3925d"/>
|
||||
<stop offset="1" id="i" stop-color="#5d4014"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="A">
|
||||
<stop id="j" stop-color="#fff"/>
|
||||
<stop id="k" offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="B">
|
||||
<stop id="l"/>
|
||||
<stop id="m" offset="1" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="C">
|
||||
<stop id="n" stop-color="#fadabb"/>
|
||||
<stop id="o" offset="1" stop-color="#e5ab72"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="D">
|
||||
<stop id="p" stop-color="#75511a"/>
|
||||
<stop id="q" offset="1" stop-color="#5d4014"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="E">
|
||||
<stop id="r" stop-color="#ffdfbf"/>
|
||||
<stop id="s" offset="1" stop-color="#ffbf80"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="F">
|
||||
<stop id="t" stop-color="#555"/>
|
||||
<stop id="u" offset="1" stop-color="#323232"/>
|
||||
</linearGradient>
|
||||
<filter x="-0.042" y="-0.624" width="1.084" height="2.249" color-interpolation-filters="sRGB" id="G">
|
||||
<feGaussianBlur id="v" stdDeviation="2.35772"/>
|
||||
</filter>
|
||||
<radialGradient cx="67.55" cy="123.47" r="67.55" id="H" xlink:href="#B" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.06707317,0,115.18784)"/>
|
||||
<radialGradient cx="-150.21" cy="73.48" r="53.47" id="I" xlink:href="#F" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.976266,0,0,0.3449619,-3.7879993,47.329754)"/>
|
||||
<linearGradient y1="58.51" x2="0" y2="71.36" id="J" xlink:href="#A" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient cx="-202.11" cy="96.42" r="15.01" id="K" xlink:href="#C" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7106547,-0.7931363,0.6515295,0.5837345,-89.147801,-140.18956)"/>
|
||||
<radialGradient cx="-166.93" cy="24.37" r="25" id="L" xlink:href="#E" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9762659,0,0,1.2035801,-3.7880098,-12.311177)"/>
|
||||
<radialGradient cx="-165.45" cy="-1.671" r="26.613" id="M" xlink:href="#D" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9957564,0,0,0.6692533,-1.241811,1.0115844)"/>
|
||||
<linearGradient y1="-16.423" x2="0" y2="3.159" id="N" xlink:href="#A" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient cx="66.47" cy="27.991" r="40.938" id="O" xlink:href="#Y" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.8666039,-0.696391,0.450993,1.8564548,-142.05942,17.195472)"/>
|
||||
<linearGradient id="P">
|
||||
<stop id="w" stop-color="#eee"/>
|
||||
<stop id="x" offset="1" stop-color="#eee" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient cx="64.7" cy="-15.174" r="55.27" id="Q" xlink:href="#P" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5330966,-3.1358239e-8,2.404893e-8,1.1240308,-33.828167,2.9909361)"/>
|
||||
<radialGradient cx="66.4" cy="4.9" r="58.696" id="R" xlink:href="#X" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000243,0.9858658,-1.0002429,-0.9858657,136.67077,-51.812516)"/>
|
||||
<radialGradient cx="60.05" cy="51.39" r="15.03" id="S" xlink:href="#W" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.404511,1.1888571,-1,-1.1813958,199.73811,11.750541)"/>
|
||||
<radialGradient cx="58.4" cy="23.325" r="56.734" id="T" xlink:href="#V" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0.9856262,-0.9999999,-0.9856264,147.08467,-25.868967)"/>
|
||||
<radialGradient cx="63.894" cy="117.35" r="53.91" id="U" xlink:href="#B" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.08641975,0,107.20963)"/>
|
||||
<linearGradient id="V">
|
||||
<stop id="y" stop-color="#cc0700"/>
|
||||
<stop id="z" offset="1" stop-color="#af0600"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="W">
|
||||
<stop id="10" stop-color="#eee"/>
|
||||
<stop id="11" offset="1" stop-color="#dcdcdc"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="X">
|
||||
<stop id="12" stop-color="#4f4f4f"/>
|
||||
<stop id="13" offset="1" stop-color="#393939"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="Y">
|
||||
<stop id="14" stop-color="#fd0"/>
|
||||
<stop id="15" offset="1" stop-color="#f3c300"/>
|
||||
</linearGradient>
|
||||
<linearGradient xlink:href="#A" id="Z" gradientUnits="userSpaceOnUse" y1="-16.423" x2="0" y2="3.159" gradientTransform="matrix(1.140285,0,0,1.140285,257.5128,12.15365)"/>
|
||||
<radialGradient xlink:href="#E" id="a" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1132214,0,0,1.3724243,253.19339,-1.8846005)" cx="-166.93" cy="24.37" r="25"/>
|
||||
<radialGradient xlink:href="#C" id="b" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.81034889,-0.90440143,0.74292932,0.66562369,155.8589,-147.7024)" cx="-202.11" cy="96.42" r="15.01"/>
|
||||
<linearGradient xlink:href="#A" id="c" gradientUnits="userSpaceOnUse" y1="58.51" x2="0" y2="71.36" gradientTransform="matrix(1.140285,0,0,1.140285,257.5128,12.15365)"/>
|
||||
<linearGradient xlink:href="#9" id="d" y1="4.414" x2="0" y2="46.986" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient xlink:href="#8" id="e" y1="77.4" x2="0" y2="119.23" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<path id="1" transform="matrix(1.1192903,0,0,0.92353176,-11.606091,5.3740718)" d="m 135.09648,123.46932 a 67.548241,4.5306745 0 1 1 -135.09648,0 67.548241,4.5306745 0 1 1 135.09648,0 z" opacity="0.574" fill="url(#H)" filter="url(#G)"/>
|
||||
<path id="2" d="M 5.3082468,118.67452 C 4.4116407,109.13339 5.4174861,90.327641 18.627141,87.271761 l 43.534906,-9.314439 45.468713,8.642793 c 13.43545,2.872317 14.89986,21.400285 15.30318,31.830975 -117.8523818,0.4466 0.0526,-0.0905 -117.6256932,0.24343 z" fill="url(#e)" fill-rule="evenodd" stroke="#323232" stroke-width="1.113"/>
|
||||
<path id="3" d="m 62.096458,79.430465 -43.15266,9.229182 -0.03558,0 c -5.961684,1.394811 -9.1561809,6.265976 -10.8683416,12.258063 -1.5823051,5.53761 -1.6803354,11.73138 -1.3540885,16.32033 27.8567411,-0.0784 42.9245811,-0.1385 50.0656381,-0.14254 3.669643,-0.002 5.4946,0.0286 6.414103,0.0356 0.459752,0.004 0.667842,-0.006 0.81958,0 0.05086,0.002 0.140768,0.0272 0.213804,0.0356 0.01026,3.4e-4 0.08974,-3.7e-4 0.106844,0 0.10274,0.002 0.252961,-0.001 0.641411,0 0.906378,0.003 2.735863,0.009 6.414103,0 7.137865,-0.0177 22.285981,-0.0733 50.030009,-0.17817 -0.23419,-5.02544 -0.76254,-11.32395 -2.60128,-16.85484 -2.0027,-6.024113 -5.32175,-10.794039 -11.40285,-12.115524 L 62.096458,79.430465 z" opacity="0.593" fill="none" stroke="url(#c)" stroke-width="1.113"/>
|
||||
<path id="4" d="m 49.340124,68.316031 c 0.232071,5.632326 -1.102929,8.878416 -3.741651,13.652446 10.273865,18.883733 36.903362,9.149388 36.208381,-0.532337 L 78.860369,65.334187 49.340124,68.316031 z" fill="url(#b)" fill-rule="evenodd" stroke="#f29b68" stroke-width="1.113"/>
|
||||
<path id="5" d="m 91.690868,45.127184 c 0,18.673308 -12.251564,33.828458 -27.34725,33.828458 -15.095675,0 -27.34725,-15.15515 -27.34725,-33.828458 0,-18.673308 12.251575,-33.828457 27.34725,-33.828457 15.095686,0 27.34725,15.155149 27.34725,33.828457 z" fill="url(#a)" stroke="#f29b68" stroke-linejoin="round" stroke-width="0.976"/>
|
||||
<path id="6" d="M 63.246082,5.000126 C 37.138926,5.7045962 32.228449,24.976953 33.622344,39.472385 c 0.216461,2.251112 1.232409,4.310787 2.862788,6.131791 1.225237,-11.431424 6.715823,-21.558204 20.381899,-28.370974 l 7.281473,8.480787 c 2.692258,3.13469 14.51617,7.992957 18.981594,3.813302 5.55247,0.14469 7.86986,11.481751 8.855442,16.887249 1.47952,-1.994974 1.139019,-5.417749 1.537766,-8.101397 2.074771,-13.963529 -5.795088,-32.9016337 -27.66336,-33.313017 -0.886788,-0.016682 -1.771672,-0.022725 -2.613864,0 z" fill="url(#d)" fill-rule="evenodd" stroke="#57401e" stroke-width="1.143"/>
|
||||
<path id="7" d="M 63.272377,6.1315198 C 50.50082,6.4761449 43.191856,11.263477 39.076955,17.676905 34.962054,24.090334 34.0853,32.307012 34.765252,39.377954 c 0.115157,1.197651 0.573655,2.302422 1.175919,3.385221 1.847273,-10.599807 7.57521,-20.144796 20.418228,-26.54726 a 1.1541391,1.1541391 0 0 1 1.389723,0.285072 l 7.30495,8.480869 c 0.995173,1.15871 4.561118,3.241373 8.231433,4.276069 3.670315,1.034696 7.351394,1.020708 9.051012,-0.570143 a 1.1541391,1.1541391 0 0 1 0.81958,-0.285071 c 1.777202,0.04631 3.268444,0.996638 4.418604,2.316204 1.15016,1.319566 2.049925,3.013265 2.779445,4.846211 0.745655,1.873493 1.324783,3.880499 1.781695,5.772693 0.07013,-1.057828 0.0894,-2.130285 0.249437,-3.207051 C 93.380382,31.433553 91.968379,23.470063 87.717237,17.213665 83.466095,10.957266 76.441711,6.3309954 65.838018,6.1315198 c -0.877221,-0.016502 -1.751318,-0.021973 -2.565641,0 z" opacity="0.586" fill="none" stroke="url(#Z)" stroke-width="1.143"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!--part of the matt icon theme by sixsixfive released under CC0 (https://creativecommons.org/publicdomain/zero/1.0/) on openclipart-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128">
|
||||
<defs id="0">
|
||||
<linearGradient id="2">
|
||||
<stop id="V" stop-color="#f0ff80"/>
|
||||
<stop offset="1" id="W" stop-color="#8bb300"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="3">
|
||||
<stop id="X"/>
|
||||
<stop offset="1" id="Y" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="4">
|
||||
<stop id="Z" stop-color="#eee"/>
|
||||
<stop offset="1" id="a" stop-color="#eee" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient xlink:href="#3" id="5" cx="63.64" cy="120.39" r="61.81" gradientTransform="matrix(1,0,0,2.4630543e-2,0,117.42275)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient xlink:href="#4" id="6" gradientUnits="userSpaceOnUse" y1="10.02" x2="0" y2="24.345"/>
|
||||
<linearGradient id="7">
|
||||
<stop id="b" stop-color="#8bb300"/>
|
||||
<stop offset="1" id="c" stop-color="#9dca00"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="8">
|
||||
<stop id="d" stop-color="#eee"/>
|
||||
<stop offset="1" id="e" stop-color="#dcdcdc"/>
|
||||
</linearGradient>
|
||||
<radialGradient r="15.03" cy="51.39" cx="60.05" gradientTransform="matrix(-1.404511,1.1888571,-1,-1.1813958,199.73811,11.750541)" gradientUnits="userSpaceOnUse" id="9" xlink:href="#8"/>
|
||||
<linearGradient id="A">
|
||||
<stop id="f" stop-color="#bf0303"/>
|
||||
<stop id="g" offset="1" stop-color="#d20303"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="B">
|
||||
<stop id="h" stop-opacity="0"/>
|
||||
<stop id="i" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="C">
|
||||
<stop id="j" stop-color="#cc0700"/>
|
||||
<stop offset="1" id="k" stop-color="#af0600"/>
|
||||
</linearGradient>
|
||||
<radialGradient xlink:href="#3" id="D" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.08641975,0,107.20963)" cx="63.894" cy="117.35" r="53.91"/>
|
||||
<radialGradient xlink:href="#C" id="E" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0.98562623,-0.99999987,-0.98562638,147.08467,-25.868967)" cx="58.4" cy="23.325" r="56.734"/>
|
||||
<radialGradient xlink:href="#8" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5353487,-0.71407287,0.76470596,0.98039217,-143.34962,-215.12271)" r="38.946" cy="148.57" cx="-64" id="F"/>
|
||||
<radialGradient xlink:href="#4" id="G" cx="64.7" cy="-15.174" r="55.27" gradientTransform="matrix(1.5330966,-3.1358239e-8,2.404893e-8,1.1240308,-33.828167,2.9909361)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient id="H" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.19786,1.1857652,-1.3214521,-2.4493602,242.79307,244.01592)" cx="26.716" cy="90.87" r="20.2" xlink:href="#N"/>
|
||||
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.19786,1.1857652,-1.3214521,-2.4493602,242.79307,244.01592)" r="20.2" cy="95.22" cx="24.1" id="I" xlink:href="#N"/>
|
||||
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000243,0.9858658,-1.0002429,-0.9858657,136.67077,-51.812516)" r="58.696" cy="5.944" cx="65.35" id="J" xlink:href="#8"/>
|
||||
<radialGradient id="K" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.404511,1.1888571,-0.99999995,-1.1813958,199.01878,10.32822)" cx="60.05" cy="51.39" r="15.03" xlink:href="#8"/>
|
||||
<linearGradient id="L">
|
||||
<stop id="l" stop-color="#005bba"/>
|
||||
<stop id="m" offset="1" stop-color="#00438a"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="M">
|
||||
<stop id="n" stop-color="#555"/>
|
||||
<stop id="o" offset="1" stop-color="#434343"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="N">
|
||||
<stop id="p" stop-color="#161616"/>
|
||||
<stop id="q" offset="1" stop-color="#323232"/>
|
||||
</linearGradient>
|
||||
<radialGradient xlink:href="#N" id="O" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-3.3087888,1.7851213,-1.9893924,-3.6874121,333.1657,335.98671)" cx="26.716" cy="90.87" r="20.2"/>
|
||||
<linearGradient xlink:href="#2" id="P" y1="7.828" x2="0" y2="115.73" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<g id="1">
|
||||
<path id="Q" d="m 125.44621,120.38797 a 61.809662,1.5224055 0 1 1 -123.619321,0 61.809662,1.5224055 0 1 1 123.619321,0 z" transform="matrix(1.1724137,0,0,3.4,-10.608364,-288.64103)" opacity="0.527" fill="url(#5)"/>
|
||||
<rect id="R" width="119.49" height="119.49" x="4.255" y="2.146" fill="#638000" rx="3.773"/>
|
||||
<path id="S" d="m 116.125,7.890503 c -35.324648,0.849803 -70.674633,-0.3391269 -106,0.5 0.646733,35.776443 -0.5098277,71.572182 0.46875,107.343747 35.734203,-0.63318 71.507267,0.58836 107.25,-0.46875 -0.81724,-35.726244 0.9888,-72.135423 -0.78125,-107.437497 -0.31341,8.355e-4 -0.62734,-0.00985 -0.9375,0.0625 z" fill="url(#P)"/>
|
||||
<path id="T" d="m 12.46875,12.8125 c 0.05063,102.73445 0.08483,0.452522 0.4375,102.6875 103.18934,-0.53189 -0.126429,-0.0174 102.5625,-0.4375 0.31111,-102.7332 0.36479,0.0353 -0.1875,-102.1875 -103.103949,-0.221994 -0.70094,-0.291288 -102.8125,-0.0625 z" transform="translate(-9.9800104e-8,-2.1094983)" opacity="0.459" fill="none" stroke="url(#6)" stroke-linejoin="round" stroke-linecap="square" stroke-width="5.31"/>
|
||||
<path d="m 63.982251,16.890511 c -12.679837,0 -22.93492,10.499446 -22.93492,23.467456 0,9.668933 5.718532,17.986501 13.881659,21.585798 l -1.775147,6.390534 -10.792894,38.556201 21.621302,-0.10644 21.621301,-0.071 L 74.775145,68.263352 72.999997,61.97933 c 8.201698,-3.582099 13.952672,-11.923891 13.952672,-21.621361 0,-12.968009 -10.290581,-23.467456 -22.970418,-23.467456 l 0,8e-6 z" id="U" fill="#555"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
id="svg1"
|
||||
sodipodi:docname="exit.svg"
|
||||
viewBox="0 0 60 60"
|
||||
sodipodi:version="0.32"
|
||||
_SVGFile__filename="oldscale/apps/exit.svg"
|
||||
version="1.0"
|
||||
y="0"
|
||||
x="0"
|
||||
inkscape:version="0.40"
|
||||
sodipodi:docbase="/home/danny/work/flat/SVG/mono/scalable/apps"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
bordercolor="#666666"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-y="0"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:window-height="698"
|
||||
inkscape:zoom="5.3863214"
|
||||
inkscape:window-x="0"
|
||||
borderopacity="1.0"
|
||||
inkscape:current-layer="svg1"
|
||||
inkscape:cx="32.454035"
|
||||
inkscape:cy="22.468175"
|
||||
inkscape:window-width="1024"
|
||||
inkscape:pageopacity="0.0"
|
||||
/>
|
||||
<path
|
||||
id="path1747"
|
||||
style="stroke-linejoin:round;stroke:#ffffff;stroke-linecap:round;stroke-width:5;fill:none"
|
||||
transform="translate(50 5.1993e-7)"
|
||||
d="m-12.504 11.725v7.822c6.0611 3.209 9.5062 9.95 8.2982 16.894-1.3504 7.763-8.0632 13.336-15.942 13.265-7.879-0.07-14.493-5.806-15.704-13.592-1.07-6.879 2.376-13.509 8.358-16.656v-7.703c-7.92 2.716-13.607 9.403-15.228 17.251-0.547 2.647-0.614 5.411-0.179 8.209 1.74 11.19 11.37 19.558 22.694 19.659 11.324 0.102 21.109-8.086 23.05-19.243 1.9412-11.157-4.5348-22.148-15.228-25.876-0.04-0.014-0.078-0.017-0.119-0.03z"
|
||||
/>
|
||||
<path
|
||||
id="path1748"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke-linejoin:round;stroke:#ffffff;stroke-linecap:round;stroke-width:12.5;fill:none"
|
||||
transform="translate(50 5.1993e-7)"
|
||||
d="m-19.999 6.8746v24.511"
|
||||
/>
|
||||
<path
|
||||
id="path696"
|
||||
style="fill-rule:evenodd;fill:#000000"
|
||||
transform="matrix(.95176 0 0 .95176 1.448 1.5234)"
|
||||
d="m37.875 10.719v8.219c6.368 3.37 9.988 10.454 8.719 17.75-1.419 8.156-8.472 14.011-16.75 13.937-8.279-0.074-15.228-6.101-16.5-14.281-1.124-7.228 2.496-14.194 8.781-17.5v-8.094c-8.321 2.854-14.296 9.88-16 18.125-0.5746 2.781-0.6446 5.686-0.1875 8.625 1.8285 11.757 11.946 20.549 23.844 20.656 11.897 0.107 22.179-8.496 24.218-20.218 2.039-11.723-4.765-23.27-16-27.188-0.042-0.015-0.082-0.018-0.125-0.031z"
|
||||
/>
|
||||
<path
|
||||
id="path701"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:7.9794;fill:none"
|
||||
transform="matrix(.93992 0 0 .93992 1.776 3.8193)"
|
||||
d="m30.029 3.2505v26.078"
|
||||
/>
|
||||
<metadata
|
||||
>
|
||||
<rdf:RDF
|
||||
>
|
||||
<cc:Work
|
||||
>
|
||||
<dc:format
|
||||
>image/svg+xml</dc:format
|
||||
>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/>
|
||||
<dc:publisher
|
||||
>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
>
|
||||
<dc:title
|
||||
>Openclipart</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:publisher
|
||||
>
|
||||
</cc:Work
|
||||
>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/>
|
||||
</cc:License
|
||||
>
|
||||
</rdf:RDF
|
||||
>
|
||||
</metadata
|
||||
>
|
||||
</svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" id="svg1" height="80pt" width="80pt">
|
||||
<g id="g862" fill-rule="evenodd">
|
||||
<path id="path861" stroke-width="1pt" fill-opacity=".5" d="m55.906 12.094c-10.238 0-18.531 6.648-18.531 14.844 0 5.592 3.914 10.405 9.625 12.937-7.566 1.456-14.409 3.966-18.469 7.813-8.63 11.454-5.437 20.463-5.593 22.093 0.772 0.866 5.705 4.192 9.374 3.938-0.371-7.486 1.782-17.969 1.782-17.969-0.47 0.376-2.171 14.506-1.625 18-0.05 0.005-0.107-0.035-0.157-0.031 0.002 0.039-0.002 0.086 0 0.125 0.4 6.49 3.653 21.402 5.063 22.656 13.819 1.983 27.023 1.715 41.469 0.312 0 0 0.402-3.805 0.5-4.718 1.206-4.066 2.422-10.136 1.468-14.469 0.093-0.909 0.095-0.854 0.188-1.781-0.789-11.043-2.882-18.539-2.812-18.375 1.636 4.803 2.812 18.375 2.812 18.375 4.782-0.815 8.156-1.649 12.938-4.344 1.566-1.63 2.341-10.93-4.75-23.594-2.981-5.323-11.944-8.281-22.219-9.125 4.518-2.708 7.5-6.98 7.5-11.843 0-0.054-0.031-0.103-0.031-0.157 0.117-0.57 0.345-1.337 0.406-1.719-0.257-0.168-0.397-0.138-0.625-0.25-1.295-7.185-8.981-12.718-18.313-12.718z"/>
|
||||
<g id="g836">
|
||||
<path id="path828" stroke-linejoin="round" d="m18.815 66.311c0.157-1.63-3.046-10.639 5.584-22.094 13.016-12.332 53.567-12.473 60.659 0.191 7.091 12.664 6.319 21.993 4.753 23.623-4.782 2.696-8.154 3.51-12.936 4.325 0 0-1.177-13.555-2.814-18.359-0.07-0.164 2.026 7.321 2.814 18.363-1.091 10.917-2.182 20.957-2.182 20.957-14.445 1.402-27.638 1.676-41.457-0.307-1.41-1.254-4.666-16.16-5.066-22.65-0.4-7.493 1.793-18.092 1.793-18.092-0.47 0.376-2.182 14.498-1.636 17.992-3.685 0.358-8.728-3.071-9.512-3.949z" stroke="#000" stroke-width="1.25" fill="#00c"/>
|
||||
<path id="path827" stroke-linejoin="round" d="m70.329 23.447c0 8.195-8.308 14.847-18.546 14.847s-18.547-6.652-18.547-14.847c0-8.196 8.309-14.848 18.547-14.848 10.238 0.0002 18.546 6.652 18.546 14.848z" stroke="#000" stroke-width="1.25" fill="#00c"/>
|
||||
<path id="path830" fill-opacity=".25" fill="#fff" d="m51.512 9.7195c-8.077-2.6923-27.102 11.308-12.025 23.872 9.153-1.796-8.436-16.334 12.025-23.872z"/>
|
||||
<path id="path831" fill-opacity=".25" fill="#fff" d="m42.179 37.181c-0.898-0.18-12.923 1.974-17.231 7.897-3.589 2.154-7 12.384-5.564 20.641 1.795 1.435 5.205 3.769 6.103 3.23 5.025-10.589-11.846-21.538 16.692-31.768z"/>
|
||||
<path id="path832" fill-opacity=".25" fill="#fff" d="m30.153 55.129c-3.589 10.949-0.179 30.512 3.769 36.974 3.949 1.256 9.513 1.795 10.77 1.436 1.076-9.154-14.898-7.898-14.539-38.41z"/>
|
||||
<path id="path833" fill-opacity=".25" d="m52.589 37.54c15.256-4.129 11.307-20.462 18.128-15.975-0.539 3.411-2.693 15.436-18.128 15.975z"/>
|
||||
<path id="path834" fill-opacity=".25" d="m81.306 70.565s8.257-1.616 8.616-3.231c1.974-6.282-3.411-21.179-5.923-23.692-12.205-4.308 13.281 24.948-2.693 26.923z"/>
|
||||
<path id="path835" fill-opacity=".25" d="m64.973 93.539s7.898 0.538 8.795-0.898 5.026-14 2.513-20.102c-8.257-6.82 3.051 20.82-11.308 21z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rdf:RDF xmlns="http://web.resource.org/cc/">
|
||||
<Work rdf:about="">
|
||||
<dc:title>Clipart by Nicu Buculei - head1</dc:title>
|
||||
<dc:rights>
|
||||
<Agent>
|
||||
<dc:title>Nicu Buculei</dc:title>
|
||||
</Agent>
|
||||
</dc:rights>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
|
||||
</Work>
|
||||
<License rdf:about="http://web.resource.org/cc/PublicDomain">
|
||||
<permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
|
||||
<permits rdf:resource="http://web.resource.org/cc/Distribution"/>
|
||||
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
|
||||
</License>
|
||||
</rdf:RDF>
|
||||
<metadata>
|
||||
<rdf:RDF>
|
||||
<cc:Work>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
|
||||
<dc:publisher>
|
||||
<cc:Agent rdf:about="http://openclipart.org/">
|
||||
<dc:title>Openclipart</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:title>Abstract person</dc:title>
|
||||
<dc:date>2008-02-27T12:59:43</dc:date>
|
||||
<dc:description>abstract figure of a person</dc:description>
|
||||
<dc:source>http://openclipart.org/detail/15044/abstract-person-by-nicubunu</dc:source>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>nicubunu</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>abstract</rdf:li>
|
||||
<rdf:li>clip art</rdf:li>
|
||||
<rdf:li>clipart</rdf:li>
|
||||
<rdf:li>image</rdf:li>
|
||||
<rdf:li>media</rdf:li>
|
||||
<rdf:li>people</rdf:li>
|
||||
<rdf:li>png</rdf:li>
|
||||
<rdf:li>public domain</rdf:li>
|
||||
<rdf:li>svg</rdf:li>
|
||||
<rdf:li>symbol</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!--part of the matt icon theme by sixsixfive released under CC0 (https://creativecommons.org/publicdomain/zero/1.0/) on openclipart-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128">
|
||||
<defs id="0">
|
||||
<linearGradient id="9">
|
||||
<stop id="Z" stop-color="#888"/>
|
||||
<stop id="a" offset="1" stop-color="#323232"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="A">
|
||||
<stop id="b" stop-color="#b3925d"/>
|
||||
<stop id="c" offset="1" stop-color="#5d4014"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="B">
|
||||
<stop id="d" stop-color="#fff"/>
|
||||
<stop id="e" offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="C">
|
||||
<stop id="f"/>
|
||||
<stop id="g" offset="1" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="D">
|
||||
<stop id="h" stop-color="#fadabb"/>
|
||||
<stop id="i" offset="1" stop-color="#e5ab72"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="E">
|
||||
<stop id="j" stop-color="#ffdfbf"/>
|
||||
<stop id="k" offset="1" stop-color="#ffbf80"/>
|
||||
</linearGradient>
|
||||
<filter x="-0.042" y="-0.624" width="1.084" height="2.249" color-interpolation-filters="sRGB" id="F">
|
||||
<feGaussianBlur stdDeviation="2.35772" id="l"/>
|
||||
</filter>
|
||||
<radialGradient cx="67.55" cy="123.47" r="67.55" id="G" xlink:href="#C" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.06707317,0,115.18784)"/>
|
||||
<linearGradient y1="-16.423" x2="0" y2="3.159" id="H" xlink:href="#B" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.140285,0,0,1.140285,257.5128,12.15365)"/>
|
||||
<radialGradient cx="-166.93" cy="24.37" r="25" id="I" xlink:href="#E" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1132214,0,0,1.3724243,253.19339,-1.8846005)"/>
|
||||
<radialGradient cx="-202.11" cy="96.42" r="15.01" id="J" xlink:href="#D" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.81034889,-0.90440143,0.74292932,0.66562369,155.8589,-147.7024)"/>
|
||||
<linearGradient y1="58.51" x2="0" y2="71.36" id="K" xlink:href="#B" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.140285,0,0,1.140285,257.5128,12.15365)"/>
|
||||
<linearGradient y1="4.414" x2="0" y2="46.986" id="L" xlink:href="#A" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient y1="77.4" x2="0" y2="119.23" id="M" xlink:href="#9" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient y1="8.707" x2="0" y2="120.54" id="N" xlink:href="#T" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient cx="60.05" cy="51.39" r="15.03" id="O" xlink:href="#S" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.404511,1.1888571,-1,-1.1813958,199.73811,11.750541)"/>
|
||||
<linearGradient id="P">
|
||||
<stop id="m" stop-color="#eee"/>
|
||||
<stop id="n" offset="1" stop-color="#eee" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient cx="64.7" cy="-15.174" r="55.27" id="Q" xlink:href="#P" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5330966,-3.1358239e-8,2.404893e-8,1.1240308,-33.828167,2.9909361)"/>
|
||||
<radialGradient cx="63.894" cy="117.35" r="53.91" id="R" xlink:href="#C" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.08641975,0,107.20963)"/>
|
||||
<linearGradient id="S">
|
||||
<stop id="o" stop-color="#eee"/>
|
||||
<stop id="p" offset="1" stop-color="#dcdcdc"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="T">
|
||||
<stop id="q" stop-color="#f0ff80"/>
|
||||
<stop id="r" offset="1" stop-color="#8bb300"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path d="m 135.09648,123.46932 a 67.548241,4.5306745 0 1 1 -135.09648,0 67.548241,4.5306745 0 1 1 135.09648,0 z" transform="matrix(1.1192903,0,0,0.92353176,-11.606091,5.3740718)" id="1" opacity="0.574" fill="url(#G)" filter="url(#F)"/>
|
||||
<path d="M 5.3082468,118.67452 C 4.4116407,109.13339 5.4174861,90.327641 18.627141,87.271761 l 43.534906,-9.314439 45.468713,8.642793 c 13.43545,2.872317 14.89986,21.400285 15.30318,31.830975 -117.8523818,0.4466 0.0526,-0.0905 -117.6256932,0.24343 z" id="2" fill="url(#M)" fill-rule="evenodd" stroke="#323232" stroke-width="1.113"/>
|
||||
<path d="m 62.096458,79.430465 -43.15266,9.229182 -0.03558,0 c -5.961684,1.394811 -9.1561809,6.265976 -10.8683416,12.258063 -1.5823051,5.53761 -1.6803354,11.73138 -1.3540885,16.32033 27.8567411,-0.0784 42.9245811,-0.1385 50.0656381,-0.14254 3.669643,-0.002 5.4946,0.0286 6.414103,0.0356 0.459752,0.004 0.667842,-0.006 0.81958,0 0.05086,0.002 0.140768,0.0272 0.213804,0.0356 0.01026,3.4e-4 0.08974,-3.7e-4 0.106844,0 0.10274,0.002 0.252961,-0.001 0.641411,0 0.906378,0.003 2.735863,0.009 6.414103,0 7.137865,-0.0177 22.285981,-0.0733 50.030009,-0.17817 -0.23419,-5.02544 -0.76254,-11.32395 -2.60128,-16.85484 -2.0027,-6.024113 -5.32175,-10.794039 -11.40285,-12.115524 L 62.096458,79.430465 z" id="3" opacity="0.593" fill="none" stroke="url(#K)" stroke-width="1.113"/>
|
||||
<path d="m 49.340124,68.316031 c 0.232071,5.632326 -1.102929,8.878416 -3.741651,13.652446 10.273865,18.883733 36.903362,9.149388 36.208381,-0.532337 L 78.860369,65.334187 49.340124,68.316031 z" id="4" fill="url(#J)" fill-rule="evenodd" stroke="#f29b68" stroke-width="1.113"/>
|
||||
<path d="m 91.690868,45.127184 c 0,18.673308 -12.251564,33.828458 -27.34725,33.828458 -15.095675,0 -27.34725,-15.15515 -27.34725,-33.828458 0,-18.673308 12.251575,-33.828457 27.34725,-33.828457 15.095686,0 27.34725,15.155149 27.34725,33.828457 z" id="5" fill="url(#I)" stroke="#f29b68" stroke-linejoin="round" stroke-width="0.976"/>
|
||||
<path d="M 63.246082,5.000126 C 37.138926,5.7045962 32.228449,24.976953 33.622344,39.472385 c 0.216461,2.251112 1.232409,4.310787 2.862788,6.131791 1.225237,-11.431424 6.715823,-21.558204 20.381899,-28.370974 l 7.281473,8.480787 c 2.692258,3.13469 14.51617,7.992957 18.981594,3.813302 5.55247,0.14469 7.86986,11.481751 8.855442,16.887249 1.47952,-1.994974 1.139019,-5.417749 1.537766,-8.101397 2.074771,-13.963529 -5.795088,-32.9016337 -27.66336,-33.313017 -0.886788,-0.016682 -1.771672,-0.022725 -2.613864,0 z" id="6" fill="url(#L)" fill-rule="evenodd" stroke="#57401e" stroke-width="1.143"/>
|
||||
<path d="M 63.272377,6.1315198 C 50.50082,6.4761449 43.191856,11.263477 39.076955,17.676905 34.962054,24.090334 34.0853,32.307012 34.765252,39.377954 c 0.115157,1.197651 0.573655,2.302422 1.175919,3.385221 1.847273,-10.599807 7.57521,-20.144796 20.418228,-26.54726 a 1.1541391,1.1541391 0 0 1 1.389723,0.285072 l 7.30495,8.480869 c 0.995173,1.15871 4.561118,3.241373 8.231433,4.276069 3.670315,1.034696 7.351394,1.020708 9.051012,-0.570143 a 1.1541391,1.1541391 0 0 1 0.81958,-0.285071 c 1.777202,0.04631 3.268444,0.996638 4.418604,2.316204 1.15016,1.319566 2.049925,3.013265 2.779445,4.846211 0.745655,1.873493 1.324783,3.880499 1.781695,5.772693 0.07013,-1.057828 0.0894,-2.130285 0.249437,-3.207051 C 93.380382,31.433553 91.968379,23.470063 87.717237,17.213665 83.466095,10.957266 76.441711,6.3309954 65.838018,6.1315198 c -0.877221,-0.016502 -1.751318,-0.021973 -2.565641,0 z" id="7" opacity="0.586" fill="none" stroke="url(#H)" stroke-width="1.143"/>
|
||||
<g transform="matrix(0.58571262,0,0,0.58571262,54.716369,53.514393)" id="8">
|
||||
<path d="m 117.80366,117.35108 a 53.910149,4.6589017 0 1 1 -107.8202997,0 53.910149,4.6589017 0 1 1 107.8202997,0 z" transform="translate(1.2996963,3.4536055)" id="U" opacity="0.443" fill="url(#R)"/>
|
||||
<path d="m 122.08898,64.625572 a 56.734097,55.918617 0 1 1 -113.4681952,0 56.734097,55.918617 0 1 1 113.4681952,0 z" transform="matrix(1.0119373,0,0,1.0266947,-2.1350421,-4.4029736)" id="V" fill="url(#N)"/>
|
||||
<path d="m 122.08898,64.625572 a 56.734097,55.918617 0 1 1 -113.4681952,0 56.734097,55.918617 0 1 1 113.4681952,0 z" transform="matrix(1.0119373,0,0,1.0266947,-2.1350421,-4.4029736)" id="W" fill="none" stroke="#638000" stroke-width="3.924"/>
|
||||
<path d="m 60.3125,32.15625 c -1.863454,0 -3.375,1.511546 -3.375,3.375 l 0,19.34375 -19.34375,0 c -1.863454,0 -3.375,1.511546 -3.375,3.375 l 0,7.40625 c 0,1.863454 1.511546,3.34375 3.375,3.34375 l 19.34375,0 0,19.375 c 0,1.863454 1.511546,3.34375 3.375,3.34375 l 7.375,0 c 1.863454,0 3.375,-1.480296 3.375,-3.34375 l 0,-19.375 19.34375,0 c 1.863454,0 3.375,-1.480296 3.375,-3.34375 l 0,-7.40625 c 0,-1.863454 -1.511546,-3.375 -3.375,-3.375 l -19.34375,0 0,-19.34375 c 0,-1.863454 -1.511546,-3.375 -3.375,-3.375 l -7.375,0 z" id="X" fill="#555"/>
|
||||
<g transform="translate(-0.00454736,5.8747942e-4)" id="Y">
|
||||
<path d="m 65.34375,11.21875 c -29.979853,0 -54.21875,23.915681 -54.21875,53.40625 0,29.490569 24.238897,53.40625 54.21875,53.40625 29.979853,0 54.25,-23.917374 54.25,-53.40625 0,-29.488876 -24.270147,-53.40625 -54.25,-53.40625 z" transform="matrix(1.0119373,0,0,1.0266947,-2.1350421,-4.4029736)" id="s" fill="none" stroke="url(#Q)" stroke-width="2.079"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1,532 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:ns1="http://sozi.baierouge.fr"
|
||||
id="svg2"
|
||||
sodipodi:docname="green-tick.svg"
|
||||
inkscape:export-filename="/home/koppi/Desktop/ic_valid.png"
|
||||
viewBox="0 0 512 512"
|
||||
inkscape:export-xdpi="52.73"
|
||||
version="1.1"
|
||||
inkscape:export-ydpi="52.73"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
>
|
||||
<title
|
||||
id="title3082"
|
||||
>green tick</title
|
||||
>
|
||||
<defs
|
||||
id="defs4"
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient3999"
|
||||
>
|
||||
<stop
|
||||
id="stop4001"
|
||||
style="stop-color:#ffffff"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop4003"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<filter
|
||||
id="filter4023"
|
||||
inkscape:collect="always"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4025"
|
||||
stdDeviation="2.4258303"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<filter
|
||||
id="filter4485"
|
||||
inkscape:collect="always"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4487"
|
||||
stdDeviation="1.1062279"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<filter
|
||||
id="filter4587"
|
||||
height="1.1179"
|
||||
width="1.517"
|
||||
color-interpolation-filters="sRGB"
|
||||
y="-.058945"
|
||||
x="-.25850"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4589"
|
||||
stdDeviation="0.81428547"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<filter
|
||||
id="filter4605"
|
||||
inkscape:collect="always"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4607"
|
||||
stdDeviation="1.6484403"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<filter
|
||||
id="filter4613"
|
||||
inkscape:collect="always"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4615"
|
||||
stdDeviation="0.999409"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<filter
|
||||
id="filter4996"
|
||||
inkscape:collect="always"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4998"
|
||||
stdDeviation="11.739469"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</filter
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5000"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="238.62"
|
||||
cx="229.21"
|
||||
gradientTransform="matrix(.81737 .57611 -1.8271 2.5923 462.04 67.492)"
|
||||
r="102.53"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop4593"
|
||||
style="stop-color:#d6f948"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop4595"
|
||||
style="stop-color:#67a226"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5002"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="316.37"
|
||||
cx="62.352"
|
||||
gradientTransform="matrix(-.29991 1.5184 -1.3648 -.26959 674.59 613.64)"
|
||||
r="237.72"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3849"
|
||||
style="stop-color:#b8f714"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3851"
|
||||
style="stop-color:#478c20"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5004"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="285.55"
|
||||
cx="127.34"
|
||||
gradientTransform="matrix(.39010 -.53963 1.7887 1.2931 -450.3 518.97)"
|
||||
r="54.928"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3883"
|
||||
style="stop-color:#b5f948"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3885"
|
||||
style="stop-color:#60a226"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5006"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="269.24"
|
||||
cx="59.431"
|
||||
gradientTransform="matrix(-1.2347 -.70514 1.4443 -2.5289 -253.85 1509.6)"
|
||||
r="27.633"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3907"
|
||||
style="stop-color:#c8f948"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3909"
|
||||
style="stop-color:#67a226"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5008"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="113.38"
|
||||
cx="482.8"
|
||||
gradientTransform="matrix(1.2452 -1.3398 1.3318 1.2377 -263.13 1172.6)"
|
||||
r="59.109"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3923"
|
||||
style="stop-color:#a7e507"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3925"
|
||||
style="stop-color:#559a09"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5010"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="323.81"
|
||||
cx="301.8"
|
||||
gradientTransform="matrix(.22372 .21012 -1.1032 1.1746 591.52 414.96)"
|
||||
r="175.26"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3941"
|
||||
style="stop-color:#7cbb51"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3943"
|
||||
style="stop-color:#78b261"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5012"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="434.9"
|
||||
cx="206.53"
|
||||
gradientTransform="matrix(.29527 .38971 -1.6605 1.2581 872.75 332.85)"
|
||||
r="64.754"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop3967"
|
||||
style="stop-color:#7cbb51"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop3969"
|
||||
style="stop-color:#78b261;stop-opacity:.67059"
|
||||
offset="1"
|
||||
/>
|
||||
</radialGradient
|
||||
>
|
||||
<linearGradient
|
||||
id="linearGradient5014"
|
||||
y2="49.509"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="401.02"
|
||||
gradientTransform="translate(0 540.36)"
|
||||
y1="32.932"
|
||||
x1="385.83"
|
||||
inkscape:collect="always"
|
||||
>
|
||||
<stop
|
||||
id="stop4049"
|
||||
style="stop-color:#ffffff"
|
||||
offset="0"
|
||||
/>
|
||||
<stop
|
||||
id="stop4051"
|
||||
style="stop-color:#ffffff;stop-opacity:0"
|
||||
offset="1"
|
||||
/>
|
||||
</linearGradient
|
||||
>
|
||||
<radialGradient
|
||||
id="radialGradient5016"
|
||||
xlink:href="#linearGradient3999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="126.68"
|
||||
cx="321.29"
|
||||
gradientTransform="matrix(-.15631 -.11785 1.5631 -2.0731 188.43 960.93)"
|
||||
r="111.07"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<radialGradient
|
||||
id="radialGradient5018"
|
||||
xlink:href="#linearGradient3999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="115.5"
|
||||
cx="1663.3"
|
||||
gradientTransform="matrix(-.58161 .72453 -.80354 -.64504 1150.5 -317.88)"
|
||||
r="111.07"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
<radialGradient
|
||||
id="radialGradient5020"
|
||||
xlink:href="#linearGradient3999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="113.33"
|
||||
cx="1663.8"
|
||||
gradientTransform="matrix(-.41176 .71855 -.22544 -.12918 779.55 -379.43)"
|
||||
r="111.07"
|
||||
inkscape:collect="always"
|
||||
/>
|
||||
</defs
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
bordercolor="#666666"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-y="24"
|
||||
pagecolor="#2b2b2b"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:zoom="1.0136719"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:window-height="746"
|
||||
showgrid="false"
|
||||
borderopacity="1.0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cx="75.468213"
|
||||
inkscape:cy="263.8921"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:document-units="px"
|
||||
/>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
transform="translate(0 -540.36)"
|
||||
>
|
||||
<path
|
||||
id="path4874"
|
||||
style="filter:url(#filter4996);fill-opacity:.83404;fill:#000000"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m374.69 571.52c-11.01 10.85-123.44 166.02-198.16 267.53l-108.28-73.562-53.625 91.438 2.4688 27.938s176 149.06 187.75 148.53c13.159-0.5867 204.82-236.02 286.69-342.19-23.597-17.702-41.218-31.783-57.25-44.656l57.25 44.656 0.375-27.719c-42.88-38.44-73.73-71.2-117.23-91.96zm-170.19 276.88c-9.8124 13.71-19.075 26.544-27.406 37.938l27.406-37.938z"
|
||||
transform="matrix(.97172 0 0 .98958 10.055 10.768)"
|
||||
/>
|
||||
<g
|
||||
id="g4859"
|
||||
>
|
||||
<path
|
||||
id="path3927"
|
||||
d="m383.83 594.04c7.5567-15.813 3.2215-25.68-5.8978-33.154-11.016 10.858-123.45 166.04-198.17 267.55l0.57401 47.279z"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:url(#radialGradient5000)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3845"
|
||||
d="m383.83 594.04c-4.9602-1.6394-134.95 187.94-203.49 281.68-32.889-26.82-65.696-53.64-108.21-80.461-24.176 23.175-26.582 24.503-51.791 78.99 0 0 175.99 149.04 187.74 148.52 13.159-0.5867 204.83-236.03 286.7-342.19-50.09-37.578-73.652-59.099-110.95-86.535z"
|
||||
sodipodi:nodetypes="ccccscc"
|
||||
style="fill:url(#radialGradient5002)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3857"
|
||||
d="m180.34 875.72-0.57-47.28-108.28-73.59 0.647 40.41z"
|
||||
style="fill:url(#radialGradient5004)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3895"
|
||||
d="m72.137 795.26-0.65012-40.408-53.615 91.461 2.4746 27.937z"
|
||||
style="fill:url(#radialGradient5006)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3911"
|
||||
d="m494.79 680.58 0.36596-27.703c-42.875-38.441-73.718-71.219-117.22-91.987 7.9037 15.957 5.8978 33.154 5.8978 33.154z"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="fill:url(#radialGradient5008)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3937"
|
||||
d="m467.09 662.84c-108.67 166.37-205.08 223.9-337.91 298.58l16.159 12.917c178.43-117.14 283.26-213.04 336.31-299.49z"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
style="filter:url(#filter4605);fill:url(#radialGradient5010)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3947"
|
||||
d="m296.7 924.15c-46.581-2.1421-105.16 25.246-133.41 65.837 0 0 40.533 1.8047 61.939-1.2994s36.157-27.576 71.468-64.537z"
|
||||
sodipodi:nodetypes="cczc"
|
||||
style="opacity:.75556;filter:url(#filter4613);fill:url(#radialGradient5012)"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3971"
|
||||
d="m379.29 566.32c6.9436 14.038 8.2202 20.058 4.5397 27.722"
|
||||
sodipodi:nodetypes="cc"
|
||||
style="filter:url(#filter4587);stroke:url(#linearGradient5014);stroke-linecap:round;stroke-width:5;fill:none"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path3997"
|
||||
d="m383.83 594.04-203.49 281.68"
|
||||
style="filter:url(#filter4023);stroke:url(#radialGradient5016);stroke-width:5;fill:none"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
<path
|
||||
id="path4149"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="filter:url(#filter4023);stroke:url(#radialGradient5018);stroke-width:5;fill:none"
|
||||
d="m70.737 796.46c34.322 18.086 70.895 47.429 108.21 80.461"
|
||||
/>
|
||||
<path
|
||||
id="path4153"
|
||||
sodipodi:nodetypes="cc"
|
||||
d="m74.837 797.59c-23.195 21.469-43.011 63.218-53.067 77.077"
|
||||
style="filter:url(#filter4485);stroke:url(#radialGradient5020);stroke-width:7;fill:none"
|
||||
inkscape:connector-curvature="0"
|
||||
/>
|
||||
</g
|
||||
>
|
||||
</g
|
||||
>
|
||||
<metadata
|
||||
>
|
||||
<rdf:RDF
|
||||
>
|
||||
<cc:Work
|
||||
>
|
||||
<dc:format
|
||||
>image/svg+xml</dc:format
|
||||
>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
|
||||
/>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
|
||||
/>
|
||||
<dc:publisher
|
||||
>
|
||||
<cc:Agent
|
||||
rdf:about="http://openclipart.org/"
|
||||
>
|
||||
<dc:title
|
||||
>Openclipart</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:publisher
|
||||
>
|
||||
<dc:title
|
||||
>green tick</dc:title
|
||||
>
|
||||
<dc:date
|
||||
>2011-09-09T14:54:18</dc:date
|
||||
>
|
||||
<dc:description
|
||||
>a green tick.</dc:description
|
||||
>
|
||||
<dc:source
|
||||
>https://openclipart.org/detail/159733/green-tick-by-koppi</dc:source
|
||||
>
|
||||
<dc:creator
|
||||
>
|
||||
<cc:Agent
|
||||
>
|
||||
<dc:title
|
||||
>koppi</dc:title
|
||||
>
|
||||
</cc:Agent
|
||||
>
|
||||
</dc:creator
|
||||
>
|
||||
<dc:subject
|
||||
>
|
||||
<rdf:Bag
|
||||
>
|
||||
<rdf:li
|
||||
>green</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>grün</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>haken</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>häkchen</rdf:li
|
||||
>
|
||||
<rdf:li
|
||||
>tick</rdf:li
|
||||
>
|
||||
</rdf:Bag
|
||||
>
|
||||
</dc:subject
|
||||
>
|
||||
</cc:Work
|
||||
>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/publicdomain/"
|
||||
>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution"
|
||||
/>
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
|
||||
/>
|
||||
</cc:License
|
||||
>
|
||||
</rdf:RDF
|
||||
>
|
||||
</metadata
|
||||
>
|
||||
</svg
|
||||
>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h4 class="mb-4">Pending Users</h4>
|
||||
<ul class="list-group">
|
||||
{% for user in users %}
|
||||
<li class="list-group-item d-flex justify-content-between">
|
||||
{{ user.name }}
|
||||
<a class="btn btn-sm btn-success" href="/admin/approve/{{ user.id }}">Approve</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,68 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ title or "L@PP" }}</title>
|
||||
|
||||
<link href="/static/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="/static/jquery.min.js"></script>
|
||||
<script src="/static/bootstrap.min.js"></script>
|
||||
|
||||
<style>
|
||||
body {
|
||||
padding-top: 64px;
|
||||
}
|
||||
.topbar {
|
||||
height: 56px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body class="bg-light">
|
||||
|
||||
<!-- Top Bar -->
|
||||
<nav class="navbar fixed-top navbar-light bg-white border-bottom topbar">
|
||||
<div class="container-fluid">
|
||||
<span class="navbar-brand fw-semibold">
|
||||
<a class="btn btn-light" href="{{ logo_url or '/' }}" role="button">L@PP</a>
|
||||
{% if button_top_url1 and button_top_txt1 %}
|
||||
<a href="{{ button_top_url1 }}"><img style="width: 2em; height: 2em" src="/static/{{ button_top_txt1 }}.svg"></a>
|
||||
{% endif %}
|
||||
{% if button_top_url2 and button_top_txt2 %}
|
||||
<a href="{{ button_top_url2 }}"><img style="width: 2em; height: 2em" src="/static/{{ button_top_txt2 }}.svg"></a>
|
||||
{% endif %}
|
||||
</span>
|
||||
|
||||
<div class="d-flex align-items-center gap-2">
|
||||
{% if current_user.is_authenticated %}
|
||||
<span class="text-muted small d-none d-sm-inline">
|
||||
{{ current_user.name }}
|
||||
</span>
|
||||
<a href="{{ url_for('auth.logout') }}"
|
||||
>
|
||||
<img style="width: 2em; height: 2em" src="/static/logout.svg">
|
||||
</a>
|
||||
{% else %}
|
||||
<a href="{{ url_for('auth.login') }}"
|
||||
>
|
||||
<img style="width: 2em; height: 2em" src="/static/login.svg"></a>
|
||||
</a>
|
||||
<a href="{{ url_for('auth.register') }}"
|
||||
>
|
||||
<img style="width: 2em; height: 2em" src="/static/register.svg"></a>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Main Content -->
|
||||
<div class="container py-4">
|
||||
<div class="mx-auto" style="max-width: 420px;">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,21 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<form method="POST">
|
||||
{{ form.hidden_tag() }}
|
||||
|
||||
<div class="list">
|
||||
|
||||
<article>
|
||||
{{ form.field1(class="") }}
|
||||
{{ form.field2(class="") }}
|
||||
{{ form.field3(class="") }}
|
||||
{{ form.field4(class="") }}
|
||||
</article>
|
||||
|
||||
</div>
|
||||
|
||||
<button type="submit" class="contrast">{{ form.submit.label }}</button>
|
||||
</form>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,40 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<table id="flowerlist">
|
||||
{% for flower in flowers %}
|
||||
<tr class="flowerlist">
|
||||
<td class="flowerlist">
|
||||
<a href="javascript:DoSubmit('{{flower[0]}}')">
|
||||
{{ flower[1] }}, {{ flower[2] }}, {{ flower[3] }}
|
||||
</a>
|
||||
</td>
|
||||
<td class="right"><span style="white-space: nowrap;">{{ flower[4][:10] }}</span></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
<form id="gotopage" action="{{ url_for('data-record-show') }}" method="POST">
|
||||
<input type="hidden" id="_io" name="id" value="">
|
||||
</form>
|
||||
|
||||
<script language="javascript">
|
||||
var $rows = $('#flowerlist tr');
|
||||
$('#search').keyup(function() {
|
||||
var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
|
||||
|
||||
$rows.show().filter(function() {
|
||||
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
|
||||
return !~text.indexOf(val);
|
||||
}).hide();
|
||||
});
|
||||
|
||||
$('#search').keyup();
|
||||
|
||||
function DoSubmit(id) {
|
||||
$('#_id').val(id);
|
||||
$('#gotopage').submit();
|
||||
}
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1>Hello, {{ current_user.username }}!</h1>
|
||||
<p>Welcome to your modern minimal dashboard.</p>
|
||||
|
||||
{% if not current_user.is_authenticated %}
|
||||
<p>
|
||||
<a href="{{ url_for('login') }}">Login</a> or
|
||||
<a href="{{ url_for('register') }}">Register</a>
|
||||
</p>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,101 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<script>
|
||||
let image_to_update = ''
|
||||
|
||||
// handle Delete
|
||||
function handleDelete(button) {
|
||||
window.location.href = '/item_delete/'+button.name ;
|
||||
}
|
||||
|
||||
// handle AddOne
|
||||
function handleAddOne(button) {
|
||||
const response = fetch('/item_addone/'+button.name);
|
||||
}
|
||||
|
||||
// handle Add with quantity
|
||||
function handleAddWithQuantity(button, q) {
|
||||
const response = fetch('/item_addquantity/'+button.name+'/'+q);
|
||||
}
|
||||
|
||||
//trigger change category button
|
||||
function clickedCategoryButton(image) {
|
||||
image_to_update = image
|
||||
}
|
||||
|
||||
// selected the category
|
||||
function clickedUpdateCategory4Item(icon) {
|
||||
image_to_update.src="{{ iconpath }}" + icon.name + ".svg"
|
||||
const response = fetch('/item_update_category/'+image_to_update.name+'/'+icon.name);
|
||||
$('#staticBackdrop').modal('hide');
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
$("#myInput").on("keyup", function() {
|
||||
var value = $(this).val().toLowerCase();
|
||||
$("#myList tbody tr").filter(function() {
|
||||
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<form method="post">
|
||||
<div class=".container">
|
||||
<div class="d-flex justify-content-between">
|
||||
<input class="form-control" id="myInput" type="text" name="newItem" placeholder="Search.."/>
|
||||
|
||||
<button class="btn btn-success">+</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<br/>
|
||||
|
||||
<table id="myList" style="width: 100%; background-color: white;">
|
||||
<tbody>
|
||||
{% for item in items %}
|
||||
<tr style="border-bottom: 1px solid lightgray;">
|
||||
<td style="padding: 5px;">
|
||||
<a class="btn btn-{% if item.is_suggestion %}primary{% else %}info{% endif %} btn-sm" name="{{ item.id }}" onclick='handleAddOne(this);'> + </a>
|
||||
{{ item.label }}</td>
|
||||
<td style="text-align: right">
|
||||
{% if item.quantity %}
|
||||
<a class="btn btn-outline-primary btn-sm" name="{{ item.id }}" onclick='handleAddWithQuantity(this, {{ item.quantity }} );'>{{ item.quantity }}{{ item.unit }}</a>
|
||||
|
||||
{% endif %}
|
||||
|
||||
<a href="" data-bs-toggle="modal" data-bs-target="#staticBackdrop"><img id="category4itemid_{{ item.id }}" name="{{item.id}}" src="{{ iconpath }}{{ item.category }}.svg" style="height: 2em;" alt="..." onclick='clickedCategoryButton(this);'></a>
|
||||
|
||||
|
||||
<a class="btn btn-danger btn-sm" name="{{ item.id }}" onclick='handleDelete(this);'>-</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="staticBackdropLabel">Category</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
{% for icon in icons %}
|
||||
<a name= "{{ icon }}" onclick='clickedUpdateCategory4Item(this);'><img style="border: 10px solid white; height: 4em; width: 4em;" src="{{ iconpath }}{{ icon }}.svg" alt="..."></a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Exit</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,64 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<script>
|
||||
const IDLE_TIME = 10000; // 10 seconds of inactivity required after user activity
|
||||
const MIN_REFRESH_GAP = 20000; // 20 seconds minimum between refreshes
|
||||
|
||||
function recordInteraction() {
|
||||
|
||||
// Reset idle timer
|
||||
if (idleTimeout) {
|
||||
clearTimeout(idleTimeout);
|
||||
}
|
||||
|
||||
idleTimeout = setTimeout(checkAndRefresh, IDLE_TIME);
|
||||
}
|
||||
|
||||
function checkAndRefresh() {
|
||||
window.location.reload(true);
|
||||
idleTimeout = setTimeout(checkAndRefresh, MIN_REFRESH_GAP);
|
||||
}
|
||||
|
||||
// User activity listeners
|
||||
["click", "touchstart", "keydown"].forEach(event => {
|
||||
document.addEventListener(event, recordInteraction, { passive: true });
|
||||
});
|
||||
|
||||
// Start idle timer on load
|
||||
idleTimeout = setTimeout(checkAndRefresh, MIN_REFRESH_GAP);
|
||||
|
||||
document.addEventListener("visibilitychange", () => {
|
||||
if (document.hidden && idleTimeout) clearTimeout(idleTimeout);
|
||||
if (!document.hidden) checkAndRefresh();
|
||||
});
|
||||
|
||||
// handle Checboc clicks
|
||||
function handleCBClick(cb) {
|
||||
const response = fetch('/item_update/'+cb.name+'/'+cb.checked);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div class="list-group">
|
||||
{% for item in items %}
|
||||
<label class="list-group-item {% if item.is_checked %}text-muted{% endif %} d-flex justify-content-between">
|
||||
<div>
|
||||
<input class="form-check-input me-1" type="checkbox" value="" name="{{ item.id }}" {% if item.is_checked %}CHECKED{% endif %} onclick='handleCBClick(this);'>
|
||||
{{ item.label }}
|
||||
</div>
|
||||
<div>
|
||||
{% if item.quantity > 1 %}
|
||||
{{ item.quantity }}{{ item.unit }}
|
||||
{% endif %}
|
||||
<img src="/static/categories/{{ item.category }}.svg" style="height: 2em;" alt="...">
|
||||
</div>
|
||||
</label>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,56 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
{% if error_id %}
|
||||
<div class="alert alert-danger" role="alert">
|
||||
You gave a duplicate name.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<ul class="list-group">
|
||||
{% for il in ilists %}
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<form method="post">
|
||||
<input class="form-control mb-3{% if error_id==il.id %} is-invalid{% endif %}" name="name" value="{{ il.name }}" required>
|
||||
<input type="hidden" name="iid" value="{{ il.id }}">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="{{ il.is_active }}" name="is_active" {% if il.is_active %}CHECKED{% endif %}>
|
||||
<label class="form-check-label" for="is_active">
|
||||
Is active
|
||||
</label>
|
||||
</div>
|
||||
|
||||
{% for u in users %}
|
||||
<div class="form-check form-check-inline">
|
||||
<input class="form-check-input" type="checkbox" name="shares_{{ u.id }}" value="{{ u.name }}" {% if u.shares_in_list(il.id) %}CHECKED{% endif %}>
|
||||
<label class="form-check-label" for="inlineCheckbox1">{{ u.name }}</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" name="to_be_deleted">
|
||||
<label class="form-check-label" for="to_be_deleted">
|
||||
Must be deleted
|
||||
</label>
|
||||
</div>
|
||||
<input type="hidden" name="owner_user_id" value="{{ il.owner_user_id }}">
|
||||
|
||||
<input type="image" src="/static/save.svg" alt="Save" style="width: 2em; height: 2em;">
|
||||
</form>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
New:<br/>
|
||||
<ul class="list-group">
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<form method="post">
|
||||
<input class="form-control mb-3{% if error_id==9999 %} is-invalid{% endif %}" name="name" placeholder="{{ newlist.name }}" required>
|
||||
<input type="image" src="/static/save.svg" alt="Save" style="width: 2em; height: 2em;">
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
{{ error_id }}
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,18 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<div class="list-group">
|
||||
{% for il in ilists %}
|
||||
<a class="list-group-item d-flex justify-content-between align-items-center" href="/items/{{ il.id }}">
|
||||
{{ il.name }}
|
||||
<span class="badge bg-primary rounded-pill">{{ il.items_left() }} / {{ il.items_total() }}</span>
|
||||
</a>
|
||||
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<br/>
|
||||
<a href="{{ url_for('lists.edit') }}"><img style="width: 3em; height: 3em" src="/static/edit.svg"></a>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,15 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h3 class="text-center mb-4"><img style="width: 3em; height: 3em" src="/static/login.svg"></h3>
|
||||
<form method="post">
|
||||
<input class="form-control mb-3" name="name" placeholder="Name" required>
|
||||
<input class="form-control mb-3" name="password" type="password" placeholder="Password" required>
|
||||
<input
|
||||
type="image"
|
||||
src="/static/save.svg"
|
||||
alt="Save"
|
||||
style="width: 2em; height: 2em;"
|
||||
>
|
||||
|
||||
</form>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="alert alert-info text-center">
|
||||
Your account is pending admin approval.
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,14 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h3 class="text-center mb-4"><img style="width: 3em; height: 3em" src="/static/register.svg"></h3>
|
||||
<form method="post">
|
||||
<input class="form-control mb-3" name="name" placeholder="New Name" required>
|
||||
<input class="form-control mb-3" name="password" type="password" placeholder="New Password" required>
|
||||
<input
|
||||
type="image"
|
||||
src="/static/save.svg"
|
||||
alt="Save"
|
||||
style="width: 2em; height: 2em;"
|
||||
>
|
||||
</form>
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,34 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<h2>Secure Data</h2>
|
||||
|
||||
<form method="POST">
|
||||
{{ form.hidden_tag() }}
|
||||
|
||||
<div class="grid">
|
||||
<article>
|
||||
<label>{{ form.field1.label }}</label>
|
||||
{{ form.field1(class="") }}
|
||||
</article>
|
||||
|
||||
<article>
|
||||
<label>{{ form.field2.label }}</label>
|
||||
{{ form.field2(class="") }}
|
||||
</article>
|
||||
|
||||
<article>
|
||||
<label>{{ form.field3.label }}</label>
|
||||
{{ form.field3(class="") }}
|
||||
</article>
|
||||
|
||||
<article>
|
||||
<label>{{ form.field4.label }}</label>
|
||||
{{ form.field4(class="") }}
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="contrast">{{ form.submit.label }}</button>
|
||||
</form>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,30 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h2>User Management</h2>
|
||||
|
||||
<div class="grid">
|
||||
{% for u in users %}
|
||||
<article>
|
||||
<header>
|
||||
<h3>{{ u.name }}</h3>
|
||||
<p>ID: {{ u.id }}</p>
|
||||
</header>
|
||||
|
||||
<p><strong>Role:</strong> {{ u.role }}</p>
|
||||
|
||||
<footer>
|
||||
{% if not u.is_admin %}
|
||||
<a href="{{ url_for('user_admit', user_id=u.id) }}">Promote to Admin</a>
|
||||
{% else %}
|
||||
<span>Admin</span>
|
||||
{% endif %}
|
||||
|
|
||||
<a href="{{ url_for('user_delete', user_id=u.id) }}"
|
||||
onclick="return confirm('Delete {{ u.username }}?');">
|
||||
Delete
|
||||
</a>
|
||||
</footer>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endblock %}
|
||||