This commit is contained in:
Marwan Alwali 2025-02-20 11:41:44 +03:00
parent fe0f0d836d
commit ed3e79e35f
1041 changed files with 63908 additions and 270 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -1,18 +1,29 @@
# Generated by Django 4.2.17 on 2025-02-18 08:14 # Generated by Django 5.1.6 on 2025-02-19 05:25
import django.db.models.deletion
from django.conf import settings from django.conf import settings
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('appointment', '0002_alter_workinghours_options'),
('inventory', '0032_alter_carcolors_car'), ('inventory', '0032_alter_carcolors_car'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
] ]
operations = [ operations = [
migrations.RemoveField(
model_name='staff',
name='user',
),
migrations.AddField(
model_name='staff',
name='staff_member',
field=models.OneToOneField(default=5, on_delete=django.db.models.deletion.CASCADE, related_name='staff', to='appointment.staffmember'),
preserve_default=False,
),
migrations.AlterField( migrations.AlterField(
model_name='schedule', model_name='schedule',
name='scheduled_by', name='scheduled_by',

View File

@ -1,25 +0,0 @@
# Generated by Django 4.2.17 on 2025-02-18 09:13
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('appointment', '0001_initial'),
('inventory', '0033_alter_schedule_scheduled_by'),
]
operations = [
migrations.RemoveField(
model_name='staff',
name='user',
),
migrations.AddField(
model_name='staff',
name='staff_member',
field=models.OneToOneField(default=1, on_delete=django.db.models.deletion.CASCADE, related_name='staff_member', to='appointment.staffmember'),
preserve_default=False,
),
]

View File

@ -0,0 +1,38 @@
# Generated by Django 5.1.6 on 2025-02-20 01:29
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('inventory', '0033_remove_staff_user_staff_staff_member_and_more'),
]
operations = [
migrations.RemoveField(
model_name='subscription',
name='plan',
),
migrations.RemoveField(
model_name='subscription',
name='users',
),
migrations.RemoveField(
model_name='subscriptionuser',
name='subscription',
),
migrations.RemoveField(
model_name='subscriptionuser',
name='user',
),
migrations.DeleteModel(
name='SubscriptionPlan',
),
migrations.DeleteModel(
name='Subscription',
),
migrations.DeleteModel(
name='SubscriptionUser',
),
]

View File

@ -1,20 +0,0 @@
# Generated by Django 4.2.17 on 2025-02-18 09:31
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('appointment', '0001_initial'),
('inventory', '0034_remove_staff_user_staff_staff_member'),
]
operations = [
migrations.AlterField(
model_name='staff',
name='staff_member',
field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='staff', to='appointment.staffmember'),
),
]

View File

@ -1,18 +0,0 @@
# Generated by Django 4.2.17 on 2025-02-18 13:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('inventory', '0035_alter_staff_staff_member'),
]
operations = [
migrations.AlterField(
model_name='schedule',
name='scheduled_type',
field=models.CharField(choices=[('Call', 'Call'), ('Meeting Service', 'Meeting Service'), ('Email', 'Email')], default='Call', max_length=200),
),
]

View File

@ -1,18 +0,0 @@
# Generated by Django 4.2.17 on 2025-02-18 13:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('inventory', '0036_alter_schedule_scheduled_type'),
]
operations = [
migrations.AlterField(
model_name='schedule',
name='scheduled_type',
field=models.CharField(choices=[('Call', 'Call'), ('Meeting', 'Meeting'), ('Email', 'Email')], default='Call', max_length=200),
),
]

View File

@ -19,6 +19,9 @@ from django_ledger.models import EntityModel, ItemModel,EstimateModel,InvoiceMod
from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from appointment.models import StaffMember from appointment.models import StaffMember
from plans.quota import get_user_quota
class DealerUserManager(UserManager): class DealerUserManager(UserManager):
def create_user_with_dealer( def create_user_with_dealer(
self, self,
@ -430,7 +433,7 @@ class Car(models.Model):
hash_object = hashlib.sha256() hash_object = hashlib.sha256()
color = "" color = ""
try: try:
color = self.colors.first().exterior.name if self.colors.exists() else "" color = self.colors.exterior.name if self.colors else ""
except: except:
pass pass
hash_object.update(f"{self.id_car_make.name}{self.id_car_model.name}{self.year}{self.id_car_serie.name}{self.id_car_trim.name}{color}".encode('utf-8')) hash_object.update(f"{self.id_car_make.name}{self.id_car_model.name}{self.year}{self.id_car_serie.name}{self.id_car_trim.name}{color}".encode('utf-8'))
@ -750,87 +753,87 @@ class TimestampedModel(models.Model):
abstract = True abstract = True
class Subscription(models.Model): # class Subscription(models.Model):
plan = models.ForeignKey( # plan = models.ForeignKey(
"SubscriptionPlan", on_delete=models.CASCADE, related_name="subscriptions" # "SubscriptionPlan", on_delete=models.CASCADE, related_name="subscriptions"
) # )
start_date = models.DateField(help_text="Date when the subscription starts") # start_date = models.DateField(help_text="Date when the subscription starts")
end_date = models.DateField(help_text="Date when the subscription ends") # end_date = models.DateField(help_text="Date when the subscription ends")
users = models.ManyToManyField( # users = models.ManyToManyField(
User, through="SubscriptionUser" # User, through="SubscriptionUser"
) # many-to-many relationship with User model # ) # many-to-many relationship with User model
is_active = models.BooleanField(default=True) # is_active = models.BooleanField(default=True)
billing_cycle = models.CharField( # billing_cycle = models.CharField(
max_length=10, # max_length=10,
choices=[("monthly", "Monthly"), ("annual", "Annual")], # choices=[("monthly", "Monthly"), ("annual", "Annual")],
default="monthly", # default="monthly",
help_text="Billing cycle for the subscription", # help_text="Billing cycle for the subscription",
) # )
last_payment_date = models.DateField( # last_payment_date = models.DateField(
null=True, blank=True, help_text="Date of the last payment made" # null=True, blank=True, help_text="Date of the last payment made"
) # )
next_payment_date = models.DateField( # next_payment_date = models.DateField(
null=True, blank=True, help_text="Date of the next payment due" # null=True, blank=True, help_text="Date of the next payment due"
) # )
#
class Meta: # class Meta:
verbose_name = _("Subscription") # verbose_name = _("Subscription")
verbose_name_plural = _("Subscriptions") # verbose_name_plural = _("Subscriptions")
#
def __str__(self): # def __str__(self):
return self.plan.name # return self.plan.name
#
@property # @property
def total_subscribers(self): # def total_subscribers(self):
return self.users.count() # return self.users.count()
#
#
class SubscriptionUser(models.Model): # class SubscriptionUser(models.Model):
subscription = models.ForeignKey(Subscription, on_delete=models.CASCADE) # subscription = models.ForeignKey(Subscription, on_delete=models.CASCADE)
user = models.ForeignKey(User, on_delete=models.CASCADE) # user = models.ForeignKey(User, on_delete=models.CASCADE)
#
class Meta: # class Meta:
verbose_name = _("Subscription User") # verbose_name = _("Subscription User")
verbose_name_plural = _("Subscription Users") # verbose_name_plural = _("Subscription Users")
#
def __str__(self): # def __str__(self):
return f"{self.subscription} - {self.user}" # return f"{self.subscription} - {self.user}"
#
#
class SubscriptionPlan(models.Model): # class SubscriptionPlan(models.Model):
name = models.CharField( # name = models.CharField(
max_length=100, unique=True, help_text=_("Name of the subscription plan") # max_length=100, unique=True, help_text=_("Name of the subscription plan")
) # )
description = models.TextField() # description = models.TextField()
price = models.DecimalField(max_digits=10, decimal_places=2) # price = models.DecimalField(max_digits=10, decimal_places=2)
max_users = models.PositiveIntegerField( # max_users = models.PositiveIntegerField(
help_text=_("Maximum number of users allowed"), default=1 # help_text=_("Maximum number of users allowed"), default=1
) # )
max_inventory_size = models.PositiveIntegerField( # max_inventory_size = models.PositiveIntegerField(
help_text=_("Maximum number of cars in inventory"), default=50 # help_text=_("Maximum number of cars in inventory"), default=50
) # )
support_level = models.CharField( # support_level = models.CharField(
max_length=50, # max_length=50,
choices=[ # choices=[
("basic", "Basic Support"), # ("basic", "Basic Support"),
("priority", "Priority Support"), # ("priority", "Priority Support"),
("dedicated", "Dedicated Support"), # ("dedicated", "Dedicated Support"),
], # ],
default="basic", # default="basic",
help_text="Level of support provided", # help_text="Level of support provided",
) # )
custom_features = models.JSONField( # custom_features = models.JSONField(
blank=True, null=True, help_text=_("Additional features specific to this plan") # blank=True, null=True, help_text=_("Additional features specific to this plan")
) # )
created_at = models.DateTimeField(auto_now_add=True) # created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True) # updated_at = models.DateTimeField(auto_now=True)
#
class Meta: # class Meta:
verbose_name = _("Subscription Plan") # verbose_name = _("Subscription Plan")
verbose_name_plural = _("Subscription Plans") # verbose_name_plural = _("Subscription Plans")
#
def __str__(self): # def __str__(self):
return f"{self.name} - {self.price}" # return f"{self.name} - {self.price}"
class Dealer(models.Model, LocalizedNameMixin): class Dealer(models.Model, LocalizedNameMixin):
@ -861,23 +864,24 @@ class Dealer(models.Model, LocalizedNameMixin):
objects = DealerUserManager() objects = DealerUserManager()
@property
def get_active_plan(self):
try:
return self.user.subscription_set.filter(is_active=True).first()
except SubscriptionPlan.DoesNotExist:
return None
@property # @property
def get_plan(self): # def get_active_plan(self):
active_plan = self.get_active_plan # try:
if active_plan: # return self.user.subscription_set.filter(is_active=True).first()
subscription_plan = SubscriptionPlan.objects.filter( # except SubscriptionPlan.DoesNotExist:
pk=active_plan.pk # return None
).first() #
if subscription_plan: # @property
return subscription_plan # def get_plan(self):
return None # active_plan = self.get_active_plan
# if active_plan:
# subscription_plan = SubscriptionPlan.objects.filter(
# pk=active_plan.pk
# ).first()
# if subscription_plan:
# return subscription_plan
# return None
class Meta: class Meta:
verbose_name = _("Dealer") verbose_name = _("Dealer")
@ -938,6 +942,19 @@ class Staff(models.Model, LocalizedNameMixin):
objects = StaffUserManager() objects = StaffUserManager()
def clean(self):
quota_dict = get_user_quota(self.dealer.user)
allowed_users = quota_dict.get("Users")
if allowed_users is None:
raise ValidationError(_("The user quota for staff members is not defined. Please contact support."))
current_staff_count = self.dealer.staff.count()
if current_staff_count >= allowed_users:
raise ValidationError(_("You have reached the maximum number of staff users allowed for your plan."))
def save(self, *args, **kwargs):
self.clean()
super().save(*args, **kwargs)
@property @property
def user(self): def user(self):
return self.staff_member.user return self.staff_member.user

View File

@ -5,7 +5,6 @@ from . import views
from allauth.account import views as allauth_views from allauth.account import views as allauth_views
urlpatterns = [ urlpatterns = [
# main URLs # main URLs
path("", views.HomeView.as_view(), name="home"), path("", views.HomeView.as_view(), name="home"),
@ -44,9 +43,7 @@ urlpatterns = [
# ), # ),
# ), # ),
# Dashboards # Dashboards
path( path("dashboards/manager/", views.ManagerDashboard.as_view(), name="manager_dashboard"),
"dashboards/accounting/", views.AccountingDashboard.as_view(), name="accounting"
),
path("test/", views.TestView.as_view(), name="test"), path("test/", views.TestView.as_view(), name="test"),
path('cars/inventory/table/', views.CarListViewTable.as_view(), name="car_table"), path('cars/inventory/table/', views.CarListViewTable.as_view(), name="car_table"),
path("export/format/", TableExport, name="export"), path("export/format/", TableExport, name="export"),
@ -586,7 +583,7 @@ urlpatterns = [
), ),
# orders # orders
path("orders/", views.OrderListView.as_view(), name="order_list"), path("orders/", views.OrderListView.as_view(), name="order_list_view"),
# BALANCE SHEET Reports... # BALANCE SHEET Reports...
# Entities... # Entities...

24
inventory/validators.py Normal file
View File

@ -0,0 +1,24 @@
from django.core.exceptions import ValidationError
from plans.quota import get_user_quota
class DealerStaffQuotaValidator:
"""
Validator to ensure a Dealer cannot add more than the allowed number of Staff members.
"""
def __init__(self, quota_name='Users'):
self.quota_name = quota_name
def __call__(self, dealer):
# Get the quota for the dealer's plan
quota_limit = get_user_quota(dealer.user, self.quota_name)
# Count the number of staff members associated with the dealer
staff_count = dealer.staff.count()
# Check if the quota is exceeded
if staff_count >= quota_limit:
raise ValidationError(
f"You have reached the maximum number of staff members ({quota_limit}) allowed by your plan."
)

View File

@ -7,6 +7,7 @@ from random import randint
from django_tables2 import SingleTableView from django_tables2 import SingleTableView
from django_tables2.export.views import ExportMixin from django_tables2.export.views import ExportMixin
from django_pdf_actions.actions import export_to_pdf_landscape from django_pdf_actions.actions import export_to_pdf_landscape
from plans.quota import get_user_quota
from reportlab.lib.pagesizes import landscape, A4 from reportlab.lib.pagesizes import landscape, A4
from rich import print from rich import print
from decimal import Decimal from decimal import Decimal
@ -334,8 +335,8 @@ class TestView(TemplateView):
template_name = "inventory/cars_list_api.html" template_name = "inventory/cars_list_api.html"
class AccountingDashboard(LoginRequiredMixin, TemplateView): class ManagerDashboard(LoginRequiredMixin, TemplateView):
template_name = "dashboards/accounting.html" template_name = "dashboards/manager.html"
def dispatch(self, request, *args, **kwargs): def dispatch(self, request, *args, **kwargs):
if ( if (
@ -1189,11 +1190,26 @@ class DealerDetailView(LoginRequiredMixin, DetailView):
context_object_name = "dealer" context_object_name = "dealer"
def get_queryset(self): def get_queryset(self):
total_count = models.Dealer.objects.annotate( return models.Dealer.objects.annotate(
staff_count=Coalesce(Count("staff"), Value(0)), staff_count=Coalesce(Count("staff"), Value(0)) # Get the number of staff members
total_count=F("staff_count") + Value(1),
) )
return total_count
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
dealer = self.object
# Fetch current staff count from the annotated queryset
staff_count = dealer.staff_count
# Get the quota value dynamically
quota_dict = get_user_quota(dealer.user)
allowed_users = quota_dict.get("Users", None) # Fetch quota or default to None
context["staff_count"] = staff_count
context["allowed_users"] = allowed_users
context["quota_display"] = f"{staff_count}/{allowed_users}" if allowed_users is not None else "N/A"
return context
class DealerUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): class DealerUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView):
@ -4152,10 +4168,10 @@ def BillDeleteView(request, pk):
return redirect("bill_list") return redirect("bill_list")
class SubscriptionPlans(ListView, LoginRequiredMixin): # class SubscriptionPlans(ListView, LoginRequiredMixin):
model = models.SubscriptionPlan # model = models.SubscriptionPlan
template_name = "subscriptions/subscription_plan.html" # template_name = "subscriptions/subscription_plan.html"
context_object_name = "plans" # context_object_name = "plans"
# orders # orders

BIN
static/.DS_Store vendored

Binary file not shown.

BIN
static/icons/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722
c4.177,0,7.578-3.398,7.578-7.576V39.139c0-4.177-3.399-7.576-7.578-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045
c0,8.714-7.065,15.781-15.781,15.781S0,261.898,0,253.184V39.139C0,17.559,17.558,0.001,39.14,0.001h433.722
c21.582,0,39.14,17.558,39.14,39.138v433.723C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#2D527C;" d="M256,444.439H92.852c-13.944,0-25.289-11.343-25.289-25.289V280.772
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v132.105h141.096V187.441c0-8.714,7.065-15.781,15.781-15.781
c8.716,0,15.781,7.067,15.781,15.781v241.218C271.781,437.374,264.716,444.439,256,444.439z"/>
<path style="fill:#2D527C;" d="M256,203.221c-8.716,0-15.781-7.067-15.781-15.781V99.124H99.123v88.316
c0,8.714-7.065,15.781-15.781,15.781s-15.781-7.067-15.781-15.781V92.851c0-13.946,11.345-25.289,25.289-25.289H256
c8.716,0,15.781,7.067,15.781,15.781v104.097C271.781,196.155,264.716,203.221,256,203.221z"/>
</g>
<path style="fill:#CEE8FA;" d="M419.15,83.343H192.87v345.315h226.28c5.252,0,9.508-4.258,9.508-9.508v-231.71V92.853
C428.658,87.601,424.4,83.343,419.15,83.343z"/>
<g>
<path style="fill:#2D527C;" d="M419.15,444.438H192.87c-8.716,0-15.781-7.067-15.781-15.781V83.343
c0-8.714,7.065-15.781,15.781-15.781h226.28c13.944,0,25.289,11.345,25.289,25.289v326.298
C444.439,433.093,433.094,444.438,419.15,444.438z M208.651,412.876h204.226V99.124H208.651V412.876z"/>
<path style="fill:#2D527C;" d="M354.631,271.782H192.87c-8.716,0-15.781-7.067-15.781-15.781c0-8.714,7.065-15.781,15.781-15.781
h161.761c8.716,0,15.781,7.067,15.781,15.781C370.412,264.715,363.347,271.782,354.631,271.782z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722
c4.177,0,7.578-3.398,7.578-7.576V39.139c0-4.177-3.399-7.576-7.578-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045
c0,8.714-7.065,15.781-15.781,15.781S0,261.898,0,253.184V39.139C0,17.559,17.558,0.001,39.14,0.001h433.722
c21.582,0,39.14,17.558,39.14,39.138v433.723C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#CEE8FA;" d="M83.344,92.853v326.298c0,5.252,4.256,9.508,9.508,9.508h104.759V315.441h116.781v113.217H419.15
c5.252,0,9.508-4.258,9.508-9.508V307.546l0,0V92.853c0-5.252-4.256-9.508-9.508-9.508H187.44H92.852
C87.6,83.343,83.344,87.601,83.344,92.853z"/>
<g>
<path style="fill:#2D527C;" d="M419.148,444.439H314.389c-8.716,0-15.781-7.067-15.781-15.781v-97.438H213.39v97.438
c0,8.714-7.065,15.781-15.781,15.781H92.852c-13.944,0-25.289-11.345-25.289-25.289V92.851c0-13.944,11.345-25.289,25.289-25.289
H419.15c13.944,0,25.289,11.345,25.289,25.289v326.299C444.439,433.095,433.094,444.439,419.148,444.439z M330.172,412.878h82.705
V99.124H99.125v313.754h82.705V315.44c0-8.714,7.065-15.781,15.781-15.781h116.781c8.716,0,15.781,7.067,15.781,15.781V412.878z"/>
<path style="fill:#2D527C;" d="M197.611,381.309c-8.716,0-15.781-7.067-15.781-15.781V83.343c0-8.714,7.065-15.781,15.781-15.781
c8.716,0,15.781,7.067,15.781,15.781v282.185C213.391,374.244,206.326,381.309,197.611,381.309z"/>
<path style="fill:#2D527C;" d="M314.391,444.439c-8.716,0-15.781-7.067-15.781-15.781V146.473c0-8.714,7.065-15.781,15.781-15.781
c8.716,0,15.781,7.067,15.781,15.781v282.185C330.172,437.374,323.107,444.439,314.391,444.439z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.862,512H39.138C17.558,512,0,494.442,0,472.862V345.893c0-8.716,7.067-15.781,15.781-15.781
s15.781,7.065,15.781,15.781v126.969c0,4.177,3.398,7.578,7.576,7.578h433.723c4.177,0,7.576-3.399,7.576-7.578V39.14
c0-4.177-3.398-7.578-7.576-7.578H39.138c-4.177,0-7.576,3.399-7.576,7.578v214.043c0,8.716-7.067,15.781-15.781,15.781
S0,261.899,0,253.183V39.14C0,17.558,17.558,0,39.138,0h433.723C494.442,0,512,17.558,512,39.14v433.722
C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#2D527C;" d="M256,444.439H98.98c-17.324,0-31.418-14.094-31.418-31.418v-67.069
c0-8.716,7.067-15.781,15.781-15.781s15.781,7.065,15.781,15.781v66.925h141.096V256c0-8.716,7.067-15.781,15.781-15.781
c8.714,0,15.781,7.065,15.781,15.781v172.658C271.781,437.374,264.716,444.439,256,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M428.658,98.98c0-8.635-7.002-15.637-15.637-15.637H256H98.98c-8.637,0-15.637,7.002-15.637,15.637
V256H256v172.658h157.02c8.635,0,15.637-7.002,15.637-15.637V256l0,0V98.98z"/>
<g>
<path style="fill:#2D527C;" d="M413.02,444.439H256c-8.714,0-15.781-7.065-15.781-15.781V271.781H83.342
c-8.714,0-15.781-7.065-15.781-15.781V98.98c0-17.324,14.096-31.418,31.418-31.418H413.02c17.324,0,31.418,14.094,31.418,31.418
V413.02C444.439,430.345,430.345,444.439,413.02,444.439z M271.781,412.877h141.096V99.125H99.123v141.096H256
c8.714,0,15.781,7.065,15.781,15.781V412.877z"/>
<path style="fill:#2D527C;" d="M256,303.343c-8.714,0-15.781-7.065-15.781-15.781V83.344c0-8.716,7.067-15.781,15.781-15.781
c8.714,0,15.781,7.065,15.781,15.781v204.22C271.781,296.278,264.716,303.343,256,303.343z"/>
<path style="fill:#2D527C;" d="M353.316,271.783H256c-8.714,0-15.781-7.065-15.781-15.781c0-8.716,7.067-15.781,15.781-15.781
h97.316c8.714,0,15.781,7.065,15.781,15.781C369.097,264.717,362.032,271.783,353.316,271.783z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.863,512.001H39.138C17.558,512.001,0,494.443,0,472.864V345.895
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.398,7.576,7.576,7.576h433.725
c4.177,0,7.576-3.398,7.576-7.576V39.139c0-4.177-3.398-7.576-7.576-7.576H39.138c-4.179,0-7.576,3.398-7.576,7.576v214.045
c0,8.714-7.067,15.781-15.781,15.781S0,261.899,0,253.185V39.139C0,17.559,17.558,0.001,39.138,0.001h433.725
c21.58,0,39.138,17.558,39.138,39.138v433.725C512,494.443,494.442,512.001,472.863,512.001z"/>
<path style="fill:#2D527C;" d="M319.125,444.441H92.851c-13.946,0-25.289-11.345-25.289-25.289V280.773
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v132.106h204.22V99.124H99.124v88.317
c0,8.714-7.067,15.781-15.781,15.781s-15.781-7.067-15.781-15.781v-94.59c0-13.944,11.343-25.289,25.289-25.289h226.274
c8.714,0,15.781,7.067,15.781,15.781V428.66C334.906,437.374,327.839,444.441,319.125,444.441z"/>
</g>
<path style="fill:#CEE8FA;" d="M419.149,83.343h-100.02V428.66h100.02c5.252,0,9.508-4.258,9.508-9.508V187.439V92.851
C428.659,87.599,424.401,83.343,419.149,83.343z"/>
<path style="fill:#2D527C;" d="M419.149,444.439h-100.02c-8.714,0-15.781-7.067-15.781-15.781V83.343
c0-8.714,7.067-15.781,15.781-15.781h100.02c13.944,0,25.289,11.345,25.289,25.289V419.15
C444.44,433.093,433.093,444.439,419.149,444.439z M334.912,412.877h77.966V99.124h-77.966V412.877z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M427.911,89.15c0.481,1.138,0.746,2.388,0.746,3.701v94.588v10.171H196.561V83.344H92.852
c-5.252,0-9.508,4.256-9.508,9.508V419.15c0,5.252,4.258,9.508,9.508,9.508h111.604l0,0H419.15c5.252,0,9.508-4.256,9.508-9.508
V187.44V92.852C428.658,91.539,428.391,90.287,427.911,89.15z"/>
<path style="fill:#2D527C;" d="M419.15,444.439H92.85c-13.944,0-25.289-11.345-25.289-25.289V92.852
c0-13.944,11.345-25.289,25.289-25.289h103.711c8.714,0,15.781,7.065,15.781,15.781v98.486h200.535V93.953
c-0.508-1.584-0.753-3.202-0.753-4.799c0.002-6.15,3.62-11.995,9.641-14.539c8.028-3.393,17.286,0.365,20.679,8.391
c1.322,3.128,1.993,6.442,1.993,9.846V419.15C444.439,433.094,433.094,444.439,419.15,444.439z M99.123,412.877h313.754V213.391
H196.561c-8.714,0-15.781-7.065-15.781-15.781V99.125H99.123V412.877z"/>
<path style="fill:#FFFFFF;" d="M424.466,84.966c0.507,0.342,0.977,0.731,1.408,1.161C425.443,85.698,424.971,85.309,424.466,84.966z
"/>
<path style="fill:#2D527C;" d="M425.874,101.909c-3.852,0-7.703-1.401-10.726-4.206c-4.201-3.069-6.462-7.864-6.465-12.743
c-0.002-3.039,0.873-6.112,2.702-8.822c4.875-7.228,14.681-9.129,21.909-4.255c1.327,0.895,2.579,1.927,3.72,3.063
c3.093,3.082,4.64,7.128,4.641,11.174c0.002,4.03-1.532,8.062-4.602,11.145C433.971,100.36,429.922,101.909,425.874,101.909z"/>
<path style="fill:#FFFFFF;" d="M419.15,83.344L419.15,83.344c1.969,0,3.798,0.598,5.317,1.624
C422.948,83.942,421.119,83.344,419.15,83.344z"/>
<g>
<path style="fill:#2D527C;" d="M424.451,100.749c-2.443,0-4.903-0.565-7.182-1.736c-7.831-0.929-13.901-7.591-13.901-15.67
c0-8.716,7.067-15.781,15.781-15.781c5.067,0,9.961,1.498,14.152,4.33c4.512,3.05,6.947,8.025,6.945,13.092
c0,3.039-0.877,6.112-2.708,8.82C434.49,98.315,429.515,100.749,424.451,100.749z"/>
<path style="fill:#2D527C;" d="M428.658,213.391H196.561c-8.714,0-15.781-7.065-15.781-15.781V83.344
c0-8.716,7.067-15.781,15.781-15.781h112.472c8.714,0,15.781,7.065,15.781,15.781s-7.067,15.781-15.781,15.781h-96.691v82.705
h200.535V99.125h-19.149c-8.714,0-15.781-7.065-15.781-15.781s7.067-15.781,15.781-15.781h25.42c5.067,0,9.961,1.498,14.152,4.33
c1.318,0.888,2.569,1.919,3.712,3.058c2.342,2.343,4.163,5.048,5.435,8.059c1.321,3.125,1.992,6.437,1.992,9.843v104.759
C444.439,206.326,437.374,213.391,428.658,213.391z"/>
</g>
<path id="SVGCleanerId_0" style="fill:#2D527C;" d="M472.862,512H39.138C17.558,512,0,494.442,0,472.862V345.893
c0-8.716,7.067-15.781,15.781-15.781s15.781,7.065,15.781,15.781v126.969c0,4.177,3.398,7.578,7.576,7.578h433.723
c4.177,0,7.576-3.399,7.576-7.578V39.14c0-4.177-3.398-7.578-7.576-7.578H39.138c-4.177,0-7.576,3.399-7.576,7.578v214.043
c0,8.716-7.067,15.781-15.781,15.781S0,261.899,0,253.183V39.14C0,17.558,17.558,0,39.138,0h433.723C494.442,0,512,17.558,512,39.14
v433.722C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#2D527C;" d="M196.561,381.309c-8.714,0-15.781-7.065-15.781-15.781V83.344c0-8.716,7.067-15.781,15.781-15.781
c8.714,0,15.781,7.065,15.781,15.781v282.184C212.342,374.243,205.277,381.309,196.561,381.309z"/>
<path id="SVGCleanerId_1" style="fill:#2D527C;" d="M427.608,213.391H196.561c-8.714,0-15.781-7.065-15.781-15.781
s7.067-15.781,15.781-15.781h231.047c8.714,0,15.781,7.065,15.781,15.781C443.389,206.326,436.324,213.391,427.608,213.391z"/>
<path id="SVGCleanerId_2" style="fill:#2D527C;" d="M427.608,330.172H196.561c-8.714,0-15.781-7.065-15.781-15.781
c0-8.716,7.067-15.781,15.781-15.781h231.047c8.714,0,15.781,7.065,15.781,15.781C443.389,323.107,436.324,330.172,427.608,330.172z
"/>
<g>
<path id="SVGCleanerId_0_1_" style="fill:#2D527C;" d="M472.862,512H39.138C17.558,512,0,494.442,0,472.862V345.893
c0-8.716,7.067-15.781,15.781-15.781s15.781,7.065,15.781,15.781v126.969c0,4.177,3.398,7.578,7.576,7.578h433.723
c4.177,0,7.576-3.399,7.576-7.578V39.14c0-4.177-3.398-7.578-7.576-7.578H39.138c-4.177,0-7.576,3.399-7.576,7.578v214.043
c0,8.716-7.067,15.781-15.781,15.781S0,261.899,0,253.183V39.14C0,17.558,17.558,0,39.138,0h433.723
C494.442,0,512,17.558,512,39.14v433.722C512,494.442,494.442,512,472.862,512z"/>
</g>
<path style="fill:#2D527C;" d="M196.561,381.309c-8.714,0-15.781-7.065-15.781-15.781V84.922c0-8.716,7.067-15.781,15.781-15.781
c8.714,0,15.781,7.065,15.781,15.781v280.606C212.342,374.243,205.277,381.309,196.561,381.309z"/>
<g>
<path id="SVGCleanerId_1_1_" style="fill:#2D527C;" d="M427.608,213.391H196.561c-8.714,0-15.781-7.065-15.781-15.781
s7.067-15.781,15.781-15.781h231.047c8.714,0,15.781,7.065,15.781,15.781C443.389,206.326,436.324,213.391,427.608,213.391z"/>
</g>
<g>
<path id="SVGCleanerId_2_1_" style="fill:#2D527C;" d="M427.608,330.172H196.561c-8.714,0-15.781-7.065-15.781-15.781
c0-8.716,7.067-15.781,15.781-15.781h231.047c8.714,0,15.781,7.065,15.781,15.781C443.389,323.107,436.324,330.172,427.608,330.172
z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path id="SVGCleanerId_0" style="fill:#2D527C;" d="M472.863,512.001H39.138C17.558,512.001,0,494.443,0,472.864V345.895
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.398,7.576,7.576,7.576h433.725
c4.177,0,7.576-3.398,7.576-7.576V39.139c0-4.177-3.398-7.576-7.576-7.576H39.138c-4.179,0-7.576,3.398-7.576,7.576v214.045
c0,8.714-7.067,15.781-15.781,15.781S0,261.899,0,253.185V39.139C0,17.559,17.558,0.001,39.138,0.001h433.725
c21.58,0,39.138,17.558,39.138,39.138v433.725C512,494.443,494.442,512.001,472.863,512.001z"/>
<g>
<path id="SVGCleanerId_0_1_" style="fill:#2D527C;" d="M472.863,512.001H39.138C17.558,512.001,0,494.443,0,472.864V345.895
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.398,7.576,7.576,7.576h433.725
c4.177,0,7.576-3.398,7.576-7.576V39.139c0-4.177-3.398-7.576-7.576-7.576H39.138c-4.179,0-7.576,3.398-7.576,7.576v214.045
c0,8.714-7.067,15.781-15.781,15.781S0,261.899,0,253.185V39.139C0,17.559,17.558,0.001,39.138,0.001h433.725
c21.58,0,39.138,17.558,39.138,39.138v433.725C512,494.443,494.442,512.001,472.863,512.001z"/>
</g>
<path style="fill:#CEE8FA;" d="M89.15,427.912c1.138,0.481,2.388,0.746,3.701,0.746h94.588h10.171V196.561H83.343V92.851
c0-5.252,4.256-9.508,9.508-9.508h326.299c5.252,0,9.508,4.258,9.508,9.508v111.605l0,0V419.15c0,5.252-4.256,9.508-9.508,9.508
H187.439H92.851C91.538,428.658,90.288,428.393,89.15,427.912z"/>
<path style="fill:#2D527C;" d="M419.149,444.441H92.852c-3.406,0-6.718-0.671-9.846-1.993c-6.02-2.545-9.639-8.389-9.641-14.541
c0-2.05,0.402-4.133,1.25-6.14c3.205-7.584,11.643-11.359,19.338-8.889h87.876V212.343H83.344c-8.714,0-15.781-7.067-15.781-15.781
V92.851c0-13.944,11.345-25.289,25.289-25.289h326.299c13.944,0,25.289,11.345,25.289,25.289v326.3
C444.44,433.094,433.093,444.441,419.149,444.441z M213.391,412.879h199.487V99.124H99.125v81.657h98.484
c8.714,0,15.781,7.067,15.781,15.781V412.879z"/>
<path style="fill:#FFFFFF;" d="M84.966,424.467c0.342,0.507,0.731,0.977,1.161,1.408C85.697,425.444,85.307,424.973,84.966,424.467z
"/>
<path style="fill:#2D527C;" d="M86.128,441.655c-4.048,0-8.096-1.547-11.179-4.641c-1.139-1.144-2.17-2.396-3.063-3.72
c-1.829-2.71-2.703-5.782-2.702-8.823c0.003-5.066,2.44-10.038,6.955-13.086c7.057-4.764,16.58-3.058,21.562,3.761
c2.807,3.024,4.21,6.879,4.209,10.734c-0.002,4.046-1.548,8.092-4.641,11.175C94.189,440.123,90.157,441.655,86.128,441.655z"/>
<path style="fill:#FFFFFF;" d="M83.343,419.15L83.343,419.15c0,1.969,0.598,3.799,1.624,5.317
C83.941,422.95,83.343,421.12,83.343,419.15z"/>
<g>
<path style="fill:#2D527C;" d="M84.981,440.249c-5.066,0-10.038-2.433-13.089-6.945c-2.833-4.19-4.329-9.085-4.329-14.152
c0-8.714,7.067-15.781,15.781-15.781c8.08,0,14.743,6.073,15.671,13.903c1.169,2.276,1.736,4.737,1.736,7.177
c0.002,5.066-2.433,10.041-6.945,13.092C91.094,439.372,88.02,440.249,84.981,440.249z"/>
<path style="fill:#2D527C;" d="M197.61,444.441H92.852c-3.406,0-6.72-0.671-9.846-1.993c-3.014-1.275-5.719-3.096-8.037-5.414
c-1.158-1.163-2.19-2.414-3.084-3.74c-2.826-4.18-4.322-9.076-4.322-14.143v-25.42c0-8.714,7.067-15.781,15.781-15.781
s15.781,7.067,15.781,15.781v19.149h82.703V212.343H99.125v96.692c0,8.714-7.067,15.781-15.781,15.781s-15.781-7.067-15.781-15.781
V196.562c0-8.714,7.067-15.781,15.781-15.781H197.61c8.714,0,15.781,7.067,15.781,15.781V428.66
C213.391,437.374,206.324,444.441,197.61,444.441z"/>
<path style="fill:#2D527C;" d="M365.529,212.343H83.343c-8.714,0-15.781-7.067-15.781-15.781s7.067-15.781,15.781-15.781h282.186
c8.714,0,15.781,7.067,15.781,15.781S374.243,212.343,365.529,212.343z"/>
</g>
<path id="SVGCleanerId_1" style="fill:#2D527C;" d="M197.61,443.391c-8.714,0-15.781-7.067-15.781-15.781V196.561
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781V427.61C213.391,436.325,206.324,443.391,197.61,443.391z"/>
<path id="SVGCleanerId_2" style="fill:#2D527C;" d="M314.392,443.391c-8.714,0-15.781-7.067-15.781-15.781V196.562
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781V427.61C330.173,436.325,323.106,443.391,314.392,443.391z"/>
<path style="fill:#2D527C;" d="M365.529,212.343H84.922c-8.714,0-15.781-7.067-15.781-15.781s7.067-15.781,15.781-15.781h280.607
c8.714,0,15.781,7.067,15.781,15.781S374.243,212.343,365.529,212.343z"/>
<g>
<path id="SVGCleanerId_1_1_" style="fill:#2D527C;" d="M197.61,443.391c-8.714,0-15.781-7.067-15.781-15.781V196.561
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781V427.61C213.391,436.325,206.324,443.391,197.61,443.391z"/>
</g>
<g>
<path id="SVGCleanerId_2_1_" style="fill:#2D527C;" d="M314.392,443.391c-8.714,0-15.781-7.067-15.781-15.781V196.562
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781V427.61C330.173,436.325,323.106,443.391,314.392,443.391z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.862,512H39.14C17.558,512,0,494.442,0,472.862V345.893c0-8.714,7.065-15.781,15.781-15.781
s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722c4.177,0,7.576-3.398,7.576-7.576V39.138
c0-4.177-3.398-7.576-7.576-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045c0,8.714-7.065,15.781-15.781,15.781
S0,261.897,0,253.183V39.138C0,17.558,17.558,0,39.14,0h433.722C494.442,0,512,17.558,512,39.138v433.723
C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#2D527C;" d="M256,444.439H92.852c-13.944,0-25.289-11.343-25.289-25.289V280.771
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v132.105h141.096V187.44c0-8.714,7.065-15.781,15.781-15.781
c8.714,0,15.781,7.067,15.781,15.781v241.218C271.781,437.374,264.716,444.439,256,444.439z"/>
<path style="fill:#2D527C;" d="M256,203.221c-8.716,0-15.781-7.067-15.781-15.781V99.123H99.125v88.316
c0,8.714-7.065,15.781-15.781,15.781s-15.781-7.067-15.781-15.781V92.85c0-13.946,11.345-25.289,25.289-25.289H256
c8.714,0,15.781,7.067,15.781,15.781V187.44C271.781,196.154,264.716,203.221,256,203.221z"/>
</g>
<path style="fill:#CEE8FA;" d="M419.15,83.342H192.87v345.315h226.28c5.252,0,9.508-4.258,9.508-9.508V187.438V92.85
C428.658,87.6,424.4,83.342,419.15,83.342z"/>
<path style="fill:#2D527C;" d="M419.15,444.437H192.87c-8.716,0-15.781-7.067-15.781-15.781V83.342
c0-8.714,7.065-15.781,15.781-15.781h226.28c13.946,0,25.289,11.345,25.289,25.289v326.298
C444.439,433.092,433.095,444.437,419.15,444.437z M208.651,412.875h204.226V99.123H208.651V412.875z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.863,512.001H39.138C17.558,512.001,0,494.443,0,472.864V345.895
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.398,7.576,7.576,7.576h433.725
c4.177,0,7.576-3.398,7.576-7.576V39.139c0-4.177-3.398-7.576-7.576-7.576H39.138c-4.179,0-7.576,3.398-7.576,7.576v214.045
c0,8.714-7.067,15.781-15.781,15.781S0,261.899,0,253.185V39.139C0,17.559,17.558,0.001,39.138,0.001h433.725
c21.58,0,39.138,17.558,39.138,39.138v433.725C512,494.443,494.442,512.001,472.863,512.001z"/>
<path style="fill:#2D527C;" d="M256.001,444.441H92.851c-13.944,0-25.289-11.343-25.289-25.289V280.773
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v132.106H240.22V187.439c0-8.714,7.067-15.781,15.781-15.781
s15.781,7.067,15.781,15.781v241.22C271.782,437.374,264.715,444.441,256.001,444.441z"/>
<path style="fill:#2D527C;" d="M256.001,203.22c-8.714,0-15.781-7.067-15.781-15.781V99.124H99.124v88.317
c0,8.714-7.067,15.781-15.781,15.781s-15.781-7.067-15.781-15.781v-94.59c0-13.946,11.343-25.289,25.289-25.289h163.15
c8.714,0,15.781,7.067,15.781,15.781v104.098C271.782,196.155,264.715,203.22,256.001,203.22z"/>
</g>
<path style="fill:#CEE8FA;" d="M419.149,83.343H256.001v104.096v93.285v147.934h163.15c5.252,0,9.508-4.258,9.508-9.508V187.439
V92.851C428.659,87.599,424.401,83.343,419.149,83.343z"/>
<path style="fill:#2D527C;" d="M419.149,444.439H256.001c-8.714,0-15.781-7.067-15.781-15.781V83.343
c0-8.714,7.067-15.781,15.781-15.781h163.15c13.946,0,25.289,11.345,25.289,25.289V419.15
C444.44,433.093,433.095,444.439,419.149,444.439z M271.782,412.877h141.096V99.124H271.782V412.877L271.782,412.877z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.863,512.001H39.138C17.558,512.001,0,494.443,0,472.864V345.895
c0-8.714,7.067-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.398,7.576,7.576,7.576h433.725
c4.177,0,7.576-3.398,7.576-7.576V39.139c0-4.177-3.398-7.576-7.576-7.576H39.138c-4.179,0-7.576,3.398-7.576,7.576v214.045
c0,8.714-7.067,15.781-15.781,15.781S0,261.899,0,253.185V39.139C0,17.559,17.558,0.001,39.138,0.001h433.725
c21.58,0,39.138,17.558,39.138,39.138v433.725C512,494.443,494.442,512.001,472.863,512.001z"/>
<path style="fill:#2D527C;" d="M419.149,444.441H280.771c-8.714,0-15.781-7.067-15.781-15.781s7.067-15.781,15.781-15.781h132.106
V271.783H187.439c-8.714,0-15.781-7.067-15.781-15.781s7.067-15.781,15.781-15.781h241.22c8.714,0,15.781,7.067,15.781,15.781
v163.15C444.44,433.094,433.095,444.441,419.149,444.441z"/>
<path style="fill:#2D527C;" d="M187.439,444.441H92.851c-13.946,0-25.289-11.343-25.289-25.289v-163.15
c0-8.714,7.067-15.781,15.781-15.781H187.44c8.714,0,15.781,7.067,15.781,15.781c0,8.714-7.067,15.781-15.781,15.781H99.124
v141.096h88.317c8.714,0,15.781,7.067,15.781,15.781S196.155,444.441,187.439,444.441z"/>
</g>
<path style="fill:#CEE8FA;" d="M83.343,92.851v163.15h104.096h93.285h147.934V92.851c0-5.252-4.258-9.508-9.508-9.508H187.439
H92.851C87.599,83.343,83.343,87.601,83.343,92.851z"/>
<path style="fill:#2D527C;" d="M428.659,271.783H83.343c-8.714,0-15.781-7.067-15.781-15.781V92.851
c0-13.946,11.345-25.289,25.289-25.289h326.3c13.944,0,25.289,11.343,25.289,25.289v163.15
C444.44,264.716,437.373,271.783,428.659,271.783z M99.124,240.221h313.754V99.124H99.124V240.221z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M419.15,83.345H92.852c-5.252,0-9.508,4.256-9.508,9.508v104.759h113.217v116.781H83.342v104.759
c0,5.252,4.258,9.508,9.508,9.508h111.604l0,0h214.693c5.252,0,9.508-4.256,9.508-9.508v-231.71V92.853
C428.658,87.601,424.4,83.345,419.15,83.345z"/>
<g>
<path style="fill:#2D527C;" d="M419.15,444.439H92.85c-13.944,0-25.289-11.345-25.289-25.289V314.393
c0-8.716,7.065-15.781,15.781-15.781h97.436v-85.219H83.344c-8.716,0-15.781-7.065-15.781-15.781V92.853
c0-13.944,11.345-25.289,25.289-25.289h326.299c13.944,0,25.289,11.345,25.289,25.289v326.298
C444.439,433.095,433.094,444.439,419.15,444.439z M99.125,412.878h313.752V99.126H99.125v82.705h97.436
c8.716,0,15.781,7.065,15.781,15.781v116.781c0,8.716-7.065,15.781-15.781,15.781H99.125V412.878z"/>
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.716,7.065-15.781,15.781-15.781s15.781,7.065,15.781,15.781v126.969c0,4.177,3.399,7.578,7.578,7.578h433.722
c4.177,0,7.578-3.399,7.578-7.578V39.141c0-4.177-3.399-7.578-7.578-7.578H39.14c-4.179,0-7.578,3.399-7.578,7.578v214.043
c0,8.716-7.065,15.781-15.781,15.781S0,261.9,0,253.184V39.141c0-21.582,17.558-39.14,39.14-39.14h433.722
c21.582,0,39.14,17.558,39.14,39.14v433.722C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#2D527C;" d="M196.561,381.309c-8.716,0-15.781-7.065-15.781-15.781V83.345c0-8.716,7.065-15.781,15.781-15.781
s15.781,7.065,15.781,15.781v282.184C212.342,374.244,205.277,381.309,196.561,381.309z"/>
<path style="fill:#2D527C;" d="M313.342,444.439c-8.716,0-15.781-7.065-15.781-15.781V146.473c0-8.716,7.065-15.781,15.781-15.781
c8.716,0,15.781,7.065,15.781,15.781v282.185C329.123,437.374,322.057,444.439,313.342,444.439z"/>
<path style="fill:#2D527C;" d="M427.608,213.392H83.344c-8.716,0-15.781-7.065-15.781-15.781s7.065-15.781,15.781-15.781H427.61
c8.716,0,15.781,7.065,15.781,15.781C443.391,206.327,436.324,213.392,427.608,213.392z"/>
<path style="fill:#2D527C;" d="M427.608,330.173H83.873c-8.716,0-15.781-7.065-15.781-15.781c0-8.716,7.065-15.781,15.781-15.781
h343.736c8.716,0,15.781,7.065,15.781,15.781C443.389,323.108,436.324,330.173,427.608,330.173z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722
c4.177,0,7.578-3.398,7.578-7.576V39.139c0-4.177-3.399-7.576-7.578-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045
c0,8.714-7.065,15.781-15.781,15.781S0,261.898,0,253.184V39.139C0,17.559,17.558,0.001,39.14,0.001h433.722
c21.582,0,39.14,17.558,39.14,39.138v433.723C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#2D527C;" d="M419.148,444.439H307.544c-8.716,0-15.781-7.067-15.781-15.781V187.441
c0-8.714,7.065-15.781,15.781-15.781h121.114c8.716,0,15.781,7.067,15.781,15.781c0,8.714-7.065,15.781-15.781,15.781H323.325
v209.656h89.552V280.772c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781V419.15
C444.439,433.096,433.094,444.439,419.148,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M83.342,187.441V92.853c0-5.252,4.258-9.508,9.508-9.508h326.298c5.252,0,9.508,4.258,9.508,9.508
v94.588H83.342z"/>
<path style="fill:#2D527C;" d="M428.658,203.221H83.344c-8.716,0-15.781-7.067-15.781-15.781V92.851
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.155,437.374,203.221,428.658,203.221z M99.125,171.66h313.752V99.124H99.125V171.66z"/>
<path style="fill:#CEE8FA;" d="M307.545,187.441v241.218H92.852c-5.252,0-9.508-4.258-9.508-9.508v-231.71H307.545z"/>
<g>
<path style="fill:#2D527C;" d="M307.545,444.439H92.852c-13.944,0-25.289-11.343-25.289-25.289v-231.71
c0-8.714,7.065-15.781,15.781-15.781h224.201c8.716,0,15.781,7.067,15.781,15.781v241.218
C323.326,437.374,316.261,444.439,307.545,444.439z M99.125,412.878h192.64V203.221H99.125V412.878z"/>
<path style="fill:#2D527C;" d="M307.544,323.83H157.521c-8.716,0-15.781-7.067-15.781-15.781s7.065-15.781,15.781-15.781h150.023
c8.716,0,15.781,7.067,15.781,15.781S316.26,323.83,307.544,323.83z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512H39.14C17.558,512,0,494.442,0,472.862V345.893c0-8.714,7.065-15.781,15.781-15.781
s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722c4.177,0,7.576-3.398,7.576-7.576V39.138
c0-4.177-3.398-7.576-7.576-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045c0,8.714-7.065,15.781-15.781,15.781
S0,261.897,0,253.183V39.138C0,17.558,17.558,0,39.14,0h433.722C494.442,0,512,17.558,512,39.138v433.723
C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#CEE8FA;" d="M428.658,187.438V92.85c0-5.252-4.258-9.508-9.508-9.508H92.852c-5.252,0-9.508,4.258-9.508,9.508
v94.588H428.658z"/>
<g>
<path style="fill:#2D527C;" d="M428.658,203.221H83.344c-8.716,0-15.781-7.067-15.781-15.781V92.85
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.154,437.374,203.221,428.658,203.221z M99.125,171.659h313.752V99.123H99.125V171.659z"/>
<path style="fill:#2D527C;" d="M256,444.439H92.852c-13.944,0-25.289-11.343-25.289-25.289V280.771
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v132.105h141.096V203.221H83.344
c-8.716,0-15.781-7.067-15.781-15.781c0-8.714,7.065-15.781,15.781-15.781h172.658c8.714,0,15.781,7.067,15.781,15.781v241.218
C271.781,437.374,264.716,444.439,256,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M256,187.438v241.22h163.15c5.252,0,9.508-4.258,9.508-9.508V187.438H256z"/>
<path style="fill:#2D527C;" d="M419.15,444.439H256c-8.716,0-15.781-7.067-15.781-15.781V187.44c0-8.714,7.065-15.781,15.781-15.781
h172.658c8.714,0,15.781,7.067,15.781,15.781v231.71C444.439,433.095,433.094,444.439,419.15,444.439z M271.781,412.877h141.096
V203.221H271.781L271.781,412.877L271.781,412.877z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722
c4.177,0,7.578-3.398,7.578-7.576V39.139c0-4.177-3.399-7.576-7.578-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045
c0,8.714-7.065,15.781-15.781,15.781S0,261.898,0,253.184V39.139C0,17.559,17.558,0.001,39.14,0.001h433.722
c21.582,0,39.14,17.558,39.14,39.138v433.723C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#2D527C;" d="M428.658,219.004c-8.716,0-15.781-7.067-15.781-15.781V99.124H99.125v38.987
c0,8.714-7.065,15.781-15.781,15.781s-15.781-7.067-15.781-15.781v-45.26c0-13.946,11.345-25.289,25.289-25.289H419.15
c13.944,0,25.289,11.343,25.289,25.289v110.37C444.439,211.937,437.374,219.004,428.658,219.004z"/>
</g>
<path style="fill:#CEE8FA;" d="M419.15,428.659H204.456l0,0H92.852c-5.252,0-9.508-4.258-9.508-9.508V280.774v-77.551h121.112l0,0
h224.201v215.927C428.658,424.401,424.4,428.659,419.15,428.659z"/>
<path style="fill:#2D527C;" d="M419.148,444.439H92.85c-13.944,0-25.289-11.345-25.289-25.289V203.223
c0-8.714,7.065-15.781,15.781-15.781h345.315c8.716,0,15.781,7.067,15.781,15.781V419.15
C444.439,433.095,433.094,444.439,419.148,444.439z M99.125,412.878h313.752V219.004H99.125V412.878z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M256.8,15.999h60.523c10.31,0,18.667,8.357,18.667,18.667v282.658
c0,10.308-8.357,18.667-18.667,18.667H34.666c-10.31-0.002-18.667-8.358-18.667-18.668V34.666c0-10.31,8.357-18.667,18.667-18.667
h141.328H256.8z"/>
<g>
<path style="fill:#2D527C;" d="M317.323,351.989H34.666C15.552,351.989,0,336.437,0,317.323V34.666C0,15.552,15.552,0,34.666,0
h282.658c19.113,0,34.664,15.552,34.664,34.666v282.658C351.989,336.437,336.437,351.989,317.323,351.989z M34.666,31.999
c-1.47,0-2.667,1.197-2.667,2.667v282.658c0,1.47,1.197,2.667,2.667,2.667h282.658c1.47,0,2.667-1.197,2.667-2.667V34.666
c0-1.47-1.197-2.667-2.667-2.667H34.666z"/>
<path style="fill:#2D527C;" d="M175.994,244.792c-8.837,0-15.999-7.163-15.999-15.999V15.999C159.995,7.163,167.158,0,175.994,0
c8.837,0,15.999,7.163,15.999,15.999v212.793C191.994,237.629,184.831,244.792,175.994,244.792z"/>
<path style="fill:#2D527C;" d="M477.334,512H194.676c-19.115,0-34.666-15.552-34.666-34.666V337.589c0-8.837,7.163-16,15.999-16
c8.837,0,15.999,7.163,15.999,16v139.744c0,1.47,1.197,2.667,2.667,2.667h282.658c1.47,0,2.667-1.197,2.667-2.667V194.676
c0-1.47-1.197-2.667-2.667-2.667H410.13c-8.835,0-16-7.163-16-15.999c0-8.837,7.165-15.999,16-15.999h67.204
c19.115,0,34.666,15.552,34.666,34.666v282.658C512,496.448,496.448,512,477.334,512z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512H39.138C17.558,512,0,494.442,0,472.862V345.893c0-8.716,7.067-15.781,15.781-15.781
s15.781,7.065,15.781,15.781v126.969c0,4.177,3.398,7.578,7.576,7.578h433.723c4.177,0,7.576-3.399,7.576-7.578V39.14
c0-4.177-3.398-7.578-7.576-7.578H39.138c-4.177,0-7.576,3.399-7.576,7.578v214.043c0,8.716-7.067,15.781-15.781,15.781
S0,261.899,0,253.183V39.14C0,17.558,17.558,0,39.138,0h433.723C494.442,0,512,17.558,512,39.14v433.722
C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#CEE8FA;" d="M428.658,187.44V92.852c0-5.252-4.258-9.508-9.508-9.508H92.852c-5.252,0-9.508,4.258-9.508,9.508
v94.588H428.658z"/>
<g>
<path style="fill:#2D527C;" d="M428.658,203.219H83.342c-8.714,0-15.781-7.065-15.781-15.781V92.852
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.154,437.374,203.219,428.658,203.219z M99.123,171.657h313.754V99.125H99.123V171.657z"/>
<path style="fill:#2D527C;" d="M204.456,444.439H92.85c-13.944,0-25.289-11.345-25.289-25.289V280.773
c0-8.716,7.067-15.781,15.781-15.781s15.781,7.065,15.781,15.781v132.104h89.552V203.219H83.342
c-8.714,0-15.781-7.065-15.781-15.781c0-8.716,7.067-15.781,15.781-15.781h121.114c8.714,0,15.781,7.065,15.781,15.781v241.22
C220.237,437.374,213.172,444.439,204.456,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M204.456,187.44v241.218H419.15c5.252,0,9.508-4.258,9.508-9.508V187.44H204.456z"/>
<path style="fill:#2D527C;" d="M419.15,444.439H204.456c-8.714,0-15.781-7.065-15.781-15.781v-241.22
c0-8.716,7.067-15.781,15.781-15.781h224.201c8.714,0,15.781,7.065,15.781,15.781v231.71
C444.439,433.094,433.095,444.439,419.15,444.439z M220.237,412.877h192.64V203.219h-192.64V412.877z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512H39.138C17.558,512,0,494.442,0,472.862V345.893c0-8.716,7.067-15.781,15.781-15.781
s15.781,7.065,15.781,15.781v126.969c0,4.177,3.398,7.578,7.576,7.578h433.723c4.177,0,7.576-3.399,7.576-7.578V39.14
c0-4.177-3.398-7.578-7.576-7.578H39.138c-4.177,0-7.576,3.399-7.576,7.578v214.043c0,8.716-7.067,15.781-15.781,15.781
S0,261.899,0,253.183V39.14C0,17.558,17.558,0,39.138,0h433.723C494.442,0,512,17.558,512,39.14v433.722
C512,494.442,494.442,512,472.862,512z"/>
<path style="fill:#CEE8FA;" d="M428.658,187.44V92.852c0-5.252-4.258-9.508-9.508-9.508H92.852c-5.252,0-9.508,4.258-9.508,9.508
v94.588H428.658z"/>
<g>
<path style="fill:#2D527C;" d="M428.658,203.219H83.342c-8.714,0-15.781-7.065-15.781-15.781V92.852
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.154,437.374,203.219,428.658,203.219z M99.123,171.657h313.754V99.125H99.123V171.657z"/>
<path style="fill:#2D527C;" d="M204.456,444.439H92.85c-13.944,0-25.289-11.345-25.289-25.289V280.773
c0-8.716,7.067-15.781,15.781-15.781s15.781,7.065,15.781,15.781v132.104h89.552V203.219H83.342
c-8.714,0-15.781-7.065-15.781-15.781c0-8.716,7.067-15.781,15.781-15.781h121.114c8.714,0,15.781,7.065,15.781,15.781v241.22
C220.237,437.374,213.172,444.439,204.456,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M204.456,187.44v241.218H419.15c5.252,0,9.508-4.258,9.508-9.508V187.44H204.456z"/>
<path style="fill:#2D527C;" d="M419.15,444.439H204.456c-8.714,0-15.781-7.065-15.781-15.781v-241.22
c0-8.716,7.067-15.781,15.781-15.781h224.201c8.714,0,15.781,7.065,15.781,15.781v231.71
C444.439,433.094,433.095,444.439,419.15,444.439z M220.237,412.877h192.64V203.219h-192.64V412.877z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.716,7.065-15.781,15.781-15.781s15.781,7.065,15.781,15.781v126.969c0,4.177,3.399,7.578,7.578,7.578h433.722
c4.177,0,7.578-3.399,7.578-7.578V39.141c0-4.177-3.399-7.578-7.578-7.578H39.14c-4.179,0-7.578,3.399-7.578,7.578v214.043
c0,8.716-7.065,15.781-15.781,15.781S0,261.9,0,253.184V39.141c0-21.582,17.558-39.14,39.14-39.14h433.722
c21.582,0,39.14,17.558,39.14,39.14v433.722C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#CEE8FA;" d="M428.658,187.441V92.853c0-5.252-4.258-9.508-9.508-9.508H92.852c-5.252,0-9.508,4.258-9.508,9.508
v94.588H428.658z"/>
<g>
<path style="fill:#2D527C;" d="M428.658,203.22H83.344c-8.716,0-15.781-7.065-15.781-15.781V92.853
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.155,437.374,203.22,428.658,203.22z M99.125,171.658h313.752V99.126H99.125V171.658z"/>
<path style="fill:#2D527C;" d="M204.456,444.439H92.852c-13.944,0-25.289-11.345-25.289-25.289V280.774
c0-8.716,7.065-15.781,15.781-15.781s15.781,7.065,15.781,15.781v132.104h89.552V203.22H83.344
c-8.716,0-15.781-7.065-15.781-15.781s7.065-15.781,15.781-15.781h121.114c8.716,0,15.781,7.065,15.781,15.781v241.22
C220.237,437.374,213.172,444.439,204.456,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M204.456,187.441v241.218H419.15c5.252,0,9.508-4.258,9.508-9.508v-231.71H204.456z"/>
<g>
<path style="fill:#2D527C;" d="M419.148,444.439H204.456c-8.716,0-15.781-7.065-15.781-15.781v-241.22
c0-8.716,7.065-15.781,15.781-15.781h224.201c8.716,0,15.781,7.065,15.781,15.781v231.71
C444.439,433.095,433.094,444.439,419.148,444.439z M220.237,412.878h192.64V203.22h-192.64V412.878z"/>
<path style="fill:#2D527C;" d="M354.479,323.83H204.456c-8.716,0-15.781-7.065-15.781-15.781c0-8.716,7.065-15.781,15.781-15.781
h150.023c8.716,0,15.781,7.065,15.781,15.781C370.26,316.765,363.195,323.83,354.479,323.83z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#2D527C;" d="M472.862,512.001H39.14C17.558,512.001,0,494.443,0,472.862V345.894
c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781v126.969c0,4.177,3.399,7.576,7.578,7.576h433.722
c4.177,0,7.578-3.398,7.578-7.576V39.139c0-4.177-3.399-7.576-7.578-7.576H39.14c-4.179,0-7.578,3.399-7.578,7.576v214.045
c0,8.714-7.065,15.781-15.781,15.781S0,261.898,0,253.184V39.139C0,17.559,17.558,0.001,39.14,0.001h433.722
c21.582,0,39.14,17.558,39.14,39.138v433.723C512,494.443,494.442,512.001,472.862,512.001z"/>
<path style="fill:#CEE8FA;" d="M83.342,187.441V92.853c0-5.252,4.258-9.508,9.508-9.508h326.298c5.252,0,9.508,4.258,9.508,9.508
v94.588H83.342z"/>
<g>
<path style="fill:#2D527C;" d="M428.658,203.221H83.344c-8.716,0-15.781-7.067-15.781-15.781V92.851
c0-13.944,11.345-25.289,25.289-25.289H419.15c13.944,0,25.289,11.345,25.289,25.289v94.588
C444.439,196.155,437.374,203.221,428.658,203.221z M99.125,171.66h313.752V99.124H99.125V171.66z"/>
<path style="fill:#2D527C;" d="M419.148,444.439H307.544c-8.716,0-15.781-7.067-15.781-15.781V187.441
c0-8.714,7.065-15.781,15.781-15.781h121.114c8.716,0,15.781,7.067,15.781,15.781c0,8.714-7.065,15.781-15.781,15.781H323.325
v209.656h89.552V280.772c0-8.714,7.065-15.781,15.781-15.781s15.781,7.067,15.781,15.781V419.15
C444.439,433.096,433.094,444.439,419.148,444.439z"/>
</g>
<path style="fill:#CEE8FA;" d="M307.545,187.441v241.218H92.852c-5.252,0-9.508-4.258-9.508-9.508v-231.71H307.545z"/>
<path style="fill:#2D527C;" d="M307.545,444.439H92.852c-13.944,0-25.289-11.343-25.289-25.289v-231.71
c0-8.714,7.065-15.781,15.781-15.781h224.201c8.716,0,15.781,7.067,15.781,15.781v241.218
C323.326,437.374,316.261,444.439,307.545,444.439z M99.125,412.878h192.64V203.221H99.125V412.878z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M317.324,351.989H34.667c-19.115,0-34.666-15.552-34.666-34.666V34.666
C0.001,15.552,15.552,0,34.667,0h141.328c8.837,0,15.999,7.163,15.999,15.999s-7.163,15.999-15.999,15.999H34.667
c-1.47,0-2.667,1.197-2.667,2.667v282.658c0,1.47,1.197,2.667,2.667,2.667h282.658c1.47,0,2.667-1.197,2.667-2.667V34.666
c0-1.47-1.197-2.667-2.667-2.667h-60.523c-8.837,0-16-7.163-16-15.999S247.966,0,256.802,0h60.523
c19.113,0,34.664,15.552,34.664,34.666v282.658C351.99,336.437,336.438,351.989,317.324,351.989z"/>
<path style="fill:#2D527C;" d="M175.995,244.792c-8.837,0-15.999-7.163-15.999-15.999V15.999C159.996,7.163,167.159,0,175.995,0
s15.999,7.163,15.999,15.999v212.793C191.995,237.629,184.832,244.792,175.995,244.792z"/>
</g>
<path style="fill:#CEE8FA;" d="M477.335,176.01H335.99v141.312c0,10.308-8.357,18.667-18.667,18.667H176.011v141.344
c0,10.308,8.357,18.667,18.667,18.667h282.658c10.308,0,18.667-8.357,18.667-18.667V194.677
C496.001,184.367,487.645,176.01,477.335,176.01z"/>
<path style="fill:#2D527C;" d="M477.335,512H194.676c-19.115,0-34.666-15.552-34.666-34.666V335.99c0-8.837,7.163-16,15.999-16
h141.312c1.47,0,2.667-1.197,2.667-2.667V176.01c0-8.837,7.165-15.999,16-15.999h141.344c19.115,0,34.666,15.552,34.666,34.666
v282.658C512.001,496.448,496.449,512,477.335,512z M192.011,351.989v125.345c0,1.47,1.197,2.667,2.667,2.667h282.658
c1.47,0,2.667-1.197,2.667-2.667V194.676c0-1.47-1.197-2.667-2.667-2.667H351.99v125.313c0,19.116-15.552,34.668-34.666,34.668
H192.011z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

74
static/icons/abacus.svg Normal file
View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<rect x="199.111" y="358.457" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
<rect x="28.444" y="157.284" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
<rect x="28.444" y="209.906" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
</g>
<path style="fill:#2D527C;" d="M150.756,468.294h-51.2v-81.387h42.667c7.855,0,14.222-6.369,14.222-14.222
s-6.367-14.222-14.222-14.222H42.667v-24.178h99.556c7.855,0,14.222-6.369,14.222-14.222s-6.367-14.222-14.222-14.222H99.556v-29.09
h42.667c7.855,0,14.222-6.369,14.222-14.222v-52.619v-0.003v-52.619c0-7.854-6.367-14.222-14.222-14.222H99.556V29.484
c0-7.854-6.367-14.222-14.222-14.222s-14.222,6.369-14.222,14.222v113.58H28.444c-7.855,0-14.222,6.369-14.222,14.222v52.619v0.003
v52.619c0,7.854,6.367,14.222,14.222,14.222h42.667v29.09H28.444c-7.855,0-14.222,6.369-14.222,14.222v52.622
c0,7.854,6.367,14.222,14.222,14.222h42.667v81.387H14.222C6.367,468.294,0,474.662,0,482.516s6.367,14.222,14.222,14.222h136.533
c7.855,0,14.222-6.369,14.222-14.222S158.609,468.294,150.756,468.294z M128,171.509v24.175H42.667v-24.175L128,171.509L128,171.509
z M42.667,224.131H128v24.175H42.667V224.131z"/>
<g>
<rect x="369.778" y="157.284" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
<rect x="369.778" y="262.528" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
</g>
<path style="fill:#2D527C;" d="M483.556,143.064h-42.667V29.484c0-7.854-6.367-14.222-14.222-14.222s-14.222,6.369-14.222,14.222
v113.58h-42.667c-7.855,0-14.222,6.369-14.222,14.222v52.619v0.003v52.619v52.622c0,7.854,6.367,14.222,14.222,14.222h42.667v32.168
c0,7.853,6.367,14.222,14.222,14.222s14.222-6.369,14.222-14.222v-32.168h42.667c7.855,0,14.222-6.369,14.222-14.222v-52.622
c0-7.854-6.367-14.222-14.222-14.222H384v-24.175h99.556c7.855,0,14.222-6.369,14.222-14.222v-52.622
C497.778,149.433,491.411,143.064,483.556,143.064z M469.333,171.509v24.175H384v-24.175L469.333,171.509L469.333,171.509z
M469.333,276.75v24.178H384V276.75H469.333z"/>
<g>
<rect x="199.111" y="60.514" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
<rect x="199.111" y="243.271" style="fill:#CEE8FA;" width="113.778" height="52.622"/>
</g>
<path style="fill:#2D527C;" d="M497.778,468.294h-56.889v-47.009c0-7.854-6.367-14.222-14.222-14.222s-14.222,6.369-14.222,14.222
v47.009H270.222V425.3h42.667c7.855,0,14.222-6.369,14.222-14.222v-52.622c0-7.854-6.367-14.222-14.222-14.222h-42.667v-34.112
h42.667c7.855,0,14.222-6.369,14.222-14.222v-52.622c0-7.854-6.367-14.222-14.222-14.222h-99.556V204.88h99.556
c7.855,0,14.222-6.369,14.222-14.222s-6.367-14.222-14.222-14.222h-42.667v-49.077h42.667c7.855,0,14.222-6.369,14.222-14.222
V60.514c0-7.854-6.367-14.222-14.222-14.222h-42.667V29.484c0-7.854-6.367-14.222-14.222-14.222s-14.222,6.369-14.222,14.222v16.808
h-42.667c-7.855,0-14.222,6.369-14.222,14.222v52.622c0,7.854,6.367,14.222,14.222,14.222h42.667v49.075h-42.667
c-7.855,0-14.222,6.369-14.222,14.222v52.619v0.003v52.619c0,7.854,6.367,14.222,14.222,14.222h42.667v34.112h-42.667
c-7.855,0-14.222,6.369-14.222,14.222v52.622c0,7.854,6.367,14.222,14.222,14.222h42.667v42.994h-27.733
c-7.855,0-14.222,6.369-14.222,14.222s6.367,14.222,14.222,14.222h283.733c7.855,0,14.222-6.369,14.222-14.222
S505.633,468.294,497.778,468.294z M213.333,98.914V74.736h85.333v24.178h-42.64c-0.01,0-0.018-0.001-0.027-0.001
c-0.009,0-0.018,0.001-0.027,0.001H213.333z M213.333,281.675V257.5h85.333v24.175H213.333z M213.333,396.855v-24.178h85.333v24.178
H213.333z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

60
static/icons/add.svg Normal file
View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M310.481,157.604c0-5.767,0.547-11.404,1.539-16.885H13.246v43.978l196.797,165.457l138.819-116.712
C325.59,216.305,310.481,188.724,310.481,157.604z"/>
<g>
<path style="fill:#2D527C;" d="M349.849,249.921c16.048,9.557,34.773,15.068,54.77,15.068c59.21,0,107.381-48.172,107.381-107.383
S463.828,50.223,404.619,50.223c-48.75,0-89.99,32.667-103.05,77.251H13.246C5.93,127.474,0,133.404,0,140.72v3.629v40.347V444.9
v0.128v3.502c0,7.316,5.93,13.246,13.246,13.246h393.595c7.315,0,13.246-5.93,13.246-13.246v-3.629V311.778
c0-7.316-5.932-13.246-13.246-13.246s-13.246,5.93-13.246,13.246v104.679L272.68,314.798L349.849,249.921z M404.619,76.714
c44.603,0,80.889,36.287,80.889,80.89s-36.287,80.89-80.889,80.89c-20.636,0-39.483-7.778-53.789-20.544
c-0.238-0.213-0.483-0.421-0.721-0.637c-0.665-0.608-1.311-1.235-1.955-1.865c-0.425-0.417-0.85-0.835-1.266-1.261
c-0.525-0.534-1.04-1.076-1.548-1.624c-0.595-0.644-1.179-1.299-1.751-1.962c-0.327-0.376-0.658-0.747-0.978-1.129
c-8.988-10.779-15.086-23.76-17.594-37.59c-0.008-0.045-0.016-0.089-0.024-0.134c-0.249-1.392-0.454-2.794-0.631-4.2
c-0.028-0.225-0.06-0.448-0.086-0.673c-0.147-1.256-0.253-2.518-0.34-3.784c-0.021-0.305-0.053-0.607-0.069-0.913
c-0.087-1.519-0.138-3.044-0.138-4.574c0-1.266,0.038-2.525,0.095-3.777c0.041-0.86,0.109-1.723,0.179-2.588
c0.027-0.344,0.048-0.69,0.079-1.033c0.101-1.072,0.224-2.146,0.367-3.222c0.016-0.122,0.03-0.244,0.046-0.366
c0.152-1.106,0.33-2.212,0.526-3.318C331.796,105.501,364.897,76.714,404.619,76.714z M297.234,157.604
c0,1.787,0.046,3.569,0.135,5.345c1.139,23.124,9.646,44.331,23.19,61.362c0.356,0.45,0.702,0.91,1.066,1.355
c0.385,0.469,0.791,0.922,1.184,1.384c1.809,2.139,3.681,4.23,5.661,6.227l-118.429,99.569L26.493,178.528v-24.561h270.805
C297.257,155.183,297.234,156.396,297.234,157.604z M26.493,213.141L147.407,314.8L26.493,416.457V213.141z M374.82,435.284H45.268
l122.722-103.18l33.529,28.19c2.464,2.072,5.493,3.108,8.524,3.108c3.031,0,6.06-1.036,8.524-3.108l33.529-28.19L374.82,435.284z"
/>
<path style="fill:#2D527C;" d="M366.867,170.851h24.506v24.506c0,7.316,5.932,13.246,13.246,13.246s13.246-5.93,13.246-13.246
v-24.506h24.506c7.315,0,13.246-5.93,13.246-13.246c0-7.316-5.932-13.246-13.246-13.246h-24.506v-24.506
c0-7.316-5.932-13.246-13.246-13.246s-13.246,5.93-13.246,13.246v24.506h-24.506c-7.315,0-13.246,5.93-13.246,13.246
C353.62,164.92,359.551,170.851,366.867,170.851z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

63
static/icons/add_1.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M285.792,328.774c0-58.717,47.599-106.316,106.316-106.316c7.124,0,14.08,0.714,20.812,2.05
c2.964-10.219,4.579-21.011,4.579-32.187c0-63.739-51.671-115.41-115.411-115.41c-45.413,0-84.67,26.248-103.507,64.385
c-14.531-13.426-33.95-21.64-55.294-21.64c-45.018,0-81.512,36.494-81.512,81.512c0,44.562,35.763,80.748,80.151,81.477
c-0.456,0.008-0.907,0.034-1.364,0.034c-36.146,0-66.776-23.535-77.454-56.11c-29.277,13.884-49.53,43.7-49.53,78.255l0,0
c0,47.811,38.759,86.57,86.57,86.57H306.21C293.381,373.828,285.792,352.192,285.792,328.774z"/>
<g>
<path style="fill:#2D527C;" d="M484.618,252.505c-4.772-5.784-13.33-6.6-19.113-1.83c-5.782,4.774-6.602,13.33-1.83,19.113
c13.653,16.543,21.172,37.491,21.172,58.986c0,51.136-41.603,92.739-92.739,92.739c-46.34,0-84.851-34.165-91.668-78.627
c-0.001-0.011-0.003-0.023-0.004-0.034c-0.21-1.374-0.38-2.762-0.53-4.156c-0.038-0.354-0.071-0.709-0.105-1.063
c-0.105-1.101-0.187-2.208-0.254-3.32c-0.023-0.395-0.052-0.79-0.069-1.185c-0.067-1.443-0.11-2.893-0.11-4.354
c0-51.137,41.603-92.74,92.739-92.74c6.067,0,12.181,0.601,18.17,1.789c6.911,1.371,13.718-2.771,15.68-9.534
c3.396-11.706,5.117-23.807,5.117-35.968c0-71.125-57.863-128.988-128.986-128.988c-43.922,0-83.811,21.765-107.536,57.746
c-15.203-9.756-32.921-15.002-51.266-15.002c-52.432,0-95.089,42.657-95.089,95.089c0,5.803,0.519,11.531,1.531,17.127
C19.265,236.109,0,269.201,0,304.826c0,55.221,44.926,100.147,100.147,100.147H299.61c22.008,26.669,55.302,43.696,92.499,43.696
c66.109,0,119.893-53.783,119.893-119.893C512,300.987,502.276,273.902,484.618,252.505z M282.674,377.819H100.147
c-40.248,0-72.993-32.745-72.993-72.993c0-23.271,11.28-45.059,29.607-58.679c16.329,30.523,48.241,50.111,83.8,50.111
c0.418,0,0.834-0.012,1.248-0.027l0.314-0.009c7.416-0.109,13.372-6.146,13.379-13.562c0.007-7.417-5.938-13.467-13.353-13.589
c-36.831-0.604-66.796-31.065-66.796-67.902c0-37.46,30.476-67.936,67.936-67.936c17.128,0,33.494,6.406,46.08,18.035
c3.144,2.905,7.474,4.16,11.686,3.378c4.21-0.779,7.805-3.499,9.702-7.337c17.31-35.049,52.309-56.822,91.334-56.822
c56.151,0,101.833,45.682,101.833,101.834c0,5.704-0.481,11.394-1.432,17.01c-3.458-0.301-6.926-0.452-10.381-0.452
c-66.109,0-119.893,53.783-119.893,119.894c0,1.047,0.014,2.091,0.041,3.132c0.015,0.603,0.045,1.202,0.069,1.803
c0.018,0.426,0.029,0.854,0.05,1.279c0.042,0.84,0.1,1.679,0.16,2.517c0.012,0.172,0.02,0.346,0.034,0.519
C273.621,351.877,277.035,365.287,282.674,377.819z"/>
<path style="fill:#2D527C;" d="M433.359,315.198h-27.675v-27.676c0-7.497-6.078-13.577-13.577-13.577s-13.577,6.08-13.577,13.577
v27.676h-27.675c-7.498,0-13.577,6.08-13.577,13.577c0,7.497,6.078,13.577,13.577,13.577h27.675v27.675
c0,7.497,6.078,13.577,13.577,13.577s13.577-6.08,13.577-13.577v-27.675h27.675c7.498,0,13.577-6.08,13.577-13.577
C446.936,321.278,440.858,315.198,433.359,315.198z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M60.76,139.885c-7.812,0-14.144-6.332-14.144-14.144V60.76c0-7.812,6.332-14.144,14.144-14.144
h64.98c7.812,0,14.144,6.332,14.144,14.144s-6.332,14.144-14.144,14.144H74.903v50.837
C74.903,133.553,68.571,139.885,60.76,139.885z"/>
<path style="fill:#2D527C;" d="M451.239,465.384H386.26c-7.81,0-14.144-6.332-14.144-14.144s6.334-14.144,14.144-14.144h50.835
V386.26c0-7.812,6.334-14.144,14.144-14.144c7.81,0,14.144,6.332,14.144,14.144v64.98
C465.383,459.05,459.05,465.384,451.239,465.384z"/>
<path style="fill:#2D527C;" d="M497.856,512H14.144C6.332,512,0,505.668,0,497.856V14.144C0,6.332,6.332,0,14.144,0h483.713
C505.667,0,512,6.332,512,14.144v483.713C512,505.668,505.667,512,497.856,512z M28.287,483.713h455.425V28.287H28.287V483.713z"/>
</g>
<path style="fill:#CEE8FA;" d="M393.893,207.912v-89.805H118.107v275.787h275.787v-77.783 M339.651,287.116h-52.535v52.535h-62.232
v-52.535h-52.535v-62.232h52.535v-52.535h62.232v52.535h52.535V287.116z"/>
<path style="fill:#2D527C;" d="M393.893,408.037H118.107c-7.812,0-14.144-6.332-14.144-14.144V118.107
c0-7.812,6.332-14.144,14.144-14.144h275.787c7.81,0,14.144,6.332,14.144,14.144v89.805c0,7.812-6.334,14.144-14.144,14.144
s-14.144-6.332-14.144-14.144V132.25h-247.5v247.5h247.5v-63.639c0-7.812,6.334-14.144,14.144-14.144s14.144,6.332,14.144,14.144
v77.783C408.037,401.705,401.705,408.037,393.893,408.037z M287.116,353.795h-62.232c-7.812,0-14.144-6.332-14.144-14.144V301.26
h-38.392c-7.812,0-14.144-6.332-14.144-14.144v-62.232c0-7.812,6.332-14.144,14.144-14.144h38.392v-38.392
c0-7.812,6.332-14.144,14.144-14.144h62.232c7.81,0,14.144,6.332,14.144,14.144v38.392h38.393c7.81,0,14.144,6.332,14.144,14.144
v62.232c0,7.812-6.334,14.144-14.144,14.144H301.26v38.392C301.26,347.463,294.926,353.795,287.116,353.795z M239.028,325.508
h33.945v-38.392c0-7.812,6.334-14.144,14.144-14.144h38.393v-33.945h-38.393c-7.81,0-14.144-6.332-14.144-14.144v-38.392h-33.945
v38.392c0,7.812-6.332,14.144-14.144,14.144h-38.392v33.945h38.392c7.812,0,14.144,6.332,14.144,14.144V325.508z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#2D527C;" d="M342.844,338.234c-43.316,0-86.635-16.489-119.612-49.465c-65.953-65.954-65.953-173.271,0-239.225
c23.06-23.06,52.029-38.868,83.776-45.717c30.896-6.663,62.932-4.595,92.651,5.978c4.957,1.764,8.666,5.945,9.822,11.081
c1.158,5.134-0.397,10.502-4.118,14.224L358.9,81.574c-5.993,5.991-15.705,5.993-21.699,0c-5.991-5.991-5.991-15.706,0-21.698
l27.439-27.439c-43.262-6.788-88.19,7.285-119.709,38.805c-53.99,53.99-53.99,141.838,0,195.828
c53.991,53.993,141.84,53.988,195.829,0c31.522-31.522,45.591-76.459,38.805-119.709l-82.721,82.721
c-5.993,5.991-15.705,5.991-21.699,0l-93.226-93.226c-5.991-5.991-5.991-15.706,0-21.699c5.993-5.991,15.705-5.991,21.699,0
l82.375,82.377l90.897-90.897c3.722-3.722,9.097-5.278,14.224-4.118c5.135,1.157,9.316,4.865,11.081,9.824
c10.576,29.719,12.642,61.756,5.978,92.651c-6.849,31.746-22.657,60.715-45.715,83.775
C429.48,321.745,386.161,338.234,342.844,338.234z"/>
<path style="fill:#CEE8FA;" d="M234.082,277.919c-16.684-16.684-28.716-36.252-36.132-57.094l-163.3,163.3
c-25.744,25.744-25.744,67.482,0,93.226l0,0c25.744,25.744,67.482,25.744,93.226,0l163.3-163.3
C270.332,306.636,250.766,294.602,234.082,277.919z"/>
<path style="fill:#2D527C;" d="M81.263,512.001c-21.707,0-42.113-8.454-57.462-23.803C8.452,472.851-0.002,452.445,0,430.738
c-0.002-21.705,8.452-42.113,23.801-57.462l163.3-163.3c3.722-3.722,9.089-5.278,14.224-4.118c5.135,1.157,9.316,4.865,11.081,9.822
c6.915,19.432,17.859,36.721,32.527,51.389c14.669,14.669,31.959,25.612,51.388,32.527c4.957,1.764,8.666,5.947,9.822,11.081
c1.158,5.134-0.397,10.502-4.118,14.224l-163.3,163.298C123.376,503.548,102.969,512.001,81.263,512.001z M192.907,247.565
L45.499,394.974c-9.552,9.554-14.813,22.255-14.813,35.764c0,13.509,5.261,26.21,14.813,35.764
c9.552,9.554,22.253,14.815,35.764,14.815c13.509,0,26.21-5.261,35.764-14.815l147.409-147.408
c-15.119-7.891-28.918-18.039-41.203-30.325C210.947,276.483,200.797,262.685,192.907,247.565z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M438.556,512H19.785c-8.216,0-14.876-6.66-14.876-14.876V256.916c0-8.216,6.66-14.876,14.876-14.876
s14.876,6.66,14.876,14.876v225.332H423.68v-32.833c0-8.216,6.66-14.876,14.876-14.876c8.216,0,14.876,6.66,14.876,14.876v47.709
C453.432,505.34,446.772,512,438.556,512z"/>
<g>
<polygon style="fill:#CEE8FA;" points="19.785,177.122 19.785,172.332 175.581,14.876 175.581,177.122 "/>
<rect x="196.154" y="219.435" style="fill:#CEE8FA;" width="296.061" height="163.65"/>
</g>
<g>
<path style="fill:#2D527C;" d="M492.215,204.559h-38.783V14.876C453.432,6.66,446.772,0,438.556,0H175.581
c-0.183,0-0.363,0.021-0.546,0.027c-0.167,0.006-0.332,0.013-0.497,0.025c-0.644,0.046-1.284,0.118-1.912,0.245
c-0.01,0.001-0.021,0.006-0.033,0.007c-0.622,0.128-1.227,0.306-1.825,0.512c-0.153,0.052-0.305,0.107-0.457,0.165
c-0.588,0.223-1.166,0.472-1.721,0.766c-0.016,0.009-0.034,0.015-0.051,0.024c-0.57,0.306-1.111,0.662-1.638,1.041
c-0.134,0.097-0.266,0.195-0.397,0.296c-0.522,0.403-1.029,0.829-1.498,1.302L9.21,161.868c-0.35,0.353-0.678,0.721-0.988,1.104
c-0.207,0.254-0.388,0.521-0.576,0.784c-0.092,0.131-0.195,0.256-0.283,0.388c-0.214,0.324-0.406,0.66-0.592,0.998
c-0.046,0.083-0.1,0.162-0.143,0.245c-0.183,0.347-0.342,0.701-0.495,1.056c-0.037,0.086-0.082,0.168-0.118,0.256
c-0.14,0.341-0.256,0.689-0.369,1.038c-0.036,0.112-0.08,0.219-0.113,0.33c-0.095,0.321-0.17,0.646-0.242,0.971
c-0.034,0.147-0.076,0.293-0.106,0.442c-0.058,0.3-0.095,0.604-0.134,0.907c-0.024,0.177-0.057,0.351-0.073,0.53
c-0.028,0.303-0.034,0.607-0.045,0.912c-0.006,0.167-0.024,0.332-0.024,0.498v4.792c0,8.216,6.66,14.876,14.876,14.876h155.796
c8.216,0,14.876-6.66,14.876-14.876V29.752h233.223v174.807H196.156c-8.216,0-14.876,6.66-14.876,14.876v163.644
c0,8.216,6.66,14.876,14.876,14.876h296.059c8.216,0,14.876-6.66,14.876-14.876V219.435
C507.091,211.219,500.431,204.559,492.215,204.559z M50.691,162.246L160.705,51.06v111.186H50.691z M477.339,368.203H211.032
V234.311h266.308V368.203z"/>
<path style="fill:#2D527C;" d="M285.292,342.261c0-0.419,0.14-0.979,0.28-1.538l26.008-85.294
c1.538-4.894,7.831-7.271,14.262-7.271s12.723,2.377,14.262,7.271l26.147,85.294c0.14,0.559,0.28,1.119,0.28,1.538
c0,5.174-7.969,8.949-13.982,8.949c-3.496,0-6.291-1.119-7.13-4.055l-4.754-17.478H311.16l-4.753,17.478
c-0.839,2.936-3.636,4.055-7.132,4.055C293.261,351.209,285.292,347.435,285.292,342.261z M336.049,312.897l-10.208-37.472
l-10.208,37.472H336.049z"/>
<path style="fill:#2D527C;" d="M374.645,255.569c0-4.615,5.454-6.571,10.907-6.571s10.907,1.956,10.907,6.571v88.928
c0,4.475-5.454,6.712-10.907,6.712c-5.454,0-10.907-2.237-10.907-6.712L374.645,255.569L374.645,255.569z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="26.997" y="74.795" style="fill:#CEE8FA;" width="83.257" height="58.602"/>
<path style="fill:#2D527C;" d="M110.256,148.819H26.997c-8.517,0-15.422-6.906-15.422-15.422V74.795
c0-8.516,6.904-15.422,15.422-15.422h83.257c8.517,0,15.422,6.906,15.422,15.422v58.602
C125.678,141.913,118.773,148.819,110.256,148.819z M42.419,117.976h52.414V90.217H42.419V117.976z"/>
<g>
<rect x="26.997" y="226.699" style="fill:#CEE8FA;" width="83.257" height="58.602"/>
<rect x="26.997" y="378.602" style="fill:#CEE8FA;" width="83.257" height="58.602"/>
</g>
<g>
<path style="fill:#2D527C;" d="M485.003,0H53.196c-8.517,0-15.422,6.906-15.422,15.422s6.904,15.422,15.422,15.422h416.386v450.313
H68.617v-28.53h41.639c8.517,0,15.422-6.906,15.422-15.422v-58.602c0-8.516-6.904-15.422-15.422-15.422H68.617v-19.234
c0-8.516-6.904-15.422-15.422-15.422s-15.422,6.906-15.422,15.422v19.234H26.999c-8.517,0-15.422,6.906-15.422,15.422v58.602
c0,8.516,6.904,15.422,15.422,15.422h10.775v43.952c0,8.516,6.904,15.422,15.422,15.422h431.807
c8.517,0,15.422-6.906,15.422-15.422V15.422C500.424,6.906,493.52,0,485.003,0z M94.834,421.783H42.419v-27.759h52.414v27.759
H94.834z"/>
<path style="fill:#2D527C;" d="M26.997,300.723h83.257c8.517,0,15.422-6.906,15.422-15.422v-58.602
c0-8.516-6.904-15.422-15.422-15.422H68.616v-19.235c0-8.516-6.904-15.422-15.422-15.422s-15.422,6.906-15.422,15.422v19.235
H26.997c-8.517,0-15.422,6.906-15.422,15.422v58.602C11.576,293.817,18.48,300.723,26.997,300.723z M94.834,269.88H42.419V242.12
h52.414v27.759H94.834z"/>
</g>
<rect x="178.12" y="74.795" style="fill:#CEE8FA;" width="232.867" height="172.954"/>
<g>
<path style="fill:#2D527C;" d="M410.99,263.174H178.122c-8.517,0-15.422-6.906-15.422-15.422V74.795
c0-8.516,6.904-15.422,15.422-15.422H410.99c8.517,0,15.422,6.906,15.422,15.422v172.957
C426.411,256.27,419.507,263.174,410.99,263.174z M193.544,232.331h202.024V90.217H193.544L193.544,232.331L193.544,232.331z"/>
<path style="fill:#2D527C;" d="M409.437,306.892h-57.828c-8.517,0-15.422,6.906-15.422,15.422c0,8.516,6.904,15.422,15.422,15.422
h42.407v81.735h-84.813v-97.157c0-8.516-6.904-15.422-15.422-15.422h-61.691c-8.517,0-15.422,6.906-15.422,15.422
c0,8.516,6.904,15.422,15.422,15.422h46.27v81.735h-84.813v-97.157c0-8.516-6.904-15.422-15.422-15.422
c-8.517,0-15.422,6.906-15.422,15.422v112.578c0,8.516,6.904,15.422,15.422,15.422H293.78h115.656
c8.517,0,15.422-6.906,15.422-15.422V322.313C424.858,313.797,417.954,306.892,409.437,306.892z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="36.507,15.138 100.081,15.138 100.081,496.862 36.507,496.862 36.507,83.176 "/>
<path style="fill:#2D527C;" d="M303.382,302.259l-34.661-12.144l0.023-68.242l34.646-12.129c6.072-2.125,10.137-7.857,10.135-14.289
l-0.012-89.345c0-4.015-1.597-7.866-4.436-10.704c-2.84-2.838-6.691-4.434-10.706-4.433l-45.868,0.009
c-3.689,0-7.25,1.349-10.016,3.789l-55.192,48.718c-3.255,2.873-5.12,7.006-5.12,11.348l-0.02,202.297
c0,4.015,1.594,7.866,4.434,10.706l43.695,43.695c5.912,5.91,15.497,5.91,21.41,0c5.912-5.912,5.912-15.497,0-21.41l-39.261-39.261
l0.018-189.198l45.782-40.41l25.004-0.005l0.009,63.465l-34.64,12.127c-6.069,2.125-10.134,7.854-10.137,14.285l-0.029,89.719
c-0.002,6.432,4.062,12.164,10.132,14.291l34.665,12.146l0.006,78.609c0,8.359,6.779,15.137,15.14,15.137
c8.359,0,15.137-6.779,15.137-15.14l-0.008-89.345C313.515,310.114,309.451,304.385,303.382,302.259z"/>
<g>
<rect x="402.833" y="40.743" style="fill:#CEE8FA;" width="72.655" height="102.564"/>
<rect x="402.833" y="143.315" style="fill:#CEE8FA;" width="72.655" height="102.564"/>
</g>
<path style="fill:#2D527C;" d="M475.495,25.605h-57.517V15.138C417.978,6.779,411.199,0,402.839,0H100.081H36.507
c-8.361,0-15.138,6.779-15.138,15.138v481.723c0,8.359,6.777,15.138,15.138,15.138h63.574h302.757
c8.359,0,15.138-6.779,15.138-15.138v-67.072c0-8.359-6.779-15.138-15.138-15.138c-8.359,0-15.138,6.779-15.138,15.138v51.934
h-272.48V30.277h272.48v10.467v102.564v102.566V348.43v0.008c0,8.359,6.779,15.138,15.138,15.138
c8.359,0,15.138-6.779,15.138-15.138v-0.008v-87.418h42.378v87.426c0,8.359,6.779,15.138,15.138,15.138
c8.359,0,15.138-6.779,15.138-15.138V245.873V143.308V40.743C490.633,32.384,483.854,25.605,475.495,25.605z M84.942,481.723H51.645
V30.277h33.297V481.723z M460.356,55.882v72.287h-42.378V55.882H460.356z M417.978,230.735v-72.289h42.378v72.289H417.978z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<g>
<path style="fill:#CEE8FA;" d="M256.001,98.244L256.001,98.244c10.954,0,21.583,1.388,31.721,3.996V69.405
c0-17.519-14.202-31.721-31.721-31.721l0,0c-17.519,0-31.721,14.202-31.721,31.721v32.835
C234.418,99.632,245.047,98.244,256.001,98.244z"/>
<polygon style="fill:#CEE8FA;" points="417.207,405.793 94.793,405.793 129.088,315.654 382.914,315.654 "/>
<circle style="fill:#CEE8FA;" cx="255.997" cy="440.073" r="34.251"/>
</g>
<g>
<path style="fill:#2D527C;" d="M429.577,400.155l-33.984-89.325c-2.004-5.263-7.047-8.741-12.679-8.741H142.629v-76.91
c0-54.637,38.851-100.367,90.377-111.022c0.111-0.023,0.221-0.046,0.332-0.068c1.715-0.35,3.444-0.658,5.187-0.929
c0.296-0.045,0.591-0.081,0.887-0.125c1.308-0.193,2.625-0.355,3.946-0.503c0.555-0.061,1.108-0.129,1.663-0.182
c1.399-0.134,2.805-0.239,4.219-0.321c0.75-0.043,1.502-0.076,2.253-0.104c0.952-0.038,1.909-0.058,2.868-0.073
c1.092-0.015,2.183-0.015,3.275,0c0.959,0.014,1.915,0.035,2.868,0.073c0.751,0.03,1.503,0.061,2.253,0.104
c1.413,0.084,2.82,0.187,4.219,0.321c0.555,0.053,1.108,0.121,1.663,0.182c1.321,0.148,2.638,0.311,3.946,0.503
c0.296,0.043,0.591,0.08,0.887,0.125c1.742,0.271,3.471,0.579,5.187,0.929c0.111,0.022,0.221,0.046,0.332,0.068
c51.526,10.657,90.377,56.385,90.377,111.022v37.166c0,7.492,6.074,13.565,13.565,13.565s13.565-6.073,13.565-13.565v-37.166
c0-61.633-39.893-114.123-95.213-133.009V69.405c0-24.97-20.316-45.286-45.286-45.286s-45.286,20.316-45.286,45.286V92.17
c-55.32,18.886-95.213,71.376-95.213,133.009v88.036l-33.386,87.754c-1.586,4.168-1.021,8.851,1.511,12.523
c2.531,3.672,6.706,5.865,11.167,5.865h118.116c-3.025,6.27-4.722,13.296-4.722,20.711c0,26.365,21.45,47.814,47.814,47.814
s47.814-21.449,47.814-47.813c0-7.415-1.697-14.441-4.722-20.711h118.116c0.011,0,0.022,0,0.027,0
c7.492,0,13.565-6.073,13.565-13.565C430.799,403.781,430.362,401.873,429.577,400.155z M237.844,85.846V69.405
c0-10.011,8.144-18.157,18.157-18.157c10.012,0,18.157,8.144,18.157,18.157v16.441c-0.065-0.008-0.129-0.014-0.194-0.022
c-1.324-0.17-2.655-0.317-3.989-0.45c-0.41-0.041-0.822-0.073-1.232-0.11c-0.982-0.088-1.968-0.17-2.956-0.237
c-0.469-0.033-0.939-0.062-1.408-0.09c-0.981-0.058-1.964-0.104-2.95-0.142c-0.419-0.016-0.838-0.035-1.259-0.047
c-1.385-0.041-2.774-0.066-4.168-0.066c-1.394,0-2.784,0.026-4.168,0.066c-0.421,0.012-0.84,0.033-1.259,0.047
c-0.986,0.038-1.97,0.084-2.95,0.142c-0.469,0.027-0.939,0.057-1.408,0.09c-0.989,0.068-1.974,0.149-2.956,0.237
c-0.411,0.037-0.822,0.069-1.232,0.11c-1.335,0.133-2.665,0.281-3.989,0.45C237.973,85.832,237.908,85.838,237.844,85.846z
M256.001,460.753c-11.405,0-20.684-9.278-20.684-20.684c0-11.405,9.278-20.684,20.684-20.684s20.684,9.278,20.684,20.684
C276.684,451.474,267.406,460.753,256.001,460.753z M114.467,392.228l23.972-63.01h235.123l23.972,63.01H114.467z"/>
<path style="fill:#2D527C;" d="M429.565,307.849c-4.136,0-8.219-1.884-10.882-5.453c-4.48-6.005-3.246-14.504,2.759-18.984
c8.747-6.527,13.763-16.518,13.763-27.411s-5.016-20.885-13.763-27.411c-6.005-4.48-7.24-12.979-2.759-18.984
c4.48-6.004,12.98-7.241,18.984-2.759c15.446,11.526,24.669,29.901,24.669,49.154s-9.223,37.629-24.669,49.154
C435.232,306.971,432.386,307.849,429.565,307.849z"/>
<path style="fill:#2D527C;" d="M466.412,339.362c-3.814,0-7.603-1.598-10.286-4.715c-4.889-5.678-4.249-14.243,1.43-19.131
c17.359-14.944,27.316-36.637,27.316-59.516s-9.957-44.57-27.316-59.516c-5.678-4.889-6.317-13.452-1.43-19.131
c4.889-5.677,13.451-6.317,19.131-1.43c23.352,20.105,36.745,49.291,36.745,80.076s-13.393,59.972-36.745,80.076
C472.696,338.282,469.545,339.362,466.412,339.362z"/>
<path style="fill:#2D527C;" d="M82.435,307.849c-2.821,0-5.667-0.876-8.102-2.694c-15.446-11.526-24.669-29.901-24.669-49.154
c0-19.253,9.223-37.629,24.669-49.154c6.004-4.48,14.502-3.245,18.984,2.759c4.48,6.005,3.246,14.504-2.759,18.984
c-8.747,6.527-13.763,16.518-13.763,27.411c0,10.893,5.016,20.885,13.763,27.411c6.005,4.48,7.24,12.979,2.759,18.984
C90.656,305.965,86.571,307.849,82.435,307.849z"/>
<path style="fill:#2D527C;" d="M45.588,339.362c-3.135,0-6.282-1.08-8.844-3.284C13.393,315.973,0,286.785,0,256.001
s13.393-59.972,36.745-80.076c5.678-4.889,14.244-4.246,19.131,1.43c4.889,5.678,4.249,14.243-1.43,19.131
C37.086,211.43,27.13,233.123,27.13,256.001c0,22.879,9.957,44.57,27.316,59.516c5.678,4.889,6.317,13.452,1.43,19.131
C53.192,337.762,49.401,339.362,45.588,339.362z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<g>
<path style="fill:#CEE8FA;" d="M255.986,81.179L255.986,81.179c12.138,0,23.917,1.537,35.154,4.428V49.219
c0-19.415-15.739-35.153-35.153-35.153l0,0c-19.415,0-35.153,15.739-35.153,35.153v36.386
C232.069,82.716,243.848,81.179,255.986,81.179z"/>
<polygon style="fill:#CEE8FA;" points="434.632,421.997 77.34,421.997 115.344,322.106 396.629,322.106 "/>
<circle style="fill:#CEE8FA;" cx="255.985" cy="459.979" r="37.953"/>
</g>
<path style="fill:#2D527C;" d="M447.46,416.15l-37.682-99.046c-2.078-5.458-7.308-9.065-13.148-9.065H129.387v-86.195
c0-60.927,43.263-111.935,100.682-123.928c0.269-0.055,0.536-0.113,0.805-0.166c0.723-0.146,1.449-0.284,2.176-0.418
c0.677-0.122,1.355-0.241,2.033-0.352c0.412-0.069,0.824-0.141,1.238-0.205c12.983-2.009,26.351-2.009,39.335,0
c0.407,0.063,0.812,0.135,1.218,0.203c0.686,0.113,1.371,0.232,2.057,0.356c0.722,0.132,1.442,0.27,2.159,0.415
c0.276,0.055,0.551,0.114,0.826,0.17c57.413,11.997,100.671,63.003,100.671,123.926v41.187c0,7.769,6.299,14.067,14.067,14.067
c7.768,0,14.067-6.298,14.067-14.067v-41.187c0-68.12-44.249-126.097-105.514-146.705V49.221C305.207,22.08,283.126,0,255.986,0
c-27.139,0-49.219,22.08-49.219,49.221V75.14c-61.264,20.608-105.514,78.585-105.514,146.705v97.741l-37.06,97.41
c-1.644,4.323-1.059,9.178,1.566,12.986c2.626,3.808,6.956,6.082,11.581,6.082h132.474c-3.728,7.167-5.847,15.296-5.847,23.917
c0,28.683,23.335,52.02,52.02,52.02s52.02-23.337,52.02-52.02c0-8.62-2.12-16.751-5.848-23.917h132.474c0.011,0,0.022,0,0.028,0
c7.769,0,14.067-6.298,14.067-14.067C448.727,419.91,448.274,417.931,447.46,416.15z M234.9,68.541V49.221
c0-11.627,9.46-21.087,21.086-21.087c11.626,0,21.086,9.46,21.086,21.087v19.321c-0.222-0.031-0.446-0.051-0.668-0.08
c-1.418-0.187-2.84-0.36-4.269-0.508c-0.115-0.013-0.231-0.028-0.347-0.039c-1.56-0.159-3.13-0.287-4.704-0.399
c-0.459-0.032-0.917-0.059-1.377-0.087c-1.182-0.073-2.367-0.134-3.556-0.18c-0.463-0.018-0.924-0.039-1.387-0.053
c-1.588-0.048-3.179-0.08-4.78-0.08c-1.601,0-3.192,0.032-4.78,0.08c-0.463,0.014-0.924,0.035-1.386,0.053
c-1.19,0.046-2.376,0.107-3.559,0.181c-0.457,0.028-0.916,0.055-1.373,0.087c-1.574,0.113-3.145,0.241-4.707,0.399
c-0.111,0.011-0.222,0.027-0.335,0.038c-1.433,0.149-2.858,0.322-4.28,0.509C235.346,68.49,235.123,68.51,234.9,68.541z
M255.986,483.867c-13.171,0-23.887-10.716-23.887-23.887c0-13.172,10.716-23.887,23.887-23.887
c13.171,0,23.887,10.716,23.887,23.887C279.874,473.152,269.158,483.867,255.986,483.867z M97.742,407.931l27.301-71.757h261.888
l27.299,71.757H97.742z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#CEE8FA;" d="M269.015,87.152L269.015,87.152c12.879,0,25.376,1.632,37.296,4.698V53.245
c0-20.598-16.698-37.296-37.296-37.296l0,0c-20.598,0-37.296,16.698-37.296,37.296V91.85
C243.641,88.783,256.138,87.152,269.015,87.152z"/>
<polygon style="fill:#CEE8FA;" points="458.553,448.747 79.479,448.747 119.799,342.767 418.231,342.767 "/>
</g>
<path style="fill:#2D527C;" d="M487.303,44.72c-6.23-6.228-16.325-6.228-22.556,0l-76.973,76.973
c-18.04-18.673-40.425-33.119-65.513-41.685V53.245C322.261,23.886,298.375,0,269.017,0c-29.36,0-53.246,23.886-53.246,53.245V80.01
c-65.042,22.205-111.944,83.919-111.944,156.384v103.507L64.573,443.076c-0.314,0.825-0.529,1.67-0.7,2.52l-39.176,39.176
c-6.228,6.228-6.228,16.327,0,22.556c3.115,3.115,7.196,4.671,11.277,4.671s8.163-1.557,11.277-4.671l42.633-42.632h368.669
c0.011,0,0.024,0,0.032,0c8.808,0,15.949-7.14,15.949-15.949c0-2.365-0.514-4.611-1.437-6.628L433.14,337.097
c-2.356-6.188-8.285-10.277-14.907-10.277H189.52c-0.169-0.003-0.337-0.003-0.506,0h-53.291v-90.426
c0-64.245,45.688-118.016,106.281-130.537c0.118-0.024,0.234-0.049,0.352-0.073c2.027-0.413,4.072-0.778,6.132-1.097
c0.327-0.049,0.655-0.091,0.982-0.139c1.563-0.231,3.137-0.426,4.716-0.601c0.635-0.07,1.268-0.147,1.904-0.207
c1.657-0.159,3.324-0.282,4.998-0.381c0.866-0.051,1.734-0.088,2.603-0.121c1.15-0.046,2.303-0.072,3.459-0.088
c1.246-0.018,2.491-0.018,3.737,0c1.153,0.016,2.303,0.041,3.448,0.088c0.869,0.034,1.74,0.07,2.609,0.121
c1.671,0.099,3.336,0.22,4.992,0.381c0.64,0.061,1.279,0.139,1.917,0.209c1.573,0.175,3.137,0.368,4.692,0.598
c0.335,0.049,0.671,0.091,1.005,0.142c2.054,0.319,4.092,0.683,6.113,1.094c0.126,0.026,0.252,0.053,0.378,0.078
c26.899,5.561,50.835,19.276,69.163,38.405l-93.557,93.557c-6.228,6.228-6.228,16.327,0,22.556
c3.115,3.115,7.196,4.671,11.277,4.671c4.081,0,8.163-1.557,11.277-4.671l90.338-90.34c11.277,19.556,17.765,42.207,17.765,66.356
v43.698c0,8.808,7.142,15.949,15.949,15.949s15.949-7.14,15.949-15.949v-43.698c0-32.988-9.726-63.747-26.453-89.566l79.551-79.551
C493.531,61.047,493.531,50.948,487.303,44.72z M130.795,358.715h19.957l-32.212,32.212L130.795,358.715z M435.421,432.799H121.78
l74.083-74.083h211.373L435.421,432.799z M247.668,72.573v-19.33c0-11.77,9.577-21.347,21.349-21.347s21.347,9.576,21.347,21.347
v19.33c-0.077-0.01-0.153-0.016-0.23-0.026c-1.561-0.201-3.132-0.375-4.708-0.531c-0.453-0.045-0.906-0.08-1.359-0.121
c-1.207-0.11-2.418-0.207-3.633-0.292c-0.488-0.033-0.978-0.064-1.466-0.092c-1.263-0.075-2.529-0.136-3.801-0.182
c-0.383-0.014-0.764-0.032-1.147-0.043c-1.662-0.049-3.328-0.083-5.003-0.083c-1.678,0-3.348,0.033-5.014,0.083
c-0.375,0.011-0.748,0.029-1.123,0.043c-1.279,0.046-2.557,0.107-3.829,0.183c-0.482,0.029-0.962,0.059-1.443,0.092
c-1.225,0.085-2.447,0.183-3.665,0.293c-0.445,0.04-0.888,0.075-1.332,0.118c-1.576,0.156-3.145,0.33-4.708,0.531
C247.824,72.557,247.746,72.563,247.668,72.573z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="14.59" y="144.584" style="fill:#CEE8FA;" width="400.444" height="61.291"/>
<g>
<path style="fill:#2D527C;" d="M497.41,69.889H14.59C6.533,69.889,0,76.422,0,84.479s6.533,14.59,14.59,14.59h468.231v313.863
H29.179V220.47h385.849c8.056,0,14.59-6.533,14.59-14.59v-61.291c0-8.056-6.533-14.59-14.59-14.59H14.59
c-8.056,0-14.59,6.533-14.59,14.59v282.933c0,8.056,6.533,14.59,14.59,14.59H497.41c8.056,0,14.59-6.533,14.59-14.59V84.479
C512,76.421,505.467,69.889,497.41,69.889z M29.179,159.178h371.259v32.112H29.179v-16.05V159.178z"/>
<path style="fill:#2D527C;" d="M146.046,263.874c-1.876-6.234-9.009-10.262-18.172-10.262c-9.161,0-16.294,4.028-18.177,10.286
l-28.04,96.011l-0.039,0.15c-0.187,0.779-0.379,1.586-0.379,2.4c0,8.051,10.48,12.992,17.992,12.992
c7.541,0,9.817-4.206,10.513-6.748l4.558-17.492h27.297l4.567,17.528c0.686,2.507,2.962,6.713,10.502,6.713
c7.512,0,17.993-4.943,17.993-12.992c0-0.804-0.188-1.6-0.379-2.403L146.046,263.874z M135.102,326.486h-14.454l7.226-27.704
L135.102,326.486z"/>
<path style="fill:#2D527C;" d="M240.249,288.167c-7.309,0-10.745,1.544-15.471,10.205l-8.433,15.386l-8.428-15.382
c-4.729-8.666-8.166-10.21-15.475-10.21c-5.187,0-11.241,3.04-11.241,11.608v67.406c0,4.867,4.622,8.267,11.241,8.267
c6.619,0,11.243-3.399,11.243-8.267v-31.018l4.609,8.812c1.584,3.172,4.295,4.847,7.841,4.847c3.496,0,6.368-1.673,8.093-4.723
l4.783-8.529v30.609c0,4.867,4.622,8.267,11.241,8.267c6.619,0,11.241-3.399,11.241-8.267v-67.404
C251.49,292.724,247.078,288.167,240.249,288.167z"/>
<path style="fill:#2D527C;" d="M350.53,281.796c5.89,0,10.004-5.665,10.004-13.776c0-7.928-4.114-13.465-10.004-13.465h-53.667
c-6.543,0-13.169,3.598-13.169,10.472v99.948c0,6.875,6.625,10.473,13.169,10.473h53.667c5.89,0,10.004-5.537,10.004-13.465
c0-8.113-4.114-13.779-10.004-13.779h-37.482v-20.92h19.695c6.567,0,10.003-6.139,10.003-12.204
c0-7.254-4.208-12.518-10.003-12.518h-19.695v-20.766h37.482V281.796z"/>
<path style="fill:#2D527C;" d="M429.362,359.961l-17.525-28.237l16.788-28.088c1.005-1.647,1.494-3.274,1.494-4.975
c0-6.387-7.231-11.16-13.697-11.16c-3.469,0-6.023,1.494-7.572,4.408l-11.637,21.19l-11.616-21.157
c-1.568-2.949-4.123-4.443-7.593-4.443c-6.466,0-13.697,4.772-13.697,11.16c0,1.701,0.489,3.328,1.481,4.953l16.803,28.111
l-17.578,28.324c-0.906,1.582-1.347,3.076-1.347,4.569c0,6.911,8.436,11.498,14.016,11.498c2.861,0,5.209-1.161,6.49-3.268
l13.04-23.123l12.994,23.039c1.094,2.098,3.538,3.353,6.535,3.353c5.581,0,14.016-4.587,14.016-11.498
C430.762,363.121,430.321,361.627,429.362,359.961z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

56
static/icons/anchor.svg Normal file
View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<polygon style="fill:#CEE8FA;" points="45.897,298.881 105.824,208.933 165.75,298.881 "/>
<polygon style="fill:#CEE8FA;" points="346.224,298.881 406.15,208.933 466.076,298.881 "/>
<rect x="230.391" y="125.019" style="fill:#CEE8FA;" width="51.205" height="275.154"/>
</g>
<path style="fill:#2D527C;" d="M477.529,290.261l-59.47-89.262c-2.653-3.984-7.124-6.377-11.909-6.377s-9.256,2.393-11.909,6.377
l-59.926,89.948c-2.925,4.392-3.197,10.038-0.707,14.689c2.49,4.652,7.339,7.556,12.616,7.556h19.577v24.808
c0,7.904,6.407,14.311,14.311,14.311c7.904,0,14.311-6.407,14.311-14.311v-24.808h26.737v37.003
c0,50.197-40.839,91.035-91.035,91.035H181.851c-50.198,0-91.035-40.839-91.035-91.035v-37.003h26.737v24.808
c0,42.18,34.316,76.495,76.495,76.495h36.338h51.205h36.338c7.904,0,14.311-6.407,14.311-14.311s-6.407-14.311-14.311-14.311
h-22.027V139.337h14.06c7.904,0,14.311-6.407,14.311-14.311s-6.407-14.311-14.311-14.311h-28.371h-25.603
c-22.633,0-41.048-18.414-41.048-41.048s18.414-41.046,41.046-41.046s41.048,18.414,41.048,41.048
c0,7.904,6.407,14.311,14.311,14.311s14.311-6.407,14.311-14.311C325.656,31.253,294.403,0,255.987,0s-69.669,31.253-69.669,69.669
c0,15.416,5.042,29.672,13.551,41.225c-6.883,1.038-12.167,6.959-12.167,14.133c0,7.904,6.407,14.311,14.311,14.311h14.06v246.536
h-22.027c-26.398,0-47.874-21.476-47.874-47.874v-24.809h19.577c0.01,0,0.019,0,0.029,0c7.904,0,14.311-6.407,14.311-14.311
c0-3.237-1.075-6.222-2.886-8.619l-59.47-89.262c-2.653-3.984-7.124-6.377-11.909-6.377s-9.256,2.393-11.909,6.377l-59.926,89.948
c-2.925,4.392-3.197,10.038-0.707,14.689c2.49,4.652,7.339,7.556,12.616,7.556h16.296v37.003
c0,65.978,53.678,119.657,119.657,119.657h59.826v27.837c0,7.904,6.407,14.311,14.311,14.311s14.311-6.407,14.311-14.311v-27.837
h59.826c65.98,0,119.657-53.677,119.657-119.657v-37.003h16.296c0.01,0,0.019,0,0.029,0c7.904,0,14.311-6.407,14.311-14.311
C480.416,295.644,479.342,292.659,477.529,290.261z M244.696,139.337h22.584v246.536h-22.584V139.337z M105.824,234.744
l33.195,49.826H72.628L105.824,234.744z M372.955,284.57l33.195-49.826l33.195,49.826H372.955z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

52
static/icons/app-shop.svg Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="180.983,232.44 331.017,321.456 180.983,410.47 "/>
<g>
<path style="fill:#2D527C;" d="M180.982,425.938c-2.64,0-5.281-0.676-7.654-2.028c-4.831-2.75-7.814-7.883-7.814-13.44V232.44
c0-5.559,2.984-10.69,7.814-13.44c4.828-2.752,10.764-2.701,15.547,0.138l150.035,89.016c4.696,2.787,7.575,7.842,7.575,13.304
s-2.879,10.517-7.575,13.304l-150.035,89.016C186.444,425.216,183.714,425.938,180.982,425.938z M196.45,259.602v123.706
l104.252-61.852L196.45,259.602z"/>
<path style="fill:#2D527C;" d="M420.59,512H91.411c-15.928,0-30.802-6.302-41.882-17.743c-11.081-11.442-16.9-26.511-16.388-42.431
l12.715-395.4C46.873,24.785,72.468,0,104.125,0h191.576c8.542,0,15.468,6.927,15.468,15.468s-6.927,15.468-15.468,15.468H104.125
c-14.859,0-26.873,11.634-27.351,26.485L64.06,452.82c-0.24,7.471,2.492,14.545,7.692,19.915c5.2,5.371,12.181,8.328,19.657,8.328
h329.179c7.476,0,14.458-2.957,19.657-8.328c5.2-5.371,7.932-12.443,7.692-19.915l-12.715-395.4
c-0.476-14.851-12.491-26.485-27.348-26.485h-17.303c-8.542,0-15.468-6.927-15.468-15.468S382.031,0,390.572,0h17.303
c31.657,0,57.252,24.785,58.27,56.426l12.715,395.4c0.512,15.918-5.309,30.987-16.388,42.431
C451.391,505.698,436.517,512,420.59,512z"/>
<path style="fill:#2D527C;" d="M255.999,187.2c-60.556,0-109.824-49.268-109.824-109.824c0-8.542,6.925-15.468,15.468-15.468
s15.468,6.927,15.468,15.468c0,43.498,35.388,78.888,78.887,78.888c43.498,0,78.888-35.39,78.888-78.888
c0-8.542,6.927-15.468,15.468-15.468s15.468,6.927,15.468,15.468C365.823,137.934,316.557,187.2,255.999,187.2z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

68
static/icons/apple.svg Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 511.997 511.997" style="enable-background:new 0 0 511.997 511.997;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M458.26,469.518H123.382c-21.466,0-42.087-10.164-55.163-27.19l-57.619-75.029
c-1.944-2.531-2.989-5.636-2.97-8.825l0.329-57.017c0.046-7.909,6.526-14.307,14.392-14.271c17.05,0.044,41.489,0.122,61.077,0.24
c8.656,0.052,15.987,0.111,21.171,0.174c11.034,0.135,14,0.171,18.239,4.408l84.467,84.467c4.728,4.728,11.014,7.332,17.7,7.332
c6.686,0,12.972-2.604,17.699-7.331l0.155-0.155c9.731-9.731,9.731-25.611-0.029-35.371l-78.995-77.732
c-9.47-9.317-22.002-14.449-35.288-14.449H14.354C6.426,248.768,0,242.34,0,234.414s6.426-14.354,14.354-14.354h114.192
c20.867,0,40.551,8.06,55.424,22.696l79.077,77.814c21.035,21.034,21.035,55.127,0.083,76.081l-0.155,0.154
c-10.121,10.123-23.616,15.712-37.972,15.712c-14.354,0-27.849-5.591-38.001-15.741l-80.442-80.441
c-9.055-0.131-30.674-0.278-69.978-0.399l-0.218,37.782l54.62,71.125c7.678,9.999,19.788,15.968,32.394,15.968h334.878
c13.802,0,25.031-11.228,25.031-25.031V415.6c0-13.802-11.228-25.031-25.031-25.031H319.712c-7.928,0-14.354-6.428-14.354-14.354
c0-7.927,6.427-14.354,14.354-14.354h138.545c29.632,0,53.74,24.107,53.74,53.74v0.179C512,445.411,487.892,469.518,458.26,469.518
z"/>
<path style="fill:#2D527C;" d="M380.414,148.828c-6.648,0-12.615-4.645-14.034-11.41c-1.082-5.165-9.841-51.192,15.796-76.831
c25.64-25.638,71.667-16.882,76.832-15.797c5.577,1.17,9.933,5.526,11.102,11.102c0.164,0.784,3.992,19.417,1.212,39.324
c-1.097,7.852-8.354,13.33-16.202,12.231c-7.852-1.098-13.328-8.351-12.231-16.203c0.999-7.15,0.834-14.242,0.392-19.679
c-12.705-1.021-31.308-0.175-40.805,9.323c-12.564,12.564-9.917,41.493-8,50.637c1.628,7.759-3.343,15.368-11.102,16.996
C382.382,148.729,381.39,148.828,380.414,148.828z"/>
</g>
<path style="fill:#CEE8FA;" d="M403.832,136.227c-7.48,3.146-18.028,6.271-24.114,6.271c-6.086,0-16.634-3.125-24.114-6.271
c-16.743-7.044-81.469,0-72.168,60.373c9.302,60.373,11.32,115.714,53.977,115.714c24.704,0,33.72-7.888,42.304-7.888
c8.584,0,17.6,7.888,42.304,7.888c42.657,0,44.677-55.342,53.977-115.714C485.301,136.227,420.574,129.183,403.832,136.227z"/>
<path style="fill:#2D527C;" d="M422.022,326.67c-17.88,0-28.996-3.719-36.353-6.18c-2.254-0.754-5.058-1.692-5.956-1.708
c-0.891,0.017-3.696,0.955-5.95,1.708c-7.357,2.46-18.471,6.18-36.351,6.18c-23.108,0-39.95-12.362-50.06-36.745
c-7.815-18.847-11.318-43.686-15.028-69.984c-0.973-6.9-1.979-14.034-3.078-21.157c-4.222-27.407,4.908-44.836,13.311-54.634
c19.499-22.735,49.751-24.5,58.559-24.5c5.519,0,13.477,0.58,20.05,3.345c7.212,3.035,15.563,5.149,18.547,5.149
s11.336-2.114,18.546-5.147c6.574-2.766,14.534-3.346,20.052-3.346c8.806,0,39.058,1.766,58.559,24.502
c8.403,9.797,17.534,27.228,13.311,54.633c-1.097,7.123-2.103,14.255-3.076,21.154c-3.709,26.297-7.213,51.138-15.028,69.985
C461.973,314.306,445.13,326.67,422.022,326.67z M379.718,290.072c5.521,0,10.371,1.622,15.061,3.192
c6.58,2.201,14.039,4.695,27.243,4.695c22.716,0,28.616-24.995,36.661-82.031c0.986-6.988,2.004-14.212,3.129-21.514
c2.057-13.347-0.208-23.968-6.729-31.571c-9.17-10.69-25.538-14.484-36.767-14.484c-4.988,0-8.016,0.719-8.918,1.1
c-8.106,3.411-20.745,7.394-29.679,7.394s-21.573-3.983-29.681-7.395c-0.903-0.379-3.93-1.098-8.917-1.098
c-11.231,0-27.599,3.794-36.767,14.484c-6.521,7.602-8.785,18.223-6.729,31.571c1.125,7.304,2.145,14.53,3.131,21.517
c8.046,57.033,13.944,82.03,36.661,82.03c13.205,0,20.663-2.495,27.243-4.695C369.347,291.694,374.197,290.072,379.718,290.072z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<path style="fill:#2D527C;" d="M280.102,426.151H141.889c-19.536,0-35.431-15.894-35.431-35.431v-46.683
c0-8.424,6.829-15.253,15.253-15.253s15.253,6.829,15.253,15.253v46.683c0,2.715,2.209,4.925,4.925,4.925h138.213
c8.424,0,15.253,6.829,15.253,15.253S288.526,426.151,280.102,426.151z"/>
<path style="fill:#CEE8FA;" d="M409.442,353.599l-61.375,59.72v66.123c0,8.035,9.701,12.074,15.404,6.415l133.276-132.257
L363.471,221.344c-5.703-5.66-15.404-1.62-15.404,6.415v66.123L409.442,353.599z"/>
<g>
<path style="fill:#2D527C;" d="M507.491,342.772L374.214,210.516c-4.593-4.558-10.645-7.067-17.045-7.067
c-13.429,0-24.354,10.904-24.354,24.309v53.289H234.74c-8.424,0-15.253,6.829-15.253,15.253s6.829,15.253,15.253,15.253h109.62
l43.212,42.046l-50.139,48.786c-2.951,2.871-4.616,6.814-4.616,10.932v66.123c0,13.403,10.926,24.307,24.354,24.309h0.002
c6.399,0,12.452-2.511,17.045-7.067l133.276-132.257c2.886-2.863,4.509-6.762,4.509-10.827
C512.002,349.534,510.377,345.635,507.491,342.772z M363.32,464.517v-44.758l56.758-55.228c2.951-2.871,4.616-6.813,4.616-10.932
c0-4.118-1.664-8.06-4.616-10.932l-56.758-55.228v-44.758l111.772,110.918L363.32,464.517z"/>
<path style="fill:#2D527C;" d="M390.288,183.216c-8.424,0-15.253-6.829-15.253-15.253V121.28c0-2.715-2.209-4.925-4.925-4.925
H231.897c-8.424,0-15.253-6.829-15.253-15.253s6.829-15.253,15.253-15.253H370.11c19.536,0,35.431,15.894,35.431,35.431v46.683
C405.541,176.387,398.712,183.216,390.288,183.216z"/>
</g>
<path style="fill:#CEE8FA;" d="M102.558,158.403l61.375-59.72V32.561c0-8.035-9.701-12.074-15.404-6.415L15.253,158.403
l133.276,132.257c5.703,5.66,15.404,1.62,15.404-6.415v-66.123L102.558,158.403z"/>
<path style="fill:#2D527C;" d="M277.26,200.45H167.64l-43.212-42.046l50.139-48.787c2.951-2.871,4.616-6.813,4.616-10.932V32.561
c0-13.404-10.926-24.309-24.354-24.309c-6.4,0-12.452,2.511-17.045,7.067L4.509,147.576C1.623,150.439,0,154.338,0,158.403
s1.623,7.964,4.509,10.827l133.277,132.257c4.591,4.556,10.645,7.067,17.045,7.067l0,0c6.222,0,12.155-2.341,16.707-6.594
c4.931-4.608,7.648-10.9,7.648-17.715v-53.289h98.075c8.424,0,15.253-6.829,15.253-15.253S285.685,200.45,277.26,200.45z
M148.68,269.32L36.908,158.403L148.68,47.485v44.758l-56.758,55.228c-2.951,2.871-4.616,6.813-4.616,10.932
s1.664,8.06,4.616,10.932l56.758,55.228V269.32z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="169.112" y="13.902" style="fill:#CEE8FA;" width="173.757" height="159.841"/>
<path style="fill:#2D527C;" d="M401.034,239.204c-7.676,0-13.902,6.224-13.902,13.902v25.122H124.864v-36.25
c0-29.958,24.374-54.332,54.332-54.332h153.605h10.079c7.676,0,13.902-6.224,13.902-13.902V13.902C356.781,6.224,350.556,0,342.88,0
H169.118c-7.678,0-13.902,6.224-13.902,13.902v149.52c-33.627,10.286-58.155,41.606-58.155,78.555v50.152
c0,7.678,6.224,13.902,13.902,13.902h92.631l38.772,194.781C243.66,507.317,249.369,512,256,512c6.632,0,12.339-4.683,13.635-11.188
l26.587-133.568c1.499-7.531-3.389-14.85-10.92-16.348c-7.531-1.501-14.85,3.391-16.348,10.92l-12.952,65.072l-24.057-120.858
h169.093c7.677,0,13.902-6.224,13.902-13.902v-39.023C414.936,245.428,408.711,239.204,401.034,239.204z M183.019,27.803h145.959
v132.039H183.019V27.803z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

68
static/icons/avi.svg Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M438.557,512H19.785c-8.216,0-14.876-6.66-14.876-14.876V256.916c0-8.216,6.66-14.876,14.876-14.876
s14.876,6.66,14.876,14.876v225.332h389.021v-32.833c0-8.216,6.661-14.876,14.876-14.876c8.215,0,14.876,6.66,14.876,14.876v47.709
C453.433,505.34,446.772,512,438.557,512z"/>
<g>
<polygon style="fill:#CEE8FA;" points="19.785,177.122 19.785,172.332 175.581,14.876 175.581,177.122 "/>
<rect x="196.154" y="219.435" style="fill:#CEE8FA;" width="296.061" height="163.65"/>
</g>
<g>
<path style="fill:#2D527C;" d="M492.215,204.559h-38.782V14.876C453.433,6.66,446.772,0,438.557,0H175.581
c-0.18,0-0.357,0.021-0.537,0.027c-0.173,0.006-0.344,0.013-0.515,0.025c-0.64,0.046-1.273,0.118-1.897,0.244
c-0.022,0.004-0.043,0.012-0.065,0.016c-0.608,0.126-1.203,0.3-1.79,0.501c-0.158,0.054-0.315,0.11-0.472,0.171
c-0.58,0.22-1.151,0.466-1.7,0.757c-0.022,0.012-0.046,0.021-0.068,0.033c-0.567,0.305-1.107,0.66-1.632,1.038
c-0.135,0.098-0.269,0.198-0.402,0.3c-0.521,0.402-1.028,0.827-1.495,1.3L9.21,161.868c-0.35,0.353-0.678,0.721-0.988,1.104
c-0.207,0.254-0.388,0.521-0.576,0.784c-0.092,0.131-0.195,0.256-0.283,0.388c-0.214,0.324-0.405,0.66-0.592,0.998
c-0.046,0.083-0.1,0.162-0.143,0.245c-0.183,0.347-0.342,0.701-0.495,1.056c-0.037,0.086-0.082,0.168-0.116,0.256
c-0.14,0.341-0.256,0.689-0.369,1.038c-0.036,0.112-0.08,0.219-0.113,0.33c-0.095,0.321-0.17,0.646-0.242,0.971
c-0.033,0.147-0.076,0.293-0.106,0.442c-0.058,0.3-0.095,0.604-0.134,0.907c-0.024,0.177-0.057,0.351-0.074,0.53
c-0.028,0.303-0.034,0.607-0.045,0.912c-0.006,0.167-0.024,0.332-0.024,0.498v4.792c0,8.216,6.66,14.876,14.876,14.876h155.796
c8.216,0,14.876-6.66,14.876-14.876V29.752h233.225v174.807H196.156c-8.216,0-14.876,6.66-14.876,14.876v163.644
c0,8.216,6.66,14.876,14.876,14.876h296.059c8.215,0,14.876-6.66,14.876-14.876V219.435
C507.091,211.219,500.43,204.559,492.215,204.559z M50.691,162.246L160.705,51.06v111.186H50.691z M477.339,368.203H211.032
V234.311h266.308V368.203z"/>
<path style="fill:#2D527C;" d="M251.536,339.854c0-0.393,0.131-0.916,0.262-1.44l24.349-79.853c1.44-4.58,7.331-6.806,13.353-6.806
s11.913,2.225,13.353,6.806l24.48,79.853c0.131,0.524,0.262,1.047,0.262,1.44c0,4.844-7.462,8.378-13.091,8.378
c-3.273,0-5.891-1.047-6.676-3.796l-4.449-16.364h-27.622l-4.449,16.364c-0.785,2.749-3.404,3.796-6.676,3.796
C258.996,348.232,251.536,344.698,251.536,339.854z M299.054,312.363l-9.556-35.082l-9.556,35.082H299.054z"/>
<path style="fill:#2D527C;" d="M323.927,262.359c-0.131-0.525-0.262-1.047-0.262-1.441c0-4.844,7.462-8.378,13.091-8.378
c3.273,0,5.891,1.047,6.676,3.796l18.326,67.156l18.195-67.156c0.785-2.749,3.404-3.796,6.676-3.796
c5.629,0,13.091,3.535,13.091,8.378c0,0.394-0.131,0.916-0.262,1.441l-24.349,79.851c-1.44,4.582-7.331,6.807-13.353,6.807
c-6.022,0-11.913-2.225-13.353-6.807L323.927,262.359z"/>
<path style="fill:#2D527C;" d="M407.315,258.693c0-4.318,5.105-6.153,10.209-6.153c5.104,0,10.211,1.833,10.211,6.153v83.256
c0,4.189-5.107,6.284-10.211,6.284c-5.104,0-10.209-2.093-10.209-6.284V258.693z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

55
static/icons/backward.svg Normal file
View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="322.985,339.239 189.008,256 322.985,172.761 "/>
<g>
<path style="fill:#2D527C;" d="M330.04,160.072c-4.607-2.561-10.24-2.422-14.717,0.357l-111.799,69.458v-58.097
c0-8.017-6.5-14.518-14.518-14.518c-8.018,0-14.518,6.501-14.518,14.518v168.417c0,8.017,6.5,14.518,14.518,14.518
c8.018,0,14.518-6.501,14.518-14.518v-58.097l111.799,69.458c2.342,1.455,5,2.186,7.663,2.186c2.426,0,4.858-0.608,7.054-1.829
c4.607-2.562,7.464-7.417,7.464-12.689V172.761C337.503,167.49,334.646,162.633,330.04,160.072z M308.467,313.128L216.518,256
l91.95-57.128V313.128L308.467,313.128z"/>
<path style="fill:#2D527C;" d="M255.996,512c-68.38,0-132.667-26.629-181.02-74.98c-5.669-5.669-5.669-14.862,0-20.533
c5.669-5.668,14.862-5.668,20.533,0c42.867,42.867,99.863,66.476,160.488,66.476s117.62-23.609,160.488-66.476
S482.961,316.624,482.961,256s-23.608-117.62-66.476-160.488s-99.863-66.476-160.488-66.476S138.376,52.645,95.509,95.512
c-57.256,57.256-79.728,141.45-58.651,219.728c2.085,7.742-2.501,15.708-10.244,17.795c-7.74,2.083-15.708-2.501-17.793-10.245
c-11.501-42.712-11.755-87.935-0.735-130.784c11.355-44.152,34.486-84.62,66.892-117.025C123.328,26.629,187.617,0,255.996,0
s132.667,26.629,181.02,74.98c48.352,48.352,74.98,112.639,74.98,181.02s-26.629,132.668-74.98,181.02
C388.663,485.371,324.376,512,255.996,512z"/>
<path style="fill:#2D527C;" d="M255.996,452.028c-108.091,0-196.028-87.937-196.028-196.028S147.906,59.972,255.996,59.972
c69.93,0,135.07,37.687,169.997,98.355c4,6.948,1.61,15.825-5.338,19.824c-6.947,4.004-15.825,1.611-19.826-5.338
c-29.76-51.693-85.258-83.807-144.833-83.807c-92.08,0-166.992,74.913-166.992,166.992S163.918,422.99,255.996,422.99
s166.992-74.913,166.992-166.992c0-8.017,6.5-14.518,14.518-14.518c8.018,0,14.518,6.501,14.518,14.518
C452.024,364.091,364.086,452.028,255.996,452.028z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.002 512.002" style="enable-background:new 0 0 512.002 512.002;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="405.579,379.726 232.077,256.002 405.579,132.276 "/>
<g>
<path style="fill:#2D527C;" d="M405.582,395.462c-3.218,0-6.42-0.985-9.137-2.923L222.941,268.813
c-4.14-2.953-6.599-7.725-6.599-12.811c0-5.085,2.459-9.857,6.599-12.811l173.504-123.726c4.796-3.419,11.1-3.875,16.34-1.177
c5.238,2.697,8.529,8.095,8.529,13.988v247.452c0,5.892-3.292,11.289-8.529,13.988
C410.515,394.884,408.043,395.462,405.582,395.462z M259.177,256.002l130.669,93.181V162.821L259.177,256.002z"/>
<path style="fill:#2D527C;" d="M471.362,116.544c-8.688,0-15.734,7.044-15.734,15.734v334.916L132.344,256.002L479.967,28.909
c7.275-4.753,9.321-14.502,4.568-21.778c-4.752-7.274-14.502-9.321-21.778-4.568L94.969,242.829
c-0.024,0.016-0.042,0.035-0.066,0.049c-0.5,0.33-0.98,0.689-1.438,1.073c-0.11,0.093-0.211,0.194-0.318,0.29
c-0.337,0.299-0.662,0.609-0.972,0.936c-0.135,0.143-0.266,0.288-0.395,0.436c-0.283,0.321-0.551,0.653-0.807,0.996
c-0.099,0.132-0.201,0.26-0.296,0.395c-0.68,0.974-1.251,2.027-1.699,3.144c-0.05,0.126-0.093,0.253-0.14,0.381
c-0.162,0.436-0.305,0.878-0.428,1.331c-0.046,0.165-0.088,0.329-0.127,0.496c-0.104,0.437-0.187,0.881-0.253,1.331
c-0.024,0.162-0.055,0.323-0.074,0.486c-0.069,0.601-0.115,1.21-0.115,1.83v205.119H56.371V52.032H87.84v119.58
c0,8.69,7.044,15.734,15.734,15.734c8.69,0,15.734-7.044,15.734-15.734V36.298c0-8.69-7.044-15.734-15.734-15.734H40.637
c-8.69,0-15.734,7.044-15.734,15.734v440.557c0,8.69,7.044,15.734,15.734,15.734h62.937c8.69,0,15.734-7.044,15.734-15.734V285.074
L462.759,509.44c2.606,1.702,5.601,2.562,8.607,2.562c2.569,0,5.147-0.629,7.488-1.898c5.081-2.749,8.245-8.061,8.245-13.837
v-363.99C487.096,123.588,480.052,116.544,471.362,116.544z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M496.106,512H15.896c-8.779,0-15.895-7.116-15.895-15.895s7.116-15.895,15.895-15.895h464.313V31.79
H31.791v367.035c0,8.779-7.116,15.895-15.895,15.895s-15.895-7.116-15.895-15.895V15.895C0.001,7.116,7.119,0,15.896,0h480.208
c8.779,0,15.895,7.116,15.895,15.895v480.21C512.001,504.884,504.884,512,496.106,512z"/>
<path style="fill:#2D527C;" d="M426.081,441.975H85.923c-8.779,0-15.895-7.116-15.895-15.895V85.92
c0-8.779,7.116-15.895,15.895-15.895h340.158c8.779,0,15.895,7.116,15.895,15.895s-7.116,15.895-15.895,15.895H101.818v308.369
h308.368V154.829c0-8.779,7.116-15.895,15.895-15.895s15.895,7.116,15.895,15.895V426.08
C441.976,434.859,434.86,441.975,426.081,441.975z"/>
</g>
<polygon style="fill:#CEE8FA;" points="329.345,347.136 182.658,256.001 329.345,164.865 "/>
<path style="fill:#2D527C;" d="M337.069,150.973c-5.045-2.807-11.211-2.653-16.113,0.391l-122.404,76.048v-63.608
c0-8.779-7.116-15.895-15.895-15.895s-15.895,7.116-15.895,15.895v184.394c0,8.779,7.116,15.895,15.895,15.895
s15.895-7.116,15.895-15.895V284.59l122.404,76.048c2.564,1.593,5.474,2.394,8.39,2.394c2.656,0,5.319-0.666,7.723-2.003
c5.044-2.804,8.172-8.121,8.172-13.892V164.865C345.241,159.094,342.112,153.777,337.069,150.973z M313.45,318.547l-100.673-62.546
l100.673-62.546L313.45,318.547L313.45,318.547z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M373.643,506.2c-2.891,0-5.814-0.813-8.415-2.517L6.949,268.862C2.611,266.02,0,261.186,0,256
s2.611-10.02,6.949-12.862L365.23,8.32c7.106-4.658,16.635-2.67,21.29,4.432c4.655,7.103,2.671,16.635-4.432,21.29L43.431,256
l338.658,221.959c7.103,4.655,9.087,14.187,4.432,21.29C383.569,503.753,378.655,506.2,373.643,506.2z"/>
<path style="fill:#2D527C;" d="M496.622,506.198c-2.945,0-5.879-0.844-8.43-2.516L129.91,268.862
c-4.336-2.842-6.949-7.678-6.949-12.862c0-5.184,2.611-10.02,6.949-12.862L488.192,8.32c7.106-4.658,16.637-2.67,21.29,4.432
c4.656,7.103,2.671,16.635-4.432,21.29L166.393,256l314.85,206.355V135.082c0-8.493,6.886-15.378,15.378-15.378
s15.378,6.885,15.378,15.378v355.739c0,5.65-3.099,10.844-8.069,13.529C501.643,505.586,499.129,506.198,496.622,506.198z"/>
</g>
<polygon style="fill:#CEE8FA;" points="432.33,376.922 262.758,256 432.33,135.08 "/>
<path style="fill:#2D527C;" d="M432.332,392.3c-3.145,0-6.274-0.963-8.93-2.857l-169.57-120.922
c-4.047-2.886-6.449-7.55-6.449-12.52c0-4.97,2.404-9.634,6.449-12.52l169.57-120.92c4.687-3.342,10.85-3.787,15.97-1.15
c5.119,2.636,8.336,7.912,8.336,13.671v241.843c0,5.759-3.217,11.033-8.336,13.671C437.153,391.737,434.737,392.3,432.332,392.3z
M289.245,256l127.708,91.069V164.933L289.245,256z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M459.798,334.814c-3.191,0-6.412-0.974-9.188-2.994c-6.981-5.081-8.521-14.86-3.44-21.841
c4.004-5.502,4.67-15.323,5.375-25.721c0.63-9.288,1.28-18.892,4.32-28.246c2.92-8.999,7.947-16.922,12.806-24.585
c5.689-8.969,11.063-17.44,11.063-24.791c0-7.353-5.375-15.823-11.063-24.791c-4.859-7.662-9.885-15.586-12.807-24.588
c-3.036-9.352-3.686-18.956-4.318-28.245c-0.704-10.397-1.371-20.22-5.375-25.72c-4.084-5.613-13.272-9.284-22.999-13.169
c-8.607-3.438-17.505-6.993-25.387-12.729c-7.778-5.661-13.836-12.972-19.694-20.043c-6.727-8.117-13.079-15.786-19.829-17.976
c-6.252-2.029-15.69,0.344-25.679,2.856c-9.152,2.303-18.619,4.682-28.67,4.682c-10.053,0-19.518-2.38-28.671-4.682
c-9.99-2.512-19.43-4.887-25.679-2.856c-6.746,2.19-13.1,9.857-19.826,17.974c-5.86,7.071-11.918,14.383-19.699,20.046
c-6.979,5.078-16.76,3.541-21.841-3.443c-5.08-6.981-3.54-16.76,3.443-21.841c4.604-3.352,9.177-8.869,14.019-14.712
c8.843-10.673,18.867-22.771,34.246-27.765c14.807-4.806,29.764-1.047,42.961,2.273c7.645,1.921,14.865,3.738,21.045,3.738
c6.179,0,13.398-1.817,21.043-3.738c13.197-3.319,28.155-7.079,42.961-2.273c15.379,4.994,25.404,17.093,34.248,27.766
c4.84,5.842,9.413,11.36,14.017,14.712c4.715,3.432,11.452,6.124,18.587,8.974c12.792,5.111,27.291,10.903,36.681,23.808
c9.309,12.79,10.361,28.31,11.289,42.004c0.525,7.729,1.019,15.031,2.861,20.704c1.704,5.244,5.477,11.194,9.473,17.493
c7.465,11.768,15.928,25.108,15.928,41.54s-8.461,29.77-15.928,41.54c-3.996,6.299-7.77,12.248-9.471,17.491
c-1.843,5.674-2.337,12.976-2.863,20.706c-0.929,13.694-1.981,29.215-11.291,42.007
C469.389,332.583,464.626,334.814,459.798,334.814z"/>
<path style="fill:#CEE8FA;" d="M398.54,305.355c0,19.785-18.837,36.352-24.635,54.205c-6.008,18.503-0.713,42.937-11.921,58.339
c-11.321,15.554-36.271,18.017-51.827,29.337c-15.401,11.208-25.391,34.242-43.894,40.248c-17.853,5.797-39.392-6.776-59.176-6.776
s-41.324,12.571-59.176,6.776c-18.503-6.008-28.493-29.04-43.894-40.248c-15.554-11.321-40.506-13.783-51.827-29.337
c-11.208-15.401-5.914-39.836-11.921-58.339c-5.797-17.851-24.635-34.42-24.635-54.205s18.837-36.352,24.635-54.205
c6.008-18.503,0.713-42.937,11.921-58.339c11.321-15.554,36.271-18.017,51.827-29.337c15.401-11.208,25.391-34.242,43.894-40.248
c17.853-5.797,39.392,6.776,59.176,6.776s41.324-12.571,59.176-6.776c18.503,6.008,28.493,29.04,43.894,40.248
c15.554,11.321,40.506,13.783,51.827,29.337c11.208,15.401,5.914,39.836,11.921,58.339
C379.703,269.003,398.54,285.57,398.54,305.355z"/>
<g>
<path style="fill:#2D527C;" d="M158.298,504.647c-5.489,0-10.465-0.749-15.215-2.292c-15.379-4.994-25.404-17.093-34.246-27.766
c-4.842-5.842-9.413-11.36-14.019-14.712c-4.715-3.432-11.452-6.124-18.586-8.974C63.438,445.793,48.939,440,39.549,427.096
c-9.309-12.79-10.361-28.31-11.289-42.004c-0.525-7.729-1.019-15.031-2.861-20.704c-1.704-5.244-5.477-11.194-9.473-17.493
C8.461,335.127,0,321.788,0,305.355c0-16.433,8.461-29.772,15.928-41.543c3.996-6.297,7.769-12.248,9.473-17.491
c1.842-5.674,2.336-12.975,2.861-20.704c0.929-13.694,1.981-29.215,11.291-42.007c9.388-12.901,23.887-18.695,36.681-23.806
c7.134-2.85,13.871-5.541,18.586-8.972c4.604-3.352,9.177-8.869,14.019-14.712c8.843-10.675,18.867-22.773,34.248-27.766
c4.748-1.542,9.726-2.292,15.214-2.292c9.601,0,18.825,2.32,27.744,4.564c7.645,1.921,14.865,3.738,21.045,3.738
c6.18,0,13.4-1.817,21.045-3.74c8.921-2.243,18.145-4.564,27.746-4.564c5.489,0,10.464,0.749,15.212,2.29
c15.379,4.994,25.404,17.093,34.248,27.766c4.842,5.842,9.413,11.361,14.019,14.713c4.717,3.432,11.454,6.124,18.587,8.974
c12.792,5.111,27.291,10.903,36.681,23.804c9.309,12.792,10.362,28.312,11.289,42.006c0.525,7.729,1.019,15.031,2.861,20.706
c1.704,5.244,5.477,11.192,9.473,17.491c7.465,11.769,15.928,25.11,15.928,41.543c0,16.433-8.461,29.772-15.928,41.543
c-3.996,6.297-7.769,12.248-9.473,17.491c-1.842,5.672-2.336,12.973-2.859,20.703c-0.929,13.694-1.981,29.215-11.289,42.007
c-9.391,12.903-23.889,18.695-36.682,23.806c-7.134,2.85-13.871,5.541-18.586,8.974c-4.606,3.352-9.179,8.871-14.021,14.713
c-8.843,10.673-18.867,22.771-34.246,27.765c-4.748,1.542-9.726,2.292-15.214,2.292c-9.599,0-18.825-2.32-27.746-4.564
c-7.645-1.921-14.865-3.738-21.045-3.738c-6.179,0-13.398,1.817-21.043,3.738C177.123,502.327,167.899,504.647,158.298,504.647z
M158.298,137.333c-2.159,0-3.977,0.25-5.558,0.763c-6.749,2.19-13.103,9.859-19.83,17.976
c-5.858,7.071-11.916,14.383-19.694,20.043c-7.881,5.735-16.778,9.29-25.385,12.728c-9.729,3.887-18.917,7.558-22.999,13.169
c-4.005,5.503-4.671,15.323-5.375,25.721c-0.63,9.288-1.28,18.892-4.32,28.246c-2.922,8.999-7.947,16.922-12.806,24.583
c-5.688,8.971-11.063,17.443-11.063,24.794s5.375,15.823,11.063,24.791c4.859,7.662,9.885,15.586,12.807,24.588
c3.036,9.352,3.687,18.956,4.318,28.244c0.704,10.397,1.37,20.22,5.375,25.72c4.084,5.613,13.272,9.283,22.999,13.169
c8.607,3.438,17.505,6.993,25.387,12.729c7.778,5.661,13.836,12.972,19.694,20.043c6.727,8.117,13.079,15.786,19.829,17.976
c1.582,0.514,3.4,0.763,5.559,0.763c5.727,0,12.718-1.759,20.119-3.619c9.152-2.301,18.619-4.682,28.67-4.682
c10.053,0,19.518,2.38,28.671,4.682c7.401,1.86,14.391,3.619,20.119,3.619c2.159,0,3.977-0.25,5.559-0.763
c6.746-2.19,13.1-9.857,19.826-17.975c5.86-7.071,11.918-14.383,19.699-20.046c7.88-5.735,16.777-9.29,25.383-12.728
c9.729-3.887,18.917-7.556,23.001-13.169c4.004-5.502,4.668-15.323,5.375-25.723c0.628-9.287,1.28-18.891,4.317-28.243
c2.924-9.001,7.948-16.924,12.807-24.585c5.689-8.969,11.063-17.441,11.063-24.794s-5.375-15.825-11.063-24.794
c-4.859-7.661-9.884-15.582-12.806-24.583c-3.038-9.354-3.688-18.959-4.32-28.248c-0.704-10.397-1.37-20.22-5.375-25.72
c-4.082-5.611-13.27-9.282-22.999-13.169c-8.607-3.438-17.504-6.993-25.385-12.728c-7.78-5.661-13.838-12.973-19.697-20.044
c-6.726-8.117-13.078-15.786-19.827-17.976c-1.582-0.514-3.4-0.763-5.558-0.763c-5.728,0-12.718,1.759-20.119,3.619
c-9.152,2.303-18.619,4.684-28.671,4.684s-19.518-2.381-28.671-4.684C171.016,139.09,164.026,137.333,158.298,137.333z"/>
<path style="fill:#2D527C;" d="M147.11,265.631c-18.853,0-29.236,10.032-29.236,28.248v29.086
c0,18.217,10.384,28.249,29.236,28.249c18.65,0,29.347-10.297,29.347-28.249v-29.086
C176.455,275.927,165.759,265.631,147.11,265.631z M139.687,293.88c0-7.65,3.966-8.632,7.423-8.632
c3.233,0,7.533,0.894,7.533,8.632v29.086c0,7.736-4.299,8.632-7.533,8.632c-3.457,0-7.423-0.98-7.423-8.632V293.88z"/>
<path style="fill:#2D527C;" d="M230.637,265.631h-38.086c-5.685,0-9.809,3.202-9.809,7.614v69.698
c0,4.484,4.485,7.614,10.908,7.614c6.422,0,10.906-3.13,10.906-7.614V316.97h14.23c4.925,0,7.503-4.437,7.503-8.821
c0-5.239-3.157-9.041-7.503-9.041h-14.23v-13.86h26.084c4.418,0,7.504-4.079,7.504-9.918
C238.141,269.619,235.057,265.631,230.637,265.631z"/>
<path style="fill:#2D527C;" d="M287.167,265.631H249.08c-5.685,0-9.809,3.202-9.809,7.614v69.698c0,4.484,4.485,7.614,10.908,7.614
c6.422,0,10.906-3.13,10.906-7.614V316.97h14.23c4.925,0,7.503-4.437,7.503-8.821c0-5.239-3.157-9.041-7.503-9.041h-14.23v-13.86
h26.084c4.418,0,7.504-4.079,7.504-9.918C294.671,269.619,291.585,265.631,287.167,265.631z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

104
static/icons/badge-new.svg Normal file
View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M459.796,334.815c-3.191,0-6.412-0.974-9.188-2.994c-6.981-5.081-8.521-14.86-3.44-21.841
c4.004-5.502,4.67-15.323,5.375-25.721c0.63-9.288,1.28-18.892,4.32-28.246c2.922-8.999,7.947-16.922,12.806-24.583
c5.689-8.969,11.063-17.441,11.063-24.794c0-7.353-5.375-15.823-11.063-24.791c-4.859-7.662-9.885-15.586-12.807-24.588
c-3.036-9.352-3.687-18.956-4.318-28.245c-0.704-10.397-1.371-20.22-5.375-25.72c-4.084-5.613-13.272-9.284-22.999-13.169
c-8.607-3.438-17.505-6.993-25.387-12.729c-7.778-5.661-13.836-12.972-19.694-20.043c-6.727-8.117-13.079-15.786-19.829-17.976
c-6.25-2.029-15.689,0.344-25.679,2.856c-9.152,2.303-18.619,4.682-28.67,4.682c-10.053,0-19.518-2.38-28.671-4.682
c-9.992-2.512-19.43-4.887-25.677-2.856c-6.748,2.19-13.101,9.859-19.827,17.976c-5.858,7.07-11.916,14.382-19.696,20.043
c-6.982,5.08-16.76,3.54-21.841-3.441s-3.54-16.76,3.441-21.841c4.604-3.352,9.177-8.869,14.017-14.712
c8.844-10.675,18.869-22.773,34.248-27.766c14.807-4.806,29.764-1.046,42.961,2.273c7.645,1.921,14.865,3.738,21.045,3.738
c6.179,0,13.398-1.817,21.043-3.738c13.197-3.319,28.155-7.079,42.961-2.273c15.379,4.994,25.404,17.093,34.248,27.766
c4.84,5.842,9.413,11.36,14.017,14.712c4.715,3.432,11.452,6.124,18.587,8.974c12.792,5.111,27.291,10.903,36.681,23.808
c9.309,12.79,10.361,28.31,11.289,42.004c0.525,7.729,1.019,15.031,2.861,20.704c1.704,5.244,5.477,11.194,9.473,17.493
c7.465,11.768,15.928,25.108,15.928,41.54s-8.461,29.772-15.928,41.543c-3.996,6.299-7.769,12.248-9.473,17.491
c-1.842,5.674-2.336,12.975-2.861,20.704c-0.929,13.694-1.981,29.215-11.291,42.007
C469.389,332.584,464.626,334.815,459.796,334.815z"/>
<path style="fill:#CEE8FA;" d="M398.54,305.356c0,19.785-18.837,36.352-24.635,54.205c-6.008,18.503-0.713,42.937-11.921,58.339
c-11.321,15.554-36.271,18.017-51.827,29.337c-15.401,11.208-25.391,34.242-43.894,40.248c-17.853,5.797-39.392-6.776-59.176-6.776
s-41.324,12.571-59.176,6.776c-18.503-6.008-28.493-29.04-43.894-40.248c-15.554-11.321-40.506-13.783-51.827-29.337
c-11.208-15.401-5.914-39.836-11.921-58.339c-5.797-17.852-24.635-34.42-24.635-54.205s18.837-36.352,24.635-54.205
c6.008-18.503,0.713-42.937,11.921-58.339c11.321-15.554,36.271-18.017,51.827-29.337c15.401-11.208,25.391-34.242,43.894-40.248
c17.853-5.797,39.392,6.776,59.176,6.776s41.324-12.571,59.176-6.776c18.503,6.008,28.493,29.04,43.894,40.248
c15.554,11.321,40.506,13.783,51.827,29.337c11.208,15.401,5.914,39.836,11.921,58.339
C379.703,269.003,398.54,285.571,398.54,305.356z"/>
<g>
<path style="fill:#2D527C;" d="M158.298,504.648c-5.489,0-10.467-0.749-15.215-2.292c-15.379-4.994-25.404-17.093-34.248-27.766
c-4.84-5.842-9.413-11.361-14.018-14.712c-4.717-3.432-11.454-6.124-18.587-8.974c-12.792-5.111-27.291-10.903-36.681-23.806
c-9.309-12.79-10.361-28.312-11.289-42.006c-0.524-7.729-1.019-15.031-2.861-20.704c-1.703-5.244-5.477-11.192-9.471-17.491
C8.461,335.129,0,321.789,0,305.356s8.461-29.772,15.926-41.541c3.996-6.297,7.769-12.248,9.471-17.491
c1.843-5.675,2.337-12.976,2.863-20.707c0.929-13.692,1.981-29.214,11.289-42.004c9.39-12.903,23.889-18.695,36.681-23.806
c7.134-2.85,13.872-5.541,18.587-8.972c4.604-3.352,9.177-8.869,14.017-14.712c8.844-10.675,18.869-22.773,34.248-27.766
c4.75-1.542,9.726-2.292,15.215-2.292c9.599,0,18.825,2.32,27.746,4.564c7.643,1.921,14.863,3.738,21.043,3.738
c6.18,0,13.4-1.817,21.043-3.74c8.922-2.243,18.146-4.564,27.746-4.564c5.489,0,10.464,0.749,15.212,2.29
c15.379,4.994,25.404,17.093,34.248,27.766c4.842,5.842,9.413,11.361,14.019,14.713c4.717,3.432,11.454,6.124,18.587,8.974
c12.792,5.111,27.291,10.903,36.681,23.804c9.309,12.792,10.362,28.312,11.289,42.006c0.525,7.729,1.019,15.031,2.861,20.706
c1.704,5.244,5.477,11.192,9.473,17.491c7.465,11.769,15.928,25.11,15.928,41.543c0,16.433-8.461,29.772-15.928,41.543
c-3.996,6.297-7.769,12.248-9.473,17.491c-1.842,5.672-2.336,12.973-2.859,20.703c-0.929,13.694-1.981,29.215-11.289,42.007
c-9.391,12.903-23.889,18.695-36.682,23.806c-7.134,2.85-13.871,5.541-18.586,8.974c-4.606,3.352-9.179,8.871-14.021,14.713
c-8.843,10.673-18.867,22.771-34.246,27.765c-4.748,1.542-9.726,2.292-15.214,2.292c-9.599,0-18.825-2.32-27.746-4.564
c-7.644-1.921-14.863-3.738-21.043-3.738c-6.18,0-13.4,1.817-21.045,3.738C177.121,502.328,167.897,504.648,158.298,504.648z
M158.296,137.333c-2.159,0-3.977,0.25-5.559,0.763c-6.748,2.19-13.101,9.859-19.827,17.976
c-5.858,7.07-11.916,14.382-19.696,20.043c-7.881,5.735-16.778,9.29-25.385,12.728c-9.728,3.887-18.917,7.558-22.999,13.169
c-4.004,5.502-4.67,15.323-5.375,25.721c-0.63,9.288-1.28,18.892-4.318,28.248c-2.922,8.999-7.947,16.922-12.806,24.583
c-5.689,8.969-11.063,17.441-11.063,24.793c0,7.353,5.373,15.825,11.063,24.794c4.859,7.661,9.885,15.582,12.807,24.583
c3.036,9.354,3.688,18.958,4.318,28.246c0.705,10.398,1.37,20.22,5.375,25.721c4.084,5.611,13.272,9.282,22.999,13.169
c8.607,3.438,17.505,6.993,25.385,12.729c7.78,5.661,13.838,12.973,19.696,20.044c6.726,8.117,13.079,15.784,19.827,17.976
c1.582,0.514,3.399,0.763,5.558,0.763c5.728,0,12.718-1.759,20.118-3.619c9.154-2.301,18.62-4.682,28.671-4.682
s19.518,2.38,28.671,4.682c7.401,1.86,14.391,3.619,20.119,3.619c2.159,0,3.977-0.25,5.559-0.763
c6.746-2.19,13.1-9.857,19.826-17.974c5.86-7.071,11.918-14.383,19.699-20.046c7.88-5.735,16.777-9.29,25.383-12.728
c9.729-3.887,18.917-7.556,23.001-13.169c4.004-5.502,4.668-15.323,5.375-25.723c0.628-9.287,1.28-18.891,4.317-28.243
c2.924-9.001,7.948-16.924,12.807-24.585c5.689-8.969,11.063-17.441,11.063-24.794c0-7.353-5.375-15.825-11.063-24.794
c-4.859-7.661-9.884-15.582-12.806-24.583c-3.038-9.354-3.688-18.959-4.32-28.248c-0.704-10.397-1.37-20.22-5.375-25.72
c-4.082-5.611-13.27-9.282-22.999-13.169c-8.607-3.438-17.504-6.993-25.385-12.728c-7.78-5.661-13.838-12.973-19.697-20.044
c-6.726-8.117-13.078-15.786-19.827-17.976c-1.582-0.514-3.399-0.763-5.558-0.763c-5.728,0-12.718,1.759-20.119,3.619
c-9.154,2.303-18.62,4.684-28.671,4.684c-10.053,0-19.518-2.381-28.671-4.684C171.015,139.091,164.025,137.333,158.296,137.333z"/>
<path style="fill:#2D527C;" d="M150.775,268.863c-6.161,0-10.301,2.869-10.301,7.139v25.16l-12.101-23.079
c-4.137-7.947-6.938-9.219-13.811-9.219c-6.161,0-10.301,2.91-10.301,7.242v64.775c0,4.263,4.235,7.242,10.301,7.242
c6.066,0,10.301-2.978,10.301-7.242v-25.54l14.976,27.27c2.652,4.884,7.237,5.509,10.936,5.509c6.066,0,10.301-2.978,10.301-7.242
v-64.875C161.076,271.732,156.936,268.863,150.775,268.863z"/>
<path style="fill:#2D527C;" d="M213.002,287.427c4.202,0,7.139-3.858,7.139-9.384c0-5.405-2.936-9.18-7.139-9.18h-36.315
c-5.378,0-9.282,3.046-9.282,7.242v64.775c0,4.196,3.904,7.242,9.282,7.242h36.315c4.202,0,7.139-3.776,7.139-9.18
c0-5.525-2.936-9.384-7.139-9.384h-24.993v-12.651h12.956c4.687,0,7.139-4.207,7.139-8.364c0-4.964-3.002-8.567-7.139-8.567
h-12.956v-12.549h24.993V287.427z"/>
<path style="fill:#2D527C;" d="M308.721,268.863c-3.827,0-6.508,1.698-7.348,4.637l-12.99,43.838l-6.036-25.829
c-0.924-4.157-5.658-6.019-9.939-6.019c-4.281,0-9.016,1.86-9.934,5.994l-6.043,25.854l-12.983-43.816
c-0.846-2.961-3.525-4.659-7.356-4.659c-5.281,0-12.648,3.299-12.648,8.669c0,0.683,0.12,1.454,0.319,2.053l20.291,62.2
c1.327,4.22,6.329,6.946,12.745,6.946c5.455,0,11.464-2.204,12.595-7.148l3.014-13.736l3.021,13.756
c1.124,4.923,7.132,7.128,12.589,7.128c6.393,0,11.269-2.639,12.736-6.923l20.295-62.208c0.203-0.61,0.325-1.384,0.325-2.07
C321.371,272.162,314.004,268.863,308.721,268.863z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M380.927,512H131.073c-23.011,0-41.731-18.72-41.731-41.731c0-23.011,18.722-41.732,41.731-41.732
h24.323c6.42-27.894,31.454-48.757,61.269-48.757h78.67c7.791,0,14.109,6.317,14.109,14.109s-6.318,14.109-14.109,14.109h-78.67
c-19.105,0-34.648,15.543-34.648,34.648c0,7.793-6.318,14.109-14.109,14.109h-36.835c-7.451,0-13.512,6.061-13.512,13.514
c0,7.451,6.061,13.512,13.512,13.512h249.855c7.451,0,13.512-6.061,13.512-13.512c0-7.451-6.061-13.514-13.512-13.514h-36.835
c-7.791,0-14.109-6.317-14.109-14.109s6.318-14.109,14.109-14.109h36.835c23.011,0,41.731,18.722,41.731,41.732
C422.658,493.28,403.938,512,380.927,512z"/>
<path style="fill:#2D527C;" d="M256,406.589c-7.791,0-14.109-6.317-14.109-14.109V47.502c0-7.793,6.318-14.109,14.109-14.109
c7.791,0,14.109,6.317,14.109,14.109v344.978C270.109,400.272,263.793,406.589,256,406.589z"/>
<path style="fill:#2D527C;" d="M408.612,99.706H103.388c-7.791,0-14.109-6.317-14.109-14.109s6.318-14.109,14.109-14.109h305.225
c7.791,0,14.109,6.317,14.109,14.109S416.405,99.706,408.612,99.706z"/>
</g>
<path style="fill:#CEE8FA;" d="M39.296,285.156v2.399c0,35.397,28.695,64.091,64.091,64.091l0,0
c35.397,0,64.091-28.695,64.091-64.091v-2.399H39.296z"/>
<g>
<path style="fill:#2D527C;" d="M103.388,365.755c-43.121,0-78.202-35.081-78.202-78.202v-2.399c0-7.793,6.318-14.109,14.109-14.109
H167.48c7.791,0,14.109,6.317,14.109,14.109v2.399C181.589,330.675,146.508,365.755,103.388,365.755z M54.79,299.265
c5.285,21.929,25.071,38.271,48.598,38.271s43.313-16.343,48.598-38.271H54.79z"/>
<path style="fill:#2D527C;" d="M42.287,247.86c-1.793,0-3.615-0.343-5.374-1.069c-7.203-2.97-10.636-11.218-7.666-18.422
L90.344,80.217c2.178-5.282,7.33-8.731,13.044-8.731l0,0c5.716,0,10.864,3.447,13.044,8.731l61.094,148.151
c2.97,7.204-0.461,15.452-7.666,18.422c-7.208,2.971-15.452-0.461-18.424-7.664l-48.049-116.521l-48.05,116.521
C53.091,244.569,47.831,247.86,42.287,247.86z"/>
</g>
<path style="fill:#CEE8FA;" d="M344.521,285.156v2.399c0,35.397,28.695,64.091,64.091,64.091l0,0
c35.397,0,64.093-28.695,64.093-64.091v-2.399H344.521z"/>
<g>
<path style="fill:#2D527C;" d="M408.612,365.755c-43.121,0-78.202-35.081-78.202-78.202v-2.399c0-7.793,6.318-14.109,14.109-14.109
h128.185c7.791,0,14.109,6.317,14.109,14.109v2.399C486.814,330.675,451.733,365.755,408.612,365.755z M360.015,299.265
c5.285,21.929,25.071,38.271,48.598,38.271c23.527,0,43.313-16.343,48.598-38.271H360.015z"/>
<path style="fill:#2D527C;" d="M469.714,247.86c-5.546,0-10.803-3.289-13.05-8.734l-48.052-116.521l-48.05,116.521
c-2.971,7.204-11.222,10.636-18.424,7.664c-7.203-2.97-10.636-11.218-7.666-18.422l61.094-148.151
c2.18-5.283,7.328-8.731,13.044-8.731c5.714,0,10.864,3.447,13.044,8.731l61.096,148.151c2.97,7.204-0.461,15.452-7.666,18.422
C473.329,247.515,471.506,247.86,469.714,247.86z"/>
</g>
<circle style="fill:#CEE8FA;" cx="255.999" cy="47.502" r="33.392"/>
<path style="fill:#2D527C;" d="M256,95.002c-26.192,0-47.502-21.309-47.502-47.502S229.808,0,256,0s47.502,21.309,47.502,47.502
S282.194,95.002,256,95.002z M256,28.218c-10.633,0-19.283,8.65-19.283,19.283s8.65,19.283,19.283,19.283s19.283-8.65,19.283-19.283
C275.283,36.869,266.634,28.218,256,28.218z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<g>
<path style="fill:#CEE8FA;" d="M114.321,349.682H89.605c-41.211,0-74.619-33.408-74.619-74.619v-19.277h173.954v19.277
C188.939,316.273,155.531,349.682,114.321,349.682z"/>
<path style="fill:#CEE8FA;" d="M422.395,349.682H397.68c-41.211,0-74.619-33.408-74.619-74.619v-19.277h173.954v19.277
C497.014,316.273,463.606,349.682,422.395,349.682z"/>
</g>
<path style="fill:#2D527C;" d="M511.51,254.686c-0.013-0.17-0.019-0.34-0.038-0.509c-0.032-0.29-0.083-0.578-0.132-0.867
c-0.033-0.194-0.06-0.388-0.1-0.578c-0.051-0.237-0.119-0.473-0.182-0.709c-0.063-0.236-0.122-0.473-0.196-0.704
c-0.06-0.185-0.134-0.367-0.202-0.551c-0.102-0.274-0.202-0.55-0.319-0.818c-0.068-0.153-0.147-0.304-0.22-0.457
c-0.138-0.285-0.278-0.57-0.434-0.845c-0.025-0.045-0.044-0.092-0.07-0.137l-43.488-75.325c-4.017-6.958-12.918-9.347-19.876-5.326
c-6.96,4.019-9.344,12.917-5.326,19.876l30.887,53.499H348.265l70.175-121.546h79.01c8.036,0,14.551-6.516,14.551-14.551
s-6.514-14.551-14.551-14.551H310.848c-5.209-19.616-20.682-35.089-40.298-40.297V21.008c0-8.035-6.514-14.551-14.551-14.551
c-8.036,0-14.551,6.516-14.551,14.551v41.937c0,8.035,6.514,14.551,14.551,14.551c0.01,0,0.019-0.001,0.028-0.001
c15.232,0.016,27.619,12.41,27.619,27.645c0,15.24-12.394,27.638-27.632,27.646c-0.004,0-0.009-0.001-0.015-0.001
s-0.009,0.001-0.015,0.001c-15.237-0.009-27.632-12.406-27.632-27.646c0-8.035-6.514-14.551-14.551-14.551H14.551
C6.514,90.588,0,97.103,0,105.138s6.514,14.551,14.551,14.551h62.209L2.385,248.511c-0.026,0.045-0.045,0.092-0.07,0.137
c-0.156,0.275-0.295,0.56-0.434,0.845c-0.073,0.153-0.153,0.304-0.22,0.457c-0.118,0.268-0.218,0.543-0.319,0.818
c-0.068,0.185-0.141,0.367-0.202,0.551c-0.074,0.231-0.134,0.469-0.196,0.704c-0.064,0.236-0.131,0.471-0.182,0.709
c-0.041,0.191-0.068,0.386-0.1,0.578c-0.049,0.288-0.1,0.576-0.132,0.867c-0.019,0.167-0.025,0.338-0.038,0.509
c-0.023,0.316-0.045,0.632-0.048,0.946c0,0.051-0.007,0.1-0.007,0.153v19.277c0,49.168,40.001,89.17,89.168,89.17h24.716
c49.168,0,89.17-40.001,89.17-89.17v-19.277c0-0.052-0.007-0.102-0.007-0.153c-0.003-0.316-0.025-0.632-0.048-0.946
c-0.013-0.17-0.019-0.34-0.038-0.509c-0.032-0.29-0.083-0.578-0.132-0.867c-0.033-0.194-0.06-0.389-0.1-0.578
c-0.051-0.237-0.119-0.473-0.182-0.709c-0.063-0.236-0.122-0.473-0.196-0.704c-0.06-0.185-0.134-0.367-0.202-0.551
c-0.102-0.274-0.202-0.55-0.319-0.818c-0.068-0.153-0.147-0.304-0.22-0.457c-0.138-0.285-0.278-0.57-0.434-0.845
c-0.025-0.045-0.044-0.092-0.07-0.137l-45.288-78.44c-4.017-6.96-12.918-9.347-19.876-5.326c-6.96,4.019-9.344,12.917-5.326,19.876
l32.687,56.614H40.189l70.175-121.546h90.789c5.209,19.616,20.682,35.089,40.298,40.297v245.159H114.133
c-8.036,0-14.551,6.516-14.551,14.551v71.298c0,8.035,6.514,14.551,14.551,14.551h283.739c8.036,0,14.551-6.516,14.551-14.551
v-71.298c0-8.035-6.514-14.551-14.551-14.551H326.33c-8.036,0-14.551,6.516-14.551,14.551c0,8.035,6.514,14.551,14.551,14.551
h56.991v42.197H128.684v-42.197h127.319c8.036,0,14.551-6.516,14.551-14.551v-259.71c19.616-5.208,35.089-20.681,40.298-40.297
h73.987l-74.376,128.822c-0.026,0.045-0.045,0.092-0.07,0.137c-0.156,0.275-0.295,0.56-0.434,0.845
c-0.073,0.153-0.153,0.304-0.22,0.457c-0.118,0.268-0.218,0.543-0.319,0.818c-0.068,0.185-0.141,0.367-0.202,0.551
c-0.074,0.231-0.134,0.469-0.196,0.704c-0.064,0.236-0.131,0.471-0.182,0.709c-0.041,0.191-0.068,0.386-0.1,0.578
c-0.049,0.288-0.1,0.576-0.132,0.867c-0.019,0.167-0.025,0.338-0.038,0.509c-0.023,0.316-0.045,0.632-0.048,0.946
c0,0.051-0.007,0.1-0.007,0.153v19.277c0,49.168,40.001,89.17,89.17,89.17H422.4c49.168,0,89.168-40.001,89.168-89.17v-19.277
c0-0.052-0.007-0.102-0.007-0.153C511.553,255.318,511.533,255.002,511.51,254.686z M174.389,275.063
c0,33.122-26.946,60.068-60.068,60.068H89.605c-33.122,0-60.067-26.948-60.067-60.068v-4.726h144.851V275.063L174.389,275.063z
M482.464,275.063c0,33.122-26.946,60.068-60.067,60.068h-24.716c-33.122,0-60.068-26.948-60.068-60.068v-4.726h144.851V275.063z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M361.195,511.889c-8.148,0-14.754-6.605-14.754-14.754V398.68c0-8.148,6.605-14.754,14.754-14.754
s14.754,6.605,14.754,14.754v98.456C375.949,505.283,369.344,511.889,361.195,511.889z"/>
<path style="fill:#2D527C;" d="M406.213,386.704c-5.856,0-11.396-3.508-13.703-9.277l-10.58-26.45h-41.468l-10.58,26.45
c-3.026,7.566-11.611,11.244-19.178,8.218c-7.564-3.026-11.245-11.613-8.218-19.178l14.29-35.723
c2.241-5.6,7.666-9.274,13.699-9.274h61.445c6.033,0,11.458,3.672,13.699,9.274l14.29,35.723
c3.026,7.566-0.654,16.152-8.218,19.178C409.891,386.364,408.037,386.704,406.213,386.704z"/>
<path style="fill:#2D527C;" d="M164.176,512c-8.148,0-14.754-6.605-14.754-14.754v-98.568c0-8.148,6.605-14.754,14.754-14.754
c8.148,0,14.754,6.605,14.754,14.754v98.568C178.93,505.395,172.325,512,164.176,512z"/>
</g>
<path style="fill:#CEE8FA;" d="M190.504,332.191c42.032-25.285,119.615-83.826,119.615-171.494
c0-80.602-65.341-145.943-145.943-145.943S18.231,80.095,18.231,160.699c0,87.666,77.584,146.208,119.615,171.494h52.657V332.191z"
/>
<g>
<path style="fill:#2D527C;" d="M190.505,346.945h-52.659c-2.679,0-5.31-0.73-7.606-2.111
C82.899,316.353,3.477,254.56,3.477,160.699C3.477,72.089,75.567,0,164.176,0s160.697,72.089,160.697,160.699
c0,93.863-79.422,155.654-126.764,184.135C195.814,346.216,193.185,346.945,190.505,346.945z M141.988,317.437h44.376
c42.294-26.107,109.002-79.539,109.002-156.739c0-72.339-58.852-131.191-131.19-131.191S32.986,88.36,32.986,160.699
C32.985,237.899,99.694,291.331,141.988,317.437z"/>
<path style="fill:#2D527C;" d="M213.732,386.704c-5.856,0-11.396-3.508-13.703-9.277l-12.021-30.053h-47.663l-12.021,30.053
c-3.026,7.566-11.616,11.242-19.178,8.218c-7.564-3.026-11.245-11.613-8.218-19.178l15.732-39.326
c2.241-5.6,7.666-9.274,13.699-9.274h67.641c6.033,0,11.458,3.672,13.699,9.274l15.732,39.326
c3.026,7.566-0.654,16.152-8.218,19.178C217.412,386.364,215.557,386.704,213.732,386.704z"/>
<path style="fill:#2D527C;" d="M385.112,350.587H337.28c-2.679,0-5.31-0.73-7.606-2.111c-7.93-4.771-15.727-9.907-23.174-15.266
c-6.614-4.76-8.117-13.979-3.358-20.593c4.758-6.614,13.978-8.117,20.593-3.358c5.708,4.107,11.645,8.073,17.693,11.821h39.54
c38.188-23.635,98.049-71.747,98.049-141.028c0-64.966-52.854-117.818-117.82-117.818c-3.362,0-6.835,0.164-10.621,0.503
c-8.113,0.724-15.283-5.266-16.009-13.382c-0.724-8.116,5.266-15.283,13.382-16.009c4.667-0.418,9-0.62,13.247-0.62
c81.237,0,147.327,66.091,147.327,147.326c0,85.928-72.556,142.406-115.805,168.424
C390.421,349.857,387.792,350.587,385.112,350.587z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="154.82" y="241.571" style="fill:#CEE8FA;" width="83.153" height="165.545"/>
<path style="fill:#2D527C;" d="M237.965,227.736h-83.15c-7.641,0-13.838,6.197-13.838,13.838v151.712H85.501V97.623h55.475v83.165
c0,7.641,6.197,13.838,13.838,13.838c7.641,0,13.838-6.197,13.838-13.838V83.785c0-7.641-6.197-13.838-13.838-13.838H71.663
c-7.641,0-13.838,6.197-13.838,13.838v323.339c0,7.641,6.197,13.838,13.838,13.838h166.302c7.641,0,13.838-6.197,13.838-13.838
v-165.55C251.803,233.932,245.606,227.736,237.965,227.736z M224.127,393.286h-55.474V255.412h55.474V393.286z"/>
<rect x="398.702" y="241.571" style="fill:#CEE8FA;" width="83.153" height="165.545"/>
<g>
<path style="fill:#2D527C;" d="M481.861,227.736h-69.313v-35.72c0-7.641-6.197-13.838-13.838-13.838s-13.838,6.197-13.838,13.838
v49.558v151.712h-55.475V97.623h55.475v36.18c0,7.641,6.197,13.838,13.838,13.838s13.838-6.197,13.838-13.838V83.785
c0-7.641-6.197-13.838-13.838-13.838h-83.152c-7.641,0-13.838,6.197-13.838,13.838v323.339c0,7.641,6.197,13.838,13.838,13.838
h166.303c7.641,0,13.838-6.197,13.838-13.838v-165.55C495.699,233.932,489.502,227.736,481.861,227.736z M468.023,393.286h-55.475
V255.412h55.475V393.286z"/>
<path style="fill:#2D527C;" d="M498.162,480.152H13.838C6.197,480.152,0,473.955,0,466.314V45.686
c0-7.641,6.197-13.838,13.838-13.838s13.838,6.197,13.838,13.838v406.791h470.486c7.641,0,13.838,6.197,13.838,13.838
C512,473.956,505.805,480.152,498.162,480.152z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="104.878" y="279.557" style="fill:#CEE8FA;" width="165.545" height="83.153"/>
<path style="fill:#2D527C;" d="M428.214,348.873h-97.003c-7.643,0-13.838,6.197-13.838,13.838s6.195,13.838,13.838,13.838h83.165
v55.475H118.715v-55.475h151.711c7.643,0,13.838-6.197,13.838-13.838v-83.152c0-7.641-6.195-13.838-13.838-13.838H104.877
c-7.643,0-13.838,6.197-13.838,13.838v83.152v83.152c0,7.641,6.195,13.838,13.838,13.838h323.339
c7.643,0,13.838-6.197,13.838-13.838v-83.152C442.052,355.069,435.857,348.873,428.214,348.873z M118.715,293.397h137.873v55.475
H118.715V293.397z"/>
<rect x="104.878" y="35.666" style="fill:#CEE8FA;" width="165.545" height="83.153"/>
<g>
<path style="fill:#2D527C;" d="M428.214,104.978h-50.018c-7.643,0-13.838,6.197-13.838,13.838s6.195,13.838,13.838,13.838h36.18
v55.475H118.715v-55.475h151.711h49.558c7.643,0,13.838-6.197,13.838-13.838s-6.195-13.838-13.838-13.838h-35.72V35.665
c0-7.641-6.195-13.838-13.838-13.838H104.877c-7.643,0-13.838,6.197-13.838,13.838v83.152v83.152
c0,7.641,6.195,13.838,13.838,13.838h323.339c7.643,0,13.838-6.197,13.838-13.838v-83.152
C442.052,111.175,435.857,104.978,428.214,104.978z M118.715,49.503h137.873v55.475H118.715V49.503z"/>
<path style="fill:#2D527C;" d="M466.313,512H45.686c-7.643,0-13.838-6.197-13.838-13.838V13.838C31.848,6.197,38.043,0,45.686,0
s13.838,6.197,13.838,13.838v470.486h406.791c7.643,0,13.838,6.197,13.838,13.838S473.956,512,466.313,512z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<polygon style="fill:#CEE8FA;" points="125.816,131.034 125.816,464.851 212.432,464.851 212.432,212.094 "/>
<polygon style="fill:#CEE8FA;" points="299.046,464.851 385.661,464.851 385.661,267.362 299.046,116.421 "/>
</g>
<path style="fill:#2D527C;" d="M498.526,451.377h-11.795V262.742c0-7.44-6.034-13.474-13.474-13.474
c-7.44,0-13.474,6.034-13.474,13.474v188.636h-59.667V271.148l84.043-115.76c0.243-0.335,0.465-0.682,0.675-1.035
c0.074-0.125,0.143-0.253,0.213-0.381c0.125-0.228,0.245-0.458,0.357-0.693c0.074-0.155,0.147-0.309,0.214-0.466
c0.094-0.218,0.179-0.441,0.261-0.663c0.059-0.159,0.123-0.315,0.175-0.476c0.116-0.352,0.218-0.709,0.305-1.068
c0.038-0.16,0.063-0.321,0.096-0.481c0.047-0.232,0.092-0.464,0.127-0.699c0.026-0.172,0.043-0.345,0.062-0.517
c0.026-0.23,0.044-0.462,0.057-0.694c0.009-0.166,0.016-0.33,0.019-0.494c0.001-0.084,0.009-0.166,0.009-0.249V47.15
c0-7.44-6.034-13.474-13.474-13.474h-86.614c-0.166,0-0.326,0.019-0.49,0.026c-0.164-0.005-0.325-0.026-0.49-0.026
c-7.44,0-13.474,6.034-13.474,13.474v169.661l-60.192-104.897c-0.059-0.205-0.121-0.41-0.189-0.612
c-0.05-0.147-0.101-0.292-0.156-0.438c-0.086-0.23-0.182-0.458-0.282-0.683c-0.061-0.14-0.119-0.28-0.186-0.419
c-0.159-0.33-0.33-0.653-0.515-0.969c-0.071-0.123-0.154-0.241-0.229-0.362c-0.139-0.22-0.28-0.435-0.431-0.645
c-0.089-0.125-0.182-0.249-0.276-0.372c-0.178-0.23-0.364-0.455-0.555-0.675c-0.07-0.081-0.137-0.163-0.21-0.243
c-0.279-0.303-0.571-0.593-0.877-0.87c-0.015-0.013-0.028-0.03-0.043-0.043c-0.043-0.038-0.089-0.07-0.132-0.108
c-0.253-0.222-0.515-0.434-0.785-0.637c-0.101-0.077-0.202-0.151-0.306-0.224c-0.245-0.174-0.497-0.337-0.755-0.494
c-0.098-0.061-0.195-0.127-0.295-0.185c-0.326-0.187-0.662-0.362-1.005-0.524c-0.152-0.071-0.306-0.132-0.459-0.197
c-0.147-0.062-0.291-0.131-0.442-0.189c-0.066-0.026-0.133-0.043-0.199-0.067c-0.171-0.062-0.342-0.119-0.515-0.174
c-0.217-0.07-0.434-0.132-0.652-0.19c-0.159-0.042-0.317-0.086-0.477-0.123c-0.311-0.07-0.625-0.128-0.939-0.176
c-0.067-0.009-0.135-0.027-0.202-0.035c-0.385-0.053-0.771-0.085-1.156-0.104c-0.119-0.005-0.238-0.005-0.357-0.008
c-0.28-0.007-0.56-0.005-0.839,0.005c-0.131,0.004-0.261,0.011-0.392,0.02c-0.287,0.02-0.574,0.05-0.858,0.088
c-0.108,0.015-0.216,0.024-0.323,0.04c-0.376,0.059-0.749,0.133-1.118,0.224c-0.117,0.028-0.23,0.066-0.348,0.097
c-0.257,0.07-0.512,0.146-0.765,0.23c-0.155,0.053-0.307,0.109-0.459,0.167c-0.22,0.084-0.435,0.172-0.649,0.267
c-0.15,0.066-0.298,0.129-0.446,0.199c-0.294,0.143-0.583,0.296-0.866,0.461c-0.131,0.075-0.259,0.156-0.387,0.237
c-0.248,0.155-0.492,0.315-0.73,0.486c-0.121,0.088-0.24,0.181-0.36,0.272c-0.217,0.167-0.428,0.341-0.635,0.521
c-0.101,0.089-0.203,0.175-0.303,0.268c-0.299,0.279-0.593,0.567-0.869,0.876l-63.115,70.307V60.624h73.141
c7.44,0,13.474-6.034,13.474-13.474s-6.034-13.474-13.474-13.474h-86.614c-7.44,0-13.474,6.034-13.474,13.474v133.88l-59.14-55.347
l-0.528-0.494V47.15c0-7.44-6.034-13.474-13.474-13.474c-0.078,0-0.152,0.011-0.229,0.012c-0.077-0.001-0.152-0.012-0.229-0.012
H38.742c-7.44,0-13.474,6.034-13.474,13.474v131.874v196.208c0,7.44,6.034,13.474,13.474,13.474s13.474-6.034,13.474-13.474V186.94
l59.667-33.258v297.694H38.742H13.474C6.034,451.376,0,457.409,0,464.85c0,7.44,6.034,13.474,13.474,13.474h485.053
c7.44,0,13.474-6.034,13.474-13.474C512,457.409,505.967,451.377,498.526,451.377z M400.117,60.624h59.667v82.472l-59.667,82.184
V60.624z M373.17,272.665v178.712h-60.65V166.973L373.17,272.665z M52.216,60.624h59.667v62.207l-59.667,33.258V60.624z
M139.29,162.097l59.141,55.347l0.528,0.494v233.438h-59.668v-289.28H139.29z M225.905,451.377V217.254l59.667-66.467v300.59
L225.905,451.377L225.905,451.377z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M15.437,433.936C6.911,433.936,0,427.024,0,418.5V31.042c0-8.524,6.911-15.437,15.437-15.437
s15.437,6.912,15.437,15.437V418.5C30.873,427.025,23.962,433.936,15.437,433.936z"/>
<path style="fill:#2D527C;" d="M73.27,355.21c-8.526,0-15.437-6.912-15.437-15.437V31.042c0-8.524,6.911-15.437,15.437-15.437
s15.437,6.912,15.437,15.437v308.731C88.706,348.299,81.795,355.21,73.27,355.21z"/>
<path style="fill:#2D527C;" d="M131.103,355.21c-8.526,0-15.437-6.912-15.437-15.437V154.508c0-8.524,6.911-15.437,15.437-15.437
s15.437,6.912,15.437,15.437v185.265C146.539,348.299,139.628,355.21,131.103,355.21z"/>
<path style="fill:#2D527C;" d="M131.103,107.276c-8.526,0-15.437-6.912-15.437-15.437V31.042c0-8.524,6.911-15.437,15.437-15.437
s15.437,6.912,15.437,15.437v60.797C146.539,100.365,139.628,107.276,131.103,107.276z"/>
<path style="fill:#2D527C;" d="M246.769,162.875c-8.526,0-15.437-6.912-15.437-15.437V31.042c0-8.524,6.911-15.437,15.437-15.437
c8.526,0,15.437,6.912,15.437,15.437v116.395C262.206,155.962,255.295,162.875,246.769,162.875z"/>
<path style="fill:#2D527C;" d="M188.936,355.21c-8.526,0-15.437-6.912-15.437-15.437V31.042c0-8.524,6.911-15.437,15.437-15.437
s15.437,6.912,15.437,15.437v308.731C204.372,348.299,197.461,355.21,188.936,355.21z"/>
</g>
<circle style="fill:#CEE8FA;" cx="356.6" cy="340.993" r="110.464"/>
<path style="fill:#2D527C;" d="M507.479,470.039l-51.618-51.618c17.255-22.031,26.644-48.999,26.644-77.424
c0-10.92-1.403-21.62-4.083-31.918c0.063-0.567,0.102-1.139,0.102-1.723V31.042c0-8.524-6.911-15.437-15.437-15.437
s-15.437,6.912-15.437,15.437v223.054c-0.675-0.707-1.328-1.428-2.021-2.121c-12.124-12.124-26.29-21.451-41.714-27.699V31.042
c0-8.524-6.911-15.437-15.437-15.437c-8.526,0-15.437,6.912-15.437,15.437v185.149c-5.409-0.701-10.89-1.091-16.435-1.091
c-12.573,0-24.864,1.834-36.568,5.369V31.042c0-8.524-6.911-15.437-15.437-15.437s-15.437,6.912-15.437,15.437V234.68
c-7.712,4.913-14.96,10.673-21.582,17.295c-1.866,1.866-3.643,3.799-5.378,5.759v-41.233c0-8.524-6.911-15.437-15.437-15.437
s-15.437,6.912-15.437,15.437v111.87c-0.412,4.169-0.624,8.382-0.624,12.627c0,33.629,13.095,65.246,36.875,89.024
s55.396,36.875,89.024,36.875c28.425,0,55.391-9.389,77.422-26.644l51.618,51.618c3.015,3.013,6.965,4.521,10.915,4.521
c3.95,0,7.902-1.508,10.915-4.521C513.507,485.842,513.507,476.067,507.479,470.039z M289.414,408.191
c-17.948-17.948-27.832-41.81-27.832-67.192c0-25.381,9.884-49.243,27.832-67.191c6.665-6.665,14.151-12.215,22.222-16.562
c0.179-0.093,0.358-0.184,0.533-0.283c13.529-7.175,28.689-10.988,44.437-10.988c9.296,0,18.382,1.338,27.054,3.901
c0.262,0.086,0.533,0.159,0.801,0.23c14.697,4.484,28.164,12.528,39.337,23.701c17.947,17.948,27.832,41.81,27.832,67.191
c0,25.382-9.884,49.244-27.832,67.192s-41.811,27.832-67.192,27.832C331.225,436.023,307.362,426.139,289.414,408.191z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CDE6F8;" points="341.053,324.996 302.362,286.306 341.053,247.615 294.765,201.33 256.075,240.019
217.385,201.33 171.098,247.615 209.788,286.306 171.098,324.996 217.385,371.283 256.075,332.593 294.765,371.283 "/>
<path style="fill:#2D527C;" d="M294.765,385.869c-3.734,0-7.466-1.425-10.314-4.272l-28.376-28.376l-28.374,28.377
c-5.698,5.695-14.931,5.695-20.63,0l-46.286-46.286c-5.696-5.696-5.696-14.933,0-20.63l28.374-28.374l-28.374-28.374
c-5.696-5.696-5.696-14.933,0-20.63l46.286-46.287c2.735-2.735,6.446-4.273,10.314-4.273c3.868,0,7.578,1.537,10.314,4.273
l28.374,28.376l28.376-28.376c2.737-2.735,6.446-4.273,10.314-4.273s7.578,1.537,10.314,4.273l46.286,46.287
c5.696,5.696,5.696,14.933,0,20.63l-28.374,28.374l28.374,28.374c5.696,5.696,5.696,14.933,0,20.63l-46.286,46.286
C302.231,384.445,298.5,385.869,294.765,385.869z M256.075,318.006c3.734,0,7.466,1.425,10.314,4.273l28.376,28.376l25.657-25.658
l-28.374-28.374c-5.696-5.696-5.696-14.933,0-20.63l28.376-28.374l-25.658-25.658l-28.376,28.376
c-2.735,2.735-6.446,4.272-10.314,4.272l0,0c-3.868,0-7.579-1.537-10.314-4.272l-28.374-28.376l-25.658,25.658l28.376,28.374
c5.696,5.696,5.696,14.933,0,20.63l-28.376,28.374l25.657,25.657l28.374-28.374C248.61,319.43,252.341,318.006,256.075,318.006z"/>
<rect x="179.418" y="14.587" style="fill:#CDE6F8;" width="153.162" height="60.611"/>
<path style="fill:#2D527C;" d="M405.133,148.865c8.055,0,14.587-6.532,14.587-14.587V75.2c0-8.055-6.532-14.587-14.587-14.587
h-57.967V14.587C347.166,6.532,340.634,0,332.579,0H179.42c-8.055,0-14.587,6.532-14.587,14.587v46.026h-57.967
c-8.055,0-14.587,6.532-14.587,14.587v422.213c0,8.055,6.532,14.587,14.587,14.587h298.268c8.055,0,14.587-6.532,14.587-14.587
V210.295c0-8.055-6.532-14.587-14.587-14.587c-8.055,0-14.587,6.532-14.587,14.587v272.531H121.453V89.787h57.967h153.159h57.967
v44.491C390.546,142.333,397.078,148.865,405.133,148.865z M194.006,60.613V29.174h123.986v31.439H194.006z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

52
static/icons/battery.svg Normal file
View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<rect x="165.153" y="283.917" style="fill:#CDE6F8;" width="181.707" height="154.366"/>
<rect x="179.371" y="14.597" style="fill:#CDE6F8;" width="153.272" height="60.655"/>
</g>
<g>
<path style="fill:#2D527C;" d="M405.239,148.606c8.062,0,14.597-6.537,14.597-14.597v-59.12c0-8.061-6.535-14.597-14.597-14.597
h-58.008V14.597C347.231,6.537,340.696,0,332.634,0H179.365c-8.062,0-14.597,6.537-14.597,14.597v45.694h-58.008
c-8.062,0-14.597,6.537-14.597,14.597v422.514c0,8.061,6.535,14.597,14.597,14.597h298.481c8.062,0,14.597-6.537,14.597-14.597
V210.08c0-8.061-6.535-14.597-14.597-14.597s-14.597,6.537-14.597,14.597v272.726H121.357V89.486h54.801
c1.033,0.232,2.103,0.365,3.207,0.365h153.269c1.104,0,2.175-0.133,3.207-0.365h54.801v44.523
C390.642,142.07,397.177,148.606,405.239,148.606z M193.962,29.195h124.074v31.097H193.962V29.195z"/>
<path style="fill:#2D527C;" d="M361.447,134.008c0-8.061-6.535-14.597-14.597-14.597H165.149c-8.062,0-14.597,6.537-14.597,14.597
v75.662c0,0.069,0.009,0.136,0.01,0.206c-0.001,0.069-0.01,0.136-0.01,0.206v73.836v1.826v152.54
c0,8.061,6.535,14.597,14.597,14.597h181.703c8.062,0,14.597-6.537,14.597-14.597V285.742v-1.826V210.08
c0-0.069-0.009-0.136-0.01-0.206c0.001-0.069,0.01-0.136,0.01-0.206v-75.661H361.447z M179.746,224.677h152.508v44.641H179.746
V224.677z M179.746,148.605h152.508v46.468H179.746V148.605z M332.253,423.685H179.746V298.513h152.508v125.172H332.253z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M318.008,85.903c-7.821,0-14.163-6.342-14.163-14.163V28.327h-95.69v43.412
c0,7.821-6.342,14.163-14.163,14.163s-14.163-6.342-14.163-14.163V14.163C179.828,6.342,186.171,0,193.992,0h124.017
c7.821,0,14.163,6.342,14.163,14.163v57.576C332.172,79.562,325.831,85.903,318.008,85.903z"/>
<path style="fill:#2D527C;" d="M352.383,512H159.618c-24.469,0-46.559-15.432-54.97-38.4c-2.358-6.439-3.555-13.209-3.555-20.122
V72.933c0-7.821,6.342-14.163,14.163-14.163h201.957c7.821,0,14.163,6.342,14.163,14.163s-6.342,14.163-14.163,14.163H129.422
v366.381c0,3.578,0.616,7.07,1.827,10.382c4.338,11.852,15.74,19.813,28.369,19.813h192.764c16.651,0,30.196-13.544,30.196-30.195
V133.706c0-7.821,6.342-14.163,14.163-14.163s14.163,6.342,14.163,14.163v319.771C410.906,485.747,384.653,512,352.383,512z"/>
</g>
<rect x="115.858" y="141.238" style="fill:#CEE8FA;" width="179.876" height="55.237"/>
<path style="fill:#2D527C;" d="M295.729,210.637H115.853c-7.821,0-14.163-6.342-14.163-14.163v-55.237
c0-7.821,6.342-14.163,14.163-14.163h179.876c7.821,0,14.163,6.342,14.163,14.163v55.237
C309.893,204.295,303.55,210.637,295.729,210.637z M130.017,182.31h151.549V155.4H130.017V182.31z"/>
<rect x="115.858" y="257.775" style="fill:#CEE8FA;" width="280.295" height="55.237"/>
<path style="fill:#2D527C;" d="M396.148,327.167H115.853c-7.821,0-14.163-6.342-14.163-14.163v-55.237
c0-7.821,6.342-14.163,14.163-14.163h280.295c7.821,0,14.163,6.342,14.163,14.163v55.237
C410.311,320.826,403.97,327.167,396.148,327.167z M130.017,298.84h251.968V271.93H130.017V298.84z"/>
<rect x="115.858" y="374.297" style="fill:#CEE8FA;" width="280.295" height="55.237"/>
<path style="fill:#2D527C;" d="M396.148,443.7H115.853c-7.821,0-14.163-6.342-14.163-14.163v-55.237
c0-7.821,6.342-14.163,14.163-14.163h280.295c7.821,0,14.163,6.342,14.163,14.163v55.237
C410.311,437.357,403.97,443.7,396.148,443.7z M130.017,415.373h251.968v-26.911H130.017V415.373z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="165.153" y="209.676" style="fill:#CDE6F8;" width="181.707" height="228.608"/>
<path style="fill:#2D527C;" d="M346.85,119.41H165.149c-8.062,0-14.597,6.537-14.597,14.597v75.662v228.613
c0,8.061,6.535,14.597,14.597,14.597h181.703c8.061,0,14.597-6.537,14.597-14.597V209.67v-75.662
C361.447,125.945,354.912,119.41,346.85,119.41z M179.746,148.605h152.508v46.468H179.746V148.605z M332.253,423.685H179.746
V224.267h152.508v199.418H332.253z"/>
<rect x="179.371" y="14.597" style="fill:#CDE6F8;" width="153.272" height="60.655"/>
<path style="fill:#2D527C;" d="M405.239,148.606c8.061,0,14.597-6.537,14.597-14.597v-59.12c0-8.061-6.537-14.597-14.597-14.597
h-58.008V14.597C347.231,6.537,340.694,0,332.634,0H179.365c-8.062,0-14.597,6.537-14.597,14.597v45.694h-58.008
c-8.062,0-14.597,6.537-14.597,14.597v422.514c0,8.061,6.535,14.597,14.597,14.597h298.481c8.061,0,14.597-6.537,14.597-14.597
V210.08c0-8.061-6.537-14.597-14.597-14.597s-14.597,6.537-14.597,14.597v272.726H121.357V89.486h54.801
c1.033,0.232,2.105,0.365,3.208,0.365h153.269c1.104,0,2.174-0.133,3.207-0.365h54.801v44.523
C390.642,142.07,397.178,148.606,405.239,148.606z M193.962,29.195h124.074v31.097H193.962V29.195z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="165.153" y="132.31" style="fill:#CDE6F8;" width="181.707" height="305.974"/>
<path style="fill:#2D527C;" d="M346.85,452.88H165.149c-8.061,0-14.597-6.537-14.597-14.597V132.304
c0-8.061,6.537-14.597,14.597-14.597h181.703c8.061,0,14.597,6.537,14.597,14.597v305.978
C361.447,446.343,354.912,452.88,346.85,452.88z M179.746,423.685h152.508V146.901H179.746V423.685z"/>
<rect x="179.371" y="14.597" style="fill:#CDE6F8;" width="153.272" height="60.655"/>
<path style="fill:#2D527C;" d="M405.239,148.606c8.061,0,14.597-6.537,14.597-14.597v-59.12c0-8.061-6.537-14.597-14.597-14.597
h-58.008V14.597C347.231,6.537,340.694,0,332.634,0H179.365c-8.061,0-14.597,6.537-14.597,14.597v45.694h-58.008
c-8.061,0-14.597,6.537-14.597,14.597v422.514c0,8.061,6.537,14.597,14.597,14.597h298.481c8.061,0,14.597-6.537,14.597-14.597
V210.08c0-8.061-6.537-14.597-14.597-14.597s-14.597,6.537-14.597,14.597v272.726H121.357V89.486h54.801
c1.033,0.232,2.103,0.365,3.207,0.365h153.269c1.104,0,2.174-0.133,3.207-0.365h54.801v44.523
C390.642,142.07,397.178,148.606,405.239,148.606z M193.962,29.195h124.074v31.097H193.962V29.195z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#CDE6F8;" d="M263.655,367.947h-15.312c-32.023,0-57.983-25.96-57.983-57.983v-53.502h131.278v53.502
C321.638,341.988,295.679,367.947,263.655,367.947z"/>
<rect x="179.419" y="14.587" style="fill:#CDE6F8;" width="153.162" height="60.611"/>
</g>
<path style="fill:#2D527C;" d="M405.133,60.613h-57.967V14.587C347.167,6.532,340.635,0,332.58,0H179.42
c-8.055,0-14.587,6.532-14.587,14.587v46.026h-57.967c-8.055,0-14.587,6.532-14.587,14.587v422.213
c0,8.055,6.532,14.587,14.587,14.587H256c8.055,0,14.587-6.532,14.587-14.587V382.196c36.775-3.502,65.638-34.553,65.638-72.231
v-53.502c0-8.055-6.532-14.587-14.587-14.587h-14.606v-38.018c0-8.055-6.532-14.587-14.587-14.587
c-8.055,0-14.587,6.532-14.587,14.587v38.018H234.14v-38.018c0-8.055-6.532-14.587-14.587-14.587s-14.587,6.532-14.587,14.587
v38.018H190.36c-8.055,0-14.587,6.532-14.587,14.587v53.502c0,37.676,28.863,68.729,65.638,72.231v100.631H121.453V89.787h57.967
H332.58h57.967v393.039H334.04c-8.055,0-14.587,6.532-14.587,14.587c0,8.055,6.532,14.587,14.587,14.587h71.094
c8.055,0,14.587-6.532,14.587-14.587V75.2C419.72,67.143,413.19,60.613,405.133,60.613z M204.949,309.964v-38.915h102.102v38.915
c0,23.928-19.468,43.396-43.396,43.396h-15.31C224.416,353.36,204.949,333.893,204.949,309.964z M317.993,60.613H194.007V29.174
h123.986V60.613z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="165.153" y="362.626" style="fill:#CDE6F8;" width="181.707" height="75.662"/>
<path style="fill:#2D527C;" d="M361.447,134.008c0-8.061-6.535-14.597-14.597-14.597H165.149c-8.062,0-14.597,6.537-14.597,14.597
v75.662c0,0.069,0.009,0.136,0.01,0.206c-0.001,0.069-0.01,0.136-0.01,0.206v75.662c0,0.206,0.022,0.404,0.031,0.609
c-0.009,0.203-0.031,0.403-0.031,0.609v75.662v75.662c0,8.061,6.535,14.597,14.597,14.597h181.703
c8.062,0,14.597-6.537,14.597-14.597v-75.662v-75.662c0-0.206-0.022-0.404-0.031-0.609c0.009-0.203,0.031-0.403,0.031-0.609v-75.662
c0-0.069-0.009-0.136-0.01-0.206c0.001-0.069,0.01-0.136,0.01-0.206v-75.662H361.447z M179.746,301.555h105.448
c8.062,0,14.597-6.537,14.597-14.597c0-8.061-6.535-14.597-14.597-14.597H179.746v-47.684h152.508v61.065
c0,0.206,0.022,0.404,0.031,0.609c-0.009,0.203-0.031,0.403-0.031,0.609v61.065H179.746V301.555z M179.746,148.605h152.508v46.468
H179.746V148.605z M332.253,423.685H179.746v-46.468h152.508v46.468H332.253z"/>
<rect x="179.371" y="14.597" style="fill:#CDE6F8;" width="153.272" height="60.655"/>
<path style="fill:#2D527C;" d="M405.239,148.606c8.062,0,14.597-6.537,14.597-14.597v-59.12c0-8.061-6.535-14.597-14.597-14.597
h-58.008V14.597C347.231,6.537,340.696,0,332.634,0H179.365c-8.062,0-14.597,6.537-14.597,14.597v45.694h-58.008
c-8.062,0-14.597,6.537-14.597,14.597v422.514c0,8.061,6.535,14.597,14.597,14.597h298.481c8.062,0,14.597-6.537,14.597-14.597
V210.08c0-8.061-6.535-14.597-14.597-14.597s-14.597,6.537-14.597,14.597v272.726H121.357V89.486h54.801
c1.033,0.232,2.103,0.365,3.207,0.365h153.269c1.104,0,2.175-0.133,3.207-0.365h54.801v44.523
C390.642,142.07,397.177,148.606,405.239,148.606z M193.962,29.195h124.074v31.097H193.962V29.195z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<circle style="fill:#CEE8FA;" cx="367.49" cy="127.609" r="66.615"/>
<g>
<path style="fill:#2D527C;" d="M439.936,69.106c-3.567,0-7.134-1.36-9.856-4.083c-5.443-5.443-5.444-14.269,0-19.712l8.975-8.976
c5.443-5.443,14.269-5.444,19.712,0c5.443,5.444,5.444,14.269,0,19.712l-8.975,8.976C447.071,67.746,443.504,69.106,439.936,69.106
z"/>
<path style="fill:#2D527C;" d="M286.07,222.973c-3.567,0-7.135-1.36-9.856-4.083c-5.443-5.443-5.443-14.269,0-19.713l8.976-8.976
c5.443-5.443,14.269-5.443,19.713,0c5.443,5.443,5.443,14.269,0,19.713l-8.976,8.976
C293.203,221.612,289.637,222.973,286.07,222.973z"/>
<path style="fill:#2D527C;" d="M455.761,113.675h-8.933c-2.813-16.212-10.501-31.147-22.374-43.021
c-11.874-11.874-26.811-19.561-43.023-22.374v-8.933c0-7.698-6.24-13.939-13.939-13.939c-7.698,0-13.939,6.24-13.939,13.939v8.933
c-16.212,2.813-31.147,10.5-43.021,22.374s-19.563,26.809-22.376,43.021h-8.933c-7.698,0-13.939,6.24-13.939,13.939
c0,7.698,6.24,13.939,13.939,13.939h8.933c2.813,16.212,10.5,31.147,22.376,43.023c11.874,11.874,26.809,19.561,43.021,22.374
v8.933c0,7.698,6.24,13.939,13.939,13.939c7.698,0,13.939-6.24,13.939-13.939v-8.933c16.212-2.813,31.147-10.5,43.023-22.374
s19.561-26.811,22.376-43.023h8.933c7.698,0,13.939-6.24,13.939-13.939S463.459,113.675,455.761,113.675z M404.74,164.861
c-9.949,9.949-23.177,15.429-37.248,15.429c-14.07,0-27.299-5.479-37.248-15.429c-9.949-9.949-15.429-23.177-15.429-37.248
c0-14.071,5.479-27.299,15.429-37.248c9.949-9.949,23.177-15.429,37.248-15.429c14.071,0,27.299,5.479,37.249,15.429
c9.949,9.949,15.429,23.177,15.429,37.248C420.17,141.684,414.689,154.912,404.74,164.861z"/>
<path style="fill:#2D527C;" d="M448.913,222.973c-3.568,0-7.135-1.36-9.856-4.083l-8.975-8.976c-5.443-5.443-5.443-14.269,0-19.712
c5.444-5.442,14.269-5.443,19.712,0l8.975,8.976c5.443,5.443,5.443,14.269,0,19.712
C456.046,221.612,452.479,222.973,448.913,222.973z"/>
<path style="fill:#2D527C;" d="M295.046,69.106c-3.567,0-7.135-1.36-9.856-4.083l-8.976-8.976c-5.443-5.443-5.443-14.269,0-19.713
c5.443-5.443,14.269-5.443,19.713,0l8.976,8.976c5.443,5.443,5.443,14.269,0,19.713C302.18,67.746,298.613,69.106,295.046,69.106z"
/>
</g>
<path style="fill:#CEE8FA;" d="M106.205,283.161h65.768c6.572-21,13.06-45.674,15.935-77.388
c0.976-10.768,1.533-22.348,1.533-34.872c0-13.716-1.05-26.207-2.852-37.556c-1.621-10.234-3.847-19.525-6.477-27.941
c-12.486-40.1-40.795-66.242-41.023-66.059c-0.227-0.183-28.535,25.959-41.023,66.06c-2.63,8.416-4.856,17.706-6.477,27.941
c-1.802,11.349-2.852,23.841-2.852,37.556c0,12.524,0.558,24.104,1.533,34.872C93.145,237.487,99.633,262.161,106.205,283.161z"/>
<path style="fill:#2D527C;" d="M474.491,364.194H353.677c-5.312,0-9.633-4.325-9.633-9.641c0-5.312,4.321-9.633,9.633-9.633h55.956
c20.689,0,37.52-16.827,37.52-37.51c0-20.683-16.831-37.51-37.52-37.51H190.39c4.622-16.984,9.134-37.867,11.399-62.87
c1.055-11.648,1.59-23.804,1.59-36.129c0-13.741-1.018-27.112-3.023-39.737c-1.643-10.372-3.978-20.438-6.936-29.904
c-7.052-22.642-18.672-40.906-27.18-52.239c-4.938-6.579-9.342-11.534-12.166-14.532c-5.153-5.469-8.557-9.084-14.983-9.084
c-0.003,0-0.004,0-0.007,0c-6.424,0-9.828,3.613-14.981,9.082c-2.824,2.998-7.229,7.953-12.166,14.532
c-8.508,11.335-20.13,29.599-27.177,52.228c-2.962,9.48-5.297,19.545-6.94,29.911c-2.006,12.635-3.023,26.008-3.023,39.743
c0,12.323,0.535,24.479,1.59,36.129c2.265,25.003,6.777,45.886,11.399,62.87H37.514C16.829,269.901,0,286.728,0,307.41
s16.829,37.51,37.514,37.51h137.677c7.698,0,13.939-6.24,13.939-13.939c0-7.698-6.24-13.939-13.939-13.939H37.514
c-5.315,0-9.637-4.321-9.637-9.633s4.324-9.633,9.637-9.633h372.119c5.316,0,9.643,4.321,9.643,9.633s-4.327,9.633-9.643,9.633
h-55.956c-20.682,0-37.51,16.827-37.51,37.51c0,20.688,16.827,37.518,37.51,37.518h120.814c5.312,0,9.633,4.321,9.633,9.633
c0,5.315-4.321,9.637-9.633,9.637H301.997c-7.698,0-13.939,6.24-13.939,13.939c0,7.698,6.24,13.939,13.939,13.939
c0,0,55.489-0.042,56.336-0.042c5.312,0,9.944,4.594,9.944,9.906c0,5.315-4.321,9.637-9.633,9.637H83.631
c-5.316,0-9.643-4.324-9.643-9.637c0-5.312,4.327-9.633,9.643-9.633h55.75c7.698,0,13.939-6.24,13.939-13.939
c0-7.698-6.24-13.939-13.939-13.939c0,0-8.794-0.233-9.64-0.233c-5.316,0-9.643-4.324-9.643-9.637c0-5.312,4.327-9.633,9.643-9.633
h141.592c7.698,0,13.939-6.24,13.939-13.939c0-7.698-6.24-13.939-13.939-13.939H129.742c-20.689,0-37.52,16.827-37.52,37.51
c0,3.415,0.468,6.723,1.327,9.87h-9.917c-20.689,0-37.52,16.827-37.52,37.51c0,20.685,16.831,37.514,37.52,37.514h275.012
c20.682,0,37.51-16.829,37.51-37.514c0-3.414-0.467-6.72-1.326-9.864h79.663c20.682,0,37.51-16.829,37.51-37.514
C512,381.021,495.173,364.194,474.491,364.194z M105.356,135.525c1.431-9.038,3.455-17.773,6.019-25.977
c6.951-22.321,19.336-39.829,27.715-49.885c8.38,10.054,20.763,27.565,27.718,49.897c2.559,8.19,4.583,16.926,6.016,25.97
c1.777,11.19,2.679,23.089,2.679,35.369c0,11.488-0.496,22.797-1.476,33.614c-2.39,26.373-7.336,47.351-12.394,64.707h-8.604
v-99.866c0-7.698-6.24-13.939-13.939-13.939s-13.939,6.24-13.939,13.939v99.867h-8.604c-5.06-17.356-10.004-38.332-12.394-64.706
c-0.98-10.818-1.477-22.127-1.477-33.614C102.676,158.625,103.578,146.726,105.356,135.525z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M60.76,139.883c-7.812,0-14.144-6.334-14.144-14.144V60.761c0-7.81,6.332-14.144,14.144-14.144
h64.98c7.812,0,14.144,6.334,14.144,14.144s-6.332,14.144-14.144,14.144H74.903v50.835
C74.903,133.551,68.571,139.883,60.76,139.883z"/>
<path style="fill:#2D527C;" d="M451.24,465.383h-64.98c-7.81,0-14.144-6.334-14.144-14.144s6.334-14.144,14.144-14.144h50.836
V386.26c0-7.81,6.334-14.144,14.144-14.144c7.81,0,14.144,6.334,14.144,14.144v64.979
C465.384,459.05,459.05,465.383,451.24,465.383z"/>
<path style="fill:#2D527C;" d="M497.856,512H14.144C6.332,512,0,505.667,0,497.856V14.144C0,6.334,6.332,0,14.144,0h483.713
C505.667,0,512,6.334,512,14.144v483.713C512,505.667,505.667,512,497.856,512z M28.287,483.713h455.425V28.287H28.287V483.713z"/>
</g>
<path style="fill:#CEE8FA;" d="M366.025,344.553c-18.077,29.781-50.354,49.234-86.978,50.168
c-8.671,0.222-16.439,0.406-23.672,0.406c-9.13,0-17.622-0.283-30.291-1.01c-48.091-2.765-90.765-45.274-93.185-92.826l-0.007-0.194
c-0.851-32.887-1.078-140.325-0.895-154.931c0.204-16.699,12.128-29.293,27.733-29.293l0.564,0.004
c15.845,0.269,26.992,12.395,27.048,29.49c0.027,7.597,0.115,130.554,0.236,144.252c0.233,26.78,18.218,46.615,43.735,48.233
c10.903,0.692,18.165,0.973,25.064,0.973c8.778,0,17.419-0.488,28.518-1.277c22.685-1.618,40.844-21.357,41.34-44.936
c0.537-25.406-15.585-45.561-39.208-49.012c-8.544-1.249-16.81-1.352-25.228-1.352l-4.266,0.003c-1.168,0-2.334-0.003-3.499-0.008
c-16.723-0.098-28.587-11.152-28.846-26.884c-0.124-7.611,2.554-14.622,7.541-19.745c5.211-5.352,12.64-8.345,20.921-8.43
c17.77,0,50.322,1.252,68.096,9.637c28.603,13.489,49.002,38.936,56.808,67.771"/>
<path style="fill:#2D527C;" d="M255.375,409.27c-9.42,0-18.139-0.29-31.102-1.033c-26.72-1.536-52.606-13.511-72.892-33.717
c-20.324-20.245-32.26-45.997-33.61-72.512c-0.003-0.054-0.004-0.109-0.007-0.163l-0.007-0.194c-0.003-0.064-0.004-0.126-0.006-0.19
c-0.861-33.305-1.078-141.104-0.9-155.474c0.296-24.256,18.691-43.261,41.875-43.261l0.703,0.006
c23.749,0.403,40.97,18.733,41.053,43.585c0.007,2.233,0.021,14.455,0.038,30.946c0.041,38.751,0.112,103.612,0.198,113.227
c0.17,19.337,12.421,33.098,30.488,34.245c10.585,0.67,17.589,0.943,24.169,0.943c8.357,0,16.725-0.475,27.516-1.242
c15.469-1.103,27.857-14.776,28.201-31.127c0.388-18.34-10.507-32.291-27.111-34.718c-7.608-1.112-15.306-1.205-23.184-1.205
l-4.257,0.003c-0.014,0-0.03,0-0.044,0c-1.185,0-2.359-0.003-3.532-0.008c-24.49-0.144-42.533-17.299-42.92-40.795
c-0.187-11.405,3.915-22.005,11.548-29.845c7.855-8.07,18.834-12.582,30.911-12.705c0.048-0.001,0.096-0.001,0.144-0.001
c23.193,0,54.88,1.907,74.131,10.99c31.774,14.982,55.256,43,64.426,76.866c2.041,7.54-2.416,15.306-9.956,17.349
c-7.541,2.045-15.308-2.416-17.349-9.956c-6.998-25.848-24.927-47.234-49.187-58.674c-11.152-5.261-33.741-8.28-61.987-8.285
c-4.458,0.059-8.314,1.533-10.864,4.153c-2.341,2.404-3.595,5.83-3.535,9.647c0.157,9.5,7.741,12.93,14.787,12.971
c1.127,0.006,2.27,0.008,3.417,0.008l4.256-0.003c8.971,0,17.8,0.115,27.285,1.503c30.897,4.513,51.993,30.547,51.3,63.306
c-0.651,30.808-24.579,56.613-54.476,58.744c-11.413,0.81-20.331,1.314-29.525,1.314c-7.216,0-14.736-0.29-25.958-1
c-32.723-2.076-56.688-28.246-56.985-62.224c-0.088-9.724-0.157-74.653-0.199-113.448c-0.018-16.455-0.03-28.649-0.038-30.88
c-0.024-7.338-3.491-15.234-13.145-15.398l-0.463-0.003c-7.628,0-13.343,6.444-13.452,15.322
c-0.177,14.264,0.037,121.125,0.89,154.297v0.018c2.116,40.649,38.67,76.975,79.868,79.344c12.377,0.71,20.644,0.986,29.48,0.986
c7.079,0,14.745-0.182,23.309-0.402c31.119-0.793,59.249-17.004,75.25-43.366c4.054-6.677,12.755-8.807,19.429-4.752
c6.679,4.054,8.806,12.753,4.752,19.429c-21.022,34.631-57.921,55.928-98.709,56.968C270.646,409.084,262.79,409.27,255.375,409.27z
"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

101
static/icons/behance.svg Normal file
View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M60.76,139.885c-7.812,0-14.144-6.332-14.144-14.144V60.76c0-7.812,6.332-14.144,14.144-14.144
h64.98c7.812,0,14.144,6.332,14.144,14.144s-6.332,14.144-14.144,14.144H74.903v50.837
C74.903,133.553,68.571,139.885,60.76,139.885z"/>
<path style="fill:#2D527C;" d="M451.239,465.384H386.26c-7.81,0-14.144-6.332-14.144-14.144s6.334-14.144,14.144-14.144h50.835
V386.26c0-7.812,6.334-14.144,14.144-14.144c7.81,0,14.144,6.332,14.144,14.144v64.98
C465.383,459.05,459.05,465.384,451.239,465.384z"/>
<path style="fill:#2D527C;" d="M497.856,512H14.144C6.332,512,0,505.668,0,497.856V14.144C0,6.332,6.332,0,14.144,0h483.713
C505.667,0,512,6.332,512,14.144v483.713C512,505.668,505.667,512,497.856,512z M28.287,483.713h455.425V28.287H28.287V483.713z"/>
<path style="fill:#2D527C;" d="M351.161,178.647h-32.767c-7.81,0-14.144-6.332-14.144-14.144s6.334-14.144,14.144-14.144h32.767
c7.81,0,14.144,6.332,14.144,14.144S358.973,178.647,351.161,178.647z"/>
</g>
<g>
<path style="fill:#CEE8FA;" d="M336.712,361.64c-11.581,0-22.142-1.706-31.388-5.069c-9.553-3.477-17.771-8.615-24.433-15.274
c-6.669-6.672-11.762-14.834-15.144-24.263c-3.254-9.072-4.905-19.391-4.905-30.668c0-11.383,1.677-21.807,4.984-30.983
c3.41-9.468,8.442-17.664,14.951-24.357c6.549-6.728,14.592-11.916,23.913-15.418c9.029-3.392,19.3-5.112,30.532-5.112
c10.881,0,20.906,1.627,29.798,4.836c9.233,3.338,17.211,8.331,23.72,14.84c6.499,6.498,11.536,14.565,14.972,23.976
c3.319,9.103,5.001,19.539,5.001,31.027c0,7.643-4.324,14.295-10.652,17.643c1.368,1.027,2.587,2.269,3.601,3.696
c3.113,4.385,3.925,10.022,2.175,15.087c-1.578,4.537-3.706,8.765-6.332,12.591c-4.201,6.111-9.502,11.291-15.764,15.404
c-6.049,3.977-13.022,7.028-20.718,9.066C353.564,360.638,345.384,361.64,336.712,361.64z M321.519,305.118
c0.089,0.311,0.182,0.614,0.279,0.907c0.953,2.895,2.177,5.203,3.639,6.872c1.269,1.447,2.67,2.455,4.278,3.079
c2.003,0.778,4.353,1.17,6.995,1.17c4.322,0,7.845-0.806,10.189-2.332c0.481-0.313,1.949-1.269,3.103-4.368
c0.738-1.994,1.836-3.79,3.201-5.327h-31.685V305.118z M348.218,261.665c-0.733-1.815-1.598-3.294-2.584-4.389
c-1.458-1.618-4.126-3.771-10.41-3.771c-4.079,0-7.082,1.342-9.735,4.351c-0.962,1.09-1.793,2.362-2.491,3.809H348.218z"/>
<path style="fill:#CEE8FA;" d="M125.573,358.963c-12.289,0-22.288-9.998-22.288-22.288V188.607
c0-12.289,9.998-22.288,22.288-22.288h55.07c9.987,0,19.2,1.136,27.384,3.378c8.577,2.352,16.05,5.874,22.215,10.468
c6.465,4.819,11.499,10.772,14.961,17.695c3.458,6.916,5.212,14.674,5.212,23.06c0,14.21-4.595,26.085-13.461,35.141
c3.816,2.812,7.089,6.085,9.803,9.809c6.475,8.888,9.756,19.486,9.756,31.505c0,19.391-6.639,34.793-19.735,45.779
c-12.511,10.492-31.096,15.811-55.242,15.811h-55.964V358.963z M179.155,307.329c8.902,0,13.083-1.668,15.021-3.066
c0.689-0.496,2.519-1.817,2.519-7.483c0-3.308-0.506-5.199-0.809-6.032c-0.219-0.603-0.526-1.001-1.089-1.413
c-0.471-0.344-1.912-1.219-4.977-1.85c-2.13-0.437-5.973-0.959-12.152-0.959h-15.906v20.802h17.394V307.329z M178.858,234.594
c8.244,0,11.077-1.636,11.748-2.139c0.371-0.277,1.331-1.952,1.331-6.329c0-3.027-0.576-5.046-1.71-6.004
c-0.103-0.088-2.682-2.165-12.855-2.165h-15.608v16.639h17.094V234.594z"/>
</g>
<g>
<path style="fill:#2D527C;" d="M422.858,285.176c0-13.149-1.97-25.218-5.857-35.871c-4.147-11.363-10.291-21.165-18.259-29.133
c-7.987-7.988-17.712-14.09-28.904-18.136c-10.449-3.772-22.09-5.682-34.614-5.682c-12.937,0-24.883,2.023-35.505,6.014
c-11.285,4.242-21.066,10.565-29.075,18.794c-2.344,2.41-4.508,4.99-6.527,7.698c0.273-2.588,0.438-5.229,0.438-7.94
c0-10.601-2.256-20.487-6.706-29.385c-4.461-8.919-10.906-16.559-19.158-22.709c-7.587-5.653-16.646-9.949-26.925-12.767
c-9.41-2.577-19.879-3.882-31.127-3.882h-55.067c-20.088,0-36.431,16.343-36.431,36.431v148.068
c0,20.088,16.343,36.431,36.431,36.431h55.962c27.56,0,49.203-6.431,64.328-19.115c5.732-4.809,10.455-10.27,14.209-16.329
c3.097,4.967,6.708,9.524,10.814,13.632c8.135,8.134,18.093,14.378,29.6,18.566c10.8,3.931,22.988,5.923,36.225,5.923
c9.895,0,19.295-1.163,27.942-3.454c9.162-2.426,17.531-6.1,24.863-10.919c7.797-5.12,14.408-11.584,19.644-19.204
c3.346-4.878,6.044-10.233,8.026-15.929c2.457-7.072,2.219-14.738-0.505-21.555C420.573,299.186,422.858,292.443,422.858,285.176z
M227.687,332.318c-9.892,8.295-25.42,12.502-46.152,12.502h-55.962c-4.491,0-8.144-3.653-8.144-8.144V188.607
c0-4.491,3.653-8.144,8.144-8.144h55.07c8.727,0,16.682,0.967,23.648,2.875c6.865,1.883,12.755,4.631,17.5,8.167
c4.676,3.485,8.297,7.751,10.762,12.681c2.467,4.933,3.718,10.562,3.718,16.733c0,16.274-7.523,27.494-23.002,34.298l-7.277,3.199
l7.66,2.117c9.734,2.69,17.025,7.287,21.672,13.666c4.673,6.414,7.042,14.212,7.042,23.174
C242.368,312.599,237.565,324.03,227.687,332.318z M388.772,290.974h-82.897l0.045,2.874c0.102,6.409,0.925,11.995,2.447,16.609
c1.547,4.7,3.713,8.659,6.435,11.763c2.772,3.161,6.072,5.498,9.807,6.945c3.628,1.41,7.701,2.124,12.104,2.124
c7.169,0,13.195-1.556,17.906-4.624c3.89-2.533,6.797-6.331,8.64-11.285c0.403-1.089,1.376-1.792,2.475-1.792h22.242
c0.866,0,1.653,0.407,2.158,1.119c0.481,0.677,0.604,1.505,0.337,2.273c-1.157,3.325-2.716,6.424-4.626,9.21
c-3.148,4.583-7.14,8.479-11.864,11.581c-4.781,3.141-10.356,5.57-16.575,7.216c-6.284,1.666-13.247,2.509-20.695,2.509
c-9.929,0-18.862-1.419-26.55-4.218c-7.598-2.765-14.081-6.797-19.271-11.985c-5.178-5.179-9.159-11.584-11.83-19.034
c-2.704-7.54-4.075-16.251-4.075-25.894c0-9.744,1.395-18.554,4.148-26.187c2.723-7.561,6.689-14.052,11.785-19.291
c5.086-5.226,11.394-9.277,18.75-12.042c7.431-2.792,16.029-4.206,25.556-4.206c9.24,0,17.65,1.345,24.996,3.997
c7.257,2.624,13.489,6.506,18.52,11.537c5.034,5.034,8.966,11.367,11.688,18.827c2.75,7.537,4.144,16.344,4.144,26.176
C394.571,288.373,391.969,290.974,388.772,290.974z"/>
<path style="fill:#2D527C;" d="M356.141,247.807c-5.052-5.604-12.09-8.447-20.917-8.447c-8.151,0-14.996,3.075-20.344,9.138
c-5.219,5.919-8.133,14.105-8.66,24.334l-0.153,2.974h58.982l-0.231-3.042C363.98,261.665,361.06,253.267,356.141,247.807z"/>
<path style="fill:#2D527C;" d="M199.069,243.787c4.652-3.474,7.011-9.415,7.011-17.661c0-7.384-2.264-13.042-6.731-16.813
c-4.387-3.703-11.577-5.502-21.979-5.502h-29.751v44.926h31.239C187.996,248.737,194.608,247.116,199.069,243.787z"/>
<path style="fill:#2D527C;" d="M203.134,277.909c-2.699-1.967-6.22-3.406-10.468-4.278c-4.038-0.827-9.084-1.247-14.998-1.247
h-30.05v49.09h31.538c10.323,0,17.944-1.878,23.297-5.741c5.566-4.015,8.387-10.393,8.387-18.952c0-4.174-0.559-7.827-1.658-10.857
C207.998,282.668,205.964,279.972,203.134,277.909z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

47
static/icons/bench.svg Normal file
View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<rect x="47.326" y="64.86" style="fill:#CEE8FA;" width="417.346" height="141.022"/>
<path style="fill:#2D527C;" d="M497.555,255.081h-49.442v-34.756h16.561c7.976,0,14.445-6.468,14.445-14.445V64.86
c0-7.976-6.468-14.445-14.445-14.445H47.328c-7.976,0-14.445,6.468-14.445,14.445V205.88c0,7.976,6.468,14.445,14.445,14.445h16.561
v34.756H14.445C6.468,255.081,0,261.55,0,269.526v79.838c0,7.976,6.468,14.445,14.445,14.445h49.442v68.887h-9.028
c-7.976,0-14.445,6.468-14.445,14.445s6.468,14.445,14.445,14.445h46.945c7.976,0,14.445-6.468,14.445-14.445
s-6.468-14.445-14.445-14.445h-9.028v-68.888h268.687c7.976,0,14.445-6.468,14.445-14.445s-6.468-14.445-14.445-14.445H80.956
c-0.852-0.156-1.726-0.25-2.625-0.25s-1.772,0.092-2.625,0.25H28.889V283.97h454.222v50.949h-49.442
c-7.976,0-14.445,6.468-14.445,14.445v83.332h-9.028c-7.976,0-14.445,6.468-14.445,14.445s6.468,14.445,14.445,14.445h46.945
c7.976,0,14.445-6.468,14.445-14.445s-6.468-14.445-14.445-14.445h-9.028v-68.888h49.442c7.976,0,14.445-6.468,14.445-14.445
v-79.838C512,261.548,505.532,255.081,497.555,255.081z M61.772,149.815h316.285c7.976,0,14.445-6.468,14.445-14.445
s-6.468-14.445-14.445-14.445H61.772V79.304h388.457v112.132H61.772V149.815z M92.776,220.325h326.447v34.756H92.776L92.776,220.325
L92.776,220.325z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

59
static/icons/bible.svg Normal file
View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M63.035,457.579c-8.479,0-15.352-6.874-15.352-15.352V59.036C47.684,26.483,74.167,0,106.72,0
h281.069c32.553,0,59.036,26.483,59.036,59.036v255.671c0,8.477-6.873,15.352-15.352,15.352s-15.352-6.874-15.352-15.352V59.036
c0-15.623-12.71-28.333-28.333-28.333H106.72c-15.623,0-28.333,12.71-28.333,28.333v383.191
C78.387,450.706,71.512,457.579,63.035,457.579z"/>
<polygon style="fill:#CEE8FA;" points="327.047,148.967 276.792,148.967 276.792,103.912 219.726,103.912 219.726,148.967
169.471,148.967 169.471,206.034 219.726,206.034 219.726,308.036 276.792,308.036 276.792,206.034 327.047,206.034 "/>
<path style="fill:#2D527C;" d="M276.792,323.387h-57.065c-8.479,0-15.352-6.874-15.352-15.352v-86.651h-34.903
c-8.479,0-15.352-6.874-15.352-15.352v-57.066c0-8.477,6.873-15.352,15.352-15.352h34.903V103.91
c0-8.477,6.873-15.352,15.352-15.352h57.065c8.479,0,15.352,6.874,15.352,15.352v29.705h34.905c8.479,0,15.352,6.874,15.352,15.352
v57.066c0,8.477-6.873,15.352-15.352,15.352h-34.905v86.651C292.144,316.514,285.271,323.387,276.792,323.387z M235.077,292.684
h26.362v-86.651c0-8.477,6.873-15.352,15.352-15.352h34.905v-26.363h-34.905c-8.479,0-15.352-6.874-15.352-15.352v-29.705h-26.362
v29.705c0,8.477-6.873,15.352-15.352,15.352h-34.903v26.363h34.903c8.479,0,15.352,6.874,15.352,15.352V292.684z"/>
<path style="fill:#CEE8FA;" d="M272.626,496.648h176.339c-25.838,0-46.786-20.947-46.786-46.786v-6.692
c0-25.838,20.947-46.786,46.786-46.786H113.166c-27.687,0-50.131,22.444-50.131,50.131l0,0c0,27.687,22.444,50.131,50.131,50.131
h40.904h118.556V496.648z"/>
<g>
<path style="fill:#2D527C;" d="M448.965,512H113.166c-36.107,0-65.482-29.375-65.482-65.482s29.375-65.482,65.482-65.482h335.799
c8.479,0,15.352,6.874,15.352,15.352c0,8.477-6.873,15.352-15.352,15.352c-17.332,0-31.434,14.102-31.434,31.435v6.69
c0,17.332,14.102,31.434,31.434,31.434c8.479,0,15.352,6.874,15.352,15.352C464.316,505.127,457.444,512,448.965,512z
M113.166,411.737c-19.177,0-34.779,15.602-34.779,34.779c0,19.177,15.602,34.779,34.779,34.779H395.38
c-5.433-9.226-8.552-19.974-8.552-31.434v-6.69c0-11.463,3.118-22.208,8.552-31.435H113.166V411.737z"/>
<path style="fill:#2D527C;" d="M400.747,461.868H267.211c-8.479,0-15.352-6.874-15.352-15.352c0-8.477,6.873-15.352,15.352-15.352
h133.536c8.479,0,15.352,6.874,15.352,15.352C416.099,454.993,409.226,461.868,400.747,461.868z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M386.869,401.572H125.131c-7.699,0-13.943-6.244-13.943-13.943V125.892
c0-7.699,6.244-13.943,13.943-13.943h261.738c7.699,0,13.943,6.243,13.943,13.943s-6.243,13.943-13.943,13.943H139.074v233.851
h233.853V242.242c0-7.699,6.243-13.943,13.943-13.943s13.943,6.243,13.943,13.943v145.387
C400.812,395.328,394.568,401.572,386.869,401.572z"/>
<circle style="fill:#CEE8FA;" cx="256.001" cy="256.768" r="89.024"/>
<g>
<path style="fill:#2D527C;" d="M255.999,359.727c-56.776,0-102.966-46.191-102.966-102.968
c0-56.776,46.191-102.966,102.966-102.966s102.966,46.191,102.966,102.966C358.966,313.536,312.775,359.727,255.999,359.727z
M255.999,181.679c-41.398,0-75.081,33.681-75.081,75.081s33.681,75.082,75.081,75.082s75.081-33.681,75.081-75.082
C331.08,215.361,297.399,181.679,255.999,181.679z"/>
<path style="fill:#2D527C;" d="M360.497,134.131c-7.699,0-13.943-6.244-13.943-13.943V94.52H165.446v25.668
c0,7.699-6.244,13.943-13.943,13.943s-13.943-6.243-13.943-13.943V80.577c0-7.699,6.243-13.943,13.943-13.943h208.993
c7.699,0,13.943,6.244,13.943,13.943v39.611C374.439,127.889,368.196,134.131,360.497,134.131z"/>
<path style="fill:#2D527C;" d="M216.429,94.523c-2.419,0-4.872-0.63-7.104-1.956c-6.621-3.93-8.802-12.484-4.872-19.106
l39.558-66.635C246.524,2.593,251.079,0,255.999,0c4.92,0,9.477,2.593,11.989,6.826l17.222,29.009
c3.93,6.621,1.75,15.175-4.872,19.106c-6.623,3.93-15.175,1.748-19.106-4.872l-5.233-8.813l-27.569,46.44
C225.826,92.084,221.187,94.523,216.429,94.523z"/>
<path style="fill:#2D527C;" d="M351.255,512c-7.699,0-13.943-6.243-13.943-13.943V391.99c0-7.699,6.243-13.943,13.943-13.943
c7.699,0,13.943,6.244,13.943,13.943v106.067C365.198,505.757,358.954,512,351.255,512z"/>
<path style="fill:#2D527C;" d="M160.745,512c-7.699,0-13.943-6.243-13.943-13.943V391.99c0-7.699,6.244-13.943,13.943-13.943
s13.943,6.244,13.943,13.943v106.067C174.687,505.757,168.445,512,160.745,512z"/>
<path style="fill:#2D527C;" d="M294.236,273.998h-39.578c-7.699,0-13.943-6.243-13.943-13.943v-34.212
c0-7.699,6.244-13.943,13.943-13.943s13.943,6.243,13.943,13.943v20.268h25.635c7.699,0,13.943,6.243,13.943,13.943
C308.178,267.753,301.936,273.998,294.236,273.998z"/>
<path style="fill:#2D527C;" d="M302.01,449.802h-92.021c-7.699,0-13.943-6.244-13.943-13.943s6.243-13.943,13.943-13.943h92.021
c7.699,0,13.943,6.243,13.943,13.943S309.711,449.802,302.01,449.802z"/>
<path style="fill:#2D527C;" d="M302.01,510.227h-92.021c-7.699,0-13.943-6.244-13.943-13.943s6.243-13.943,13.943-13.943h92.021
c7.699,0,13.943,6.243,13.943,13.943S309.711,510.227,302.01,510.227z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<polygon style="fill:#CEE8FA;" points="280.679,173.715 280.679,314.18 141.474,314.18 141.474,173.328 210.172,122.741 "/>
<path style="fill:#CEE8FA;" d="M450.582,272.743c2.608-6.256,4.055-13.119,4.055-20.32c0-29.187-23.66-52.846-52.846-52.846
s-52.846,23.66-52.846,52.846c0,7.201,1.446,14.064,4.055,20.32c-26.626,2.727-47.398,25.222-47.398,52.567
c0,29.187,23.66,52.846,52.846,52.846c17.946,0,33.792-8.954,43.343-22.628c9.552,13.674,25.398,22.628,43.343,22.628
c29.187,0,52.846-23.66,52.846-52.846C497.979,297.964,477.207,275.471,450.582,272.743z"/>
</g>
<g>
<path style="fill:#2D527C;" d="M98.445,356.277c-7.744,0-14.021,6.277-14.021,14.021v93.92c0,7.744,6.277,14.021,14.021,14.021
s14.021-6.277,14.021-14.021v-93.92C112.466,362.554,106.189,356.277,98.445,356.277z"/>
<path style="fill:#2D527C;" d="M467.917,262.4c0.492-3.282,0.739-6.612,0.739-9.977c0-36.87-29.997-66.867-66.867-66.867
s-66.865,29.997-66.865,66.867c0,3.364,0.248,6.693,0.739,9.976c-17.979,6.455-32.177,20.296-39.224,37.76h-1.739V201.07
l9.063,6.608c6.253,4.561,15.026,3.19,19.59-3.068c4.562-6.256,3.188-15.027-3.068-19.59l-100.947-73.608
c-2.59-1.887-5.663-2.772-8.712-2.674c-3.071-0.098-6.166,0.799-8.766,2.713l-68.699,50.588c-0.491,0.362-0.948,0.757-1.381,1.172
l-29.909,21.809c-6.257,4.562-7.63,13.332-3.068,19.59c2.745,3.765,7.012,5.761,11.34,5.761c2.864,0,5.757-0.876,8.248-2.692
l9.063-6.608v99.089H28.041V61.802h55.098c0,0.003,0,0.006,0,0.008v25.731H69.119c-7.744,0-14.021,6.277-14.021,14.021
s6.277,14.021,14.021,14.021h56.082c7.744,0,14.021-6.277,14.021-14.021s-6.277-14.021-14.021-14.021H111.18V61.81
c0-0.003,0-0.006,0-0.008h199.793c0,0.003,0,0.006,0,0.008v25.731h-14.021c-7.742,0-14.021,6.277-14.021,14.021
s6.278,14.021,14.021,14.021h56.082c7.742,0,14.021-6.277,14.021-14.021s-6.278-14.021-14.021-14.021h-14.021V61.81
c0-0.003,0-0.006,0-0.008h55.098v63.115c0,7.744,6.278,14.021,14.021,14.021s14.021-6.277,14.021-14.021V47.781
c0-7.744-6.278-14.021-14.021-14.021H14.021C6.277,33.761,0,40.038,0,47.781V314.18c0,7.744,6.277,14.021,14.021,14.021h127.454
H280.68h10.973c0.707,16.518,7.434,31.492,18.037,42.801v93.217c0,7.744,6.278,14.021,14.021,14.021s14.021-6.277,14.021-14.021
v-75.341c6.527,2.133,13.486,3.3,20.715,3.3c10.304,0,20.309-2.397,29.323-6.804v78.843c0,7.744,6.278,14.021,14.021,14.021
s14.021-6.277,14.021-14.021v-78.843c9.014,4.407,19.019,6.804,29.323,6.804c36.871,0,66.867-29.996,66.867-66.865
C512,296.478,493.901,271.73,467.917,262.4z M155.495,300.16V180.623l55.167-40.228l55.997,40.484v119.28H155.495z
M445.132,364.136c-12.666,0-24.572-6.22-31.849-16.635c-2.623-3.755-6.915-5.992-11.494-5.992s-8.871,2.238-11.494,5.992
c-7.275,10.417-19.183,16.635-31.849,16.635c-21.409,0-38.826-17.416-38.826-38.824c0-19.985,14.964-36.588,34.806-38.621
c4.412-0.451,8.352-2.965,10.621-6.776c2.267-3.812,2.599-8.471,0.892-12.565c-1.973-4.733-2.974-9.756-2.974-14.925
c0-21.409,17.416-38.826,38.824-38.826c21.408,0,38.826,17.416,38.826,38.826l-0.447,5.897c-0.471,3.096-1.314,6.116-2.528,9.025
c-1.708,4.094-1.377,8.756,0.892,12.567c2.269,3.812,6.207,6.326,10.621,6.778c19.842,2.033,34.806,18.636,34.806,38.621
C483.959,346.719,466.541,364.136,445.132,364.136z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

68
static/icons/bing.svg Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M60.761,139.883c-7.81,0-14.144-6.334-14.144-14.144V60.761c0-7.81,6.334-14.144,14.144-14.144
h64.979c7.81,0,14.144,6.334,14.144,14.144s-6.334,14.144-14.144,14.144H74.905v50.835
C74.905,133.551,68.571,139.883,60.761,139.883z"/>
<path style="fill:#2D527C;" d="M451.239,465.383H386.26c-7.81,0-14.144-6.334-14.144-14.144s6.334-14.144,14.144-14.144h50.835
V386.26c0-7.81,6.334-14.144,14.144-14.144c7.81,0,14.144,6.334,14.144,14.144v64.979
C465.383,459.05,459.05,465.383,451.239,465.383z"/>
<path style="fill:#2D527C;" d="M497.856,512H14.144C6.334,512,0,505.667,0,497.856V14.144C0,6.334,6.334,0,14.144,0h483.713
C505.667,0,512,6.334,512,14.144v483.713C512,505.667,505.667,512,497.856,512z M28.287,483.713h455.425V28.287H28.287V483.713z"/>
</g>
<path style="fill:#CEE8FA;" d="M363.019,242.849c-38.339-13.318-76.635-26.761-114.938-40.184l24.818,66.143
c0,0,12.838,9.598,21.387,13.598c1.24,0.581,2.431,1.267,4.344,2.27c-30.576,17.607-60.392,34.778-90.907,52.35
c-0.107-2.339-0.228-3.744-0.228-5.15c-0.011-23.07-0.008-46.138-0.008-69.208c0-48.938-0.031-83.723,0.072-132.66
c0.007-3.144-0.791-4.714-3.904-5.713c-8.871-2.847-17.633-6.041-26.43-9.114c-10.659-3.725-21.312-7.469-32.56-11.414
c-0.12,1.728-0.259,2.779-0.259,3.83c-0.01,92.142-0.001,170.131-0.055,262.273c-0.001,2.414,0.687,3.826,2.871,5.038
c19.34,10.732,38.631,21.551,57.872,32.455c2.144,1.215,3.687,1.122,5.778-0.086c51.117-29.519,102.263-58.986,153.456-88.371"/>
<path style="fill:#2D527C;" d="M207.913,422.382c-3.906,0-7.259-1.274-9.792-2.71c-18.999-10.768-38.433-21.667-57.765-32.395
c-4.632-2.57-10.158-7.68-10.152-17.414c0.041-72.082,0.045-135.502,0.051-203.813l0.004-58.454c0-1.277,0.092-2.365,0.182-3.416
c0.034-0.409,0.074-0.864,0.11-1.392c0.306-4.401,2.648-8.407,6.334-10.833c3.686-2.426,8.29-2.993,12.455-1.535l11.113,3.899
c7.261,2.547,14.347,5.034,21.435,7.51c2.259,0.789,4.513,1.586,6.769,2.383c6.343,2.242,12.903,4.56,19.317,6.618
c5.138,1.649,13.753,6.336,13.725,19.211c-0.083,39.464-0.079,70.133-0.075,105.642l0.003,37.635c0,13.125,0,26.252,0.003,39.377
l48.921-28.173c-3.216-2.225-5.558-3.964-6.123-4.387c-2.167-1.619-3.823-3.826-4.773-6.359l-24.818-66.143
c-1.929-5.141-0.709-10.933,3.131-14.859c3.84-3.926,9.605-5.274,14.787-3.457l17.801,6.239
c31.819,11.152,64.72,22.684,97.102,33.931c7.379,2.563,11.284,10.622,8.72,18.002c-2.563,7.377-10.613,11.28-18.002,8.72
c-28.785-9.997-57.964-20.214-86.429-30.191l12.697,33.837c4.39,3.107,11.13,7.632,15.634,9.741
c1.163,0.545,2.192,1.096,3.281,1.682c0.485,0.262,1.021,0.55,1.638,0.873c4.567,2.396,7.468,7.09,7.571,12.246
c0.102,5.157-2.614,9.961-7.083,12.536l-90.905,52.351c-4.276,2.461-9.526,2.516-13.854,0.147c-4.328-2.37-7.106-6.824-7.333-11.755
c-0.035-0.765-0.072-1.424-0.105-2.014c-0.071-1.274-0.139-2.478-0.139-3.786c-0.011-19.515-0.01-39.038-0.01-58.56l-0.003-37.629
c-0.004-33.759-0.007-63.146,0.064-99.877c-4.793-1.615-9.536-3.29-14.168-4.925c-2.225-0.786-4.45-1.573-6.679-2.351
c-4.655-1.627-9.309-3.259-14.011-4.908l-0.003,42.427c-0.004,66.768-0.008,128.86-0.048,198.937
c16.525,9.186,33.092,18.477,49.368,27.689c53.971-31.161,102.885-59.327,149.422-86.04c6.78-3.888,15.419-1.547,19.307,5.225
c3.888,6.775,1.549,15.419-5.225,19.307c-47.684,27.371-97.868,56.271-153.426,88.353
C214.344,421.607,210.96,422.382,207.913,422.382z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#CEE8FA;" cx="123.515" cy="270.234" r="49.107"/>
<path style="fill:#2D527C;" d="M123.512,333.069c-34.648,0-62.837-28.188-62.837-62.837s28.188-62.837,62.837-62.837
s62.837,28.188,62.837,62.837S158.16,333.069,123.512,333.069z M123.512,234.857c-19.506,0-35.377,15.871-35.377,35.377
c0,19.506,15.871,35.377,35.377,35.377s35.377-15.871,35.377-35.377C158.889,250.728,143.019,234.857,123.512,234.857z"/>
<g>
<path style="fill:#CEE8FA;" d="M233.295,270.233c0,14.614-2.879,28.549-8.064,41.301h61.538
c-5.183-12.752-8.064-26.687-8.064-41.301c0-40.501,21.947-75.853,54.582-94.881H178.712
C211.347,194.38,233.295,229.733,233.295,270.233z"/>
<circle style="fill:#CEE8FA;" cx="388.49" cy="270.234" r="49.107"/>
</g>
<g>
<path style="fill:#2D527C;" d="M388.488,333.069c-34.648,0-62.837-28.188-62.837-62.837s28.188-62.837,62.837-62.837
s62.837,28.188,62.837,62.837S423.137,333.069,388.488,333.069z M388.488,234.857c-19.506,0-35.377,15.871-35.377,35.377
c0,19.506,15.87,35.377,35.377,35.377s35.377-15.871,35.377-35.377C423.864,250.728,407.994,234.857,388.488,234.857z"/>
<path style="fill:#2D527C;" d="M498.27,256.503c-7.583,0-13.73,6.147-13.73,13.73c0,52.963-43.089,96.052-96.052,96.052
c-40.795,0-75.706-25.575-89.606-61.523c-0.279-0.721-0.56-1.44-0.82-2.165c-0.258-0.719-0.496-1.447-0.737-2.173
c-0.25-0.751-0.503-1.501-0.733-2.256c-0.231-0.759-0.441-1.528-0.654-2.296c-0.202-0.726-0.409-1.451-0.593-2.182
c-0.21-0.833-0.394-1.676-0.582-2.518c-0.151-0.676-0.31-1.348-0.448-2.028c-0.183-0.914-0.338-1.838-0.494-2.761
c-0.106-0.622-0.224-1.243-0.317-1.867c-0.148-0.991-0.264-1.994-0.382-2.995c-0.067-0.57-0.15-1.138-0.206-1.709
c-0.108-1.094-0.18-2.198-0.251-3.302c-0.032-0.49-0.081-0.978-0.106-1.469c-0.078-1.594-0.122-3.196-0.122-4.81
c0-1.436,0.045-2.86,0.108-4.281c0.019-0.428,0.04-0.855,0.065-1.282c0.067-1.179,0.158-2.353,0.269-3.52
c0.073-0.758,0.161-1.513,0.253-2.267c0.073-0.612,0.15-1.225,0.233-1.833c2.565-18.308,10.399-35.448,22.311-49.353
c0.254-0.295,0.508-0.592,0.766-0.884c0.508-0.579,1.022-1.155,1.543-1.722c0.781-0.844,1.571-1.681,2.381-2.497
c0.28-0.283,0.571-0.557,0.855-0.838c0.754-0.74,1.516-1.472,2.293-2.187c0.239-0.221,0.478-0.442,0.719-0.66
c2.143-1.932,4.37-3.773,6.681-5.508c0.089-0.067,0.178-0.135,0.266-0.2c2.378-1.774,4.84-3.439,7.38-4.991
c0.117-0.071,0.232-0.141,0.349-0.211c14.482-8.764,31.45-13.816,49.578-13.816c25.657,0,49.778,9.991,67.918,28.133
c5.363,5.363,14.057,5.363,19.417,0c5.362-5.362,5.363-14.055,0-19.417c-23.327-23.329-54.345-36.176-87.337-36.176
c-21.261,0-41.285,5.4-58.771,14.901h-59.986v-29.635c0-7.583-6.147-13.73-13.73-13.73c-7.583,0-13.73,6.147-13.73,13.73v29.638
h-59.986c-17.487-9.501-37.51-14.901-58.771-14.901C55.407,146.722,0,202.129,0,270.233c0,68.105,55.407,123.512,123.512,123.512
c48.342,0,90.279-27.921,110.551-68.481h43.873c20.272,40.56,62.209,68.481,110.551,68.481
c68.105,0,123.512-55.407,123.512-123.512C512,262.649,505.853,256.503,498.27,256.503z M123.512,366.285
c-52.963,0-96.052-43.087-96.052-96.052c0-52.963,43.089-96.052,96.052-96.052c18.128,0,35.095,5.051,49.578,13.816
c0.117,0.07,0.233,0.14,0.349,0.211c2.54,1.551,5.002,3.217,7.38,4.991c0.089,0.066,0.178,0.133,0.266,0.2
c2.311,1.735,4.538,3.577,6.681,5.508c0.242,0.218,0.481,0.439,0.719,0.66c0.777,0.715,1.539,1.446,2.293,2.187
c0.284,0.28,0.575,0.555,0.855,0.838c0.81,0.816,1.6,1.653,2.381,2.497c0.523,0.567,1.035,1.142,1.543,1.722
c0.258,0.292,0.512,0.589,0.766,0.884c11.912,13.904,19.746,31.045,22.311,49.352c0.084,0.61,0.161,1.221,0.233,1.833
c0.091,0.755,0.178,1.509,0.253,2.267c0.11,1.167,0.2,2.341,0.269,3.52c0.025,0.427,0.045,0.855,0.065,1.282
c0.063,1.421,0.108,2.845,0.108,4.281c0,1.613-0.043,3.216-0.122,4.81c-0.025,0.492-0.074,0.979-0.106,1.469
c-0.071,1.104-0.143,2.208-0.251,3.302c-0.056,0.573-0.139,1.14-0.206,1.709c-0.118,1.001-0.233,2.003-0.382,2.995
c-0.093,0.625-0.211,1.245-0.317,1.867c-0.157,0.923-0.312,1.847-0.494,2.761c-0.136,0.678-0.297,1.352-0.448,2.028
c-0.188,0.842-0.372,1.685-0.582,2.518c-0.184,0.73-0.391,1.455-0.593,2.182c-0.213,0.768-0.422,1.536-0.654,2.296
c-0.231,0.755-0.483,1.506-0.733,2.256c-0.242,0.726-0.479,1.455-0.737,2.173c-0.259,0.725-0.542,1.444-0.82,2.165
C199.218,340.71,164.307,366.285,123.512,366.285z M268.078,297.804h-24.157c0.065-0.284,0.119-0.57,0.183-0.854
c0.161-0.729,0.321-1.457,0.47-2.19c0.093-0.459,0.177-0.917,0.265-1.377c0.115-0.608,0.231-1.215,0.338-1.826
c0.088-0.503,0.169-1.006,0.251-1.509c0.093-0.574,0.184-1.149,0.269-1.727c0.077-0.52,0.15-1.042,0.22-1.562
c0.077-0.568,0.148-1.137,0.217-1.708c0.063-0.525,0.124-1.049,0.18-1.575c0.062-0.581,0.118-1.163,0.172-1.746
c0.048-0.512,0.096-1.023,0.137-1.536c0.049-0.621,0.091-1.244,0.13-1.867c0.032-0.476,0.066-0.953,0.091-1.431
c0.038-0.713,0.065-1.428,0.089-2.145c0.014-0.391,0.034-0.783,0.045-1.174c0.03-1.111,0.047-2.226,0.047-3.343
c0-1.805-0.047-3.6-0.125-5.386c-0.005-0.122-0.008-0.246-0.014-0.369c-1.328-28.784-12.551-55.026-30.342-75.396h78.912
c-17.791,20.37-29.014,46.612-30.342,75.396c-0.005,0.122-0.008,0.246-0.014,0.369c-0.077,1.788-0.125,3.581-0.125,5.386
c0,1.118,0.016,2.233,0.047,3.343c0.011,0.393,0.03,0.783,0.045,1.174c0.026,0.715,0.052,1.432,0.089,2.145
c0.025,0.478,0.06,0.953,0.091,1.431c0.04,0.623,0.081,1.247,0.13,1.867c0.041,0.512,0.089,1.024,0.137,1.536
c0.054,0.584,0.11,1.166,0.172,1.746c0.056,0.526,0.118,1.05,0.18,1.575c0.069,0.57,0.14,1.14,0.217,1.708
c0.07,0.522,0.143,1.043,0.22,1.562c0.085,0.577,0.176,1.152,0.269,1.727c0.081,0.504,0.163,1.006,0.251,1.509
c0.107,0.611,0.222,1.219,0.338,1.826c0.088,0.459,0.172,0.919,0.265,1.377c0.148,0.733,0.308,1.462,0.47,2.19
C267.959,297.234,268.014,297.521,268.078,297.804z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

65
static/icons/blinder.svg Normal file
View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
<circle style="fill:#CEE8FA;" cx="92.904" cy="408.47" r="43.234"/>
<circle style="fill:#CEE8FA;" cx="404.092" cy="398.903" r="43.234"/>
<path style="fill:#CEE8FA;" d="M153.845,29.329v467.676h121.881V29.329H153.845z M214.785,451.704
c-23.878,0-43.234-19.357-43.234-43.234c0-23.878,19.357-43.234,43.234-43.234s43.234,19.357,43.234,43.234
C258.02,432.347,238.663,451.704,214.785,451.704z"/>
</g>
<g>
<path style="fill:#2D527C;" d="M494.78,472.247l-23.375-127.109c-1.498-8.145-9.312-13.531-17.46-12.035
c-8.145,1.498-13.533,9.315-12.035,17.46l0.891,4.846c-10.355-9.222-23.959-14.738-38.668-14.738c-3.528,0-7.088,0.325-10.58,0.969
c-15.298,2.813-28.584,11.414-37.41,24.219c-1.378,2-2.606,4.071-3.714,6.191L293.034,49.077l90.376-16.62l42.766,232.556
c1.498,8.145,9.315,13.536,17.46,12.035c8.145-1.498,13.533-9.315,12.035-17.46L410.192,12.286
c-1.498-8.144-9.316-13.537-17.46-12.035L287.178,19.662c-2.75-3.255-6.857-5.328-11.453-5.328H153.844H31.964
c-8.282,0-14.995,6.715-14.995,14.995v251.449c0,8.28,6.713,14.995,14.995,14.995s14.995-6.715,14.995-14.995V44.324h91.892
v328.438c-10.664-13.69-27.287-22.522-45.945-22.522s-35.283,8.832-45.947,22.522v-4.998c0-8.28-6.713-14.995-14.995-14.995
s-14.995,6.715-14.995,14.995v129.239c0,8.28,6.713,14.995,14.995,14.995h121.881h121.881c8.282,0,14.995-6.715,14.995-14.995
V202.305l54.695,297.411c0.718,3.911,2.963,7.377,6.238,9.634c2.521,1.736,5.491,2.65,8.51,2.65c0.904,0,1.811-0.082,2.713-0.247
l119.871-22.045C490.889,488.207,496.278,480.39,494.78,472.247z M92.904,380.23c15.572,0,28.24,12.668,28.24,28.24
c0,15.572-12.668,28.241-28.24,28.241s-28.24-12.669-28.24-28.241S77.333,380.23,92.904,380.23z M46.959,444.178
c10.664,13.69,27.287,22.522,45.947,22.522c18.658,0,35.281-8.832,45.945-22.522v37.83H46.959V444.178z M260.731,482.01h-91.892
v-37.805c10.664,13.681,27.296,22.495,45.947,22.495s35.281-8.814,45.945-22.495V482.01z M186.546,408.471
c0-15.572,12.669-28.241,28.24-28.241s28.24,12.669,28.24,28.241s-12.668,28.24-28.24,28.24S186.546,424.042,186.546,408.471z
M260.731,372.736c-10.664-13.681-27.295-22.495-45.945-22.495s-35.281,8.814-45.947,22.495V44.324h91.892V372.736z
M380.834,382.88c4.281-6.211,10.724-10.382,18.144-11.747c1.708-0.313,3.443-0.472,5.157-0.472c13.6,0,25.26,9.732,27.725,23.14
c2.816,15.316-7.352,30.066-22.666,32.883c-1.708,0.313-3.441,0.472-5.155,0.472l0,0c-13.6,0-25.26-9.732-27.725-23.14
C374.947,396.597,376.553,389.091,380.834,382.88z M372.197,479.545l-6.83-37.137c10.355,9.222,23.959,14.738,38.668,14.738l0,0
c3.528,0,7.088-0.325,10.58-0.969c18.351-3.375,33.102-15.068,41.114-30.462l6.842,37.208L372.197,479.545z"/>
<path style="fill:#2D527C;" d="M214.785,287.193c-8.282,0-14.995-6.715-14.995-14.995V86.123c0-8.28,6.713-14.995,14.995-14.995
c8.282,0,14.995,6.715,14.995,14.995v186.075C229.78,280.478,223.067,287.193,214.785,287.193z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="14.582,61.097 14.582,123.446 231.888,303.121 449.195,123.446 449.195,61.097 "/>
<g>
<path style="fill:#2D527C;" d="M497.418,375.76c-8.052,0-14.582,6.528-14.582,14.582v45.981H375.636v-91.962h121.783
c8.052,0,14.582-6.528,14.582-14.582c0-8.053-6.53-14.582-14.582-14.582h-4.996v-57.198c0-8.054-6.53-14.582-14.582-14.582h-97.209
c-8.052,0-14.582,6.528-14.582,14.582v57.198h-4.485l-60.412-50.425l157.333-130.09c3.351-2.769,5.29-6.89,5.29-11.238V61.097
c0-8.054-6.53-14.582-14.582-14.582H14.582C6.53,46.515,0,53.043,0,61.097v3.941v58.406v282.564v0.14v3.803
c0,8.054,6.53,14.582,14.582,14.582h331.89v26.37c0,8.054,6.53,14.582,14.582,14.582h136.364c8.052,0,14.582-6.528,14.582-14.582
v-60.563C512,382.288,505.472,375.76,497.418,375.76z M395.213,272.581h68.046v42.617h-68.046V272.581z M434.613,116.582
L231.888,284.201L29.164,116.582V75.68h405.449V116.582z M29.164,154.423l133.406,110.304L29.164,375.033V154.423z M50.333,395.37
l135.119-111.723l37.144,30.712c2.696,2.23,5.993,3.344,9.292,3.344s6.595-1.116,9.292-3.344l37.108-30.683l68.184,56.913v54.781
H50.333z"/>
<path style="fill:#2D527C;" d="M429.237,410.975c-8.052,0-14.582-6.528-14.582-14.582v-19.773c0-8.053,6.53-14.582,14.582-14.582
s14.582,6.528,14.582,14.582v19.773C443.818,404.447,437.29,410.975,429.237,410.975z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

63
static/icons/blogger.svg Normal file
View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M399.552,276.677c-1.868-38.208-16.346-53.983-58.072-53.983V181.06
c0-44.964-46.629-74.94-76.605-74.94h-63.546c-52.457,0-89.095,37.469-89.095,89.928v119.904c0,51.626,36.638,89.928,89.928,89.928
h108.51c46.401,0,80.425-29.969,87.662-72.618 M207.989,181.06h54.387c11.657,0,20.817,9.159,20.817,20.817
c0,11.657-9.159,20.817-20.817,20.817h-54.387c-11.657,0-20.817-9.159-20.817-20.817C187.173,190.219,196.332,181.06,207.989,181.06
z M304.011,330.94h-96.02c-11.657,0-20.817-9.159-20.817-20.817s9.159-20.817,20.817-20.817h96.02
c11.657,0,20.817,9.159,20.817,20.817S315.668,330.94,304.011,330.94z"/>
<g>
<path style="fill:#2D527C;" d="M310.671,420.024h-108.51c-60.303,0-104.072-43.769-104.072-104.072V196.049
c0-60.303,43.418-104.072,103.239-104.072h63.546c18.839,0,41.336,9.191,58.712,23.983c20.658,17.589,32.037,40.708,32.037,65.1
v28.14c17.446,1.726,30.233,6.915,39.643,15.961c11.403,10.964,17.254,27.113,18.414,50.824
c0.382,7.802-5.635,14.436-13.436,14.818c-7.796,0.363-14.436-5.633-14.818-13.436c-1.556-31.819-11.001-40.53-43.946-40.53
c-7.812,0-14.144-6.332-14.144-14.144v-41.633c0-37.12-41.015-60.796-62.461-60.796h-63.546c-44.131,0-74.951,31.164-74.951,75.784
v119.903c0,44.62,31.164,75.785,75.784,75.785h108.51c38.51,0,67.445-23.882,73.718-60.842c1.307-7.701,8.606-12.889,16.31-11.578
c7.701,1.307,12.885,8.609,11.578,16.31C403.711,386.107,362.878,420.024,310.671,420.024z M304.011,345.084h-96.021
c-19.603,0-34.96-15.356-34.96-34.96c0-19.603,15.356-34.96,34.96-34.96h96.021c19.603,0,34.96,15.356,34.96,34.96
C338.971,329.727,323.614,345.084,304.011,345.084z M207.989,303.451c-3.867,0-6.673,2.806-6.673,6.673s2.806,6.673,6.673,6.673
h96.021c3.865,0,6.673-2.806,6.673-6.673s-2.806-6.673-6.673-6.673H207.989z M262.377,236.837h-54.388
c-19.603,0-34.96-15.356-34.96-34.96s15.356-34.96,34.96-34.96h54.388c19.603,0,34.96,15.356,34.96,34.96
C297.338,221.481,281.98,236.837,262.377,236.837z M207.989,195.204c-3.867,0-6.673,2.806-6.673,6.673
c0,3.867,2.806,6.673,6.673,6.673h54.388c3.867,0,6.673-2.806,6.673-6.673c0-3.867-2.806-6.673-6.673-6.673H207.989z"/>
<path style="fill:#2D527C;" d="M60.76,139.885c-7.812,0-14.144-6.332-14.144-14.144V60.76c0-7.812,6.332-14.144,14.144-14.144
h64.98c7.812,0,14.144,6.332,14.144,14.144s-6.332,14.144-14.144,14.144H74.903v50.837
C74.903,133.553,68.571,139.885,60.76,139.885z"/>
<path style="fill:#2D527C;" d="M451.24,465.384h-64.98c-7.812,0-14.144-6.332-14.144-14.144s6.332-14.144,14.144-14.144h50.836
V386.26c0-7.812,6.332-14.144,14.144-14.144s14.144,6.332,14.144,14.144v64.98C465.384,459.05,459.05,465.384,451.24,465.384z"/>
<path style="fill:#2D527C;" d="M497.856,512H14.144C6.332,512,0,505.668,0,497.856V14.144C0,6.332,6.332,0,14.144,0h483.713
C505.668,0,512,6.332,512,14.144v483.713C512,505.668,505.668,512,497.856,512z M28.287,483.713h455.425V28.287H28.287V483.713z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M256.001,512c-56.352,0-102.197-45.846-102.197-102.197c0-79.024,93.375-143.763,97.348-146.48
c6.557-4.479,15.505-2.798,19.987,3.756c4.482,6.557,2.8,15.505-3.756,19.987c-0.838,0.574-84.818,58.922-84.818,122.736
c0,40.492,32.944,73.436,73.436,73.436s73.436-32.944,73.436-73.436c0-21.166-8.939-43.872-26.568-67.486
c-4.751-6.365-3.444-15.374,2.921-20.125c6.363-4.754,15.374-3.446,20.127,2.919c21.421,28.692,32.283,57.188,32.283,84.692
C358.198,466.154,312.352,512,256.001,512z"/>
<path style="fill:#CEE8FA;" d="M190.505,14.38c39.102,0,56.644,21.916,63.547,34.789c0.867,1.616,3.22,1.615,4.084-0.003
c6.878-12.875,24.324-34.786,63.423-34.786c44.539,0,83.718,30.404,83.718,85.923c0,22.466-4.579,41.713-17.285,63.192
c-25.895,43.772-111.202,100.517-128.726,111.698c-1.937,1.237-4.39,1.24-6.332,0.009c-17.537-11.128-102.86-67.592-128.959-111.707
c-12.706-21.479-17.254-40.725-17.254-63.192C106.722,44.783,145.966,14.38,190.505,14.38z"/>
<path style="fill:#2D527C;" d="M256.096,290.504c-3.851,0-7.609-1.093-10.866-3.159c-10.601-6.727-104.419-67.146-133.631-116.526
c-13.318-22.514-19.257-44.26-19.257-70.516c0-30.196,10.266-55.865,29.69-74.23C139.815,9.26,164.132,0,190.505,0
c33.515,0,53.934,14.275,65.574,27.271C267.695,14.275,288.079,0,321.559,0c26.371,0,50.679,9.261,68.446,26.079
c19.398,18.362,29.652,44.027,29.652,74.224c0,26.217-5.949,47.964-19.29,70.514c-28.995,49.014-122.768,109.737-133.365,116.5
C263.732,289.402,259.961,290.504,256.096,290.504z M190.505,28.761c-34.545,0-69.401,22.121-69.401,71.542
c0,21.093,4.56,37.802,15.249,55.871c20.102,33.979,82.627,79.948,119.73,103.966c37.093-24.14,99.581-70.241,119.531-103.966
c10.712-18.106,15.282-34.815,15.282-55.871c0-49.421-34.825-71.542-69.338-71.542c-29.933,0-44.115,14.782-50.74,27.182
c-2.909,5.44-8.551,8.818-14.727,8.818c-6.168,0-11.806-3.372-14.715-8.798C234.724,43.554,220.496,28.761,190.505,28.761z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path style="fill:#2D527C;" d="M453.812,333.052H260.887c-29.858,0-54.148-24.291-54.148-54.148V54.15
C206.738,24.291,231.03,0,260.887,0h192.924c29.858,0,54.15,24.291,54.15,54.15v224.753
C507.962,308.761,483.671,333.052,453.812,333.052z M260.887,28.593c-14.091,0-25.555,11.464-25.555,25.556v224.753
c0,14.091,11.464,25.555,25.555,25.555h192.924c14.091,0,25.556-11.464,25.556-25.555V54.15c0-14.092-11.466-25.556-25.556-25.556
H260.887z"/>
<path style="fill:#2D527C;" d="M376.364,411.222h-38.027c-20.404,0-37.007-16.601-37.007-37.007v-47.752
c0-7.896,6.402-14.297,14.297-14.297s14.297,6.401,14.297,14.297v47.752c0,4.639,3.774,8.414,8.413,8.414h38.027
c4.639,0,8.414-3.774,8.414-8.414v-12.521c0-7.896,6.402-14.297,14.297-14.297c7.895,0,14.297,6.401,14.297,14.297v12.521
C413.37,394.621,396.768,411.222,376.364,411.222z"/>
<path style="fill:#2D527C;" d="M293.374,118.997h-72.32c-7.895,0-14.297-6.401-14.297-14.297s6.402-14.297,14.297-14.297h72.32
c7.895,0,14.297,6.401,14.297,14.297S301.27,118.997,293.374,118.997z"/>
<path style="fill:#2D527C;" d="M293.374,194.639h-72.32c-7.895,0-14.297-6.401-14.297-14.297s6.402-14.297,14.297-14.297h72.32
c7.895,0,14.297,6.401,14.297,14.297S301.27,194.639,293.374,194.639z"/>
<path style="fill:#2D527C;" d="M321.192,270.279H221.054c-7.895,0-14.297-6.401-14.297-14.297c0-7.896,6.402-14.297,14.297-14.297
h100.139c7.895,0,14.297,6.401,14.297,14.297C335.489,263.878,329.088,270.279,321.192,270.279z"/>
</g>
<path style="fill:#CEE8FA;" d="M283.621,234.279V104.701h147.457v129.578c0,12.091-9.802,21.892-21.892,21.892H305.512
C293.423,256.171,283.621,246.369,283.621,234.279z"/>
<g>
<path style="fill:#2D527C;" d="M409.187,270.467H305.513c-19.955,0-36.189-16.234-36.189-36.189V104.701
c0-7.896,6.402-14.297,14.297-14.297h147.459c7.895,0,14.297,6.401,14.297,14.297v129.578
C445.375,254.232,429.141,270.467,409.187,270.467z M297.917,118.997v115.281c0,4.189,3.408,7.596,7.596,7.596h103.674
c4.189,0,7.596-3.407,7.596-7.596V118.997H297.917z"/>
<path style="fill:#2D527C;" d="M305.619,512h-158.3c-37.197,0-67.458-30.261-67.458-67.46v-11.261
c0-7.896,6.402-14.297,14.297-14.297s14.297,6.401,14.297,14.297v11.261c0,21.43,17.435,38.867,38.865,38.867h158.3
c21.431,0,38.867-17.435,38.867-38.867v-43.051c0-7.896,6.402-14.297,14.297-14.297c7.895,0,14.297,6.401,14.297,14.297v43.051
C373.077,481.737,342.816,512,305.619,512z"/>
<path style="fill:#2D527C;" d="M94.158,380.382c-7.895,0-14.297-6.401-14.297-14.297V216.904c0-7.896,6.402-14.297,14.297-14.297
s14.297,6.401,14.297,14.297v149.181C108.454,373.981,102.054,380.382,94.158,380.382z"/>
</g>
<path style="fill:#CEE8FA;" d="M127.424,166.526c-19.861,0-28.77,11.131-32.277,17.67c-0.44,0.821-1.636,0.821-2.074-0.001
c-3.494-6.539-12.355-17.669-32.214-17.669c-22.623,0-42.522,15.443-42.522,43.643c0,11.411,2.326,21.187,8.779,32.097
C40.268,264.499,83.597,293.32,92.498,299c0.984,0.628,2.23,0.629,3.215,0.004c8.908-5.653,52.245-34.332,65.501-56.739
c6.455-10.91,8.764-20.686,8.764-32.097C169.979,181.969,150.046,166.526,127.424,166.526z"/>
<path style="fill:#2D527C;" d="M94.109,313.767L94.109,313.767c-3.301,0-6.518-0.939-9.304-2.718
c-9.013-5.75-54.759-35.75-69.993-61.505c-7.45-12.592-10.772-24.737-10.772-39.376c0-33.573,23.897-57.94,56.819-57.94
c15.347,0,26.043,5.193,33.264,11.156c7.23-5.96,17.939-11.156,33.302-11.156c32.942,0,56.852,24.367,56.852,57.94
c0,14.658-3.317,26.803-10.755,39.375c-15.34,25.932-61.123,55.805-70.143,61.529C100.598,312.837,97.394,313.767,94.109,313.767z
M60.858,180.822c-13.02,0-28.226,7.686-28.226,29.346c0,9.477,1.967,16.667,6.788,24.817c8.827,14.921,36.884,36.026,54.704,47.986
c17.826-11.909,45.896-32.959,54.786-47.986c4.809-8.13,6.771-15.32,6.771-24.817c0-21.661-15.222-29.346-28.259-29.346
c-9.453,0-16.072,3.408-19.676,10.129c-2.706,5.035-7.929,8.156-13.636,8.156c-5.727,0-10.958-3.134-13.652-8.183
C76.879,184.224,70.282,180.822,60.858,180.822z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 511.997 511.997" style="enable-background:new 0 0 511.997 511.997;" xml:space="preserve">
<path style="fill:#2D527C;" d="M268.971,217.454v-46.508c18.563,3.256,21.355,13.546,21.775,19.596
c0.108,1.551,1.388,2.748,2.942,2.748h20.275c1.703,0,3.043-1.442,2.956-3.142c-1.316-25.508-18.8-41.921-47.948-45.607v-15.637
c0-1.63-1.321-2.951-2.951-2.951h-20.275c-1.63,0-2.951,1.321-2.951,2.951v15.641c-30.328,3.835-48.027,21.447-48.027,48.749
s17.701,44.912,48.027,48.747v46.508c-18.563-3.256-21.355-13.546-21.775-19.596c-0.108-1.551-1.388-2.748-2.942-2.748h-20.275
c-1.703,0-3.043,1.442-2.956,3.142c1.316,25.508,18.8,41.921,47.948,45.607v15.641c0,1.63,1.321,2.951,2.951,2.951h20.275
c1.63,0,2.951-1.321,2.951-2.951v-15.641c30.328-3.835,48.027-21.447,48.027-48.749C316.999,238.9,299.299,221.288,268.971,217.454z
M242.794,215.636c-21.845-3.83-21.85-17.403-21.85-22.344c0-4.942,0.005-18.514,21.85-22.346V215.636z M268.971,288.548v-44.692
c21.845,3.83,21.85,17.404,21.85,22.346C290.821,271.144,290.816,284.717,268.971,288.548z"/>
<path style="fill:#CEE8FA;" d="M126.639,148.871c-11.584,8.705-25.952,13.879-41.472,13.879l0,0
c-38.109,0-69.288-31.18-69.288-69.288V415.9c0,38.109,31.18,69.288,69.288,69.288l0,0c15.52,0,29.889-5.173,41.472-13.879V148.871z
"/>
<path style="fill:#2D527C;" d="M294.927,402.153H142.499V148.871c0-6.009-3.397-11.503-8.773-14.188
c-5.375-2.683-11.804-2.1-16.614,1.51c-9.311,6.997-20.359,10.696-31.946,10.696c-29.461,0-53.427-23.967-53.427-53.427
c0-0.308-0.029-0.609-0.046-0.912c2.342-27.894,25.776-49.88,54.266-49.88c8.758,0,15.859-7.102,15.859-15.859
s-7.102-15.859-15.859-15.859C38.429,10.949,0,49.876,0,97.404c0,0.939,0.019,2.487,0.019,2.487V415.9
c0,46.95,38.197,85.146,85.148,85.146c18.514,0,36.15-5.9,50.999-17.06c3.987-2.996,6.331-7.692,6.331-12.678v-37.436h152.428
c8.758,0,15.859-7.102,15.859-15.859C310.785,409.255,303.685,402.153,294.927,402.153z M110.78,462.736
c-7.828,4.33-16.554,6.591-25.611,6.591h-0.003c-29.461,0-53.427-23.967-53.427-53.427V159.713
c14.621,11.814,33.211,18.895,53.429,18.895c8.805,0,17.41-1.334,25.611-3.933v288.061H110.78z"/>
<path style="fill:#CEE8FA;" d="M426.852,164.353L426.852,164.353c-15.636,0-30.1-5.256-41.728-14.078v320.833
c11.628,8.823,26.092,14.078,41.728,14.078l0,0c38.109,0,69.288-31.18,69.288-69.288V95.065
C496.141,133.173,464.961,164.353,426.852,164.353z"/>
<path style="fill:#2D527C;" d="M511.903,93.35c-1.992-45.774-39.841-82.401-86.096-82.401H160.775
c-8.758,0-15.859,7.102-15.859,15.859s7.102,15.859,15.859,15.859h265.032c29.689,0,53.889,23.878,54.447,53.435
c-0.558,28.982-24.289,52.39-53.402,52.39c-11.669,0-22.784-3.752-32.141-10.853c-4.797-3.643-11.244-4.249-16.64-1.572
c-5.394,2.679-8.807,8.182-8.807,14.205V471.11c0,4.961,2.322,9.636,6.274,12.635c14.921,11.32,32.664,17.303,51.312,17.303
c46.95,0,85.146-38.197,85.146-85.146v-86.16V97.142C512,97.142,511.964,93.913,511.903,93.35z M480.281,415.9
c0,29.46-23.967,53.427-53.427,53.427c-9.156,0-17.974-2.312-25.868-6.739V176.197c8.277,2.655,16.968,4.016,25.868,4.016
c20.216,0,38.808-7.081,53.427-18.895V329.74V415.9z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M256,512C114.841,512,0,397.159,0,256S114.841,0,256,0c48.07,0,94.924,13.404,135.497,38.761
c39.452,24.655,71.474,59.555,92.609,100.923c3.85,7.535,0.862,16.762-6.671,20.611c-7.535,3.85-16.762,0.861-20.611-6.671
C418.069,77.762,341.118,30.637,256,30.637C131.735,30.637,30.637,131.736,30.637,256c0,124.265,101.097,225.363,225.363,225.363
S481.363,380.265,481.363,256c0-8.459,6.86-15.319,15.319-15.319S512,247.541,512,256C512,397.159,397.16,512,256,512z"/>
<g>
<polygon style="fill:#CEE8FA;" points="370.222,167.236 242.549,80.328 242.549,254.143 "/>
<polygon style="fill:#CEE8FA;" points="370.222,344.764 242.549,257.857 242.549,431.672 "/>
</g>
<path style="fill:#2D527C;" d="M378.844,332.1l-111.44-75.858l60.103-41.232c0.533-0.366,1.025-0.767,1.498-1.186l49.839-33.925
c4.19-2.852,6.699-7.593,6.699-12.664c0-5.07-2.509-9.81-6.699-12.664L251.169,67.664c-4.692-3.192-10.761-3.531-15.783-0.878
c-5.017,2.655-8.156,7.866-8.156,13.542v149.846l-76.944-51.4c-7.036-4.698-16.547-2.806-21.247,4.229
c-4.698,7.034-2.806,16.547,4.23,21.247l78.919,52.719l-79.075,54.248c-6.976,4.786-8.752,14.321-3.966,21.298
c2.969,4.328,7.765,6.654,12.646,6.654c2.986,0,6.003-0.87,8.652-2.688l76.787-52.678V431.67c0,5.676,3.139,10.885,8.156,13.542
c2.249,1.189,4.707,1.777,7.161,1.777c3.022,0,6.033-0.893,8.621-2.655l127.675-86.908c4.19-2.852,6.699-7.593,6.699-12.664
S383.033,334.954,378.844,332.1z M257.867,109.287L343,167.236l-85.132,57.949V109.287z M257.867,402.713V287.486l52.958,35.377
l32.175,21.901L257.867,402.713z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M294.647,255.999H103.525v227.657h191.122c62.865,0,113.828-50.962,113.828-113.829l0,0
C408.475,306.963,357.513,255.999,294.647,255.999z M294.647,411.907H175.275v-84.156h119.372c23.201,0,42.078,18.876,42.078,42.078
C336.725,393.03,317.849,411.907,294.647,411.907z"/>
<g>
<path style="fill:#2D527C;" d="M258.751,169.503c-8.143,0-14.746,6.603-14.746,14.746s6.603,14.746,14.746,14.746
c31.332,0,56.824-25.492,56.824-56.824s-25.492-56.824-56.824-56.824h-83.475c-8.143,0-14.746,6.603-14.746,14.746v84.156
c0,8.143,6.603,14.746,14.746,14.746c8.143,0,14.746-6.603,14.746-14.746v-69.41h68.729c15.072,0,27.332,12.26,27.332,27.332
S273.821,169.503,258.751,169.503z"/>
<path style="fill:#2D527C;" d="M294.647,313.005H175.275c-8.143,0-14.746,6.603-14.746,14.746v84.156
c0,8.143,6.603,14.746,14.746,14.746h119.372c31.332,0,56.824-25.492,56.824-56.824S325.981,313.005,294.647,313.005z
M294.647,397.161H190.021v-54.664h104.626c15.072,0,27.332,12.26,27.332,27.332C321.979,384.901,309.719,397.161,294.647,397.161z
"/>
<path style="fill:#2D527C;" d="M294.647,241.253H118.269V43.09h140.48c54.634,0,99.082,44.449,99.082,99.082
c0,22.579-7.395,43.842-21.383,61.49c-5.059,6.382-3.986,15.657,2.396,20.717c2.71,2.148,5.941,3.19,9.15,3.19
c4.349,0,8.656-1.914,11.567-5.586c18.161-22.914,27.762-50.513,27.762-79.81c0-70.896-57.678-128.574-128.574-128.574H118.212
C117.624,5.991,111.28,0,103.523,0c-8.143,0-14.746,6.603-14.746,14.746v241.253v227.657v13.597
c0,8.143,6.603,14.746,14.746,14.746c7.755,0,14.1-5.991,14.689-13.597h176.437c70.896,0,128.574-57.678,128.574-128.574
S365.545,241.253,294.647,241.253z M294.647,468.91H118.269V270.745h176.378c54.634,0,99.082,44.449,99.082,99.082
S349.281,468.91,294.647,468.91z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#CEE8FA;" d="M320.41,222.75l-64.411-73.286l-64.411,73.288c-9.962,13.369-15.85,29.942-15.85,47.896
c0,44.326,35.935,80.26,80.261,80.26s80.261-35.933,80.261-80.26C336.26,252.694,330.371,236.121,320.41,222.75z"/>
<path style="fill:#2D527C;" d="M255.999,365.723c-52.425,0-95.076-42.651-95.076-95.074c0-20.631,6.496-40.253,18.787-56.748
c0.237-0.32,0.489-0.63,0.751-0.929l64.411-73.288c2.813-3.2,6.868-5.034,11.129-5.034c4.261,0,8.314,1.834,11.129,5.034
l64.411,73.286c0.262,0.299,0.514,0.609,0.751,0.929c12.29,16.495,18.787,36.119,18.787,56.748
C351.075,323.072,308.425,365.723,255.999,365.723z M203.132,232.06c-8.231,11.246-12.578,24.575-12.578,38.588
c0,36.086,29.359,65.445,65.446,65.445s65.446-29.359,65.446-65.445c0-14.012-4.348-27.344-12.578-38.588l-52.868-60.154
L203.132,232.06z"/>
<g>
<circle style="fill:#CEE8FA;" cx="156.356" cy="447.409" r="49.769"/>
<circle style="fill:#CEE8FA;" cx="355.645" cy="447.409" r="49.769"/>
</g>
<path style="fill:#2D527C;" d="M392.174,394.192c30.59-33.693,47.79-77.614,47.79-123.544c0-8.182-6.634-14.815-14.815-14.815
s-14.815,6.633-14.815,14.815c0,42.67-17.705,83.28-48.784,112.464c-1.947-0.178-3.914-0.281-5.905-0.281
c-20.034,0-37.968,9.169-49.822,23.532c-11.855-14.363-29.788-23.532-49.822-23.532s-37.968,9.169-49.822,23.532
c-11.855-14.363-29.788-23.532-49.822-23.532c-1.991,0-3.959,0.104-5.905,0.281c-31.079-29.184-48.784-69.794-48.784-112.464
c0-33.485,10.556-65.351,30.525-92.153l1.787-2.399l122.023-138.84l122.024,138.84l1.787,2.399
c4.889,6.561,14.167,7.917,20.73,3.028c6.561-4.889,7.917-14.17,3.028-20.732l-2.144-2.877c-0.237-0.32-0.489-0.63-0.751-0.929
L267.128,5.034C264.315,1.834,260.26,0,255.999,0s-8.314,1.834-11.129,5.034L111.326,156.986c-0.262,0.299-0.513,0.609-0.751,0.927
l-2.144,2.879c-23.81,31.957-36.396,69.945-36.396,109.857c0,45.931,17.2,89.851,47.79,123.544
c-16.929,11.656-28.055,31.16-28.055,53.222c0,35.612,28.972,64.584,64.584,64.584c20.034,0,37.968-9.169,49.822-23.532
c11.855,14.363,29.788,23.532,49.822,23.532c8.181,0,14.815-6.633,14.815-14.815s-6.634-14.815-14.815-14.815
c-19.274,0-34.956-15.68-34.956-34.954c0-19.274,15.682-34.954,34.956-34.954s34.956,15.68,34.956,34.954
c0,0.696,0.065,1.375,0.157,2.046C292.198,484.127,320.719,512,355.645,512c35.612,0,64.584-28.972,64.584-64.584
C420.229,425.354,409.103,405.849,392.174,394.192z M156.355,482.37c-19.274,0-34.954-15.68-34.954-34.954
s15.68-34.954,34.954-34.954s34.956,15.68,34.956,34.954S175.627,482.37,156.355,482.37z M355.645,482.37
c-19.274,0-34.956-15.68-34.956-34.954s15.682-34.954,34.956-34.954c19.274,0,34.954,15.68,34.954,34.954
S374.92,482.37,355.645,482.37z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

60
static/icons/book.svg Normal file
View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#CEE8FA;" cx="256" cy="176.683" r="43.368"/>
<g>
<path style="fill:#2D527C;" d="M256,234.276c-31.755,0-57.59-25.835-57.59-57.59s25.835-57.591,57.59-57.591
s57.59,25.835,57.59,57.59S287.755,234.276,256,234.276z M256,147.538c-16.071,0-29.146,13.074-29.146,29.146
s13.074,29.147,29.146,29.147c16.071,0,29.146-13.074,29.146-29.146S272.071,147.538,256,147.538z"/>
<path style="fill:#2D527C;" d="M256,352.361c-3.452,0-6.903-1.25-9.624-3.752c-4.005-3.681-98.091-91.092-98.091-172.264
c0-12.658,2.179-25.06,6.474-36.857c2.688-7.378,10.849-11.184,18.23-8.498c7.38,2.688,11.184,10.85,8.498,18.23
c-3.157,8.668-4.757,17.795-4.757,27.123c0,54.928,56.306,118.276,79.299,141.852c5.78-5.898,13.651-14.29,22.168-24.411
c5.057-6.012,14.029-6.784,20.039-1.725c6.01,5.059,6.781,14.029,1.724,20.039c-18.411,21.878-33.717,35.941-34.359,36.53
C262.884,351.118,259.442,352.361,256,352.361z"/>
<path style="fill:#2D527C;" d="M318.921,276.814c-2.61,0-5.249-0.717-7.615-2.221c-6.629-4.213-8.589-13.002-4.375-19.631
c18.806-29.592,28.341-56.041,28.341-78.616c0-43.709-35.56-79.27-79.27-79.27c-17.007,0-33.213,5.302-46.868,15.333
c-6.33,4.649-15.232,3.288-19.881-3.044c-4.651-6.329-3.288-15.231,3.042-19.881c18.571-13.642,40.602-20.853,63.708-20.853
c59.393,0,107.715,48.321,107.715,107.715c0,28.065-11.028,59.647-32.778,93.872C328.228,274.482,323.624,276.814,318.921,276.814z
"/>
</g>
<path style="fill:#CDE6F8;" d="M403.2,405.333H62.578v2.64c17.95,6.346,30.815,23.458,30.815,43.583l0,0
c0,20.123-12.864,37.235-30.815,43.583v2.64H403.2c25.527,0,46.222-20.695,46.222-46.222l0,0
C449.422,426.028,428.727,405.333,403.2,405.333z"/>
<path style="fill:#2D527C;" d="M358.4,0H62.578c-7.855,0-14.222,6.369-14.222,14.222v335.171c0,7.854,6.367,14.222,14.222,14.222
S76.8,357.247,76.8,349.393V28.444h281.6c42.348,0,76.8,34.453,76.8,76.8v295.067c-9.287-5.821-20.254-9.2-32-9.2H62.578
c-7.855,0-14.222,6.369-14.222,14.222v2.64c0,6.027,3.799,11.401,9.482,13.409c12.76,4.511,21.333,16.637,21.333,30.174
s-8.573,25.663-21.333,30.174c-5.683,2.008-9.482,7.38-9.482,13.409v2.64c0,7.854,6.367,14.222,14.222,14.222H403.2
c33.33,0,60.444-27.115,60.444-60.444V105.244C463.644,47.212,416.432,0,358.4,0z M403.2,483.556H98.426
c5.87-9.395,9.189-20.423,9.189-32s-3.318-22.605-9.189-32H403.2c17.646,0,32,14.356,32,32S420.846,483.556,403.2,483.556z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

49
static/icons/bookmark.svg Normal file
View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="255.982,436.385 96.287,496.054 96.287,105.176 255.982,105.176 "/>
<g>
<path style="fill:#2D527C;" d="M96.288,512c-3.207,0-6.385-0.966-9.093-2.845c-4.293-2.979-6.855-7.874-6.855-13.102V105.176
c0-8.806,7.141-15.946,15.946-15.946h159.695c8.806,0,15.946,7.141,15.946,15.946v331.208c0,6.654-4.132,12.609-10.365,14.937
l-159.695,59.67C100.058,511.667,98.168,512,96.288,512z M112.233,121.122v351.949l127.802-47.751V121.122H112.233z"/>
<path style="fill:#2D527C;" d="M415.71,512c-1.88,0-3.77-0.332-5.58-1.009l-159.693-59.67c-6.233-2.328-10.365-8.283-10.365-14.937
V105.176c0-8.806,7.141-15.946,15.946-15.946h73.865c8.806,0,15.946,7.141,15.946,15.946c0,8.806-7.141,15.946-15.946,15.946
h-57.919V425.32l127.802,47.751V197.801c0-8.806,7.141-15.946,15.946-15.946s15.946,7.141,15.946,15.946v298.253
c0,5.226-2.561,10.123-6.855,13.102C422.097,511.034,418.917,512,415.71,512z"/>
<path style="fill:#2D527C;" d="M415.712,120.492c-8.806,0-15.946-7.141-15.946-15.946V46.705c0-8.168-6.645-14.813-14.813-14.813
H127.046c-8.168,0-14.813,6.645-14.813,14.813v57.839c0,8.806-7.141,15.946-15.946,15.946S80.34,113.35,80.34,104.544V46.705
C80.34,20.952,101.292,0,127.046,0h257.907c25.753,0,46.705,20.952,46.705,46.705v57.839
C431.658,113.352,424.519,120.492,415.712,120.492z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

57
static/icons/box.svg Normal file
View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<polygon style="fill:#CEE8FA;" points="411.881,131.089 411.881,274.448 369.702,248.73 327.522,274.448 327.522,131.089 "/>
<g>
<path style="fill:#2D527C;" d="M411.881,288.535c-2.544,0-5.084-0.687-7.334-2.06l-34.846-21.246l-34.846,21.246
c-4.349,2.651-9.79,2.747-14.231,0.256c-4.44-2.495-7.19-7.19-7.19-12.284V131.089c0-7.779,6.307-14.087,14.087-14.087h84.358
c7.78,0,14.087,6.308,14.087,14.087v143.359c0,5.092-2.75,9.789-7.19,12.284C416.634,287.935,414.256,288.535,411.881,288.535z
M369.702,234.644c2.541,0,5.081,0.686,7.334,2.06l20.759,12.656V145.176h-56.185v104.183l20.759-12.656
C364.619,235.33,367.16,234.644,369.702,234.644z"/>
<path style="fill:#2D527C;" d="M142.28,261.07H14.087C6.307,261.07,0,254.762,0,246.983s6.307-14.087,14.087-14.087H142.28
c7.78,0,14.087,6.308,14.087,14.087S150.06,261.07,142.28,261.07z"/>
<path style="fill:#2D527C;" d="M142.28,325.166H56.352c-7.78,0-14.087-6.308-14.087-14.087s6.307-14.087,14.087-14.087h85.929
c7.78,0,14.087,6.308,14.087,14.087S150.06,325.166,142.28,325.166z"/>
<path style="fill:#2D527C;" d="M142.28,389.262H98.617c-7.78,0-14.087-6.308-14.087-14.087s6.307-14.087,14.087-14.087h43.664
c7.78,0,14.087,6.308,14.087,14.087S150.06,389.262,142.28,389.262z"/>
<path style="fill:#2D527C;" d="M421.811,446.305H187.915c-32.394,0-58.75-26.355-58.75-58.75V247.294
c0-7.779,6.307-14.087,14.087-14.087s14.087,6.308,14.087,14.087v140.261c0,16.859,13.716,30.576,30.576,30.576H421.81
c16.861,0,30.577-13.716,30.577-30.576V118.942c0-7.779,6.307-14.087,14.087-14.087c7.78,0,14.087,6.308,14.087,14.087v268.614
C480.561,419.95,454.205,446.305,421.811,446.305z"/>
</g>
<rect x="111.808" y="79.782" style="fill:#CEE8FA;" width="386.096" height="90.664"/>
<path style="fill:#2D527C;" d="M497.913,184.537h-386.1c-7.78,0-14.087-6.308-14.087-14.087V79.782
c0-7.779,6.307-14.087,14.087-14.087h386.1c7.78,0,14.087,6.308,14.087,14.087v90.667C512,178.229,505.693,184.537,497.913,184.537z
M125.9,156.363h357.926V93.869H125.9V156.363z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

54
static/icons/box_1.svg Normal file
View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M411.558,469.231H100.442c-35.853,0-65.023-29.17-65.023-65.023V101.592
c0-8.12,6.584-14.705,14.705-14.705s14.705,6.585,14.705,14.705v302.616c0,19.638,15.976,35.612,35.612,35.612h311.116
c19.636,0,35.612-15.974,35.612-35.612V216.776c0-8.12,6.584-14.705,14.705-14.705s14.705,6.585,14.705,14.705v187.432
C476.581,440.061,447.411,469.231,411.558,469.231z"/>
<rect x="14.705" y="57.469" style="fill:#CEE8FA;" width="482.586" height="102.144"/>
<g>
<path style="fill:#2D527C;" d="M497.295,174.325H14.705C6.584,174.325,0,167.74,0,159.619V57.474
c0-8.12,6.584-14.705,14.705-14.705h482.589c8.122,0,14.705,6.585,14.705,14.705v102.145
C512,167.74,505.416,174.325,497.295,174.325z M29.411,144.914h453.178V72.18H29.411V144.914z"/>
<path style="fill:#2D527C;" d="M334.674,278.057H177.326c-8.122,0-14.705-6.585-14.705-14.705v-44.115
c0-8.12,6.584-14.705,14.705-14.705s14.705,6.585,14.705,14.705v29.409h127.937v-29.409c0-8.12,6.584-14.705,14.705-14.705
c8.122,0,14.705,6.585,14.705,14.705v44.115C349.379,271.471,342.796,278.057,334.674,278.057z"/>
</g>
<path style="fill:#CEE8FA;" d="M50.125,395.703v8.504c0,27.789,22.527,50.317,50.317,50.317h311.117
c27.789,0,50.317-22.527,50.317-50.317v-8.504H50.125z"/>
<path style="fill:#2D527C;" d="M411.558,469.231H100.442c-35.853,0-65.023-29.17-65.023-65.023v-8.504
c0-8.12,6.584-14.705,14.705-14.705h411.75c8.122,0,14.705,6.585,14.705,14.705v8.504
C476.581,440.061,447.411,469.231,411.558,469.231z M65.371,410.409c2.941,16.692,17.549,29.411,35.071,29.411h311.116
c17.523,0,32.13-12.719,35.071-29.411H65.371z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

61
static/icons/bridge.svg Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<g>
<rect x="32.511" y="133.38" style="fill:#CEE8FA;" width="87.594" height="91.304"/>
<rect x="13.045" y="353.807" style="fill:#CEE8FA;" width="126.532" height="106.979"/>
<rect x="391.885" y="133.38" style="fill:#CEE8FA;" width="87.594" height="91.304"/>
<rect x="372.423" y="353.807" style="fill:#CEE8FA;" width="126.532" height="106.979"/>
</g>
<path style="fill:#2D527C;" d="M498.955,340.76H480.42V237.686c6.768-0.479,12.113-6.107,12.113-12.998v-91.304
c0-6.89-5.346-12.519-12.113-12.998V68.153c0-4.812-2.649-9.234-6.894-11.503L441.84,39.708c-3.843-2.055-8.458-2.055-12.302,0
L397.851,56.65c-4.243,2.268-6.894,6.691-6.894,11.503v52.233c-6.768,0.479-12.113,6.107-12.113,12.998v11.732H133.155v-11.732
c0-6.89-5.346-12.519-12.113-12.998V68.153c0-4.812-2.649-9.234-6.894-11.503L82.461,39.708c-3.843-2.055-8.458-2.055-12.302,0
L38.474,56.65c-4.243,2.268-6.894,6.691-6.894,11.503v52.233c-6.768,0.479-12.113,6.107-12.113,12.998v91.304
c0,6.89,5.346,12.519,12.113,12.998V340.76H13.045C5.84,340.76,0,346.6,0,353.805v106.983c0,7.205,5.84,13.045,13.045,13.045
h126.532h0.001h0.001c0.421,0,0.841-0.023,1.26-0.064c0.158-0.016,0.31-0.043,0.466-0.064c0.257-0.034,0.514-0.068,0.77-0.117
c0.184-0.035,0.361-0.082,0.543-0.125c0.223-0.053,0.446-0.106,0.667-0.171c0.185-0.055,0.365-0.119,0.547-0.181
c0.211-0.073,0.423-0.146,0.63-0.231c0.177-0.072,0.351-0.151,0.524-0.231c0.203-0.093,0.406-0.188,0.605-0.292
c0.171-0.089,0.338-0.184,0.505-0.28c0.19-0.111,0.38-0.223,0.566-0.344c0.17-0.11,0.334-0.226,0.497-0.342
c0.171-0.123,0.342-0.248,0.507-0.381c0.168-0.133,0.331-0.273,0.493-0.415c0.093-0.082,0.192-0.153,0.283-0.237l107.598-99.704
l106.792,98.958c2.143,2.328,5.115,3.877,8.455,4.165c0.143,0.013,0.286,0.013,0.429,0.022c0.235,0.013,0.467,0.035,0.704,0.035
h126.533c7.205,0,13.045-5.84,13.045-13.045V353.805C512,346.6,506.16,340.76,498.955,340.76z M417.047,340.76V237.733h37.284
V340.76H417.047z M466.444,146.428v65.215h-61.51v-53.483v-11.732C404.934,146.428,466.444,146.428,466.444,146.428z
M435.689,66.003l18.642,9.967v44.369h-37.284V75.971L435.689,66.003z M378.845,171.205v53.483c0,6.89,5.346,12.519,12.113,12.998
V340.76h-18.535c-7.205,0-13.045,5.84-13.045,13.045v77.035l-69.057-63.99h15.557c7.204,0,13.045-5.84,13.045-13.045
c0-7.205-5.84-13.045-13.045-13.045H121.042V237.733h184.837c7.204,0,13.045-5.84,13.045-13.045c0-7.205-5.84-13.045-13.045-13.045
H133.155v-40.438H378.845z M45.556,211.643v-65.215h61.51v65.215H45.556z M152.622,366.849h69.139l-69.139,64.066V366.849z
M76.311,66.003l18.642,9.967v44.369H57.669V75.971L76.311,66.003z M57.669,237.733h37.284V340.76H57.669V237.733z M126.532,447.743
H26.089v-80.893h100.443V447.743z M485.911,447.743H385.468v-80.893h100.443V447.743z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<path style="fill:#2D527C;" d="M430.594,378.955h-73.146c-7.622,0-13.801-6.179-13.801-13.801V140.488H168.354v155.659
c0,7.622-6.179,13.801-13.801,13.801s-13.801-6.179-13.801-13.801v-169.46c0-7.622,6.179-13.801,13.801-13.801h202.895
c7.622,0,13.801,6.179,13.801,13.801v224.665h59.345c7.622,0,13.801,6.179,13.801,13.801
C444.395,372.776,438.216,378.955,430.594,378.955z"/>
<g>
<path style="fill:#CEE8FA;" d="M430.594,126.687v168.475c38.307-6.027,67.606-39.176,67.606-79.175v-89.3H430.594z"/>
<rect x="154.546" y="126.694" style="fill:#CEE8FA;" width="202.891" height="169.465"/>
<path style="fill:#CEE8FA;" d="M81.406,126.687H13.801v89.3c0,40,29.3,73.148,67.606,79.175V126.687H81.406z"/>
</g>
<path style="fill:#2D527C;" d="M498.199,112.886h-53.804v-5.827c0-7.622-6.179-13.801-13.801-13.801h-73.146
c-7.622,0-13.801,6.179-13.801,13.801v5.827h-13.58V45.269c0-7.622-6.179-13.801-13.801-13.801h-120.53
c-7.622,0-13.801,6.179-13.801,13.801v67.617h-13.58v-5.827c0-7.622-6.179-13.801-13.801-13.801H81.406
c-7.622,0-13.801,6.179-13.801,13.801v5.827H13.801C6.179,112.886,0,119.065,0,126.687v89.3v250.744
c0,7.622,6.179,13.801,13.801,13.801h484.398c7.622,0,13.801-6.179,13.801-13.801V215.988v-89.3
C512,119.065,505.821,112.886,498.199,112.886z M484.398,140.488v75.499c0,27.192-16.095,50.748-40.003,60.968V140.488H484.398z
M209.536,59.07h92.927v53.816h-92.927L209.536,59.07L209.536,59.07z M343.646,140.488v141.858H168.354V140.488H343.646z
M27.602,140.488h40.003v136.467c-23.908-10.22-40.003-33.777-40.003-60.968V140.488z M269.802,452.929v-83.643
c0-7.622-6.179-13.801-13.801-13.801s-13.801,6.179-13.801,13.801v83.643H27.602V282.475c11.175,11.146,24.95,19.3,40.003,23.701
v58.978c0,7.622,6.179,13.801,13.801,13.801h73.146c7.622,0,13.801-6.179,13.801-13.801c0-7.622-6.179-13.801-13.801-13.801H95.207
v-56.19V126.687v-5.827h45.544v5.827v169.46l0,0c0,7.622,6.179,13.801,13.801,13.801c0.004,0,0.008,0,0.014,0h189.08v55.205
c0,7.622,6.179,13.801,13.801,13.801h73.146c7.622,0,13.801-6.179,13.801-13.801c0-7.622-6.179-13.801-13.801-13.801h-59.345
v-55.205v-169.46v-5.827h45.544v5.827v166.219v2.257c0,4.035,1.765,7.868,4.832,10.49c2.517,2.153,5.703,3.311,8.969,3.311
c0.714,0,1.431-0.055,2.145-0.168c19.563-3.078,37.655-12.352,51.659-26.32v170.454H269.802z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Some files were not shown because too many files have changed in this diff Show More