|
@ -1979,12 +1979,10 @@
|
|||
"core.minutes": "moodle",
|
||||
"core.misc": "admin",
|
||||
"core.mod_assign": "assign/pluginname",
|
||||
"core.mod_assignment": "assignment/pluginname",
|
||||
"core.mod_book": "book/pluginname",
|
||||
"core.mod_chat": "chat/pluginname",
|
||||
"core.mod_choice": "choice/pluginname",
|
||||
"core.mod_data": "data/pluginname",
|
||||
"core.mod_database": "data/pluginname",
|
||||
"core.mod_external-tool": "lti/pluginname",
|
||||
"core.mod_feedback": "feedback/pluginname",
|
||||
"core.mod_file": "moodle/file",
|
||||
|
@ -1992,7 +1990,6 @@
|
|||
"core.mod_forum": "forum/pluginname",
|
||||
"core.mod_glossary": "glossary/pluginname",
|
||||
"core.mod_h5pactivity": "h5pactivity/pluginname",
|
||||
"core.mod_ims": "imscp/pluginname",
|
||||
"core.mod_imscp": "imscp/pluginname",
|
||||
"core.mod_label": "label/pluginname",
|
||||
"core.mod_lesson": "lesson/pluginname",
|
||||
|
|
|
@ -19,6 +19,7 @@ h4.core-bold {
|
|||
|
||||
.addon-block-timeline-activity core-mod-icon {
|
||||
--margin-end: 0.5rem;
|
||||
--margin-vertical: 0;
|
||||
}
|
||||
|
||||
.addon-block-timeline-activity-time,
|
||||
|
|
|
@ -6,11 +6,7 @@
|
|||
> ion-icon {
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
> core-mod-icon {
|
||||
padding: 6px;
|
||||
padding: 0.7rem;
|
||||
}
|
||||
|
||||
&.addon-calendar-eventtype-category > ion-icon {
|
||||
|
|
|
@ -81,13 +81,10 @@
|
|||
<span class="addon-calendar-event-time">
|
||||
{{ event.timestart * 1000 | coreFormatDate: timeFormat }}
|
||||
</span>
|
||||
<core-mod-icon *ngIf="event.moduleIcon" [modicon]="event.moduleIcon" [showAlt]="false"
|
||||
[modname]="event.modulename" [componentId]="event.instance">
|
||||
</core-mod-icon>
|
||||
<!-- Add the icon title so accessibility tools read it. -->
|
||||
<span class="sr-only">
|
||||
{{ 'addon.calendar.type' + event.formattedType | translate }}
|
||||
<span class="sr-only" *ngIf="event.moduleIcon && event.iconTitle">
|
||||
<span class="sr-only" *ngIf="event.iconTitle">
|
||||
{{ event.iconTitle }}
|
||||
</span>
|
||||
</span>
|
||||
|
|
|
@ -148,17 +148,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
core-mod-icon {
|
||||
margin-right: 1px;
|
||||
margin-left: 1px;
|
||||
--size: 16px;
|
||||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
::ng-deep img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
ion-slide {
|
||||
display: block;
|
||||
font-size: inherit;
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
(click)="gotoEvent(event.id)" [class.item-dimmed]="event.ispast"
|
||||
[ngClass]="['addon-calendar-eventtype-'+event.eventtype]" button detail="true">
|
||||
<core-mod-icon *ngIf="event.moduleIcon" [modicon]="event.moduleIcon" slot="start" [showAlt]="false"
|
||||
[modname]="event.modname" [componentId]="event.instance">
|
||||
[modname]="event.modulename" [componentId]="event.instance">
|
||||
</core-mod-icon>
|
||||
<ion-icon *ngIf="event.eventIcon && !event.moduleIcon" [name]="event.eventIcon" slot="start"
|
||||
aria-hidden="true">
|
||||
|
|
|
@ -1,18 +1,10 @@
|
|||
<ion-header>
|
||||
<ion-header collapsible>
|
||||
<ion-toolbar>
|
||||
<ion-buttons slot="start">
|
||||
<ion-back-button [text]="'core.back' | translate"></ion-back-button>
|
||||
</ion-buttons>
|
||||
<ion-title>
|
||||
<h1 *ngIf="event">
|
||||
<core-mod-icon *ngIf="event.moduleIcon" [modicon]="event.moduleIcon" [showAlt]="false" [modname]="event.modulename"
|
||||
[componentId]="event.instance"></core-mod-icon>
|
||||
<ion-icon *ngIf="event.eventIcon && !event.moduleIcon" [name]="event.eventIcon" aria-hidden="true"></ion-icon>
|
||||
<!-- Add the icon title so accessibility tools read it. -->
|
||||
<span class="sr-only">
|
||||
{{ 'addon.calendar.type' + event.formattedType | translate }}
|
||||
<span class="sr-only" *ngIf="event.moduleIcon && event.iconTitle">{{ event.iconTitle }}</span>
|
||||
</span>
|
||||
<core-format-text [text]="event.name" [contextLevel]="event.contextLevel" [contextInstanceId]="event.contextInstanceId">
|
||||
</core-format-text>
|
||||
</h1>
|
||||
|
@ -47,8 +39,26 @@
|
|||
</ion-item>
|
||||
</ion-card>
|
||||
|
||||
<ion-card>
|
||||
<ion-card-content *ngIf="event">
|
||||
<ion-list *ngIf="event">
|
||||
<ion-item class="collapsible-title ion-text-wrap addon-calendar-event"
|
||||
[ngClass]="['addon-calendar-eventtype-'+event.eventtype]">
|
||||
<core-mod-icon *ngIf="event.moduleIcon" [modicon]="event.moduleIcon" [showAlt]="false" [modname]="event.modulename"
|
||||
[componentId]="event.instance" slot="start"></core-mod-icon>
|
||||
<ion-icon *ngIf=" event.eventIcon && !event.moduleIcon" [name]="event.eventIcon" aria-hidden="true" slot="start">
|
||||
</ion-icon>
|
||||
<ion-label>
|
||||
<!-- Add the icon title so accessibility tools read it. -->
|
||||
<span class="sr-only">
|
||||
{{ 'addon.calendar.type' + event.formattedType | translate }}
|
||||
<span class="sr-only" *ngIf="event.moduleIcon && event.iconTitle">{{ event.iconTitle }}</span>
|
||||
</span>
|
||||
<h1>
|
||||
<core-format-text [text]="event.name" [contextLevel]="event.contextLevel"
|
||||
[contextInstanceId]="event.contextInstanceId">
|
||||
</core-format-text>
|
||||
</h1>
|
||||
</ion-label>
|
||||
</ion-item>
|
||||
<ion-item>
|
||||
<ion-label>
|
||||
<h2>{{ 'addon.calendar.when' | translate }}</h2>
|
||||
|
@ -116,10 +126,9 @@
|
|||
</ion-button>
|
||||
</ion-label>
|
||||
</ion-item>
|
||||
</ion-card-content>
|
||||
</ion-card>
|
||||
</ion-list>
|
||||
|
||||
<ion-card list *ngIf="notificationsEnabled && event">
|
||||
<ion-card *ngIf="notificationsEnabled && event">
|
||||
<ion-item>
|
||||
<ion-label>
|
||||
<h2>{{ 'addon.calendar.reminders' | translate }}</h2>
|
||||
|
|
|
@ -46,7 +46,7 @@ import { AddonCalendarReminderTimeModalComponent } from '@addons/calendar/compon
|
|||
@Component({
|
||||
selector: 'page-addon-calendar-event',
|
||||
templateUrl: 'event.html',
|
||||
styleUrls: ['event.scss'],
|
||||
styleUrls: ['../../calendar-common.scss', 'event.scss'],
|
||||
})
|
||||
export class AddonCalendarEventPage implements OnInit, OnDestroy {
|
||||
|
||||
|
|
|
@ -2,9 +2,4 @@
|
|||
ion-card ion-note {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
h1 ion-icon, h1 img, h1 core-mod-icon {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<ion-label>
|
||||
<div class="large-avatar">
|
||||
<img class="avatar" [src]="conversation!.imageurl" core-external-content [alt]="conversation!.name"
|
||||
onError="this.src='assets/img/group-avatar.png'">
|
||||
onError="this.src='assets/img/group-avatar.svg'">
|
||||
</div>
|
||||
<h2>
|
||||
<core-format-text [text]="conversation!.name" contextLevel="system" [contextInstanceId]="0"></core-format-text>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<ion-title>
|
||||
<h1>
|
||||
<img *ngIf="loaded && !otherMember && conversationImage" class="core-bar-button-image" [src]="conversationImage" alt=""
|
||||
onError="this.src='assets/img/group-avatar.png'" core-external-content role="presentation" [siteId]="siteId || null">
|
||||
onError="this.src='assets/img/group-avatar.svg'" core-external-content role="presentation" [siteId]="siteId || null">
|
||||
<core-user-avatar *ngIf="loaded && otherMember" class="core-bar-button-image" [user]="otherMember" [linkProfile]="false"
|
||||
[checkOnline]="otherMember.showonlinestatus">
|
||||
</core-user-avatar>
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
<!-- Group conversation image. -->
|
||||
<ion-avatar slot="start" *ngIf="conversation.type == typeGroup">
|
||||
<img [src]="conversation.imageurl" [alt]="conversation.name" core-external-content
|
||||
onError="this.src='assets/img/group-avatar.png'">
|
||||
onError="this.src='assets/img/group-avatar.svg'">
|
||||
</ion-avatar>
|
||||
|
||||
<!-- Avatar for individual conversations. -->
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { AddonModAssignIndexComponent } from '../../components/index';
|
||||
|
@ -44,6 +44,7 @@ export class AddonModAssignModuleHandlerService extends CoreModuleHandlerBase im
|
|||
[CoreConstants.FEATURE_ADVANCED_GRADING]: true,
|
||||
[CoreConstants.FEATURE_PLAGIARISM]: true,
|
||||
[CoreConstants.FEATURE_COMMENT]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_ASSESSMENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleData } from '@features/course/services/course-helper';
|
||||
|
@ -45,6 +45,7 @@ export class AddonModBBBModuleHandlerService extends CoreModuleHandlerBase imple
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COMMUNICATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
import { Injectable, Type } from '@angular/core';
|
||||
import { AddonModBookIndexComponent } from '../../components/index';
|
||||
import { AddonModBook } from '../book';
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { makeSingleton } from '@singletons';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModBookModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -40,6 +40,7 @@ export class AddonModChatModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COMMUNICATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -41,6 +41,7 @@ export class AddonModChoiceModuleHandlerService extends CoreModuleHandlerBase im
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COMMUNICATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -43,6 +43,7 @@ export class AddonModDataModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_RATE]: true,
|
||||
[CoreConstants.FEATURE_COMMENT]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COLLABORATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { makeSingleton } from '@singletons';
|
||||
|
@ -41,6 +41,7 @@ export class AddonModFeedbackModuleHandlerService extends CoreModuleHandlerBase
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COMMUNICATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -41,6 +41,7 @@ export class AddonModFolderModuleHandlerService extends CoreModuleHandlerBase im
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,7 +19,7 @@ import { CoreEvents } from '@singletons/events';
|
|||
import { CoreSites } from '@services/sites';
|
||||
import { CoreUtils } from '@services/utils/utils';
|
||||
import { CoreCourseModuleHandler, CoreCourseModuleHandlerData } from '@features/course/services/module-delegate';
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { AddonModForumIndexComponent } from '../../components/index';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleData } from '@features/course/services/course-helper';
|
||||
|
@ -48,6 +48,7 @@ export class AddonModForumModuleHandlerService extends CoreModuleHandlerBase imp
|
|||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_RATE]: true,
|
||||
[CoreConstants.FEATURE_PLAGIARISM]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COLLABORATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -43,6 +43,7 @@ export class AddonModGlossaryModuleHandlerService extends CoreModuleHandlerBase
|
|||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_RATE]: true,
|
||||
[CoreConstants.FEATURE_PLAGIARISM]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COLLABORATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModH5PActivityModuleHandlerService extends CoreModuleHandlerBa
|
|||
[CoreConstants.FEATURE_GRADE_HAS_GRADE]: true,
|
||||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModImscpModuleHandlerService extends CoreModuleHandlerBase imp
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleData } from '@features/course/services/course-helper';
|
||||
|
@ -40,6 +40,7 @@ export class AddonModLabelModuleHandlerService extends CoreModuleHandlerBase imp
|
|||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_NO_VIEW_LINK]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { AddonModLessonIndexComponent } from '../../components/index';
|
||||
import { makeSingleton } from '@singletons';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModLessonModuleHandlerService extends CoreModuleHandlerBase im
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { CoreCourseModuleHandler, CoreCourseModuleHandlerData } from '@features/course/services/module-delegate';
|
||||
import { CoreCourseModuleData } from '@features/course/services/course-helper';
|
||||
import { makeSingleton } from '@singletons';
|
||||
|
@ -43,6 +43,7 @@ export class AddonModLtiModuleHandlerService extends CoreModuleHandlerBase imple
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
import { Injectable, Type } from '@angular/core';
|
||||
import { AddonModPage } from '../page';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { AddonModPageIndexComponent } from '../../components/index';
|
||||
import { makeSingleton } from '@singletons';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModPageModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
import { AddonModQuizIndexComponent } from '../../components/index';
|
||||
import { makeSingleton } from '@singletons';
|
||||
|
@ -44,6 +44,7 @@ export class AddonModQuizModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_CONTROLS_GRADE_VISIBILITY]: true,
|
||||
[CoreConstants.FEATURE_USES_QUESTIONS]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_ASSESSMENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourse } from '@features/course/services/course';
|
||||
|
@ -50,6 +50,7 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -92,9 +93,8 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
},
|
||||
}];
|
||||
|
||||
this.getResourceData(module, courseId, handlerData).then((data) => {
|
||||
handlerData.icon = data.icon;
|
||||
handlerData.extraBadge = data.extra;
|
||||
this.getResourceData(module, courseId, handlerData).then((extra) => {
|
||||
handlerData.extraBadge = extra;
|
||||
handlerData.extraBadgeColor = 'light';
|
||||
|
||||
return;
|
||||
|
@ -132,7 +132,7 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
module: CoreCourseModuleData,
|
||||
courseId: number,
|
||||
handlerData: CoreCourseModuleHandlerData,
|
||||
): Promise<AddonResourceHandlerData> {
|
||||
): Promise<string> {
|
||||
const promises: Promise<void>[] = [];
|
||||
let options: AddonModResourceCustomData = {};
|
||||
|
||||
|
@ -160,23 +160,15 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
|
||||
await Promise.all(promises);
|
||||
|
||||
let mimetypeIcon = '';
|
||||
const extra: string[] = [];
|
||||
|
||||
if (module.contentsinfo) {
|
||||
// No need to use the list of files.
|
||||
const mimetype = module.contentsinfo.mimetypes[0];
|
||||
if (mimetype) {
|
||||
mimetypeIcon = CoreMimetypeUtils.getMimetypeIcon(mimetype);
|
||||
}
|
||||
extra.push(CoreTextUtils.cleanTags(module.afterlink));
|
||||
|
||||
} else if (module.contents && module.contents[0]) {
|
||||
const files = module.contents;
|
||||
const file = files[0];
|
||||
|
||||
mimetypeIcon = CoreMimetypeUtils.getFileIcon(file.filename || '');
|
||||
|
||||
if (options.showsize) {
|
||||
const size = options.filedetails
|
||||
? options.filedetails.size
|
||||
|
@ -219,36 +211,7 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
}
|
||||
}
|
||||
|
||||
return {
|
||||
icon: await CoreCourse.getModuleIconSrc(module.modname, module.modicon, mimetypeIcon),
|
||||
extra: extra.join(' '),
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
async getIconSrc(module?: CoreCourseModuleData): Promise<string | undefined> {
|
||||
if (!module) {
|
||||
return;
|
||||
}
|
||||
let mimetypeIcon = '';
|
||||
|
||||
if (module.contentsinfo) {
|
||||
// No need to use the list of files.
|
||||
const mimetype = module.contentsinfo.mimetypes[0];
|
||||
if (mimetype) {
|
||||
mimetypeIcon = CoreMimetypeUtils.getMimetypeIcon(mimetype);
|
||||
}
|
||||
|
||||
} else if (module.contents && module.contents[0]) {
|
||||
const files = module.contents;
|
||||
const file = files[0];
|
||||
|
||||
mimetypeIcon = CoreMimetypeUtils.getFileIcon(file.filename || '');
|
||||
}
|
||||
|
||||
return await CoreCourse.getModuleIconSrc(module.modname, module.modicon, mimetypeIcon);
|
||||
return extra.join(' ');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -260,9 +223,3 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
|
||||
}
|
||||
export const AddonModResourceModuleHandler = makeSingleton(AddonModResourceModuleHandlerService);
|
||||
|
||||
type AddonResourceHandlerData = {
|
||||
icon: string;
|
||||
extra: string;
|
||||
}
|
||||
;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -41,6 +41,7 @@ export class AddonModScormModuleHandlerService extends CoreModuleHandlerBase imp
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: true,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -41,6 +41,7 @@ export class AddonModSurveyModuleHandlerService extends CoreModuleHandlerBase im
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COMMUNICATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreContentLinksHelper } from '@features/contentlinks/services/contentlinks-helper';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
|
@ -49,6 +49,7 @@ export class AddonModUrlModuleHandlerService extends CoreModuleHandlerBase imple
|
|||
[CoreConstants.FEATURE_GRADE_OUTCOMES]: false,
|
||||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_CONTENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -42,6 +42,7 @@ export class AddonModWikiModuleHandlerService extends CoreModuleHandlerBase impl
|
|||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_RATE]: false,
|
||||
[CoreConstants.FEATURE_COMMENT]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_COLLABORATION,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { CoreConstants } from '@/core/constants';
|
||||
import { CoreConstants, ModPurpose } from '@/core/constants';
|
||||
import { Injectable, Type } from '@angular/core';
|
||||
import { CoreModuleHandlerBase } from '@features/course/classes/module-base-handler';
|
||||
import { CoreCourseModuleHandler } from '@features/course/services/module-delegate';
|
||||
|
@ -40,6 +40,7 @@ export class AddonModWorkshopModuleHandlerService extends CoreModuleHandlerBase
|
|||
[CoreConstants.FEATURE_BACKUP_MOODLE2]: true,
|
||||
[CoreConstants.FEATURE_SHOW_DESCRIPTION]: true,
|
||||
[CoreConstants.FEATURE_PLAGIARISM]: true,
|
||||
[CoreConstants.FEATURE_MOD_PURPOSE]: ModPurpose.MOD_PURPOSE_ASSESSMENT,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,18 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M10,0v2H6V0H10z M11,2h1c1.1,0,2,0.9,2,2v1h2V2c0-1.1-0.9-2-2-2h-3V2z M16,6h-2v4h2V6z M14,11v1
|
||||
c0,1.1-0.9,2-2,2h-1v2h3c1.1,0,2-0.9,2-2v-3H14z M10,16v-2H6v2H10z M5,14H4c-1.1,0-2-0.9-2-2v-1H0v3c0,1.1,0.9,2,2,2h3V14z M0,10h2
|
||||
V6H0V10z M2,5V4c0-1.1,0.9-2,2-2h1V0H2C0.9,0,0,0.9,0,2v3H2z"/>
|
||||
<path style="fill:#FF403C;" d="M10.2,8l2.6-2.6c0.4-0.4,0.4-1,0-1.4L12,3.3c-0.4-0.4-1-0.4-1.4,0L8,5.9L5.4,3.3
|
||||
c-0.4-0.4-1-0.4-1.4,0L3.3,4c-0.4,0.4-0.4,1,0,1.4L5.9,8l-2.6,2.6C3,11,3,11.6,3.3,12l0.7,0.7c0.4,0.4,1,0.4,1.4,0L8,10.2l2.5,2.5
|
||||
c0.4,0.4,1,0.4,1.4,0l0.7-0.7c0.4-0.4,0.4-1,0-1.4L10.2,8z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M10 0v2H6V0h4zm1 2h1c1.1 0 2 .9 2 2v1h2V2c0-1.1-.9-2-2-2h-3v2zm5 4h-2v4h2V6zm-2 5v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z"/><path style="fill:#ff403c" d="m10.2 8 2.6-2.6c.4-.4.4-1 0-1.4l-.8-.7c-.4-.4-1-.4-1.4 0L8 5.9 5.4 3.3c-.4-.4-1-.4-1.4 0l-.7.7c-.4.4-.4 1 0 1.4L5.9 8l-2.6 2.6c-.3.4-.3 1 0 1.4l.7.7c.4.4 1 .4 1.4 0L8 10.2l2.5 2.5c.4.4 1 .4 1.4 0l.7-.7c.4-.4.4-1 0-1.4L10.2 8z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 724 B |
|
@ -1,3 +1 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c1.1 0 2 .9 2 2v1h2V2c0-1.1-.9-2-2-2h-3v2zm5 4h-2v4h2V6zm-2 5v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c1.1 0 2 .9 2 2v1h2V2c0-1.1-.9-2-2-2h-3v2zm5 4h-2v4h2V6zm-2 5v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/></svg> height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c1.1 0 2 .9 2 2v1h2V2c0-1.1-.9-2-2-2h-3v2zm5 4h-2v4h2V6zm-2 5v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 579 B After Width: | Height: | Size: 776 B |
|
@ -1,15 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M10,0v2H6V0H10z M11,2h1c1.1,0,2,0.9,2,2v1h2V2c0-1.1-0.9-2-2-2h-3V2z M16,6h-2v4h2V6z M14,11v1
|
||||
c0,1.1-0.9,2-2,2h-1v2h3c1.1,0,2-0.9,2-2v-3H14z M10,16v-2H6v2H10z M5,14H4c-1.1,0-2-0.9-2-2v-1H0v3c0,1.1,0.9,2,2,2h3V14z M0,10h2
|
||||
V6H0V10z M2,5V4c0-1.1,0.9-2,2-2h1V0H2C0.9,0,0,0.9,0,2v3H2z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M10 0v2H6V0h4zm1 2h1c1.1 0 2 .9 2 2v1h2V2c0-1.1-.9-2-2-2h-3v2zm5 4h-2v4h2V6zm-2 5v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 955 B After Width: | Height: | Size: 466 B |
|
@ -1,17 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M10,0v2H6V0H10z M11,2h1c0.4,0,0.8,0.1,1.1,0.3c0.3-0.3,0.8-0.4,1.2-0.4c0.5,0,1,0.2,1.4,0.6L16,2.8
|
||||
V2c0-1.1-0.9-2-2-2h-3V2z M14,10h2V6.4l-2,2V10z M14,11v1c0,1.1-0.9,2-2,2h-1v2h3c1.1,0,2-0.9,2-2v-3H14z M10,16v-2H6v2H10z M5,14H4
|
||||
c-1.1,0-2-0.9-2-2v-1H0v3c0,1.1,0.9,2,2,2h3V14z M0,10h2V6H0V10z M2,5V4c0-1.1,0.9-2,2-2h1V0H2C0.9,0,0,0.9,0,2v3H2z"/>
|
||||
<path style="fill:#99CC33;" d="M15.7,3.9L15,3.2c-0.4-0.4-1-0.4-1.4,0l-6,6L5.4,7C5,6.7,4.4,6.7,4,7L3.3,7.7c-0.4,0.4-0.4,1,0,1.4
|
||||
l3.6,3.6c0.4,0.4,1,0.4,1.4,0l7.4-7.4C16.1,4.9,16.1,4.3,15.7,3.9z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M10 0v2H6V0h4zm1 2h1c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2h-3v2zm3 8h2V6.4l-2 2V10zm0 1v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z"/><path style="fill:#9c3" d="m15.7 3.9-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 668 B |
|
@ -1,3 +1 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2h-3v2zm3 8h2V6.4l-2 2V10zm0 1v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/><path d="M15.7 3.9l-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2h-3v2zm3 8h2V6.4l-2 2V10zm0 1v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/><path d="m15.7 3.9-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg> height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M10 0v2H6V0h4zm1 2h1c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2h-3v2zm3 8h2V6.4l-2 2V10zm0 1v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z" fill="#FF2727"/><path d="M15.7 3.9l-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 779 B After Width: | Height: | Size: 1.1 KiB |
|
@ -1,17 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M10,0v2H6V0H10z M11,2h1c0.4,0,0.8,0.1,1.1,0.3c0.3-0.3,0.8-0.4,1.2-0.4c0.5,0,1,0.2,1.4,0.6L16,2.8
|
||||
V2c0-1.1-0.9-2-2-2h-3V2z M14,10h2V6.4l-2,2V10z M14,11v1c0,1.1-0.9,2-2,2h-1v2h3c1.1,0,2-0.9,2-2v-3H14z M10,16v-2H6v2H10z M5,14H4
|
||||
c-1.1,0-2-0.9-2-2v-1H0v3c0,1.1,0.9,2,2,2h3V14z M0,10h2V6H0V10z M2,5V4c0-1.1,0.9-2,2-2h1V0H2C0.9,0,0,0.9,0,2v3H2z"/>
|
||||
<path style="fill:#76A1F0;" d="M15.7,3.9L15,3.2c-0.4-0.4-1-0.4-1.4,0l-6,6L5.4,7C5,6.7,4.4,6.7,4,7L3.3,7.7c-0.4,0.4-0.4,1,0,1.4
|
||||
l3.6,3.6c0.4,0.4,1,0.4,1.4,0l7.4-7.4C16.1,4.9,16.1,4.3,15.7,3.9z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M10 0v2H6V0h4zm1 2h1c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2h-3v2zm3 8h2V6.4l-2 2V10zm0 1v1c0 1.1-.9 2-2 2h-1v2h3c1.1 0 2-.9 2-2v-3h-2zm-4 5v-2H6v2h4zm-5-2H4c-1.1 0-2-.9-2-2v-1H0v3c0 1.1.9 2 2 2h3v-2zm-5-4h2V6H0v4zm2-5V4c0-1.1.9-2 2-2h1V0H2C.9 0 0 .9 0 2v3h2z"/><path style="fill:#76a1f0" d="m15.7 3.9-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 671 B |
|
@ -1,3 +1 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v8z" fill="#FF2727"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v8z" fill="#FF2727"/></svg> height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v8z" fill="#FF2727"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 570 B |
|
@ -1,14 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M14,0H2C0.9,0,0,0.9,0,2v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V2C16,0.9,15.1,0,14,0z M14,12
|
||||
c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V12z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M14 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v8z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 841 B After Width: | Height: | Size: 363 B |
|
@ -1,3 +1 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 8.4V12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6.4l-2 2z" fill="#FF2727"/><path d="M15.7 3.9l-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 8.4V12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6.4l-2 2z" fill="#FF2727"/><path d="m15.7 3.9-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg> height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M14 8.4V12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6.4l-2 2z" fill="#FF2727"/><path d="M15.7 3.9l-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z" fill="#76A1F0"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 682 B After Width: | Height: | Size: 981 B |
|
@ -1,17 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" style="overflow:visible;enable-background:new 0 0 16 16;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<path style="fill:#999999;" d="M14,8.4V12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h8c0.4,0,0.8,0.1,1.1,0.3
|
||||
c0.3-0.3,0.8-0.4,1.2-0.4c0.5,0,1,0.2,1.4,0.6L16,2.8V2c0-1.1-0.9-2-2-2H2C0.9,0,0,0.9,0,2v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2
|
||||
V6.4L14,8.4z"/>
|
||||
<path style="fill:#76A1F0;" d="M15.7,3.9L15,3.2c-0.4-0.4-1-0.4-1.4,0l-6,6L5.4,7C5,6.7,4.4,6.7,4,7L3.3,7.7c-0.4,0.4-0.4,1,0,1.4
|
||||
l3.6,3.6c0.4,0.4,1,0.4,1.4,0l7.4-7.4C16.1,4.9,16.1,4.3,15.7,3.9z"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" style="overflow:visible;enable-background:new 0 0 16 16" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path style="fill:#999" d="M14 8.4V12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8c.4 0 .8.1 1.1.3.3-.3.8-.4 1.2-.4.5 0 1 .2 1.4.6l.3.3V2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6.4l-2 2z"/><path style="fill:#76a1f0" d="m15.7 3.9-.7-.7c-.4-.4-1-.4-1.4 0l-6 6L5.4 7c-.4-.3-1-.3-1.4 0l-.7.7c-.4.4-.4 1 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0l7.4-7.4c.4-.4.4-1 0-1.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 341 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="-0.9 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M2.3 4.8 6.7 4c.8 1.2 1.4 2.6 1.7 4.1.8-1.1 1.4-2 1.9-2.5.6-.7 1-1.1 1.4-1.3.4-.2.8-.3 1.2-.3.5 0 .8.1 1.1.4.2.3.4.6.4 1s-.1.7-.4 1c-.2.3-.6.4-.9.4-.3 0-.6 0-.9-.1-.3-.1-.6-.1-.7-.1-.4 0-.7.1-1 .4-.6.3-1.2 1-1.8 2.1.7 2.5 1.3 4 1.7 4.6.3.3.5.5.8.5.2 0 .4-.1.6-.2.2-.2.6-.6 1.1-1.3l.5.3c-.7 1.2-1.5 2-2.2 2.5-.5.4-1.1.6-1.6.6s-1-.1-1.3-.4c-.4-.2-.7-.6-.9-1.2-.3-.5-.6-1.4-1-2.6-1 1.2-1.7 2.2-2.3 2.7-.6.6-1 .9-1.4 1.1s-.9.3-1.3.3-.8-.1-1-.4-.4-.5-.4-.9.1-.8.4-1.1c.3-.3.6-.4 1.1-.4.2 0 .5.1.8.2.4.2.7.3.9.3.2 0 .5-.1.7-.2.3-.1.6-.4 1-.8.1-.2.5-.7 1.1-1.6-.8-3-1.4-4.8-1.9-5.3-.2-.4-.6-.6-1-.6-.2 0-.5 0-.8.1v-.5zM6.5 0h7.3L13 2.6H5.7L6.5 0z" fill="#999"/></svg>
|
After Width: | Height: | Size: 812 B |
Before Width: | Height: | Size: 318 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="-1.9 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"><path d="M9.2 12.4c-.7.3-1.4.5-2.1.6H2.7l5.2-5.9L5.4 2H7c1.1 0 2 .1 2.6.3.5.2 1 .5 1.3 1 .2.4.3.7.3 1.7h.4l1.3-5H2v2l2.8 5.6L0 13v3h10.4l2.5-6h-.5c-1 1-2 1.8-3.2 2.4z" fill="#999"/></svg>
|
After Width: | Height: | Size: 330 B |
Before Width: | Height: | Size: 972 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:bx="https://boxy-svg.com" preserveAspectRatio="xMinYMid meet"><path style="fill:#d8d8d8" d="M0 0h100v100H0z"/><path d="M36.62 49.666c-3.937.122-7.158 1.677-9.662 4.668h-4.885c-1.993 0-3.67-.493-5.031-1.477-1.361-.984-2.042-2.426-2.042-4.32 0-8.58 1.507-12.871 4.52-12.871.147 0 .675.256 1.588.767.91.509 2.095 1.025 3.555 1.549 1.456.522 2.903.783 4.337.783 1.627 0 3.244-.28 4.849-.838a18.11 18.11 0 0 0-.183 2.406c0 3.379.986 6.49 2.954 9.333Zm39.047 23.225c0 2.916-.888 5.219-2.661 6.909-1.775 1.688-4.133 2.533-7.074 2.533H34.068c-2.942 0-5.3-.845-7.073-2.533-1.774-1.69-2.662-3.993-2.662-6.909 0-1.288.043-2.547.128-3.773.085-1.227.255-2.554.511-3.975.255-1.421.576-2.74.965-3.955.39-1.216.912-2.401 1.569-3.556.656-1.155 1.408-2.138 2.26-2.953.851-.813 1.89-1.464 3.116-1.949 1.227-.488 2.584-.731 4.066-.731.243 0 .764.262 1.568.785.801.522 1.689 1.106 2.661 1.75.972.644 2.272 1.227 3.902 1.751 1.628.52 3.268.783 4.92.783 1.654 0 3.294-.263 4.922-.783 1.63-.524 2.93-1.107 3.902-1.751.972-.644 1.86-1.228 2.661-1.75.802-.523 1.325-.785 1.568-.785 1.484 0 2.839.243 4.066.731 1.226.485 2.265 1.136 3.116 1.949.852.815 1.603 1.798 2.26 2.953a18.707 18.707 0 0 1 1.568 3.556c.39 1.215.711 2.534.967 3.955.255 1.421.425 2.748.51 3.975a54.58 54.58 0 0 1 .128 3.773ZM38.333 26.333c0 2.577-.912 4.776-2.735 6.599-1.821 1.824-4.021 2.734-6.598 2.734s-4.777-.91-6.599-2.734c-1.824-1.823-2.734-4.022-2.734-6.599 0-2.575.91-4.776 2.734-6.599C24.223 17.912 26.423 17 29 17s4.777.912 6.598 2.734c1.823 1.823 2.735 4.024 2.735 6.599Zm25.667 14c0 3.865-1.368 7.164-4.101 9.899-2.736 2.734-6.035 4.102-9.9 4.102-3.863 0-7.164-1.368-9.898-4.102-2.733-2.735-4.102-6.034-4.102-9.899 0-3.865 1.369-7.164 4.102-9.897 2.734-2.735 6.035-4.103 9.898-4.103 3.865 0 7.164 1.368 9.9 4.103C62.632 33.169 64 36.468 64 40.333Zm21 8.204c0 1.894-.681 3.336-2.042 4.32-1.362.984-3.038 1.477-5.031 1.477h-4.885c-2.504-2.991-5.725-4.546-9.661-4.668 1.967-2.843 2.953-5.954 2.953-9.333 0-.705-.061-1.506-.183-2.406 1.605.558 3.222.838 4.849.838 1.434 0 2.88-.261 4.337-.783 1.46-.524 2.646-1.04 3.556-1.549.911-.511 1.44-.767 1.586-.767 3.013 0 4.521 4.291 4.521 12.871Zm-4.667-22.204c0 2.577-.911 4.776-2.734 6.599-1.823 1.824-4.023 2.734-6.599 2.734-2.578 0-4.777-.91-6.598-2.734-1.824-1.823-2.735-4.022-2.735-6.599 0-2.575.911-4.776 2.735-6.599C66.223 17.912 68.422 17 71 17c2.576 0 4.776.912 6.599 2.734 1.823 1.823 2.734 4.024 2.734 6.599Z" fill="#fff" bx:origin="-2.38412 -1.795421"/></svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -1,178 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="157 -1509 148 125"
|
||||
preserveAspectRatio="xMinYMid meet"
|
||||
version="1.1"
|
||||
id="svg23"
|
||||
sodipodi:docname="activities.svg"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<metadata
|
||||
id="metadata27">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
id="namedview25"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.981125"
|
||||
inkscape:cx="38.889548"
|
||||
inkscape:cy="62.5"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Group_42" />
|
||||
<defs
|
||||
id="defs7">
|
||||
<style
|
||||
id="style2">
|
||||
.cls-1 {
|
||||
clip-path: url(#clip-Activities);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #eee;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: #c4c8cc;
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: #fff;
|
||||
}
|
||||
</style>
|
||||
<clipPath
|
||||
id="clip-Activities">
|
||||
<rect
|
||||
x="157"
|
||||
y="-1509"
|
||||
width="148"
|
||||
height="125"
|
||||
id="rect4" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
id="Activities"
|
||||
class="cls-1"
|
||||
clip-path="url(#clip-Activities)">
|
||||
<g
|
||||
id="Group_42"
|
||||
data-name="Group 42"
|
||||
transform="translate(-268 -1985)">
|
||||
<ellipse
|
||||
id="Ellipse_37"
|
||||
data-name="Ellipse 37"
|
||||
class="cls-2"
|
||||
cx="74"
|
||||
cy="14.785"
|
||||
rx="74"
|
||||
ry="14.785"
|
||||
transform="translate(425 571.43)"
|
||||
style="fill:#000000;fill-opacity:0.06666667" />
|
||||
<rect
|
||||
id="Rectangle_80"
|
||||
data-name="Rectangle 80"
|
||||
class="cls-3"
|
||||
width="94.182"
|
||||
height="110.215"
|
||||
transform="translate(451.909 476)" />
|
||||
<g
|
||||
id="Group_41"
|
||||
data-name="Group 41"
|
||||
transform="translate(467.043 493)">
|
||||
<rect
|
||||
id="Rectangle_81"
|
||||
data-name="Rectangle 81"
|
||||
class="cls-4"
|
||||
width="44.456"
|
||||
height="5.625"
|
||||
transform="translate(21.16 0.549)" />
|
||||
<rect
|
||||
id="Rectangle_82"
|
||||
data-name="Rectangle 82"
|
||||
class="cls-4"
|
||||
width="33.342"
|
||||
height="5.625"
|
||||
transform="translate(21.16 11.652)" />
|
||||
<rect
|
||||
id="Rectangle_83"
|
||||
data-name="Rectangle 83"
|
||||
class="cls-4"
|
||||
width="44.456"
|
||||
height="5.625"
|
||||
transform="translate(21.16 30.772)" />
|
||||
<rect
|
||||
id="Rectangle_84"
|
||||
data-name="Rectangle 84"
|
||||
class="cls-4"
|
||||
width="33.342"
|
||||
height="5.625"
|
||||
transform="translate(21.16 41.875)" />
|
||||
<rect
|
||||
id="Rectangle_85"
|
||||
data-name="Rectangle 85"
|
||||
class="cls-4"
|
||||
width="44.456"
|
||||
height="5.625"
|
||||
transform="translate(21.16 61.291)" />
|
||||
<rect
|
||||
id="Rectangle_86"
|
||||
data-name="Rectangle 86"
|
||||
class="cls-4"
|
||||
width="33.342"
|
||||
height="5.625"
|
||||
transform="translate(21.16 72.393)" />
|
||||
<ellipse
|
||||
id="Ellipse_38"
|
||||
data-name="Ellipse 38"
|
||||
class="cls-4"
|
||||
cx="7.007"
|
||||
cy="7"
|
||||
rx="7.007"
|
||||
ry="7"
|
||||
transform="translate(0 0)" />
|
||||
<ellipse
|
||||
id="Ellipse_39"
|
||||
data-name="Ellipse 39"
|
||||
class="cls-4"
|
||||
cx="7.007"
|
||||
cy="7"
|
||||
rx="7.007"
|
||||
ry="7"
|
||||
transform="translate(0 31)" />
|
||||
<ellipse
|
||||
id="Ellipse_40"
|
||||
data-name="Ellipse 40"
|
||||
class="cls-4"
|
||||
cx="7.007"
|
||||
cy="7"
|
||||
rx="7.007"
|
||||
ry="7"
|
||||
transform="translate(0 61)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="157 -1509 148 125" preserveAspectRatio="xMinYMid meet" version="1.1" id="svg23"><defs id="defs7"><clipPath id="clip-Activities"><path id="rect4" d="M157-1509h148v125H157z"/></clipPath><style id="style2">.cls-4{fill:#fff}</style></defs><g id="Activities" clip-path="url(#clip-Activities)" style="clip-path:url(#clip-Activities)"><g id="Group_42" data-name="Group 42" transform="translate(-268 -1985)"><ellipse id="Ellipse_37" data-name="Ellipse 37" cx="74" cy="14.785" rx="74" ry="14.785" transform="translate(425 571.43)" style="fill:#000;fill-opacity:.06666667"/><path id="Rectangle_80" data-name="Rectangle 80" transform="translate(451.909 476)" style="fill:#c4c8cc" d="M0 0h94.182v110.215H0z"/><g id="Group_41" data-name="Group 41" transform="translate(467.043 493)"><path id="Rectangle_81" data-name="Rectangle 81" class="cls-4" transform="translate(21.16 .549)" d="M0 0h44.456v5.625H0z"/><path id="Rectangle_82" data-name="Rectangle 82" class="cls-4" transform="translate(21.16 11.652)" d="M0 0h33.342v5.625H0z"/><path id="Rectangle_83" data-name="Rectangle 83" class="cls-4" transform="translate(21.16 30.772)" d="M0 0h44.456v5.625H0z"/><path id="Rectangle_84" data-name="Rectangle 84" class="cls-4" transform="translate(21.16 41.875)" d="M0 0h33.342v5.625H0z"/><path id="Rectangle_85" data-name="Rectangle 85" class="cls-4" transform="translate(21.16 61.291)" d="M0 0h44.456v5.625H0z"/><path id="Rectangle_86" data-name="Rectangle 86" class="cls-4" transform="translate(21.16 72.393)" d="M0 0h33.342v5.625H0z"/><ellipse id="Ellipse_38" data-name="Ellipse 38" class="cls-4" cx="7.007" cy="7" rx="7.007" ry="7"/><ellipse id="Ellipse_39" data-name="Ellipse 39" class="cls-4" cx="7.007" cy="7" rx="7.007" ry="7" transform="translate(0 31)"/><ellipse id="Ellipse_40" data-name="Ellipse 40" class="cls-4" cx="7.007" cy="7" rx="7.007" ry="7" transform="translate(0 61)"/></g></g></g></svg>
|
||||
|
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 1.9 KiB |
|
@ -1,257 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="157 -1305 148 125"
|
||||
preserveAspectRatio="xMinYMid meet"
|
||||
version="1.1"
|
||||
id="svg34"
|
||||
sodipodi:docname="courses.svg"
|
||||
inkscape:version="0.92.1 r15371">
|
||||
<metadata
|
||||
id="metadata38">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="744"
|
||||
inkscape:window-height="480"
|
||||
id="namedview36"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.888"
|
||||
inkscape:cx="74"
|
||||
inkscape:cy="62.5"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Group_44" />
|
||||
<defs
|
||||
id="defs7">
|
||||
<style
|
||||
id="style2">
|
||||
.cls-1 {
|
||||
clip-path: url(#clip-Courses);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #eee;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: #c4c8cc;
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: #fff;
|
||||
}
|
||||
</style>
|
||||
<clipPath
|
||||
id="clip-Courses">
|
||||
<rect
|
||||
x="157"
|
||||
y="-1305"
|
||||
width="148"
|
||||
height="125"
|
||||
id="rect4" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
id="Courses"
|
||||
class="cls-1"
|
||||
clip-path="url(#clip-Courses)">
|
||||
<g
|
||||
id="Group_44"
|
||||
data-name="Group 44"
|
||||
transform="translate(-268 -1781)">
|
||||
<ellipse
|
||||
id="Ellipse_41"
|
||||
data-name="Ellipse 41"
|
||||
class="cls-2"
|
||||
cx="74"
|
||||
cy="14.785"
|
||||
rx="74"
|
||||
ry="14.785"
|
||||
transform="translate(425 571.43)"
|
||||
style="fill:#000000;fill-opacity:0.06666667" />
|
||||
<rect
|
||||
id="Rectangle_87"
|
||||
data-name="Rectangle 87"
|
||||
class="cls-3"
|
||||
width="95.097"
|
||||
height="110.215"
|
||||
transform="translate(451.909 476)" />
|
||||
<g
|
||||
id="Group_43"
|
||||
data-name="Group 43"
|
||||
transform="translate(464.04 494)">
|
||||
<rect
|
||||
id="Rectangle_88"
|
||||
data-name="Rectangle 88"
|
||||
class="cls-4"
|
||||
width="31.043"
|
||||
height="34"
|
||||
transform="translate(0)" />
|
||||
<rect
|
||||
id="Rectangle_89"
|
||||
data-name="Rectangle 89"
|
||||
class="cls-4"
|
||||
width="31.043"
|
||||
height="34"
|
||||
transform="translate(0 42)" />
|
||||
<rect
|
||||
id="Rectangle_90"
|
||||
data-name="Rectangle 90"
|
||||
class="cls-4"
|
||||
width="31.067"
|
||||
height="34"
|
||||
transform="translate(39.005)" />
|
||||
<rect
|
||||
id="Rectangle_91"
|
||||
data-name="Rectangle 91"
|
||||
class="cls-4"
|
||||
width="31.067"
|
||||
height="34"
|
||||
transform="translate(39.005 42)" />
|
||||
<rect
|
||||
id="Rectangle_92"
|
||||
data-name="Rectangle 92"
|
||||
class="cls-3"
|
||||
width="23.023"
|
||||
height="3.18"
|
||||
transform="translate(3.081 16.549)" />
|
||||
<rect
|
||||
id="Rectangle_93"
|
||||
data-name="Rectangle 93"
|
||||
class="cls-3"
|
||||
width="23.023"
|
||||
height="3.18"
|
||||
transform="translate(3.081 58.549)" />
|
||||
<rect
|
||||
id="Rectangle_94"
|
||||
data-name="Rectangle 94"
|
||||
class="cls-3"
|
||||
width="23.023"
|
||||
height="3.18"
|
||||
transform="translate(43.122 16.549)" />
|
||||
<rect
|
||||
id="Rectangle_95"
|
||||
data-name="Rectangle 95"
|
||||
class="cls-3"
|
||||
width="23.023"
|
||||
height="3.18"
|
||||
transform="translate(43.122 58.549)" />
|
||||
<rect
|
||||
id="Rectangle_96"
|
||||
data-name="Rectangle 96"
|
||||
class="cls-3"
|
||||
width="14.014"
|
||||
height="3.18"
|
||||
transform="translate(3.081 21.825)" />
|
||||
<rect
|
||||
id="Rectangle_97"
|
||||
data-name="Rectangle 97"
|
||||
class="cls-3"
|
||||
width="18.845"
|
||||
height="3.18"
|
||||
transform="translate(3.081 26.825)" />
|
||||
<rect
|
||||
id="Rectangle_98"
|
||||
data-name="Rectangle 98"
|
||||
class="cls-3"
|
||||
width="14.014"
|
||||
height="3.18"
|
||||
transform="translate(3.081 63.825)" />
|
||||
<rect
|
||||
id="Rectangle_99"
|
||||
data-name="Rectangle 99"
|
||||
class="cls-3"
|
||||
width="18.845"
|
||||
height="3.18"
|
||||
transform="translate(3.081 68.825)" />
|
||||
<rect
|
||||
id="Rectangle_100"
|
||||
data-name="Rectangle 100"
|
||||
class="cls-3"
|
||||
width="14.014"
|
||||
height="3.18"
|
||||
transform="translate(43.122 21.825)" />
|
||||
<rect
|
||||
id="Rectangle_101"
|
||||
data-name="Rectangle 101"
|
||||
class="cls-3"
|
||||
width="18.845"
|
||||
height="3.18"
|
||||
transform="translate(43.122 26.825)" />
|
||||
<rect
|
||||
id="Rectangle_102"
|
||||
data-name="Rectangle 102"
|
||||
class="cls-3"
|
||||
width="14.014"
|
||||
height="3.18"
|
||||
transform="translate(43.122 63.825)" />
|
||||
<rect
|
||||
id="Rectangle_103"
|
||||
data-name="Rectangle 103"
|
||||
class="cls-3"
|
||||
width="18.845"
|
||||
height="3.18"
|
||||
transform="translate(43.122 68.825)" />
|
||||
<ellipse
|
||||
id="Ellipse_42"
|
||||
data-name="Ellipse 42"
|
||||
class="cls-3"
|
||||
cx="5.658"
|
||||
cy="5.652"
|
||||
rx="5.658"
|
||||
ry="5.652"
|
||||
transform="translate(3.003 3.55)" />
|
||||
<ellipse
|
||||
id="Ellipse_43"
|
||||
data-name="Ellipse 43"
|
||||
class="cls-3"
|
||||
cx="5.658"
|
||||
cy="5.652"
|
||||
rx="5.658"
|
||||
ry="5.652"
|
||||
transform="translate(3.003 45.55)" />
|
||||
<ellipse
|
||||
id="Ellipse_44"
|
||||
data-name="Ellipse 44"
|
||||
class="cls-3"
|
||||
cx="5.658"
|
||||
cy="5.652"
|
||||
rx="5.658"
|
||||
ry="5.652"
|
||||
transform="translate(43.044 3.55)" />
|
||||
<ellipse
|
||||
id="Ellipse_45"
|
||||
data-name="Ellipse 45"
|
||||
class="cls-3"
|
||||
cx="5.658"
|
||||
cy="5.652"
|
||||
rx="5.658"
|
||||
ry="5.652"
|
||||
transform="translate(43.044 45.55)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="157 -1305 148 125" preserveAspectRatio="xMinYMid meet" version="1.1" id="svg34"><defs id="defs7"><clipPath id="clip-Courses"><path id="rect4" d="M157-1305h148v125H157z"/></clipPath><style id="style2">.cls-3{fill:#c4c8cc}.cls-4{fill:#fff}</style></defs><g id="Courses" clip-path="url(#clip-Courses)" style="clip-path:url(#clip-Courses)"><g id="Group_44" data-name="Group 44" transform="translate(-268 -1781)"><ellipse id="Ellipse_41" data-name="Ellipse 41" cx="74" cy="14.785" rx="74" ry="14.785" transform="translate(425 571.43)" style="fill:#000;fill-opacity:.06666667"/><path id="Rectangle_87" data-name="Rectangle 87" class="cls-3" transform="translate(451.909 476)" d="M0 0h95.097v110.215H0z"/><g id="Group_43" data-name="Group 43" transform="translate(464.04 494)"><path id="Rectangle_88" data-name="Rectangle 88" class="cls-4" d="M0 0h31.043v34H0z"/><path id="Rectangle_89" data-name="Rectangle 89" class="cls-4" transform="translate(0 42)" d="M0 0h31.043v34H0z"/><path id="Rectangle_90" data-name="Rectangle 90" class="cls-4" transform="translate(39.005)" d="M0 0h31.067v34H0z"/><path id="Rectangle_91" data-name="Rectangle 91" class="cls-4" transform="translate(39.005 42)" d="M0 0h31.067v34H0z"/><path id="Rectangle_92" data-name="Rectangle 92" class="cls-3" transform="translate(3.081 16.549)" d="M0 0h23.023v3.18H0z"/><path id="Rectangle_93" data-name="Rectangle 93" class="cls-3" transform="translate(3.081 58.549)" d="M0 0h23.023v3.18H0z"/><path id="Rectangle_94" data-name="Rectangle 94" class="cls-3" transform="translate(43.122 16.549)" d="M0 0h23.023v3.18H0z"/><path id="Rectangle_95" data-name="Rectangle 95" class="cls-3" transform="translate(43.122 58.549)" d="M0 0h23.023v3.18H0z"/><path id="Rectangle_96" data-name="Rectangle 96" class="cls-3" transform="translate(3.081 21.825)" d="M0 0h14.014v3.18H0z"/><path id="Rectangle_97" data-name="Rectangle 97" class="cls-3" transform="translate(3.081 26.825)" d="M0 0h18.845v3.18H0z"/><path id="Rectangle_98" data-name="Rectangle 98" class="cls-3" transform="translate(3.081 63.825)" d="M0 0h14.014v3.18H0z"/><path id="Rectangle_99" data-name="Rectangle 99" class="cls-3" transform="translate(3.081 68.825)" d="M0 0h18.845v3.18H0z"/><path id="Rectangle_100" data-name="Rectangle 100" class="cls-3" transform="translate(43.122 21.825)" d="M0 0h14.014v3.18H0z"/><path id="Rectangle_101" data-name="Rectangle 101" class="cls-3" transform="translate(43.122 26.825)" d="M0 0h18.845v3.18H0z"/><path id="Rectangle_102" data-name="Rectangle 102" class="cls-3" transform="translate(43.122 63.825)" d="M0 0h14.014v3.18H0z"/><path id="Rectangle_103" data-name="Rectangle 103" class="cls-3" transform="translate(43.122 68.825)" d="M0 0h18.845v3.18H0z"/><ellipse id="Ellipse_42" data-name="Ellipse 42" class="cls-3" cx="5.658" cy="5.652" rx="5.658" ry="5.652" transform="translate(3.003 3.55)"/><ellipse id="Ellipse_43" data-name="Ellipse 43" class="cls-3" cx="5.658" cy="5.652" rx="5.658" ry="5.652" transform="translate(3.003 45.55)"/><ellipse id="Ellipse_44" data-name="Ellipse 44" class="cls-3" cx="5.658" cy="5.652" rx="5.658" ry="5.652" transform="translate(43.044 3.55)"/><ellipse id="Ellipse_45" data-name="Ellipse 45" class="cls-3" cx="5.658" cy="5.652" rx="5.658" ry="5.652" transform="translate(43.044 45.55)"/></g></g></g></svg>
|
||||
|
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 3.3 KiB |
|
@ -1,3 +1 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" preserveAspectRatio="xMinYMid meet" overflow="visible"/> height="16" viewBox="0 0 16 16" preserveAspectRatio="xMinYMid meet" overflow="visible"></svg>
|
||||
|
|
Before Width: | Height: | Size: 299 B After Width: | Height: | Size: 214 B |
|
@ -1,14 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.1, 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 345 150" style="enable-background:new 0 0 345 150;" xml:space="preserve">
|
||||
<g>
|
||||
<path d="M325.7,14.7C317.6,6.9,305.3,3,289,3h-43.5H234v31h-66l-5.4,22.2c4.5-2.1,10.9-4.2,15.3-5.3c4.4-1.1,8.8-0.9,13.1-0.9
|
||||
c14.6,0,26.5,4.5,35.6,13.3c9.1,8.8,13.6,20,13.6,33.4c0,9.4-2.3,18.5-7,27.2s-11.3,15.4-19.9,20c-3.1,1.6-6.5,3.1-10.2,4.1h42.4
|
||||
H259V95h25c18.2,0,31.7-4.2,40.6-12.5s13.3-19.9,13.3-34.6C337.9,33.6,333.8,22.5,325.7,14.7z M288.7,60.6c-3.5,3-9.6,4.4-18.3,4.4
|
||||
H259V33h13.2c8.4,0,14.2,1.5,17.2,4.7c3.1,3.2,4.6,6.9,4.6,11.5C294,53.9,292.2,57.6,288.7,60.6z"/>
|
||||
<path d="M176.5,76.3c-7.9,0-14.7,4.6-18,11.2L119,81.9L136.8,3h-23.6H101v62H51V3H7v145h44V95h50v53h12.2h42
|
||||
c-6.7-2-12.5-4.6-17.2-8.1c-4.8-3.6-8.7-7.7-11.7-12.3c-3-4.6-5.3-9.7-7.3-16.5l39.6-5.7c3.3,6.6,10.1,11.1,17.9,11.1
|
||||
c11.1,0,20.1-9,20.1-20.1S187.5,76.3,176.5,76.3z"/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 345 150" style="enable-background:new 0 0 345 150" xml:space="preserve"><path d="M325.7 14.7C317.6 6.9 305.3 3 289 3h-55v31h-66l-5.4 22.2c4.5-2.1 10.9-4.2 15.3-5.3 4.4-1.1 8.8-.9 13.1-.9 14.6 0 26.5 4.5 35.6 13.3 9.1 8.8 13.6 20 13.6 33.4 0 9.4-2.3 18.5-7 27.2s-11.3 15.4-19.9 20c-3.1 1.6-6.5 3.1-10.2 4.1H259V95h25c18.2 0 31.7-4.2 40.6-12.5s13.3-19.9 13.3-34.6c0-14.3-4.1-25.4-12.2-33.2zm-37 45.9c-3.5 3-9.6 4.4-18.3 4.4H259V33h13.2c8.4 0 14.2 1.5 17.2 4.7 3.1 3.2 4.6 6.9 4.6 11.5 0 4.7-1.8 8.4-5.3 11.4z"/><path d="M176.5 76.3c-7.9 0-14.7 4.6-18 11.2L119 81.9 136.8 3H101v62H51V3H7v145h44V95h50v53h54.2c-6.7-2-12.5-4.6-17.2-8.1-4.8-3.6-8.7-7.7-11.7-12.3-3-4.6-5.3-9.7-7.3-16.5l39.6-5.7c3.3 6.6 10.1 11.1 17.9 11.1 11.1 0 20.1-9 20.1-20.1s-9.1-20.1-20.1-20.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 824 B |
|
@ -1,89 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="0" x2="14.0054" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="16.3,0 15.4,0 6.7,0 6,0 6,20 6.7,20 21.7,20 22,20 22,6.6 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="1" x2="14.0054" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="7,19 7,1 15.8,1 21,6.9 21,19 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="2" x2="14.0054" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="8,18 8,2 15.4,2 20,7.3 20,18 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="18.3101" y1="0" x2="18.3101" y2="7.7852">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M14.8,7.5c0,0,5.2-1.3,7.2,0.3c0-0.1,0-1.2,0-1.2L16.2,0c0,0-1.5,0-1.6,0
|
||||
C16.8,3,14.8,7.5,14.8,7.5z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="16.3003" y1="6.1616" x2="18.5911" y2="3.8708">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M16.3,6.2c0.3-1.2,0.5-2.9,0.1-4.4l4,4.4C20,6.1,19.4,6,18.8,6C17.9,6,17,6.1,16.3,6.2z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.9673" y1="12.167" x2="11.9673" y2="23.8853">
|
||||
<stop offset="0" style="stop-color:#DDA976"/>
|
||||
<stop offset="1" style="stop-color:#9F6B37"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DDA976"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DDA976"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#9F6B37"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M10,18.9c-0.3-2.2,9.4,0.5,9.3-1.4c0-0.8-8.4-3.4-11.4-4.1c-0.9-0.2-6.5-1.2-6.5-1.2
|
||||
c-0.2,0.1-1.3,3.3-1.4,5.2c0.5,0.3,7.3,6.7,10,6.5c2.7-0.2,14.2-3.6,13.9-4.7C23.3,17.1,10.3,21.3,10,18.9z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="11.4893" y1="13.2803" x2="11.4893" y2="22.9336">
|
||||
<stop offset="0" style="stop-color:#FFDDAA"/>
|
||||
<stop offset="1" style="stop-color:#E3B17E"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFDDAA"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFDDAA"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#E3B17E"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M1.7,17.4C1.4,17.2,1.2,17,1,16.9c0.1-1.2,0.6-2.8,0.9-3.6c1.8,0.3,5.1,0.9,5.7,1
|
||||
c2.6,0.6,9.4,2.3,9.7,3c0.5,1.1-8.3-1.9-8.1,1.7c0.2,3.5,12.4-0.6,12.7,0.5c0.2,0.7-10.1,3.6-12,3.5C7.9,22.8,3.3,18.8,1.7,17.4z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="7.5928" y1="14.4141" x2="7.5928" y2="21.9336">
|
||||
<stop offset="0" style="stop-color:#F1C592"/>
|
||||
<stop offset="1" style="stop-color:#E1AF7C"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F1C592"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F1C592"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#E1AF7C"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M10.1,21.9c-0.8-0.1-2.8-1-7.6-5.2l-0.3-0.3c0.1-0.7,0.3-1.4,0.5-2.1c2.1,0.4,4.3,0.8,4.7,0.9
|
||||
c1.5,0.4,2.7,0.7,3.8,0.9c-1,0.1-1.8,0.4-2.3,1c-0.3,0.3-0.7,0.9-0.6,1.9c0.1,1.1,0.8,2.4,4,2.4c0.3,0,0.6,0,0.9,0
|
||||
C11.8,21.7,10.7,21.9,10.1,21.9L10.1,21.9z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M37.9 74.4c-1 0-1.9-.8-1.9-1.8V64H15.6c-1.8 0-3.2-1.4-3.2-3.2V3.2c0-1.8 1.4-3.2 3.2-3.2h34c.8 0 1.7.3 2.2.9L63.9 13c.6.6.9 1.4.9 2.2v45.5c0 1.8-1.4 3.2-3.2 3.2H41.1v8.5c0 1.1-.9 2-1.9 2h-1.3zm21.7-15.8V21.5h-13c-1.8 0-3.2-1.4-3.2-3.1v-13H17.7v53.3H36v-7.8h-5.1c-1.1 0-2-.9-2-2 0-.4.2-.8.4-1.2l7.9-10.5c.7-.8 1.8-.9 2.7-.3.1.1 8 10.8 8 10.8.7.9.5 2.1-.4 2.8-.3.2-.7.4-1.1.4h-5.2v7.8l18.4-.1zm-10.3-43h9.1l-9.1-9.1v9.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 604 B |
|
@ -1,89 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="0" x2="14.0054" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="16.3,0 15.4,0 6.7,0 6,0 6,20 6.7,20 21.7,20 22,20 22,6.6 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="1" x2="14.0054" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="7,19 7,1 15.8,1 21,6.9 21,19 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="14.0054" y1="2" x2="14.0054" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="8,18 8,2 15.4,2 20,7.3 20,18 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="18.3101" y1="0" x2="18.3101" y2="7.7852">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M14.8,7.5c0,0,5.2-1.3,7.2,0.3c0-0.1,0-1.2,0-1.2L16.2,0c0,0-1.5,0-1.6,0
|
||||
C16.8,3,14.8,7.5,14.8,7.5z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="16.3003" y1="6.1616" x2="18.5911" y2="3.8708">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M16.3,6.2c0.3-1.2,0.5-2.9,0.1-4.4l4,4.4C20,6.1,19.4,6,18.8,6C17.9,6,17,6.1,16.3,6.2z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.9673" y1="12.167" x2="11.9673" y2="23.8853">
|
||||
<stop offset="0" style="stop-color:#DDA976"/>
|
||||
<stop offset="1" style="stop-color:#9F6B37"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DDA976"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DDA976"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#9F6B37"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M10,18.9c-0.3-2.2,9.4,0.5,9.3-1.4c0-0.8-8.4-3.4-11.4-4.1c-0.9-0.2-6.5-1.2-6.5-1.2
|
||||
c-0.2,0.1-1.3,3.3-1.4,5.2c0.5,0.3,7.3,6.7,10,6.5c2.7-0.2,14.2-3.6,13.9-4.7C23.3,17.1,10.3,21.3,10,18.9z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="11.4893" y1="13.2803" x2="11.4893" y2="22.9336">
|
||||
<stop offset="0" style="stop-color:#FFDDAA"/>
|
||||
<stop offset="1" style="stop-color:#E3B17E"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFDDAA"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFDDAA"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#E3B17E"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M1.7,17.4C1.4,17.2,1.2,17,1,16.9c0.1-1.2,0.6-2.8,0.9-3.6c1.8,0.3,5.1,0.9,5.7,1
|
||||
c2.6,0.6,9.4,2.3,9.7,3c0.5,1.1-8.3-1.9-8.1,1.7c0.2,3.5,12.4-0.6,12.7,0.5c0.2,0.7-10.1,3.6-12,3.5C7.9,22.8,3.3,18.8,1.7,17.4z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="7.5928" y1="14.4141" x2="7.5928" y2="21.9336">
|
||||
<stop offset="0" style="stop-color:#F1C592"/>
|
||||
<stop offset="1" style="stop-color:#E1AF7C"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F1C592"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F1C592"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#E1AF7C"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M10.1,21.9c-0.8-0.1-2.8-1-7.6-5.2l-0.3-0.3c0.1-0.7,0.3-1.4,0.5-2.1c2.1,0.4,4.3,0.8,4.7,0.9
|
||||
c1.5,0.4,2.7,0.7,3.8,0.9c-1,0.1-1.8,0.4-2.3,1c-0.3,0.3-0.7,0.9-0.6,1.9c0.1,1.1,0.8,2.4,4,2.4c0.3,0,0.6,0,0.9,0
|
||||
C11.8,21.7,10.7,21.9,10.1,21.9L10.1,21.9z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.5 KiB |
|
@ -1,55 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="24px" height="24px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-58.9473" y1="84.1865" x2="58.9479" y2="-84.1852">
|
||||
<stop offset="0" style="stop-color:#283274"/>
|
||||
<stop offset="0.7088" style="stop-color:#293275"/>
|
||||
<stop offset="0.967" style="stop-color:#273F87"/>
|
||||
</linearGradient>
|
||||
<symbol id="New_Symbol" viewBox="-107.423 -107.423 214.847 214.846">
|
||||
<g>
|
||||
<path fill="url(#SVGID_1_)" stroke="#5D6AA4" stroke-width="9.3191" d="M102.765,0c0-56.755-46.009-102.764-102.765-102.764
|
||||
c-56.754,0-102.764,46.009-102.764,102.764S-56.754,102.764,0,102.764C56.756,102.764,102.765,56.755,102.765,0z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-75.0186" y1="112.8037" x2="-15.8528" y2="28.3063" gradientTransform="matrix(1 0 0 1 18.4946 -31.9512)">
|
||||
<stop offset="0" style="stop-color:#BEC7E5"/>
|
||||
<stop offset="0.0956" style="stop-color:#B5BEDE"/>
|
||||
<stop offset="0.2524" style="stop-color:#9CA5CC"/>
|
||||
<stop offset="0.4508" style="stop-color:#747DAE"/>
|
||||
<stop offset="0.6809" style="stop-color:#3D4684"/>
|
||||
<stop offset="0.7582" style="stop-color:#293275"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M0.282,98.502C26.323,98.31,54.293,87.893,74.49,63.84C73.631,43.207,36.703,22.057,5.886-1.229
|
||||
c-25.857-19.538-65.427-37.86-92.487-45.059c-25.73,49.263-7.016,96.619,25.25,123.238C-46.256,90.16-23.508,98.679,0.282,98.502z
|
||||
"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M55.602-25.561c0-8.678-3.055-16.072-9.16-22.179c-6.11-6.109-13.501-9.16-22.179-9.16h-37.367
|
||||
c-8.679,0-16.073,3.051-22.179,9.16c-6.11,6.106-9.162,13.501-9.162,22.179v93.779c6.656,0,12.336-3.254,17.046-9.764
|
||||
c4.708-6.509,7.062-14.344,7.062-23.505v-60.511c0-4.821,2.411-7.231,7.232-7.231h37.367c4.821,0,7.231,2.41,7.231,7.231V3.128
|
||||
c0,4.66-2.41,7.07-7.231,7.232H17.03c-9.323,0.324-17.2,2.757-23.626,7.304c-6.43,4.543-9.643,10.145-9.643,16.805h40.501
|
||||
c8.678,0,16.068-3.056,22.179-9.161c6.105-6.11,9.16-13.5,9.16-22.18V-25.561z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.46">
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M55.602-25.561c0-8.678-3.055-16.072-9.16-22.179c-6.11-6.109-13.501-9.16-22.179-9.16h-37.367
|
||||
c-8.679,0-16.073,3.051-22.179,9.16c-6.11,6.106-9.162,13.501-9.162,22.179v93.779c6.656,0,12.336-3.254,17.046-9.764
|
||||
c4.708-6.509,7.062-14.344,7.062-23.505v-60.511c0-4.821,2.411-7.231,7.232-7.231h37.367c4.821,0,7.231,2.41,7.231,7.231V3.128
|
||||
c0,4.66-2.41,7.07-7.231,7.232H17.03c-9.323,0.324-17.2,2.757-23.626,7.304c-6.43,4.543-9.643,10.145-9.643,16.805h40.501
|
||||
c8.678,0,16.068-3.056,22.179-9.161c6.105-6.11,9.16-13.5,9.16-22.18V-25.561z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M53.829-26.788c0-8.678-3.055-16.072-9.16-22.179c-6.11-6.109-13.501-9.16-22.18-9.16h-37.367
|
||||
c-8.679,0-16.073,3.051-22.179,9.16c-6.109,6.106-9.16,13.501-9.16,22.179v93.779c6.655,0,12.336-3.255,17.045-9.764
|
||||
c4.708-6.509,7.062-14.345,7.062-23.505v-60.511c0-4.821,2.41-7.231,7.232-7.231h37.367c4.821,0,7.232,2.41,7.232,7.231V1.901
|
||||
c0,4.66-2.411,7.07-7.232,7.232h-7.232C5.935,9.457-1.942,11.89-8.368,16.438c-6.43,4.542-9.644,10.144-9.644,16.803h40.501
|
||||
c8.679,0,16.069-3.055,22.18-9.16c6.105-6.109,9.16-13.5,9.16-22.179V-26.788z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<use xlink:href="#New_Symbol" width="214.847" height="214.846" x="-107.423" y="-107.423" transform="matrix(0.1376 0 0 -0.1376 14.9995 15)" overflow="visible"/>
|
||||
</svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" style="fill:none" height="74" width="74"><path style="clip-rule:evenodd;fill:#000;fill-rule:evenodd;stroke-width:4.9333334" d="M69.067 37c0 17.71-14.357 32.067-32.067 32.067S4.933 54.71 4.933 37 19.29 4.933 37 4.933 69.067 19.29 69.067 37zM74 37c0 20.434-16.566 37-37 37C16.565 74 0 57.434 0 37 0 16.565 16.565 0 37 0c20.434 0 37 16.565 37 37Zm-49.333 8.617V19.733c1.836 0 3.405.899 4.704 2.695 1.3 1.797 1.95 3.96 1.95 6.488v16.701c0 1.33.665 1.996 1.995 1.996H43.63c1.33 0 1.996-.665 1.996-1.996v-7.918c0-1.287-.665-1.952-1.996-1.997h-1.996c-2.573-.09-4.747-.76-6.52-2.015-1.775-1.254-2.662-2.8-2.662-4.638H43.63c2.396 0 4.435.843 6.122 2.528 1.685 1.686 2.529 3.726 2.529 6.122v7.918c0 2.395-.844 4.436-2.53 6.121-1.686 1.687-3.725 2.529-6.12 2.529H33.315c-2.395 0-4.436-.842-6.12-2.529-1.687-1.685-2.53-3.726-2.53-6.121z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 874 B |
|
@ -1,80 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="12.0005" y1="0" x2="12.0005" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<rect x="4" style="fill:url(#SVGID_1_);" width="16" height="24"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="12.0005" y1="1" x2="12.0005" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<rect x="5" y="1" style="fill:url(#SVGID_2_);" width="14" height="22"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="12.0005" y1="2" x2="12.0005" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<rect x="6" y="2" style="fill:url(#SVGID_3_);" width="12" height="20"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.0005" y1="4" x2="12.0005" y2="9">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M7,4v5h10V4H7z M16,8H8V5h8V8z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="2.5" y1="0" x2="2.5" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#656565"/>
|
||||
<stop offset="1.342887e-02" style="stop-color:#646464"/>
|
||||
<stop offset="0.4453" style="stop-color:#3C3C3C"/>
|
||||
<stop offset="0.7891" style="stop-color:#242424"/>
|
||||
<stop offset="1" style="stop-color:#1B1B1B"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#656565"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#656565"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#1B1B1B"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M4,0H2.6H1C0.5,0,0,0.5,0,1v22c0,0.5,0.5,1,1,1h1.6H4h1v-1V1V0H4z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="2.5" y1="1" x2="2.5" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="1" style="fill:url(#SVGID_6_);" width="3" height="22"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="2.5" y1="2" x2="2.5" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#7C7C7C"/>
|
||||
<stop offset="0.3898" style="stop-color:#5C5C5C"/>
|
||||
<stop offset="0.768" style="stop-color:#444444"/>
|
||||
<stop offset="1" style="stop-color:#3B3B3B"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#7C7C7C"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#7C7C7C"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#3B3B3B"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2" style="fill:url(#SVGID_7_);" width="1" height="20"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M74.4 5.6c0-1.3-1.1-2.5-2.5-2.5-.4 0-.7.1-1 .3l-6.6 3.3V2.5c0-1.3-1.1-2.5-2.6-2.5-.4 0-.7.1-1 .2L37.1 12 13.5.3c-1.2-.6-2.7-.1-3.3 1.1-.2.2-.2.6-.3.9v4.2L3.5 3.3C2.3 2.7.7 3.2.2 4.4c-.2.3-.2.7-.2 1v49.1c0 .9.5 1.7 1.3 2.2L36 73.8c.7.3 1.5.3 2.3 0L73 56.7c.8-.4 1.3-1.2 1.3-2.2l.1-48.9zM36.3 62.4c.4.1.9.1 1.3 0 .1 0 .2-.1.3-.1 0 0 24.7-12.2 24.8-12.2.8-.4 1.3-1.2 1.3-2.2V12.3l5.2-2.6v42.9l-32.3 16L5.3 51.8V10.2l5 2.1v35.6c0 .9.5 1.7 1.3 2.2.1 0 24.1 12.2 24.2 12.2.3 0 .4 0 .5.1zm3.5-6.7V16.8l19-9.4v39l-19 9.3zm-24.3-9.5V7.3l19 9.4v38.8l-19-9.3z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 735 B |
|
@ -1,77 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-0.1 -0.1 24 24"
|
||||
style="overflow:visible;enable-background:new -0.1 -0.1 24 24;" xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="10.9429" y1="0" x2="10.9429" y2="19.7881">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M10.8,0C4.7,0.1-0.1,4.3,0,9.3c0,2.6,1.5,5,3.7,6.6c0,0.1,0,0.2,0.1,0.3
|
||||
c0.3,2-0.9,3.6-0.9,3.6s2.2-0.5,3.5-1.5c0.2-0.2,0.5-0.4,0.7-0.7c1.3,0.4,2.6,0.6,4.1,0.6c6-0.1,10.9-4.3,10.8-9.3
|
||||
C21.8,3.9,16.8-0.1,10.8,0z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="10.9434" y1="1" x2="10.9434" y2="18.1289">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M4.6,18.1c0.1-0.6,0.2-1.3,0.1-2.1c0-0.1,0-0.2-0.1-0.3l-0.1-0.4l-0.3-0.3
|
||||
C2.2,13.6,1,11.5,1,9.3C0.9,4.8,5.3,1.1,10.8,1L11,1c5.4,0,9.8,3.5,9.9,7.9c0.1,4.5-4.3,8.2-9.8,8.3l-0.2,0c-1.2,0-2.4-0.2-3.5-0.5
|
||||
l-0.6-0.2l-0.4,0.5c-0.2,0.2-0.4,0.4-0.5,0.6C5.4,17.7,5,17.9,4.6,18.1z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="10.9434" y1="2" x2="10.9434" y2="16.1631">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M10.8,16.2c-1.1,0-2.2-0.2-3.2-0.5l-1.3-0.4L5.7,16c0,0,0-0.1,0-0.1c0-0.1,0-0.3-0.1-0.4
|
||||
l-0.1-0.7l-0.6-0.6l0,0C3,13,2,11.2,2,9.3C1.9,5.3,5.9,2.1,10.8,2L11,2c4.8,0,8.8,3.1,8.8,6.9c0.1,3.9-3.9,7.2-8.8,7.2L10.8,16.2z"
|
||||
/>
|
||||
<path style="fill:#FFFFFF;" d="M16.6,9.6c0,0.7-0.6,1.3-1.2,1.3c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.2,1.3-1.2
|
||||
C16,8.4,16.6,8.9,16.6,9.6z M11.5,8.4c-0.7,0-1.2,0.6-1.2,1.2c0,0.7,0.6,1.3,1.2,1.3c0.7,0,1.3-0.6,1.3-1.3
|
||||
C12.7,8.9,12.2,8.4,11.5,8.4z M7.5,8.4c-0.7,0-1.3,0.6-1.3,1.2c0,0.7,0.6,1.3,1.3,1.3s1.3-0.6,1.3-1.3C8.8,8.9,8.2,8.4,7.5,8.4z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.0254" y1="6.667" x2="14.0254" y2="23.8398">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M20.7,20.5c1.9-1.4,3.2-3.4,3.2-5.7c0.1-4.4-4.3-8-9.8-8.1C8.7,6.6,4.2,10,4.1,14.4
|
||||
c-0.1,4.4,4.3,8,9.8,8.1c1.4,0,2.7-0.2,3.9-0.5c1,1.3,3.7,1.9,3.7,1.9S20.3,22.2,20.7,20.5z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="14.1436" y1="7.667" x2="14.1436" y2="22.1943">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M19.9,22.2c-0.5-0.2-1-0.5-1.7-1.4c-0.4,0.1-1.7,0.7-4.2,0.7c-5,0-8.9-3.3-8.8-7.1
|
||||
c0.1-3.7,4-6.8,9-6.8c2.3,0,4.7,0.8,6.3,2.2c1.6,1.3,2.5,3.1,2.4,4.9c0,1.9-1,3.7-3.1,5.1C19.7,20.7,19.7,21.6,19.9,22.2z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="14.0234" y1="8.6689" x2="14.0234" y2="20.5176">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M13.9,20.5c-6.1-0.2-7.9-4.2-7.8-6.1c0.2-3.2,3.3-5.8,8-5.8c2.1,0,4.3,0.8,5.7,2
|
||||
c1.4,1.1,2.1,2.6,2.1,4.1c-0.1,2.9-2.9,4.5-2.9,4.5s-0.2,0.7-0.2,0.9l-0.4-0.5C18.4,19.6,16.5,20.6,13.9,20.5z"/>
|
||||
<path style="fill:#FFFFFF;" d="M19.4,14.9c0,0.7-0.6,1.3-1.2,1.3c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.2,1.3-1.2
|
||||
C18.8,13.7,19.4,14.2,19.4,14.9z M14.3,13.7c-0.7,0-1.2,0.6-1.2,1.2c0,0.7,0.6,1.3,1.2,1.3c0.7,0,1.3-0.6,1.3-1.3
|
||||
C15.5,14.2,15,13.7,14.3,13.7z M10.3,13.7c-0.7,0-1.3,0.6-1.3,1.2c0,0.7,0.6,1.3,1.3,1.3s1.3-0.6,1.3-1.3
|
||||
C11.6,14.2,11,13.7,10.3,13.7z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M72.4 32.9C67.8 24.3 57.9 20.4 49 20.6c-1.3-4.3-3.9-7.9-7.4-10.4-11.9-8.8-31.7-7-39.6 7-5.1 9.5.2 20.1 8.7 24.6v9.5c0 1.3 1.1 2.4 2.2 2.4.6 0 1.1-.2 1.4-.6l7.5-7.8c1.2.1 2.4.2 3.6.1C29 57 41.9 62.1 52.6 61l7.5 7.8c.9.9 2.2.9 3.1-.1.3-.4.6-1 .6-1.5v-9.6c8.5-4.5 13.7-15.2 8.6-24.7zm-58.3 5C6.4 34.2 2.8 26.6 6.5 19.5c3.8-6.6 11.3-9.3 18.1-9.4 4.8-.1 9.5 1.3 13.5 4.2 2.5 1.8 4.3 4 5.4 7-9 1.3-18.9 8.4-18.9 19-1.1 0-2.2-.1-3.4-.2-.6-.1-1.2.2-1.7.5l-4.4 4.5v-5.3c.2-.6-.3-1.4-1-1.9zm17.2-2.7c6.5-11 23.1-12 32.4-4.8 3.1 2.4 5.8 6.3 5.7 10.7 0 5.2-3.4 9.9-9.1 12.8-.7.3-1.2 1.1-1.2 2v5.4l-4.4-4.5c-.5-.6-1.2-.7-1.8-.6-1.2.2-2.2.2-3.4.2-2.6 0-5.2-.4-7.8-1.2-7.8-2.6-15.2-11.1-10.4-20z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 867 B |
|
@ -1,46 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-4.2 -0.3 24 24"
|
||||
style="overflow:visible;enable-background:new -4.2 -0.3 24 24;" xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="7.8237" y1="0" x2="7.8237" y2="23.3262">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M2.4,8.4C1.1,8.4,0,7.5,0,6.1C0,3.3,2.8,0,7.7,0c3.3,0,7.9,2.2,7.9,6c0,2-1.2,3.5-3.6,4.4
|
||||
c-3.3,1.2-1.4,3.7-4.5,3.7c-1.3,0-2.1-0.8-2.1-2.1c0-2.7,2.8-4.2,2.8-6.9c0-0.7-0.3-1.6-1.1-1.6c-0.9,0-1,0.9-1,1.5
|
||||
C5.8,7.1,4.5,8.4,2.4,8.4z M7.3,23.3c-2,0-3.6-1.6-3.6-3.6c0-2,1.6-3.6,3.6-3.6c2,0,3.6,1.6,3.6,3.6C10.8,21.7,9.2,23.3,7.3,23.3z"
|
||||
/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="7.8237" y1="1" x2="7.8237" y2="22.3262">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M7.3,22.3c-1.4,0-2.6-1.1-2.6-2.6c0-1.4,1.1-2.6,2.6-2.6s2.6,1.1,2.6,2.6
|
||||
C9.8,21.2,8.7,22.3,7.3,22.3z M7.6,13.1c-0.8,0-1.1-0.4-1.1-1.1c0-1.1,0.6-1.9,1.2-2.9c0.7-1.1,1.5-2.3,1.5-4c0-1.3-0.7-2.6-2.1-2.6
|
||||
c-1.8,0-2,1.7-2,2.4C4.9,6,4.3,7.4,2.4,7.4C1.6,7.4,1,6.9,1,6.1C1,4,3.1,1,7.7,1c2.9,0,6.9,1.9,6.9,5c0,1.6-1,2.7-2.9,3.4
|
||||
c-2,0.8-2.5,2-2.9,2.8C8.5,13,8.5,13.1,7.6,13.1z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="7.8237" y1="2.0986" x2="7.8237" y2="21.3262">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M7.3,21.3c-0.9,0-1.6-0.7-1.6-1.6s0.7-1.6,1.6-1.6c0.9,0,1.6,0.7,1.6,1.6S8.2,21.3,7.3,21.3z
|
||||
M7.6,12.1c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.8,0.5-1.5,1-2.3c0.8-1.2,1.7-2.6,1.7-4.6c0-1.3-0.5-2.3-1.3-3
|
||||
c2.2,0.4,4.8,1.8,4.8,3.9c0,0.4,0,1.6-2.3,2.5C9,9.4,8.3,11,7.9,11.9c0,0.1-0.1,0.2-0.1,0.2C7.8,12.1,7.7,12.1,7.6,12.1z M2.4,6.4
|
||||
C2,6.4,2,6.2,2,6.1c0-1.1,0.9-2.7,2.7-3.5C4.4,3.1,4.1,3.8,4,4.8C3.9,6.2,3.1,6.4,2.4,6.4z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M71.6 6.9 57 .5c-3.8-1.8-7.7 2.3-6.1 6.1l1.4 3.4c-6.4 2.3-11.5 4.4-15.1 7.6-3.7-3.2-8.8-5.1-15.1-7.3l1.4-3.7c1.6-3.8-2.3-7.9-6.1-6.1L2.8 6.9C.5 8-.6 10.7.4 13.1l6.2 15.1c.9 2.3 3.6 3.6 5.9 2.7 1.3-.5 2.2-1.4 2.7-2.7l1.4-3.6 8.6 3.8c2.7 1 4.4 3.6 4.2 6.4v36.3c0 1.9 1.5 3.4 3.4 3.5h8.8c1.9 0 3.5-1.6 3.5-3.4V35c-.2-2.8.5-5.4 3.2-6.4l9.5-3.8 1.4 3.6c.9 2.3 3.6 3.6 5.9 2.7 1.2-.4 2.2-1.4 2.6-2.6l6.2-15.1c1.2-2.8.1-5.5-2.3-6.5zM39.9 69.2h-5.3v-36c-.2-2.3-1-4.5-2.4-6.4-1-1.3-2.7-2.4-3.8-2.9l-14.5-6.3-1.9 4.7c-.2.5-1.1.9-1.6.7 0 0-.4-.3-.5-.6L5.6 12.3c-.3-.5 0-1.2.5-1.4.8-.2 11.1-5 11.1-3.6.3.3.4.8.3 1.2l-1.9 4.7c7 3 16.9 5.8 19.7 9 .8.8 1.7 1.6 2.3 2.5 2 2.8 2.6 5.4 2.6 8.7l-.3 35.8zm28.9-56-3.9 9.2c-.1.3-.3.4-.5.6-.5.2-1-.1-1.2-.6l-2.4-5-13.6 5.9c-1.5.7-2.3 1.2-3.3 2.5-.7-2.7-1.2-2.5-2.9-4.7 4.4-3.7 11.1-5 18.2-8l-2-4.9c-.2-.4-.1-.8.3-1.2 0-1.3 10.5 4.5 10.9 4.4.3.3.5.8.4 1.4v.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 1.0 KiB |
|
@ -1,87 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-2 -1 24 24" style="overflow:visible;enable-background:new -2 -1 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<radialGradient id="SVGID_1_" cx="10" cy="19.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M20,21c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V21z"/>
|
||||
<radialGradient id="SVGID_2_" cx="10" cy="19.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M2,22c-0.6,0-1-0.4-1-1v-3c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_3_" cx="10" cy="19.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="18" style="fill:url(#SVGID_3_);" width="16" height="3"/>
|
||||
<radialGradient id="SVGID_4_" cx="10" cy="11.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M20,13c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V13z"/>
|
||||
<radialGradient id="SVGID_5_" cx="10" cy="11.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M2,14c-0.6,0-1-0.4-1-1v-3c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_6_" cx="10" cy="11.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="10" style="fill:url(#SVGID_6_);" width="16" height="3"/>
|
||||
<radialGradient id="SVGID_7_" cx="10" cy="3.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M20,5c0,1.1-0.9,2-2,2H2C0.9,7,0,6.1,0,5V2c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V5z"/>
|
||||
<radialGradient id="SVGID_8_" cx="10" cy="3.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M2,6C1.4,6,1,5.6,1,5V2c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_9_" cx="10" cy="3.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="2" style="fill:url(#SVGID_9_);" width="16" height="3"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M64.9 8.1c-2.1-1.5-4.5-2.6-6.9-3.2-13.7-3.4-28-3.4-41.5 0-2.5.6-4.9 1.7-6.9 3.2-1.6 1.1-2.7 2.8-2.8 4.8v48.6c.1 1.9 1.2 3.7 2.8 4.8 2.1 1.5 4.5 2.6 6.9 3.2 13.7 3.4 28 3.4 41.5 0 2.5-.6 4.9-1.7 6.9-3.2 1.6-1.1 2.7-2.8 2.8-4.8V12.9a6.1 6.1 0 0 0-2.8-4.8zM11.7 19.2c3.4 1.6 6.9 2.7 10.7 3.2 4.8.9 9.7 1.2 14.6 1.2s9.8-.4 14.6-1.2c3.7-.5 7.3-1.6 10.7-3.2v9.9c0 .1 0 .2-.3.5-.2.3-.6.6-1.1.9-1.6.9-3.3 1.5-5 1.9-12.4 3-25.2 3-37.6 0-1.7-.4-3.4-1.1-5-1.9-.4-.2-.9-.5-1.3-.9-.3-.3-.3-.5-.3-.5v-9.9zm50.8 42.2c0 .1 0 .2-.3.5s-.7.6-1.2.9c-1.6.9-3.3 1.5-5 1.9-12.4 3-25.2 3-37.6 0-1.7-.4-3.4-1.1-5-1.9-.4-.2-.9-.5-1.3-.9-.3-.3-.3-.5-.3-.5l.1-9.9c3.4 1.6 6.9 2.7 10.7 3.2 4.8.9 9.7 1.2 14.6 1.2s9.8-.3 14.6-1.2c3.7-.5 7.3-1.6 10.7-3.2v9.9zm0-16c0 .1 0 .2-.3.5s-.7.5-1.2.9c-1.6.9-3.3 1.5-5 1.9-12.4 3-25.2 3-37.6 0-1.7-.4-3.4-1.1-5-1.9-.4-.2-.9-.5-1.3-.9-.3-.3-.3-.5-.3-.5v-9.9c3.4 1.6 6.9 2.7 10.7 3.2 9.7 1.6 19.7 1.6 29.4 0 3.7-.5 7.3-1.6 10.7-3.2l-.1 9.9zm-.3-32c-.4.3-.9.6-1.3.9-1.6.9-3.3 1.5-5 1.9-6.1 1.6-12.5 2.2-18.8 2.2-6.3.1-12.6-.6-18.8-2.2-1.7-.4-3.4-1.1-5-1.9-.4-.2-.9-.5-1.3-.9-.3-.3-.3-.5-.3-.5s0-.2.3-.5.7-.6 1.3-.9c1.6-.9 3.3-1.5 5-1.9 12.4-3 25.2-3 37.6 0 1.7.4 3.4 1.1 5 1.9.4.2.9.5 1.3.9.3.3.3.5.3.5s.1.2-.3.5z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 1.4 KiB |
|
@ -1,87 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-2 -1 24 24" style="overflow:visible;enable-background:new -2 -1 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<radialGradient id="SVGID_1_" cx="10" cy="19.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M20,21c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V21z"/>
|
||||
<radialGradient id="SVGID_2_" cx="10" cy="19.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M2,22c-0.6,0-1-0.4-1-1v-3c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_3_" cx="10" cy="19.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="18" style="fill:url(#SVGID_3_);" width="16" height="3"/>
|
||||
<radialGradient id="SVGID_4_" cx="10" cy="11.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M20,13c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V13z"/>
|
||||
<radialGradient id="SVGID_5_" cx="10" cy="11.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M2,14c-0.6,0-1-0.4-1-1v-3c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_6_" cx="10" cy="11.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="10" style="fill:url(#SVGID_6_);" width="16" height="3"/>
|
||||
<radialGradient id="SVGID_7_" cx="10" cy="3.5" r="7.4917" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M20,5c0,1.1-0.9,2-2,2H2C0.9,7,0,6.1,0,5V2c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2V5z"/>
|
||||
<radialGradient id="SVGID_8_" cx="10" cy="3.5" r="6.6049" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M2,6C1.4,6,1,5.6,1,5V2c0-0.6,0.4-1,1-1h16c0.6,0,1,0.4,1,1v3c0,0.6-0.4,1-1,1H2z"/>
|
||||
<radialGradient id="SVGID_9_" cx="10" cy="3.5" r="5.7554" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<rect x="2" y="2" style="fill:url(#SVGID_9_);" width="16" height="3"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.1 KiB |
|
@ -1,55 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="24.001">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M21.1,12.3c1,0,1.7,0.9,1.7,0.9c0.3,0.4,0.7,0.8,0.9,0.8s0.3-0.5,0.3-1V8c0-0.5-0.5-1-1-1h-3
|
||||
c-0.5,0-1-0.1-1-0.3c0-0.2,0.3-0.7,0.7-1.1c0,0,0.8-0.9,0.8-2.1C20.5,1.6,18.9,0,17,0s-3.5,1.6-3.5,3.5c0,1.2,0.8,2.1,0.8,2.1
|
||||
C14.7,6,15,6.5,15,6.7C15,6.9,14.5,7,14,7H8C7.5,7,7,7.5,7,8v6c0,0.5-0.1,1-0.3,1S6,14.7,5.6,14.3c0,0-0.9-0.8-2.1-0.8
|
||||
C1.6,13.5,0,15.1,0,17s1.6,3.5,3.5,3.5c1.2,0,2.1-0.8,2.1-0.8C6,19.3,6.5,19,6.7,19S7,19.5,7,20v3c0,0.5,0.5,1,1,1h4
|
||||
c0.5,0,1-0.1,1-0.3s-0.3-0.6-0.7-1c0,0-0.6-0.6-0.6-1.6c0-1.4,1.3-2.5,2.7-2.5c1.4,0,2.4,1.1,2.4,2.5c0,1-0.9,1.7-0.9,1.7
|
||||
c-0.4,0.3-0.8,0.7-0.8,0.9s0.5,0.3,1,0.3h7c0.5,0,1-0.5,1-1v-6c0-0.5-0.1-1-0.3-1s-0.6,0.3-1,0.7c0,0-0.6,0.6-1.6,0.6
|
||||
c-1.4,0-2.5-1.3-2.5-2.7S19.7,12.3,21.1,12.3z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="23.001">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M17,23c0.4-0.4,0.7-1.1,0.7-1.9c0-2-1.5-3.5-3.4-3.5c-2,0-3.7,1.6-3.7,3.5
|
||||
c0,0.9,0.3,1.5,0.6,1.9H8v-3c0-1.5-0.7-2-1.3-2c-0.6,0-1.3,0.6-1.7,0.9c0,0-0.7,0.6-1.5,0.6C2.1,19.5,1,18.4,1,17s1.1-2.5,2.5-2.5
|
||||
c0.8,0,1.4,0.6,1.5,0.6C5.3,15.4,6.1,16,6.7,16C7.3,16,8,15.5,8,14V8h6c1.5,0,2-0.7,2-1.3c0-0.6-0.5-1.3-0.9-1.7
|
||||
c0,0-0.6-0.7-0.6-1.5C14.5,2.1,15.6,1,17,1s2.5,1.1,2.5,2.5c0,0.8-0.6,1.5-0.6,1.5C18.5,5.4,18,6.1,18,6.7C18,7.3,18.5,8,20,8h3v4
|
||||
c-0.4-0.4-1.1-0.7-1.9-0.7c-2,0-3.5,1.5-3.5,3.4c0,2,1.6,3.7,3.5,3.7c0.9,0,1.5-0.3,1.9-0.6V23H17z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="22.001">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M18.6,22c0.1-0.3,0.1-0.6,0.1-0.9c0-2.5-1.9-4.5-4.4-4.5c-2.5,0-4.7,2.1-4.7,4.5
|
||||
c0,0.3,0,0.6,0.1,0.9H9v-2c0-2.1-1.2-3-2.3-3C7.8,17,9,16.1,9,14V9h5c2.1,0,3-1.2,3-2.3c0-0.7-0.4-1.5-1.2-2.4
|
||||
c-0.1-0.1-0.3-0.5-0.3-0.8C15.5,2.7,16.2,2,17,2s1.5,0.7,1.5,1.5c0,0.3-0.3,0.7-0.3,0.8C17.4,5.2,17,6,17,6.7C17,7.8,17.9,9,20,9h2
|
||||
v1.4c-0.3-0.1-0.6-0.1-0.9-0.1c-2.5,0-4.5,1.9-4.5,4.4c0,2.5,2.1,4.7,4.5,4.7c0.3,0,0.6,0,0.9-0.1V22H18.6z M3.5,18.5
|
||||
C2.7,18.5,2,17.8,2,17s0.7-1.5,1.5-1.5c0.3,0,0.7,0.3,0.8,0.3C5.2,16.6,6,17,6.7,17c-0.7,0-1.5,0.4-2.4,1.2
|
||||
C4.2,18.3,3.8,18.5,3.5,18.5z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M69.9 38.6c1.1 1 2.9.8 3.7-.3.4-.4.7-1.1.7-1.7V13.2c0-1.4-1.2-2.6-2.6-2.6H53.1c-.6-14.1-20.7-14.1-21.3 0H13.2c-1.4 0-2.6 1.2-2.6 2.6v18.6c-14.1.6-14.1 20.7 0 21.3v18.6c0 1.4 1.2 2.6 2.6 2.6h23.4c1.4 0 2.6-1.3 2.6-2.8 0-.7-.2-1.2-.7-1.7-4.6-5.4 3-12.2 7.8-7.2 1.9 2 1.9 5.1 0 7.2-1 1.1-.9 2.8.2 3.7.4.4 1.1.7 1.8.7h23.4c1.4 0 2.6-1.2 2.6-2.6V48.2c0-1.4-1.3-2.6-2.8-2.6-.7 0-1.2.2-1.7.7-2.2 2-5.5 1.8-7.5-.3-4.3-5 2.6-11.8 7.6-7.4zm-3.5 14.5c.9 0 1.8-.1 2.6-.3v16.3H52.7c1.4-5.7-2-11.5-7.6-13-5.7-1.4-11.5 2-13 7.6-.4 1.8-.4 3.6 0 5.4H15.8v-19c0-1.4-1.2-2.6-2.6-2.6-.9.2-1.8.3-2.6.4-7.1-.2-7.1-10.5 0-10.6.7 0 1.2.1 1.8.3 1.4.4 2.9-.2 3.4-1.7.1-.2.1-.6.1-.9V15.9H35c1.4 0 2.6-1.2 2.6-2.6 0-.3 0-.6-.1-.9-1-2.8.4-5.8 3.3-6.7 2.8-1 5.8.4 6.7 3.3.2.6.3 1.1.3 1.8 0 .6-.1 1.2-.3 1.8-.4 1.4.2 2.9 1.7 3.4.3.1.6.1.9.1h19.1v16.3c-5.7-1.4-11.5 2-12.9 7.7-1.4 5.7 2 11.5 7.7 12.9.7 0 1.5.3 2.4.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 1.0 KiB |
|
@ -1,133 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="7.7681" y1="10.2231" x2="7.7681" y2="23.9805">
|
||||
<stop offset="0" style="stop-color:#DB6D17"/>
|
||||
<stop offset="1" style="stop-color:#BF3B08"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BF3B08"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M10.9,19.1c-1.1-0.8-1.7-1.1-2-2.4c-0.2-1.1-1.3-6.4-1.3-6.4l-4.9,1c0,0,0.9,4.6,1.8,9
|
||||
c0.9,4.4,1,4.3,6.8,3.1C13.7,22.8,12.8,20.5,10.9,19.1z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="7.8569" y1="11.3994" x2="7.8569" y2="22.9805">
|
||||
<stop offset="0" style="stop-color:#F6A55E"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M7,23c-0.8,0-0.9,0-1.5-3l-1.6-8l2.9-0.6L8,16.9c0.3,1.6,1,2.1,1.9,2.7l0.4,0.3
|
||||
c1.1,0.8,1.5,1.7,1.4,2.1c0,0.2-0.5,0.3-0.6,0.3l-0.5,0.1C9,22.7,7.8,23,7,23L7,23z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="7.7373" y1="12.5757" x2="7.7373" y2="21.8926">
|
||||
<stop offset="0" style="stop-color:#F17219"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M7.7,21.9c-0.7,0-0.7,0-1.2-2.1l-1.4-7l1-0.2L7,17.1c0.4,1.9,1.4,2.7,2.3,3.3l0.4,0.3
|
||||
C10.8,21.6,10.6,21.4,7.7,21.9z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="11.0005" y1="0" x2="11.0005" y2="19.0039">
|
||||
<stop offset="0" style="stop-color:#C3C3C3"/>
|
||||
<stop offset="1" style="stop-color:#ACACAC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#C3C3C3"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#C3C3C3"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#ACACAC"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M12.5,5H4.6C2.1,5,0,7.2,0,9.5C0,11.8,2.1,14,4.6,14h7.6c0,0,5.7,0,9.8,5c0-4.9,0-9.5,0-9.5
|
||||
s0-4.3,0-9.5C18.7,4.8,12.5,5,12.5,5z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.0005" y1="2.6079" x2="11.0005" y2="16.5342">
|
||||
<stop offset="0" style="stop-color:#E9E9E9"/>
|
||||
<stop offset="1" style="stop-color:#C4C4C4"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E9E9E9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E9E9E9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C4C4C4"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M21,16.5C17,13,12.5,13,12.2,13H4.6C2.7,13,1,11.4,1,9.5S2.7,6,4.6,6h7.8
|
||||
c0.3,0,4.9-0.2,8.5-3.4V16.5z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.0005" y1="4.5991" x2="11.0005" y2="14.5273">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M20,14.5C16.2,12,12.4,12,12.2,12H4.6C3.3,12,2,10.8,2,9.5S3.3,7,4.6,7h7.8
|
||||
c0.2,0,4-0.2,7.5-2.4V14.5z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="5.501" y1="5.0015" x2="5.501" y2="14.002">
|
||||
<stop offset="0" style="stop-color:#DB6D17"/>
|
||||
<stop offset="1" style="stop-color:#BF3B08"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BF3B08"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M11,5H4.6C2.1,5,0,7.2,0,9.5C0,11.8,2.1,14,4.6,14H11V5z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="6.001" y1="6.0015" x2="6.001" y2="13.0015">
|
||||
<stop offset="0" style="stop-color:#F6A55E"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M11,6H4.6C2.7,6,1,7.6,1,9.5S2.7,13,4.6,13H11V6z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="6.501" y1="7.0015" x2="6.501" y2="12.0015">
|
||||
<stop offset="0.2195" style="stop-color:#F6A55E"/>
|
||||
<stop offset="0.5076" style="stop-color:#F28C3F"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0.2195" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5304" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_9_);" d="M11,7H4.6C3.3,7,2,8.2,2,9.5S3.3,12,4.6,12H11V7z"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="22.002" y1="1.464844e-03" x2="22.002" y2="19.002">
|
||||
<stop offset="0" style="stop-color:#DB6D17"/>
|
||||
<stop offset="1" style="stop-color:#BF3B08"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BF3B08"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_10_);" d="M20,17c0,1.1,0.9,2,2,2l0,0c1.1,0,2-0.9,2-2V2c0-1.1-0.9-2-2-2l0,0c-1.1,0-2,0.9-2,2V17z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="22.002" y1="1.0015" x2="22.002" y2="18.002">
|
||||
<stop offset="0" style="stop-color:#F6A55E"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_11_);" d="M22,18c-0.6,0-1-0.4-1-1V2c0-0.6,0.4-1,1-1s1,0.4,1,1v15C23,17.6,22.6,18,22,18z"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="22.002" y1="1.0015" x2="22.002" y2="18.002">
|
||||
<stop offset="0" style="stop-color:#F17219"/>
|
||||
<stop offset="9.009037e-02" style="stop-color:#F38A39"/>
|
||||
<stop offset="0.183" style="stop-color:#F59E54"/>
|
||||
<stop offset="0.2378" style="stop-color:#F6A55E"/>
|
||||
<stop offset="0.2464" style="stop-color:#F5A35C"/>
|
||||
<stop offset="0.3809" style="stop-color:#EC8740"/>
|
||||
<stop offset="0.5155" style="stop-color:#E5722C"/>
|
||||
<stop offset="0.649" style="stop-color:#E06620"/>
|
||||
<stop offset="0.7805" style="stop-color:#DF621C"/>
|
||||
<stop offset="1" style="stop-color:#D64701"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="0.4103" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="0.2378" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.296" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.7805" style="stop-color:#DF621C"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DF621C"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D64701"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_12_);" d="M22,18c-0.6,0-1-0.4-1-1V2c0-0.6,0.4-1,1-1s1,0.4,1,1v15C23,17.6,22.6,18,22,18z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M62.8.2c-.8-.4-1.7-.2-2.3.5-.2.2-14.8 15.2-29.5 16.6v26.2c14.7 1.3 29.3 16.4 29.5 16.6.8.8 2.1.8 2.9 0 .3-.4.6-.9.6-1.5V2.4c0-1.1-.5-1.9-1.2-2.2zm-3.9 52.1c-6.6-5.9-14.2-11.1-22.6-13.1V21.6c8.5-2 16-7.2 22.6-13.1v43.8zM72.8 25.4c-.8-1.5-2.1-2.6-3.4-3.4v16.7C74 36 75.6 30 72.8 25.4zM25.8 43.2V17.3H12.9C5.7 17.3 0 23.1 0 30.2c0 7.2 5.8 12.9 12.9 12.9h12.9v.1zM5.1 30.3c0-4.3 3.5-7.6 7.6-7.6h7.6V38h-7.6c-4.1-.1-7.6-3.4-7.6-7.7zM24.4 48.4h-14c-.6 0-1.1-.1-1.7-.3 2 8.4 4.7 16.4 8 24.1.6 1.3 2.3 2.2 3.2 2.2h12.4c1.2 0 1.9-1.6 1.6-3.5-.1-.6-.3-1.2-.6-1.8-1.5-2-8.2-18.5-8.9-20.7zm-3.5 20.8c-1.3-3.1-4.6-12.3-5.5-15.5h5.4s5.6 14.8 6 15.5h-5.9z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 827 B |
|
@ -1,60 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-3 0 24 24" style="overflow:visible;enable-background:new -3 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="0" x2="9.4995" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="11.5,0 0,0 0,24 19,24 19,7.9 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="1" x2="9.4995" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="1,23 1,1 11.1,1 18,8.3 18,23 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="2" x2="9.4995" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="2,22 2,2 10.6,2 17,8.7 17,22 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.2451" y1="0" x2="14.2451" y2="9.3594">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M10,9c0,0,5.2-1.5,9,0.4c0-0.1,0-1.5,0-1.5L11.5,0c0,0-1.8,0-2,0C12.1,3.7,10,9,10,9z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.3223" y1="7.5449" x2="14.4504" y2="4.4168">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M17.5,7.8c-0.9-0.2-2-0.3-3.1-0.3c-1.1,0-2.1,0.1-3,0.3c0.4-1.6,0.7-4.1-0.2-6.4L17.5,7.8z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.5 KiB |
|
@ -1,65 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-0.1 -2 24 24"
|
||||
style="overflow:visible;enable-background:new -0.1 -2 24 24;" xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9351" y1="0" x2="11.9351" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M21.9,19c0,0.5-0.5,1-1,1h-18c-0.5,0-1-0.5-1-1V1.1c0-0.5,0.5-1.1,1-1.1h4
|
||||
c0.5,0,1.4,0.3,1.8,0.6l0.9,0.7C10.1,1.7,10.9,2,11.4,2l9.5,0c0.5,0,1,0.5,1,1V19z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9351" y1="0.9888" x2="11.9351" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M2.9,19V1.1C2.9,1.1,3,1,3,1l3.9,0c0.3,0,0.9,0.2,1.2,0.4L9,2.2C9.7,2.6,10.7,3,11.4,3l9.5,0
|
||||
v16H2.9z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9351" y1="1.9917" x2="11.9351" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M3.9,18V2l3,0C7,2,7.4,2.1,7.5,2.2L8.4,3c0.8,0.6,2.1,1,3,1l8.5,0v14H3.9z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="11.936" y1="5" x2="11.936" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M23,19c0,0.5-0.5,1-1.1,1h-20c-0.5,0-1-0.5-1.1-1L0,6c0-0.5,0.4-1,0.9-1h22c0.5,0,1,0.5,0.9,1
|
||||
L23,19z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.9673" y1="5.9541" x2="11.9673" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M1.9,19c0,0-0.1-0.1-0.1-0.1L1,6l21.9,0L22,18.9c0,0,0,0.1-0.1,0.1H1.9z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.9663" y1="6.9565" x2="11.9663" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_6_);" points="2.8,18 2.1,7 21.9,7 21.1,18 "/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M74.3 21c0-2.2-1.4-3.9-3.2-3.9H38l-7.4-11C30 5.4 29.1 5 28.3 5H3.4C1.6 5 .1 6.8.1 9.1V65c0 2.2 1.5 3.9 3.3 4.1h67.7c1.5 0 2.9-1.3 3.2-3.1 0-44.1.1-18.7.1-39.8l-.1-5.2zm-5.2 1.6v41.2l-63.9-.2V10.2l22.3.3 7.7 11.4c.4.5 1 .8 1.5.8h32.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 420 B |
|
@ -1,71 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="10.4995" y1="0" x2="10.4995" y2="19.4312">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M19,0H2C0.9,0,0,0.9,0,2v11.3C0,14.4,0.9,15,2,15h0v4.4L6.1,15H19c1.1,0,2-0.5,2-1.6V2
|
||||
C21,0.9,20,0,19,0z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="10.4995" y1="0.9531" x2="10.4995" y2="16.8384">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M3,14H2c-0.4,0-1-0.1-1-0.6V2c0-0.6,0.5-1,1-1H19c0.5,0,1,0.5,1,1v11.3c0,0.6-0.8,0.6-1,0.6
|
||||
H5.7L3,16.8V14z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="10.4985" y1="1.9775" x2="10.4985" y2="14.314">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M4,13c0,0-2,0-2,0V2l17,0l0,11c0,0-13.8,0-13.8,0L4,14.3V13z"/>
|
||||
<path style="fill:#FFFFFF;" d="M17,11H4v-1h13V11z M17,8H4v1h13V8z M17,6H4v1h13V6z M17,4H4v1h13V4z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="15" y1="7.8955" x2="15" y2="23.897">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M22,7.9H8c-1.1,0-2,0.7-2,1.8v9c0,1.1,0.9,2,2,2v3.2l3.1-3H22c1.1,0,2-1.1,2-2.2v-9
|
||||
C24,8.6,23.1,7.9,22,7.9z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="15" y1="8.8955" x2="15" y2="21.3911">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M9,19.9H8c-0.6,0-1-0.7-1-1.2v-9c0-0.6,0.4-0.8,1-0.8h14c0.6,0,1,0.2,1,0.8v9
|
||||
c0,0.6-0.4,1.2-1,1.2H10.6L9,21.4V19.9z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="15" y1="9.8955" x2="15" y2="18.896">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_6_);" points="10,18.9 8,18.9 8,9.9 22,9.9 22,18.9 10.2,18.9 10,18.9 "/>
|
||||
<path style="fill:#FFFFFF;" d="M20,16.9H10v-1h10V16.9z M20,13.9H10v1h10V13.9z M20,11.9H10v1h10V11.9z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M62 3.8H12.4C5.5 3.8 0 9.4 0 16.2v33.6c0 6.9 5.6 12.3 12.4 12.3h9l13.7 11.6c1.2.9 2.8.9 4 0l13.8-11.6h9c6.9 0 12.4-5.6 12.4-12.4V16.2c0-6.9-5.4-12.4-12.3-12.4zm7.1 11.7v34.6c0 3.5-2.8 6.3-6.3 6.3h-9.2c-1.5 0-2.9.5-4.1 1.5L37.3 68.1 25 57.9c-1.1-1-2.6-1.5-4.1-1.5h-9.1c-3.5 0-6.3-2.8-6.3-6.3V15.5c0-3.5 2.8-6.3 6.3-6.3h50.8c3.5 0 6.5 2.8 6.5 6.3z"/><path d="M14.9 35.4h32.4c1.4 0 2.6-1.2 2.6-2.6 0-1.4-1.2-2.6-2.6-2.6H15.2c-1.4-.1-2.7 1-2.8 2.4 0 1.5 1.1 2.7 2.5 2.8zM15.1 24.9h16.1c1.4-.1 2.5-1.3 2.4-2.8-.1-1.3-1.1-2.4-2.4-2.4h-16c-1.4 0-2.6 1.2-2.5 2.7.1 1.3 1.1 2.4 2.4 2.5zM47.2 40.6H15.1c-1.4-.1-2.7 1-2.8 2.4-.1 1.4 1 2.7 2.4 2.8h32.4c1.5 0 2.6-1.1 2.6-2.6s-1-2.6-2.5-2.6z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 865 B |
|
@ -1,146 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="17.5" y1="16" x2="17.5" y2="22">
|
||||
<stop offset="0" style="stop-color:#DB6D17"/>
|
||||
<stop offset="1" style="stop-color:#BF3B08"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BF3B08"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="16" style="fill:url(#SVGID_1_);" width="5" height="6"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="17.5" y1="17" x2="17.5" y2="21">
|
||||
<stop offset="0" style="stop-color:#F6A55E"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<rect x="16" y="17" style="fill:url(#SVGID_2_);" width="3" height="4"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="17.5" y1="18" x2="17.5" y2="20">
|
||||
<stop offset="0" style="stop-color:#F17219"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<rect x="17" y="18" style="fill:url(#SVGID_3_);" width="1" height="2"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="17.5" y1="9" x2="17.5" y2="15.0005">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="9" style="fill:url(#SVGID_4_);" width="5" height="6"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.5" y1="10" x2="17.5" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<rect x="16" y="10" style="fill:url(#SVGID_5_);" width="3" height="4"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="17.5" y1="11" x2="17.5" y2="13">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<rect x="17" y="11" style="fill:url(#SVGID_6_);" width="1" height="2"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="8.4995" y1="0" x2="8.4995" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<rect style="fill:url(#SVGID_7_);" width="17" height="24"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="8.4995" y1="1" x2="8.4995" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="1" style="fill:url(#SVGID_8_);" width="15" height="22"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="8.4995" y1="2" x2="8.4995" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2" style="fill:url(#SVGID_9_);" width="13" height="20"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="17.5" y1="2" x2="17.5" y2="8">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="2" style="fill:url(#SVGID_10_);" width="5" height="6"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="17.5" y1="3" x2="17.5" y2="7">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<rect x="16" y="3" style="fill:url(#SVGID_11_);" width="3" height="4"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="17.5" y1="4" x2="17.5" y2="6">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<rect x="17" y="4" style="fill:url(#SVGID_12_);" width="1" height="2"/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="12.4248" y1="10.7285" x2="12.4248" y2="15.9702">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="5.472010e-02" style="stop-color:#739DE9"/>
|
||||
<stop offset="0.2045" style="stop-color:#6F95DE"/>
|
||||
<stop offset="0.4149" style="stop-color:#6C91D7"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.13" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_13_);" d="M12.7,15.2C12,15.7,11.5,16,11,16c-0.3,0-0.5-0.1-0.7-0.3C10.1,15.5,10,15.3,10,15
|
||||
c0-0.4,0.2-0.7,0.5-1c0.3-0.3,1-0.7,2.2-1.2v-0.5c0-0.4,0-0.6-0.1-0.7c0-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
||||
c-0.2,0-0.4,0.1-0.6,0.2c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.2,0.2,0.3c0.1,0.2,0.2,0.3,0.2,0.4c0,0.2-0.1,0.3-0.2,0.4
|
||||
c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.4-0.1-0.6-0.2s-0.2-0.3-0.2-0.5c0-0.3,0.1-0.5,0.3-0.7c0.2-0.2,0.5-0.4,0.9-0.5s0.7-0.2,1.1-0.2
|
||||
c0.5,0,0.9,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.5,0.7c0.1,0.2,0.1,0.5,0.1,1v1.9c0,0.2,0,0.4,0,0.4c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0,0.1,0
|
||||
c0.1,0,0.2-0.1,0.3-0.2l0.2,0.1c-0.2,0.3-0.4,0.5-0.6,0.6c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.7-0.2
|
||||
C12.8,15.6,12.7,15.4,12.7,15.2z M12.7,14.8v-1.7c-0.4,0.3-0.8,0.5-1,0.8c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.2,0.1,0.3,0.2,0.4
|
||||
c0.1,0.1,0.2,0.1,0.4,0.1C12.2,15.1,12.4,15,12.7,14.8z"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="6.3535" y1="8.2671" x2="6.3535" y2="15.7007">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="5.472010e-02" style="stop-color:#739DE9"/>
|
||||
<stop offset="0.2045" style="stop-color:#6F95DE"/>
|
||||
<stop offset="0.4149" style="stop-color:#6C91D7"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.13" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_14_);" d="M7,13.6H4.4l-0.3,0.7c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.2,0.1,0.4,0.2,0.5
|
||||
c0.1,0.1,0.3,0.1,0.7,0.1v0.2H2.5v-0.2c0.3,0,0.5-0.1,0.6-0.3c0.2-0.2,0.4-0.5,0.6-1.1l2.6-5.8h0.1l2.6,6c0.2,0.6,0.5,0.9,0.6,1.1
|
||||
c0.1,0.1,0.3,0.2,0.5,0.2v0.2H6.7v-0.2h0.1c0.3,0,0.5,0,0.6-0.1c0.1-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.1,0-0.2c0,0-0.1-0.2-0.2-0.4
|
||||
L7,13.6z M6.8,13.2l-1.1-2.5l-1.1,2.5H6.8z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M67.7 67.9V6.6c0-.8-.4-1.5-1.3-2L57.7.2c-.3-.1-.7-.2-1-.2H8.8C7.5.1 6.6 1 6.6 2.2v70c-.1 1 .8 2.1 2.2 2.2h47.9c.3 0 .7-.1 1-.2l8.7-4.4c.9-.4 1.3-1.1 1.3-1.9zM62.5 66l-4.4 2.2V57.7l4.4-2.2V66zm0-16.4-4.4 2.2V41.3l4.4-2.2v10.5zm0-16.1-4.4 2.2V25.2l4.4-2.2v10.5zm-1.1-15.8-7.2 3c-.7.5-1.3 1.2-1.3 2v46.4h-41V5.2h43.5L61.3 8l.1 9.7z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 515 B |
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" preserveAspectRatio="xMinYMid meet"><title>h5p finalArtboard 1</title><rect width="24" height="24" rx="3" ry="3" fill="#0882c8"/><path d="M22.1,8a3.37,3.37,0,0,0-2.42-.77H16.05v2H11.71l-.36,1.46a6.32,6.32,0,0,1,1-.35,3.49,3.49,0,0,1,.86-.06,3.24,3.24,0,0,1,2.35.88,2.93,2.93,0,0,1,.9,2.2A3.72,3.72,0,0,1,16,15.19a3.16,3.16,0,0,1-1.31,1.32,3.41,3.41,0,0,1-.67.27H17.7V13.28h1.65A3.8,3.8,0,0,0,22,12.46a3,3,0,0,0,.88-2.28A2.9,2.9,0,0,0,22.1,8Zm-2.44,3a1.88,1.88,0,0,1-1.21.29H17.7V9.2h.87a1.56,1.56,0,0,1,1.13.31,1,1,0,0,1,.3.76A.94.94,0,0,1,19.66,11Z" fill="#fff"/><path d="M12.27,12.05a1.33,1.33,0,0,0-1.19.74l-2.6-.37,1.17-5.2H7.29v4.08H4V7.23H1.1v9.55H4V13.28H7.29v3.49h3.57a3.61,3.61,0,0,1-1.13-.53A3.2,3.2,0,0,1,9,15.43a4,4,0,0,1-.48-1.09L11.09,14a1.32,1.32,0,1,0,1.18-1.92Z" fill="#fff"/></svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M40.9 38.3c-1.9-1.5-4.7-1.2-6.2.7l-.7.8-4.3-.6c-2.4-.3-4.3-.7-4.4-.7 0-.6.1-1.2.3-1.8.3-1.6 3.3-14.7 3.5-15.4l.1-.3h-8v13.9h-11V21H.2v32.3h10v-12H21v11.9h6c3.2 0 5.9 0 5.8-.1-.3-.2-.8-.3-1.1-.5-2.1-.8-3.9-2.4-5.1-4.3-.7-1.1-1.5-3.2-1.4-3.4.2-.2 2-.3 4.4-.7l4.3-.6.8.8c1.5 1.9 4.3 2.1 6.2.6 1.9-1.5 2.1-4.3.6-6.2-.2 0-.4-.3-.6-.5z"/><path d="M74.2 30.8c.1-1.2-.1-2.5-.4-3.6-1-3.1-3-4.9-6.4-5.8-1.2-.3-1.8-.3-8.8-.4H51v6.7H36.4l-.5 2.2c-.3 1.2-.5 2.3-.6 2.5 0 .1 0 .2.2.1s.8-.3 1.7-.5c1.4-.4 1.6-.4 4.2-.4 2.5 0 2.9.1 4.1.4 1.7.5 3.2 1.5 4.4 2.8 1.9 1.9 2.9 4.4 2.7 7.1 0 5-3 9.7-6.9 11-.3.1-.7.3-.9.4 1.9.2 3.8.2 5.7.2h5.8v-12H59c2.7.1 5.4-.1 8-.6 3.4-.8 6-3.4 6.9-6.7.3-1.2.4-2.3.3-3.4zm-9.8 1.4c-.4 1.1-1.3 1.9-2.5 2.3-1.1.3-2.2.3-3.4.3l-2.5.1v-7.5l2.6.1c1.1 0 2.1.1 3.2.3 2 .5 3.1 2.5 2.6 4.4z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 859 B After Width: | Height: | Size: 982 B |
|
@ -1,156 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 -2 24 24" style="overflow:visible;enable-background:new 0 -2 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="13" y="10" style="fill:url(#SVGID_1_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="14" y="11" style="fill:url(#SVGID_2_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18" y1="12" x2="18" y2="18">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="12" style="fill:url(#SVGID_3_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="10" style="fill:url(#SVGID_4_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="13.0005">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="13" y="11" style="fill:url(#SVGID_5_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="16.4233">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_6_);" points="17,10 17,11.7 17,15 17,16.4 18,15.5 19,16.4 19,15 19,11.7 19,10 "/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="10" style="fill:url(#SVGID_7_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="11" style="fill:url(#SVGID_8_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="6" y1="12" x2="6" y2="18">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="3" y="12" style="fill:url(#SVGID_9_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect y="10" style="fill:url(#SVGID_10_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="13.0005">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="11" style="fill:url(#SVGID_11_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="16.4233">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_12_);" points="5,10 5,11.7 5,15 5,16.4 6,15.5 7,16.4 7,15 7,11.7 7,10 "/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="10">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="7" style="fill:url(#SVGID_13_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="9">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="8" y="1" style="fill:url(#SVGID_14_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="8">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="9" y="2" style="fill:url(#SVGID_15_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="4">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="6" style="fill:url(#SVGID_16_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="3">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="7" y="1" style="fill:url(#SVGID_17_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="6.4229">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_18_);" points="11,0 11,1.7 11,5 11,6.4 12,5.5 13,6.4 13,5 13,1.7 13,0 "/>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.0 KiB |
|
@ -1,156 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 -2 24 24" style="overflow:visible;enable-background:new 0 -2 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="13" y="10" style="fill:url(#SVGID_1_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="14" y="11" style="fill:url(#SVGID_2_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18" y1="12" x2="18" y2="18">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="12" style="fill:url(#SVGID_3_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="10" style="fill:url(#SVGID_4_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="13.0005">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="13" y="11" style="fill:url(#SVGID_5_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="16.4233">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_6_);" points="17,10 17,11.7 17,15 17,16.4 18,15.5 19,16.4 19,15 19,11.7 19,10 "/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="10" style="fill:url(#SVGID_7_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="11" style="fill:url(#SVGID_8_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="6" y1="12" x2="6" y2="18">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="3" y="12" style="fill:url(#SVGID_9_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect y="10" style="fill:url(#SVGID_10_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="13.0005">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="11" style="fill:url(#SVGID_11_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="16.4233">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_12_);" points="5,10 5,11.7 5,15 5,16.4 6,15.5 7,16.4 7,15 7,11.7 7,10 "/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="10">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="7" style="fill:url(#SVGID_13_);" width="10" height="10"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="9">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="8" y="1" style="fill:url(#SVGID_14_);" width="8" height="8"/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="8">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="9" y="2" style="fill:url(#SVGID_15_);" width="6" height="6"/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="4">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="6" style="fill:url(#SVGID_16_);" width="12" height="4"/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="3">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="7" y="1" style="fill:url(#SVGID_17_);" width="10" height="2"/>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="6.4229">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_18_);" points="11,0 11,1.7 11,5 11,6.4 12,5.5 13,6.4 13,5 13,1.7 13,0 "/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M34.4 43.9H15.6V32.5l-8.2-.1c-.6 0-1.1.4-1.4 1L.2 46.1c-.1.2-.2.6-.2 1v25.2c0 1.1.7 2.1 1.6 2.1h31.6c.8 0 1.6-1 1.6-2.1V45.8c0-1.2.2-1.7-.4-1.9zm-4.8 25H5.4V46.5l4.5-8.8h.6v11.4h19.1v19.8zM39.6 45.8v26.5c0 1.1.8 2.1 1.6 2.1h31.6c.9 0 1.6-1 1.6-2.1V47.1c0-.4-.1-.8-.2-1l-5.8-12.7c-.3-.6-.8-1-1.4-1l-8.2.1v11.4H40c-.6.2-.4.7-.4 1.9zm5.2 3.3h19.1V37.7h.6l4.5 8.8v22.4H44.8V49.1z"/><path d="M53.6 12.7 47.9.9c-.3-.6-.8-.9-1.3-.9H27.8c-.5 0-1 .3-1.3.9l-5.6 11.7c-.2.3-.2.7-.2 1v23.5c0 .9.7 1.8 1.6 1.8h30c.8 0 1.5-.9 1.5-1.9V13.5c0-.3-.1-.6-.2-.8zM30.4 5.3h13.7l2.5 4.9H28l2.4-4.9zm18.2 28.3H26.2V15.4h22.4v18.2z"/><path style="fill:none" d="M0 0h74.4v74.4H0z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 841 B |
|
@ -1,94 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9854" y1="0" x2="11.9854" y2="24.0161">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M14.4,0L0.6,13.9c-0.8,0.8-0.8,2.1,0,2.8l6.7,6.7c0.8,0.8,2,0.8,2.8,0L24,9.6V0H14.4z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9854" y1="1" x2="11.9854" y2="23.0161">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M8.7,23c-0.3,0-0.5-0.1-0.7-0.3L1.3,16C1.1,15.8,1,15.6,1,15.3c0-0.3,0.1-0.5,0.3-0.7L14.9,1
|
||||
H23v8.2L9.4,22.7C9.2,22.9,9,23,8.7,23C8.7,23,8.7,23,8.7,23z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9844" y1="2" x2="11.9844" y2="22.0142">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="2,15.3 15.3,2 22,2 22,8.8 8.7,22 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.7197" y1="9.9688" x2="8.7197" y2="20.6313">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_4_);" points="3.4,15.3 8.7,10 14.1,15.3 8.7,20.6 "/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.1465" y1="22.0312" x2="11.1465" y2="23.8711" gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.0909 8.2514)">
|
||||
<stop offset="0" style="stop-color:#57C3F6"/>
|
||||
<stop offset="0.1648" style="stop-color:#83D3F8"/>
|
||||
<stop offset="0.3554" style="stop-color:#AFE3FB"/>
|
||||
<stop offset="0.5396" style="stop-color:#D2EFFD"/>
|
||||
<stop offset="0.7128" style="stop-color:#EBF8FE"/>
|
||||
<stop offset="0.8709" style="stop-color:#FAFDFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="0.3354" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_5_);" points="7.4,17.9 8.7,19.2 12.6,15.3 11.3,14 "/>
|
||||
<path style="fill:#F2EFD5;" d="M12.6,15.3L12.3,15c-0.3,0.2-0.8,0.5-1.4,1.1c-1.1,0.9-1,0.5-2,0.9c-0.4,0.2-0.9,0.6-1.4,1l1.2,1.2
|
||||
L12.6,15.3z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="8.3882" y1="23.1035" x2="13.9038" y2="23.1035" gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.0909 8.2514)">
|
||||
<stop offset="0" style="stop-color:#F8E5B5"/>
|
||||
<stop offset="1" style="stop-color:#F9E5B6"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F8E5B5"/>
|
||||
<a:midPointStop offset="0.4451" style="stop-color:#F8E5B5"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F9E5B6"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M12.6,15.3l-0.2-0.2c-0.4,0.2-0.6,0.6-1.3,1.2C10,17.2,10,16.6,9,17c-0.4,0.2-0.9,0.6-1.3,1.1
|
||||
l1.1,1.1L12.6,15.3z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="12.1709" y1="17.6572" x2="10.1204" y2="22.7323" gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.0909 8.2514)">
|
||||
<stop offset="0" style="stop-color:#57C3F6"/>
|
||||
<stop offset="4.801393e-03" style="stop-color:#59C4F6"/>
|
||||
<stop offset="0.1237" style="stop-color:#85D3F8"/>
|
||||
<stop offset="0.2474" style="stop-color:#AAE1FA"/>
|
||||
<stop offset="0.376" style="stop-color:#C9ECFC"/>
|
||||
<stop offset="0.51" style="stop-color:#E1F4FD"/>
|
||||
<stop offset="0.6519" style="stop-color:#F2FAFE"/>
|
||||
<stop offset="0.807" style="stop-color:#FCFEFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="0.25" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_7_);" points="4.8,15.3 7.4,17.9 11.3,14 8.7,11.4 "/>
|
||||
<path style="fill:#FFFFFF;" d="M9,11.6C8.7,11.8,8.7,12,8.7,12s-0.4-0.1-0.6,0.4c-0.1,0.4,0.3,0.5,0.3,0.5s0,0-0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1s-0.2,0.1-0.1,0.4c0.1,0.3,0.3,0.3,0.3,0.3s-0.1,0.5,0.4,0.6c0.4,0.1,0.5-0.3,0.5-0.3s0.3,0,0.6-0.2
|
||||
c0.3-0.2,0.4-0.5,0.4-0.5s0.1,0,0.2,0L9,11.6z"/>
|
||||
<path style="fill:#FFFFFF;" d="M7.9,14.5c0,0-0.1,0-0.2,0.1c0,0.1,0.1,0.2,0.1,0.2s0,0,0,0c0,0,0,0,0,0s-0.1,0,0,0.1
|
||||
C7.8,15,7.9,15,7.9,15s0,0.1,0.1,0.2c0.1,0,0.1-0.1,0.1-0.1s0.1,0,0.2,0c0.1-0.1,0.1-0.1,0.1-0.1s0.1,0,0.1-0.1c0-0.1,0-0.2,0-0.2
|
||||
s0.2,0,0.1-0.2c-0.1-0.1-0.2,0-0.2,0s-0.1-0.1-0.1-0.1c-0.1,0-0.1,0.1-0.1,0.1s0,0,0,0c0,0-0.1,0-0.1,0S8,14.3,7.9,14.3
|
||||
C7.8,14.4,7.9,14.5,7.9,14.5z"/>
|
||||
<path style="fill:#FFFFFF;" d="M19.6,8.4l-5.5,5.5l-0.7-0.7l5.5-5.5L19.6,8.4z M17.5,6.3L12,11.8l0.7,0.7L18.2,7L17.5,6.3z
|
||||
M16.1,4.9l-5.5,5.5l0.7,0.7l5.5-5.5L16.1,4.9z"/>
|
||||
<ellipse style="fill:#FFFFFF;" cx="19.7" cy="4.3" rx="1.3" ry="1.3"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M71.9 49.9 52.6 71.3c-1.7 1.9-4 3-6.4 3.1s-4.8-.8-6.6-2.6l-34.2-33c-1.8-1.7-2.9-4-3-6.5L0 9.9v-.1C-.2 4.6 3.8.1 8.9 0h.2l21.6.9c2.4-.1 4.7.8 6.5 2.5l34.2 33c3.8 3.5 4 9.5.6 13.4 0 0-.1 0-.1.1zM5.2 9.4l2.4 22.2v.1c0 1.1.5 2.1 1.3 3l34.3 33.1c.8.7 1.8 1.2 2.9 1.1 1 0 2.1-.5 2.9-1.3l19.3-21.4c1.5-1.7 1.5-4.4-.2-5.9l-34.2-33c-.8-.8-1.8-1.2-3-1.2h-.2L9.2 5.2c-2.4.1-4 2-4 4.2zm23.4 18.7c-3.3 3.7-8.9 3.9-12.6.5-3.5-3.4-3.8-9.2-.5-13s8.9-3.9 12.6-.5c1.8 1.8 2.9 4.1 2.9 6.7 0 2.4-.9 4.7-2.4 6.3zm-9.1-8.9c-1.4 1.5-1.4 4 .1 5.4s3.9 1.4 5.3-.1 1.4-4-.1-5.4c-.7-.7-1.6-1.1-2.5-1.1-1.1.1-2.1.5-2.8 1.2z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 781 B |
|
@ -1,126 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.5" y1="10" x2="5.5" y2="14.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<rect x="5" y="10" style="fill:url(#SVGID_1_);" width="1" height="4"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15" y1="5" x2="15" y2="9">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="18,5 11,5 11,6 18,6 18,9 19,9 19,6 19,5 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="5.5" y1="14" x2="5.5" y2="24">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M10,14H1c-0.6,0-1,0.4-1,1v1v7v1h1h9h1v-1v-7v-1C11,14.4,10.6,14,10,14z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="5.5" y1="17" x2="5.5" y2="23">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="17" style="fill:url(#SVGID_4_);" width="9" height="6"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="5.5" y1="18" x2="5.5" y2="22">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="18" style="fill:url(#SVGID_5_);" width="7" height="4"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="5.5" y1="15" x2="5.5" y2="16">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="15" style="fill:url(#SVGID_6_);" width="9" height="1"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="18.5" y1="9" x2="18.5" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M23,9h-9c-0.6,0-1,0.4-1,1v1v7v1h1h9h1v-1v-7v-1C24,9.4,23.6,9,23,9z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="18.5" y1="12" x2="18.5" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<rect x="14" y="12" style="fill:url(#SVGID_8_);" width="9" height="6"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="18.5" y1="13" x2="18.5" y2="17.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="13" style="fill:url(#SVGID_9_);" width="7" height="4"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="18.5" y1="10" x2="18.5" y2="11">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<rect x="14" y="10" style="fill:url(#SVGID_10_);" width="9" height="1"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="5.5" y1="0" x2="5.5" y2="10">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_11_);" d="M10,0H1C0.4,0,0,0.4,0,1v1v7v1h1h9h1V9V2V1C11,0.4,10.6,0,10,0z"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="5.5" y1="3" x2="5.5" y2="9">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="3" style="fill:url(#SVGID_12_);" width="9" height="6"/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="5.5" y1="4" x2="5.5" y2="8">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="4" style="fill:url(#SVGID_13_);" width="7" height="4"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="5.5" y1="1" x2="5.5" y2="2">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="1" style="fill:url(#SVGID_14_);" width="9" height="1"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M68.2 26.6v-5.1c3.4 0 6.2-2.8 6.2-6.2V7.6c0-3.4-2.8-6.2-6.2-6.2h-7.7c-3.4 0-6.2 2.8-6.2 6.2v1.9H22.9C22.1 3.2 16.3-.7 10 .1 4.2.8 0 5.6 0 11.4c0 6.4 5.2 11.4 11.6 11.4 5.3 0 9.8-3.1 11.1-8.1h31.8v.5c0 3.4 2.8 6.2 6.2 6.2H63v4.2c0 4.9-5.1 8.9-10.4 8.9H23.3c-8.6 0-15.7 6.4-15.7 14.3v4.4H7C3.6 53.2.8 56 .8 59.4v7.7c0 3.4 2.8 6.2 6.2 6.2h7.8c3.4 0 6.2-2.8 6.2-6.2v-1.2h30.7c1.2 6.1 7.1 9.5 13.2 8.3 5.2-1 8.6-5.7 8.6-10.9 0-6.2-4.6-11.2-10.8-11.2-5.4 0-9.9 3.3-11 8.6H20.9v-1.2c0-3.4-2.8-6.2-6.2-6.2h-1.8v-3.9c0-4.9 5.1-9.6 10.3-9.6h29.3c8.5.1 15.7-5.3 15.7-13.2zm-56.8-9.1c-3.4 0-6.2-2.8-6.2-6.1C5.2 8 8 5.2 11.3 5.2c3.4 0 6.2 2.8 6.2 6.1.1 3.6-2.7 6.2-6.1 6.2zm49-1.3c-.6 0-.9-.4-.9-.9V7.6c0-.6.4-.9.9-.9h7.8c.6 0 .9.4.9.9v7.7c0 .6-.4.9-.9.9h-7.8zm2 41.3c3.2 0 5.9 2.6 5.9 5.9 0 3.2-2.6 5.9-5.9 5.9s-5.9-2.6-5.9-5.9c0-3.4 2.6-5.9 5.9-5.9zm-47.8.9c.6 0 1 .4 1 .9v7.8c0 .6-.4.9-1 .9H6.8c-.6 0-1-.4-1-.9v-7.8c0-.6.4-.9 1-.9h7.8z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -1,55 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="24.001">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M21.1,12.3c1,0,1.7,0.9,1.7,0.9c0.3,0.4,0.7,0.8,0.9,0.8s0.3-0.5,0.3-1V8c0-0.5-0.5-1-1-1h-3
|
||||
c-0.5,0-1-0.1-1-0.3c0-0.2,0.3-0.7,0.7-1.1c0,0,0.8-0.9,0.8-2.1C20.5,1.6,18.9,0,17,0s-3.5,1.6-3.5,3.5c0,1.2,0.8,2.1,0.8,2.1
|
||||
C14.7,6,15,6.5,15,6.7C15,6.9,14.5,7,14,7H8C7.5,7,7,7.5,7,8v6c0,0.5-0.1,1-0.3,1S6,14.7,5.6,14.3c0,0-0.9-0.8-2.1-0.8
|
||||
C1.6,13.5,0,15.1,0,17s1.6,3.5,3.5,3.5c1.2,0,2.1-0.8,2.1-0.8C6,19.3,6.5,19,6.7,19S7,19.5,7,20v3c0,0.5,0.5,1,1,1h4
|
||||
c0.5,0,1-0.1,1-0.3s-0.3-0.6-0.7-1c0,0-0.6-0.6-0.6-1.6c0-1.4,1.3-2.5,2.7-2.5c1.4,0,2.4,1.1,2.4,2.5c0,1-0.9,1.7-0.9,1.7
|
||||
c-0.4,0.3-0.8,0.7-0.8,0.9s0.5,0.3,1,0.3h7c0.5,0,1-0.5,1-1v-6c0-0.5-0.1-1-0.3-1s-0.6,0.3-1,0.7c0,0-0.6,0.6-1.6,0.6
|
||||
c-1.4,0-2.5-1.3-2.5-2.7S19.7,12.3,21.1,12.3z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="23.001">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M17,23c0.4-0.4,0.7-1.1,0.7-1.9c0-2-1.5-3.5-3.4-3.5c-2,0-3.7,1.6-3.7,3.5
|
||||
c0,0.9,0.3,1.5,0.6,1.9H8v-3c0-1.5-0.7-2-1.3-2c-0.6,0-1.3,0.6-1.7,0.9c0,0-0.7,0.6-1.5,0.6C2.1,19.5,1,18.4,1,17s1.1-2.5,2.5-2.5
|
||||
c0.8,0,1.4,0.6,1.5,0.6C5.3,15.4,6.1,16,6.7,16C7.3,16,8,15.5,8,14V8h6c1.5,0,2-0.7,2-1.3c0-0.6-0.5-1.3-0.9-1.7
|
||||
c0,0-0.6-0.7-0.6-1.5C14.5,2.1,15.6,1,17,1s2.5,1.1,2.5,2.5c0,0.8-0.6,1.5-0.6,1.5C18.5,5.4,18,6.1,18,6.7C18,7.3,18.5,8,20,8h3v4
|
||||
c-0.4-0.4-1.1-0.7-1.9-0.7c-2,0-3.5,1.5-3.5,3.4c0,2,1.6,3.7,3.5,3.7c0.9,0,1.5-0.3,1.9-0.6V23H17z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="22.001">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M18.6,22c0.1-0.3,0.1-0.6,0.1-0.9c0-2.5-1.9-4.5-4.4-4.5c-2.5,0-4.7,2.1-4.7,4.5
|
||||
c0,0.3,0,0.6,0.1,0.9H9v-2c0-2.1-1.2-3-2.3-3C7.8,17,9,16.1,9,14V9h5c2.1,0,3-1.2,3-2.3c0-0.7-0.4-1.5-1.2-2.4
|
||||
c-0.1-0.1-0.3-0.5-0.3-0.8C15.5,2.7,16.2,2,17,2s1.5,0.7,1.5,1.5c0,0.3-0.3,0.7-0.3,0.8C17.4,5.2,17,6,17,6.7C17,7.8,17.9,9,20,9h2
|
||||
v1.4c-0.3-0.1-0.6-0.1-0.9-0.1c-2.5,0-4.5,1.9-4.5,4.4c0,2.5,2.1,4.7,4.5,4.7c0.3,0,0.6,0,0.9-0.1V22H18.6z M3.5,18.5
|
||||
C2.7,18.5,2,17.8,2,17s0.7-1.5,1.5-1.5c0.3,0,0.7,0.3,0.8,0.3C5.2,16.6,6,17,6.7,17c-0.7,0-1.5,0.4-2.4,1.2
|
||||
C4.2,18.3,3.8,18.5,3.5,18.5z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M69.9 38.6c1.1 1 2.9.8 3.7-.3.4-.4.7-1.1.7-1.7V13.2c0-1.4-1.2-2.6-2.6-2.6H53.1c-.6-14.1-20.7-14.1-21.3 0H13.2c-1.4 0-2.6 1.2-2.6 2.6v18.6c-14.1.6-14.1 20.7 0 21.3v18.6c0 1.4 1.2 2.6 2.6 2.6h23.4c1.4 0 2.6-1.3 2.6-2.8 0-.7-.2-1.2-.7-1.7-4.6-5.4 3-12.2 7.8-7.2 1.9 2 1.9 5.1 0 7.2-1 1.1-.9 2.8.2 3.7.4.4 1.1.7 1.8.7h23.4c1.4 0 2.6-1.2 2.6-2.6V48.2c0-1.4-1.3-2.6-2.8-2.6-.7 0-1.2.2-1.7.7-2.2 2-5.5 1.8-7.5-.3-4.3-5 2.6-11.8 7.6-7.4zm-3.5 14.5c.9 0 1.8-.1 2.6-.3v16.3H52.7c1.4-5.7-2-11.5-7.6-13-5.7-1.4-11.5 2-13 7.6-.4 1.8-.4 3.6 0 5.4H15.8v-19c0-1.4-1.2-2.6-2.6-2.6-.9.2-1.8.3-2.6.4-7.1-.2-7.1-10.5 0-10.6.7 0 1.2.1 1.8.3 1.4.4 2.9-.2 3.4-1.7.1-.2.1-.6.1-.9V15.9H35c1.4 0 2.6-1.2 2.6-2.6 0-.3 0-.6-.1-.9-1-2.8.4-5.8 3.3-6.7 2.8-1 5.8.4 6.7 3.3.2.6.3 1.1.3 1.8 0 .6-.1 1.2-.3 1.8-.4 1.4.2 2.9 1.7 3.4.3.1.6.1.9.1h19.1v16.3c-5.7-1.4-11.5 2-12.9 7.7-1.4 5.7 2 11.5 7.7 12.9.7 0 1.5.3 2.4.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 1.0 KiB |
|
@ -1,112 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="9.9995" y1="0" x2="9.9995" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="12.5,0 11.5,0 1,0 0,0 0,24 1,24 19,24 20,24 20,7.9 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="9.9995" y1="1" x2="9.9995" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="12.1,1 11.1,1 2,1 1,1 1,23 2,23 18,23 19,23 19,8.3 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="9.9995" y1="2" x2="9.9995" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="11.6,2 10.6,2 3,2 2,2 2,22 3,22 17,22 18,22 18,8.7 "/>
|
||||
<path style="fill:#FFFFFF;" d="M16,21H4v-1h12V21z M16,18H4v1h12V18z M16,16H4v1h12V16z M16,14H4v1h12V14z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="9.9995" y1="4" x2="9.9995" y2="12">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_4_);" points="15.3,4 14.3,4 4,4 3,4 3,12 4,12 16,12 17,12 17,5.8 "/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="9.9995" y1="9" x2="9.9995" y2="11">
|
||||
<stop offset="0" style="stop-color:#57C3F6"/>
|
||||
<stop offset="0.1648" style="stop-color:#83D3F8"/>
|
||||
<stop offset="0.3554" style="stop-color:#AFE3FB"/>
|
||||
<stop offset="0.5396" style="stop-color:#D2EFFD"/>
|
||||
<stop offset="0.7128" style="stop-color:#EBF8FE"/>
|
||||
<stop offset="0.8709" style="stop-color:#FAFDFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="0.3354" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<rect x="4" y="9" style="fill:url(#SVGID_5_);" width="12" height="2"/>
|
||||
<path style="fill:#F2EFD5;" d="M12.4,10.9c-0.5-0.2-1.1-0.3-2.7-0.4c-1.5-0.1-0.9-0.4-2-0.8C6.7,9.2,4,9.4,4,9.4V11h8.6
|
||||
C12.6,11,12.5,10.9,12.4,10.9z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="4" y1="10.2476" x2="12.2959" y2="10.2476">
|
||||
<stop offset="0" style="stop-color:#F8E5B5"/>
|
||||
<stop offset="1" style="stop-color:#F9E5B6"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F8E5B5"/>
|
||||
<a:midPointStop offset="0.4451" style="stop-color:#F8E5B5"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F9E5B6"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M9.7,10.7c-1.5-0.1-0.9-0.6-2-1c-1-0.4-3.7,0-3.7,0V11h8.3C11.5,11,11.2,10.8,9.7,10.7z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="12.5342" y1="1.5674" x2="8.163" y2="10.9413">
|
||||
<stop offset="0" style="stop-color:#57C3F6"/>
|
||||
<stop offset="0.2292" style="stop-color:#8AD5F9"/>
|
||||
<stop offset="0.4827" style="stop-color:#BCE7FB"/>
|
||||
<stop offset="0.705" style="stop-color:#E1F4FD"/>
|
||||
<stop offset="0.885" style="stop-color:#F7FCFF"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="0.3902" style="stop-color:#57C3F6"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<rect x="4" y="5" style="fill:url(#SVGID_7_);" width="12" height="4"/>
|
||||
<path style="fill:#FFFFFF;" d="M11.2,5.6c0,0-0.2-0.4-0.7-0.2c-0.4,0.3-0.1,0.7-0.1,0.7s-0.1,0-0.1,0c-0.1,0,0,0.2,0,0.2
|
||||
s-0.3,0-0.4,0.2C9.6,6.9,9.8,7,9.8,7S9.3,7.4,9.6,7.8c0.3,0.4,0.6,0.1,0.6,0.1s0.2,0.3,0.6,0.3c0.4,0.1,0.6-0.1,0.6-0.1
|
||||
s0.3,0.2,0.5,0.1C12.4,8.2,12.5,8,12.5,8s0.6,0.3,0.8-0.3C13.4,7.3,13,7.1,13,7.1s0.1-0.4-0.2-0.6s-0.6,0-0.6,0s0.1,0,0-0.1
|
||||
c0-0.1-0.3-0.1-0.3-0.1s0.1-0.6-0.2-0.8C11.4,5.3,11.2,5.6,11.2,5.6z"/>
|
||||
<path style="fill:#FFFFFF;" d="M8.6,6.9c0,0-0.1-0.1-0.2,0C8.3,6.9,8.4,7,8.4,7s0,0,0,0c0,0,0,0,0,0s-0.1,0-0.1,0.1
|
||||
c0,0.1,0,0.1,0,0.1s-0.1,0.1,0,0.2c0.1,0.1,0.2,0,0.2,0s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.2,0s0.1,0.1,0.2,0C9,7.6,9,7.6,9,7.6
|
||||
s0.2,0.1,0.2-0.1c0-0.1-0.1-0.2-0.1-0.2s0-0.1-0.1-0.2c-0.1,0-0.2,0-0.2,0s0,0,0,0s-0.1,0-0.1,0s0-0.2-0.1-0.2
|
||||
C8.7,6.8,8.6,6.9,8.6,6.9z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.2451" y1="0" x2="15.2451" y2="9.3594">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M11,9c0,0,5.2-1.5,9,0.4c0-0.1,0-1.5,0-1.5L12.5,0c0,0-1.8,0-2,0C13.1,3.7,11,9,11,9z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="12.3223" y1="7.5449" x2="15.4504" y2="4.4168">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_9_);" d="M18.5,7.8c-0.9-0.2-2-0.3-3.1-0.3c-1.1,0-2.1,0.1-3,0.3c0.4-1.6,0.7-4.1-0.2-6.4L18.5,7.8z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M66.5 15.1 52.4 1c-.7-.7-1.6-1-2.6-1H10.3C8.2 0 6.6 1.6 6.6 3.7v67c0 2.1 1.6 3.7 3.7 3.7H64c2.1 0 3.7-1.6 3.7-3.7V17.8c-.2-1-.5-2-1.2-2.7zM48.4 6.7l12.5 12.5H48.4V6.7zM11.9 69.2V5h30.9v15.6c0 2.2 1.7 3.8 3.8 3.8h15.6v44.7l-50.3.1z"/><path d="M54.3 43H19.7c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6h34.6c1.4 0 2.6-1.2 2.6-2.6.1-1.4-1.1-2.6-2.6-2.6zM54.3 53.5H19.7c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6h34.6c1.4 0 2.6-1.2 2.6-2.6s-1.1-2.6-2.6-2.6zM19.8 37.8h20.9c1.4 0 2.6-1.2 2.6-2.6 0-1.4-1.2-2.6-2.6-2.6H19.8c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 734 B |
|
@ -1,90 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9565" y1="0" x2="11.9565" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="14.4,0 13.4,0 3,0 2,0 2,24 3,24 21,24 22,24 22,7.9 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9565" y1="1" x2="11.9565" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="14,1 13,1 4,1 3,1 3,23 4,23 20,23 21,23 21,8.3 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9565" y1="2" x2="11.9565" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="13.6,2 12.6,2 5,2 4,2 4,22 5,22 19,22 20,22 20,8.7 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="17.2021" y1="0" x2="17.2021" y2="9.3594">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M13,9c0,0,5.2-1.5,9,0.4c0-0.1,0-1.5,0-1.5L14.4,0c0,0-1.8,0-2,0C15.1,3.7,13,9,13,9z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="14.2793" y1="7.5449" x2="17.4074" y2="4.4168">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M20.4,7.8c-0.9-0.2-2-0.3-3.1-0.3c-1.1,0-2.1,0.1-3,0.3c0.4-1.6,0.7-4.1-0.2-6.4L20.4,7.8z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.8569" y1="1.8521" x2="11.8569" y2="23.9487">
|
||||
<stop offset="0" style="stop-color:#DB6D17"/>
|
||||
<stop offset="1" style="stop-color:#BF3B08"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#DB6D17"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BF3B08"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_6_);" points="8,16.9 3.2,11.9 0,15.1 8.8,23.9 23.7,1.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="9.5522" y1="9.0078" x2="9.5522" y2="22.3833">
|
||||
<stop offset="0" style="stop-color:#F6A55E"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F6A55E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_7_);" points="1.4,15.1 3.2,13.4 7.9,18.4 17.7,9 8.7,22.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="7.2485" y1="14.7998" x2="7.2485" y2="20.8174">
|
||||
<stop offset="0" style="stop-color:#F17219"/>
|
||||
<stop offset="1" style="stop-color:#EA5B03"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F17219"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#EA5B03"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_8_);" points="2.8,15.1 3.1,14.8 7.9,19.8 11.7,16.2 8.5,20.8 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M62.1 32.3c-1.7 0-2.6 1.4-2.6 3.1v22.8h-45V13.3h27.8c4.1.1 4.1-5.2 0-5.1H12.6c-1.7 0-3.1 1.4-3.1 3.1v49.1c0 1.7 1.3 3.1 3 3.1h49c1.7 0 3.1-1.4 3.1-3.1V35.5c.1-1.8-.8-3.2-2.5-3.2z"/><path d="M28.4 30.9c-1.4-1-3.3-.7-4.4.6-1 1.4-.7 3.4.6 4.5l9.5 7c1.1.8 2.2 1.1 3.4 0 4.4-4.7 22.1-24.8 26.4-29.4.9-1 1.1-2.4.6-3.6s-1.7-1.9-3-1.9c-.8 0-1.6.4-2.1 1C55 13.8 39.7 31.5 35.6 36l-7.2-5.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 567 B |
|
@ -1,60 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="-3 0 24 24" style="overflow:visible;enable-background:new -3 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="0" x2="9.4995" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="11.5,0 0,0 0,24 19,24 19,7.9 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="1" x2="9.4995" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="1,23 1,1 11.1,1 18,8.3 18,23 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="9.4995" y1="2" x2="9.4995" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="2,22 2,2 10.6,2 17,8.7 17,22 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.2451" y1="0" x2="14.2451" y2="9.3594">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M10,9c0,0,5.2-1.5,9,0.4c0-0.1,0-1.5,0-1.5L11.5,0c0,0-1.8,0-2,0C12.1,3.7,10,9,10,9z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.3223" y1="7.5449" x2="14.4504" y2="4.4168">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M17.5,7.8c-0.9-0.2-2-0.3-3.1-0.3c-1.1,0-2.1,0.1-3,0.3c0.4-1.6,0.7-4.1-0.2-6.4L17.5,7.8z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M66.5 15.1 52.4 1c-.7-.7-1.6-1-2.6-1H10.3C8.2 0 6.6 1.6 6.6 3.7v67c0 2.1 1.6 3.7 3.7 3.7H64c2.1 0 3.7-1.6 3.7-3.7V17.8c-.2-1-.5-2-1.2-2.7zM48.4 6.7l12.5 12.5H48.4V6.7zM11.9 69.2V5h30.9v15.6c0 2.2 1.7 3.8 3.8 3.8h15.6v44.7l-50.3.1z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 417 B |
|
@ -1,84 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 -2 24 24" style="overflow:visible;enable-background:new 0 -2 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect x="1" style="fill:url(#SVGID_1_);" width="22" height="20"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="19.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="1" style="fill:url(#SVGID_2_);" width="20" height="18"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="18.0005">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="3" y="2" style="fill:url(#SVGID_3_);" width="18" height="16"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="7">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect style="fill:url(#SVGID_4_);" width="24" height="7"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="6">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="1" style="fill:url(#SVGID_5_);" width="22" height="5"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="5">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="2" style="fill:url(#SVGID_6_);" width="20" height="3"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="11.4995" y1="0" x2="11.4995" y2="13.0005">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_7_);" points="9,0 9,3 9,10 9,13 11.5,11 14,13 14,10 14,3 14,0 "/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="11.4995" y1="1" x2="11.4995" y2="10.9355">
|
||||
<stop offset="0" style="stop-color:#D58738"/>
|
||||
<stop offset="1" style="stop-color:#AB551F"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D58738"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#D58738"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#AB551F"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_8_);" points="10,1 10,4 10,7.9 10,10.9 11.5,9.7 13,10.9 13,7.9 13,4 13,1 "/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="11.5" y1="2" x2="11.5" y2="8.8711">
|
||||
<stop offset="0" style="stop-color:#D0813A"/>
|
||||
<stop offset="1" style="stop-color:#AF551D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D0813A"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#D0813A"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#AF551D"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_9_);" points="11,2 11,5 11,5.8 11,8.8 11.5,8.4 12,8.9 12,5.9 12,5 12,2 "/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="m74.1 29.6-13-22.9c-.5-.8-1.4-1.5-2.4-1.5h-43c-1 0-1.8.5-2.4 1.5L.4 29.6c-.2.5-.3 1-.3 1.5v35.2c0 1.6 1.3 2.9 2.7 2.9h68.9c1.5 0 2.7-1.3 2.7-2.9V31.1c0-.6-.1-1.1-.3-1.5zM6.9 28.5l10.2-18.3 17.4.2v18.3l-27.6-.2zm33.1.2V10.5h17.5l9.6 18.3H40v-.1zM69.2 34v30H5.3V34h63.9z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 455 B |
|
@ -1,89 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20" y1="8" x2="20" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<rect x="16" y="8" style="fill:url(#SVGID_1_);" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20" y1="9" x2="20" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<rect x="17" y="9" style="fill:url(#SVGID_2_);" width="6" height="14"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="20" y1="10" x2="20" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<rect x="18" y="10" style="fill:url(#SVGID_3_);" width="4" height="12"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="0" x2="11.9995" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#90C50E"/>
|
||||
<stop offset="1" style="stop-color:#70A034"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#90C50E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#70A034"/>
|
||||
</linearGradient>
|
||||
<rect x="8" style="fill:url(#SVGID_4_);" width="8" height="24"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="1" x2="11.9995" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#D9F991"/>
|
||||
<stop offset="0.2388" style="stop-color:#D7F88D"/>
|
||||
<stop offset="0.4501" style="stop-color:#D1F383"/>
|
||||
<stop offset="0.6509" style="stop-color:#C6EC71"/>
|
||||
<stop offset="0.844" style="stop-color:#B7E257"/>
|
||||
<stop offset="1" style="stop-color:#A8D73D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="0.7317" style="stop-color:#D9F991"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#A8D73D"/>
|
||||
</linearGradient>
|
||||
<rect x="9" y="1" style="fill:url(#SVGID_5_);" width="6" height="22"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.9995" y1="2" x2="11.9995" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#B3E810"/>
|
||||
<stop offset="1" style="stop-color:#90C60D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#B3E810"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#90C60D"/>
|
||||
</linearGradient>
|
||||
<rect x="10" y="2" style="fill:url(#SVGID_6_);" width="4" height="20"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="4" y1="12" x2="4" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<rect y="12" style="fill:url(#SVGID_7_);" width="8" height="12"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="4" y1="13" x2="4" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="13" style="fill:url(#SVGID_8_);" width="6" height="10"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="4" y1="14" x2="4" y2="22">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="14" style="fill:url(#SVGID_9_);" width="4" height="8"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M18.6 45.9H3.1C1.3 45.9 0 47.2 0 49v22.4c0 1.7 1.3 3.1 3.1 3.1h15.5c1.8 0 3.1-1.3 3.1-3.1V48.9c0-1.7-1.4-3-3.1-3zm-2.1 23.3H5.3V51.1h11.2v18.1zM44.4 0H29.9c-1.8 0-3.1 1.3-3.1 3.1v68.3c0 1.7 1.3 3.1 3.1 3.1h14.5c1.8 0 3.1-1.3 3.1-3.1V3.1c0-1.8-1.4-3.1-3.1-3.1zm-2.1 69.2H32.1V5.3h10.2v63.9zM71.3 19.4H55.8c-1.8 0-3.1 1.3-3.1 3.1v48.9c0 1.7 1.3 3.1 3.1 3.1h15.5c1.8 0 3.1-1.3 3.1-3.1V22.5c0-1.8-1.4-3.1-3.1-3.1zm-2.1 49.8H58V24.6h11.2v44.6z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 625 B |
|
@ -1,485 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="11.9653" y1="0" x2="11.9653" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_1_);" points="14.4,0 13.4,0 3,0 2,0 2,24 3,24 21,24 22,24 22,7.9 "/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.9653" y1="1" x2="11.9653" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="1" style="stop-color:#DEEFFC"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#DEEFFC"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_2_);" points="14,1 13,1 4,1 3,1 3,23 4,23 20,23 21,23 21,8.3 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.9653" y1="2" x2="11.9653" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BBDFF8"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BBDFF8"/>
|
||||
</linearGradient>
|
||||
<polygon style="fill:url(#SVGID_3_);" points="13.6,2 12.6,2 5,2 4,2 4,22 5,22 19,22 20,22 20,8.7 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="17.2109" y1="0" x2="17.2109" y2="9.3594">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M13,9c0,0,5.2-1.5,9,0.4c0-0.1,0-1.5,0-1.5L14.4,0c0,0-1.8,0-2,0C15.1,3.7,13,9,13,9z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="14.2881" y1="7.5449" x2="17.4162" y2="4.4168">
|
||||
<stop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<stop offset="0.5181" style="stop-color:#E5F3FC"/>
|
||||
<stop offset="0.7045" style="stop-color:#DEF0FB"/>
|
||||
<stop offset="0.8371" style="stop-color:#D3EBFA"/>
|
||||
<stop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<stop offset="1" style="stop-color:#BDD8F0"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.87" style="stop-color:#E7F4FC"/>
|
||||
<a:midPointStop offset="0.872" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#CEE9F9"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#BDD8F0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M20.5,7.8c-0.9-0.2-2-0.3-3.1-0.3c-1.1,0-2.1,0.1-3,0.3c0.4-1.6,0.7-4.1-0.2-6.4L20.5,7.8z"/>
|
||||
<radialGradient id="SVGID_6_" cx="7.5312" cy="16.5" r="7.0005" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#8BB4F0"/>
|
||||
<stop offset="7.721406e-02" style="stop-color:#88B1EF"/>
|
||||
<stop offset="0.488" style="stop-color:#7FA7EC"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8BB4F0"/>
|
||||
<a:midPointStop offset="0.25" style="stop-color:#8BB4F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M7.5,23.5C0.4,23.2-1.6,15.1,3,11.2c1.8-1.6,3.8-1.7,4.6-1.7c0.4,0,0.8,0,1.1,0.1
|
||||
C9,9.6,9.4,9.7,9.7,9.8c0.3,0.1,0.7,0.3,1,0.4c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.2,0.6,0.4,0.8,0.7c0.3,0.3,0.5,0.5,0.7,0.8
|
||||
c0.2,0.3,0.4,0.6,0.6,0.9c0.2,0.3,0.3,0.7,0.4,1c0.1,0.3,0.2,0.7,0.3,1.1c0.1,0.4,0.1,0.8,0.1,1.1s0,0.8-0.1,1.1
|
||||
c-0.1,0.4-0.1,0.7-0.3,1.1c-0.1,0.3-0.3,0.7-0.4,1c-0.2,0.3-0.4,0.6-0.6,0.9c-0.2,0.3-0.4,0.6-0.7,0.8c-0.3,0.3-0.5,0.5-0.8,0.7
|
||||
c-0.3,0.2-0.6,0.4-0.9,0.6c-0.3,0.2-0.7,0.3-1,0.4c-0.3,0.1-0.7,0.2-1.1,0.3C8.3,23.5,7.9,23.5,7.5,23.5"/>
|
||||
<radialGradient id="SVGID_7_" cx="7.5308" cy="16.5" r="6.4856" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#8BB4F0"/>
|
||||
<stop offset="7.721406e-02" style="stop-color:#88B1EF"/>
|
||||
<stop offset="0.488" style="stop-color:#7FA7EC"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8BB4F0"/>
|
||||
<a:midPointStop offset="0.25" style="stop-color:#8BB4F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M7.5,23C1,22.7-0.9,15.2,3.3,11.6C5,10.1,6.8,10,7.5,10c0.4,0,0.7,0,1.1,0.1
|
||||
c0.3,0.1,0.7,0.1,1,0.2s0.6,0.2,0.9,0.4c0.3,0.2,0.6,0.3,0.9,0.5c0.3,0.2,0.5,0.4,0.8,0.6c0.2,0.2,0.5,0.5,0.6,0.8
|
||||
c0.2,0.3,0.4,0.6,0.5,0.9s0.3,0.6,0.4,0.9s0.2,0.7,0.2,1c0.1,0.3,0.1,0.7,0.1,1.1c0,0.4,0,0.7-0.1,1.1c-0.1,0.3-0.1,0.7-0.2,1
|
||||
s-0.2,0.6-0.4,0.9s-0.3,0.6-0.5,0.9s-0.4,0.5-0.6,0.8s-0.5,0.5-0.8,0.6c-0.3,0.2-0.6,0.4-0.9,0.5c-0.3,0.2-0.6,0.3-0.9,0.4
|
||||
s-0.7,0.2-1,0.2C8.2,23,7.9,23,7.5,23"/>
|
||||
<path style="fill:#B3E710;" d="M6.1,10.8L6.1,10.8c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0C6.1,10.7,6,10.7,6.1,10.8
|
||||
c-0.1-0.1-0.1,0-0.2,0C5.9,10.7,6,10.8,6.1,10.8C6,10.8,6.1,10.8,6.1,10.8 M3,13c0,0,2,0,3.6,0c0,0,0.4-0.1,0.4-0.1l0,0v0l0,0v0v0
|
||||
l0,0v0l0,0c0-0.1-0.3-0.1-0.4-0.1c0-0.1-0.2-0.2-0.1-0.4c0,0-0.1,0-0.1,0c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.2
|
||||
c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0C5.6,12,5.6,12,5.4,11.9c0-0.2,0.2-0.3,0.4-0.5c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0v0c0,0,0.1,0.1,0.2,0c0,0,0,0,0-0.1c0.1,0,0.1,0,0.2-0.1c0,0,0,0,0,0
|
||||
c-0.1,0-0.1-0.1-0.2-0.1c0.1,0,0.1,0,0.2,0.1c0,0,0.1,0,0.2-0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0,0,0-0.1l0,0c0,0,0,0.1,0.1,0.1c0.1-0.1,0.1-0.1,0.2-0.1c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c-0.1,0-0.1-0.1-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.2,0.2-0.2,0.2c-0.1,0,0-0.1,0-0.1c0.1,0,0.1,0,0-0.1
|
||||
c-0.1,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0.1-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l-0.3,0.2c0,0,0,0,0,0c0,0,0,0,0.1-0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0l0,0l0,0h0l0,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.3,0h0l0,0c0,0,0,0,0,0h0l0,0c0,0,0,0,0,0h0l0,0c-0.2,0.1-0.2,0.1-0.3,0.2
|
||||
c0-0.1,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0c0.1,0,0.1,0,0.2-0.1c-0.1,0-0.1,0-0.1-0.1c-0.1,0-0.1,0-0.1,0
|
||||
c0,0,0,0,0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0.1-0.1c0,0-0.3,0.1-0.5,0.2c0,0,0,0,0.1,0c0.1,0,0.2,0.1,0.3,0c0,0-0.1,0.2-0.1,0.2
|
||||
c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c0,0,0.4,0,0.4,0v-0.1c0-0.1-0.1-0.2,0-0.2c0,0-0.1,0-0.1,0c0,0,0,0,0-0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.3,0.1-0.6,0.4-0.9,0.5c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0-0.1,0l0,0L3,11.8l0,0c0.1-0.1,0.1-0.1,0.2-0.2
|
||||
c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0.1l0,0C3,12.2,3,12.2,2.9,12.3c0,0,0,0,0,0v0c0,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0.1,0
|
||||
l0,0c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0.2,0,0.2c0,0,0,0.3-0.1,0.3c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0 M8.3,10.4C8.3,10.4,8.3,10.4,8.3,10.4L8.3,10.4C8.3,10.4,8.3,10.4,8.3,10.4C8.3,10.4,8.3,10.4,8.3,10.4 M8.3,10.4
|
||||
c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0C8.2,10.4,8.2,10.4,8.3,10.4
|
||||
C8.2,10.4,8.2,10.4,8.3,10.4L8.3,10.4L8.3,10.4L8.3,10.4C8.2,10.5,8.2,10.5,8.3,10.4C8.2,10.5,8.2,10.5,8.3,10.4
|
||||
C8.2,10.5,8.3,10.5,8.3,10.4C8.3,10.4,8.3,10.4,8.3,10.4 M5.9,10.7L5.9,10.7C6,10.6,6,10.6,5.9,10.7c0-0.1,0-0.1,0-0.1
|
||||
c0,0,0,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.2,0.1c0,0,0,0,0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0.1-0.1,0.1-0.1,0.1c0.1,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0c0,0,0.1,0,0.1-0.1c0,0-0.3,0.1-0.4,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0
|
||||
c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0c0,0.1,0.1,0.1,0.1,0.1C5.8,10.7,5.8,10.7,5.9,10.7c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0C5.8,10.7,5.9,10.7,5.9,10.7
|
||||
C5.9,10.7,5.9,10.7,5.9,10.7 M8.2,11L8.2,11C8.2,11,8.2,11,8.2,11c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1
|
||||
c0,0-0.1,0-0.1,0c0-0.1-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0l0,0c0,0,0.1,0,0.1,0c0,0-0.1,0-0.1-0.1c0,0,0,0,0.1,0
|
||||
c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0v0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0-0.1-0.2,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.1,0.1c0.1,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0
|
||||
s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0
|
||||
c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0h0c-0.1-0.1-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0.1
|
||||
c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0h0c0,0,0,0,0,0l0,0h0h0h0l0,0
|
||||
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0.1,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0-0.1-0.1-0.1-0.2-0.1
|
||||
c-0.1,0-0.1,0-0.1-0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0-0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c0,0,0,0.1,0.1,0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1
|
||||
c0,0,0,0,0,0l0,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0C7.9,11,7.9,11,8,11.1
|
||||
c0,0,0,0.1,0.1,0c0,0.1,0,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0C8.2,11.1,8.2,11.1,8.2,11
|
||||
C8.2,11,8.2,11,8.2,11C8.2,11,8.2,11,8.2,11C8.2,11,8.2,11,8.2,11 M6.4,10.4L6.4,10.4C6.5,10.4,6.4,10.4,6.4,10.4
|
||||
C6.4,10.4,6.4,10.4,6.4,10.4c0-0.1,0.1-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0
|
||||
l0,0L6.4,10.4C6.4,10.4,6.4,10.4,6.4,10.4c-0.1-0.1-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0C6.3,10.5,6.3,10.5,6.4,10.4C6.3,10.5,6.4,10.5,6.4,10.4 M8.1,10.3C8.1,10.3,8.1,10.3,8.1,10.3
|
||||
C8.1,10.3,8.1,10.3,8.1,10.3C8.1,10.3,8.1,10.3,8.1,10.3C8.1,10.3,8.1,10.3,8.1,10.3 M6.8,10.3C6.8,10.3,6.8,10.3,6.8,10.3
|
||||
C6.8,10.3,6.8,10.3,6.8,10.3C6.8,10.3,6.8,10.3,6.8,10.3C6.8,10.3,6.7,10.3,6.8,10.3C6.7,10.3,6.7,10.3,6.8,10.3c-0.1,0-0.1,0-0.2,0
|
||||
c0,0,0,0-0.1,0c0,0,0,0.1-0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0C6.6,10.4,6.8,10.3,6.8,10.3 M8.1,10.3
|
||||
C8.1,10.3,8.1,10.3,8.1,10.3L8.1,10.3C8.1,10.3,8.1,10.3,8.1,10.3L8.1,10.3 M5.9,10.3L5.9,10.3C6,10.3,6,10.3,5.9,10.3
|
||||
C6,10.3,6,10.3,5.9,10.3C6,10.3,6,10.3,5.9,10.3C6,10.3,6,10.3,5.9,10.3C6,10.3,6,10.3,5.9,10.3C6,10.3,5.9,10.3,5.9,10.3
|
||||
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0.1l0,0l0,0l0,0h0l0,0l0,0l0,0l0,0c0,0-0.1,0-0.1,0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.1-0.1,0.2-0.1c0,0,0.1,0,0.1,0
|
||||
C5.8,10.4,5.9,10.4,5.9,10.3 M7.9,10.2C7.9,10.2,7.9,10.2,7.9,10.2C7.9,10.2,7.9,10.2,7.9,10.2C7.9,10.2,7.9,10.2,7.9,10.2
|
||||
C7.9,10.2,7.9,10.2,7.9,10.2 M7.2,10.2L7.2,10.2C7.2,10.2,7.2,10.2,7.2,10.2C7.2,10.2,7.2,10.2,7.2,10.2C7.2,10.2,7.2,10.2,7.2,10.2
|
||||
c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0C7.1,10.3,7.1,10.3,7.2,10.2C7.2,10.2,7.2,10.2,7.2,10.2 M6.8,10.2C6.8,10.1,6.8,10.1,6.8,10.2
|
||||
C6.8,10.1,6.8,10.1,6.8,10.2C6.8,10.1,6.8,10.1,6.8,10.2C6.8,10.2,6.8,10.2,6.8,10.2C6.8,10.1,6.8,10.1,6.8,10.2
|
||||
C6.8,10.1,6.8,10.1,6.8,10.2C6.8,10.1,6.8,10.1,6.8,10.2C6.8,10.2,6.7,10.2,6.8,10.2L6.8,10.2C6.7,10.2,6.7,10.2,6.8,10.2
|
||||
C6.7,10.1,6.7,10.2,6.8,10.2C6.7,10.2,6.7,10.2,6.8,10.2c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
||||
s0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0C6.6,10.2,6.7,10.2,6.8,10.2C6.7,10.2,6.7,10.2,6.8,10.2c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
||||
c0,0,0,0,0.1,0C6.7,10.2,6.7,10.2,6.8,10.2 M6.5,10.2C6.6,10.2,6.6,10.2,6.5,10.2C6.6,10.2,6.6,10.2,6.5,10.2
|
||||
C6.6,10.2,6.5,10.2,6.5,10.2C6.5,10.2,6.5,10.2,6.5,10.2c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0C6.6,10.1,6.6,10.1,6.5,10.2
|
||||
c-0.1,0-0.1,0-0.1,0C6.4,10.2,6.4,10.2,6.5,10.2c-0.1,0-0.1,0-0.1,0C6.5,10.2,6.5,10.2,6.5,10.2c-0.1,0-0.1,0-0.1,0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0C6.5,10.2,6.5,10.2,6.5,10.2 M6.9,10.1C7,10.1,7,10.1,6.9,10.1C7,10.1,7,10.1,6.9,10.1C6.9,10.1,6.9,10.1,6.9,10.1
|
||||
C6.9,10.1,6.9,10.1,6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1C6.9,10.1,6.9,10.1,6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1
|
||||
C6.9,10.1,6.9,10.1,6.9,10.1C6.9,10.1,6.9,10.1,6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1L6.9,10.1
|
||||
C6.9,10.1,6.9,10.1,6.9,10.1L6.9,10.1C6.9,10.1,6.9,10.1,6.9,10.1 M6.6,10.1C6.7,10.1,6.7,10.1,6.6,10.1C6.7,10.1,6.7,10.1,6.6,10.1
|
||||
C6.7,10.1,6.6,10.1,6.6,10.1L6.6,10.1C6.6,10.1,6.6,10.1,6.6,10.1L6.6,10.1C6.6,10.1,6.6,10.1,6.6,10.1L6.6,10.1
|
||||
C6.6,10.1,6.6,10.1,6.6,10.1L6.6,10.1C6.6,10.1,6.6,10.1,6.6,10.1c-0.1,0-0.3,0.1-0.3,0.1c0,0,0,0,0,0c0,0,0,0-0.1,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0c0,0,0.1,0,0.1,0C6.6,10.1,6.6,10.1,6.6,10.1 M6.8,10.1L6.8,10.1
|
||||
C6.8,10.1,6.8,10.1,6.8,10.1C6.8,10.1,6.8,10.1,6.8,10.1L6.8,10.1L6.8,10.1L6.8,10.1L6.8,10.1L6.8,10.1L6.8,10.1
|
||||
C6.8,10.1,6.8,10.1,6.8,10.1L6.8,10.1C6.8,10.1,6.8,10.1,6.8,10.1c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0C6.8,10.1,6.8,10.1,6.8,10.1
|
||||
M7.1,10.1C7.1,10.1,7.1,10.1,7.1,10.1C7.1,10,7.1,10,7.1,10.1C7.1,10,7.1,10,7.1,10.1L7.1,10.1L7.1,10.1L7.1,10.1L7.1,10.1
|
||||
L7.1,10.1L7.1,10.1L7.1,10.1L7.1,10.1C7.1,10,7.1,10,7.1,10.1C7.1,10.1,7.1,10.1,7.1,10.1C7,10.1,7,10.1,7.1,10.1
|
||||
C7.1,10.1,7.1,10.1,7.1,10.1 M7,10.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
C7.1,10,7,10.1,7,10.1C7,10.1,7,10.1,7,10.1C7,10,7,10.1,7,10.1C7,10.1,7,10.1,7,10.1C7,10.1,7,10.1,7,10.1C7,10.1,7,10.1,7,10.1
|
||||
C7,10.1,7,10.1,7,10.1C7,10.1,7,10.1,7,10.1 M7.3,10C7.3,10,7.4,10,7.3,10C7.4,10,7.3,10,7.3,10C7.3,10,7.4,10,7.3,10
|
||||
C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10
|
||||
C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10c0.1,0,0.1,0,0.1,0
|
||||
C7.4,10,7.4,10,7.3,10c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0C7.5,10,7.4,10,7.3,10C7.4,10,7.4,10,7.3,10
|
||||
C7.3,10,7.3,10,7.3,10L7.3,10C7.3,10,7.3,10,7.3,10C7.3,10,7.3,10,7.3,10C7.3,10,7.3,10,7.3,10c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C7.2,10.1,7.2,10.1,7.3,10C7.3,10,7.3,10,7.3,10C7.3,10.1,7.3,10,7.3,10
|
||||
C7.3,10,7.3,10,7.3,10C7.3,10,7.3,10,7.3,10 M7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10
|
||||
C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10 M7.5,10L7.5,10L7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10
|
||||
C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10L7.5,10C7.5,10,7.5,10,7.5,10L7.5,10
|
||||
C7.5,10,7.5,10,7.5,10L7.5,10C7.5,10,7.5,10,7.5,10L7.5,10C7.5,10,7.5,10,7.5,10c-0.1,0-0.1,0-0.1,0C7.4,10,7.4,10,7.5,10
|
||||
C7.4,10,7.4,10,7.5,10L7.5,10L7.5,10L7.5,10L7.5,10L7.5,10L7.5,10L7.5,10c-0.1,0-0.1,0-0.1,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0h0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0
|
||||
C7.4,10.1,7.4,10.1,7.5,10C7.4,10.1,7.4,10.1,7.5,10C7.4,10.1,7.4,10.1,7.5,10C7.4,10.1,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10
|
||||
C7.5,10,7.5,10,7.5,10L7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10
|
||||
C7.5,10,7.5,10,7.5,10C7.5,10,7.5,10,7.5,10 M9,11.2C8.6,10.5,8.1,10,7.5,10h0h0h0c0,0,0,0,0,0l0,0h0l0,0l0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0.1,0c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
||||
l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0h0c0,0,0,0,0,0h0c0,0,0,0,0,0h0h0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0h0h0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0h0l0,0l0,0h0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0h0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0v0
|
||||
l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0l0,0c0,0,0.1,0,0.1,0l0,0l0,0
|
||||
c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0-0.1,0h0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
l0,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1-0.1l0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0.1l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0
|
||||
c0,0,0,0,0.1,0c0,0,0,0,0,0.1l0,0c0,0,0,0,0-0.1l0,0l0,0c0,0,0,0,0,0h0l0,0c0,0,0,0,0-0.1l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1,0l0,0l0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0C8.9,11.1,8.9,11.1,9,11.2C8.9,11.1,8.9,11.1,9,11.2L9,11.2C8.9,11.2,8.9,11.2,9,11.2
|
||||
C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2
|
||||
C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,8.9,11.2,9,11.2C8.9,11.2,9,11.2,9,11.2C9,11.2,9,11.2,9,11.2"/>
|
||||
<path style="fill:#B3E710;" d="M7.4,22.9L7.4,22.9C7.4,22.9,7.4,22.9,7.4,22.9L7.4,22.9C7.4,22.9,7.4,22.9,7.4,22.9L7.4,22.9
|
||||
C7.4,22.9,7.4,22.9,7.4,22.9C7.4,22.9,7.4,22.9,7.4,22.9 M9.4,20.1C9.4,20.1,9.4,20.1,9.4,20.1c-0.1,0-0.1,0-0.2,0c0,0,0,0.1,0,0.1
|
||||
C9.2,20.2,9.3,20.2,9.4,20.1 M8.8,22.1c0.3-0.5,0.6-1.2,0.8-2c0,0,0,0,0,0c0,0,0,0-0.1,0c-0.1,0-0.1,0.1-0.2,0.2c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0.1-0.1c-0.5,0-1.1,0-1.7,0c-0.5,0-1,0-1.4,0c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0.1,0,0.2l0,0c0.1,0.1,0.1,0,0.1,0c0.1,0.1-0.1,0.1-0.1,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0.1,0.1,0.2,0.1,0.6,0.7
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0.2,0.4,0.2,0.5,0.3
|
||||
c0.1,0.1-0.1,0.3-0.1,0.4c0,0-0.1,0-0.1,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0l0.1,0
|
||||
c0,0.1,0.1,0.7,0.1,0.7c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0h0c0,0,0,0,0,0h0h0c0,0,0,0,0,0c0,0,0,0,0,0l0,0h0l0,0l0,0l0,0h0c0,0,0-0.1,0-0.1c0,0,0,0,0.1-0.1c0,0,0.1,0,0.2-0.1
|
||||
c0,0,0,0,0-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0-0.1,0.1-0.1,0.1c0.2-0.1,0.2-0.1,0.4-0.3c0,0,0,0,0,0C8.7,22.1,8.8,22.1,8.8,22.1 M13.7,18.3C13.7,18.3,13.7,18.3,13.7,18.3
|
||||
C13.7,18.3,13.7,18.3,13.7,18.3C13.7,18.3,13.7,18.3,13.7,18.3C13.7,18.3,13.7,18.4,13.7,18.3L13.7,18.3
|
||||
C13.7,18.4,13.7,18.3,13.7,18.3 M14,15.4c0-0.2-0.1-0.5-0.1-0.7v0c0-0.1-0.1-0.1-0.2-0.2c0,0-0.1,0-0.3-0.6c0,0,0,0,0,0
|
||||
c0-0.1,0-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1-0.1,0.1
|
||||
c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.1-0.1c0,0-0.1,0.5,0,0.7c0.1,0.3-0.2,0.4-0.2,0.7c0,0.2-0.1,0.4-0.1,0.7c0,0,0,0,0,0
|
||||
c0.1,0.1,0.1,0.7,0,0.8c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0l0,0l0,0l0,0l0,0h0l0,0l0,0l0-0.1
|
||||
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0.2,0,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1v0c0,0-0.1,0-0.1,0c0,0,0,0,0.1,0.2
|
||||
c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0v0L12.8,18c0,0,0,0,0,0c0,0,0.2,0.3,0.3,0.3
|
||||
c0.1,0,0.1-0.2,0.2-0.2c0,0,0,0,0-0.1c0,0,0,0,0,0c0.1,0,0.3-0.2,0.3-0.2c0,0,0.2,0,0.2,0.1l0.2,0v0c0,0.1-0.2,0.1-0.2,0.1
|
||||
c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1v0l-0.1,0c0,0.1-0.1,0.2-0.2,0.3l0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0.1-0.1,0.2l0,0l0,0c0,0,0,0,0,0.1c-0.1,0.4-0.5,1-0.5,1c0,0,0,0,0,0s0,0,0,0c0.1,0,0.2-0.3,0.3-0.6c0.2-0.3,0.3-0.6,0.4-0.9
|
||||
s0.2-0.6,0.2-1c0.1-0.3,0.1-0.7,0.1-1C14.1,16.1,14.1,15.8,14,15.4 M13.4,13.8C13.4,13.8,13.4,13.8,13.4,13.8
|
||||
C13.4,13.8,13.4,13.8,13.4,13.8C13.4,13.8,13.4,13.8,13.4,13.8C13.4,13.8,13.4,13.8,13.4,13.8C13.4,13.8,13.4,13.8,13.4,13.8
|
||||
c0,0.1,0,0.1,0.1,0.2C13.5,13.9,13.5,13.9,13.4,13.8 M13.2,13.5C13.2,13.5,13.2,13.5,13.2,13.5C13.2,13.4,13.2,13.4,13.2,13.5
|
||||
C13.2,13.5,13.2,13.5,13.2,13.5C13.2,13.5,13.2,13.5,13.2,13.5C13.2,13.5,13.2,13.5,13.2,13.5c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C13.3,13.6,13.3,13.6,13.2,13.5 M13.1,13.3C13.1,13.3,13.1,13.2,13.1,13.3
|
||||
L13.1,13.3L13.1,13.3C13.1,13.3,13.1,13.3,13.1,13.3L13.1,13.3C13.1,13.3,13.1,13.3,13.1,13.3C13.1,13.3,13.1,13.3,13.1,13.3
|
||||
C13.1,13.3,13.1,13.3,13.1,13.3C13.1,13.3,13.1,13.3,13.1,13.3L13.1,13.3L13.1,13.3L13.1,13.3L13.1,13.3L13.1,13.3L13.1,13.3
|
||||
c0,0.1,0.1,0.1,0.1,0.1l0,0C13.2,13.4,13.1,13.3,13.1,13.3 M13.3,13.5C13.3,13.5,13.2,13.5,13.3,13.5l-0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0-0.2-0.4-0.3-0.4l0,0c0,0-0.1,0-0.3,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0l0,0
|
||||
c0,0,0.1,0.1,0.1,0.2c0,0,0,0-0.1,0c0,0.1-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0.1,0,0.1,0.1
|
||||
c0.1,0.1,0.1,0.3,0.1,0.4c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0,0h0
|
||||
c0,0,0-0.1,0-0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0-0.1-0.1c0-0.1,0-0.1,0-0.2l0,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0C13,13,13.3,13.5,13.3,13.5C13.3,13.5,13.3,13.5,13.3,13.5L13.3,13.5
|
||||
L13.3,13.5L13.3,13.5L13.3,13.5C13.3,13.5,13.3,13.5,13.3,13.5C13.3,13.5,13.3,13.5,13.3,13.5C13.3,13.5,13.3,13.6,13.3,13.5
|
||||
C13.3,13.6,13.3,13.6,13.3,13.5c0.1,0.1,0.1,0.2,0.1,0.2c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0-0.1
|
||||
C13.4,13.7,13.3,13.6,13.3,13.5 M12.9,12.9C12.9,12.9,12.9,12.9,12.9,12.9C12.9,12.9,12.9,12.9,12.9,12.9C12.9,12.9,13,13,12.9,12.9
|
||||
C13,13,12.9,12.9,12.9,12.9 M13.1,13.1c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C13,13,13,13,13.1,13.1
|
||||
C13,13,13,13,13.1,13.1C13,13.1,13.1,13.1,13.1,13.1C13.1,13.1,13.1,13.1,13.1,13.1 M9.2,12.9L9.2,12.9L9.2,12.9L9.2,12.9L9.2,12.9
|
||||
c-0.1,0-0.1,0-0.1,0.1C9.1,12.9,9.1,12.9,9.2,12.9C9.2,12.9,9.2,12.9,9.2,12.9C9.2,12.9,9.2,12.9,9.2,12.9 M2.7,12.5
|
||||
C2.8,12.5,2.7,12.5,2.7,12.5C2.7,12.5,2.7,12.5,2.7,12.5C2.7,12.6,2.7,12.6,2.7,12.5C2.7,12.6,2.7,12.6,2.7,12.5 M2.9,12.4
|
||||
C2.9,12.4,2.9,12.4,2.9,12.4C2.9,12.3,2.9,12.3,2.9,12.4c0.1-0.1,0.1-0.1,0.1-0.1c0,0,0,0,0,0C2.8,12.3,2.8,12.4,2.9,12.4
|
||||
C2.8,12.4,2.8,12.4,2.9,12.4C2.8,12.4,2.8,12.4,2.9,12.4C2.8,12.4,2.8,12.4,2.9,12.4C2.8,12.4,2.8,12.4,2.9,12.4
|
||||
C2.8,12.4,2.8,12.4,2.9,12.4C2.8,12.4,2.8,12.4,2.9,12.4C2.9,12.4,2.9,12.4,2.9,12.4 M2.9,12.2C3,12.1,3,12.1,2.9,12.2
|
||||
C3,12.1,3,12.1,2.9,12.2C3,12.1,3,12.1,2.9,12.2C2.9,12.1,2.9,12.2,2.9,12.2C2.9,12.2,2.9,12.2,2.9,12.2L2.9,12.2
|
||||
C2.9,12.2,2.9,12.2,2.9,12.2 M3,12.1C3,12,3,12,3,12.1C3.1,12,3.1,12,3,12.1C3.1,12,3.1,12,3,12.1C3,12,3,12,3,12.1
|
||||
C3,12.1,3,12.1,3,12.1C3,12,3,12.1,3,12.1 M9,13c0,0,0-0.2,0-0.2c0,0,0.1,0,0-0.1c0-0.2,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0.1-0.2,0.1c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.2-0.1c-0.3-0.1-0.3-0.2-0.3-0.2
|
||||
c0-0.1,0-0.3-0.1-0.3c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
|
||||
c0,0,0,0.1-0.1,0c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0c0-0.1-0.1,0-0.1-0.1c0,0,0,0,0,0C8.4,12,8.4,12,8.3,12c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c0,0,0,0-0.1,0.1c0,0,0,0,0,0.1C8,11.9,8,12,8,12c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1C7.9,12,7.9,12,7.8,12
|
||||
c0,0,0,0,0,0c0-0.1-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0.2,0,0.2c0,0,0-0.1,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.2-0.2-0.2
|
||||
c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0c0,0-0.1,0,0,0.1c0,0,0,0.1,0,0.1v0
|
||||
c0,0,0,0,0,0c0,0,0,0.1,0,0.1l-0.1,0.1C6.9,12,7.1,12,7,12.2c0,0.1-0.1,0.4-0.3,0.5c0,0,0.1,0.3,0.1,0.3c0,0,0,0,0,0
|
||||
c0,0,0.3-0.4,0.3-0.4c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0.1-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0.1,0,0.1c0.3,0,0.5,0,0.8,0c0.5,0,1,0,1.5,0
|
||||
c0,0-0.1-0.1-0.1-0.1C9,12.9,9,12.9,9,12.8 M9,11.3C9,11.2,9,11.2,9,11.3L9,11.3L9,11.3 M6.8,11.3L6.8,11.3c0,0,0,0-0.1,0
|
||||
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C6.7,11.3,6.7,11.3,6.8,11.3C6.8,11.3,6.8,11.3,6.8,11.3 M7.3,10.8
|
||||
C7.3,10.8,7.3,10.8,7.3,10.8C7.3,10.8,7.2,10.8,7.3,10.8c-0.2,0-0.2,0.1-0.1,0.1C7.1,10.9,7.2,11,7.3,10.8"/>
|
||||
<path style="fill:#B3E710;" d="M9.6,13.4C9.6,13.4,9.6,13.4,9.6,13.4C9.6,13.4,9.6,13.4,9.6,13.4C9.6,13.4,9.6,13.3,9.6,13.4
|
||||
L9.6,13.4C9.5,13.3,9.5,13.3,9.6,13.4C9.5,13.4,9.5,13.4,9.6,13.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0
|
||||
l0,0c0,0,0,0-0.1,0c0,0,0,0,0.1-0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0-0.1,0c0,0,0,0-0.1,0.1c0-0.1,0-0.1,0.1-0.2c0,0-0.1,0-0.1,0C9,13,9,13,9,13.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0.1c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0.1
|
||||
c0,0,0,0,0,0l0,0L9.6,13.4C9.5,13.4,9.5,13.5,9.6,13.4C9.6,13.5,9.6,13.5,9.6,13.4C9.6,13.5,9.6,13.4,9.6,13.4 M12.6,12.9
|
||||
C12.6,12.9,12.6,12.9,12.6,12.9C12.6,12.9,12.6,12.9,12.6,12.9L12.6,12.9C12.6,12.9,12.6,12.9,12.6,12.9 M11.6,11.8
|
||||
c0,0-0.1-0.2-0.2-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C11.7,11.9,11.7,11.9,11.6,11.8C11.6,11.9,11.6,11.9,11.6,11.8
|
||||
M11.5,11.7L11.5,11.7C11.5,11.7,11.4,11.7,11.5,11.7C11.4,11.7,11.4,11.7,11.5,11.7C11.4,11.7,11.5,11.7,11.5,11.7 M11.8,11.7
|
||||
C11.8,11.6,11.8,11.6,11.8,11.7L11.8,11.7C11.8,11.7,11.8,11.7,11.8,11.7C11.8,11.7,11.8,11.7,11.8,11.7
|
||||
C11.8,11.7,11.8,11.7,11.8,11.7C11.9,11.7,11.9,11.7,11.8,11.7C11.9,11.7,11.9,11.7,11.8,11.7C11.9,11.7,11.9,11.7,11.8,11.7
|
||||
C11.9,11.7,11.9,11.7,11.8,11.7L11.8,11.7L11.8,11.7C11.9,11.7,11.8,11.7,11.8,11.7 M11.6,11.4C11.6,11.4,11.6,11.4,11.6,11.4
|
||||
L11.6,11.4C11.6,11.5,11.6,11.5,11.6,11.4C11.6,11.5,11.6,11.5,11.6,11.4c0.1,0.1,0.1,0.1,0.1,0.1C11.7,11.5,11.7,11.5,11.6,11.4
|
||||
C11.6,11.5,11.6,11.5,11.6,11.4C11.6,11.5,11.6,11.5,11.6,11.4 M9.4,11.4C9.4,11.4,9.4,11.4,9.4,11.4C9.4,11.4,9.4,11.4,9.4,11.4
|
||||
C9.4,11.4,9.4,11.4,9.4,11.4C9.4,11.4,9.3,11.4,9.4,11.4C9.3,11.4,9.4,11.4,9.4,11.4C9.4,11.4,9.4,11.4,9.4,11.4 M12.1,12.1
|
||||
c0,0-0.1-0.1-0.1-0.1C12,12,12,12,12.1,12.1C11.9,12,11.9,12,11.9,12c0,0-0.1-0.1-0.2-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1,0c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1l0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0.1l0,0C11.9,12.1,11.9,12.1,12.1,12.1C12,12.2,12,12.2,12.1,12.1C12,12.2,12,12.2,12.1,12.1
|
||||
C12,12.2,12,12.1,12.1,12.1C12,12.2,12,12.2,12,12.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C12.1,12.2,12.1,12.2,12.1,12.1
|
||||
C12.1,12.2,12.1,12.2,12.1,12.1C12.1,12.2,12.1,12.2,12.1,12.1C12.1,12.2,12.1,12.2,12.1,12.1C12.1,12.1,12.1,12.1,12.1,12.1
|
||||
M9.9,10.7c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0C10,10.8,10,10.8,9.9,10.7C10,10.8,10,10.8,9.9,10.7C10,10.8,10,10.7,9.9,10.7
|
||||
C10,10.7,10,10.7,9.9,10.7C10,10.7,9.9,10.7,9.9,10.7 M8.6,10.2C8.6,10.2,8.6,10.2,8.6,10.2C8.5,10.2,8.5,10.2,8.6,10.2
|
||||
C8.6,10.2,8.6,10.2,8.6,10.2L8.6,10.2C8.7,10.2,8.6,10.2,8.6,10.2L8.6,10.2L8.6,10.2L8.6,10.2L8.6,10.2C8.6,10.2,8.6,10.2,8.6,10.2
|
||||
M12.1,11.9C12.1,11.9,12,11.8,12.1,11.9L12.1,11.9C12,11.9,12.1,11.9,12.1,11.9c0,0-0.1-0.1-0.1-0.1l0,0l0,0h0
|
||||
C12,11.8,12,11.9,12.1,11.9C12.1,11.9,12.1,11.9,12.1,11.9L12.1,11.9L12.1,11.9L12.1,11.9C12,11.8,12,11.8,12,11.8c0,0,0,0,0,0
|
||||
c0,0-0.1-0.1-0.1-0.1l0,0c0,0,0,0-0.1-0.1l0,0l0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0.1,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0.1,0.1,0.1l0,0c0.1,0,0.1,0.1,0.2,0.2l0,0L12.1,11.9L12.1,11.9L12.1,11.9C12,11.9,12,11.9,12.1,11.9
|
||||
C12,11.9,12,11.9,12.1,11.9C12.1,11.9,12,11.9,12.1,11.9C12.1,11.9,12.1,11.9,12.1,11.9L12.1,11.9L12.1,11.9L12.1,11.9
|
||||
C12.1,11.9,12,11.9,12.1,11.9C12,11.9,12,11.9,12.1,11.9C12,11.9,12,11.9,12.1,11.9C12.1,11.9,12.1,11.9,12.1,11.9
|
||||
C12.1,12,12.1,12,12.1,11.9L12.1,11.9C12,11.9,12,11.9,12.1,11.9C12,11.9,12,11.9,12.1,11.9C12,12,12.1,12,12.1,11.9
|
||||
c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0l0,0C12.1,12,12.1,12,12.1,11.9c0,0.1,0,0.1,0.1,0.3c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0,0l0,0
|
||||
c0,0,0,0,0.1,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0,0.3,0,0.3,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.1-0.2-0.2-0.3C12.6,12.4,12.3,12.1,12.1,11.9 M10.5,10.7c-0.2-0.1-0.4-0.2-0.6-0.3l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0.1C10.4,10.7,10.5,10.7,10.5,10.7C10.5,10.8,10.5,10.8,10.5,10.7
|
||||
c0.1,0.1,0.2,0.1,0.2,0.1l0,0c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0l0,0h0l0,0h0c0,0,0,0,0,0l0,0h0l0,0l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0.1l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0.1,0.1,0.1,0.1l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c0,0,0,0,0.1,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0,0c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1l0,0l0,0l0,0
|
||||
c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0-0.1-0.1l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
|
||||
C11.1,11.1,10.8,10.9,10.5,10.7 M8.3,10.1L8.3,10.1C8.3,10.1,8.3,10.1,8.3,10.1L8.3,10.1L8.3,10.1C8.3,10.1,8.2,10.1,8.3,10.1
|
||||
L8.3,10.1C8.2,10.1,8.3,10.1,8.3,10.1L8.3,10.1L8.3,10.1C8.3,10.1,8.3,10.1,8.3,10.1L8.3,10.1L8.3,10.1L8.3,10.1L8.3,10.1
|
||||
C8.3,10.1,8.3,10.1,8.3,10.1C8.3,10.1,8.3,10.1,8.3,10.1L8.3,10.1C8.3,10.1,8.3,10.1,8.3,10.1 M8.2,10.1L8.2,10.1L8.2,10.1
|
||||
C8.2,10.1,8.2,10.1,8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1L8.2,10.1
|
||||
C8.2,10.1,8.2,10.1,8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1 M8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1L8.2,10.1L8.2,10.1L8.2,10.1
|
||||
C8.1,10.1,8.1,10.1,8.2,10.1L8.2,10.1L8.2,10.1L8.2,10.1L8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1C8.2,10.1,8.2,10.1,8.2,10.1 M8,10
|
||||
L8,10C7.9,10,7.9,10,8,10C7.9,10,8,10,8,10C8,10,8,10,8,10 M7.9,10C7.8,10,7.8,10,7.9,10C7.8,10,7.8,10,7.9,10L7.9,10
|
||||
C7.8,10,7.9,10,7.9,10C7.9,10,7.9,10,7.9,10 M7.8,10L7.8,10C7.8,10,7.7,10,7.8,10C7.8,10,7.8,10,7.8,10C7.7,10,7.7,10,7.8,10
|
||||
C7.7,10,7.7,10,7.8,10C7.8,10,7.8,10,7.8,10L7.8,10C7.8,10,7.8,10,7.8,10 M7.7,10L7.7,10L7.7,10C7.6,10,7.6,10,7.7,10
|
||||
C7.6,10,7.6,10,7.7,10C7.6,10,7.6,10,7.7,10C7.6,10,7.7,10,7.7,10L7.7,10 M7.9,10c-0.1,0-0.2,0-0.2,0h0c0,0,0.1,0,0.1,0
|
||||
C7.8,10,7.8,10,7.9,10 M7.6,10C7.6,10,7.5,10,7.6,10L7.6,10C7.6,10,7.6,10,7.6,10C7.6,10,7.6,10,7.6,10 M8,10L8,10L8,10L8,10L8,10
|
||||
M9,10H8.7c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.2,0,0.2,0.1C9,10.2,9,10,9,10H8.7l0,0.1c0,0,0,0,0,0
|
||||
l0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0.2,0.1,0.2,0.1c0,0,0.2,0.1,0.2,0.1v0c0,0-0.2-0.1-0.2-0.1c0,0-0.2-0.1-0.2-0.1h0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0C8.5,10,9,10.1,9,10v0.1c-1,0-0.3,0-0.3,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0.1,0,0.1,0l0,0h0l0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0.1,0l0,0c0,0,0-0.1,0-0.1l0-0.1h0.2
|
||||
C8.8,10,9,10.1,9,10L9,10H8.3c0,0-0.3,0.1-0.3,0.1v-0.1c0,0,0.5-0.1,0.5-0.1h0l0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0-0.4,0-0.4,0v0.1l0,0l0,0v0l0,0l0,0l0,0l0.4,0h0l0,0h0c0,0-0.4,0-0.4,0l0,0v0.1v0l0,0v0v0l0,0c0,0,0.2-0.1,0.2-0.1
|
||||
c0,0,0.2,0,0.2,0h0c0,0,0,0.1,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0-0.1,0h0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0V10h0.1l0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0-0.2,0-0.2,0v0v0l0,0v0l0,0v0v0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0v0v0v0h0h0c0,0,0,0,0,0h0
|
||||
c0,0,0,0,0,0h0v0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0,0h0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0-0.1,0-0.1,0h0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0h0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0.5,0,1,0.5,1.4,1.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.2,0-0.1c0,0,0-0.2,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.2,0,0.2
|
||||
c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0l0,0h0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0-0.2,0-0.2,0c0,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0,0-0.2,0-0.2,0c0,0-0.2,0-0.2,0c0,0,0-0.2,0-0.2
|
||||
c0,0,0.5-0.2,0.5-0.2h0c0,0,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.2,0,0.2,0c0,0,0,0,0,0c0,0-0.1,0-0.2,0c0,0,0.1,0,0,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0-0.4,0-0.4s-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.2,0,0.2c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1h0l0,0.2
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1
|
||||
c0,0,0,0,0.1,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0.2,0,0.2,0c0,0-0.7,0,0.3,0v0c-1,0-0.3,0-0.3,0H9.6c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0-0.5,0-0.5,0v0l0,0v0l0,0v0h0.2H9v0l0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0L9,11v0
|
||||
c0,0,0.4,0,0.4,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0l0,0c0,0,0,0-0.1,0l0,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0.1,0c0,0,0,0.1,0,0.1c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.3-0.1-0.3-0.1v-0.1c0,0,0.1,0,0.1-0.1c0,0,0.1,0,0.1,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.1,0c0,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0.2,0.3,0.2,0.3h0c0,0,0-0.2,0-0.2c0,0,0.1,0.1,0.1,0.1c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0c0,0,0-0.2,0-0.2c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1,0c0,0-0.2,0-0.2,0V11c0,0,0.2,0,0.2,0c0,0,0.1-0.2,0-0.2
|
||||
c0,0,0-0.1,0-0.1c0,0,0-0.1,0.1,0c0,0,0,0.2,0,0.2l0,0.2c0,0,0,0,0,0c0,0,0-0.3,0-0.3l0-0.1l0-0.1c0,0,0-0.3,0-0.3C9,10.2,9,10,9,10
|
||||
C9,10,9,10,9,10L9,10.2c0,0,0,0.1-0.1,0.1l0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0c0,0-0.1,0-0.1,0c0,0,0.1,0,0.1,0c0,0,0-0.1,0-0.1V10H8.8H9v0.1
|
||||
l0,0V10c0,0-0.1,0-0.1,0l0,0H9L9,10v0.2l-0.1,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1"/>
|
||||
<path style="fill:#B3E710;" d="M10.4,20.8c0,0,0.1-0.2,0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.2-0.1-0.2-0.1-0.2c0,0-0.1,0-0.1,0
|
||||
c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.2,0.1c0,0,0.1-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1-0.1c-0.2,0.8-0.5,1.5-0.8,2
|
||||
c0.1,0,0.1,0,0.1,0c0,0,0.1,0,0.1-0.1c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0.1-0.1c0-0.1,0.2-0.1,0.2-0.2c0.1-0.1,0.1-0.1,0.2-0.2
|
||||
c0-0.1,0.1-0.1,0.2-0.3c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.1-0.1,0.2-0.1
|
||||
C10.3,20.8,10.4,20.8,10.4,20.8 M12.8,20.3c0.1-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c-0.6,0.9-1.1,1.3-1.3,1.5
|
||||
c0.2-0.2,0.4-0.3,0.6-0.5C12.3,20.9,12.6,20.6,12.8,20.3 M9.5,20.1C9.5,20.1,9.5,20.1,9.5,20.1C9.5,20.1,9.5,20.1,9.5,20.1
|
||||
C9.5,20.1,9.5,20.1,9.5,20.1 M9.4,20C9.4,20,9.4,20,9.4,20c0,0-0.1,0-0.2,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1C9.3,20.1,9.3,20.1,9.4,20C9.4,20.1,9.4,20.1,9.4,20 M8.1,18.8C8.1,18.8,8.1,18.8,8.1,18.8
|
||||
C8.1,18.8,8.1,18.8,8.1,18.8C8.1,18.8,8.1,18.8,8.1,18.8C8.1,18.8,8.1,18.8,8.1,18.8C8.1,18.8,8.1,18.9,8.1,18.8
|
||||
C8.1,18.9,8.1,18.9,8.1,18.8C8.1,18.9,8,18.9,8,18.9c0,0,0,0,0,0C8.1,18.9,8.1,18.9,8.1,18.8C8.1,18.9,8.1,18.9,8.1,18.8 M6.8,17.4
|
||||
L6.8,17.4c0-0.1-0.2-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0h0l0,0
|
||||
c0,0,0.1,0.1,0.1,0.1C6.7,17.5,6.7,17.4,6.8,17.4C6.8,17.4,6.8,17.4,6.8,17.4C6.8,17.4,6.8,17.4,6.8,17.4
|
||||
C6.8,17.4,6.8,17.4,6.8,17.4L6.8,17.4 M8.2,17.4C8.2,17.4,8.2,17.4,8.2,17.4c0,0-0.1-0.1-0.2,0c0,0,0,0,0,0.1
|
||||
C8.1,17.4,8.2,17.4,8.2,17.4C8.2,17.4,8.2,17.4,8.2,17.4 M7.9,17.4C7.9,17.4,7.9,17.4,7.9,17.4c-0.1-0.1-0.2-0.1-0.2-0.1
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.2,0l0,0c0,0,0,0,0,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0c0,0,0,0,0,0l0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.2,0c0,0,0,0.1,0.1,0.1c0-0.1,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
C7.8,17.4,7.8,17.4,7.9,17.4C7.8,17.4,7.8,17.4,7.9,17.4C7.9,17.4,7.9,17.4,7.9,17.4 M7.1,17.1L7.1,17.1C7,17.1,7,17.1,6.9,17.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0h0h0h0h0h0h0l0,0l0,0c-0.1,0-0.2,0-0.2-0.1c0,0,0-0.1-0.1-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2-0.1
|
||||
c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0,0,0,0,0h0c0,0,0,0,0,0h0c0,0,0,0,0,0c-0.1,0-0.3,0-0.3,0.1
|
||||
c0,0,0,0,0,0l0,0c0,0,0.1,0,0.1,0c0.2-0.1,0.2-0.1,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.1,0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0.1c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1-0.1,0.1
|
||||
c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0C7,17.2,7.1,17.2,7.1,17.1 M7,15L7,15C7,15,6.9,14.9,7,15C6.9,14.9,6.9,14.9,7,15
|
||||
C6.9,15,7,15,7,15 M6.9,14.9C6.9,14.9,6.9,14.9,6.9,14.9L6.9,14.9L6.9,14.9 M6.9,14.9C6.9,14.9,6.9,14.9,6.9,14.9L6.9,14.9
|
||||
C6.9,14.9,6.9,14.9,6.9,14.9 M6.9,14.9C6.9,14.9,6.9,14.9,6.9,14.9L6.9,14.9C6.9,14.9,6.9,14.9,6.9,14.9 M6.9,14.9
|
||||
C6.9,14.9,6.9,14.9,6.9,14.9L6.9,14.9C6.9,14.9,6.9,14.9,6.9,14.9 M8.9,13.6C8.9,13.6,8.9,13.6,8.9,13.6C8.9,13.6,8.8,13.5,8.9,13.6
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0.1
|
||||
C8.7,13.6,8.8,13.6,8.9,13.6C8.8,13.6,8.9,13.6,8.9,13.6 M2.7,13.3L2.7,13.3C2.7,13.2,2.7,13.2,2.7,13.3C2.7,13.2,2.7,13.2,2.7,13.3
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1l0,0
|
||||
c0,0,0,0,0,0C2.6,13.2,2.6,13.2,2.7,13.3C2.6,13.2,2.6,13.2,2.7,13.3C2.7,13.2,2.6,13.2,2.7,13.3C2.6,13.2,2.6,13.2,2.7,13.3
|
||||
C2.6,13.2,2.7,13.3,2.7,13.3C2.7,13.3,2.7,13.3,2.7,13.3C2.7,13.3,2.7,13.3,2.7,13.3 M9.3,19.8C9.3,19.8,9.3,19.8,9.3,19.8
|
||||
c-0.1-0.1-0.1-0.1-0.1-0.3c0,0-0.4-0.3-0.5-0.2c0,0-0.1,0-0.1,0c0,0,0,0,0,0l0,0c-0.1-0.1-0.3-0.1-0.4-0.1c0,0-0.3,0-0.3,0
|
||||
c0,0,0,0,0,0c0-0.2,0.1-0.2-0.1-0.2c0,0,0.1,0,0.1,0C8,19,8.1,19,8.1,19c-0.1,0,0,0-0.1-0.1c0,0,0,0-0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0l0,0l0,0c-0.2,0-0.3,0-0.5,0c-0.1,0-0.3-0.1-0.4-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0l0,0l0,0c0,0,0,0-0.2,0.1c0,0,0,0,0,0c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0-0.1,0c-0.1-0.1-0.1-0.1,0-0.2c0-0.1,0-0.1,0-0.1
|
||||
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.3,0.3-0.3,0.3c0,0,0,0,0,0c0,0,0-0.3-0.2-0.4
|
||||
c-0.1,0-0.2,0-0.3,0C6,18.5,5.8,18.2,5.9,18c0,0,0-0.1,0-0.2c0,0-0.1,0-0.1,0c0-0.1-0.2,0-0.2-0.1c-0.1,0-0.3,0-0.3,0c0,0,0,0,0,0
|
||||
l0,0l0,0c0.1-0.1,0.1-0.1,0.1-0.3c0,0,0,0,0-0.1l0,0c0,0,0,0,0-0.1l0,0c0,0,0,0,0,0.1c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0l0,0l0-0.1
|
||||
C5.5,17,5.5,17,5.5,17c-0.2-0.1-0.3,0-0.4,0c-0.1,0,0,0-0.1,0c0,0.1,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.2,0,0.2c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.3,0-0.4,0C4.2,17,4.2,17,4.2,16.9c0-0.3,0.1-0.8,0.1-0.8l0-0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0,0,0c0.1,0,0.1,0,0.2-0.1c0,0,0,0,0-0.1l0,0.1c0.1,0,0.2,0.1,0.3,0.1c0,0,0,0,0,0l0-0.1l0,0l0,0c0,0,0.1,0.1,0.1,0.1
|
||||
C5,16,5.1,16,5.1,16c0,0,0,0,0,0L5,15.9c0,0,0,0,0,0l0.1,0l0,0l0,0c0,0,0.1,0.1,0.1,0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.1,0
|
||||
c0.2,0.1,0.2,0.1,0.2,0.1c0,0,0,0,0.2,0.1C6,16,6,16,6,16.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0.1,0.1,0.1,0.1,0.2c0,0,0.1-0.3,0.1-0.3c0,0,0-0.2,0-0.2c0,0,0,0,0,0c0.1,0-0.2-0.3-0.1-0.6
|
||||
c0.1-0.2,0.4-0.2,0.6-0.4l0,0.1l0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0.1,0,0.1,0v0l-0.1,0l0,0l0,0l0.1,0l0,0v0l0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0l0,0l0,0l0,0.1
|
||||
c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1l0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0l0,0
|
||||
l0,0c0,0,0,0,0,0l0-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c0,0,0.1,0,0.1,0l0.1,0c0,0,0,0.4,0,0.4
|
||||
s-0.2,0-0.2,0c0,0,0-0.2,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0.2,0.1,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0h0c0,0,0,0,0,0c0,0,0-0.3,0-0.3
|
||||
c0,0,0-0.1,0-0.1l0,0.2l0,0.2c0,0,0,0,0,0l0-0.3l0-0.1l0-0.1l0,0.2l0,0.3h0l0-0.2l0-0.2c0,0,0,0.5,0,0.5s-0.1,0-0.1,0l0-0.2l0.1-0.1
|
||||
l0-0.1c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0c0,0,0,0.3,0,0.3s0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0-0.1,0,0l0-0.1c0,0,0-0.1,0-0.1C7,14.7,7,14.4,7,14.3c0,0,0-0.3,0-0.3h0l0,0.5C7,14.5,7,15,7,15c0,0-0.1,0-0.1,0
|
||||
s0-0.4,0-0.4l0,0c0,0,0.1-0.1,0.1-0.1c0-0.1,0.1-0.1,0-0.2l0,0c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0L7.7,14
|
||||
c0,0,0.3,0,0.3,0s0,0.2,0,0.2l-0.2,0l-0.1,0c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0-0.1,0.2-0.1,0.2-0.1
|
||||
c0,0,0,0,0,0l-0.1,0l-0.1,0.1L7.7,14c0,0,0,0,0,0l0-0.1l0,0l0,0l0,0l0,0c0,0,0,0.1,0,0c0,0,0,0.1,0,0.1h0l0-0.1l0,0l0,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0l0-0.1l0-0.1l0,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0,0,0l0,0c0,0,0.1,0,0.1-0.1l0,0.2l0,0.2c0,0,0,0,0,0c0,0,0-0.2-0.1-0.1c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.2-0.1
|
||||
c0,0-0.1,0-0.1,0c0,0-0.2,0-0.2,0l-0.2,0V14h0.2l0,0l0,0c0,0,0.1,0,0.1,0l0,0l0,0l0,0l0,0c0,0,0,0-0.1,0c0,0,0,0,0,0L8,13.8
|
||||
c0,0,0,0,0,0l0.1,0c0,0,0,0,0,0l0,0l0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
||||
c0,0,0.1-0.1,0.1-0.1c0,0,0,0.1,0,0.1l0,0.1c0,0,0,0,0,0l-0.2-0.1L8,13.8v0c0,0,0.3,0,0.3,0l0.1,0l0.1,0l0,0c0.1,0,0.1,0,0.2-0.1
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0-0.1,0l0,0l0,0l0,0c0,0-0.1,0-0.1,0c0,0,0,0.2-0.1,0.2c0,0,0,0.2,0,0.2
|
||||
c0,0,0,0,0,0l0-0.2c0,0-0.1-0.1-0.1-0.1l0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0S8,14,8,14s0-0.4,0-0.4l0.2,0l-0.1,0
|
||||
c-0.1,0-0.2,0-0.2-0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0.1-0.1l-0.1,0l-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0-0.1,0.3-0.1,0.3-0.1c-0.2-0.2-0.6,0.1-0.7,0.3C7.8,13,8.2,13,8.6,13c0.1,0,0.2,0,0.3,0c-0.5,0-1,0-1.5,0c-0.3,0-0.5,0-0.8,0
|
||||
c-1.7,0-3.1,0-3.9,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.3-0.1,0.4c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.4c0,0.1,0,0.1-0.2,0.6c0,0,0,0,0,0c0,0,0,0,0,0l0,0.1l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0l0,0c0,0.1,0.1,0.3,0,0.4c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
||||
c0,0,0.3,0,0.3,0c0,0.1-0.7,0.1,0.3,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-1,0-1,0-1,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c1,0,0.4,0.6,0.4,0.6c0,0,0.1,0,0.1,0c0,0,0.3,0.5,0.5,0.7c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0
|
||||
c0-0.1-0.1-0.4-0.1-0.4c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.2-0.1-0.3-0.2-0.5c0,0,0-0.1,0-0.1c0,0,0.1,0,0.1,0l0,0
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0C2.8,16,2.8,16,3.1,16.3c0,0.1,0,0.1,0,0.1l0,0c0.1,0.2,0.2,0.3,0.3,0.5c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0C3.5,17.3,4,17.6,4,17.6c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2-0.1,0.4,0c0.2,0.1,0.2,0.2,0.4,0.3L5.4,18
|
||||
c0,0,0,0,0-0.1c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0.1,0.2,0.2,0.3,0.2l0,0l0,0l0,0c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1l0.1,0
|
||||
c0,0,0.1,0,0.1-0.1c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-0.1,0v0.2C6,18.8,6,19,6,19c0,0,0,0,0,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0.1-0.1,0.1-0.1c0,0-0.2-0.1-0.2-0.1c0,0-0.2-0.1-0.2-0.1
|
||||
c0,0,0,0,0,0c0,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2,0.1c0,0,0.1,0.2,0.1,0.2c0,0,0,0.2,0.1,0.2c0,0,0,0,0,0
|
||||
c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c-0.2,0-0.1,0.2-0.2,0.3c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0.1,0.1,0.1,0.3,0.1,0.3c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0.1c0.4,0,0.9,0,1.4,0c0.6,0,1.2,0,1.7,0
|
||||
C9.1,20,9.3,19.9,9.3,19.8"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="7.4653" y1="9.0342" x2="7.4653" y2="23.9663">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M7.5,9C3.3,9,0,12.4,0,16.5C0,20.6,3.3,24,7.5,24c4.1,0,7.5-3.3,7.5-7.5
|
||||
C14.9,12.4,11.6,9,7.5,9z M13.7,18.6c-0.1,0.3-0.2,0.6-0.4,0.9s-0.3,0.6-0.5,0.9s-0.4,0.5-0.6,0.8s-0.5,0.5-0.8,0.6
|
||||
c-0.3,0.2-0.6,0.4-0.9,0.5c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.2-1,0.2C8.2,23,7.9,23,7.5,23C1,22.7-0.9,15.2,3.3,11.6
|
||||
C5,10.1,6.8,10,7.5,10c0.4,0,0.7,0,1.1,0.1c0.3,0.1,0.7,0.1,1,0.2s0.6,0.2,0.9,0.4c0.3,0.2,0.6,0.3,0.9,0.5c0.3,0.2,0.5,0.4,0.8,0.6
|
||||
c0.2,0.2,0.5,0.5,0.6,0.8c0.2,0.3,0.4,0.6,0.5,0.9s0.3,0.6,0.4,0.9s0.2,0.7,0.2,1c0.1,0.3,0.1,0.7,0.1,1.1c0,0.4,0,0.7-0.1,1.1
|
||||
C13.9,17.9,13.8,18.2,13.7,18.6z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M37.2.2C8.6.2-14.7 35.9 11 63.6c7.6 7.6 17 11 26.2 10.9 9.2.1 18.6-3.2 26.2-10.9C89.1 35.9 65.8.2 37.2.2zM69 34.7H55.2c-.2-4.2-1-8.1-1.9-12.3 3-1.4 5.7-3.3 8-5.6C65.6 22 68.5 28 69 34.7zm-11-21c-1.8 1.6-3.8 3-5.9 4.2-1-3.8-2.7-7.3-4.9-10.6 4 1.4 7.8 3.5 10.8 6.4zM37.2 34.8H23.7c.1-3.6.8-6.9 1.5-10.5 3.9 1.4 7.9 2.1 12 2.1s8.1-.7 12-2.1c.7 3.6 1.4 6.9 1.5 10.5H37.2zM50.4 40c-.1 3.6-.5 7-1.2 10.5-3.9-1.4-7.9-2.1-12-2.1s-8.1.7-12 2.1C24.5 47 24.1 43.6 24 40h26.4zM37.2 5.7c3.9 0 7.8 4.4 10.7 13.3 0 .2.2.5.2.8-3.5 1.4-7.2 2-10.9 2s-7.4-.7-10.9-2c0-.3.2-.6.2-.8 2.9-8.9 6.8-13.2 10.7-13.3zm-10 1.6c-2.2 3.3-3.9 6.8-4.9 10.6-2.1-1.2-4.1-2.6-5.9-4.2 3-2.9 6.8-5 10.8-6.4zm-14.1 9.5c2.3 2.3 5 4.2 8 5.6-.9 4.2-1.7 8.1-1.9 12.3H5.4C5.9 28 8.8 22 13.1 16.8zm-.6 40.3c-4.1-5-6.5-10.8-6.9-17.3h13.8c.1 4.2.6 8.3 1.5 12.4-2.8 1.5-5.5 3.4-7.9 5.6l-.5-.7zm3.7 3.9c1.8-1.6 3.8-3.1 5.9-4.3l.1.2c1.1 3.8 2.8 7.3 4.9 10.4-4-1.4-7.7-3.5-10.9-6.3zm21 8c-4.1.1-8.2-4.6-11-14.1 3.6-1.4 7.3-2 11-2s7.4.7 11 2c-2.8 9.5-6.9 14.2-11 14.1zm10.1-1.7c2.1-3.1 3.8-6.6 4.9-10.4l.1-.2c2.1 1.2 4.1 2.7 5.9 4.3-3.2 2.8-6.9 4.9-10.9 6.3zm14.6-10.2-.5.7c-2.4-2.2-5.1-4.1-7.9-5.6.9-4.1 1.4-8.2 1.5-12.4h13.8c-.4 6.5-2.8 12.3-6.9 17.3z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 1.4 KiB |
|
@ -1,228 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="18" y1="13" x2="18" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="13" style="fill:url(#SVGID_1_);" width="12" height="7"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="17.5" y1="14" x2="17.5" y2="19">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="14" style="fill:url(#SVGID_2_);" width="11" height="5"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="17" y1="15" x2="17" y2="18">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="15" style="fill:url(#SVGID_3_);" width="10" height="3"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="16.5" y1="0" x2="16.5" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="13" style="fill:url(#SVGID_4_);" width="7" height="24"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="16.5" y1="1" x2="16.5" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="14" y="1" style="fill:url(#SVGID_5_);" width="5" height="22"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="16.5" y1="2" x2="16.5" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="15" y="2" style="fill:url(#SVGID_6_);" width="3" height="20"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="18" y1="4" x2="18" y2="11">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="4" style="fill:url(#SVGID_7_);" width="12" height="7"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="17.5" y1="5" x2="17.5" y2="10">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="5" style="fill:url(#SVGID_8_);" width="11" height="5"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17" y1="6" x2="17" y2="9">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="12" y="6" style="fill:url(#SVGID_9_);" width="10" height="3"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="6" y1="4" x2="6" y2="11">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect y="4" style="fill:url(#SVGID_10_);" width="12" height="7"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="6.5" y1="5" x2="6.5" y2="10">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="5" style="fill:url(#SVGID_11_);" width="11" height="5"/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="7" y1="6" x2="7" y2="9">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="6" style="fill:url(#SVGID_12_);" width="10" height="3"/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="7.5" y1="0" x2="7.5" y2="24.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="4" style="fill:url(#SVGID_13_);" width="7" height="24"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="7.5" y1="1" x2="7.5" y2="23.0005">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="5" y="1" style="fill:url(#SVGID_14_);" width="5" height="22"/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="7.5" y1="2" x2="7.5" y2="22.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="6" y="2" style="fill:url(#SVGID_15_);" width="3" height="20"/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="6" y1="13" x2="6" y2="20.0005">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect y="13" style="fill:url(#SVGID_16_);" width="12" height="7"/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="6.5" y1="14" x2="6.5" y2="19">
|
||||
<stop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<stop offset="0.1044" style="stop-color:#FCFCFC"/>
|
||||
<stop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.5692" style="stop-color:#E8E8E8"/>
|
||||
<stop offset="0.8153" style="stop-color:#D7D7D7"/>
|
||||
<stop offset="1" style="stop-color:#D1D1D1"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.2222" style="stop-color:#F7F7F7"/>
|
||||
<a:midPointStop offset="0.3293" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="0.3545" style="stop-color:#FFFFFF"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#D1D1D1"/>
|
||||
</linearGradient>
|
||||
<rect x="1" y="14" style="fill:url(#SVGID_17_);" width="11" height="5"/>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="7" y1="15" x2="7" y2="18">
|
||||
<stop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<stop offset="4.191053e-02" style="stop-color:#8A8A8A"/>
|
||||
<stop offset="0.4613" style="stop-color:#626262"/>
|
||||
<stop offset="0.7952" style="stop-color:#4A4A4A"/>
|
||||
<stop offset="1" style="stop-color:#414141"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#8E8E8E"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#414141"/>
|
||||
</linearGradient>
|
||||
<rect x="2" y="15" style="fill:url(#SVGID_18_);" width="10" height="3"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M74.5 35.8c-.4-1.8-1.4-3.4-2.8-4.5l-.4-.3c-1-.5-2-.9-3.2-.9-.5 0-1.1.1-1.5.2-1.8.4-3.4 1.4-4.5 2.9-.4.5-.7.9-.9 1.5l-10.7.1c-.2-1.1-.5-1.9-1.1-2.9-.7-1.5-1.4-2.5-2.6-3.6l2.8-5c.4.1.7.1 1.1.1 3.9 0 6.7-3.5 6.7-7.4s-3.2-7.1-7.1-7.1-7.1 3.2-7.1 7.1c0 1.9.4 3.6 1.8 5l-2.7 4.7c-1.2-.4-2.3-.6-3.6-.6-1.4 0-2.6.3-3.9.7l-8.2-14.3c.4-.4.5-.9.8-1.3l.1-.2c.8-1.6.9-3.4.4-5.1S26.3 1.8 24.8 1l-.4-.2-.2-.1c-.9-.4-2-.7-2.9-.7-1.3 0-2.6.4-3.7 1.1-1.2.7-2 1.7-2.7 2.9-.8 1.7-1 3.6-.4 5.3s1.9 3.2 3.5 4c.9.4 1.9.7 2.8.7.5 0 1 .2 1.4.1l8.2 14.3c-1.7 1.4-2.9 3-3.6 5-.5 1.6-.8 2.9-.7 4.6l-9.8 2.7c-2.2-4.2-7.4-5.5-11.6-3.3S-1.2 44.8 1 49c2.2 4.2 7.4 5.9 11.6 3.7 2.7-1.4 4.8-3.9 4.9-6.9L27.7 43l.1.1c.7 1.5 1.1 2.3 2.3 3.3l-5.6 9.8c-.6-.2-1.3-.3-2-.3-4.6 0-7.9 3.9-7.9 8.6 0 .7.1 1.3.3 2 1.1 4.3 5.4 6.9 9.7 5.8.7-.2 1.4-.4 2-.9 1.2-.7 2.3-1.8 3-3.1.9-1.6 1.2-3.4 1.1-5.2-.3-1.7-.6-3.1-1.7-4.4l5.6-9.7c1.2.4 2.2.5 3.4.5h1.1l3.2 11.9c-1.2.9-2.2 2.1-2.7 3.6-.6 1.8-.5 3.7.3 5.3.8 1.7 2.2 2.9 3.9 3.6.7.3 1.4.4 2.2.4 1.1 0 2.1-.3 3-.7 1.7-.8 2.9-2.3 3.6-4 .2-.5.3-1 .4-1.5.2-1.3-.1-2.6-.6-3.7-.8-1.7-2.1-2.9-3.8-3.6-.6-.2-1.3-.3-1.9-.4l-3.2-11.9.2-.1c1.4-.7 2.7-1.7 3.7-2.8 1.1-1.2 1.9-2.5 2.4-4v-.1c.1-.4.2-.8.4-1.2v-.2l.1-.1 10.8-.1c.4 1.4 1.3 2.3 2.6 3.2 1.2.8 2.6 1.2 3.9 1.2 2.3 0 4.5-1.2 5.8-3.1 1-1.7 1.5-3.7 1.1-5.4zM47.2 64.7c.6.2 1.3.9 1.5 1.4.3.6.4 1.3.1 2-.3.6-.7 1.2-1.3 1.4-.4.2-.6.2-1 .3-.3 0-.6-.1-.9-.2-.6-.2-1.1-.7-1.4-1.2-.3-.6-.4-1.3-.1-2 .4-1.1 1.2-1.8 2.4-1.8.3 0 .4 0 .7.1zM45 39.5c-.5 1.8-1.8 3.2-3.4 4-2.1 1.1-4.6 1-6.6-.2-1.2-.7-2.2-1.8-2.7-3-.8-1.7-.9-3.6-.4-5.3.5-1.8 1.8-3.2 3.5-4 1-.4 2-.6 3.1-.6.7 0 1.5.1 2.2.4 1.7.5 3.1 1.8 3.9 3.4.9 1.6 1.1 3.5.4 5.3zm-32.6 5.7c0 2-1.6 3.6-3.6 3.6s-3.6-1.6-3.6-3.6 1.6-3.6 3.6-3.6 3.6 1.6 3.6 3.6zm37.9-31.1c1.1 0 1.9.9 1.9 1.9s-.9 1.9-1.9 1.9-1.9-.9-1.9-1.9.8-1.9 1.9-1.9z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 2.0 KiB |
|
@ -1,98 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
]>
|
||||
<svg version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" style="overflow:visible;enable-background:new 0 0 24 24;"
|
||||
xml:space="preserve" preserveAspectRatio="xMinYMid meet">
|
||||
<defs>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="7.9995" y1="7.9868" x2="7.9995" y2="24.001">
|
||||
<stop offset="0" style="stop-color:#F0A829"/>
|
||||
<stop offset="1" style="stop-color:#C7671A"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#F0A829"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#C7671A"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_1_);" d="M3,19.2l-3,1.6V24h16v-0.4c0-0.5-0.5-1.2-1-1.5l-6-3.1c-0.5-0.3-0.6-0.8-0.3-1.2
|
||||
c0,0,1.6-2,1.6-4.2C10.4,10.5,8.4,8,6,8c-2.4,0-4.4,2.6-4.4,5.7c0,2.1,1.6,4.2,1.6,4.2C3.6,18.3,3.5,18.9,3,19.2z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="7.7212" y1="8.9868" x2="7.7212" y2="23.001">
|
||||
<stop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<stop offset="1" style="stop-color:#F8BE27"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFEBA8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F8BE27"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_2_);" d="M1,23v-1.7L3.5,20c0.5-0.3,0.8-0.7,1-1.2c0.1-0.5,0-1.1-0.4-1.5c0,0-1.4-1.8-1.4-3.6
|
||||
C2.6,11.1,4.2,9,6,9s3.4,2.1,3.4,4.7c0,1.7-1.4,3.5-1.4,3.6c-0.3,0.4-0.5,1-0.4,1.5c0.1,0.5,0.5,1,1,1.2l5.9,3H1z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="6.1343" y1="9.9868" x2="6.1343" y2="22.001">
|
||||
<stop offset="0" style="stop-color:#FFC30F"/>
|
||||
<stop offset="1" style="stop-color:#F5AE0D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#FFC30F"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#F5AE0D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_3_);" d="M2,22L2,22l1.9-1.1c0.8-0.4,1.3-1.1,1.5-1.9c0.2-0.8,0-1.7-0.6-2.3c-0.3-0.4-1.2-1.8-1.2-3
|
||||
c0-2,1.1-3.7,2.4-3.7s2.4,1.7,2.4,3.7c0,1.1-0.9,2.5-1.2,3c-0.5,0.7-0.7,1.5-0.5,2.3c0.2,0.8,0.7,1.5,1.5,1.9l2.2,1.1H2z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="16" y1="7.9868" x2="16" y2="24.001">
|
||||
<stop offset="0" style="stop-color:#8D470D"/>
|
||||
<stop offset="1" style="stop-color:#7C3D09"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#8D470D"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7C3D09"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_4_);" d="M24,24v-3.4l-3-1.5c-0.5-0.3-0.6-0.8-0.3-1.2c0,0,1.6-2,1.6-4.2c0-3.2-1.9-5.7-4.4-5.7
|
||||
c-2.4,0-4.4,2.6-4.4,5.7c0,2.1,1.6,4.2,1.6,4.2c0.3,0.4,0.2,1-0.3,1.3l-6,3.2c-0.5,0.3-1,0.9-1,1.5V24H24z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="16.4121" y1="8.9868" x2="16.4121" y2="23.001">
|
||||
<stop offset="0" style="stop-color:#D58738"/>
|
||||
<stop offset="1" style="stop-color:#AB551F"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D58738"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#D58738"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#AB551F"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_5_);" d="M9.8,23l5.7-3c0.5-0.3,0.8-0.7,1-1.2c0.1-0.5,0-1.1-0.4-1.5c0,0-1.4-1.8-1.4-3.6
|
||||
c0-2.6,1.5-4.7,3.4-4.7s3.4,2.1,3.4,4.7c0,1.8-1.4,3.6-1.4,3.6c-0.3,0.4-0.5,1-0.4,1.5s0.5,1,1,1.2l2.4,1.2V23H9.8z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="17.9424" y1="9.9868" x2="17.9424" y2="22.001">
|
||||
<stop offset="0" style="stop-color:#D0813A"/>
|
||||
<stop offset="1" style="stop-color:#AF551D"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#D0813A"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#D0813A"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#AF551D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_6_);" d="M13.9,22l2.1-1.1c0.8-0.4,1.3-1.1,1.5-1.9c0.2-0.8,0-1.7-0.6-2.3c-0.3-0.4-1.2-1.8-1.2-3
|
||||
c0-2,1.1-3.7,2.4-3.7s2.4,1.7,2.4,3.7c0,1.2-0.9,2.5-1.2,3c-0.5,0.7-0.7,1.5-0.6,2.3c0.2,0.8,0.7,1.5,1.5,1.9l1.9,1V22H13.9z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="7.4507" y1="0" x2="7.4507" y2="12.9043">
|
||||
<stop offset="0" style="stop-color:#76A1F0"/>
|
||||
<stop offset="1" style="stop-color:#6B90D5"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#76A1F0"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#6B90D5"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_7_);" d="M12.5,10.4c1.4-1.1,2.4-2.6,2.4-4.3c0.1-3.3-3.2-6-7.3-6.1C3.4-0.1,0.1,2.5,0,5.8
|
||||
c-0.1,3.3,3.2,6,7.3,6.1c1,0,2-0.1,2.9-0.4c0.8,1,2.8,1.4,2.8,1.4S12.2,11.7,12.5,10.4z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="7.4507" y1="1" x2="7.4507" y2="11.2168">
|
||||
<stop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<stop offset="1" style="stop-color:#82B4FB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="0.5" style="stop-color:#BBE0F7"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#82B4FB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_8_);" d="M11.4,11.2c-0.2-0.1-0.3-0.2-0.4-0.3l-0.4-0.6l-0.7,0.2c-0.8,0.2-1.6,0.4-2.4,0.4l-0.1,0
|
||||
C3.8,10.8,1,8.6,1,5.8C1,3.2,3.9,1,7.4,1l0.2,0c1.8,0,3.4,0.6,4.6,1.6c1.1,1,1.8,2.2,1.7,3.5c0,1.3-0.7,2.6-2,3.5l-0.3,0.2l-0.1,0.4
|
||||
C11.4,10.5,11.4,10.9,11.4,11.2z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="7.4507" y1="2" x2="7.4507" y2="9.9097">
|
||||
<stop offset="0" style="stop-color:#95BFF8"/>
|
||||
<stop offset="0.5569" style="stop-color:#84ADEF"/>
|
||||
<stop offset="1" style="stop-color:#7CA4EB"/>
|
||||
<a:midPointStop offset="0" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="0.4" style="stop-color:#95BFF8"/>
|
||||
<a:midPointStop offset="1" style="stop-color:#7CA4EB"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_9_);" d="M7.4,9.9C4.4,9.9,2,8,2,5.9C2,3.8,4.5,2,7.4,2l0.1,0c1.5,0,2.9,0.5,4,1.4
|
||||
c0.9,0.8,1.4,1.7,1.4,2.7c0,1-0.6,2-1.6,2.7l-0.6,0.4l0,0.1L9.6,9.6C9,9.8,8.2,9.9,7.5,9.9L7.4,9.9z"/>
|
||||
<path style="fill:#FFFFFF;" d="M5.5,4.5h1.9V6c0,0.5-0.1,1-0.3,1.3C6.9,7.6,6.5,7.9,5.9,8.1L5.5,7.3C5.9,7.2,6.1,7,6.2,6.9
|
||||
c0.1-0.2,0.2-0.3,0.2-0.6H5.5V4.5z M7.7,4.5h1.9V6c0,0.5-0.1,1-0.3,1.3C9.1,7.6,8.7,7.9,8.2,8.1L7.7,7.3C8.1,7.2,8.3,7,8.4,6.9
|
||||
c0.1-0.2,0.2-0.3,0.2-0.6H7.7V4.5z"/>
|
||||
</svg>
|
||||
<svg width="74.4" height="74.4" xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 74.4 74.4" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><path d="M67.6 56.1c-4.8-3.1-10.5-4.6-16.2-4.5-4.9-.1-9.8 1.1-14.2 3.3-4.4-2.2-9.3-3.4-14.2-3.3-5.7-.1-11.4 1.4-16.2 4.5C2.4 59 .1 63 .1 67.3v4.2c0 1.5 1.1 2.7 2.7 2.8h69c1.6-.1 2.7-1.3 2.7-2.8v-4.2C74.4 63 72 59 67.6 56.1zM40.7 69.2H5.5v-1.5c.3-5.6 6.2-8.5 10.7-9.9 6.5-1.9 13.4-.9 19.5 2.4 2.6 1.5 5 4.2 5 7.4v1.6zm28.4 0h-23c.3-4-1-7.8-3.6-10.7 7-2.7 15-2 21.6 1.7 2.6 1.5 5 4.2 5 7.4v1.6zM22.9 48.5c6.5 0 11.7-5.1 11.7-11.6-.6-15.3-22.9-15.3-23.6 0 0 6.3 5.3 11.6 11.9 11.6zm-6.6-11.6c.1-3.5 3.2-6.2 6.8-6.1 3.4.1 6.1 2.8 6.3 6.1-.4 8.4-12.8 8.4-13.1 0zM50.8 48.5c6.5 0 11.7-5.1 11.7-11.6-.6-15.3-22.9-15.3-23.6 0 .1 6.3 5.3 11.6 11.9 11.6zm0-17.9c3.6 0 6.5 2.8 6.5 6.3-.3 8.4-12.7 8.4-12.9 0 0-3.5 2.8-6.3 6.4-6.3zM20.5.2c1.5.5 2.2 2.2 1.7 3.7l-1.6 3.8c10.7-4.2 22.8-4.2 33.5.2L52.4 4c-.6-1.4.1-3.1 1.6-3.7 1.5-.7 3.1.1 3.8 1.5l4.1 10c.6 1.4-.1 3.1-1.6 3.7l-10.3 4c-1.5.5-3.1-.2-3.7-1.6s.1-3.1 1.6-3.6l3.5-1.7C42.3 9 32.2 8.9 23 12.5l3.7 1.7c1.5.7 2 2.4 1.3 3.8-.7 1.3-2.1 2-3.5 1.4l-10.3-4c-1.5-.5-2.2-2.2-1.7-3.6l4.1-10C17.3.3 19-.4 20.5.2z"/></svg>
|
||||
|
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="14.005" y1="0" x2="14.005" y2="20"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#a)" d="M16.3 0H6v20h16V6.6z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="14.005" y1="1" x2="14.005" y2="19"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#b)" d="M7 19V1h8.8L21 6.9V19z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="14.005" y1="2" x2="14.005" y2="18"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#c)" d="M8 18V2h7.4L20 7.3V18z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="18.31" y1="0" x2="18.31" y2="7.785"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#d)" d="M14.8 7.5s5.2-1.3 7.2.3V6.6L16.2 0h-1.6c2.2 3 .2 7.5.2 7.5z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="16.3" y1="6.162" x2="18.591" y2="3.871"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset=".518" style="stop-color:#e5f3fc"/><stop offset=".705" style="stop-color:#def0fb"/><stop offset=".837" style="stop-color:#d3ebfa"/><stop offset=".872" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bdd8f0"/></linearGradient><path style="fill:url(#e)" d="M16.3 6.2c.3-1.2.5-2.9.1-4.4l4 4.4c-.4-.1-1-.2-1.6-.2-.9 0-1.8.1-2.5.2z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="11.967" y1="12.167" x2="11.967" y2="23.885"><stop offset="0" style="stop-color:#dda976"/><stop offset="1" style="stop-color:#9f6b37"/></linearGradient><path style="fill:url(#f)" d="M10 18.9c-.3-2.2 9.4.5 9.3-1.4 0-.8-8.4-3.4-11.4-4.1-.9-.2-6.5-1.2-6.5-1.2-.2.1-1.3 3.3-1.4 5.2.5.3 7.3 6.7 10 6.5 2.7-.2 14.2-3.6 13.9-4.7-.6-2.1-13.6 2.1-13.9-.3z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="11.489" y1="13.28" x2="11.489" y2="22.934"><stop offset="0" style="stop-color:#fda"/><stop offset="1" style="stop-color:#e3b17e"/></linearGradient><path style="fill:url(#g)" d="M1.7 17.4c-.3-.2-.5-.4-.7-.5.1-1.2.6-2.8.9-3.6 1.8.3 5.1.9 5.7 1 2.6.6 9.4 2.3 9.7 3 .5 1.1-8.3-1.9-8.1 1.7.2 3.5 12.4-.6 12.7.5.2.7-10.1 3.6-12 3.5-2-.2-6.6-4.2-8.2-5.6z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="7.593" y1="14.414" x2="7.593" y2="21.934"><stop offset="0" style="stop-color:#f1c592"/><stop offset="1" style="stop-color:#e1af7c"/></linearGradient><path style="fill:url(#h)" d="M10.1 21.9c-.8-.1-2.8-1-7.6-5.2l-.3-.3c.1-.7.3-1.4.5-2.1 2.1.4 4.3.8 4.7.9 1.5.4 2.7.7 3.8.9-1 .1-1.8.4-2.3 1-.3.3-.7.9-.6 1.9.1 1.1.8 2.4 4 2.4h.9c-1.4.3-2.5.5-3.1.5z"/></svg>
|
After Width: | Height: | Size: 3.0 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 30 30" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-58.947" y1="84.186" x2="58.948" y2="-84.185"><stop offset="0" style="stop-color:#283274"/><stop offset=".709" style="stop-color:#293275"/><stop offset=".967" style="stop-color:#273f87"/></linearGradient><symbol id="c" viewBox="-107.423 -107.423 214.847 214.846"><path fill="url(#a)" stroke="#5D6AA4" stroke-width="9.319" d="M102.765 0c0-56.755-46.009-102.764-102.765-102.764-56.754 0-102.764 46.009-102.764 102.764S-56.754 102.764 0 102.764c56.756 0 102.765-46.009 102.765-102.764z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-75.019" y1="112.804" x2="-15.853" y2="28.306" gradientTransform="translate(18.495 -31.951)"><stop offset="0" style="stop-color:#bec7e5"/><stop offset=".096" style="stop-color:#b5bede"/><stop offset=".252" style="stop-color:#9ca5cc"/><stop offset=".451" style="stop-color:#747dae"/><stop offset=".681" style="stop-color:#3d4684"/><stop offset=".758" style="stop-color:#293275"/></linearGradient><path fill="url(#b)" d="M.282 98.502C26.323 98.31 54.293 87.893 74.49 63.84 73.631 43.207 36.703 22.057 5.886-1.229c-25.857-19.538-65.427-37.86-92.487-45.059-25.73 49.263-7.016 96.619 25.25 123.238C-46.256 90.16-23.508 98.679.282 98.502z"/><path d="M55.602-25.561c0-8.678-3.055-16.072-9.16-22.179-6.11-6.109-13.501-9.16-22.179-9.16h-37.367c-8.679 0-16.073 3.051-22.179 9.16-6.11 6.106-9.162 13.501-9.162 22.179v93.779c6.656 0 12.336-3.254 17.046-9.764 4.708-6.509 7.062-14.344 7.062-23.505v-60.511c0-4.821 2.411-7.231 7.232-7.231h37.367c4.821 0 7.231 2.41 7.231 7.231v28.69c0 4.66-2.41 7.07-7.231 7.232H17.03c-9.323.324-17.2 2.757-23.626 7.304-6.43 4.543-9.643 10.145-9.643 16.805h40.501c8.678 0 16.068-3.056 22.179-9.161 6.105-6.11 9.16-13.5 9.16-22.18v-28.689z"/><path fill="#FFF" d="M55.602-25.561c0-8.678-3.055-16.072-9.16-22.179-6.11-6.109-13.501-9.16-22.179-9.16h-37.367c-8.679 0-16.073 3.051-22.179 9.16-6.11 6.106-9.162 13.501-9.162 22.179v93.779c6.656 0 12.336-3.254 17.046-9.764 4.708-6.509 7.062-14.344 7.062-23.505v-60.511c0-4.821 2.411-7.231 7.232-7.231h37.367c4.821 0 7.231 2.41 7.231 7.231v28.69c0 4.66-2.41 7.07-7.231 7.232H17.03c-9.323.324-17.2 2.757-23.626 7.304-6.43 4.543-9.643 10.145-9.643 16.805h40.501c8.678 0 16.068-3.056 22.179-9.161 6.105-6.11 9.16-13.5 9.16-22.18v-28.689z" opacity=".46"/><path fill="#FFF" d="M53.829-26.788c0-8.678-3.055-16.072-9.16-22.179-6.11-6.109-13.501-9.16-22.18-9.16h-37.367c-8.679 0-16.073 3.051-22.179 9.16-6.109 6.106-9.16 13.501-9.16 22.179v93.779c6.655 0 12.336-3.255 17.045-9.764 4.708-6.509 7.062-14.345 7.062-23.505v-60.511c0-4.821 2.41-7.231 7.232-7.231h37.367c4.821 0 7.232 2.41 7.232 7.231v28.69c0 4.66-2.411 7.07-7.232 7.232h-7.232c-9.322.324-17.199 2.757-23.625 7.305-6.43 4.542-9.644 10.144-9.644 16.803h40.501c8.679 0 16.069-3.055 22.18-9.16 6.105-6.109 9.16-13.5 9.16-22.179v-28.69z"/></symbol><use xlink:href="#c" width="214.847" height="214.846" x="-107.423" y="-107.423" transform="matrix(.1376 0 0 -.1376 15 15)" overflow="visible"/></svg>
|
After Width: | Height: | Size: 3.1 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="12.001" y1="0" x2="12.001" y2="24"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#a)" d="M4 0h16v24H4z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="12.001" y1="1" x2="12.001" y2="23"><stop offset="0" style="stop-color:#d9f991"/><stop offset=".239" style="stop-color:#d7f88d"/><stop offset=".45" style="stop-color:#d1f383"/><stop offset=".651" style="stop-color:#c6ec71"/><stop offset=".844" style="stop-color:#b7e257"/><stop offset="1" style="stop-color:#a8d73d"/></linearGradient><path style="fill:url(#b)" d="M5 1h14v22H5z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="12.001" y1="2" x2="12.001" y2="22"><stop offset="0" style="stop-color:#b3e810"/><stop offset="1" style="stop-color:#90c60d"/></linearGradient><path style="fill:url(#c)" d="M6 2h12v20H6z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="12.001" y1="4" x2="12.001" y2="9"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#d)" d="M7 4v5h10V4H7zm9 4H8V5h8v3z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="2.5" y1="0" x2="2.5" y2="24"><stop offset="0" style="stop-color:#656565"/><stop offset=".013" style="stop-color:#646464"/><stop offset=".445" style="stop-color:#3c3c3c"/><stop offset=".789" style="stop-color:#242424"/><stop offset="1" style="stop-color:#1b1b1b"/></linearGradient><path style="fill:url(#e)" d="M4 0H1C.5 0 0 .5 0 1v22c0 .5.5 1 1 1h4V0H4z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="2.5" y1="1" x2="2.5" y2="23"><stop offset="0" style="stop-color:#8e8e8e"/><stop offset=".042" style="stop-color:#8a8a8a"/><stop offset=".461" style="stop-color:#626262"/><stop offset=".795" style="stop-color:#4a4a4a"/><stop offset="1" style="stop-color:#414141"/></linearGradient><path style="fill:url(#f)" d="M1 1h3v22H1z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="2.5" y1="2" x2="2.5" y2="22"><stop offset="0" style="stop-color:#7c7c7c"/><stop offset=".39" style="stop-color:#5c5c5c"/><stop offset=".768" style="stop-color:#444"/><stop offset="1" style="stop-color:#3b3b3b"/></linearGradient><path style="fill:url(#g)" d="M2 2h1v20H2z"/></svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-0.1 -0.1 24 24" style="overflow:visible;enable-background:new -.1 -.1 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="10.943" y1="0" x2="10.943" y2="19.788"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#a)" d="M10.8 0C4.7.1-.1 4.3 0 9.3c0 2.6 1.5 5 3.7 6.6 0 .1 0 .2.1.3.3 2-.9 3.6-.9 3.6s2.2-.5 3.5-1.5c.2-.2.5-.4.7-.7 1.3.4 2.6.6 4.1.6 6-.1 10.9-4.3 10.8-9.3-.2-5-5.2-9-11.2-8.9z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="10.943" y1="1" x2="10.943" y2="18.129"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#b)" d="M4.6 18.1c.1-.6.2-1.3.1-2.1 0-.1 0-.2-.1-.3l-.1-.4-.3-.3C2.2 13.6 1 11.5 1 9.3.9 4.8 5.3 1.1 10.8 1h.2c5.4 0 9.8 3.5 9.9 7.9.1 4.5-4.3 8.2-9.8 8.3h-.2c-1.2 0-2.4-.2-3.5-.5l-.6-.2-.4.5c-.2.2-.4.4-.5.6-.5.1-.9.3-1.3.5z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="10.943" y1="2" x2="10.943" y2="16.163"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#c)" d="M10.8 16.2c-1.1 0-2.2-.2-3.2-.5l-1.3-.4-.6.7v-.1c0-.1 0-.3-.1-.4l-.1-.7-.6-.6C3 13 2 11.2 2 9.3c-.1-4 3.9-7.2 8.8-7.3h.2c4.8 0 8.8 3.1 8.8 6.9.1 3.9-3.9 7.2-8.8 7.2l-.2.1z"/><path style="fill:#fff" d="M16.6 9.6c0 .7-.6 1.3-1.2 1.3-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.2 1.3-1.2.6 0 1.2.5 1.2 1.2zm-5.1-1.2c-.7 0-1.2.6-1.2 1.2 0 .7.6 1.3 1.2 1.3.7 0 1.3-.6 1.3-1.3-.1-.7-.6-1.2-1.3-1.2zm-4 0c-.7 0-1.3.6-1.3 1.2 0 .7.6 1.3 1.3 1.3s1.3-.6 1.3-1.3c0-.7-.6-1.2-1.3-1.2z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="14.025" y1="6.667" x2="14.025" y2="23.84"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#d)" d="M20.7 20.5c1.9-1.4 3.2-3.4 3.2-5.7.1-4.4-4.3-8-9.8-8.1-5.4-.1-9.9 3.3-10 7.7-.1 4.4 4.3 8 9.8 8.1a16 16 0 0 0 3.9-.5c1 1.3 3.7 1.9 3.7 1.9s-1.2-1.7-.8-3.4z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="14.144" y1="7.667" x2="14.144" y2="22.194"><stop offset="0" style="stop-color:#ffeba8"/><stop offset="1" style="stop-color:#f8be27"/></linearGradient><path style="fill:url(#e)" d="M19.9 22.2c-.5-.2-1-.5-1.7-1.4-.4.1-1.7.7-4.2.7-5 0-8.9-3.3-8.8-7.1.1-3.7 4-6.8 9-6.8 2.3 0 4.7.8 6.3 2.2 1.6 1.3 2.5 3.1 2.4 4.9 0 1.9-1 3.7-3.1 5.1-.1.9-.1 1.8.1 2.4z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="14.023" y1="8.669" x2="14.023" y2="20.518"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#f)" d="M13.9 20.5c-6.1-.2-7.9-4.2-7.8-6.1.2-3.2 3.3-5.8 8-5.8 2.1 0 4.3.8 5.7 2 1.4 1.1 2.1 2.6 2.1 4.1-.1 2.9-2.9 4.5-2.9 4.5s-.2.7-.2.9l-.4-.5s-1.9 1-4.5.9z"/><path style="fill:#fff" d="M19.4 14.9c0 .7-.6 1.3-1.2 1.3-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.2 1.3-1.2.6 0 1.2.5 1.2 1.2zm-5.1-1.2c-.7 0-1.2.6-1.2 1.2 0 .7.6 1.3 1.2 1.3.7 0 1.3-.6 1.3-1.3-.1-.7-.6-1.2-1.3-1.2zm-4 0c-.7 0-1.3.6-1.3 1.2 0 .7.6 1.3 1.3 1.3s1.3-.6 1.3-1.3c0-.7-.6-1.2-1.3-1.2z"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-4.2 -0.3 24 24" style="overflow:visible;enable-background:new -4.2 -.3 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="7.824" y1="0" x2="7.824" y2="23.326"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#a)" d="M2.4 8.4C1.1 8.4 0 7.5 0 6.1 0 3.3 2.8 0 7.7 0c3.3 0 7.9 2.2 7.9 6 0 2-1.2 3.5-3.6 4.4-3.3 1.2-1.4 3.7-4.5 3.7-1.3 0-2.1-.8-2.1-2.1 0-2.7 2.8-4.2 2.8-6.9 0-.7-.3-1.6-1.1-1.6-.9 0-1 .9-1 1.5-.3 2.1-1.6 3.4-3.7 3.4zm4.9 14.9c-2 0-3.6-1.6-3.6-3.6s1.6-3.6 3.6-3.6 3.6 1.6 3.6 3.6c-.1 2-1.7 3.6-3.6 3.6z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="7.824" y1="1" x2="7.824" y2="22.326"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#b)" d="M7.3 22.3c-1.4 0-2.6-1.1-2.6-2.6 0-1.4 1.1-2.6 2.6-2.6s2.6 1.1 2.6 2.6c-.1 1.5-1.2 2.6-2.6 2.6zm.3-9.2c-.8 0-1.1-.4-1.1-1.1 0-1.1.6-1.9 1.2-2.9.7-1.1 1.5-2.3 1.5-4 0-1.3-.7-2.6-2.1-2.6-1.8 0-2 1.7-2 2.4-.2 1.1-.8 2.5-2.7 2.5-.8 0-1.4-.5-1.4-1.3C1 4 3.1 1 7.7 1c2.9 0 6.9 1.9 6.9 5 0 1.6-1 2.7-2.9 3.4-2 .8-2.5 2-2.9 2.8-.3.8-.3.9-1.2.9z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="7.824" y1="2.099" x2="7.824" y2="21.326"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#c)" d="M7.3 21.3c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6c.9 0 1.6.7 1.6 1.6s-.7 1.6-1.6 1.6zm.3-9.2h-.1V12c0-.8.5-1.5 1-2.3.8-1.2 1.7-2.6 1.7-4.6 0-1.3-.5-2.3-1.3-3 2.2.4 4.8 1.8 4.8 3.9 0 .4 0 1.6-2.3 2.5-2.4.9-3.1 2.5-3.5 3.4 0 .1-.1.2-.1.2h-.2zM2.4 6.4c-.4 0-.4-.2-.4-.3 0-1.1.9-2.7 2.7-3.5-.3.5-.6 1.2-.7 2.2-.1 1.4-.9 1.6-1.6 1.6z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-2 -1 24 24" style="overflow:visible;enable-background:new -2 -1 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><radialGradient id="a" cx="10" cy="19.5" r="7.492" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></radialGradient><path style="fill:url(#a)" d="M20 21c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v3z"/><radialGradient id="b" cx="10" cy="19.5" r="6.605" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></radialGradient><path style="fill:url(#b)" d="M2 22c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h16c.6 0 1 .4 1 1v3c0 .6-.4 1-1 1H2z"/><radialGradient id="c" cx="10" cy="19.5" r="5.755" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></radialGradient><path style="fill:url(#c)" d="M2 18h16v3H2z"/><radialGradient id="d" cx="10" cy="11.5" r="7.492" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></radialGradient><path style="fill:url(#d)" d="M20 13c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v3z"/><radialGradient id="e" cx="10" cy="11.5" r="6.605" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></radialGradient><path style="fill:url(#e)" d="M2 14c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h16c.6 0 1 .4 1 1v3c0 .6-.4 1-1 1H2z"/><radialGradient id="f" cx="10" cy="11.5" r="5.755" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></radialGradient><path style="fill:url(#f)" d="M2 10h16v3H2z"/><radialGradient id="g" cx="10" cy="3.5" r="7.492" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></radialGradient><path style="fill:url(#g)" d="M20 5c0 1.1-.9 2-2 2H2C.9 7 0 6.1 0 5V2C0 .9.9 0 2 0h16c1.1 0 2 .9 2 2v3z"/><radialGradient id="h" cx="10" cy="3.5" r="6.605" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></radialGradient><path style="fill:url(#h)" d="M2 6c-.6 0-1-.4-1-1V2c0-.6.4-1 1-1h16c.6 0 1 .4 1 1v3c0 .6-.4 1-1 1H2z"/><radialGradient id="i" cx="10" cy="3.5" r="5.755" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></radialGradient><path style="fill:url(#i)" d="M2 2h16v3H2z"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="11.999" y1="0" x2="11.999" y2="24.001"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#a)" d="M21.1 12.3c1 0 1.7.9 1.7.9.3.4.7.8.9.8s.3-.5.3-1V8c0-.5-.5-1-1-1h-3c-.5 0-1-.1-1-.3 0-.2.3-.7.7-1.1 0 0 .8-.9.8-2.1C20.5 1.6 18.9 0 17 0s-3.5 1.6-3.5 3.5c0 1.2.8 2.1.8 2.1.4.4.7.9.7 1.1 0 .2-.5.3-1 .3H8c-.5 0-1 .5-1 1v6c0 .5-.1 1-.3 1s-.7-.3-1.1-.7c0 0-.9-.8-2.1-.8C1.6 13.5 0 15.1 0 17s1.6 3.5 3.5 3.5c1.2 0 2.1-.8 2.1-.8.4-.4.9-.7 1.1-.7s.3.5.3 1v3c0 .5.5 1 1 1h4c.5 0 1-.1 1-.3s-.3-.6-.7-1c0 0-.6-.6-.6-1.6 0-1.4 1.3-2.5 2.7-2.5 1.4 0 2.4 1.1 2.4 2.5 0 1-.9 1.7-.9 1.7-.4.3-.8.7-.8.9s.5.3 1 .3h7c.5 0 1-.5 1-1v-6c0-.5-.1-1-.3-1s-.6.3-1 .7c0 0-.6.6-1.6.6-1.4 0-2.5-1.3-2.5-2.7s1-2.3 2.4-2.3z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="11.999" y1="1" x2="11.999" y2="23.001"><stop offset="0" style="stop-color:#d9f991"/><stop offset=".239" style="stop-color:#d7f88d"/><stop offset=".45" style="stop-color:#d1f383"/><stop offset=".651" style="stop-color:#c6ec71"/><stop offset=".844" style="stop-color:#b7e257"/><stop offset="1" style="stop-color:#a8d73d"/></linearGradient><path style="fill:url(#b)" d="M17 23c.4-.4.7-1.1.7-1.9 0-2-1.5-3.5-3.4-3.5-2 0-3.7 1.6-3.7 3.5 0 .9.3 1.5.6 1.9H8v-3c0-1.5-.7-2-1.3-2-.6 0-1.3.6-1.7.9 0 0-.7.6-1.5.6C2.1 19.5 1 18.4 1 17s1.1-2.5 2.5-2.5c.8 0 1.4.6 1.5.6.3.3 1.1.9 1.7.9.6 0 1.3-.5 1.3-2V8h6c1.5 0 2-.7 2-1.3 0-.6-.5-1.3-.9-1.7 0 0-.6-.7-.6-1.5C14.5 2.1 15.6 1 17 1s2.5 1.1 2.5 2.5c0 .8-.6 1.5-.6 1.5-.4.4-.9 1.1-.9 1.7 0 .6.5 1.3 2 1.3h3v4c-.4-.4-1.1-.7-1.9-.7-2 0-3.5 1.5-3.5 3.4 0 2 1.6 3.7 3.5 3.7.9 0 1.5-.3 1.9-.6V23h-6z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="11.999" y1="2" x2="11.999" y2="22.001"><stop offset="0" style="stop-color:#b3e810"/><stop offset="1" style="stop-color:#90c60d"/></linearGradient><path style="fill:url(#c)" d="M18.6 22c.1-.3.1-.6.1-.9 0-2.5-1.9-4.5-4.4-4.5-2.5 0-4.7 2.1-4.7 4.5 0 .3 0 .6.1.9H9v-2c0-2.1-1.2-3-2.3-3 1.1 0 2.3-.9 2.3-3V9h5c2.1 0 3-1.2 3-2.3 0-.7-.4-1.5-1.2-2.4-.1-.1-.3-.5-.3-.8 0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 .3-.3.7-.3.8-.8.9-1.2 1.7-1.2 2.4 0 1.1.9 2.3 3 2.3h2v1.4c-.3-.1-.6-.1-.9-.1-2.5 0-4.5 1.9-4.5 4.4 0 2.5 2.1 4.7 4.5 4.7.3 0 .6 0 .9-.1V22h-3.4zM3.5 18.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5c.3 0 .7.3.8.3.9.8 1.7 1.2 2.4 1.2-.7 0-1.5.4-2.4 1.2-.1.1-.5.3-.8.3z"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="7.768" y1="10.223" x2="7.768" y2="23.98"><stop offset="0" style="stop-color:#db6d17"/><stop offset="1" style="stop-color:#bf3b08"/></linearGradient><path style="fill:url(#a)" d="M10.9 19.1c-1.1-.8-1.7-1.1-2-2.4-.2-1.1-1.3-6.4-1.3-6.4l-4.9 1s.9 4.6 1.8 9 1 4.3 6.8 3.1c2.4-.6 1.5-2.9-.4-4.3z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="7.857" y1="11.399" x2="7.857" y2="22.98"><stop offset="0" style="stop-color:#f6a55e"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#b)" d="M7 23c-.8 0-.9 0-1.5-3l-1.6-8 2.9-.6L8 16.9c.3 1.6 1 2.1 1.9 2.7l.4.3c1.1.8 1.5 1.7 1.4 2.1 0 .2-.5.3-.6.3l-.5.1c-1.6.3-2.8.6-3.6.6z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="7.737" y1="12.576" x2="7.737" y2="21.893"><stop offset="0" style="stop-color:#f17219"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#c)" d="M7.7 21.9c-.7 0-.7 0-1.2-2.1l-1.4-7 1-.2.9 4.5c.4 1.9 1.4 2.7 2.3 3.3l.4.3c1.1.9.9.7-2 1.2z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="11.001" y1="0" x2="11.001" y2="19.004"><stop offset="0" style="stop-color:#c3c3c3"/><stop offset="1" style="stop-color:#acacac"/></linearGradient><path style="fill:url(#d)" d="M12.5 5H4.6C2.1 5 0 7.2 0 9.5S2.1 14 4.6 14h7.6s5.7 0 9.8 5V0c-3.3 4.8-9.5 5-9.5 5z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="11.001" y1="2.608" x2="11.001" y2="16.534"><stop offset="0" style="stop-color:#e9e9e9"/><stop offset="1" style="stop-color:#c4c4c4"/></linearGradient><path style="fill:url(#e)" d="M21 16.5C17 13 12.5 13 12.2 13H4.6C2.7 13 1 11.4 1 9.5S2.7 6 4.6 6h7.8c.3 0 4.9-.2 8.5-3.4v13.9z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="11.001" y1="4.599" x2="11.001" y2="14.527"><stop offset="0" style="stop-color:#f7f7f7"/><stop offset=".104" style="stop-color:#fcfcfc"/><stop offset=".329" style="stop-color:#fff"/><stop offset=".569" style="stop-color:#e8e8e8"/><stop offset=".815" style="stop-color:#d7d7d7"/><stop offset="1" style="stop-color:#d1d1d1"/></linearGradient><path style="fill:url(#f)" d="M20 14.5C16.2 12 12.4 12 12.2 12H4.6C3.3 12 2 10.8 2 9.5S3.3 7 4.6 7h7.8c.2 0 4-.2 7.5-2.4v9.9z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="5.501" y1="5.002" x2="5.501" y2="14.002"><stop offset="0" style="stop-color:#db6d17"/><stop offset="1" style="stop-color:#bf3b08"/></linearGradient><path style="fill:url(#g)" d="M11 5H4.6C2.1 5 0 7.2 0 9.5S2.1 14 4.6 14H11V5z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="6.001" y1="6.002" x2="6.001" y2="13.002"><stop offset="0" style="stop-color:#f6a55e"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#h)" d="M11 6H4.6C2.7 6 1 7.6 1 9.5S2.7 13 4.6 13H11V6z"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="6.501" y1="7.002" x2="6.501" y2="12.002"><stop offset=".22" style="stop-color:#f6a55e"/><stop offset=".508" style="stop-color:#f28c3f"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#i)" d="M11 7H4.6C3.3 7 2 8.2 2 9.5S3.3 12 4.6 12H11V7z"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="22.002" y1=".001" x2="22.002" y2="19.002"><stop offset="0" style="stop-color:#db6d17"/><stop offset="1" style="stop-color:#bf3b08"/></linearGradient><path style="fill:url(#j)" d="M20 17c0 1.1.9 2 2 2s2-.9 2-2V2c0-1.1-.9-2-2-2s-2 .9-2 2v15z"/><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="22.002" y1="1.002" x2="22.002" y2="18.002"><stop offset="0" style="stop-color:#f6a55e"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#k)" d="M22 18c-.6 0-1-.4-1-1V2c0-.6.4-1 1-1s1 .4 1 1v15c0 .6-.4 1-1 1z"/><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="22.002" y1="1.002" x2="22.002" y2="18.002"><stop offset="0" style="stop-color:#f17219"/><stop offset=".09" style="stop-color:#f38a39"/><stop offset=".183" style="stop-color:#f59e54"/><stop offset=".238" style="stop-color:#f6a55e"/><stop offset=".246" style="stop-color:#f5a35c"/><stop offset=".381" style="stop-color:#ec8740"/><stop offset=".515" style="stop-color:#e5722c"/><stop offset=".649" style="stop-color:#e06620"/><stop offset=".78" style="stop-color:#df621c"/><stop offset="1" style="stop-color:#d64701"/></linearGradient><path style="fill:url(#l)" d="M22 18c-.6 0-1-.4-1-1V2c0-.6.4-1 1-1s1 .4 1 1v15c0 .6-.4 1-1 1z"/></svg>
|
After Width: | Height: | Size: 4.5 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-0.1 -2 24 24" style="overflow:visible;enable-background:new -.1 -2 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="11.935" y1="0" x2="11.935" y2="20"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#a)" d="M21.9 19c0 .5-.5 1-1 1h-18c-.5 0-1-.5-1-1V1.1c0-.5.5-1.1 1-1.1h4c.5 0 1.4.3 1.8.6l.9.7c.5.4 1.3.7 1.8.7h9.5c.5 0 1 .5 1 1v16z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="11.935" y1=".989" x2="11.935" y2="19"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#b)" d="M2.9 19V1.1L3 1h3.9c.3 0 .9.2 1.2.4l.9.8c.7.4 1.7.8 2.4.8h9.5v16h-18z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="11.935" y1="1.992" x2="11.935" y2="18"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#c)" d="M3.9 18V2h3c.1 0 .5.1.6.2l.9.8c.8.6 2.1 1 3 1h8.5v14h-16z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="11.936" y1="5" x2="11.936" y2="20"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#d)" d="M23 19c0 .5-.5 1-1.1 1h-20c-.5 0-1-.5-1.1-1L0 6c0-.5.4-1 .9-1h22c.5 0 1 .5.9 1L23 19z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="11.967" y1="5.954" x2="11.967" y2="19"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#e)" d="m1.9 19-.1-.1L1 6h21.9L22 18.9s0 .1-.1.1h-20z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="11.966" y1="6.957" x2="11.966" y2="18"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#f)" d="M2.8 18 2.1 7h19.8l-.8 11z"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="10.499" y1="0" x2="10.499" y2="19.431"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#a)" d="M19 0H2C.9 0 0 .9 0 2v11.3C0 14.4.9 15 2 15v4.4L6.1 15H19c1.1 0 2-.5 2-1.6V2c0-1.1-1-2-2-2z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="10.499" y1=".953" x2="10.499" y2="16.838"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#b)" d="M3 14H2c-.4 0-1-.1-1-.6V2c0-.6.5-1 1-1h17c.5 0 1 .5 1 1v11.3c0 .6-.8.6-1 .6H5.7L3 16.8V14z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="10.498" y1="1.978" x2="10.498" y2="14.314"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#c)" d="M4 13H2V2h17v11H5.2L4 14.3V13z"/><path style="fill:#fff" d="M17 11H4v-1h13v1zm0-3H4v1h13V8zm0-2H4v1h13V6zm0-2H4v1h13V4z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="15" y1="7.896" x2="15" y2="23.897"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#d)" d="M22 7.9H8c-1.1 0-2 .7-2 1.8v9c0 1.1.9 2 2 2v3.2l3.1-3H22c1.1 0 2-1.1 2-2.2v-9c0-1.1-.9-1.8-2-1.8z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="15" y1="8.896" x2="15" y2="21.391"><stop offset="0" style="stop-color:#d9f991"/><stop offset=".239" style="stop-color:#d7f88d"/><stop offset=".45" style="stop-color:#d1f383"/><stop offset=".651" style="stop-color:#c6ec71"/><stop offset=".844" style="stop-color:#b7e257"/><stop offset="1" style="stop-color:#a8d73d"/></linearGradient><path style="fill:url(#e)" d="M9 19.9H8c-.6 0-1-.7-1-1.2v-9c0-.6.4-.8 1-.8h14c.6 0 1 .2 1 .8v9c0 .6-.4 1.2-1 1.2H10.6L9 21.4v-1.5z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="15" y1="9.896" x2="15" y2="18.896"><stop offset="0" style="stop-color:#b3e810"/><stop offset="1" style="stop-color:#90c60d"/></linearGradient><path style="fill:url(#f)" d="M10 18.9H8v-9h14v9H10z"/><path style="fill:#fff" d="M20 16.9H10v-1h10v1zm0-3H10v1h10v-1zm0-2H10v1h10v-1z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="17.5" y1="16" x2="17.5" y2="22"><stop offset="0" style="stop-color:#db6d17"/><stop offset="1" style="stop-color:#bf3b08"/></linearGradient><path style="fill:url(#a)" d="M15 16h5v6h-5z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="17.5" y1="17" x2="17.5" y2="21"><stop offset="0" style="stop-color:#f6a55e"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#b)" d="M16 17h3v4h-3z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="17.5" y1="18" x2="17.5" y2="20"><stop offset="0" style="stop-color:#f17219"/><stop offset="1" style="stop-color:#ea5b03"/></linearGradient><path style="fill:url(#c)" d="M17 18h1v2h-1z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="17.5" y1="9" x2="17.5" y2="15.001"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#d)" d="M15 9h5v6h-5z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="17.5" y1="10" x2="17.5" y2="14.001"><stop offset="0" style="stop-color:#d9f991"/><stop offset=".239" style="stop-color:#d7f88d"/><stop offset=".45" style="stop-color:#d1f383"/><stop offset=".651" style="stop-color:#c6ec71"/><stop offset=".844" style="stop-color:#b7e257"/><stop offset="1" style="stop-color:#a8d73d"/></linearGradient><path style="fill:url(#e)" d="M16 10h3v4h-3z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="17.5" y1="11" x2="17.5" y2="13"><stop offset="0" style="stop-color:#b3e810"/><stop offset="1" style="stop-color:#90c60d"/></linearGradient><path style="fill:url(#f)" d="M17 11h1v2h-1z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="8.499" y1="0" x2="8.499" y2="24"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#g)" d="M0 0h17v24H0z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="8.499" y1="1" x2="8.499" y2="23"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#h)" d="M1 1h15v22H1z"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="8.499" y1="2" x2="8.499" y2="22"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#i)" d="M2 2h13v20H2z"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="17.5" y1="2" x2="17.5" y2="8"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#j)" d="M15 2h5v6h-5z"/><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="17.5" y1="3" x2="17.5" y2="7"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#k)" d="M16 3h3v4h-3z"/><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="17.5" y1="4" x2="17.5" y2="6"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#l)" d="M17 4h1v2h-1z"/><linearGradient id="m" gradientUnits="userSpaceOnUse" x1="12.425" y1="10.729" x2="12.425" y2="15.97"><stop offset="0" style="stop-color:#76a1f0"/><stop offset=".055" style="stop-color:#739de9"/><stop offset=".204" style="stop-color:#6f95de"/><stop offset=".415" style="stop-color:#6c91d7"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#m)" d="M12.7 15.2c-.7.5-1.2.8-1.7.8-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.4.2-.7.5-1 .3-.3 1-.7 2.2-1.2v-.5c0-.4 0-.6-.1-.7 0-.1-.1-.2-.2-.3-.1-.1-.2-.1-.4-.1s-.4.1-.6.2c-.1.1-.1.1-.1.2s0 .2.2.3c.1.2.2.3.2.4 0 .2-.1.3-.2.4-.1.1-.3.2-.5.2s-.4-.1-.6-.2-.2-.3-.2-.5c0-.3.1-.5.3-.7.2-.2.5-.4.9-.5s.7-.2 1.1-.2c.5 0 .9.1 1.1.3.3.2.5.4.5.7.1.2.1.5.1 1v2.3c0 .1 0 .1.1.1h.1c.1 0 .2-.1.3-.2l.2.1c-.2.3-.4.5-.6.6-.2.1-.4.2-.7.2-.3 0-.5-.1-.7-.2-.1-.1-.2-.3-.2-.5zm0-.4v-1.7c-.4.3-.8.5-1 .8-.1.2-.2.4-.2.6 0 .2.1.3.2.4.1.1.2.1.4.1.1.1.3 0 .6-.2z"/><linearGradient id="n" gradientUnits="userSpaceOnUse" x1="6.354" y1="8.267" x2="6.354" y2="15.701"><stop offset="0" style="stop-color:#76a1f0"/><stop offset=".055" style="stop-color:#739de9"/><stop offset=".204" style="stop-color:#6f95de"/><stop offset=".415" style="stop-color:#6c91d7"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#n)" d="M7 13.6H4.4l-.3.7c-.1.2-.2.4-.2.6 0 .2.1.4.2.5.1.1.3.1.7.1v.2H2.5v-.2c.3 0 .5-.1.6-.3.2-.2.4-.5.6-1.1l2.6-5.8h.1l2.6 6c.2.6.5.9.6 1.1.1.1.3.2.5.2v.2H6.7v-.2h.1c.3 0 .5 0 .6-.1.1-.1.1-.1.1-.2v-.2l-.2-.4-.3-1.1zm-.2-.4-1.1-2.5-1.1 2.5h2.2z"/></svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" preserveAspectRatio="xMinYMid meet"><title>h5p finalArtboard 1</title><rect width="24" height="24" rx="3" ry="3" fill="#0882c8"/><path d="M22.1,8a3.37,3.37,0,0,0-2.42-.77H16.05v2H11.71l-.36,1.46a6.32,6.32,0,0,1,1-.35,3.49,3.49,0,0,1,.86-.06,3.24,3.24,0,0,1,2.35.88,2.93,2.93,0,0,1,.9,2.2A3.72,3.72,0,0,1,16,15.19a3.16,3.16,0,0,1-1.31,1.32,3.41,3.41,0,0,1-.67.27H17.7V13.28h1.65A3.8,3.8,0,0,0,22,12.46a3,3,0,0,0,.88-2.28A2.9,2.9,0,0,0,22.1,8Zm-2.44,3a1.88,1.88,0,0,1-1.21.29H17.7V9.2h.87a1.56,1.56,0,0,1,1.13.31,1,1,0,0,1,.3.76A.94.94,0,0,1,19.66,11Z" fill="#fff"/><path d="M12.27,12.05a1.33,1.33,0,0,0-1.19.74l-2.6-.37,1.17-5.2H7.29v4.08H4V7.23H1.1v9.55H4V13.28H7.29v3.49h3.57a3.61,3.61,0,0,1-1.13-.53A3.2,3.2,0,0,1,9,15.43a4,4,0,0,1-.48-1.09L11.09,14a1.32,1.32,0,1,0,1.18-1.92Z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 859 B |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 -2 24 24" style="overflow:visible;enable-background:new 0 -2 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="20"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#a)" d="M13 10h10v10H13z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="19"><stop offset="0" style="stop-color:#ffeba8"/><stop offset="1" style="stop-color:#f8be27"/></linearGradient><path style="fill:url(#b)" d="M14 11h8v8h-8z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18" y1="12" x2="18" y2="18"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#c)" d="M15 12h6v6h-6z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="14.001"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#d)" d="M12 10h12v4H12z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="18" y1="11" x2="18" y2="13.001"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#e)" d="M13 11h10v2H13z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="18" y1="10" x2="18" y2="16.423"><stop offset="0" style="stop-color:#8d470d"/><stop offset="1" style="stop-color:#7c3d09"/></linearGradient><path style="fill:url(#f)" d="M17 10v6.4l1-.9 1 .9V10z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="20"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#g)" d="M1 10h10v10H1z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="19"><stop offset="0" style="stop-color:#ffeba8"/><stop offset="1" style="stop-color:#f8be27"/></linearGradient><path style="fill:url(#h)" d="M2 11h8v8H2z"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="6" y1="12" x2="6" y2="18"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#i)" d="M3 12h6v6H3z"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="14.001"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#j)" d="M0 10h12v4H0z"/><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="6" y1="11" x2="6" y2="13.001"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#k)" d="M1 11h10v2H1z"/><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="6" y1="10" x2="6" y2="16.423"><stop offset="0" style="stop-color:#8d470d"/><stop offset="1" style="stop-color:#7c3d09"/></linearGradient><path style="fill:url(#l)" d="M5 10v6.4l1-.9 1 .9V10z"/><linearGradient id="m" gradientUnits="userSpaceOnUse" x1="11.999" y1="0" x2="11.999" y2="10"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#m)" d="M7 0h10v10H7z"/><linearGradient id="n" gradientUnits="userSpaceOnUse" x1="11.999" y1="1" x2="11.999" y2="9"><stop offset="0" style="stop-color:#ffeba8"/><stop offset="1" style="stop-color:#f8be27"/></linearGradient><path style="fill:url(#n)" d="M8 1h8v8H8z"/><linearGradient id="o" gradientUnits="userSpaceOnUse" x1="11.999" y1="2" x2="11.999" y2="8"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#o)" d="M9 2h6v6H9z"/><linearGradient id="p" gradientUnits="userSpaceOnUse" x1="11.999" y1="0" x2="11.999" y2="4"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#p)" d="M6 0h12v4H6z"/><linearGradient id="q" gradientUnits="userSpaceOnUse" x1="11.999" y1="1" x2="11.999" y2="3"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#q)" d="M7 1h10v2H7z"/><linearGradient id="r" gradientUnits="userSpaceOnUse" x1="11.999" y1="0" x2="11.999" y2="6.423"><stop offset="0" style="stop-color:#8d470d"/><stop offset="1" style="stop-color:#7c3d09"/></linearGradient><path style="fill:url(#r)" d="M11 0v6.4l1-.9 1 .9V0z"/></svg>
|
After Width: | Height: | Size: 4.5 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="11.985" y1="0" x2="11.985" y2="24.016"><stop offset="0" style="stop-color:#f0a829"/><stop offset="1" style="stop-color:#c7671a"/></linearGradient><path style="fill:url(#a)" d="M14.4 0 .6 13.9c-.8.8-.8 2.1 0 2.8l6.7 6.7c.8.8 2 .8 2.8 0L24 9.6V0h-9.6z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="11.985" y1="1" x2="11.985" y2="23.016"><stop offset="0" style="stop-color:#ffeba8"/><stop offset="1" style="stop-color:#f8be27"/></linearGradient><path style="fill:url(#b)" d="M8.7 23c-.3 0-.5-.1-.7-.3L1.3 16c-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7L14.9 1H23v8.2L9.4 22.7c-.2.2-.4.3-.7.3z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="11.984" y1="2" x2="11.984" y2="22.014"><stop offset="0" style="stop-color:#ffc30f"/><stop offset="1" style="stop-color:#f5ae0d"/></linearGradient><path style="fill:url(#c)" d="M2 15.3 15.3 2H22v6.8L8.7 22z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="8.72" y1="9.969" x2="8.72" y2="20.631"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#d)" d="M3.4 15.3 8.7 10l5.4 5.3-5.4 5.3z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="11.146" y1="22.031" x2="11.146" y2="23.871" gradientTransform="rotate(-45.001 2.915 21.135)"><stop offset="0" style="stop-color:#57c3f6"/><stop offset=".165" style="stop-color:#83d3f8"/><stop offset=".355" style="stop-color:#afe3fb"/><stop offset=".54" style="stop-color:#d2effd"/><stop offset=".713" style="stop-color:#ebf8fe"/><stop offset=".871" style="stop-color:#fafdff"/><stop offset="1" style="stop-color:#fff"/></linearGradient><path style="fill:url(#e)" d="m7.4 17.9 1.3 1.3 3.9-3.9-1.3-1.3z"/><path style="fill:#f2efd5" d="m12.6 15.3-.3-.3c-.3.2-.8.5-1.4 1.1-1.1.9-1 .5-2 .9-.4.2-.9.6-1.4 1l1.2 1.2 3.9-3.9z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="8.388" y1="23.104" x2="13.904" y2="23.104" gradientTransform="rotate(-45.001 2.915 21.135)"><stop offset="0" style="stop-color:#f8e5b5"/><stop offset="1" style="stop-color:#f9e5b6"/></linearGradient><path style="fill:url(#f)" d="m12.6 15.3-.2-.2c-.4.2-.6.6-1.3 1.2-1.1.9-1.1.3-2.1.7-.4.2-.9.6-1.3 1.1l1.1 1.1 3.8-3.9z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="12.171" y1="17.657" x2="10.12" y2="22.732" gradientTransform="rotate(-45.001 2.915 21.135)"><stop offset="0" style="stop-color:#57c3f6"/><stop offset=".005" style="stop-color:#59c4f6"/><stop offset=".124" style="stop-color:#85d3f8"/><stop offset=".247" style="stop-color:#aae1fa"/><stop offset=".376" style="stop-color:#c9ecfc"/><stop offset=".51" style="stop-color:#e1f4fd"/><stop offset=".652" style="stop-color:#f2fafe"/><stop offset=".807" style="stop-color:#fcfeff"/><stop offset="1" style="stop-color:#fff"/></linearGradient><path style="fill:url(#g)" d="m4.8 15.3 2.6 2.6 3.9-3.9-2.6-2.6z"/><path style="fill:#fff" d="M9 11.6c-.3.2-.3.4-.3.4s-.4-.1-.6.4c-.1.4.3.5.3.5l-.1.1c0 .1.1.1.1.1s-.2.1-.1.4c.1.3.3.3.3.3s-.1.5.4.6c.4.1.5-.3.5-.3s.3 0 .6-.2.4-.5.4-.5h.2L9 11.6zM7.9 14.5s-.1 0-.2.1c0 .1.1.2.1.2s-.1 0 0 .1c0 .1.1.1.1.1s0 .1.1.2c.1 0 .1-.1.1-.1h.2l.1-.1s.1 0 .1-.1v-.2s.2 0 .1-.2c-.1-.1-.2 0-.2 0l-.1-.1c-.1 0-.1.1-.1.1h-.1s-.1-.2-.2-.2c-.1.1 0 .2 0 .2zM19.6 8.4l-5.5 5.5-.7-.7 5.5-5.5.7.7zm-2.1-2.1L12 11.8l.7.7L18.2 7l-.7-.7zm-1.4-1.4-5.5 5.5.7.7 5.5-5.5-.7-.7z"/><circle style="fill:#fff" cx="19.7" cy="4.3" r="1.3"/></svg>
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="5.5" y1="10" x2="5.5" y2="14.001"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#a)" d="M5 10h1v4H5z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="15" y1="5" x2="15" y2="9"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#b)" d="M18 5h-7v1h7v3h1V5z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="5.5" y1="14" x2="5.5" y2="24"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#c)" d="M10 14H1c-.6 0-1 .4-1 1v9h11v-9c0-.6-.4-1-1-1z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="5.5" y1="17" x2="5.5" y2="23"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#d)" d="M1 17h9v6H1z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="5.5" y1="18" x2="5.5" y2="22"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#e)" d="M2 18h7v4H2z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="5.5" y1="15" x2="5.5" y2="16"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#f)" d="M1 15h9v1H1z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="18.5" y1="9" x2="18.5" y2="19"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#g)" d="M23 9h-9c-.6 0-1 .4-1 1v9h11v-9c0-.6-.4-1-1-1z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="18.5" y1="12" x2="18.5" y2="18"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#h)" d="M14 12h9v6h-9z"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="18.5" y1="13" x2="18.5" y2="17"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#i)" d="M15 13h7v4h-7z"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="18.5" y1="10" x2="18.5" y2="11"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#j)" d="M14 10h9v1h-9z"/><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="5.5" y1="0" x2="5.5" y2="10"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#k)" d="M10 0H1C.4 0 0 .4 0 1v9h11V1c0-.6-.4-1-1-1z"/><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="5.5" y1="3" x2="5.5" y2="9"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#l)" d="M1 3h9v6H1z"/><linearGradient id="m" gradientUnits="userSpaceOnUse" x1="5.5" y1="4" x2="5.5" y2="8"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#m)" d="M2 4h7v4H2z"/><linearGradient id="n" gradientUnits="userSpaceOnUse" x1="5.5" y1="1" x2="5.5" y2="2"><stop offset="0" style="stop-color:#bbe0f7"/><stop offset="1" style="stop-color:#82b4fb"/></linearGradient><path style="fill:url(#n)" d="M1 1h9v1H1z"/></svg>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" style="overflow:visible;enable-background:new 0 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="11.999" y1="0" x2="11.999" y2="24.001"><stop offset="0" style="stop-color:#90c50e"/><stop offset="1" style="stop-color:#70a034"/></linearGradient><path style="fill:url(#a)" d="M21.1 12.3c1 0 1.7.9 1.7.9.3.4.7.8.9.8s.3-.5.3-1V8c0-.5-.5-1-1-1h-3c-.5 0-1-.1-1-.3 0-.2.3-.7.7-1.1 0 0 .8-.9.8-2.1C20.5 1.6 18.9 0 17 0s-3.5 1.6-3.5 3.5c0 1.2.8 2.1.8 2.1.4.4.7.9.7 1.1 0 .2-.5.3-1 .3H8c-.5 0-1 .5-1 1v6c0 .5-.1 1-.3 1s-.7-.3-1.1-.7c0 0-.9-.8-2.1-.8C1.6 13.5 0 15.1 0 17s1.6 3.5 3.5 3.5c1.2 0 2.1-.8 2.1-.8.4-.4.9-.7 1.1-.7s.3.5.3 1v3c0 .5.5 1 1 1h4c.5 0 1-.1 1-.3s-.3-.6-.7-1c0 0-.6-.6-.6-1.6 0-1.4 1.3-2.5 2.7-2.5 1.4 0 2.4 1.1 2.4 2.5 0 1-.9 1.7-.9 1.7-.4.3-.8.7-.8.9s.5.3 1 .3h7c.5 0 1-.5 1-1v-6c0-.5-.1-1-.3-1s-.6.3-1 .7c0 0-.6.6-1.6.6-1.4 0-2.5-1.3-2.5-2.7s1-2.3 2.4-2.3z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="11.999" y1="1" x2="11.999" y2="23.001"><stop offset="0" style="stop-color:#d9f991"/><stop offset=".239" style="stop-color:#d7f88d"/><stop offset=".45" style="stop-color:#d1f383"/><stop offset=".651" style="stop-color:#c6ec71"/><stop offset=".844" style="stop-color:#b7e257"/><stop offset="1" style="stop-color:#a8d73d"/></linearGradient><path style="fill:url(#b)" d="M17 23c.4-.4.7-1.1.7-1.9 0-2-1.5-3.5-3.4-3.5-2 0-3.7 1.6-3.7 3.5 0 .9.3 1.5.6 1.9H8v-3c0-1.5-.7-2-1.3-2-.6 0-1.3.6-1.7.9 0 0-.7.6-1.5.6C2.1 19.5 1 18.4 1 17s1.1-2.5 2.5-2.5c.8 0 1.4.6 1.5.6.3.3 1.1.9 1.7.9.6 0 1.3-.5 1.3-2V8h6c1.5 0 2-.7 2-1.3 0-.6-.5-1.3-.9-1.7 0 0-.6-.7-.6-1.5C14.5 2.1 15.6 1 17 1s2.5 1.1 2.5 2.5c0 .8-.6 1.5-.6 1.5-.4.4-.9 1.1-.9 1.7 0 .6.5 1.3 2 1.3h3v4c-.4-.4-1.1-.7-1.9-.7-2 0-3.5 1.5-3.5 3.4 0 2 1.6 3.7 3.5 3.7.9 0 1.5-.3 1.9-.6V23h-6z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="11.999" y1="2" x2="11.999" y2="22.001"><stop offset="0" style="stop-color:#b3e810"/><stop offset="1" style="stop-color:#90c60d"/></linearGradient><path style="fill:url(#c)" d="M18.6 22c.1-.3.1-.6.1-.9 0-2.5-1.9-4.5-4.4-4.5-2.5 0-4.7 2.1-4.7 4.5 0 .3 0 .6.1.9H9v-2c0-2.1-1.2-3-2.3-3 1.1 0 2.3-.9 2.3-3V9h5c2.1 0 3-1.2 3-2.3 0-.7-.4-1.5-1.2-2.4-.1-.1-.3-.5-.3-.8 0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 .3-.3.7-.3.8-.8.9-1.2 1.7-1.2 2.4 0 1.1.9 2.3 3 2.3h2v1.4c-.3-.1-.6-.1-.9-.1-2.5 0-4.5 1.9-4.5 4.4 0 2.5 2.1 4.7 4.5 4.7.3 0 .6 0 .9-.1V22h-3.4zM3.5 18.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5c.3 0 .7.3.8.3.9.8 1.7 1.2 2.4 1.2-.7 0-1.5.4-2.4 1.2-.1.1-.5.3-.8.3z"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-2 0 24 24" style="overflow:visible;enable-background:new -2 0 24 24" xml:space="preserve" preserveAspectRatio="xMinYMid meet"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="9.999" y1="0" x2="9.999" y2="24"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#a)" d="M12.5 0H0v24h20V7.9z"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="9.999" y1="1" x2="9.999" y2="23"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset="1" style="stop-color:#deeffc"/></linearGradient><path style="fill:url(#b)" d="M12.1 1H1v22h18V8.3z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="9.999" y1="2" x2="9.999" y2="22"><stop offset="0" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bbdff8"/></linearGradient><path style="fill:url(#c)" d="M11.6 2H2v20h16V8.7z"/><path style="fill:#fff" d="M16 21H4v-1h12v1zm0-3H4v1h12v-1zm0-2H4v1h12v-1zm0-2H4v1h12v-1z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="9.999" y1="4" x2="9.999" y2="12"><stop offset="0" style="stop-color:#76a1f0"/><stop offset="1" style="stop-color:#6b90d5"/></linearGradient><path style="fill:url(#d)" d="M15.3 4H3v8h14V5.8z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="9.999" y1="9" x2="9.999" y2="11"><stop offset="0" style="stop-color:#57c3f6"/><stop offset=".165" style="stop-color:#83d3f8"/><stop offset=".355" style="stop-color:#afe3fb"/><stop offset=".54" style="stop-color:#d2effd"/><stop offset=".713" style="stop-color:#ebf8fe"/><stop offset=".871" style="stop-color:#fafdff"/><stop offset="1" style="stop-color:#fff"/></linearGradient><path style="fill:url(#e)" d="M4 9h12v2H4z"/><path style="fill:#f2efd5" d="M12.4 10.9c-.5-.2-1.1-.3-2.7-.4-1.5-.1-.9-.4-2-.8-1-.5-3.7-.3-3.7-.3V11h8.6s-.1-.1-.2-.1z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="4" y1="10.248" x2="12.296" y2="10.248"><stop offset="0" style="stop-color:#f8e5b5"/><stop offset="1" style="stop-color:#f9e5b6"/></linearGradient><path style="fill:url(#f)" d="M9.7 10.7c-1.5-.1-.9-.6-2-1-1-.4-3.7 0-3.7 0V11h8.3c-.8 0-1.1-.2-2.6-.3z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="12.534" y1="1.567" x2="8.163" y2="10.941"><stop offset="0" style="stop-color:#57c3f6"/><stop offset=".229" style="stop-color:#8ad5f9"/><stop offset=".483" style="stop-color:#bce7fb"/><stop offset=".705" style="stop-color:#e1f4fd"/><stop offset=".885" style="stop-color:#f7fcff"/><stop offset="1" style="stop-color:#fff"/></linearGradient><path style="fill:url(#g)" d="M4 5h12v4H4z"/><path style="fill:#fff" d="M11.2 5.6s-.2-.4-.7-.2c-.4.3-.1.7-.1.7h-.1c-.1 0 0 .2 0 .2s-.3 0-.4.2c-.3.4-.1.5-.1.5s-.5.4-.2.8.6.1.6.1.2.3.6.3c.4.1.6-.1.6-.1s.3.2.5.1c.5 0 .6-.2.6-.2s.6.3.8-.3c.1-.4-.3-.6-.3-.6s.1-.4-.2-.6-.6 0-.6 0 .1 0 0-.1c0-.1-.3-.1-.3-.1s.1-.6-.2-.8c-.3-.2-.5.1-.5.1zM8.6 6.9s-.1-.1-.2 0c-.1 0 0 .1 0 .1s-.1 0-.1.1v.1s-.1.1 0 .2.2 0 .2 0 .1.1.2.1h.2s.1.1.2 0l-.1.1s.2.1.2-.1c0-.1-.1-.2-.1-.2s0-.1-.1-.2H8.7s0-.2-.1-.2c.1-.1 0 0 0 0z"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="15.245" y1="0" x2="15.245" y2="9.359"><stop offset="0" style="stop-color:#95bff8"/><stop offset=".557" style="stop-color:#84adef"/><stop offset="1" style="stop-color:#7ca4eb"/></linearGradient><path style="fill:url(#h)" d="M11 9s5.2-1.5 9 .4V7.9L12.5 0h-2c2.6 3.7.5 9 .5 9z"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="12.322" y1="7.545" x2="15.45" y2="4.417"><stop offset="0" style="stop-color:#e7f4fc"/><stop offset=".518" style="stop-color:#e5f3fc"/><stop offset=".705" style="stop-color:#def0fb"/><stop offset=".837" style="stop-color:#d3ebfa"/><stop offset=".872" style="stop-color:#cee9f9"/><stop offset="1" style="stop-color:#bdd8f0"/></linearGradient><path style="fill:url(#i)" d="M18.5 7.8c-.9-.2-2-.3-3.1-.3s-2.1.1-3 .3c.4-1.6.7-4.1-.2-6.4l6.3 6.4z"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |