text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```xml import React from 'react' import { usePreferences } from '../lib/stores/preferences' import Button from '../../design/components/atoms/Button' import { mdiArrowLeft, mdiArrowRight } from '@mdi/js' import { AppComponent } from '../../design/lib/types' import cc from 'classcat' import styled from '../../design/lib/styled' import { rightSideTopBarHeight } from '../../design/components/organisms/Topbar' const SidebarToggleButton: AppComponent<{ id?: string }> = ({ className, id, }) => { const { preferences, setPreferences } = usePreferences() return ( <Container> <Button variant='secondary' className={cc(['sidebar--toggle', className])} iconPath={preferences.sidebarIsHidden ? mdiArrowRight : mdiArrowLeft} iconSize={20} id={id} size='sm' onClick={() => setPreferences((prev) => { return { sidebarIsHidden: !prev.sidebarIsHidden } }) } /> </Container> ) } export default SidebarToggleButton const Container = styled.div` position: fixed; top: calc(${rightSideTopBarHeight}px + 30px); left: -14px; opacity: 0.5; z-index: 1; &:hover { transition: all ease-in-out 0.3s; padding-left: 24px; opacity: 1; } ` ```
/content/code_sandbox/src/cloud/components/SidebarToggleButton.tsx
xml
2016-11-19T14:30:34
2024-08-16T03:13:45
BoostNote-App
BoostIO/BoostNote-App
3,745
308
```xml import Footer from './Footer' export default Footer ```
/content/code_sandbox/demo/src/components/Footer/index.ts
xml
2016-04-18T14:42:12
2024-08-13T16:26:17
reapop
LouisBarranqueiro/reapop
1,547
11
```xml /// /// /// /// path_to_url /// /// Unless required by applicable law or agreed to in writing, software /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. /// import { Component } from '@angular/core'; import { MatDialog, MatDialogRef } from '@angular/material/dialog'; import { Store } from '@ngrx/store'; import { AppState } from '@core/core.state'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms'; import { Router } from '@angular/router'; import { DialogComponent } from '@app/shared/components/dialog.component'; export interface MoveWidgetsDialogResult { cols: number; rows: number; } @Component({ selector: 'tb-move-widgets-dialog', templateUrl: './move-widgets-dialog.component.html', providers: [], styleUrls: [] }) export class MoveWidgetsDialogComponent extends DialogComponent<MoveWidgetsDialogComponent, MoveWidgetsDialogResult> { moveWidgetsFormGroup: UntypedFormGroup; constructor(protected store: Store<AppState>, protected router: Router, protected dialogRef: MatDialogRef<MoveWidgetsDialogComponent, MoveWidgetsDialogResult>, private fb: UntypedFormBuilder, private dialog: MatDialog) { super(store, router, dialogRef); this.moveWidgetsFormGroup = this.fb.group({ cols: [0, [Validators.required]], rows: [0, [Validators.required]] } ); } cancel(): void { this.dialogRef.close(null); } move(): void { const result: MoveWidgetsDialogResult = this.moveWidgetsFormGroup.value; this.dialogRef.close(result); } } ```
/content/code_sandbox/ui-ngx/src/app/modules/home/components/dashboard-page/layout/move-widgets-dialog.component.ts
xml
2016-12-01T09:33:30
2024-08-16T19:58:25
thingsboard
thingsboard/thingsboard
16,820
336
```xml <?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="path_to_url" xmlns:app="path_to_url" xmlns:bind="path_to_url"> <data> <import type="android.view.View" /> <variable name="track" type="com.eventyay.organizer.data.tracks.Track" /> </data> <androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/color_top_surface"> <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginBottom="@dimen/submit_button_width"> <include android:id="@+id/form" bind:track="@{track}" layout="@layout/track_create_form" /> </androidx.core.widget.NestedScrollView> <Button style="@style/SubmitButton" android:id="@+id/submit" android:layout_width="match_parent" android:layout_height="@dimen/submit_button_width" android:text="@string/done"/> <FrameLayout android:layout_width="@dimen/progressbar_large" android:layout_height="@dimen/progressbar_large" android:layout_gravity="center"> <ProgressBar android:id="@+id/progressBar" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:theme="@style/AppTheme" android:visibility="gone" /> </FrameLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout> </layout> ```
/content/code_sandbox/app/src/main/res/layout/track_create_layout.xml
xml
2016-08-13T08:08:39
2024-08-06T13:58:48
open-event-organizer-android
fossasia/open-event-organizer-android
1,783
373
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ import sapx = require( './index' ); // TESTS // // The function returns a Float32Array... { const x = new Float32Array( 10 ); sapx( x.length, 5.0, x, 1 ); // $ExpectType Float32Array } // The compiler throws an error if the function is provided a first argument which is not a number... { const x = new Float32Array( 10 ); sapx( '10', 5.0, x, 1 ); // $ExpectError sapx( true, 5.0, x, 1 ); // $ExpectError sapx( false, 5.0, x, 1 ); // $ExpectError sapx( null, 5.0, x, 1 ); // $ExpectError sapx( undefined, 5.0, x, 1 ); // $ExpectError sapx( [], 5.0, x, 1 ); // $ExpectError sapx( {}, 5.0, x, 1 ); // $ExpectError sapx( ( x: number ): number => x, 5.0, x, 1 ); // $ExpectError } // The compiler throws an error if the function is provided a second argument which is not a number... { const x = new Float32Array( 10 ); sapx( x.length, '10', x, 1 ); // $ExpectError sapx( x.length, true, x, 1 ); // $ExpectError sapx( x.length, false, x, 1 ); // $ExpectError sapx( x.length, null, x, 1 ); // $ExpectError sapx( x.length, undefined, x, 1 ); // $ExpectError sapx( x.length, [], x, 1 ); // $ExpectError sapx( x.length, {}, x, 1 ); // $ExpectError sapx( x.length, ( x: number ): number => x, x, 1 ); // $ExpectError } // The compiler throws an error if the function is provided a third argument which is not a Float32Array... { const x = new Float32Array( 10 ); sapx( x.length, 5.0, 10, 1 ); // $ExpectError sapx( x.length, 5.0, '10', 1 ); // $ExpectError sapx( x.length, 5.0, true, 1 ); // $ExpectError sapx( x.length, 5.0, false, 1 ); // $ExpectError sapx( x.length, 5.0, null, 1 ); // $ExpectError sapx( x.length, 5.0, undefined, 1 ); // $ExpectError sapx( x.length, 5.0, [], 1 ); // $ExpectError sapx( x.length, 5.0, {}, 1 ); // $ExpectError sapx( x.length, 5.0, ( x: number ): number => x, 1 ); // $ExpectError } // The compiler throws an error if the function is provided a fourth argument which is not a number... { const x = new Float32Array( 10 ); sapx( x.length, 5.0, x, '10' ); // $ExpectError sapx( x.length, 5.0, x, true ); // $ExpectError sapx( x.length, 5.0, x, false ); // $ExpectError sapx( x.length, 5.0, x, null ); // $ExpectError sapx( x.length, 5.0, x, undefined ); // $ExpectError sapx( x.length, 5.0, x, [] ); // $ExpectError sapx( x.length, 5.0, x, {} ); // $ExpectError sapx( x.length, 5.0, x, ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the function is provided an unsupported number of arguments... { const x = new Float32Array( 10 ); sapx(); // $ExpectError sapx( x.length ); // $ExpectError sapx( x.length, 5.0 ); // $ExpectError sapx( x.length, 5.0, x ); // $ExpectError sapx( x.length, 5.0, x, 1, 10 ); // $ExpectError } // Attached to main export is an `ndarray` method which returns a Float32Array... { const x = new Float32Array( 10 ); sapx.ndarray( x.length, 5.0, x, 1, 0 ); // $ExpectType Float32Array } // The compiler throws an error if the `ndarray` method is provided a first argument which is not a number... { const x = new Float32Array( 10 ); sapx.ndarray( '10', 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( true, 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( false, 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( null, 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( undefined, 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( [], 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( {}, 5.0, x, 1, 0 ); // $ExpectError sapx.ndarray( ( x: number ): number => x, 5.0, x, 1, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a second argument which is not a number... { const x = new Float32Array( 10 ); sapx.ndarray( x.length, '10', x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, true, x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, false, x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, null, x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, undefined, x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, [], x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, {}, x, 1, 0 ); // $ExpectError sapx.ndarray( x.length, ( x: number ): number => x, x, 1, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a third argument which is not a Float32Array... { const x = new Float32Array( 10 ); sapx.ndarray( x.length, 5.0, 10, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, '10', 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, true, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, false, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, null, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, undefined, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, [], 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, {}, 1, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, ( x: number ): number => x, 1, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a number... { const x = new Float32Array( 10 ); sapx.ndarray( x.length, 5.0, x, '10', 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, true, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, false, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, null, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, undefined, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, [], 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, {}, 0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, ( x: number ): number => x, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a fifth argument which is not a number... { const x = new Float32Array( 10 ); sapx.ndarray( x.length, 5.0, x, 1, '10' ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, true ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, false ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, null ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, undefined ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, [] ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, {} ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided an unsupported number of arguments... { const x = new Float32Array( 10 ); sapx.ndarray(); // $ExpectError sapx.ndarray( x.length ); // $ExpectError sapx.ndarray( x.length, 5.0 ); // $ExpectError sapx.ndarray( x.length, 5.0, x ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1 ); // $ExpectError sapx.ndarray( x.length, 5.0, x, 1, 0, 10 ); // $ExpectError } ```
/content/code_sandbox/lib/node_modules/@stdlib/blas/ext/base/sapx/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
2,518
```xml /// /// /// /// path_to_url /// /// Unless required by applicable law or agreed to in writing, software /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. /// import { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output, ViewEncapsulation } from '@angular/core'; import { WidgetsBundle } from '@shared/models/widgets-bundle.model'; import { IAliasController } from '@core/api/widget-api.models'; import { NULL_UUID } from '@shared/models/id/has-uuid'; import { WidgetService } from '@core/http/widget.service'; import { DeprecatedFilter, fullWidgetTypeFqn, WidgetInfo, widgetType, WidgetTypeInfo } from '@shared/models/widget.models'; import { debounceTime, distinctUntilChanged, map, skip } from 'rxjs/operators'; import { BehaviorSubject, combineLatest } from 'rxjs'; import { isObject } from '@core/utils'; import { PageLink } from '@shared/models/page/page-link'; import { Direction } from '@shared/models/page/sort-order'; import { GridEntitiesFetchFunction, ScrollGridColumns } from '@shared/components/grid/scroll-grid-datasource'; import { ItemSizeStrategy } from '@shared/components/grid/scroll-grid.component'; import { coerceBoolean } from '@shared/decorators/coercion'; type selectWidgetMode = 'bundles' | 'allWidgets'; interface WidgetsFilter { search: string; filter: widgetType[]; deprecatedFilter: DeprecatedFilter; } interface BundleWidgetsFilter extends WidgetsFilter { widgetsBundleId: string; } @Component({ selector: 'tb-dashboard-widget-select', templateUrl: './dashboard-widget-select.component.html', styleUrls: ['./dashboard-widget-select.component.scss'], encapsulation: ViewEncapsulation.None }) export class DashboardWidgetSelectComponent implements OnInit { private searchSubject = new BehaviorSubject<string>(''); private search$ = this.searchSubject.asObservable().pipe( debounceTime(150)); private filterWidgetTypes$ = new BehaviorSubject<Array<widgetType>>(null); private deprecatedFilter$ = new BehaviorSubject<DeprecatedFilter>(DeprecatedFilter.ACTUAL); private selectWidgetMode$ = new BehaviorSubject<selectWidgetMode>('bundles'); private widgetsBundle$ = new BehaviorSubject<WidgetsBundle>(null); widgetTypes = new Set<widgetType>(); hasDeprecated = false; @Input() aliasController: IAliasController; @Input() @coerceBoolean() scadaFirst = false; @Input() set search(search: string) { this.searchSubject.next(search); } get search(): string { return this.searchSubject.value; } @Input() set filterWidgetTypes(widgetTypes: Array<widgetType>) { this.filterWidgetTypes$.next(widgetTypes); } get filterWidgetTypes(): Array<widgetType> { return this.filterWidgetTypes$.value; } @Input() set selectWidgetMode(mode: selectWidgetMode) { if (this.selectWidgetMode$.value !== mode) { if (mode === 'bundles' && this.widgetsBundle$.value === null) { this.widgetTypes.clear(); this.hasDeprecated = false; } else { this.widgetTypes = new Set<widgetType>(Object.keys(widgetType).map(t => t as widgetType)); this.hasDeprecated = true; } this.filterWidgetTypes$.next(null); this.deprecatedFilter$.next(DeprecatedFilter.ACTUAL); this.selectWidgetMode$.next(mode); } } get selectWidgetMode(): selectWidgetMode { return this.selectWidgetMode$.value; } @Input() set deprecatedFilter(filter: DeprecatedFilter) { this.deprecatedFilter$.next(filter); } get deprecatedFilter(): DeprecatedFilter { return this.deprecatedFilter$.value; } set widgetsBundle(widgetBundle: WidgetsBundle) { if (this.widgetsBundle$.value !== widgetBundle) { if (widgetBundle === null && this.selectWidgetMode$.value !== 'allWidgets') { this.widgetTypes.clear(); this.hasDeprecated = false; } else { this.widgetTypes = new Set<widgetType>(Object.keys(widgetType).map(t => t as widgetType)); this.hasDeprecated = true; } this.filterWidgetTypes$.next(null); this.deprecatedFilter$.next(DeprecatedFilter.ACTUAL); this.widgetsBundle$.next(widgetBundle); } } get widgetsBundle(): WidgetsBundle { return this.widgetsBundle$.value; } @Output() widgetSelected: EventEmitter<WidgetInfo> = new EventEmitter<WidgetInfo>(); columns: ScrollGridColumns = { columns: 2, breakpoints: { 'screen and (min-width: 2000px)': 5, 'screen and (min-width: 1097px)': 4, 'gt-sm': 3, 'screen and (min-width: 721px)': 4, 'screen and (min-width: 485px)': 3 } }; gridWidgetsItemSizeStrategy: ItemSizeStrategy = { defaultItemSize: 160, itemSizeFunction: itemWidth => (itemWidth - 24) * 0.8 + 76 }; widgetBundlesFetchFunction: GridEntitiesFetchFunction<WidgetsBundle, string>; allWidgetsFetchFunction: GridEntitiesFetchFunction<WidgetTypeInfo, WidgetsFilter>; widgetsFetchFunction: GridEntitiesFetchFunction<WidgetTypeInfo, BundleWidgetsFilter>; widgetsBundleFilter = ''; allWidgetsFilter: WidgetsFilter = {search: '', filter: null, deprecatedFilter: DeprecatedFilter.ACTUAL}; widgetsFilter: BundleWidgetsFilter = {search: '', filter: null, deprecatedFilter: DeprecatedFilter.ACTUAL, widgetsBundleId: null}; constructor(private widgetsService: WidgetService, private cd: ChangeDetectorRef) { this.widgetBundlesFetchFunction = (pageSize, page, filter) => { const pageLink = new PageLink(pageSize, page, filter, { property: 'title', direction: Direction.ASC }); return this.widgetsService.getWidgetBundles(pageLink, true, false, this.scadaFirst); }; this.allWidgetsFetchFunction = (pageSize, page, filter) => { const pageLink = new PageLink(pageSize, page, filter.search, { property: 'name', direction: Direction.ASC }); return this.widgetsService.getWidgetTypes(pageLink, false, true, this.scadaFirst, filter.deprecatedFilter, filter.filter); }; this.widgetsFetchFunction = (pageSize, page, filter) => { const pageLink = new PageLink(pageSize, page, filter.search, { property: 'name', direction: Direction.ASC }); return this.widgetsService.getBundleWidgetTypeInfos(pageLink, filter.widgetsBundleId, true, filter.deprecatedFilter, filter.filter); }; this.search$.pipe( distinctUntilChanged(), skip(1) ).subscribe( (search) => { this.widgetsBundleFilter = search; this.cd.markForCheck(); } ); combineLatest({search: this.search$, filter: this.filterWidgetTypes$.asObservable(), deprecatedFilter: this.deprecatedFilter$.asObservable()}).pipe( distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)), skip(1) ).subscribe( (filter) => { this.allWidgetsFilter = filter; this.cd.markForCheck(); } ); combineLatest({search: this.search$, widgetsBundleId: this.widgetsBundle$.pipe(map(wb => wb !== null ? wb.id.id : null)), filter: this.filterWidgetTypes$.asObservable(), deprecatedFilter: this.deprecatedFilter$.asObservable()}).pipe( distinctUntilChanged((oldValue, newValue) => JSON.stringify(oldValue) === JSON.stringify(newValue)), skip(1) ).subscribe( (filter) => { if (filter.widgetsBundleId) { this.widgetsFilter = filter; this.cd.markForCheck(); } } ); } ngOnInit(): void { } onWidgetClicked($event: Event, widget: WidgetTypeInfo): void { this.widgetSelected.emit(this.toWidgetInfo(widget)); } isSystem(item: WidgetsBundle): boolean { return item && item.tenantId.id === NULL_UUID; } selectBundle($event: Event, bundle: WidgetsBundle) { $event.preventDefault(); this.widgetsBundle = bundle; if (bundle.title?.toLowerCase().includes(this.search.toLowerCase()) || bundle.description?.toLowerCase().includes(this.search.toLowerCase())) { this.searchSubject.next(''); } } isObject(value: any): boolean { return isObject(value); } private toWidgetInfo(widgetTypeInfo: WidgetTypeInfo): WidgetInfo { return { typeFullFqn: fullWidgetTypeFqn(widgetTypeInfo), type: widgetTypeInfo.widgetType, title: widgetTypeInfo.name, image: widgetTypeInfo.image, description: widgetTypeInfo.description, deprecated: widgetTypeInfo.deprecated }; } } ```
/content/code_sandbox/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-widget-select.component.ts
xml
2016-12-01T09:33:30
2024-08-16T19:58:25
thingsboard
thingsboard/thingsboard
16,820
1,931
```xml import { Notification } from './Notifications.types'; /** * Fetches information about all notifications present in the notification tray (Notification Center). * > This method is not supported on Android below 6.0 (API level 23) on these devices it will resolve to an empty array. * @return A Promise which resolves with a list of notifications ([`Notification`](#notification)) currently present in the notification tray (Notification Center). * @header dismiss */ export default function getPresentedNotificationsAsync(): Promise<Notification[]>; //# sourceMappingURL=getPresentedNotificationsAsync.d.ts.map ```
/content/code_sandbox/packages/expo-notifications/build/getPresentedNotificationsAsync.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
118
```xml // This is a generated file. Changes are likely to result in being overwritten declare namespace RightContentOverlayScssNamespace { export interface IRightContentOverlayScss { 'right-content-overlay': string; rightContentOverlay: string; } } declare const RightContentOverlayScssModule: RightContentOverlayScssNamespace.IRightContentOverlayScss & { /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ locals: RightContentOverlayScssNamespace.IRightContentOverlayScss; }; export = RightContentOverlayScssModule; ```
/content/code_sandbox/packages/app/client/src/ui/shell/mdi/tabbedDocument/rightContentOverlay/rightContentOverlay.scss.d.ts
xml
2016-11-11T23:15:09
2024-08-16T12:45:29
BotFramework-Emulator
microsoft/BotFramework-Emulator
1,803
130
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:layout_width="150dp" android:layout_height="wrap_content" android:background="#000" android:gravity="center" android:orientation="horizontal"> <TextView android:id="@+id/favour" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:drawableLeft="@mipmap/event_favour" android:drawablePadding="10dp" android:gravity="center" android:padding="10dip" android:text="" android:textColor="#FFF" android:textSize="14sp"/> <TextView android:id="@+id/comment" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:drawableLeft="@mipmap/event_comment" android:drawablePadding="10dp" android:gravity="center" android:padding="10dip" android:text="" android:textColor="#FFF" android:textSize="14sp"/> </LinearLayout> ```
/content/code_sandbox/app/src/main/res/layout/popup_reply.xml
xml
2016-01-28T12:16:02
2024-08-12T03:26:43
NineGridView
jeasonlzy/NineGridView
2,461
255
```xml import { fn } from '@storybook/test'; import type { Meta, StoryObj } from '@storybook/web-components'; import type { ButtonProps } from './Button'; import { Button } from './Button'; // More on how to set up stories at: path_to_url const meta: Meta<ButtonProps> = { title: 'Example/Button', tags: ['autodocs'], render: (args) => Button(args), argTypes: { backgroundColor: { control: 'color' }, size: { control: { type: 'select' }, options: ['small', 'medium', 'large'], }, }, args: { onClick: fn() }, }; export default meta; type Story = StoryObj<ButtonProps>; // More on writing stories with args: path_to_url export const Primary: Story = { args: { primary: true, label: 'Button', }, }; export const Secondary: Story = { args: { label: 'Button', }, }; export const Large: Story = { args: { size: 'large', label: 'Button', }, }; export const Small: Story = { args: { size: 'small', label: 'Button', }, }; ```
/content/code_sandbox/code/renderers/web-components/template/cli/ts-3-8/Button.stories.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
266
```xml // Packages import electron, {app} from 'electron'; import type {BrowserWindow, AutoUpdater} from 'electron'; import retry from 'async-retry'; import ms from 'ms'; // Utilities import autoUpdaterLinux from './auto-updater-linux'; import {getDefaultProfile} from './config'; import {version} from './package.json'; import {getDecoratedConfig} from './plugins'; const {platform} = process; const isLinux = platform === 'linux'; const autoUpdater: AutoUpdater = isLinux ? autoUpdaterLinux : electron.autoUpdater; const getDecoratedConfigWithRetry = async () => { return await retry(() => { const content = getDecoratedConfig(getDefaultProfile()); if (!content) { throw new Error('No config content loaded'); } return content; }); }; const checkForUpdates = async () => { const config = await getDecoratedConfigWithRetry(); if (!config.disableAutoUpdates) { autoUpdater.checkForUpdates(); } }; let isInit = false; // Default to the "stable" update channel let canaryUpdates = false; const buildFeedUrl = (canary: boolean, currentVersion: string) => { const updatePrefix = canary ? 'releases-canary' : 'releases'; const archSuffix = process.arch === 'arm64' || app.runningUnderARM64Translation ? '_arm64' : ''; return `path_to_url{updatePrefix}.hyper.is/update/${isLinux ? 'deb' : platform}${archSuffix}/${currentVersion}`; }; const isCanary = (updateChannel: string) => updateChannel === 'canary'; async function init() { autoUpdater.on('error', (err) => { console.error('Error fetching updates', `${err.message} (${err.stack})`); }); const config = await getDecoratedConfigWithRetry(); // If defined in the config, switch to the "canary" channel if (config.updateChannel && isCanary(config.updateChannel)) { canaryUpdates = true; } const feedURL = buildFeedUrl(canaryUpdates, version); autoUpdater.setFeedURL({url: feedURL}); setTimeout(() => { void checkForUpdates(); }, ms('10s')); setInterval(() => { void checkForUpdates(); }, ms('30m')); isInit = true; } const updater = (win: BrowserWindow) => { if (!isInit) { void init(); } const {rpc} = win; const onupdate = (ev: Event, releaseNotes: string, releaseName: string, date: Date, updateUrl: string) => { const releaseUrl = updateUrl || `path_to_url{releaseName}`; rpc.emit('update available', {releaseNotes, releaseName, releaseUrl, canInstall: !isLinux}); }; if (isLinux) { autoUpdater.on('update-available', onupdate); } else { autoUpdater.on('update-downloaded', onupdate); } rpc.once('quit and install', () => { autoUpdater.quitAndInstall(); }); app.config.subscribe(async () => { const {updateChannel} = await getDecoratedConfigWithRetry(); const newUpdateIsCanary = isCanary(updateChannel); if (newUpdateIsCanary !== canaryUpdates) { const feedURL = buildFeedUrl(newUpdateIsCanary, version); autoUpdater.setFeedURL({url: feedURL}); void checkForUpdates(); canaryUpdates = newUpdateIsCanary; } }); win.on('close', () => { if (isLinux) { autoUpdater.removeListener('update-available', onupdate); } else { autoUpdater.removeListener('update-downloaded', onupdate); } }); }; export default updater; ```
/content/code_sandbox/app/updater.ts
xml
2016-07-01T06:01:21
2024-08-16T16:05:22
hyper
vercel/hyper
43,095
820
```xml type ContentsJsonImageScale = '1x' | '2x' | '3x'; type ContentsJsonImageIdiom = 'iphone' | 'ipad' | 'watchos' | 'ios' | 'ios-marketing' | 'universal'; type ContentsJsonImageAppearance = { appearance: 'luminosity'; value: 'dark'; }; export interface ContentsJsonImage { appearances?: ContentsJsonImageAppearance[]; idiom: ContentsJsonImageIdiom; size?: string; scale?: ContentsJsonImageScale; filename?: string; platform?: ContentsJsonImageIdiom; } export interface ContentsJson { images: ContentsJsonImage[]; info: { version: number; author: string; }; } /** * Writes the Config.json which is used to assign images to their respective platform, dpi, and idiom. * * @param directory path to add the Contents.json to. * @param contents image json data */ export declare function writeContentsJsonAsync(directory: string, { images }: Pick<ContentsJson, 'images'>): Promise<void>; export {}; ```
/content/code_sandbox/packages/expo-asset/plugin/build/AssetContents.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
231
```xml import type { Uri } from 'vscode'; import type { PushFlags } from '../../commands/git/stash'; import { Container } from '../../container'; import { executeGitCommand } from '../actions'; import type { GitStashCommit } from '../models/commit'; import type { GitStashReference } from '../models/reference'; import type { Repository } from '../models/repository'; export function apply(repo?: string | Repository, ref?: GitStashReference) { return executeGitCommand({ command: 'stash', state: { subcommand: 'apply', repo: repo, reference: ref }, }); } export function drop(repo?: string | Repository, refs?: GitStashReference[]) { return executeGitCommand({ command: 'stash', state: { subcommand: 'drop', repo: repo, references: refs }, }); } export function rename(repo?: string | Repository, ref?: GitStashReference, message?: string) { return executeGitCommand({ command: 'stash', state: { subcommand: 'rename', repo: repo, reference: ref, message: message }, }); } export function pop(repo?: string | Repository, ref?: GitStashReference) { return executeGitCommand({ command: 'stash', state: { subcommand: 'pop', repo: repo, reference: ref }, }); } export function push( repo?: string | Repository, uris?: Uri[], message?: string, includeUntracked: boolean = false, keepStaged: boolean = false, onlyStaged: boolean = false, onlyStagedUris?: Uri[], ) { return executeGitCommand({ command: 'stash', state: { subcommand: 'push', repo: repo, uris: uris, onlyStagedUris: onlyStagedUris, message: message, flags: [ ...(includeUntracked ? ['--include-untracked'] : []), ...(keepStaged ? ['--keep-index'] : []), ...(onlyStaged ? ['--staged'] : []), ] as PushFlags[], }, }); } export async function reveal( stash: GitStashReference, options?: { select?: boolean; focus?: boolean; expand?: boolean | number; }, ) { const view = Container.instance.stashesView; const node = view.canReveal ? await view.revealStash(stash, options) : await Container.instance.repositoriesView.revealStash(stash, options); if (node == null) { void view.show({ preserveFocus: !options?.focus }); } return node; } export function showDetailsView( stash: GitStashReference | GitStashCommit, options?: { pin?: boolean; preserveFocus?: boolean }, ): Promise<void> { const { preserveFocus, ...opts } = { ...options, commit: stash }; return Container.instance.commitDetailsView.show({ preserveFocus: preserveFocus }, opts); } ```
/content/code_sandbox/src/git/actions/stash.ts
xml
2016-08-08T14:50:30
2024-08-15T21:25:09
vscode-gitlens
gitkraken/vscode-gitlens
8,889
639
```xml import { TestBed, inject, ComponentFixture, waitForAsync } from "@angular/core/testing"; import { DebugElement } from "@angular/core"; import { UntypedFormGroup, UntypedFormControl } from "@angular/forms"; import { By } from "@angular/platform-browser"; import { DynamicFormService, DynamicRatingModel } from "@ng-dynamic-forms/core"; import { RatingModule } from "ngx-bootstrap/rating"; import { DynamicBootstrapRatingComponent } from "./dynamic-bootstrap-rating.component"; describe("DynamicBootstrapRatingComponent test suite", () => { const testModel = new DynamicRatingModel({id: "rating"}); const formModel = [testModel]; let formGroup: UntypedFormGroup; let fixture: ComponentFixture<DynamicBootstrapRatingComponent>; let component: DynamicBootstrapRatingComponent; let debugElement: DebugElement; let testElement: DebugElement; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [ RatingModule.forRoot(), DynamicBootstrapRatingComponent ] }).compileComponents().then(() => { fixture = TestBed.createComponent(DynamicBootstrapRatingComponent); component = fixture.componentInstance; debugElement = fixture.debugElement; }); })); beforeEach(inject([DynamicFormService], (service: DynamicFormService) => { formGroup = service.createFormGroup(formModel); component.group = formGroup; component.model = testModel; fixture.detectChanges(); testElement = debugElement.query(By.css(`rating[id="${testModel.id}"]`)); })); it("should initialize correctly", () => { expect(component.control instanceof UntypedFormControl).toBe(true); expect(component.group instanceof UntypedFormGroup).toBe(true); expect(component.model instanceof DynamicRatingModel).toBe(true); expect(component.blur).toBeDefined(); expect(component.change).toBeDefined(); expect(component.focus).toBeDefined(); expect(component.onBlur).toBeDefined(); expect(component.onChange).toBeDefined(); expect(component.onFocus).toBeDefined(); expect(component.hasFocus).toBe(false); expect(component.isValid).toBe(true); expect(component.isInvalid).toBe(false); expect(component.showErrorMessages).toBe(false); }); it("should have an rating element", () => { expect(testElement instanceof DebugElement).toBe(true); }); it("should listen to and emit blur event", () => { spyOn(component.blur, "emit"); component.onBlur(null); expect(component.blur.emit).toHaveBeenCalled(); }); it("should emit change event", () => { spyOn(component.change, "emit"); component.onChange(null); expect(component.change.emit).toHaveBeenCalled(); }); it("should listen to and emit focus event", () => { spyOn(component.focus, "emit"); component.onFocus(null); expect(component.focus.emit).toHaveBeenCalled(); }); }); ```
/content/code_sandbox/projects/ng-dynamic-forms/ui-bootstrap/src/lib/rating/dynamic-bootstrap-rating.component.spec.ts
xml
2016-06-01T20:26:33
2024-08-05T16:40:39
ng-dynamic-forms
udos86/ng-dynamic-forms
1,315
576
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ import sdsnansum = require( './index' ); // TESTS // // The function returns a number... { const x = new Float32Array( 10 ); sdsnansum( x.length, x, 1 ); // $ExpectType number } // The compiler throws an error if the function is provided a first argument which is not a number... { const x = new Float32Array( 10 ); sdsnansum( '10', x, 1 ); // $ExpectError sdsnansum( true, x, 1 ); // $ExpectError sdsnansum( false, x, 1 ); // $ExpectError sdsnansum( null, x, 1 ); // $ExpectError sdsnansum( undefined, x, 1 ); // $ExpectError sdsnansum( [], x, 1 ); // $ExpectError sdsnansum( {}, x, 1 ); // $ExpectError sdsnansum( ( x: number ): number => x, x, 1 ); // $ExpectError } // The compiler throws an error if the function is provided a second argument which is not a Float32Array... { const x = new Float32Array( 10 ); sdsnansum( x.length, 10, 1 ); // $ExpectError sdsnansum( x.length, '10', 1 ); // $ExpectError sdsnansum( x.length, true, 1 ); // $ExpectError sdsnansum( x.length, false, 1 ); // $ExpectError sdsnansum( x.length, null, 1 ); // $ExpectError sdsnansum( x.length, undefined, 1 ); // $ExpectError sdsnansum( x.length, [], 1 ); // $ExpectError sdsnansum( x.length, {}, 1 ); // $ExpectError sdsnansum( x.length, ( x: number ): number => x, 1 ); // $ExpectError } // The compiler throws an error if the function is provided a third argument which is not a number... { const x = new Float32Array( 10 ); sdsnansum( x.length, x, '10' ); // $ExpectError sdsnansum( x.length, x, true ); // $ExpectError sdsnansum( x.length, x, false ); // $ExpectError sdsnansum( x.length, x, null ); // $ExpectError sdsnansum( x.length, x, undefined ); // $ExpectError sdsnansum( x.length, x, [] ); // $ExpectError sdsnansum( x.length, x, {} ); // $ExpectError sdsnansum( x.length, x, ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the function is provided an unsupported number of arguments... { const x = new Float32Array( 10 ); sdsnansum(); // $ExpectError sdsnansum( x.length ); // $ExpectError sdsnansum( x.length, x ); // $ExpectError sdsnansum( x.length, x, 1, 10 ); // $ExpectError } // Attached to main export is an `ndarray` method which returns a number... { const x = new Float32Array( 10 ); sdsnansum.ndarray( x.length, x, 1, 0 ); // $ExpectType number } // The compiler throws an error if the `ndarray` method is provided a first argument which is not a number... { const x = new Float32Array( 10 ); sdsnansum.ndarray( '10', x, 1, 0 ); // $ExpectError sdsnansum.ndarray( true, x, 1, 0 ); // $ExpectError sdsnansum.ndarray( false, x, 1, 0 ); // $ExpectError sdsnansum.ndarray( null, x, 1, 0 ); // $ExpectError sdsnansum.ndarray( undefined, x, 1, 0 ); // $ExpectError sdsnansum.ndarray( [], x, 1, 0 ); // $ExpectError sdsnansum.ndarray( {}, x, 1, 0 ); // $ExpectError sdsnansum.ndarray( ( x: number ): number => x, x, 1, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a second argument which is not a Float32Array... { const x = new Float32Array( 10 ); sdsnansum.ndarray( x.length, 10, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, '10', 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, true, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, false, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, null, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, undefined, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, [], 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, {}, 1, 0 ); // $ExpectError sdsnansum.ndarray( x.length, ( x: number ): number => x, 1, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a third argument which is not a number... { const x = new Float32Array( 10 ); sdsnansum.ndarray( x.length, x, '10', 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, true, 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, false, 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, null, 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, undefined, 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, [], 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, {}, 0 ); // $ExpectError sdsnansum.ndarray( x.length, x, ( x: number ): number => x, 0 ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a number... { const x = new Float32Array( 10 ); sdsnansum.ndarray( x.length, x, 1, '10' ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, true ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, false ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, null ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, undefined ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, [] ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, {} ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the `ndarray` method is provided an unsupported number of arguments... { const x = new Float32Array( 10 ); sdsnansum.ndarray(); // $ExpectError sdsnansum.ndarray( x.length ); // $ExpectError sdsnansum.ndarray( x.length, x ); // $ExpectError sdsnansum.ndarray( x.length, x, 1 ); // $ExpectError sdsnansum.ndarray( x.length, x, 1, 0, 10 ); // $ExpectError } ```
/content/code_sandbox/lib/node_modules/@stdlib/blas/ext/base/sdsnansum/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
1,803
```xml import type IMetricsRequestService from './types/IMetricsRequestService'; export default class MetricsBase { protected requestService: IMetricsRequestService; constructor(requestService: IMetricsRequestService) { this.requestService = requestService; } public init({ uid, clientID, appVersion }: { uid: string; clientID: string; appVersion: string }) { this.setAuthHeaders(uid); this.setVersionHeaders(clientID, appVersion); } public setVersionHeaders(clientID: string, appVersion: string) { this.requestService.api.setVersionHeaders(clientID, appVersion); } public setAuthHeaders(uid: string, accessToken?: string) { this.requestService.api.setAuthHeaders(uid, accessToken); } public clearAuthHeaders() { this.requestService.api.setAuthHeaders(''); } public setReportMetrics(reportMetrics: boolean) { this.requestService.setReportMetrics(reportMetrics); } public processAllRequests() { return this.requestService.processAllRequests(); } public stopBatchingProcess() { return this.requestService.stopBatchingProcess(); } public startBatchingProcess() { return this.requestService.startBatchingProcess(); } } ```
/content/code_sandbox/packages/metrics/lib/MetricsBase.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
261
```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleIdentifier</key> <string>xamarin.ios.xtest</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>XTest</string> <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleShortVersionString</key> <string>1.0</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> <string>3.12</string> <key>NSPrincipalClass</key> <string></string> <key>CFBundleExecutable</key> <string>XTest</string> <key>BuildMachineOSBuild</key> <string>13F34</string> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleSupportedPlatforms</key> <array> <string>WatchOS</string> </array> <key>DTCompiler</key> <string>com.apple.compilers.llvm.clang.1_0</string> <key>DTPlatformBuild</key> <string>12D508</string> <key>DTPlatformName</key> <string>watchos</string> <key>DTPlatformVersion</key> <string>2.0</string> <key>DTSDKBuild</key> <string>12D508</string> <key>DTSDKName</key> <string>watchos2.0</string> <key>DTXcode</key> <string>0620</string> <key>DTXcodeBuild</key> <string>6C131e</string> <key>MinimumOSVersion</key> <string>4.0</string> <key>UIDeviceFamily</key> <array> <integer>4</integer> </array> </dict> </plist> ```
/content/code_sandbox/tests/test-libraries/XTest-Info-watchsimulator.plist
xml
2016-04-20T18:24:26
2024-08-16T13:29:19
xamarin-macios
xamarin/xamarin-macios
2,436
533
```xml import * as hid from './hid'; import * as fs from "fs"; import Cloud = pxt.Cloud; import U = pxt.Util; import D = pxt.HWDBG; export function startAsync(compileRes: pxtc.CompileResult) { return hid.initAsync() .then(d => { hid.connectSerial(d) D.postMessage = msg => { if (msg.subtype != "breakpoint") { console.log(msg) return } let bmsg = msg as pxsim.DebuggerBreakpointMessage console.log("GLOBALS", bmsg.globals) for (let s of bmsg.stackframes) console.log(s.funcInfo.functionName, s.locals) let brkMatch = compileRes.breakpoints.filter(b => b.id == bmsg.breakpointId)[0] if (!brkMatch) { console.log("Invalid breakpoint ID", msg) return } let lines = fs.readFileSync(brkMatch.fileName, "utf8").split(/\n/) console.log(">>>", lines.slice(brkMatch.line, brkMatch.endLine + 1).join(" ;; ")) U.delay(500) .then(() => D.resumeAsync(false)) } return D.startDebugAsync(compileRes, d) }) } ```
/content/code_sandbox/cli/clidbg.ts
xml
2016-01-24T19:35:52
2024-08-16T16:39:39
pxt
microsoft/pxt
2,069
275
```xml #!/usr/bin/env -S node --no-warnings --loader ts-node/esm /** * Wechaty Chatbot SDK - path_to_url * * @copyright 2016 Huan LI () <path_to_url and * Wechaty Contributors <path_to_url * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ import { test, sinon, } from 'tstest' import type * as PUPPET from 'wechaty-puppet' import { PuppetMock } from 'wechaty-puppet-mock' import { WechatyBuilder } from '../wechaty-builder.js' import type { RoomImpl, RoomProtectedProperty, } from './room.js' test('findAll()', async t => { const EXPECTED_ROOM_ID = 'test-id' const EXPECTED_ROOM_TOPIC = 'test-topic' const EXPECTED_ROOM_ID_LIST = [ EXPECTED_ROOM_ID ] const sandbox = sinon.createSandbox() const puppet = new PuppetMock() const wechaty = WechatyBuilder.build({ puppet }) await wechaty.start() sandbox.stub(puppet, 'roomSearch').resolves(EXPECTED_ROOM_ID_LIST) sandbox.stub(puppet, 'roomPayload').callsFake(async () => { await new Promise(resolve => setImmediate(resolve)) return { topic: EXPECTED_ROOM_TOPIC, } as PUPPET.payloads.Room }) const roomList = await wechaty.Room.findAll() t.equal(roomList.length, 1, 'should find 1 room') t.equal(await roomList[0]!.topic(), EXPECTED_ROOM_TOPIC, 'should get topic from payload') await wechaty.stop() }) test('room.say() smoke testing', async () => { const sandbox = sinon.createSandbox() const callback = sinon.spy() const puppet = new PuppetMock() const wechaty = WechatyBuilder.build({ puppet }) const bot = puppet.mocker.createContact() puppet.mocker.login(bot) await wechaty.start() const EXPECTED_ROOM_ID = 'roomId' const EXPECTED_ROOM_TOPIC = 'test-topic' const EXPECTED_CONTACT_1_ID = 'contact1' const EXPECTED_CONTACT_1_ALIAS = 'little1' const EXPECTED_CONTACT_2_ID = 'contact2' const EXPECTED_CONTACT_2_ALIAS = 'big2' const CONTACT_MAP: { [contactId: string]: string } = {} CONTACT_MAP[EXPECTED_CONTACT_1_ID] = EXPECTED_CONTACT_1_ALIAS CONTACT_MAP[EXPECTED_CONTACT_2_ID] = EXPECTED_CONTACT_2_ALIAS sandbox.stub(puppet, 'roomMemberPayload').callsFake(async (_, contactId) => { await new Promise(resolve => setImmediate(resolve)) return { id: contactId, roomAlias: CONTACT_MAP[contactId], } as PUPPET.payloads.RoomMember }) sandbox.stub(puppet, 'roomPayload').callsFake(async () => { await new Promise(resolve => setImmediate(resolve)) return { topic: EXPECTED_ROOM_TOPIC, } as PUPPET.payloads.Room }) sandbox.stub(puppet, 'contactPayload').callsFake(async (contactId) => { await new Promise(resolve => setImmediate(resolve)) return { id: contactId, } as PUPPET.payloads.Contact }) // sandbox.spy(puppet, 'messageSendText') sandbox.stub(puppet, 'messageSendText').callsFake(callback) const fakeIdSearcher = async (...args: any[]) => { await new Promise(setImmediate) return [ args[0].id ] } sandbox.stub(puppet, 'contactSearch').callsFake(fakeIdSearcher) sandbox.stub(puppet, 'roomSearch').callsFake(fakeIdSearcher) const room = await wechaty.Room.find({ id: EXPECTED_ROOM_ID }) const contact1 = await wechaty.Contact.find({ id: EXPECTED_CONTACT_1_ID }) const contact2 = await wechaty.Contact.find({ id: EXPECTED_CONTACT_2_ID }) if (!room || !contact1 || !contact2) { throw new Error('find by id: not found') } // await contact1.sync() // await contact2.sync() // await room.sync() test('say with Tagged Template', async t => { callback.resetHistory() await room.say`To be ${contact1} or not to be ${contact2}` t.same(callback.getCall(0).args, [ // { contactId: EXPECTED_CONTACT_1_ID, roomId: EXPECTED_ROOM_ID }, EXPECTED_ROOM_ID, 'To be @little1 or not to be @big2', [ EXPECTED_CONTACT_1_ID, EXPECTED_CONTACT_2_ID ], ], 'Tagged Template say should be matched') }) test('say with regular mention contact', async t => { callback.resetHistory() await room.say('Yo', contact1) t.same(callback.getCall(0).args, [ // { contactId: EXPECTED_CONTACT_1_ID, roomId: EXPECTED_ROOM_ID }, EXPECTED_ROOM_ID, '@little1 Yo', [ EXPECTED_CONTACT_1_ID ], ], 'Single mention should work with old ways') }) test('say with multiple mention contact', async t => { callback.resetHistory() await room.say('hey buddies, let\'s party', contact1, contact2) t.same(callback.getCall(0).args, [ // { contactId: EXPECTED_CONTACT_1_ID, roomId: EXPECTED_ROOM_ID }, EXPECTED_ROOM_ID, '@little1@big2 hey buddies, let\'s party', [ EXPECTED_CONTACT_1_ID, EXPECTED_CONTACT_2_ID ], ], 'Multiple mention should work with new way') }) await wechaty.stop() }) test('ProtectedProperties', async t => { type NotExistInWechaty = Exclude<RoomProtectedProperty, keyof RoomImpl> type NotExistTest = NotExistInWechaty extends never ? true : false const noOneLeft: NotExistTest = true t.ok(noOneLeft, 'should match Wechaty properties for every protected property') }) ```
/content/code_sandbox/src/user-modules/room.spec.ts
xml
2016-05-01T14:36:45
2024-08-16T17:27:03
wechaty
wechaty/wechaty
19,828
1,380
```xml export const version = "4.8.1"; ```
/content/code_sandbox/test/extract/resolve/__mocks__/ts-config-with-path-correct-resolution-prio/src/aliassed/js-before-ts.ts
xml
2016-11-20T20:05:37
2024-08-16T08:58:52
dependency-cruiser
sverweij/dependency-cruiser
5,116
12
```xml // The Redux maintainers have deprecated "createStore" to push everyone to use Redux Toolkit :/ // so we must import `createStore` as `legacy_createStore` import { legacy_createStore as reduxCreateStore, applyMiddleware, compose } from 'redux' import type { Store, StoreEnhancer } from 'redux' import { createReduxStoreReducer, initRootReducerTree } from './reducer' import { runPlugins } from './plugins' import { getContext } from './context' import { CreateStoreOptions } from '../types' import { isPaused } from '../react/hooks' const reduxDevToolsCompose = typeof window !== 'undefined' && (window as any)['__REDUX_DEVTOOLS_EXTENSION_COMPOSE__'] ? (window as any)['__REDUX_DEVTOOLS_EXTENSION_COMPOSE__'] : compose const createDefaultOptions = (): CreateStoreOptions => ({ paths: [], reducers: {}, preloadedState: undefined, middleware: [], compose: reduxDevToolsCompose, enhancers: [], plugins: [], }) export function createStore(opts = {}): Store | void { const context = getContext() if (!context) { console.error('[KEA] Can not create a store without a Kea context.') return } if (context['__store']) { console.error('[KEA] Already attached to a store! Exiting. Please reset the kea context before creating a store.') return } // clone options const options = { ...createDefaultOptions(), ...opts } // clone redux reducers context.reducers.redux = { ...options.reducers } // run pre-hooks runPlugins('beforeReduxStore', options) // combine middleware into the first enhancer if (options.middleware.length > 0) { options.enhancers = ([applyMiddleware(...options.middleware)] as StoreEnhancer[]).concat(options.enhancers) } // use a special compose function? const composeEnhancer: typeof compose = options.compose || compose // create the store creator const finalCreateStore = composeEnhancer( pauseListenersEnhancer, ...options.enhancers, )(reduxCreateStore) as typeof reduxCreateStore // if we are whitelisting paths if (options.paths && options.paths.length > 0) { context.reducers.whitelist = {} options.paths.forEach((pathStart) => { ;(context.reducers.whitelist as Record<string, any>)[pathStart] = true initRootReducerTree(pathStart) }) } else { initRootReducerTree('kea') } // create store const store = finalCreateStore(createReduxStoreReducer(), { ...options.preloadedState }) context['__store'] = store // run post-hooks runPlugins('afterReduxStore', options, store) return store } /** Pauses Redux listeners when a logic is mounting, to avoid early re-renders from React */ export const pauseListenersEnhancer: StoreEnhancer = (createStore) => (reducer, initialState) => { const store = createStore(reducer, initialState) const storeSubscribe = store.subscribe store.subscribe = (observer) => { const pausedObserver = () => { if (!isPaused()) { observer() } } return storeSubscribe(pausedObserver) } return store } ```
/content/code_sandbox/src/kea/store.ts
xml
2016-03-29T08:30:54
2024-08-10T20:41:40
kea
keajs/kea
1,933
720
```xml export * from './Subtitle2'; export { subtitle2ClassNames } from './useSubtitle2Styles.styles'; ```
/content/code_sandbox/packages/react-components/react-text/library/src/components/presets/Subtitle2/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
23
```xml import { ColumnDef, flexRender, getCoreRowModel, OnChangeFn, PaginationOptions, PaginationState, SortingState, useReactTable, } from '@tanstack/react-table' import { Filters } from '../api/types' import { DebouncedInput } from './debouncedInput' export const DEFAULT_PAGE_INDEX = 0 export const DEFAULT_PAGE_SIZE = 10 type Props<T extends Record<string, string | number>> = { data: T[] columns: ColumnDef<T>[] pagination: PaginationState paginationOptions: Pick<PaginationOptions, 'onPaginationChange' | 'rowCount'> filters: Filters<T> onFilterChange: (dataFilters: Partial<T>) => void sorting: SortingState onSortingChange: OnChangeFn<SortingState> } export default function Table<T extends Record<string, string | number>>({ data, columns, pagination, paginationOptions, filters, onFilterChange, sorting, onSortingChange, }: Props<T>) { const table = useReactTable({ data, columns, state: { pagination, sorting }, onSortingChange, ...paginationOptions, manualFiltering: true, manualSorting: true, manualPagination: true, getCoreRowModel: getCoreRowModel(), }) return ( <div> <table> <thead> {table.getHeaderGroups().map(headerGroup => ( <tr key={headerGroup.id}> {headerGroup.headers.map(header => { const fieldMeta = header.column.columnDef.meta return ( <th key={header.id} colSpan={header.colSpan}> {header.isPlaceholder ? null : ( <> <div {...{ className: header.column.getCanSort() ? 'cursor-pointer select-none' : '', onClick: header.column.getToggleSortingHandler(), }} > {flexRender( header.column.columnDef.header, header.getContext() )} {{ asc: ' ', desc: ' ', false: ' ', }[header.column.getIsSorted() as string] ?? null} </div> {header.column.getCanFilter() && fieldMeta?.filterKey !== undefined ? ( <DebouncedInput className="w-36 border shadow rounded" onChange={value => { onFilterChange({ [fieldMeta.filterKey as keyof T]: value, } as Partial<T>) }} placeholder="Search..." type={ fieldMeta.filterVariant === 'number' ? 'number' : 'text' } value={filters[fieldMeta.filterKey] ?? ''} /> ) : null} </> )} </th> ) })} </tr> ))} </thead> <tbody> {table.getRowModel().rows.map(row => { return ( <tr key={row.id}> {row.getVisibleCells().map(cell => { return ( <td key={cell.id}> {flexRender( cell.column.columnDef.cell, cell.getContext() )} </td> ) })} </tr> ) })} </tbody> </table> <div className="flex items-center gap-2 my-2"> <button className="border rounded p-1 disabled:text-gray-500 disabled:cursor-not-allowed" onClick={() => table.setPageIndex(0)} disabled={!table.getCanPreviousPage()} > {'<<'} </button> <button className="border rounded p-1 disabled:text-gray-500 disabled:cursor-not-allowed" onClick={() => table.previousPage()} disabled={!table.getCanPreviousPage()} > {'<'} </button> <button className="border rounded p-1 disabled:text-gray-500 disabled:cursor-not-allowed" onClick={() => table.nextPage()} disabled={!table.getCanNextPage()} > {'>'} </button> <button className="border rounded p-1 disabled:text-gray-500 disabled:cursor-not-allowed" onClick={() => table.setPageIndex(table.getPageCount() - 1)} disabled={!table.getCanNextPage()} > {'>>'} </button> <span className="flex items-center gap-1"> <div>Page</div> <strong> {table.getState().pagination.pageIndex + 1} of{' '} {table.getPageCount()} </strong> </span> <span className="flex items-center gap-1"> | Go to page: <input type="number" value={table.getState().pagination.pageIndex + 1} onChange={e => { const page = e.target.value ? Number(e.target.value) - 1 : 0 table.setPageIndex(page) }} className="border p-1 rounded w-16" /> </span> <select value={table.getState().pagination.pageSize} onChange={e => { table.setPageSize(Number(e.target.value)) }} > {[10, 20, 30, 40, 50].map(pageSize => ( <option key={pageSize} value={pageSize}> Show {pageSize} </option> ))} </select> </div> </div> ) } ```
/content/code_sandbox/examples/react/query-router-search-params/src/components/table.tsx
xml
2016-10-20T17:25:08
2024-08-16T17:23:37
table
TanStack/table
24,696
1,156
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <PackageReference Include="AWSSDK.Core" Version="3.7.2.7" /> <PackageReference Include="AWSSDK.Kinesis" Version="3.7.0.55" /> <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> </ItemGroup> </Project> ```
/content/code_sandbox/dotnetv3/Kinesis/ListStreamsExample/ListStreamsExample/ListStreamsExample.csproj
xml
2016-08-18T19:06:57
2024-08-16T18:59:44
aws-doc-sdk-examples
awsdocs/aws-doc-sdk-examples
9,298
160
```xml import { SelectWithSearch } from '@erxes/ui/src'; import { IOption, IQueryParams } from '@erxes/ui/src/types'; import React from 'react'; import { queries } from '../graphql'; import { IContractType } from '../types'; // get contractType options for react-select export function generateContractTypeOptions( array: IContractType[] = [], useFields?: string[] ): IOption[] { return array.map(item => { const contractType = item || ({} as IContractType); ContractTypeById[contractType._id] = contractType; return { value: contractType._id, label: `${contractType.code || ''} - ${contractType.name || ''}` }; }); } export let ContractTypeById = {}; export default ({ queryParams, onSelect, value, multi = true, label, name, disabled }: { queryParams?: IQueryParams; label: string; onSelect: (value: string[] | string, name: string) => void; multi?: boolean; customOption?: IOption; value?: string | string[]; name: string; disabled?: boolean; }) => { const defaultValue = queryParams ? queryParams[name] : value; return ( <SelectWithSearch label={label} queryName="savingsContractTypes" name={name} disabled={disabled} initialValue={defaultValue} generateOptions={generateContractTypeOptions} onSelect={onSelect} customQuery={queries.contractTypes} multi={multi} /> ); }; ```
/content/code_sandbox/packages/plugin-savings-ui/src/contractTypes/containers/SelectContractType.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
340
```xml export interface Errors { errors: { [key: string]: string }; } ```
/content/code_sandbox/src/app/core/models/errors.model.ts
xml
2016-09-22T19:46:14
2024-08-14T05:18:19
angular-realworld-example-app
gothinkster/angular-realworld-example-app
5,179
17
```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url"> <modelVersion>4.0.0</modelVersion> <groupId>com.yahoo.vespa</groupId> <artifactId>vespa</artifactId> <packaging>pom</packaging> <version>8-SNAPSHOT</version> <description>Aggregator pom for vespa.</description> <url>path_to_url <licenses> <license> <url>path_to_url </license> </licenses> <developers> <developer> <name>Vespa</name> <url>path_to_url </developer> </developers> <modules> <module>application</module> <module>application-model</module> <module>bundle-plugin-test</module> <module>client</module> <module>cloud-tenant-base</module> <module>cloud-tenant-base-dependencies-enforcer</module> <module>cloud-tenant-cd</module> <module>clustercontroller-apps</module> <module>clustercontroller-core</module> <module>clustercontroller-reindexer</module> <module>clustercontroller-utils</module> <module>component</module> <module>config-application-package</module> <module>configdefinitions</module> <module>config-bundle</module> <module>config-lib</module> <module>config-model-api</module> <module>config-model-fat</module> <module>config-model</module> <module>config</module> <module>config-provisioning</module> <module>config-proxy</module> <module>configserver</module> <module>configserver-flags</module> <module>container</module> <module>container-apache-http-client-bundle</module> <module>container-core</module> <module>container-dependencies-enforcer</module> <module>container-dependency-versions</module> <module>container-dev</module> <module>container-disc</module> <module>container-documentapi</module> <module>container-llama</module> <module>container-messagebus</module> <module>container-onnxruntime</module> <module>container-search-and-docproc</module> <module>container-search</module> <module>container-spifly</module> <module>container-test</module> <module>defaults</module> <module>dependency-versions</module> <module>docproc</module> <module>docprocs</module> <module>document</module> <module>documentapi</module> <module>documentapi-dependencies</module> <module>documentgen-test</module> <module>fat-model-dependencies</module> <module>fileacquirer</module> <module>filedistribution</module> <module>flags</module> <module>fsa</module> <module>hosted-api</module> <module>hosted-tenant-base</module> <module>hosted-zone-api</module> <module>http-client</module> <module>http-utils</module> <module>indexinglanguage</module> <!--<module>integration/intellij</module>--> <module>jaxrs_utils</module> <module>jdisc-cloud-aws</module> <module>jdisc-security-filters</module> <module>jdisc_core</module> <module>jdisc_core_test</module> <module>jrt</module> <module>linguistics</module> <module>linguistics-components</module> <module>logd</module> <module>logserver</module> <module>lucene-linguistics</module> <module>messagebus</module> <module>metrics</module> <module>metrics-proxy</module> <module>model-evaluation</module> <module>model-integration</module> <module>node-repository</module> <module>opennlp-linguistics</module> <module>orchestrator-restapi</module> <module>orchestrator</module> <module>parent</module> <module>predicate-search</module> <module>predicate-search-core</module> <module>provided-dependencies</module> <module>routing-generator</module> <module>searchcore</module> <module>searchlib</module> <module>searchsummary</module> <module>security-utils</module> <module>service-monitor</module> <module>socket_test</module> <module>standalone-container</module> <module>storage</module> <module>streamingvisitors</module> <module>tenant-cd-api</module> <module>tenant-cd-commons</module> <module>testutil</module> <module>vdslib</module> <module>vespaclient-core</module> <module>vespaclient-container-plugin</module> <module>vespaclient-java</module> <module>vespa-athenz</module> <module>vespa-dependencies-enforcer</module> <module>vespa-documentgen-plugin</module> <module>vespa-feed-client</module> <module>vespa-feed-client-api</module> <module>vespa-feed-client-cli</module> <module>vespa-maven-plugin</module> <module>vespa-osgi-testrunner</module> <module>vespa-testrunner-components</module> <module>vespa-3party-bundles</module> <module>vespa-3party-jars</module> <module>vespajlib</module> <module>vespalog</module> <module>zkfacade</module> <module>zookeeper-client-common</module> <module>zookeeper-command-line-client</module> <module>zookeeper-common</module> <module>zookeeper-server</module> </modules> <properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.javadoc.skip>true</maven.javadoc.skip> </properties> </project> ```
/content/code_sandbox/pom.xml
xml
2016-06-03T20:54:20
2024-08-16T15:32:01
vespa
vespa-engine/vespa
5,524
1,431
```xml // See LICENSE in the project root for license information. import { Colorize } from '@rushstack/terminal'; import type { EventHooks } from '../api/EventHooks'; import { type IEnvironment, Utilities } from '../utilities/Utilities'; import { Event } from '../api/EventHooks'; import { Stopwatch } from '../utilities/Stopwatch'; import type { RushConfiguration } from '../api/RushConfiguration'; import { EnvironmentVariableNames } from '../api/EnvironmentConfiguration'; export class EventHooksManager { private _rushConfiguration: RushConfiguration; private _eventHooks: EventHooks; private _commonTempFolder: string; public constructor(rushConfiguration: RushConfiguration) { this._rushConfiguration = rushConfiguration; this._eventHooks = rushConfiguration.eventHooks; this._commonTempFolder = rushConfiguration.commonTempFolder; } public handle(event: Event, isDebug: boolean, ignoreHooks: boolean): void { if (!this._eventHooks) { return; } const scripts: string[] = this._eventHooks.get(event); if (scripts.length > 0) { if (ignoreHooks) { // eslint-disable-next-line no-console console.log(`Skipping event hooks for ${Event[event]} since --ignore-hooks was specified`); return; } const stopwatch: Stopwatch = Stopwatch.start(); // eslint-disable-next-line no-console console.log('\n' + Colorize.green(`Executing event hooks for ${Event[event]}`)); const printEventHooksOutputToConsole: boolean | undefined = isDebug || this._rushConfiguration.experimentsConfiguration.configuration.printEventHooksOutputToConsole; scripts.forEach((script) => { try { const environment: IEnvironment = { ...process.env }; // NOTE: Do NOT expose this variable to other subprocesses besides telemetry hooks. We do NOT want // child processes to inspect Rush's raw command line and magically change their behavior in a way // that might be confusing to end users, or rely on CLI parameters that the build cache is unaware of. environment[EnvironmentVariableNames.RUSH_INVOKED_ARGS] = JSON.stringify(process.argv); Utilities.executeLifecycleCommand(script, { rushConfiguration: this._rushConfiguration, workingDirectory: this._rushConfiguration.rushJsonFolder, initCwd: this._commonTempFolder, handleOutput: !printEventHooksOutputToConsole, initialEnvironment: environment, environmentPathOptions: { includeRepoBin: true } }); } catch (error) { // eslint-disable-next-line no-console console.error( '\n' + Colorize.yellow( `Event hook "${script}" failed: ${error}\nRun "rush" with --debug` + ` to see detailed error information.` ) ); if (isDebug) { // eslint-disable-next-line no-console console.error('\n' + (error as Error).message); } } }); stopwatch.stop(); // eslint-disable-next-line no-console console.log('\n' + Colorize.green(`Event hooks finished. (${stopwatch.toString()})`)); } } } ```
/content/code_sandbox/libraries/rush-lib/src/logic/EventHooksManager.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
673
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <style name="CustomText"> <item name="android:textSize">@dimen/welcome_text_size</item> </style> <style name="CustomText.Prickly"> <item name="android:textColor">@color/prickly_green</item> </style> <style name="CustomText.Unused"> <item name="android:textColor">#0000ff</item> </style> <style name="ThemeA"> <item name="themePadding">4dp</item> <item name="themeColor">#9C27B0</item> </style> <style name="ThemeB"> <item name="themePadding">24dp</item> <item name="themeColor">#E91E63</item> </style> <style name="ThemeUnused"> <item name="themePadding">40dp</item> <item name="themeColor">#00FF00</item> </style> <style name="DupTheme1"> </style> <style name="DupTheme2"> </style> <style name="StyleNotSorted"> <item name="android:textColor">#0000ff</item> <item name="android:padding">30dp</item> </style> <style name="StyleSorted"> <item name="android:padding">30dp</item> <item name="android:textColor">#0000ff</item> </style> <style name="ThemeDifferentA"> <item name="themePadding">24dp</item> <item name="themeColor">#CCCCCC</item> <item name="themeColor">#E91E63</item> </style> <style name="ThemeDifferentB"> <item name="themePadding">24dp</item> <item name="themeColor">#E91E63</item> <item name="themeColor">#CCCCCC</item> </style> </resources> ```
/content/code_sandbox/test/samples/bundles/res/values/styles.xml
xml
2016-03-24T18:26:35
2024-08-16T16:00:20
redex
facebook/redex
6,016
446
```xml <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> <Nullable>enable</Nullable> <NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">True</NoDefaultLaunchSettingsFile> <RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.Api1</RootNamespace> </PropertyGroup> <ItemGroup> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" /> </ItemGroup> </Project> ```
/content/code_sandbox/src/ApiTemplate/templates/ApiTemplate/Company.Api1.csproj
xml
2016-10-10T21:02:00
2024-08-13T18:02:26
AspLabs
aspnet/AspLabs
1,224
133
```xml // This is a hack to have the import sort prettier plugin respect that the .scss file gets imported first // so that local css imports from components would not be ordered before the main import import './app.scss' ```
/content/code_sandbox/applications/docs-editor/src/app/style.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
46
```xml // TODO: drop pmcrypto import, see path_to_url // eslint-disable-next-line no-restricted-imports import { parseMail } from 'pmcrypto-v6-canary/lib/message/parseMail'; /** * Overwrites the headers in baseHeader by the headers defined in extraHeaders. */ export const combineHeaders = async (baseHeader: string, extraHeaders: string) => { const { headers: parsedExtras } = await parseMail(extraHeaders); const extraHeaderKeys = Object.keys(parsedExtras); return extraHeaderKeys.reduce((inputHeader, key) => { const capsKey = key.replace(/(^|-)./g, (letter) => letter.toUpperCase()); const values = parsedExtras[key]; const headerLine = values.map((val) => `${capsKey}: ${val}`).join('\r\n'); const outputHeader = inputHeader.replace(new RegExp(`^${key}:.*(?=$[^ ])`, 'im'), headerLine); if (outputHeader.indexOf(capsKey) === -1) { return `${inputHeader + headerLine}\r\n`; } return outputHeader; }, baseHeader); }; /** * Splits the mail into header and body. */ export const splitMail = (mail: string) => { // double new line separates message body and the headers const headersEnd = mail.search(/\r?\n\r?\n/); if (headersEnd === -1) { return { headers: mail, body: '' }; } const headers = mail.substring(0, headersEnd); // remove leading newlines const body = mail.substring(headersEnd).trimStart(); return { headers, body }; }; ```
/content/code_sandbox/applications/mail/src/app/helpers/mail.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
353
```xml import { HierarchyRectangularNode } from "d3-hierarchy"; import { ModuleTree, ModuleTreeLeaf } from "../shared/types"; export type CssColor = string; export const COLOR_DEFAULT_FILE: CssColor = "#db7100"; export const COLOR_DEFAULT_OWN_SOURCE: CssColor = "#487ea4"; export const COLOR_DEFAULT_VENDOR_SOURCE: CssColor = "#599e59"; export const COLOR_BASE: CssColor = "#cecece"; const colorDefault = (node: HierarchyRectangularNode<ModuleTree | ModuleTreeLeaf>): CssColor => { if (node.children && node.children.length) { const parents = node.ancestors(); const hasNodeModules = parents.some(({ data: { name } }) => name === "node_modules"); return hasNodeModules ? COLOR_DEFAULT_VENDOR_SOURCE : COLOR_DEFAULT_OWN_SOURCE; } else { return COLOR_DEFAULT_FILE; } }; export default colorDefault; ```
/content/code_sandbox/src/color.ts
xml
2016-10-25T16:11:55
2024-08-16T06:59:38
rollup-plugin-visualizer
btd/rollup-plugin-visualizer
1,845
197
```xml <?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="path_to_url" xmlns:tools="path_to_url" xmlns:app="path_to_url" android:id="@+id/quote_container" android:layout_width="wrap_content" android:layout_height="wrap_content" android:visibility="gone" tools:visibility="visible"> <LinearLayout android:id="@+id/quote_main" android:padding="6dp" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <ImageView android:id="@+id/quote_bar" android:layout_width="@dimen/quote_corner_radius_bottom" android:layout_height="match_parent" android:background="@color/unknown_sender" tools:tint="@color/unknown_sender" /> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:orientation="vertical" android:layout_weight="1"> <org.thoughtcrime.securesms.components.emoji.EmojiTextView android:id="@+id/quote_author" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/Signal.Text.Caption" android:textColor="@color/core_black" android:textStyle="bold" android:maxLines="1" android:ellipsize="end" tools:visibility="gone" tools:text="Peter Parker" /> <org.thoughtcrime.securesms.components.emoji.EmojiTextView android:id="@+id/quote_text" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/Signal.Text.Quote" android:ellipsize="end" tools:text="With great power comes great responsibility." tools:visibility="visible" /> </LinearLayout> <LinearLayout android:id="@+id/quote_attachment_container" android:layout_width="35dp" android:layout_height="35dp" android:orientation="horizontal" android:gravity="center" android:layout_gravity="center" android:visibility="gone" tools:visibility="visible"> <org.thoughtcrime.securesms.components.CircleColorImageView android:id="@+id/quote_attachment_icon" android:layout_width="40dp" android:layout_height="40dp" android:contentDescription="@string/file" android:scaleType="center" android:src="@drawable/ic_insert_drive_file_white_24dp" android:scaleY="0.875" android:scaleX="0.875" app:circleColor="@color/document_icon" /> </LinearLayout> <FrameLayout android:layout_width="wrap_content" android:layout_height="match_parent"> <ImageView android:id="@+id/quote_thumbnail" android:layout_width="@dimen/quote_thumb_size" android:layout_height="match_parent" android:scaleType="centerCrop" android:visibility="gone" tools:visibility="gone" /> <FrameLayout android:id="@+id/quote_video_overlay" android:layout_width="32dp" android:layout_height="32dp" android:background="@drawable/circle_universal_overlay" android:layout_gravity="center" android:longClickable="false" android:visibility="gone" tools:visibility="gone"> <ImageView android:layout_width="13dp" android:layout_height="16dp" android:layout_marginStart="11dp" android:layout_marginTop="8dp" android:scaleType="fitXY" app:srcCompat="@drawable/triangle_right" android:layout_marginLeft="11dp" /> </FrameLayout> </FrameLayout> <ImageView android:id="@+id/quote_dismiss" android:layout_width="wrap_content" android:layout_height="match_parent" android:paddingLeft="6dp" android:paddingRight="6dp" android:layout_gravity="center|end" android:background="@drawable/dismiss_background" android:src="@drawable/ic_close_white_18dp" android:tint="?quote_dismiss_button_tint" android:contentDescription="@string/cancel" /> </LinearLayout> </merge> ```
/content/code_sandbox/src/main/res/layout/quote_view.xml
xml
2016-07-03T07:32:36
2024-08-16T16:51:15
deltachat-android
deltachat/deltachat-android
1,082
1,067
```xml import { useEffect, useState } from 'react'; import { useLoading } from '@proton/hooks'; import { Api } from '@proton/shared/lib/interfaces'; import noop from '@proton/utils/noop'; import { AmountAndCurrency, CardModel, CardPaymentProcessor, CardPaymentProcessorState, ChargeablePaymentParameters, PaymentVerificator, getErrors, } from '../core'; import { PaymentProcessorHook, PaymentProcessorType } from './interface'; import { usePaymentProcessor } from './usePaymentProcessor'; export type CardFieldStatus = { number: boolean; month: boolean; year: boolean; cvc: boolean; zip: boolean; country: boolean; }; export const getInitialFieldStatus = (): CardFieldStatus => ({ number: true, month: true, year: true, cvc: true, zip: true, country: true, }); export interface Dependencies { api: Api; verifyPayment: PaymentVerificator; } export interface Props { amountAndCurrency: AmountAndCurrency; initialCard?: CardModel; onChargeable?: (data: ChargeablePaymentParameters) => Promise<unknown>; verifyOnly?: boolean; onProcessPaymentToken?: (paymentMethodType: PaymentProcessorType) => void; onProcessPaymentTokenFailed?: (paymentMethodType: PaymentProcessorType) => void; } export type CardProcessorHook = PaymentProcessorHook & { card: CardModel; fieldsStatus: CardFieldStatus; setCardProperty: (key: keyof CardModel, value: any) => void; paymentProcessor: CardPaymentProcessor; errors: Record<string, string>; submitted: boolean; }; /** * React wrapper for {@link CardPaymentProcessor}. It provides a set of proxies and also some additional functionality * like `processPaymentToken` method that supposed to be the main action. It also provides some data usefull for * the credit card component. */ export const useCard = ( { amountAndCurrency, initialCard, verifyOnly, onChargeable, onProcessPaymentToken, onProcessPaymentTokenFailed, }: Props, { api, verifyPayment }: Dependencies ): CardProcessorHook => { const [errors, setErrors] = useState<Record<string, string>>({}); const [submitted, setSubmitted] = useState(false); const paymentProcessor = usePaymentProcessor( () => new CardPaymentProcessor(verifyPayment, api, amountAndCurrency, !!verifyOnly, onChargeable) ); const [card, setCard] = useState(paymentProcessor.card); const [fetchingToken, withFetchingToken] = useLoading(); const [verifyingToken, withVerifyingToken] = useLoading(); const processingToken = fetchingToken || verifyingToken; useEffect(() => { paymentProcessor.onTokenIsChargeable = onChargeable; }, [onChargeable]); useEffect(() => { paymentProcessor.amountAndCurrency = amountAndCurrency; paymentProcessor.reset(); }, [amountAndCurrency]); useEffect(() => { if (initialCard) { paymentProcessor.updateState({ card: initialCard }); } const setters: Record<keyof CardPaymentProcessorState, (...args: any[]) => any> = { card: setCard, cardSubmitted: setSubmitted, }; paymentProcessor.onStateUpdated( (updatedProperties) => { for (const [key, value] of Object.entries(updatedProperties)) { const setter = setters[key as keyof CardPaymentProcessorState]; setter?.(value); } setErrors(getErrors(paymentProcessor.card)); }, { initial: true, } ); return () => paymentProcessor.destroy(); }, []); const reset = () => paymentProcessor.reset(); const fetchPaymentToken = async () => withFetchingToken(paymentProcessor.fetchPaymentToken()); const verifyPaymentToken = () => { const tokenPromise = paymentProcessor.verifyPaymentToken(); withVerifyingToken(tokenPromise).catch(noop); return tokenPromise; }; const processPaymentToken = async () => { onProcessPaymentToken?.('card'); if (!paymentProcessor.fetchedPaymentToken) { await fetchPaymentToken(); } try { return await verifyPaymentToken(); } catch (error) { onProcessPaymentTokenFailed?.('card'); reset(); throw error; } }; const fields = Object.keys(errors) as (keyof CardModel)[]; const fieldsStatus: CardFieldStatus = getInitialFieldStatus(); for (const field of fields) { fieldsStatus[field] = !errors[field]; } return { fetchPaymentToken, fetchingToken, verifyPaymentToken, verifyingToken, card, setCardProperty: (key: keyof CardModel, value: any) => paymentProcessor.updateCardProperty(key, value), errors: submitted ? errors : {}, fieldsStatus, submitted, paymentProcessor, processPaymentToken, processingToken, meta: { type: 'card', }, }; }; ```
/content/code_sandbox/packages/components/payments/react-extensions/useCard.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
1,086
```xml <vector xmlns:android="path_to_url" xmlns:tools="path_to_url" android:width="448dp" android:height="512dp" android:viewportWidth="448.0" android:viewportHeight="512.0" tools:keep="@drawable/fa_font_awesome"> <path android:fillColor="#FFFFFFFF" android:pathData="M397.8,32L50.2,32C22.7,32 0,54.7 0,82.2v347.6C0,457.3 22.7,480 50.2,480h347.6c27.5,0 50.2,-22.7 50.2,-50.2L448,82.2c0,-27.5 -22.7,-50.2 -50.2,-50.2zM352.4,316.3c0,4.2 -3.6,6 -7.8,7.8 -16.7,7.2 -34.6,13.7 -53.8,13.7 -26.9,0 -39.4,-16.7 -71.7,-16.7 -23.3,0 -47.8,8.4 -67.5,17.3 -1.2,0.6 -2.4,0.6 -3.6,1.2L148,385c0,1.8 0,3.6 -0.6,4.8v1.2c-2.4,8.4 -10.2,14.3 -19.1,14.3 -11.3,0 -20.3,-9 -20.3,-20.3L108,166.4c-7.8,-6 -13.1,-15.5 -13.1,-26.3 0,-18.5 14.9,-33.5 33.5,-33.5 18.5,0 33.5,14.9 33.5,33.5 0,10.8 -4.8,20.3 -13.1,26.3v18.5c1.8,-0.6 3.6,-1.2 5.4,-2.4 18.5,-7.8 40.6,-14.3 61.5,-14.3 22.7,0 40.6,6 60.9,13.7 4.2,1.8 8.4,2.4 13.1,2.4 22.7,0 47.8,-16.1 53.8,-16.1 4.8,0 9,3.6 9,7.8v140.3z"/> </vector> ```
/content/code_sandbox/mobile/src/main/res/drawable/fa_font_awesome.xml
xml
2016-10-24T13:23:25
2024-08-16T07:20:37
freeotp-android
freeotp/freeotp-android
1,387
622
```xml import colors from '@erxes/ui/src/styles/colors'; export const EMAIL_CONTENT_CLASS = 'erxes-email-content'; export const EMAIL_CONTENT_PLACEHOLDER = `<div class="${EMAIL_CONTENT_CLASS}"></div>`; export const MESSAGE_KINDS = { AUTO: 'auto', VISITOR_AUTO: 'visitorAuto', MANUAL: 'manual', ALL_LIST: ['auto', 'visitorAuto', 'manual'], }; export const statusFilters = [ // { key: 'live', value: 'Live' }, { key: 'draft', value: 'draft' }, // { key: 'paused', value: 'Paused' }, { key: 'yours', value: 'Your messages' }, ]; export const MESSAGE_KIND_FILTERS = [ { name: 'auto', text: 'Auto' }, { name: 'visitorAuto', text: 'Visitor auto' }, { name: 'manual', text: 'Manual' }, ]; export const MESSENGER_KINDS = { CHAT: 'chat', NOTE: 'note', POST: 'post', ALL_LIST: ['chat', 'note', 'post'], SELECT_OPTIONS: [ { value: 'chat', text: 'Chat' }, { value: 'note', text: 'Note' }, { value: 'post', text: 'Post' }, ], }; export const METHODS = { MESSENGER: 'messenger', EMAIL: 'email', SMS: 'sms', NOTIFICATION: 'notification', ALL_LIST: ['messenger', 'email', 'sms', 'notification'], }; export const SENT_AS_CHOICES = { BADGE: 'badge', SNIPPET: 'snippet', FULL_MESSAGE: 'fullMessage', ALL_LIST: ['badge', 'snippet', 'fullMessage'], SELECT_OPTIONS: [ { value: 'badge', text: 'Badge' }, { value: 'snippet', text: 'Snippet' }, { value: 'fullMessage', text: 'Show the full message' }, ], }; export const SCHEDULE_TYPES = [ { value: 'pre', label: 'Schedule for later' }, { value: 'minute', label: 'Every minute' }, { value: 'hour', label: 'Every hour' }, { value: 'day', label: 'Every Day' }, { value: 'month', label: 'Every Month' }, { value: 'year', label: 'Every Year' }, { value: 1, label: 'Every Monday' }, { value: 2, label: 'Every Tuesday' }, { value: 3, label: 'Every Wednesday' }, { value: 4, label: 'Every Thursday' }, { value: 5, label: 'Every Friday' }, { value: 6, label: 'Every Saturday' }, { value: 0, label: 'Every Sunday' }, ]; export const SMS_DELIVERY_STATUSES = { QUEUED: 'queued', SENDING: 'sending', SENT: 'sent', DELIVERED: 'delivered', SENDING_FAILED: 'sending_failed', DELIVERY_FAILED: 'delivery_failed', DELIVERY_UNCONFIRMED: 'delivery_unconfirmed', WEBHOOK_DELIVERED: 'webhook_delivered', ERROR: 'error', ALL: [ 'queued', 'sending', 'sent', 'delivered', 'sending_failed', 'delivery_failed', 'delivery_unconfirmed', 'webhook_delivered', 'error', ], OPTIONS: [ { value: 'queued', label: 'Queued', icon: 'list-ul', description: `The message is queued up on Telnyx's side`, color: colors.colorCoreGray, }, { value: 'sending', label: 'Sending', icon: 'comment-alt-message', description: 'The message is currently being sent to an upstream provider', color: colors.colorCoreTeal, }, { value: 'sent', label: 'Sent', icon: 'send', description: 'The message has been sent to the upstream provider', color: colors.colorCoreBlue, }, { value: 'delivered', label: 'Delivered', icon: 'checked', description: 'The upstream provider has confirmed delivery of the message', color: colors.colorCoreGreen, }, { value: 'sending_failed', label: 'Sending failed', icon: 'comment-alt-block', description: 'Telnyx has failed to send the message to the upstream provider', color: colors.colorCoreRed, }, { value: 'delivery_failed', label: 'Delivery failed', icon: 'multiply', description: 'The upstream provider has failed to send the message to the receiver', color: colors.colorCoreYellow, }, { value: 'delivery_unconfirmed', label: 'Delivery unconfirmed', icon: 'comment-alt-question', description: 'There is no indication whether or not the message has reached the receiver', color: colors.colorCoreYellow, }, { value: 'webhook_delivered', label: 'Delivered through webhook', icon: 'checked', description: 'Delivered through configured webhook', color: colors.colorCoreGreen, }, { value: 'error', label: 'Error occurred', icon: 'times-circle', description: 'Error occurred', color: colors.colorCoreRed, }, ], }; export const AWS_EMAIL_DELIVERY_STATUSES = { SEND: 'send', DELIVERY: 'delivery', OPEN: 'open', CLICK: 'click', COMPLAINT: 'complaint', BOUNCE: 'bounce', RENDERING_FAILURE: 'renderingfailure', REJECT: 'reject', OPTIONS: [ { value: 'send', label: 'Sent', description: 'The call to Amazon SES was successful and Amazon SES will attempt to deliver the email', icon: 'telegram-alt', }, { value: 'delivery', label: 'Delivered', description: `Amazon SES successfully delivered the email to the recipient's mail server`, icon: 'comment-check', }, { value: 'open', label: 'Opened', description: 'The recipient received the message and opened it in their email client', icon: 'envelope-open', }, { value: 'click', label: 'Clicked', description: 'The recipient clicked one or more links in the email', icon: 'mouse-alt', }, { value: 'complaint', label: 'Complaint/Spam', description: 'The email was successfully delivered to the recipient. The recipient marked the email as spam', icon: 'frown', }, { value: 'bounce', label: 'Bounce', description: `The recipient's mail server permanently rejected the email`, icon: 'arrows-up-right', }, { value: 'reject', label: 'Rejected', description: 'Amazon SES accepted the email, determined that it contained a virus, and rejected it', icon: 'times-circle', }, { value: 'renderingfailure', label: 'Rendering failure', description: `The email wasn't sent because of a template rendering issue`, icon: 'ban', }, ], }; export const NOTIFICATION_DELIVERY_STATUSES = { SENT: 'sent', READ: 'read', UNREAD: 'unread', OPTIONS: [ { value: 'sent', label: 'Sent', description: 'The notification was successfully sent to the recipient', icon: 'telegram-alt', }, { value: 'read', label: 'Read', description: 'The recipient received the notification and opened it', icon: 'envelope-open', }, { value: 'unread', label: 'Unread', description: 'The recipient has not yet opened the notification', icon: 'envelope', }, ], }; export const CAMPAIGN_TARGET_TYPES = { SEGMENT: 'segments:segment', TAG: 'tags:tag', BRAND: 'core:brand', ALL: ['segments:segment', 'tags:tag', 'core:brand'], }; export const BUSINESS_PORTAL_KINDS = { CLIENT: 'client', VENDOR: 'vendor', ALL: ['client', 'vendor'], }; ```
/content/code_sandbox/packages/ui-engage/src/constants.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
1,851
```xml /// <reference lib="dom" /> import { afterEach, beforeEach, describe, expect, it } from 'vitest' import '@testing-library/jest-dom' import { userEvent } from '@testing-library/user-event' import { TestForm, sampleData } from './simple' window.customElements.define('test-form', TestForm) describe('Lit Tests', () => { let element: TestForm beforeEach(async () => { element = document.createElement('test-form') as TestForm document.body.appendChild(element) await element.updateComplete }) afterEach(() => { element.remove() }) it('should have initial values', async () => { expect( await element.shadowRoot!.querySelector<HTMLInputElement>('#firstName'), ).toHaveValue(sampleData.firstName) expect( await element.shadowRoot!.querySelector<HTMLInputElement>('#lastName'), ).toHaveValue('') const form = element.form! expect(form.api.getFieldValue('firstName')).toBe(sampleData.firstName) expect(form.api.getFieldMeta('firstName')?.isTouched).toBeFalsy() expect(form.api.getFieldValue('lastName')).toBe('') expect(form.api.getFieldMeta('lastName')?.isTouched).toBeFalsy() }) it('should mirror user input', async () => { const lastName = await element.shadowRoot!.querySelector<HTMLInputElement>('#lastName')! const lastNameValue = 'Jobs' await userEvent.type(lastName, lastNameValue) const form = element.form! expect(form.api.getFieldValue('lastName')).toBe(lastNameValue) expect(form.api.getFieldMeta('lastName')?.isTouched).toBeTruthy() }) it('Reset form to initial value', async () => { const firstName = await element.shadowRoot!.querySelector<HTMLInputElement>('#firstName')! await userEvent.type(firstName, '-Joseph') expect(firstName).toHaveValue('Christian-Joseph') const form = element.form await element .shadowRoot!.querySelector<HTMLButtonElement>('#reset') ?.click() expect(form.api.getFieldValue('firstName')).toBe(sampleData.firstName) }) it('should display validation', async () => { const lastName = await element.shadowRoot!.querySelector<HTMLInputElement>('#lastName')! const lastNameValue = 'Jo' await userEvent.type(lastName, lastNameValue) expect(lastName).toHaveValue('Jo') const form = element.form expect(form.api.getFieldMeta('lastName')?.errors[0]).toBe('Not long enough') await userEvent.type(lastName, lastNameValue) expect(await lastName.getAttribute('error-text')).toBeFalsy() expect(form.api.getFieldValue('lastName')).toBe('JoJo') expect(form.api.getFieldMeta('lastName')?.isTouched).toBeTruthy() expect(form.api.getFieldMeta('lastName')?.errors.length).toBeFalsy() }) }) ```
/content/code_sandbox/packages/lit-form/tests/simple.test.ts
xml
2016-11-29T04:53:07
2024-08-16T16:25:02
form
TanStack/form
3,566
586
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" xmlns:tools="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" tools:context="com.cyl.musiclake.ui.main.TestActivity"> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical"> <Button android:id="@+id/btn_netease_topList" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btn_qq_topList" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="QQ" /> <Button android:id="@+id/btn_test1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/charts_netease" /> <Button android:id="@+id/btn_test2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/search" /> <Button android:id="@+id/btn_test3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/artist_detail" /> <Button android:id="@+id/btn_test4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btn_test5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btn_test6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btn_playlist" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/btn_playlist1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="qq" /> <Button android:id="@+id/btn_playlist2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="qq" /> <Button android:id="@+id/btn_playlist3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="netease" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingTop="@dimen/dp_24"> <TextView android:id="@+id/tv_status" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" /> <TextView android:id="@+id/tv_show" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/black" android:gravity="center" android:textColor="@color/white" /> </LinearLayout> </LinearLayout> ```
/content/code_sandbox/app/src/main/res/layout/activity_test.xml
xml
2016-04-09T15:47:45
2024-08-14T04:30:04
MusicLake
caiyonglong/MusicLake
2,654
745
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <TargetFramework>netcoreapp3.1</TargetFramework> <PackageId>Microsoft.Bot.Components.Samples.DialogAndTriggerPackage</PackageId> <Description>This library implements .NET support for a custom trigger and an Adaptive dialog.</Description> <Summary>This library implements .NET support for a custom trigger (OnMembersAdded) and an Adaptive dialog (WelcomeDialog).</Summary> <ContentTargetFolders>content</ContentTargetFolders> <PackageTags>msbot-component;msbot-content;msbot-trigger</PackageTags> </PropertyGroup> <ItemGroup> <Content Include="**/*.schema" /> <Content Include="**/*.uischema" /> <None Include="exported/**/*.*" Pack="true" PackagePath="exported" /> <None Include="README.md" Condition="Exists('README.md')" Pack="true" PackagePath="" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.13.1" /> </ItemGroup> </Project> ```
/content/code_sandbox/composer-samples/csharp_dotnetcore/packages/DialogAndTriggerPackage/Microsoft.Bot.Components.Samples.DialogAndTriggerPackage.csproj
xml
2016-09-20T16:17:28
2024-08-16T02:44:00
BotBuilder-Samples
microsoft/BotBuilder-Samples
4,323
256
```xml <?xml version="1.0" encoding="utf-8"?> <!-- COMPLETED (2) Create the version of dimens that will be used when the smallest width of the screen is 600dp --> <resources> <dimen name="forecast_detail_vertical_padding">24dp</dimen> <dimen name="today_forecast_list_item_vertical_padding">24dp</dimen> <dimen name="list_item_icon_margin_right">24dp</dimen> <dimen name="list_item_icon_margin_end">@dimen/list_item_icon_margin_right</dimen> <dimen name="list_item_padding_horizontal">24dp</dimen> </resources> ```
/content/code_sandbox/S12.04-Solution-ResourceQualifiers/app/src/main/res/values-sw600dp/dimens.xml
xml
2016-11-02T04:42:26
2024-08-12T19:38:06
ud851-Sunshine
udacity/ud851-Sunshine
1,999
145
```xml export { default as AttachedFile } from './AttachedFile'; ```
/content/code_sandbox/packages/components/components/attachedFile/index.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
13
```xml import {Source} from 'src/types/sources' import {Dashboard, DashboardSwitcherLinks} from 'src/types/dashboards' export const EMPTY_LINKS = { links: [], active: null, } export const linksFromDashboards = ( dashboards: Dashboard[], source: Source ): DashboardSwitcherLinks => { const links = dashboards.map(d => { return { key: String(d.id), text: d.name, to: `/sources/${source.id}/dashboards/${d.id}`, } }) return {links, active: null} } export const updateDashboardLinks = ( dashboardLinks: DashboardSwitcherLinks, activeDashboard: Dashboard ) => { const {active} = dashboardLinks if (!activeDashboard) { return {...dashboardLinks, active: null} } if (!active || active.key !== String(activeDashboard.id)) { return updateActiveDashboardLink(dashboardLinks, activeDashboard) } return updateActiveDashboardLinkName(dashboardLinks, activeDashboard) } const updateActiveDashboardLink = ( dashboardLinks: DashboardSwitcherLinks, dashboard: Dashboard ) => { const active = dashboardLinks.links.find( link => link.key === String(dashboard.id) ) return {...dashboardLinks, active} } const updateActiveDashboardLinkName = ( dashboardLinks: DashboardSwitcherLinks, dashboard: Dashboard ): DashboardSwitcherLinks => { const {name} = dashboard let {active} = dashboardLinks const links = dashboardLinks.links.map(link => { if (link.key === String(dashboard.id)) { active = {...link, text: name} return active } return link }) return {links, active} } ```
/content/code_sandbox/ui/src/dashboards/utils/dashboardSwitcherLinks.ts
xml
2016-08-24T23:28:56
2024-08-13T19:50:03
chronograf
influxdata/chronograf
1,494
377
```xml import type { FeatureAccess } from '../../../features'; import type { IssueShape } from '../../../git/models/issue'; import type { PullRequestShape } from '../../../git/models/pullRequest'; import type { IpcScope, WebviewState } from '../../../webviews/protocol'; import { IpcCommand, IpcNotification } from '../../../webviews/protocol'; import type { EnrichedItem } from '../../focus/enrichmentService'; export const scope: IpcScope = 'focus'; export interface State extends WebviewState { access: FeatureAccess; pullRequests?: PullRequestResult[]; issues?: IssueResult[]; repos?: RepoWithIntegration[]; } export interface SearchResultBase { reasons: string[]; rank?: number; enriched?: EnrichedItemSummary[]; } export interface EnrichedItemSummary { id: EnrichedItem['id']; type: EnrichedItem['type']; } export interface IssueResult extends SearchResultBase { issue: IssueShape; } export interface PullRequestResult extends SearchResultBase { pullRequest: PullRequestShape; isCurrentBranch: boolean; isCurrentWorktree: boolean; hasWorktree: boolean; hasLocalBranch: boolean; } export interface RepoWithIntegration { repo: string; isGitHub: boolean; isConnected: boolean; } // COMMANDS export interface OpenWorktreeParams { pullRequest: PullRequestShape; } export const OpenWorktreeCommand = new IpcCommand<OpenWorktreeParams>(scope, 'pr/openWorktree'); export interface OpenBranchParams { pullRequest: PullRequestShape; } export const OpenBranchCommand = new IpcCommand<OpenBranchParams>(scope, 'pr/openBranch'); export interface SwitchToBranchParams { pullRequest: PullRequestShape; } export const SwitchToBranchCommand = new IpcCommand<SwitchToBranchParams>(scope, 'pr/switchToBranch'); export interface SnoozePrParams { pullRequest: PullRequestShape; expiresAt?: string; snooze?: string; } export const SnoozePRCommand = new IpcCommand<SnoozePrParams>(scope, 'pr/snooze'); export interface PinPrParams { pullRequest: PullRequestShape; pin?: string; } export const PinPRCommand = new IpcCommand<PinPrParams>(scope, 'pr/pin'); export interface SnoozeIssueParams { issue: IssueShape; expiresAt?: string; snooze?: string; } export const SnoozeIssueCommand = new IpcCommand<SnoozeIssueParams>(scope, 'issue/snooze'); export interface PinIssueParams { issue: IssueShape; pin?: string; } export const PinIssueCommand = new IpcCommand<PinIssueParams>(scope, 'issue/pin'); // NOTIFICATIONS export interface DidChangeParams { state: State; } export const DidChangeNotification = new IpcNotification<DidChangeParams>(scope, 'didChange', true); ```
/content/code_sandbox/src/plus/webviews/focus/protocol.ts
xml
2016-08-08T14:50:30
2024-08-15T21:25:09
vscode-gitlens
gitkraken/vscode-gitlens
8,889
617
```xml <resources> <string name="app_name">Fresco Image Viewer</string> <string name="sample_title">Fresco Image Viewer</string> <string name="action_simple_usage">Simple usage</string> <string name="action_styled_view">Styled view</string> <string name="action_rotation_support">Rotation support</string> <string name="action_custom_objects">Custom objects</string> <string name="action_description_simple_usage">Traditional viewer without any customizing. The fastest way to implement.</string> <string name="action_description_styled_view">Customized viewer with overlay view, custom margins and padding.</string> <string name="action_description_rotation_support">Example of how to handle activity rotation.</string> <string name="action_description_custom_objects">Using formatter for custom objects - forget about converting.</string> <string name="view">View</string> <string name="share">Share</string> <string name="message_open_viewer">Tap on any image to open viewer!</string> <string name="message_styling">Open options menu in toolbar to check available options to change!</string> <string name="message_on_dismiss">Dialog was successfully dismissed!</string> <string name="message_rotate">Open the viewer and try to rotate device. Important! Don\'t forget to enable rotation settings :)</string> <string name="custom_objects_hint">This example uses custom image objects and shows images via custom formatter.</string> <string name="got_it">Got it!</string> <string name="action_options">Options</string> <string-array name="options"> <item>hide status bar</item> <item>images margin</item> <item>container padding</item> <item>images rounding</item> <item>swipe-to-dismiss</item> <item>zooming</item> <item>show overlay</item> <item>random background</item> <item>post-processing (via ImageRequestBuilder)</item> </string-array> </resources> ```
/content/code_sandbox/sample/src/main/res/values/strings.xml
xml
2016-08-29T15:05:41
2024-08-16T13:03:46
FrescoImageViewer
stfalcon-studio/FrescoImageViewer
1,808
449
```xml import type { ComponentPropsWithoutRef } from 'react'; import { useState } from 'react'; import { generateUID } from '@proton/components'; import { PASS_APP_NAME } from '@proton/shared/lib/constants'; import clsx from '@proton/utils/clsx'; import type { LogoProps } from './Logo'; type Props = ComponentPropsWithoutRef<'svg'> & Pick<LogoProps, 'variant' | 'size' | 'hasTitle'>; const PassLogo = ({ variant = 'with-wordmark', size, className, hasTitle = true, ...rest }: Props) => { // This logo can be several times in the view, ids has to be different each time const [uid] = useState(generateUID('logo')); let logoWidth: number; switch (variant) { case 'glyph-only': logoWidth = 36; break; case 'wordmark-only': logoWidth = 260; break; default: logoWidth = 142; break; } return ( <svg xmlns="path_to_url" xmlnsXlink="path_to_url" viewBox={`0 0 ${logoWidth} 36`} width={logoWidth} height="36" fill="none" role="img" className={clsx('logo', size && variant === 'glyph-only' && `icon-size-${size}`, variant, className)} aria-labelledby={`${uid}-title`} {...rest} > {hasTitle && <title id={`${uid}-title`}>{PASS_APP_NAME}</title>} {variant === 'glyph-only' && ( <> <path fill={`url(#${uid}-a)`} d="M12.42 7.54c1.95-1.96 2.93-2.93 4.06-3.3a4.93 4.93 0 0 1 3.04 0c1.13.37 2.1 1.34 4.06 3.3l4.88 4.88c1.96 1.95 2.93 2.93 3.3 4.06.32.99.32 2.05 0 3.04-.37 1.13-1.34 2.1-3.3 4.06l-4.88 4.88c-1.95 1.96-2.93 2.93-4.06 3.3-.99.32-2.05.32-3.04 0-1.13-.37-2.1-1.34-4.06-3.3l-.92-1.03a7.87 7.87 0 0 1-1.03-1.28 3.7 3.7 0 0 1-.38-1c-.09-.4-.09-.82-.09-1.66V12.51c0-.84 0-1.26.09-1.65.08-.35.2-.7.38-1 .2-.36.48-.67 1.03-1.3l.92-1.02Z" /> <path fill={`url(#${uid}-b)`} d="M12.42 7.54c1.95-1.96 2.93-2.93 4.06-3.3a4.93 4.93 0 0 1 3.04 0c1.13.37 2.1 1.34 4.06 3.3l4.88 4.88c1.96 1.95 2.93 2.93 3.3 4.06.32.99.32 2.05 0 3.04-.37 1.13-1.34 2.1-3.3 4.06l-4.88 4.88c-1.95 1.96-2.93 2.93-4.06 3.3-.99.32-2.05.32-3.04 0-1.13-.37-2.1-1.34-4.06-3.3l-.92-1.03a7.87 7.87 0 0 1-1.03-1.28 3.7 3.7 0 0 1-.38-1c-.09-.4-.09-.82-.09-1.66V12.51c0-.84 0-1.26.09-1.65.08-.35.2-.7.38-1 .2-.36.48-.67 1.03-1.3l.92-1.02Z" /> <path fill={`url(#${uid}-c)`} d="M12.07 7.89c.98-.98 1.47-1.47 2.03-1.65.5-.16 1.03-.16 1.52 0 .57.18 1.05.67 2.03 1.65l7.33 7.32c.97.98 1.46 1.46 1.64 2.03.16.5.16 1.03 0 1.52-.18.56-.67 1.05-1.64 2.03l-7.33 7.32c-.98.98-1.46 1.47-2.03 1.65-.5.16-1.03.16-1.52 0-.56-.18-1.05-.67-2.03-1.65l-4.53-4.53c-1.96-1.95-2.93-2.93-3.3-4.06a4.93 4.93 0 0 1 0-3.04c.37-1.13 1.34-2.1 3.3-4.06l4.53-4.53Z" /> <defs> <radialGradient id={`${uid}-a`} cx="0" cy="0" r="1" gradientTransform="rotate(-58.14 35.5 5.08) scale(23.3731 36.5508)" gradientUnits="userSpaceOnUse" > <stop stopColor="#FFD580" /> <stop offset=".09" stopColor="#F6C592" /> <stop offset=".2" stopColor="#EBB6A2" /> <stop offset=".32" stopColor="#DFA5AF" /> <stop offset=".43" stopColor="#D397BE" /> <stop offset=".53" stopColor="#C486CB" /> <stop offset=".65" stopColor="#B578D9" /> <stop offset=".77" stopColor="#A166E5" /> <stop offset=".89" stopColor="#8B57F2" /> <stop offset="1" stopColor="#704CFF" /> </radialGradient> <linearGradient id={`${uid}-b`} x1="11.49" x2="16.93" y1="-1.56" y2="31.68" gradientUnits="userSpaceOnUse" > <stop stopColor="#6D4AFF" /> <stop offset=".39" stopColor="#B39FFB" stopOpacity=".98" /> <stop offset="1" stopColor="#FFE8DB" stopOpacity=".8" /> </linearGradient> <radialGradient id={`${uid}-c`} cx="0" cy="0" r="1" gradientTransform="matrix(9.923 -15.96803 24.97081 15.51758 10.4 29.7)" gradientUnits="userSpaceOnUse" > <stop stopColor="#FFD580" /> <stop offset=".09" stopColor="#F6C592" /> <stop offset=".2" stopColor="#EBB6A2" /> <stop offset=".32" stopColor="#DFA5AF" /> <stop offset=".43" stopColor="#D397BE" /> <stop offset=".53" stopColor="#C486CB" /> <stop offset=".65" stopColor="#B578D9" /> <stop offset=".77" stopColor="#A166E5" /> <stop offset=".89" stopColor="#8B57F2" /> <stop offset="1" stopColor="#704CFF" /> </radialGradient> </defs> </> )} {variant === 'with-wordmark' && ( <> <path fill={`url(#${uid}-a)`} d="M12.42 7.54c1.95-1.96 2.93-2.93 4.06-3.3a4.93 4.93 0 0 1 3.04 0c1.13.37 2.1 1.34 4.06 3.3l4.88 4.88c1.96 1.95 2.93 2.93 3.3 4.06.32.99.32 2.05 0 3.04-.37 1.13-1.34 2.1-3.3 4.06l-4.88 4.88c-1.95 1.96-2.93 2.93-4.06 3.3-.99.32-2.05.32-3.04 0-1.13-.37-2.1-1.34-4.06-3.3l-.92-1.03a7.87 7.87 0 0 1-1.03-1.28 3.7 3.7 0 0 1-.38-1c-.09-.4-.09-.82-.09-1.66V12.51c0-.84 0-1.26.09-1.65.08-.35.2-.7.38-1 .2-.36.48-.67 1.03-1.3l.92-1.02Z" /> <path fill={`url(#${uid}-b)`} d="M12.42 7.54c1.95-1.96 2.93-2.93 4.06-3.3a4.93 4.93 0 0 1 3.04 0c1.13.37 2.1 1.34 4.06 3.3l4.88 4.88c1.96 1.95 2.93 2.93 3.3 4.06.32.99.32 2.05 0 3.04-.37 1.13-1.34 2.1-3.3 4.06l-4.88 4.88c-1.95 1.96-2.93 2.93-4.06 3.3-.99.32-2.05.32-3.04 0-1.13-.37-2.1-1.34-4.06-3.3l-.92-1.03a7.87 7.87 0 0 1-1.03-1.28 3.7 3.7 0 0 1-.38-1c-.09-.4-.09-.82-.09-1.66V12.51c0-.84 0-1.26.09-1.65.08-.35.2-.7.38-1 .2-.36.48-.67 1.03-1.3l.92-1.02Z" /> <path fill={`url(#${uid}-c)`} d="M12.07 7.89c.98-.98 1.47-1.47 2.03-1.65.5-.16 1.03-.16 1.52 0 .57.18 1.05.67 2.03 1.65l7.33 7.32c.97.98 1.46 1.46 1.64 2.03.16.5.16 1.03 0 1.52-.18.56-.67 1.05-1.64 2.03l-7.33 7.32c-.98.98-1.46 1.47-2.03 1.65-.5.16-1.03.16-1.52 0-.56-.18-1.05-.67-2.03-1.65l-4.53-4.53c-1.96-1.95-2.93-2.93-3.3-4.06a4.93 4.93 0 0 1 0-3.04c.37-1.13 1.34-2.1 3.3-4.06l4.53-4.53Z" /> <path fill="var(--logo-text-product-color)" d="M119.02 15.65a4.82 4.82 0 0 0-4.98 4.9c0 2.96 2.04 4.92 4.5 4.92 1.36 0 2.44-.6 3.04-1.62l.16 1.4h2.24v-4.68c0-3.04-2.12-4.92-4.96-4.92Zm0 7.6c-1.42 0-2.48-1.1-2.48-2.7s1.08-2.7 2.48-2.7c1.38 0 2.46 1.06 2.46 2.7 0 1.84-1.24 2.7-2.46 2.7Zm9.87 2.22c1.92 0 3.56-1.1 3.56-2.78 0-3.6-4.86-2.76-4.86-4.22 0-.48.42-.84 1.08-.84.68 0 1.12.38 1.22.94h2.38c-.14-1.84-1.54-2.94-3.6-2.92-2.12 0-3.42 1.26-3.42 2.82 0 3.64 4.8 2.7 4.8 4.22 0 .46-.44.8-1.16.8-.7 0-1.34-.34-1.46-1.06H125c.14 1.78 1.7 3.04 3.88 3.04Zm8.41 0c1.92 0 3.56-1.1 3.56-2.78 0-3.6-4.86-2.76-4.86-4.22 0-.48.42-.84 1.08-.84.68 0 1.12.38 1.22.94h2.38c-.14-1.84-1.54-2.94-3.6-2.92-2.12 0-3.42 1.26-3.42 2.82 0 3.64 4.8 2.7 4.8 4.22 0 .46-.44.8-1.16.8-.7 0-1.34-.34-1.46-1.06h-2.42c.14 1.78 1.7 3.04 3.88 3.04ZM109.47 11h-6.57v14.25h2.6V21.7a1.3 1.3 0 0 1 1.3-1.3h2.67a4.68 4.68 0 0 0 4.34-6.49 4.67 4.67 0 0 0-4.34-2.91Zm2.05 4.67a2.2 2.2 0 0 1-.65 1.58 2.2 2.2 0 0 1-1.57.64h-3.8v-4.43h3.8a2.22 2.22 0 0 1 2.22 2.23v-.02Z" /> <path fill="var(--logo-text-proton-color)" d="M42 21.26v3.66h2.56v-3.5a1.28 1.28 0 0 1 1.28-1.29h2.62a4.6 4.6 0 0 0 4.62-4.64 4.66 4.66 0 0 0-4.62-4.64H42v4.58h2.56v-2.16h3.73a2.18 2.18 0 0 1 2.18 2.2 2.2 2.2 0 0 1-2.18 2.2h-2.71a3.51 3.51 0 0 0-2.53 1.05A3.65 3.65 0 0 0 42 21.26Zm11.47 3.66v-5.58c0-2.28 1.32-4.09 3.97-4.09.42 0 .85.04 1.26.14v2.3c-.3-.02-.56-.02-.68-.02-1.4 0-2 .64-2 1.95v5.3h-2.55Zm5.99-4.73c0-2.8 2.1-4.94 5.04-4.94a4.85 4.85 0 0 1 5.03 4.94c0 2.8-2.1 4.96-5.03 4.96a4.87 4.87 0 0 1-5.04-4.96Zm7.56 0c0-1.6-1.06-2.72-2.52-2.72-1.47 0-2.53 1.12-2.53 2.72 0 1.61 1.07 2.72 2.53 2.72 1.46 0 2.52-1.11 2.52-2.72Zm10.65 0c0-2.8 2.1-4.94 5.03-4.94a4.85 4.85 0 0 1 5.03 4.94c0 2.8-2.1 4.96-5.03 4.96a4.87 4.87 0 0 1-5.03-4.96Zm7.55 0c0-1.6-1.06-2.72-2.52-2.72s-2.53 1.12-2.53 2.72c0 1.61 1.07 2.72 2.53 2.72 1.46 0 2.52-1.11 2.52-2.72Zm3.83 4.73v-5.38c0-2.5 1.59-4.29 4.41-4.29 2.8 0 4.4 1.8 4.4 4.3v5.37h-2.53v-5.18c0-1.39-.62-2.25-1.87-2.25-1.24 0-1.86.86-1.86 2.25v5.18h-2.55ZM76.9 17.49h-2.74v3.53c0 1.23.44 1.79 1.7 1.79.12 0 .42 0 .8-.02v2.07c-.52.14-.98.23-1.48.23-2.12 0-3.57-1.3-3.57-3.73v-3.87h-1.7v-2.04h.42a1.3 1.3 0 0 0 .9-.37 1.3 1.3 0 0 0 .38-.91v-1.92h2.55v3.2h2.74v2.04Z" /> <defs> <radialGradient id={`${uid}-a`} cx="0" cy="0" r="1" gradientTransform="rotate(-58.14 35.5 5.08) scale(23.3731 36.5508)" gradientUnits="userSpaceOnUse" > <stop stopColor="#FFD580" /> <stop offset=".09" stopColor="#F6C592" /> <stop offset=".2" stopColor="#EBB6A2" /> <stop offset=".32" stopColor="#DFA5AF" /> <stop offset=".43" stopColor="#D397BE" /> <stop offset=".53" stopColor="#C486CB" /> <stop offset=".65" stopColor="#B578D9" /> <stop offset=".77" stopColor="#A166E5" /> <stop offset=".89" stopColor="#8B57F2" /> <stop offset="1" stopColor="#704CFF" /> </radialGradient> <linearGradient id={`${uid}-b`} x1="11.49" x2="16.93" y1="-1.56" y2="31.68" gradientUnits="userSpaceOnUse" > <stop stopColor="#6D4AFF" /> <stop offset=".39" stopColor="#B39FFB" stopOpacity=".98" /> <stop offset="1" stopColor="#FFE8DB" stopOpacity=".8" /> </linearGradient> <radialGradient id={`${uid}-c`} cx="0" cy="0" r="1" gradientTransform="matrix(9.923 -15.96803 24.97081 15.51758 10.4 29.7)" gradientUnits="userSpaceOnUse" > <stop stopColor="#FFD580" /> <stop offset=".09" stopColor="#F6C592" /> <stop offset=".2" stopColor="#EBB6A2" /> <stop offset=".32" stopColor="#DFA5AF" /> <stop offset=".43" stopColor="#D397BE" /> <stop offset=".53" stopColor="#C486CB" /> <stop offset=".65" stopColor="#B578D9" /> <stop offset=".77" stopColor="#A166E5" /> <stop offset=".89" stopColor="#8B57F2" /> <stop offset="1" stopColor="#704CFF" /> </radialGradient> </defs> </> )} {variant === 'wordmark-only' && ( <> <path d="M249.602 35.9127C246.947 35.9127 244.746 35.2071 242.999 33.7959C241.252 32.3511 240.311 30.4695 240.177 28.1511H245.368C245.502 29.2263 245.956 30.0663 246.729 30.6711C247.535 31.2759 248.493 31.5783 249.602 31.5783C250.744 31.5783 251.618 31.3431 252.222 30.8727C252.827 30.4023 253.13 29.8143 253.13 29.1087C253.13 28.3023 252.693 27.6471 251.819 27.1431C250.979 26.6391 249.938 26.2191 248.694 25.8831C247.485 25.5471 246.275 25.1439 245.066 24.6735C243.856 24.2031 242.815 23.4303 241.941 22.3551C241.101 21.2799 240.681 19.9191 240.681 18.2727C240.681 16.3575 241.42 14.7111 242.898 13.3335C244.41 11.9559 246.46 11.2671 249.047 11.2671C251.534 11.2671 253.566 11.9223 255.146 13.2327C256.725 14.5431 257.632 16.3743 257.867 18.7263H252.676C252.508 17.7519 252.105 16.9959 251.466 16.4583C250.862 15.8871 250.055 15.6015 249.047 15.6015C248.107 15.6015 247.334 15.8535 246.729 16.3575C246.124 16.8615 245.822 17.4999 245.822 18.2727C245.822 18.9783 246.124 19.5663 246.729 20.0367C247.367 20.5071 248.14 20.8599 249.047 21.0951C249.988 21.3303 250.996 21.6495 252.071 22.0527C253.147 22.4223 254.138 22.8423 255.045 23.3127C255.986 23.7831 256.758 24.5223 257.363 25.5303C258.002 26.5047 258.321 27.6975 258.321 29.1087C258.321 31.1247 257.481 32.7711 255.801 34.0479C254.121 35.2911 252.054 35.9127 249.602 35.9127Z" fill="var(--logo-text-proton-color)" /> <path d="M227.603 35.9127C224.949 35.9127 222.748 35.2071 221 33.7959C219.253 32.3511 218.313 30.4695 218.178 28.1511H223.369C223.504 29.2263 223.957 30.0663 224.73 30.6711C225.536 31.2759 226.494 31.5783 227.603 31.5783C228.745 31.5783 229.619 31.3431 230.224 30.8727C230.828 30.4023 231.131 29.8143 231.131 29.1087C231.131 28.3023 230.694 27.6471 229.82 27.1431C228.981 26.6391 227.939 26.2191 226.696 25.8831C225.486 25.5471 224.276 25.1439 223.067 24.6735C221.857 24.2031 220.816 23.4303 219.942 22.3551C219.102 21.2799 218.682 19.9191 218.682 18.2727C218.682 16.3575 219.421 14.7111 220.9 13.3335C222.412 11.9559 224.461 11.2671 227.048 11.2671C229.535 11.2671 231.567 11.9223 233.147 13.2327C234.726 14.5431 235.633 16.3743 235.868 18.7263H230.677C230.509 17.7519 230.106 16.9959 229.468 16.4583C228.863 15.8871 228.056 15.6015 227.048 15.6015C226.108 15.6015 225.335 15.8535 224.73 16.3575C224.125 16.8615 223.823 17.4999 223.823 18.2727C223.823 18.9783 224.125 19.5663 224.73 20.0367C225.369 20.5071 226.141 20.8599 227.048 21.0951C227.989 21.3303 228.997 21.6495 230.072 22.0527C231.148 22.4223 232.139 22.8423 233.046 23.3127C233.987 23.7831 234.76 24.5223 235.364 25.5303C236.003 26.5047 236.322 27.6975 236.322 29.1087C236.322 31.1247 235.482 32.7711 233.802 34.0479C232.122 35.2911 230.056 35.9127 227.603 35.9127Z" fill="var(--logo-text-proton-color)" /> <path d="M199.138 35.9127C196.047 35.9127 193.392 34.8039 191.175 32.5863C188.991 30.3687 187.899 27.3783 187.899 23.6151C187.899 19.8183 188.991 16.8111 191.175 14.5935C193.392 12.3759 196.047 11.2671 199.138 11.2671C200.885 11.2671 202.464 11.6367 203.876 12.3759C205.287 13.0815 206.396 14.1063 207.202 15.4503L207.706 11.7711H212.292V35.4087H207.605L207.202 31.7799C205.522 34.5351 202.834 35.9127 199.138 35.9127ZM193.191 23.6151C193.191 25.9335 193.863 27.7815 195.207 29.1591C196.584 30.5031 198.264 31.1751 200.247 31.1751C202.128 31.1751 203.758 30.5031 205.136 29.1591C206.513 27.7815 207.202 25.9335 207.202 23.6151C207.202 21.3639 206.496 19.5495 205.085 18.1719C203.707 16.7607 202.095 16.0551 200.247 16.0551C198.264 16.0551 196.584 16.7439 195.207 18.1215C193.863 19.4991 193.191 21.3303 193.191 23.6151Z" fill="var(--logo-text-proton-color)" /> <path d="M160.833 35.4087V1.0863H174.592C177.717 1.0863 180.321 2.0607 182.404 4.00951C184.521 5.9583 185.58 8.44471 185.58 11.4687C185.58 14.4927 184.521 16.9959 182.404 18.9783C180.321 20.9271 177.717 21.9015 174.592 21.9015H166.226V35.4087H160.833ZM166.226 16.8615H173.584C175.701 16.8615 177.314 16.3575 178.423 15.3495C179.532 14.3415 180.086 13.0479 180.086 11.4687C180.086 9.8895 179.532 8.61272 178.423 7.63831C177.348 6.63031 175.768 6.12631 173.685 6.12631H166.226V16.8615Z" fill="var(--logo-text-proton-color)" /> <path d="M120.804 21.6495C120.804 18.5583 121.745 16.0551 123.627 14.1399C125.509 12.2247 128.079 11.2671 131.338 11.2671C134.597 11.2671 137.168 12.2247 139.049 14.1399C140.931 16.0551 141.872 18.5583 141.872 21.6495V35.4087H136.58V22.0527C136.58 20.1711 136.126 18.7095 135.219 17.6679C134.345 16.5927 133.052 16.0551 131.338 16.0551C129.624 16.0551 128.314 16.5927 127.407 17.6679C126.533 18.7095 126.096 20.1711 126.096 22.0527V35.4087H120.804V21.6495Z" fill="var(--logo-text-proton-color)" /> <path d="M103.589 35.9127C100.061 35.9127 97.1208 34.7367 94.7689 32.3847C92.417 30.0327 91.2409 27.1095 91.2409 23.6151C91.2409 20.1207 92.417 17.1975 94.7689 14.8455C97.1208 12.4599 100.061 11.2671 103.589 11.2671C107.15 11.2671 110.107 12.4599 112.459 14.8455C114.811 17.1975 115.987 20.1207 115.987 23.6151C115.987 27.1095 114.811 30.0327 112.459 32.3847C110.107 34.7367 107.15 35.9127 103.589 35.9127ZM96.5329 23.6151C96.5329 25.7991 97.1881 27.6135 98.4985 29.0583C99.8424 30.4695 101.539 31.1751 103.589 31.1751C105.638 31.1751 107.335 30.4695 108.679 29.0583C110.023 27.6135 110.695 25.7991 110.695 23.6151C110.695 21.3975 110.023 19.5831 108.679 18.1719C107.335 16.7271 105.638 16.0047 103.589 16.0047C101.539 16.0047 99.8424 16.7271 98.4985 18.1719C97.1881 19.5831 96.5329 21.3975 96.5329 23.6151Z" fill="var(--logo-text-proton-color)" /> <path d="M84.2303 35.7615C81.7438 35.7615 79.7108 35.0223 78.1319 33.5439C76.586 32.0319 75.8135 29.9487 75.8135 27.2943V16.1559H71.5295V11.7711H75.7631V3.85834H81.1055V11.7711H88.0103V16.1559H81.1055V26.6391C81.1055 28.2183 81.4583 29.3439 82.1639 30.0159C82.903 30.6543 84.0791 30.9735 85.6919 30.9735C86.2628 30.9735 86.8846 30.9567 87.5567 30.9231V35.3079C86.3806 35.6103 85.2718 35.7615 84.2303 35.7615Z" fill="var(--logo-text-proton-color)" /> <path d="M56.8843 35.9127C53.3563 35.9127 50.4162 34.7367 48.0643 32.3847C45.7124 30.0327 44.5363 27.1095 44.5363 23.6151C44.5363 20.1207 45.7124 17.1975 48.0643 14.8455C50.4162 12.4599 53.3563 11.2671 56.8843 11.2671C60.4458 11.2671 63.4028 12.4599 65.7547 14.8455C68.1066 17.1975 69.2827 20.1207 69.2827 23.6151C69.2827 27.1095 68.1066 30.0327 65.7547 32.3847C63.4028 34.7367 60.4458 35.9127 56.8843 35.9127ZM49.8283 23.6151C49.8283 25.7991 50.4835 27.6135 51.7939 29.0583C53.1378 30.4695 54.8348 31.1751 56.8843 31.1751C58.9338 31.1751 60.6308 30.4695 61.9747 29.0583C63.3186 27.6135 63.9907 25.7991 63.9907 23.6151C63.9907 21.3975 63.3186 19.5831 61.9747 18.1719C60.6308 16.7271 58.9338 16.0047 56.8843 16.0047C54.8348 16.0047 53.1378 16.7271 51.7939 18.1719C50.4835 19.5831 49.8283 21.3975 49.8283 23.6151Z" fill="var(--logo-text-proton-color)" /> <path d="M29.167 20.8935C29.167 17.9703 29.9902 15.6351 31.6366 13.8879C33.3166 12.1407 35.5678 11.2671 38.3904 11.2671C39.2303 11.2671 40.171 11.3847 41.2128 11.6199V16.4583C40.9104 16.4247 40.3056 16.4079 39.3984 16.4079C37.7518 16.4079 36.5087 16.8279 35.6686 17.6679C34.8622 18.5079 34.459 19.8855 34.459 21.8007V35.4087H29.167V20.8935Z" fill="var(--logo-text-proton-color)" /> <path d="M0 35.4087V1.0863H13.7592C16.884 1.0863 19.488 2.0607 21.5712 4.00951C23.688 5.9583 24.7464 8.44471 24.7464 11.4687C24.7464 14.4927 23.688 16.9959 21.5712 18.9783C19.488 20.9271 16.884 21.9015 13.7592 21.9015H5.3928V35.4087H0ZM5.3928 16.8615H12.7512C14.868 16.8615 16.4808 16.3575 17.5896 15.3495C18.6984 14.3415 19.2528 13.0479 19.2528 11.4687C19.2528 9.8895 18.6984 8.61272 17.5896 7.63831C16.5144 6.63031 14.9352 6.12631 12.852 6.12631H5.3928V16.8615Z" fill="var(--logo-text-proton-color)" /> </> )} </svg> ); }; export default PassLogo; ```
/content/code_sandbox/packages/components/components/logo/PassLogo.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
9,776
```xml import Map from './Map'; import CollisionIndex from '../core/CollisionIndex'; import UIComponent from '../ui/UIComponent'; declare module "./Map" { interface Map { getCollisionIndex(): CollisionIndex createCollisionIndex(): CollisionIndex clearCollisionIndex(): this //@internal _insertUICollidesQueue(): this uiCollides(): this //@internal _addUI(ui: UIComponent): this //@internal _removeUI(ui: UIComponent): number } } const UICollisionIndex = new CollisionIndex(); Map.include({ /** * * @english * Get map scope collision index * @memberof Map */ getCollisionIndex(): CollisionIndex { if (!this._collisionIndex) { this.createCollisionIndex(); } return this._collisionIndex || this.createCollisionIndex(); }, /** * * @english * Create a new collisionIndex * @memberof Map */ createCollisionIndex(): CollisionIndex { this.clearCollisionIndex(); this._collisionIndex = new CollisionIndex(); return this._collisionIndex; }, /** * * @english * Clear collision index * @memberof Map */ clearCollisionIndex(): Map { this.collisionFrameTime = 0; if (this._collisionIndex) { this._collisionIndex.clear(); } return this; }, //@internal _insertUICollidesQueue(): Map { if (!this._uiCollidesQueue) { this._uiCollidesQueue = []; } this._uiCollidesQueue.push(1); return this; }, uiCollides(): Map { if (!this.uiList || this.uiList.length === 0 || !this._uiCollidesQueue || this._uiCollidesQueue.length === 0) { return this; } const collisionIndex = UICollisionIndex; collisionIndex.clear(); const uiList = this.uiList; for (let i = 0, len = uiList.length; i < len; i++) { const ui = uiList[i]; const { collisionBufferSize, collision } = ui.options; if (!collision) { continue; } const dom = ui.getDOM(); if (!ui.isVisible() || !dom) { continue; } if (!dom.getBoundingClientRect) { continue; } if (!ui.bbox) { ui.bbox = [0, 0, 0, 0]; } //path_to_url const bcRect = dom.getBoundingClientRect(); const { x, y } = bcRect; let { width, height } = bcRect; // fix 1904 //in firefox,the dom init Cannot get width and height,why? I don't know either //dom, if (width === 0 || height === 0) { const size = ui.getSize(); if (size) { width = size.width; height = size.height; } } const minX = x - collisionBufferSize, maxX = x + width + collisionBufferSize; const minY = y - collisionBufferSize, maxY = y + height + collisionBufferSize; ui.bbox[0] = minX; ui.bbox[1] = minY; ui.bbox[2] = maxX; ui.bbox[3] = maxY; if (collisionIndex.collides(ui.bbox)) { ui._collidesEffect(false); continue; } collisionIndex.insertBox(ui.bbox); ui._collidesEffect(true); } this._uiCollidesQueue = []; return this; }, /** * @memberof Map * @private * @param ui - UIComponent */ //@internal _addUI(ui: UIComponent): Map { if (!this.uiList) { this.uiList = []; } const index = this.uiList.indexOf(ui); if (index > -1) { return this; } this.uiList.push(ui); this.uiList = this.uiList.sort((a, b) => { return b.options['collisionWeight'] - a.options['collisionWeight']; }); return this; }, /** * @memberof Map * @private * @param ui - UIComponent */ //@internal _removeUI(ui: UIComponent): number { if (!this.uiList) { return -1; } const index = this.uiList.indexOf(ui); if (index < 0) { return index; } this.uiList.splice(index, 1); return index; } }); ```
/content/code_sandbox/src/map/Map.Collision.ts
xml
2016-02-03T02:41:32
2024-08-15T16:51:49
maptalks.js
maptalks/maptalks.js
4,272
1,026
```xml export * from './nested/bar' ```
/content/code_sandbox/test/fixtures/basic/composables/export-star.ts
xml
2016-10-26T11:18:47
2024-08-16T19:32:46
nuxt
nuxt/nuxt
53,705
8
```xml export * from './find-config.js'; export * from './get-config.js'; export * from './utils.js'; ```
/content/code_sandbox/src/helpers/index.ts
xml
2016-07-29T09:54:26
2024-08-08T15:15:52
graphql-config
kamilkisiela/graphql-config
1,160
24
```xml <vector xmlns:android="path_to_url" xmlns:aapt="path_to_url" android:width="48dp" android:height="48dp" android:viewportWidth="48" android:viewportHeight="48"> <path android:pathData="M37,6H11C9.343,6 8,7.343 8,9V39C8,40.657 9.343,42 11,42H37C38.657,42 40,40.657 40,39V9C40,7.343 38.657,6 37,6ZM10,9C10,8.448 10.448,8 11,8H37C37.552,8 38,8.448 38,9V39C38,39.552 37.552,40 37,40H11C10.448,40 10,39.552 10,39V9ZM11,10C11,9.448 11.448,9 12,9H15C15.552,9 16,9.448 16,10C16,10.552 15.552,11 15,11H12C11.448,11 11,10.552 11,10ZM12,12C11.448,12 11,12.448 11,13V15C11,15.552 11.448,16 12,16H15C15.552,16 16,15.552 16,15V13C16,12.448 15.552,12 15,12H12ZM33,12C32.448,12 32,12.448 32,13V15C32,15.552 32.448,16 33,16H36C36.552,16 37,15.552 37,15V13C37,12.448 36.552,12 36,12H33ZM33,9C32.448,9 32,9.448 32,10C32,10.552 32.448,11 33,11H36C36.552,11 37,10.552 37,10C37,9.448 36.552,9 36,9H33ZM11,38C11,37.448 11.448,37 12,37H15C15.552,37 16,37.448 16,38C16,38.552 15.552,39 15,39H12C11.448,39 11,38.552 11,38ZM33,37C32.448,37 32,37.448 32,38C32,38.552 32.448,39 33,39H36C36.552,39 37,38.552 37,38C37,37.448 36.552,37 36,37H33ZM11,18C11,17.448 11.448,17 12,17H15C15.552,17 16,17.448 16,18V20C16,20.552 15.552,21 15,21H12C11.448,21 11,20.552 11,20V18ZM33,17C32.448,17 32,17.448 32,18V20C32,20.552 32.448,21 33,21H36C36.552,21 37,20.552 37,20V18C37,17.448 36.552,17 36,17H33ZM11,23C11,22.448 11.448,22 12,22H15C15.552,22 16,22.448 16,23V25C16,25.552 15.552,26 15,26H12C11.448,26 11,25.552 11,25V23ZM33,22C32.448,22 32,22.448 32,23V25C32,25.552 32.448,26 33,26H36C36.552,26 37,25.552 37,25V23C37,22.448 36.552,22 36,22H33ZM11,28C11,27.448 11.448,27 12,27H15C15.552,27 16,27.448 16,28V30C16,30.552 15.552,31 15,31H12C11.448,31 11,30.552 11,30V28ZM33,27C32.448,27 32,27.448 32,28V30C32,30.552 32.448,31 33,31H36C36.552,31 37,30.552 37,30V28C37,27.448 36.552,27 36,27H33ZM11,33C11,32.448 11.448,32 12,32H15C15.552,32 16,32.448 16,33V35C16,35.552 15.552,36 15,36H12C11.448,36 11,35.552 11,35V33ZM33,32C32.448,32 32,32.448 32,33V35C32,35.552 32.448,36 33,36H36C36.552,36 37,35.552 37,35V33C37,32.448 36.552,32 36,32H33ZM20,19.045C20,18.212 20.957,17.744 21.614,18.255L27.985,23.211C28.5,23.611 28.5,24.389 27.985,24.789L21.614,29.745C20.957,30.256 20,29.788 20,28.955V19.045Z" android:fillType="evenOdd"> <aapt:attr name="android:fillColor"> <gradient android:startX="24" android:startY="6" android:endX="24" android:endY="42" android:type="linear"> <item android:offset="0" android:color="#FFFD6F90"/> <item android:offset="1" android:color="#FFF63D6B"/> </gradient> </aapt:attr> </path> </vector> ```
/content/code_sandbox/icon-pack/src/main/res/drawable/ic_video_thumbnail_outline.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
1,485
```xml <UserControl x:Class="Telegram.Controls.Cells.Premium.PremiumFeatureUpgradedStoriesCell" xmlns="path_to_url" xmlns:x="path_to_url" xmlns:local="using:Telegram.Views" xmlns:common="using:Telegram.Common" xmlns:controls="using:Telegram.Controls" xmlns:d="path_to_url" xmlns:mc="path_to_url" mc:Ignorable="d" Padding="0"> <Grid Background="{ThemeResource ContentDialogBackground}"> <ListView x:Name="ScrollingHost" ContainerContentChanging="OnContainerContentChanging" SelectionMode="None" Padding="12,0,12,0"> <ListView.Header> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <controls:ActiveStoriesSegments x:Name="Segments" TopColor="#FFc36eff" BottomColor="#FF8b60fa" Width="96" Height="96" Margin="0,24,0,8"> <controls:ProfilePicture x:Name="Photo" Width="96" Height="96" /> </controls:ActiveStoriesSegments> <TextBlock Text="{CustomResource UpgradedStories}" FontSize="20" FontFamily="XamlAutoFontFamily" FontWeight="SemiBold" TextAlignment="Center" VerticalAlignment="Top" Margin="0,0,0,8" Grid.Row="1" /> </Grid> </ListView.Header> <ListView.ItemTemplate> <DataTemplate> <Grid Padding="12,8,12,16"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <Border x:Name="IconPanel" VerticalAlignment="Top" Margin="0,0,12,0" Width="24" Height="24" CornerRadius="4" Grid.RowSpan="2"> <TextBlock x:Name="Icon" Foreground="#FFFFFF" HorizontalAlignment="Center" VerticalAlignment="Center" FontFamily="{StaticResource SymbolThemeFontFamily}" FontSize="20" /> </Border> <TextBlock x:Name="Title" VerticalAlignment="Top" Margin="0,-2,0,0" Grid.Column="1" /> <TextBlock x:Name="Subtitle" Style="{StaticResource InfoCaptionTextBlockStyle}" Grid.Column="1" Grid.Row="1" /> </Grid> </DataTemplate> </ListView.ItemTemplate> </ListView> <controls:ScrollViewerScrim Background="{ThemeResource ContentDialogBackground}" ScrollingHost="{x:Bind ScrollingHost}" /> </Grid> </UserControl> ```
/content/code_sandbox/Telegram/Controls/Cells/Premium/PremiumFeatureUpgradedStoriesCell.xaml
xml
2016-05-23T09:03:33
2024-08-16T16:17:48
Unigram
UnigramDev/Unigram
3,744
654
```xml <clickhouse> <http_forbid_headers> <header>exact_header</header> <header_regexp>(?i)(case_insensitive_header)</header_regexp> </http_forbid_headers> </clickhouse> ```
/content/code_sandbox/tests/config/config.d/forbidden_headers.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
50
```xml <dict> <key>LayoutID</key> <integer>7</integer> <key>PathMapRef</key> <array> <dict> <key>CodecID</key> <array> <integer>285343761</integer> </array> <key>Headphone</key> <dict/> <key>Inputs</key> <array> <string>Mic</string> <string>LineIn</string> </array> <key>LineIn</key> <dict/> <key>LineOut</key> <dict/> <key>Mic</key> <dict> <key>MuteGPIO</key> <integer>1342242834</integer> <key>SignalProcessing</key> <dict> <key>SoftwareDSP</key> <dict> <key>DspFunction0</key> <dict> <key>FunctionInfo</key> <dict> <key>DspFuncInstance</key> <integer>0</integer> <key>DspFuncName</key> <string>DspNoiseReduction</string> <key>DspFuncProcessingIndex</key> <integer>0</integer> </dict> <key>ParameterInfo</key> <dict> <key>1</key> <integer>0</integer> <key>2</key> <integer>1</integer> <key>3</key> <integer>0</integer> <key>4</key> <integer>-1073029587</integer> <key>5</key> <data>your_sha256_hashHMuYwrl9lcJXm4/CBhmQwuJvlMKbxJTC7qyUwtjDl8KU+ZzCnCaewsmuncK/your_sha512_hash+your_sha256_hashyour_sha256_hashfwhFzosLIZaPCwUOjwo6TosIkR6LC6vehwtrwosIdtJ/CXLmbwlSZmcKDhJXCDFGRwnV6j8JTjY/CrqGQwgqYk8INzpjCuTufwrjlocKviKPC5YqlwgdmpcKZ2aXCGiumwq95osJOIJ/Cxl+ewtWGl8KmPJPC+sSawkdHo8JWB6LCskyhwqk7pcIth6nCh4Wswk+crcK9J6zCYJWqwmVJq8K8063Cyour_sha512_hash+M0MKaftbCpcjdwm+p5sL/CfHCHcT8wrp3A8PiJAzD</data> </dict> <key>PatchbayInfo</key> <dict/> </dict> <key>DspFunction1</key> <dict> <key>FunctionInfo</key> <dict> <key>DspFuncInstance</key> <integer>1</integer> <key>DspFuncName</key> <string>DspEqualization32</string> <key>DspFuncProcessingIndex</key> <integer>1</integer> </dict> <key>ParameterInfo</key> <dict> <key>1</key> <integer>0</integer> <key>9</key> <integer>0</integer> <key>Filter</key> <array> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>0</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>1</integer> <key>6</key> <integer>1119939268</integer> <key>7</key> <integer>1060439283</integer> <key>8</key> <integer>-1069504319</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>4</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1165674830</integer> <key>7</key> <integer>1106304591</integer> <key>8</key> <integer>-1073964333</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>5</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1141348835</integer> <key>7</key> <integer>1084737706</integer> <key>8</key> <integer>-1065063953</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>6</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1139052693</integer> <key>7</key> <integer>1080938866</integer> <key>8</key> <integer>-1073319056</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>8</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1161958655</integer> <key>7</key> <integer>1099668786</integer> <key>8</key> <integer>-1073319056</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>9</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1148922426</integer> <key>7</key> <integer>1086508776</integer> <key>8</key> <integer>-1076100424</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>10</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1169908270</integer> <key>7</key> <integer>1106659062</integer> <key>8</key> <integer>-1078236516</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>11</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1168889995</integer> <key>7</key> <integer>1103911084</integer> <key>8</key> <integer>-1082886964</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>12</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1160729473</integer> <key>7</key> <integer>1095247586</integer> <key>8</key> <integer>-1076100424</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>19</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1171440929</integer> <key>7</key> <integer>1103785747</integer> <key>8</key> <integer>-1075032379</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>21</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1163187837</integer> <key>7</key> <integer>1102690138</integer> <key>8</key> <integer>-1073319056</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>23</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1172459204</integer> <key>7</key> <integer>1098523915</integer> <key>8</key> <integer>-1062927862</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>24</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1175303133</integer> <key>7</key> <integer>1102375714</integer> <key>8</key> <integer>-1061058782</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>25</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1179874390</integer> <key>7</key> <integer>1097945441</integer> <key>8</key> <integer>-1054338996</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>26</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1167504019</integer> <key>7</key> <integer>1102555367</integer> <key>8</key> <integer>-1044515201</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>27</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>4</integer> <key>6</key> <integer>1177335863</integer> <key>7</key> <integer>1102845396</integer> <key>8</key> <integer>-1054739513</integer> </dict> <dict> <key>2</key> <integer>2</integer> <key>3</key> <integer>31</integer> <key>4</key> <integer>0</integer> <key>5</key> <integer>0</integer> <key>6</key> <integer>1184146588</integer> <key>7</key> <integer>1060439283</integer> <key>8</key> <integer>-1069504319</integer> </dict> </array> </dict> <key>PatchbayInfo</key> <dict> <key>InputPort0</key> <dict> <key>PortInstance</key> <integer>0</integer> <key>PortWidth</key> <integer>1</integer> <key>SourceFuncInstance</key> <integer>0</integer> <key>SourcePortIndex</key> <integer>0</integer> </dict> <key>InputPort1</key> <dict> <key>PortInstance</key> <integer>1</integer> <key>PortWidth</key> <integer>1</integer> <key>SourceFuncInstance</key> <integer>0</integer> <key>SourcePortIndex</key> <integer>1</integer> </dict> </dict> </dict> <key>DspFunction2</key> <dict> <key>FunctionInfo</key> <dict> <key>DspFuncInstance</key> <integer>2</integer> <key>DspFuncName</key> <string>DspGainStage</string> <key>DspFuncProcessingIndex</key> <integer>2</integer> </dict> <key>ParameterInfo</key> <dict> <key>1</key> <integer>0</integer> <key>2</key> <integer>1065353216</integer> <key>3</key> <integer>1065353216</integer> </dict> <key>PatchbayInfo</key> <dict> <key>InputPort0</key> <dict> <key>PortInstance</key> <integer>0</integer> <key>PortWidth</key> <integer>1</integer> <key>SourceFuncInstance</key> <integer>1</integer> <key>SourcePortIndex</key> <integer>0</integer> </dict> <key>InputPort1</key> <dict> <key>PortInstance</key> <integer>1</integer> <key>PortWidth</key> <integer>1</integer> <key>SourceFuncInstance</key> <integer>1</integer> <key>SourcePortIndex</key> <integer>1</integer> </dict> </dict> </dict> </dict> </dict> </dict> <key>Outputs</key> <array> <string>LineOut</string> <string>Headphone</string> <string>SPDIFOut</string> </array> <key>PathMapID</key> <integer>7</integer> <key>SPDIFOut</key> <dict/> </dict> </array> </dict> ```
/content/code_sandbox/Resources/CA0132/layout7.xml
xml
2016-03-07T20:45:58
2024-08-14T08:57:03
AppleALC
acidanthera/AppleALC
3,420
4,069
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // TypeScript Version: 4.1 /** * Returns an object key. * * @returns new key */ type Nullary = () => string | symbol; /** * Returns an object key. * * @param key - object key * @returns new key */ type Unary = ( key: string ) => string | symbol; /** * Returns an object key. * * @param key - object key * @param value - object value corresponding to `key` * @returns new key */ type Binary = ( key: string, value: any ) => string | symbol; /** * Returns an object key. * * @param key - object key * @param value - object value corresponding to `key` * @param obj - the input object * @returns new key */ type Ternary = ( key: string, value: any, obj: any ) => string | symbol; /** * Returns an object key. * * @param key - object key * @param value - object value corresponding to `key` * @param obj - the input object * @returns new key */ type Transform = Nullary | Unary | Binary | Ternary; /** * Maps keys from one object to a new object having the same values. * * ## Notes * * - The transform function is provided three arguments: * * - `key`: object key * - `value`: object value corresponding to `key` * - `obj`: the input object * * - The value returned by a transform function should be a value which can be serialized as an object key. * * - The function only maps own properties. Hence, the function does not map inherited properties. * * - The function shallow copies key values. * * - Iteration order is **not** guaranteed. * * @param obj - source object * @param transform - transform function * @returns new object * * @example * function transform( key, value ) { * return key + value; * } * * var obj1 = { * 'a': 1, * 'b': 2 * }; * * var obj2 = mapKeys( obj1, transform ); * // returns { 'a1': 1, 'b2': 2 } */ declare function mapKeys( obj: any, transform: Transform ): any; // EXPORTS // export = mapKeys; ```
/content/code_sandbox/lib/node_modules/@stdlib/utils/map-keys/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
563
```xml export type IBBoolean = 'YES' | 'NO' | boolean; export type IBItem<H extends Record<string, any>, B extends Record<string, any[]> = { [key: string]: any; }> = { $: H; } & B; export type Rect = { key: string; x: number; y: number; width: number; height: number; }; export type IBRect = IBItem<Rect>; export type IBAutoresizingMask = IBItem<{ /** @example `autoresizingMask` */ key: string; flexibleMaxX: IBBoolean; flexibleMaxY: IBBoolean; }>; /** @example `<color key="textColor" systemColor="linkColor"/>` */ export type IBColor = IBItem<{ /** @example `textColor` */ key: string; } & (/** Custom color */ { /** @example `0.86584504117670746` */ red: number; /** @example `0.26445041990630447` */ green: number; /** @example `0.3248577810203549` */ blue: number; /** @example `1` */ alpha: number; colorSpace: 'custom' | string; customColorSpace: 'displayP3' | 'sRGB' | string; } /** Built-in color */ | { systemColor: 'linkColor' | string; })>; export type IBFontDescription = IBItem<{ /** @example `fontDescription` */ key: string; /** Font size */ pointSize: number; /** Custom font */ name?: 'HelveticaNeue' | string; family?: 'Helvetica Neue' | string; /** Built-in font */ type?: 'system' | 'boldSystem' | 'UICTFontTextStyleCallout' | 'UICTFontTextStyleBody' | string; }>; export type ImageContentMode = 'scaleAspectFit' | 'scaleAspectFill'; export type ConstraintAttribute = 'top' | 'bottom' | 'trailing' | 'leading'; export type IBImageView = IBItem<{ id: string; userLabel: string; image: string; clipsSubviews?: IBBoolean; userInteractionEnabled: IBBoolean; contentMode: IBContentMode; horizontalHuggingPriority: number; verticalHuggingPriority: number; insetsLayoutMarginsFromSafeArea?: IBBoolean; translatesAutoresizingMaskIntoConstraints?: IBBoolean; }, { rect: IBRect[]; }>; export type IBLabel = IBItem<{ id: string; /** The main value. */ text: string; opaque: IBBoolean; fixedFrame: IBBoolean; textAlignment?: IBTextAlignment; lineBreakMode: 'clip' | 'characterWrap' | 'wordWrap' | 'headTruncation' | 'middleTruncation' | 'tailTruncation'; baselineAdjustment?: 'none' | 'alignBaselines'; adjustsFontSizeToFit: IBBoolean; userInteractionEnabled: IBBoolean; contentMode: IBContentMode; horizontalHuggingPriority: number; verticalHuggingPriority: number; translatesAutoresizingMaskIntoConstraints?: IBBoolean; }, { /** @example `<rect key="frame" x="175" y="670" width="35" height="17"/>` */ rect: IBRect[]; /** @example `<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>` */ autoresizingMask?: IBAutoresizingMask[]; /** @example `<fontDescription key="fontDescription" type="system" pointSize="19"/>` */ fontDescription?: IBFontDescription[]; /** @example `<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>` */ color?: IBColor[]; nil?: IBItem<{ /** @example `textColor` `highlightedColor` */ key: string; }>[]; }>; export type IBTextAlignment = 'left' | 'center' | 'right' | 'justified' | 'natural'; export type IBContentMode = string | 'left' | 'scaleAspectFill'; export type IBConstraint = IBItem<{ firstItem: string; firstAttribute: ConstraintAttribute; secondItem: string; secondAttribute: ConstraintAttribute; constant?: number; id: string; }>; export type IBViewController = IBItem<{ id: string; placeholderIdentifier?: string; userLabel: string; sceneMemberID: string; }, { view: IBItem<{ id: string; key: string; userInteractionEnabled: IBBoolean; contentMode: string | 'scaleToFill'; insetsLayoutMarginsFromSafeArea: IBBoolean; userLabel: string; }, { rect: IBRect[]; autoresizingMask: IBItem<{ key: string; flexibleMaxX: IBBoolean; flexibleMaxY: IBBoolean; }>[]; subviews: IBItem<object, { imageView: IBImageView[]; label: IBLabel[]; }>[]; color: IBItem<{ key: string | 'backgroundColor'; systemColor: string | 'systemBackgroundColor'; }>[]; constraints: IBItem<object, { constraint: IBConstraint[]; }>[]; viewLayoutGuide: IBItem<{ id: string; key: string | 'safeArea'; }>[]; }>[]; }>; export type IBPoint = IBItem<{ key: string | 'canvasLocation'; x: number; y: number; }>; export type IBScene = IBItem<{ sceneID: string; }, { objects: { viewController: IBViewController[]; placeholder: IBItem<{ id: string; placeholderIdentifier?: string; userLabel: string; sceneMemberID: string; }>[]; }[]; point: IBPoint[]; }>; export type IBResourceImage = IBItem<{ name: string; width: number; height: number; }>; export type IBDevice = IBItem<{ id: string; orientation: string | 'portrait'; appearance: string | 'light'; }>; export type IBSplashScreenDocument = { document: IBItem<{ type: 'com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB' | string; version: '3.0' | string; toolsVersion: number; targetRuntime: 'iOS.CocoaTouch' | string; propertyAccessControl: 'none' | string; useAutolayout: IBBoolean; launchScreen: IBBoolean; useTraitCollections: IBBoolean; useSafeAreas: IBBoolean; colorMatched: IBBoolean; initialViewController: string; }, { device: IBDevice[]; dependencies: unknown[]; scenes: { scene: IBScene[]; }[]; resources: { image: IBResourceImage[]; }[]; }>; }; export declare function createConstraint([firstItem, firstAttribute]: [string, ConstraintAttribute], [secondItem, secondAttribute]: [string, ConstraintAttribute], constant?: number): IBConstraint; export declare function createConstraintId(...attributes: string[]): string; export declare function removeImageFromSplashScreen(xml: IBSplashScreenDocument, { imageName }: { imageName: string; }): IBSplashScreenDocument; export declare function applyImageToSplashScreenXML(xml: IBSplashScreenDocument, { imageName, contentMode, }: { imageName: string; contentMode: ImageContentMode; }): IBSplashScreenDocument; /** * IB does not allow two items to have the same ID. * This method will add an item by first removing any existing item with the same `$.id`. */ export declare function ensureUniquePush<TItem extends { $: { id: string; }; }>(array: TItem[], item: TItem): TItem[]; export declare function removeExisting<TItem extends { $: { id: string; }; }>(array: TItem[], item: TItem | string): TItem[]; export declare function toString(xml: any): string; /** Parse string contents into an object. */ export declare function toObjectAsync(contents: string): Promise<any>; ```
/content/code_sandbox/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/InterfaceBuilder.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
1,774
```xml export { Input, inputClassNames, renderInput_unstable, useInputStyles_unstable, useInput_unstable } from './Input'; export type { InputOnChangeData, InputProps, InputSlots, InputState } from './Input'; ```
/content/code_sandbox/packages/react-components/react-input/library/src/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
49
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ import iterDeg2rad = require( './index' ); /** * Returns an iterator protocol-compliant object. * * @returns iterator protocol-compliant object */ function iterator() { return { 'next': next }; } /** * Implements the iterator protocol `next` method. * * @returns iterator protocol-compliant object */ function next() { return { 'value': true, 'done': false }; } // TESTS // // The function returns an iterator... { iterDeg2rad( iterator() ); // $ExpectType Iterator } // The compiler throws an error if the function is provided a first argument which is not an iterator protocol-compliant object... { iterDeg2rad( '5' ); // $ExpectError iterDeg2rad( 5 ); // $ExpectError iterDeg2rad( true ); // $ExpectError iterDeg2rad( false ); // $ExpectError iterDeg2rad( null ); // $ExpectError iterDeg2rad( undefined ); // $ExpectError iterDeg2rad( [] ); // $ExpectError iterDeg2rad( {} ); // $ExpectError iterDeg2rad( ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the function is provided insufficient arguments... { iterDeg2rad(); // $ExpectError } ```
/content/code_sandbox/lib/node_modules/@stdlib/math/iter/special/deg2rad/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
340
```xml // See LICENSE.txt for license information. import {Database, Q} from '@nozbe/watermelondb'; import {of as of$} from 'rxjs'; import {MM_TABLES} from '@constants/database'; import type DraftModel from '@typings/database/models/servers/draft'; const {SERVER: {DRAFT}} = MM_TABLES; export const getDraft = async (database: Database, channelId: string, rootId = '') => { const record = await queryDraft(database, channelId, rootId).fetch(); // Check done to force types if (record.length) { return record[0]; } return undefined; }; export const queryDraft = (database: Database, channelId: string, rootId = '') => { return database.collections.get<DraftModel>(DRAFT).query( Q.where('channel_id', channelId), Q.where('root_id', rootId), ); }; export function observeFirstDraft(v: DraftModel[]) { return v[0]?.observe() || of$(undefined); } ```
/content/code_sandbox/app/queries/servers/drafts.ts
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
220
```xml import { BaseResponse } from "@bitwarden/common/models/response/base.response"; export class ServiceAccountResponse extends BaseResponse { id: string; organizationId: string; name: string; creationDate: string; revisionDate: string; constructor(response: any) { super(response); this.id = this.getResponseProperty("Id"); this.organizationId = this.getResponseProperty("OrganizationId"); this.name = this.getResponseProperty("Name"); this.creationDate = this.getResponseProperty("CreationDate"); this.revisionDate = this.getResponseProperty("RevisionDate"); } } export class ServiceAccountSecretsDetailsResponse extends ServiceAccountResponse { accessToSecrets: number; constructor(response: any) { super(response); this.accessToSecrets = this.getResponseProperty("AccessToSecrets"); } } ```
/content/code_sandbox/bitwarden_license/bit-web/src/app/secrets-manager/service-accounts/models/responses/service-account.response.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
176
```xml // See LICENSE.txt for license information. import {Button} from '@rneui/base'; import {openAuthSessionAsync} from 'expo-web-browser'; import qs from 'querystringify'; import React, {useEffect, useState} from 'react'; import {useIntl} from 'react-intl'; import {Linking, Platform, Text, View, type EventSubscription} from 'react-native'; import urlParse from 'url-parse'; import FormattedText from '@components/formatted_text'; import {Sso} from '@constants'; import NetworkManager from '@managers/network_manager'; import {buttonBackgroundStyle, buttonTextStyle} from '@utils/buttonStyles'; import {isBetaApp} from '@utils/general'; import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme'; import {typography} from '@utils/typography'; interface SSOWithRedirectURLProps { doSSOLogin: (bearerToken: string, csrfToken: string) => void; loginError: string; loginUrl: string; serverUrl: string; setLoginError: (value: string) => void; theme: Theme; } const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { return { button: { marginTop: 25, }, container: { flex: 1, paddingHorizontal: 24, }, errorText: { color: changeOpacity(theme.centerChannelColor, 0.72), textAlign: 'center', ...typography('Body', 200, 'Regular'), }, infoContainer: { alignItems: 'center', flex: 1, justifyContent: 'center', }, infoText: { color: changeOpacity(theme.centerChannelColor, 0.72), ...typography('Body', 100, 'Regular'), }, infoTitle: { color: theme.centerChannelColor, marginBottom: 4, ...typography('Heading', 700), }, }; }); const SSOAuthentication = ({doSSOLogin, loginError, loginUrl, serverUrl, setLoginError, theme}: SSOWithRedirectURLProps) => { const [error, setError] = useState<string>(''); const style = getStyleSheet(theme); const intl = useIntl(); let customUrlScheme = Sso.REDIRECT_URL_SCHEME; if (isBetaApp) { customUrlScheme = Sso.REDIRECT_URL_SCHEME_DEV; } const redirectUrl = customUrlScheme + 'callback'; const init = async (resetErrors = true) => { if (resetErrors !== false) { setError(''); setLoginError(''); NetworkManager.invalidateClient(serverUrl); NetworkManager.createClient(serverUrl); } const parsedUrl = urlParse(loginUrl, true); const query: Record<string, string> = { ...parsedUrl.query, redirect_to: redirectUrl, }; parsedUrl.set('query', qs.stringify(query)); const url = parsedUrl.toString(); const result = await openAuthSessionAsync(url, null, {preferEphemeralSession: true}); if ('url' in result && result.url) { const resultUrl = urlParse(result.url, true); const bearerToken = resultUrl.query?.MMAUTHTOKEN; const csrfToken = resultUrl.query?.MMCSRF; if (bearerToken && csrfToken) { doSSOLogin(bearerToken, csrfToken); } } else if (Platform.OS === 'ios' || result.type === 'dismiss') { setError( intl.formatMessage({ id: 'mobile.oauth.failed_to_login', defaultMessage: 'Your login attempt failed. Please try again.', }), ); } }; useEffect(() => { let listener: EventSubscription | null = null; if (Platform.OS === 'android') { const onURLChange = ({url}: { url: string }) => { setError(''); if (url && url.startsWith(redirectUrl)) { const parsedUrl = urlParse(url, true); const bearerToken = parsedUrl.query?.MMAUTHTOKEN; const csrfToken = parsedUrl.query?.MMCSRF; if (bearerToken && csrfToken) { doSSOLogin(bearerToken, csrfToken); } else { setError( intl.formatMessage({ id: 'mobile.oauth.failed_to_login', defaultMessage: 'Your login attempt failed. Please try again.', }), ); } } }; listener = Linking.addEventListener('url', onURLChange); } const timeout = setTimeout(() => { init(false); }, 1000); return () => { clearTimeout(timeout); listener?.remove(); }; }, []); return ( <View style={style.container} testID='sso.redirect_url' > {loginError || error ? ( <View style={style.infoContainer}> <FormattedText id='mobile.oauth.switch_to_browser.error_title' testID='mobile.oauth.switch_to_browser.error_title' defaultMessage='Sign in error' style={style.infoTitle} /> <Text style={style.errorText}> {`${loginError || error}.`} </Text> <Button buttonStyle={[style.button, buttonBackgroundStyle(theme, 'lg', 'primary', 'default')]} testID='mobile.oauth.try_again' onPress={() => init()} > <FormattedText id='mobile.oauth.try_again' defaultMessage='Try again' style={buttonTextStyle(theme, 'lg', 'primary', 'default')} /> </Button> </View> ) : ( <View style={style.infoContainer}> <FormattedText id='mobile.oauth.switch_to_browser.title' testID='mobile.oauth.switch_to_browser.title' defaultMessage='Redirecting...' style={style.infoTitle} /> <FormattedText id='mobile.oauth.switch_to_browser' testID='mobile.oauth.switch_to_browser' defaultMessage='You are being redirected to your login provider' style={style.infoText} /> </View> )} </View> ); }; export default SSOAuthentication; ```
/content/code_sandbox/app/screens/sso/sso_authentication.tsx
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
1,328
```xml import { html } from '@microsoft/fast-element'; import type { Args, Meta } from '@storybook/html'; import { renderComponent } from '../helpers.stories.js'; import type { Menu as FluentMenu } from './menu.js'; type MenuStoryArgs = Args & FluentMenu; type MenuStoryMeta = Meta<MenuStoryArgs>; const storyTemplate = html<MenuStoryArgs>` <style> .container { display: flex; align-items: center; justify-content: center; } </style> <fluent-menu ?open-on-hover="${x => x.openOnHover}" ?open-on-context="${x => x.openOnContext}" ?close-on-scroll="${x => x.closeOnScroll}" ?persist-on-item-click="${x => x.persistOnItemClick}" > <fluent-menu-button aria-label="Toggle Menu" appearance="primary" slot="trigger">Toggle Menu</fluent-menu-button> <fluent-menu-list> <fluent-menu-item>Menu item 1</fluent-menu-item> <fluent-menu-item>Menu item 2</fluent-menu-item> <fluent-menu-item>Menu item 3</fluent-menu-item> <fluent-menu-item>Menu item 4</fluent-menu-item> </fluent-menu-list> </fluent-menu> `; export default { title: 'Components/Menu', args: { openOnHover: false, openOnContext: false, closeOnScroll: false, persistOnItemClick: false, }, argTypes: { openOnHover: { description: 'Sets whether menu opens on hover', table: { defaultValue: { summary: false }, }, control: 'boolean', defaultValue: false, }, openOnContext: { description: 'Opens the menu on right click (context menu), removes all other menu open interactions', table: { defaultValue: { summary: false }, }, control: 'boolean', defaultValue: false, }, closeOnScroll: { description: 'Close when scroll outside of it', table: { defaultValue: { summary: false }, }, control: 'boolean', defaultValue: false, }, persistOnItemClick: { description: 'Prevents the menu from closing when an item is clicked', table: { defaultValue: { summary: false }, }, control: 'boolean', defaultValue: false, }, }, } as MenuStoryMeta; export const Menu = renderComponent(storyTemplate).bind({}); export const MenuOpenOnHover = renderComponent(html<MenuStoryArgs>` <div class="container"> <fluent-menu open-on-hover> <fluent-menu-button aria-label="Toggle Menu" appearance="primary" slot="trigger">Toggle Menu</fluent-menu-button> <fluent-menu-list> <fluent-menu-item>Menu item 1</fluent-menu-item> <fluent-menu-item>Menu item 2</fluent-menu-item> <fluent-menu-item>Menu item 3</fluent-menu-item> <fluent-menu-item>Menu item 4</fluent-menu-item> </fluent-menu-list> </fluent-menu> </div> `); export const MenuOpenOnContext = renderComponent(html<MenuStoryArgs>` <div class="container"> <fluent-menu open-on-context> <fluent-menu-button aria-label="Toggle Menu" appearance="primary" slot="trigger">Toggle Menu</fluent-menu-button> <fluent-menu-list> <fluent-menu-item>Menu item 1</fluent-menu-item> <fluent-menu-item>Menu item 2</fluent-menu-item> <fluent-menu-item>Menu item 3</fluent-menu-item> <fluent-menu-item>Menu item 4</fluent-menu-item> </fluent-menu-list> </fluent-menu> </div> `); export const MenuWithMaxHeight = renderComponent(html<MenuStoryArgs>` <div class="container"> <fluent-menu style="--menu-max-height: 10rem"> <fluent-menu-button appearance="primary" slot="trigger">Toggle Menu</fluent-menu-button> <fluent-menu-list> <fluent-menu-item>Menu item 1</fluent-menu-item> <fluent-menu-item>Menu item 2</fluent-menu-item> <fluent-menu-item>Menu item 3</fluent-menu-item> <fluent-menu-item>Menu item 4</fluent-menu-item> <fluent-menu-item>Menu item 5</fluent-menu-item> <fluent-menu-item>Menu item 6</fluent-menu-item> <fluent-menu-item>Menu item 7</fluent-menu-item> <fluent-menu-item>Menu item 8</fluent-menu-item> </fluent-menu-list> </fluent-menu> </div> `); export const MenuWithInteractiveItems = renderComponent(html<MenuStoryArgs>` <div class="container"> <fluent-menu> <fluent-menu-button appearance="primary" slot="trigger">Toggle Menu</fluent-menu-button> <fluent-menu-list> <fluent-menu-item> Item 1 <fluent-menu-list slot="submenu"> <fluent-menu-item> Subitem 1 </fluent-menu-item> <fluent-menu-item> Subitem 2 </fluent-menu-item> </fluent-menu-list> </fluent-menu-item> <fluent-menu-item role="menuitemcheckbox"> Item 2 </fluent-menu-item> <fluent-menu-item role="menuitemcheckbox"> Item 3 </fluent-menu-item> <fluent-divider role="separator" aria-orientation="horizontal" orientation="horizontal"></fluent-divider> <fluent-menu-item>Menu item 4</fluent-menu-item> <fluent-menu-item>Menu item 5</fluent-menu-item> <fluent-menu-item>Menu item 6</fluent-menu-item> <fluent-menu-item>Menu item 7</fluent-menu-item> <fluent-menu-item>Menu item 8</fluent-menu-item> </fluent-menu-list> </fluent-menu> </div> `); ```
/content/code_sandbox/packages/web-components/src/menu/menu.stories.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
1,364
```xml import React from 'react' import { SafeAreaProvider } from 'react-native-safe-area-context' import { ThemeProvider } from 'styled-components' import Toast from 'react-native-toast-message' import { commonTheme } from './theme/theme' import { Navigation } from './navigation' export function AppComponent() { return ( <SafeAreaProvider> <ThemeProvider theme={commonTheme}> <Navigation /> <Toast /> </ThemeProvider> </SafeAreaProvider> ) } ```
/content/code_sandbox/example-expo/src/AppComponent.tsx
xml
2016-07-27T10:57:27
2024-08-14T16:51:53
react-native-ble-plx
dotintent/react-native-ble-plx
3,006
101
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net7.0</TargetFramework> <LangVersion>preview</LangVersion> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> </Project> ```
/content/code_sandbox/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/ClassLib.csproj
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
65
```xml /* * This software is released under MIT license. * The full license information can be found in LICENSE in the root directory of this project. */ import { property } from '@cds/core/internal'; import { CdsButtonAction } from '@cds/core/button-action'; export const CdsCloseButtonTagName = 'cds-internal-close-button'; /** * Standard close button for Clarity Components extends default cds-button-action * * ```typescript * import '@cds/core/internal-components/close-button/register.js'; * ``` * * ```html * <cds-internal-close-button></cds-internal-close-button> * ``` * * @element cds-internal-close-button */ export class CdsInternalCloseButton extends CdsButtonAction { @property({ type: String }) shape = 'close'; connectedCallback() { super.connectedCallback(); this.ariaLabel = this.ariaLabel ? this.ariaLabel : this.i18n.close; } } ```
/content/code_sandbox/packages/core/src/internal-components/close-button/close-button.element.ts
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
202
```xml <?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="path_to_url" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../Resources.resx"> <body> <trans-unit id="AddMemberThrowsException"> <source>Adding member '{0}' to the named type '{1}' failed with exception '{2}'.</source> <target state="new">Adding member '{0}' to the named type '{1}' failed with exception '{2}'.</target> <note /> </trans-unit> <trans-unit id="ResolveTypeForwardFailed"> <source>Could not resolve type '{0}' in containing assembly '{1}' via type forward. Make sure that the assembly is provided as a reference and contains the type.</source> <target state="new">Could not resolve type '{0}' in containing assembly '{1}' via type forward. Make sure that the assembly is provided as a reference and contains the type.</target> <note /> </trans-unit> </body> </file> </xliff> ```
/content/code_sandbox/src/Compatibility/GenAPI/Microsoft.DotNet.GenAPI/xlf/Resources.it.xlf
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
294
```xml import { useFolders, useHandler } from '@proton/components'; import { conversationCountsActions, messageCountsActions, selectConversationCounts, selectMessageCounts, } from '@proton/mail'; import { MAILBOX_LABEL_IDS } from '@proton/shared/lib/constants'; import type { Message } from '@proton/shared/lib/interfaces/mail/Message'; import type { RequireSome } from '@proton/shared/lib/interfaces/utils'; import { useMailDispatch, useMailStore } from 'proton-mail/store/hooks'; import { updateCounters } from '../../helpers/counter'; import { getCurrentFolderIDs, hasLabel, isMessage as testIsMessage } from '../../helpers/elements'; import type { LabelChanges, UnreadStatus } from '../../helpers/labels'; import { applyLabelChangesOnConversation, applyLabelChangesOnMessage, applyLabelChangesOnOneMessageOfAConversation, } from '../../helpers/labels'; import type { Conversation } from '../../models/conversation'; import type { Element } from '../../models/element'; import { applyLabelsOnConversation, applyLabelsOnConversationMessages, } from '../../store/conversations/conversationsActions'; import { optimisticApplyLabels as optimisticApplyLabelsElementsAction } from '../../store/elements/elementsActions'; import { optimisticApplyLabels as optimisticApplyLabelsMessageAction } from '../../store/messages/optimistic/messagesOptimisticActions'; import { useGetConversation } from '../conversation/useConversation'; import { useGetElementByID } from '../mailbox/useElements'; const { SENT, DRAFTS } = MAILBOX_LABEL_IDS; const computeRollbackLabelChanges = (element: Element, changes: LabelChanges) => { const rollbackChange = {} as LabelChanges; Object.keys(changes).forEach((labelID) => { if (changes[labelID] && !hasLabel(element, labelID)) { rollbackChange[labelID] = false; } if (!changes[labelID] && hasLabel(element, labelID)) { rollbackChange[labelID] = true; } }); return rollbackChange; }; export const useOptimisticApplyLabels = () => { const store = useMailStore(); const dispatch = useMailDispatch(); const getElementByID = useGetElementByID(); const [folders = []] = useFolders(); const getConversation = useGetConversation(); /** * Apply optimistically changes in the cache * @param elements * @param inputChanges * @param isMove Is the label change is a move to folder * @param unreadStatuses unread statuses of all elements to be able to use them when using optimistic rollback. Is [] by default when moving, but can be filled when rollback * @param currentLabelID The current label ID on the UI, only used for moves, moving from sent or draft folders have specific meaning * @returns a rollback function to undo all changes */ const optimisticApplyLabels = useHandler( ( elements: Element[], inputChanges: LabelChanges | LabelChanges[], isMove = false, unreadStatuses?: UnreadStatus[], currentLabelID?: string ) => { const rollbackChanges = [] as { element: Element; changes: LabelChanges }[]; const updatedElements = [] as Element[]; const elementsUnreadStatuses = [] as UnreadStatus[]; const isMessage = testIsMessage(elements[0]); let { value: messageCounters = [] } = selectMessageCounts(store.getState()); let { value: conversationCounters = [] } = selectConversationCounts(store.getState()); // Updates in message cache elements.forEach((element, index) => { const changes = Array.isArray(inputChanges) ? { ...inputChanges[index] } : { ...inputChanges }; if (isMove) { const currentFolderIDs = ([SENT, DRAFTS] as string[]).includes(currentLabelID || '') ? [currentLabelID as string] : getCurrentFolderIDs(element, folders); const isMoveToCurrentFolder = currentFolderIDs.every((folderID) => changes[folderID]); if (isMoveToCurrentFolder) { // It's a move to the folder where the elements is already, so nothing to do or undo return; } /* * When moving elements to trash, we store the unread status of all elements so that * we can use the previous unread status for the optimistic rollback */ if (Object.keys(inputChanges).includes(MAILBOX_LABEL_IDS.TRASH)) { if (isMessage) { const message = element as Message; elementsUnreadStatuses.push({ id: message.ID, unread: message.Unread }); } else { const conversation = element as Conversation; elementsUnreadStatuses.push({ id: conversation.ID ? conversation.ID : '', unread: conversation.NumUnread ? conversation.NumUnread : 0, }); } } currentFolderIDs.forEach((folderID) => { changes[folderID] = false; }); } rollbackChanges.push({ element, changes: computeRollbackLabelChanges(element, changes) }); if (isMessage) { const message = element as Message; dispatch(optimisticApplyLabelsMessageAction({ ID: element.ID || '', changes, unreadStatuses })); // Update in conversation cache const conversationResult = getConversation(message.ConversationID); if (conversationResult && conversationResult.Conversation) { const conversation = conversationResult.Conversation; const { updatedConversation, conversationChanges } = applyLabelChangesOnOneMessageOfAConversation(conversation, changes); dispatch( applyLabelsOnConversationMessages({ ID: message.ConversationID, messageID: message.ID, changes, unreadStatuses, updatedConversation, conversationResult, // TODO: Check if needed }) ); // Update conversation count when the conversation is loaded conversationCounters = updateCounters(conversation, conversationCounters, conversationChanges); } // Updates in elements cache if message mode const messageElement = getElementByID(message.ID); if (messageElement && messageElement.ID) { updatedElements.push( applyLabelChangesOnMessage(messageElement as Message, changes, unreadStatuses) ); } // Update in elements cache if conversation mode const conversationElement = getElementByID(message.ConversationID); if (conversationElement && conversationElement.ID) { const { updatedConversation } = applyLabelChangesOnOneMessageOfAConversation( conversationElement, changes ); updatedElements.push(updatedConversation); } // Update message and conversation counters messageCounters = updateCounters(message, messageCounters, changes); } else { // isConversation const conversation = element as RequireSome<Conversation, 'ID'>; // Update in conversation cache const conversationFromState = getConversation(conversation.ID); dispatch(applyLabelsOnConversation({ ID: conversation.ID, changes, unreadStatuses })); // Update in elements cache if conversation mode const conversationElement = getElementByID(conversation.ID); if (conversationElement && conversationElement.ID) { updatedElements.push( applyLabelChangesOnConversation(conversationElement, changes, unreadStatuses) ); } // Update messages from the conversation (if loaded) conversationFromState?.Messages?.forEach((message) => { dispatch(optimisticApplyLabelsMessageAction({ ID: message.ID, changes, unreadStatuses })); }); // Update conversation counters conversationCounters = updateCounters(conversation, conversationCounters, changes); } }); if (updatedElements.length) { dispatch(optimisticApplyLabelsElementsAction({ elements: updatedElements, isMove })); } store.dispatch(messageCountsActions.set(messageCounters)); store.dispatch(conversationCountsActions.set(conversationCounters)); return () => { // Building elements and changes so that we do the optimistic update in a single call const { elements, inputChanges } = rollbackChanges.reduce<{ elements: Element[]; inputChanges: LabelChanges[]; }>( (acc, rollbackChange) => { acc.elements.push(rollbackChange.element); acc.inputChanges.push(rollbackChange.changes); return acc; }, { elements: [], inputChanges: [] } ); optimisticApplyLabels(elements, inputChanges, false, elementsUnreadStatuses); }; } ); return optimisticApplyLabels; }; ```
/content/code_sandbox/applications/mail/src/app/hooks/optimistic/useOptimisticApplyLabels.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
1,787
```xml import * as React from 'react'; import { Flex, Image, Text, Header } from '@fluentui/react-northstar'; const FlexExampleMediaCard = () => ( <Flex gap="gap.medium" padding="padding.medium" debug> <Flex.Item size="size.medium"> <div style={{ position: 'relative' }}> <Image fluid src="path_to_url" /> </div> </Flex.Item> <Flex.Item grow> <Flex column gap="gap.small" vAlign="stretch"> <Flex space="between"> <Header as="h3" content=" " /> <Text as="pre" content="Oct 24th, 00:01, " /> </Flex> <Text content=" . " /> <Flex.Item push> <Text as="pre" content=" : Fluent UI." /> </Flex.Item> </Flex> </Flex.Item> </Flex> ); export default FlexExampleMediaCard; ```
/content/code_sandbox/packages/fluentui/docs/src/examples/components/Flex/Rtl/FlexExample.rtl.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
213
```xml import { Select } from 'antd'; import { SelectValue } from 'antd/lib/select'; import { Connect } from 'dob-react'; import * as _ from 'lodash'; import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { pipeEvent } from '../../utils/functional'; import * as Styled from './index.style'; import { Props, State } from './index.type'; const sep = ':'; @Connect class MainToolEditorVariable extends React.Component<Props, State> { public static defaultProps = new Props(); public state = new State(); /** * */ private instanceInfo: InstanceInfo; public render() { if (!this.props.stores.ViewportStore.instances.has(this.props.stores.ViewportStore.currentEditInstanceKey)) { return null; } this.instanceInfo = this.props.stores.ViewportStore.instances.get( this.props.stores.ViewportStore.currentEditInstanceKey, ); let value = null; const variable = this.instanceInfo.variables && this.instanceInfo.variables[this.props.realField]; if (variable) { value = variable.type + sep + variable.key; } return ( <Styled.Container> <Select value={value} onChange={this.handleSelectVariable}> {this.getVariableOptions()} </Select> </Styled.Container> ); } /** * */ private getVariableOptions = () => { const options = []; // const siblingOptions: { key: string; value: string; }[] = []; // this.props.actions.ViewportAction.getSiblingInstances( this.props.stores.ViewportStore.currentEditInstanceKey, ).forEach(instance => { if (instance.data.events) { instance.data.events.forEach(event => { const params = this.props.actions.ViewportAction.eventGetSiblingParam(event); if (params) { // TODO: // params.forEach(param => { // siblingOptions.push({ // key: 'sibling:' + param, // value: param // }); // }); } }); } }); if (siblingOptions.length > 0) { options.push({ groupValue: this.props.stores.ApplicationStore.setLocale('', 'Current group'), children: siblingOptions, }); } return options; }; private handleSelectVariable = (value: SelectValue) => { // : const splitValue = (value as string).split(sep); const type = splitValue[0] as InstanceInfoVariableType; const key = splitValue.slice(1, splitValue.length).join(sep); this.props.actions.ViewportAction.instanceSetVariable( this.props.stores.ViewportStore.currentEditInstanceKey, this.props.realField, { type, key, }, ); }; } export default { position: 'mainToolEditorVariable', class: MainToolEditorVariable, }; ```
/content/code_sandbox/src/plugins/main-tool-editor-variable/index.tsx
xml
2016-09-20T11:57:51
2024-07-23T03:40:11
gaea-editor
ascoders/gaea-editor
1,339
636
```xml <?xml version="1.0" encoding="UTF-8"?> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.03"> <data> <int key="IBDocument.SystemTarget">1050</int> <string key="IBDocument.SystemVersion">9J61</string> <string key="IBDocument.InterfaceBuilderVersion">677</string> <string key="IBDocument.AppKitVersion">949.46</string> <string key="IBDocument.HIToolboxVersion">353.00</string> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <bool key="EncodedWithXMLCoder">YES</bool> <integer value="57"/> <integer value="371"/> </object> <object class="NSArray" key="IBDocument.PluginDependencies"> <bool key="EncodedWithXMLCoder">YES</bool> <string>com.apple.InterfaceBuilderKit</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> </object> <object class="NSMutableDictionary" key="IBDocument.Metadata"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSArray" key="dict.sortedKeys"> <bool key="EncodedWithXMLCoder">YES</bool> </object> <object class="NSMutableArray" key="dict.values"> <bool key="EncodedWithXMLCoder">YES</bool> </object> </object> <object class="NSMutableArray" key="IBDocument.RootObjects" id="1048"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSCustomObject" id="1021"> <string key="NSClassName">NSApplication</string> </object> <object class="NSCustomObject" id="1014"> <string key="NSClassName">FirstResponder</string> </object> <object class="NSCustomObject" id="1050"> <string key="NSClassName">NSApplication</string> </object> <object class="NSMenu" id="649796088"> <string key="NSTitle">AMainMenu</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="694149608"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">NewApplication</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <object class="NSCustomResource" key="NSOnImage" id="35465992"> <string key="NSClassName">NSImage</string> <string key="NSResourceName">NSMenuCheckmark</string> </object> <object class="NSCustomResource" key="NSMixedImage" id="502551668"> <string key="NSClassName">NSImage</string> <string key="NSResourceName">NSMenuMixedState</string> </object> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="110575045"> <string key="NSTitle">NewApplication</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="238522557"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">About NewApplication</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="304266470"> <reference key="NSMenu" ref="110575045"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="609285721"> <reference key="NSMenu" ref="110575045"/> <string type="base64-UTF8" key="NSTitle">UHJlZmVyZW5jZXPigKY</string> <string key="NSKeyEquiv">,</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="481834944"> <reference key="NSMenu" ref="110575045"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1046388886"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">Services</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="752062318"> <string key="NSTitle">Services</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> </object> <string key="NSName">_NSServicesMenu</string> </object> </object> <object class="NSMenuItem" id="646227648"> <reference key="NSMenu" ref="110575045"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="755159360"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">Hide NewApplication</string> <string key="NSKeyEquiv">h</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="342932134"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">Hide Others</string> <string key="NSKeyEquiv">h</string> <int key="NSKeyEquivModMask">1572864</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="908899353"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">Show All</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1056857174"> <reference key="NSMenu" ref="110575045"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="632727374"> <reference key="NSMenu" ref="110575045"/> <string key="NSTitle">Quit NewApplication</string> <string key="NSKeyEquiv">q</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> <string key="NSName">_NSAppleMenu</string> </object> </object> <object class="NSMenuItem" id="379814623"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">File</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="720053764"> <string key="NSTitle">File</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="705341025"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">New</string> <string key="NSKeyEquiv">n</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="722745758"> <reference key="NSMenu" ref="720053764"/> <string type="base64-UTF8" key="NSTitle">T3BlbuKApg</string> <string key="NSKeyEquiv">o</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1025936716"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">Open Recent</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="1065607017"> <string key="NSTitle">Open Recent</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="759406840"> <reference key="NSMenu" ref="1065607017"/> <string key="NSTitle">Clear Menu</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> <string key="NSName">_NSRecentDocumentsMenu</string> </object> </object> <object class="NSMenuItem" id="425164168"> <reference key="NSMenu" ref="720053764"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="776162233"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">Close</string> <string key="NSKeyEquiv">w</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1023925487"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">Save</string> <string key="NSKeyEquiv">s</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="117038363"> <reference key="NSMenu" ref="720053764"/> <string type="base64-UTF8" key="NSTitle">U2F2ZSBBc+KApg</string> <string key="NSKeyEquiv">S</string> <int key="NSKeyEquivModMask">1179648</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="579971712"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">Revert to Saved</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1010469920"> <reference key="NSMenu" ref="720053764"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="294629803"> <reference key="NSMenu" ref="720053764"/> <string key="NSTitle">Page Setup...</string> <string key="NSKeyEquiv">P</string> <int key="NSKeyEquivModMask">1179648</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSToolTip"/> </object> <object class="NSMenuItem" id="49223823"> <reference key="NSMenu" ref="720053764"/> <string type="base64-UTF8" key="NSTitle">UHJpbnTigKY</string> <string key="NSKeyEquiv">p</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="952259628"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">Edit</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="789758025"> <string key="NSTitle">Edit</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="1058277027"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Undo</string> <string key="NSKeyEquiv">z</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="790794224"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Redo</string> <string key="NSKeyEquiv">Z</string> <int key="NSKeyEquivModMask">1179648</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1040322652"> <reference key="NSMenu" ref="789758025"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="296257095"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Cut</string> <string key="NSKeyEquiv">x</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="860595796"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Copy</string> <string key="NSKeyEquiv">c</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="29853731"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Paste</string> <string key="NSKeyEquiv">v</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="437104165"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Delete</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="583158037"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Select All</string> <string key="NSKeyEquiv">a</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="212016141"> <reference key="NSMenu" ref="789758025"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="892235320"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Find</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="963351320"> <string key="NSTitle">Find</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="447796847"> <reference key="NSMenu" ref="963351320"/> <string type="base64-UTF8" key="NSTitle">RmluZOKApg</string> <string key="NSKeyEquiv">f</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">1</int> </object> <object class="NSMenuItem" id="326711663"> <reference key="NSMenu" ref="963351320"/> <string key="NSTitle">Find Next</string> <string key="NSKeyEquiv">g</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">2</int> </object> <object class="NSMenuItem" id="270902937"> <reference key="NSMenu" ref="963351320"/> <string key="NSTitle">Find Previous</string> <string key="NSKeyEquiv">G</string> <int key="NSKeyEquivModMask">1179648</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">3</int> </object> <object class="NSMenuItem" id="159080638"> <reference key="NSMenu" ref="963351320"/> <string key="NSTitle">Use Selection for Find</string> <string key="NSKeyEquiv">e</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">7</int> </object> <object class="NSMenuItem" id="88285865"> <reference key="NSMenu" ref="963351320"/> <string key="NSTitle">Jump to Selection</string> <string key="NSKeyEquiv">j</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="972420730"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Spelling and Grammar</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="769623530"> <string key="NSTitle">Spelling and Grammar</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="679648819"> <reference key="NSMenu" ref="769623530"/> <string type="base64-UTF8" key="NSTitle">U2hvdyBTcGVsbGluZ+KApg</string> <string key="NSKeyEquiv">:</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="96193923"> <reference key="NSMenu" ref="769623530"/> <string key="NSTitle">Check Spelling</string> <string key="NSKeyEquiv">;</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="948374510"> <reference key="NSMenu" ref="769623530"/> <string key="NSTitle">Check Spelling While Typing</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="967646866"> <reference key="NSMenu" ref="769623530"/> <string key="NSTitle">Check Grammar With Spelling</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="507821607"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Substitutions</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="698887838"> <string key="NSTitle">Substitutions</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="605118523"> <reference key="NSMenu" ref="698887838"/> <string key="NSTitle">Smart Copy/Paste</string> <string key="NSKeyEquiv">f</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">1</int> </object> <object class="NSMenuItem" id="197661976"> <reference key="NSMenu" ref="698887838"/> <string key="NSTitle">Smart Quotes</string> <string key="NSKeyEquiv">g</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">2</int> </object> <object class="NSMenuItem" id="708854459"> <reference key="NSMenu" ref="698887838"/> <string key="NSTitle">Smart Links</string> <string key="NSKeyEquiv">G</string> <int key="NSKeyEquivModMask">1179648</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">3</int> </object> </object> </object> </object> <object class="NSMenuItem" id="676164635"> <reference key="NSMenu" ref="789758025"/> <string key="NSTitle">Speech</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="785027613"> <string key="NSTitle">Speech</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="731782645"> <reference key="NSMenu" ref="785027613"/> <string key="NSTitle">Start Speaking</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="680220178"> <reference key="NSMenu" ref="785027613"/> <string key="NSTitle">Stop Speaking</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> </object> </object> </object> <object class="NSMenuItem" id="302598603"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">Format</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="941447902"> <string key="NSTitle">Format</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="792887677"> <reference key="NSMenu" ref="941447902"/> <string key="NSTitle">Font</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="786677654"> <string key="NSTitle">Font</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="159677712"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Show Fonts</string> <string key="NSKeyEquiv">t</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="305399458"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Bold</string> <string key="NSKeyEquiv">b</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">2</int> </object> <object class="NSMenuItem" id="814362025"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Italic</string> <string key="NSKeyEquiv">i</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">1</int> </object> <object class="NSMenuItem" id="330926929"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Underline</string> <string key="NSKeyEquiv">u</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="533507878"> <reference key="NSMenu" ref="786677654"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="158063935"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Bigger</string> <string key="NSKeyEquiv">+</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">3</int> </object> <object class="NSMenuItem" id="885547335"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Smaller</string> <string key="NSKeyEquiv">-</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <int key="NSTag">4</int> </object> <object class="NSMenuItem" id="901062459"> <reference key="NSMenu" ref="786677654"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="767671776"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Kern</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="175441468"> <string key="NSTitle">Kern</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="252969304"> <reference key="NSMenu" ref="175441468"/> <string key="NSTitle">Use Default</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="766922938"> <reference key="NSMenu" ref="175441468"/> <string key="NSTitle">Use None</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="677519740"> <reference key="NSMenu" ref="175441468"/> <string key="NSTitle">Tighten</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="238351151"> <reference key="NSMenu" ref="175441468"/> <string key="NSTitle">Loosen</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="691570813"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Ligature</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="1058217995"> <string key="NSTitle">Ligature</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="706297211"> <reference key="NSMenu" ref="1058217995"/> <string key="NSTitle">Use Default</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="568384683"> <reference key="NSMenu" ref="1058217995"/> <string key="NSTitle">Use None</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="663508465"> <reference key="NSMenu" ref="1058217995"/> <string key="NSTitle">Use All</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="769124883"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Baseline</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="18263474"> <string key="NSTitle">Baseline</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="257962622"> <reference key="NSMenu" ref="18263474"/> <string key="NSTitle">Use Default</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="644725453"> <reference key="NSMenu" ref="18263474"/> <string key="NSTitle">Superscript</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1037576581"> <reference key="NSMenu" ref="18263474"/> <string key="NSTitle">Subscript</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="941806246"> <reference key="NSMenu" ref="18263474"/> <string key="NSTitle">Raise</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1045724900"> <reference key="NSMenu" ref="18263474"/> <string key="NSTitle">Lower</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="739652853"> <reference key="NSMenu" ref="786677654"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="1012600125"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Show Colors</string> <string key="NSKeyEquiv">C</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="214559597"> <reference key="NSMenu" ref="786677654"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="596732606"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Copy Style</string> <string key="NSKeyEquiv">c</string> <int key="NSKeyEquivModMask">1572864</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="393423671"> <reference key="NSMenu" ref="786677654"/> <string key="NSTitle">Paste Style</string> <string key="NSKeyEquiv">v</string> <int key="NSKeyEquivModMask">1572864</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> <string key="NSName">_NSFontMenu</string> </object> </object> <object class="NSMenuItem" id="15516124"> <reference key="NSMenu" ref="941447902"/> <string key="NSTitle">Text</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="23081656"> <string key="NSTitle">Text</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="135107054"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Align Left</string> <string key="NSKeyEquiv">{</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="310547522"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Center</string> <string key="NSKeyEquiv">|</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="436088763"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Justify</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="498119243"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Align Right</string> <string key="NSKeyEquiv">}</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="607995063"> <reference key="NSMenu" ref="23081656"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="420564933"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Show Ruler</string> <string key="NSKeyEquiv"/> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="479856769"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Copy Ruler</string> <string key="NSKeyEquiv">c</string> <int key="NSKeyEquivModMask">1310720</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="333628178"> <reference key="NSMenu" ref="23081656"/> <string key="NSTitle">Paste Ruler</string> <string key="NSKeyEquiv">v</string> <int key="NSKeyEquivModMask">1310720</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> </object> </object> </object> <object class="NSMenuItem" id="586577488"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">View</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="466310130"> <string key="NSTitle">View</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="102151532"> <reference key="NSMenu" ref="466310130"/> <string key="NSTitle">Show Toolbar</string> <string key="NSKeyEquiv">t</string> <int key="NSKeyEquivModMask">1572864</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="237841660"> <reference key="NSMenu" ref="466310130"/> <string type="base64-UTF8" key="NSTitle">Q3VzdG9taXplIFRvb2xiYXLigKY</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> <object class="NSMenuItem" id="713487014"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">Window</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="835318025"> <string key="NSTitle">Window</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="1011231497"> <reference key="NSMenu" ref="835318025"/> <string key="NSTitle">Minimize</string> <string key="NSKeyEquiv">m</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="575023229"> <reference key="NSMenu" ref="835318025"/> <string key="NSTitle">Zoom</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="299356726"> <reference key="NSMenu" ref="835318025"/> <bool key="NSIsDisabled">YES</bool> <bool key="NSIsSeparator">YES</bool> <string key="NSTitle"/> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> <object class="NSMenuItem" id="625202149"> <reference key="NSMenu" ref="835318025"/> <string key="NSTitle">Bring All to Front</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> <string key="NSName">_NSWindowsMenu</string> </object> </object> <object class="NSMenuItem" id="391199113"> <reference key="NSMenu" ref="649796088"/> <string key="NSTitle">Help</string> <string key="NSKeyEquiv"/> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> <string key="NSAction">submenuAction:</string> <object class="NSMenu" key="NSSubmenu" id="374024848"> <string key="NSTitle">Help</string> <object class="NSMutableArray" key="NSMenuItems"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMenuItem" id="238773614"> <reference key="NSMenu" ref="374024848"/> <string key="NSTitle">NewApplication Help</string> <string key="NSKeyEquiv">?</string> <int key="NSKeyEquivModMask">1048576</int> <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <reference key="NSMixedImage" ref="502551668"/> </object> </object> </object> </object> </object> <string key="NSName">_NSMainMenu</string> </object> <object class="NSWindowTemplate" id="972006081"> <int key="NSWindowStyleMask">15</int> <int key="NSWindowBacking">2</int> <string key="NSWindowRect">{{335, 390}, {480, 360}}</string> <int key="NSWTFlags">1946157056</int> <string key="NSWindowTitle">Window</string> <string key="NSWindowClass">NSWindow</string> <nil key="NSViewClass"/> <string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string> <object class="NSView" key="NSWindowView" id="439893737"> <reference key="NSNextResponder"/> <int key="NSvFlags">256</int> <string key="NSFrameSize">{480, 360}</string> <reference key="NSSuperview"/> </object> <string key="NSScreenRect">{{0, 0}, {1440, 878}}</string> <string key="NSMaxSize">{3.40282e+38, 3.40282e+38}</string> </object> <object class="NSCustomObject" id="755631768"> <string key="NSClassName">NSFontManager</string> </object> <object class="NSCustomObject" id="347872189"> <string key="NSClassName">AppDelegate</string> </object> </object> <object class="IBObjectContainer" key="IBDocument.Objects"> <object class="NSMutableArray" key="connectionRecords"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">performMiniaturize:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1011231497"/> </object> <int key="connectionID">37</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">arrangeInFront:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="625202149"/> </object> <int key="connectionID">39</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">print:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="49223823"/> </object> <int key="connectionID">86</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">runPageLayout:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="294629803"/> </object> <int key="connectionID">87</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">clearRecentDocuments:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="759406840"/> </object> <int key="connectionID">127</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">orderFrontStandardAboutPanel:</string> <reference key="source" ref="1021"/> <reference key="destination" ref="238522557"/> </object> <int key="connectionID">142</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">performClose:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="776162233"/> </object> <int key="connectionID">193</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleContinuousSpellChecking:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="948374510"/> </object> <int key="connectionID">222</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">undo:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1058277027"/> </object> <int key="connectionID">223</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">copy:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="860595796"/> </object> <int key="connectionID">224</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">checkSpelling:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="96193923"/> </object> <int key="connectionID">225</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">paste:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="29853731"/> </object> <int key="connectionID">226</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">stopSpeaking:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="680220178"/> </object> <int key="connectionID">227</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">cut:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="296257095"/> </object> <int key="connectionID">228</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">showGuessPanel:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="679648819"/> </object> <int key="connectionID">230</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">redo:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="790794224"/> </object> <int key="connectionID">231</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">selectAll:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="583158037"/> </object> <int key="connectionID">232</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">startSpeaking:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="731782645"/> </object> <int key="connectionID">233</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">delete:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="437104165"/> </object> <int key="connectionID">235</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">performZoom:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="575023229"/> </object> <int key="connectionID">240</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">performFindPanelAction:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="447796847"/> </object> <int key="connectionID">241</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">centerSelectionInVisibleArea:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="88285865"/> </object> <int key="connectionID">245</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleGrammarChecking:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="967646866"/> </object> <int key="connectionID">347</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleSmartInsertDelete:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="605118523"/> </object> <int key="connectionID">355</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleAutomaticQuoteSubstitution:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="197661976"/> </object> <int key="connectionID">356</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleAutomaticLinkDetection:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="708854459"/> </object> <int key="connectionID">357</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">showHelp:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="238773614"/> </object> <int key="connectionID">360</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">saveDocument:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1023925487"/> </object> <int key="connectionID">362</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">saveDocumentAs:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="117038363"/> </object> <int key="connectionID">363</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">revertDocumentToSaved:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="579971712"/> </object> <int key="connectionID">364</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">runToolbarCustomizationPalette:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="237841660"/> </object> <int key="connectionID">365</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleToolbarShown:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="102151532"/> </object> <int key="connectionID">366</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">hide:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="755159360"/> </object> <int key="connectionID">367</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">hideOtherApplications:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="342932134"/> </object> <int key="connectionID">368</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">unhideAllApplications:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="908899353"/> </object> <int key="connectionID">370</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">newDocument:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="705341025"/> </object> <int key="connectionID">373</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">openDocument:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="722745758"/> </object> <int key="connectionID">374</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">addFontTrait:</string> <reference key="source" ref="755631768"/> <reference key="destination" ref="305399458"/> </object> <int key="connectionID">421</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">addFontTrait:</string> <reference key="source" ref="755631768"/> <reference key="destination" ref="814362025"/> </object> <int key="connectionID">422</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">modifyFont:</string> <reference key="source" ref="755631768"/> <reference key="destination" ref="885547335"/> </object> <int key="connectionID">423</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">orderFrontFontPanel:</string> <reference key="source" ref="755631768"/> <reference key="destination" ref="159677712"/> </object> <int key="connectionID">424</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">modifyFont:</string> <reference key="source" ref="755631768"/> <reference key="destination" ref="158063935"/> </object> <int key="connectionID">425</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">raiseBaseline:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="941806246"/> </object> <int key="connectionID">426</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">lowerBaseline:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1045724900"/> </object> <int key="connectionID">427</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">copyFont:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="596732606"/> </object> <int key="connectionID">428</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">subscript:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1037576581"/> </object> <int key="connectionID">429</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">superscript:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="644725453"/> </object> <int key="connectionID">430</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">tightenKerning:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="677519740"/> </object> <int key="connectionID">431</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">underline:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="330926929"/> </object> <int key="connectionID">432</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">orderFrontColorPanel:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="1012600125"/> </object> <int key="connectionID">433</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">useAllLigatures:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="663508465"/> </object> <int key="connectionID">434</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">loosenKerning:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="238351151"/> </object> <int key="connectionID">435</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">pasteFont:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="393423671"/> </object> <int key="connectionID">436</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">unscript:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="257962622"/> </object> <int key="connectionID">437</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">useStandardKerning:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="252969304"/> </object> <int key="connectionID">438</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">useStandardLigatures:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="706297211"/> </object> <int key="connectionID">439</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">turnOffLigatures:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="568384683"/> </object> <int key="connectionID">440</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">turnOffKerning:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="766922938"/> </object> <int key="connectionID">441</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">alignLeft:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="135107054"/> </object> <int key="connectionID">442</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">alignJustified:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="436088763"/> </object> <int key="connectionID">443</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">copyRuler:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="479856769"/> </object> <int key="connectionID">444</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">alignCenter:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="310547522"/> </object> <int key="connectionID">445</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">toggleRuler:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="420564933"/> </object> <int key="connectionID">446</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">alignRight:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="498119243"/> </object> <int key="connectionID">447</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">pasteRuler:</string> <reference key="source" ref="1014"/> <reference key="destination" ref="333628178"/> </object> <int key="connectionID">448</int> </object> <object class="IBConnectionRecord"> <object class="IBActionConnection" key="connection"> <string key="label">terminate:</string> <reference key="source" ref="1050"/> <reference key="destination" ref="632727374"/> </object> <int key="connectionID">449</int> </object> <object class="IBConnectionRecord"> <object class="IBOutletConnection" key="connection"> <string key="label">delegate</string> <reference key="source" ref="1050"/> <reference key="destination" ref="347872189"/> </object> <int key="connectionID">451</int> </object> </object> <object class="IBMutableOrderedSet" key="objectRecords"> <object class="NSArray" key="orderedObjects"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="IBObjectRecord"> <int key="objectID">0</int> <object class="NSArray" key="object" id="1049"> <bool key="EncodedWithXMLCoder">YES</bool> </object> <reference key="children" ref="1048"/> <nil key="parent"/> </object> <object class="IBObjectRecord"> <int key="objectID">-2</int> <reference key="object" ref="1021"/> <reference key="parent" ref="1049"/> <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string> </object> <object class="IBObjectRecord"> <int key="objectID">-1</int> <reference key="object" ref="1014"/> <reference key="parent" ref="1049"/> <string key="objectName">First Responder</string> </object> <object class="IBObjectRecord"> <int key="objectID">-3</int> <reference key="object" ref="1050"/> <reference key="parent" ref="1049"/> <string key="objectName">Application</string> </object> <object class="IBObjectRecord"> <int key="objectID">29</int> <reference key="object" ref="649796088"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="713487014"/> <reference ref="694149608"/> <reference ref="391199113"/> <reference ref="952259628"/> <reference ref="379814623"/> <reference ref="586577488"/> <reference ref="302598603"/> </object> <reference key="parent" ref="1049"/> <string key="objectName">MainMenu</string> </object> <object class="IBObjectRecord"> <int key="objectID">19</int> <reference key="object" ref="713487014"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="835318025"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">56</int> <reference key="object" ref="694149608"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="110575045"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">103</int> <reference key="object" ref="391199113"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="374024848"/> </object> <reference key="parent" ref="649796088"/> <string key="objectName">1</string> </object> <object class="IBObjectRecord"> <int key="objectID">217</int> <reference key="object" ref="952259628"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="789758025"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">83</int> <reference key="object" ref="379814623"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="720053764"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">81</int> <reference key="object" ref="720053764"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="1023925487"/> <reference ref="117038363"/> <reference ref="49223823"/> <reference ref="722745758"/> <reference ref="705341025"/> <reference ref="1025936716"/> <reference ref="294629803"/> <reference ref="776162233"/> <reference ref="425164168"/> <reference ref="579971712"/> <reference ref="1010469920"/> </object> <reference key="parent" ref="379814623"/> </object> <object class="IBObjectRecord"> <int key="objectID">75</int> <reference key="object" ref="1023925487"/> <reference key="parent" ref="720053764"/> <string key="objectName">3</string> </object> <object class="IBObjectRecord"> <int key="objectID">80</int> <reference key="object" ref="117038363"/> <reference key="parent" ref="720053764"/> <string key="objectName">8</string> </object> <object class="IBObjectRecord"> <int key="objectID">78</int> <reference key="object" ref="49223823"/> <reference key="parent" ref="720053764"/> <string key="objectName">6</string> </object> <object class="IBObjectRecord"> <int key="objectID">72</int> <reference key="object" ref="722745758"/> <reference key="parent" ref="720053764"/> </object> <object class="IBObjectRecord"> <int key="objectID">82</int> <reference key="object" ref="705341025"/> <reference key="parent" ref="720053764"/> <string key="objectName">9</string> </object> <object class="IBObjectRecord"> <int key="objectID">124</int> <reference key="object" ref="1025936716"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="1065607017"/> </object> <reference key="parent" ref="720053764"/> </object> <object class="IBObjectRecord"> <int key="objectID">77</int> <reference key="object" ref="294629803"/> <reference key="parent" ref="720053764"/> <string key="objectName">5</string> </object> <object class="IBObjectRecord"> <int key="objectID">73</int> <reference key="object" ref="776162233"/> <reference key="parent" ref="720053764"/> <string key="objectName">1</string> </object> <object class="IBObjectRecord"> <int key="objectID">79</int> <reference key="object" ref="425164168"/> <reference key="parent" ref="720053764"/> <string key="objectName">7</string> </object> <object class="IBObjectRecord"> <int key="objectID">112</int> <reference key="object" ref="579971712"/> <reference key="parent" ref="720053764"/> <string key="objectName">10</string> </object> <object class="IBObjectRecord"> <int key="objectID">74</int> <reference key="object" ref="1010469920"/> <reference key="parent" ref="720053764"/> <string key="objectName">2</string> </object> <object class="IBObjectRecord"> <int key="objectID">125</int> <reference key="object" ref="1065607017"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="759406840"/> </object> <reference key="parent" ref="1025936716"/> </object> <object class="IBObjectRecord"> <int key="objectID">126</int> <reference key="object" ref="759406840"/> <reference key="parent" ref="1065607017"/> </object> <object class="IBObjectRecord"> <int key="objectID">205</int> <reference key="object" ref="789758025"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="437104165"/> <reference ref="583158037"/> <reference ref="1058277027"/> <reference ref="212016141"/> <reference ref="296257095"/> <reference ref="29853731"/> <reference ref="860595796"/> <reference ref="1040322652"/> <reference ref="790794224"/> <reference ref="892235320"/> <reference ref="972420730"/> <reference ref="676164635"/> <reference ref="507821607"/> </object> <reference key="parent" ref="952259628"/> </object> <object class="IBObjectRecord"> <int key="objectID">202</int> <reference key="object" ref="437104165"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">198</int> <reference key="object" ref="583158037"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">207</int> <reference key="object" ref="1058277027"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">214</int> <reference key="object" ref="212016141"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">199</int> <reference key="object" ref="296257095"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">203</int> <reference key="object" ref="29853731"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">197</int> <reference key="object" ref="860595796"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">206</int> <reference key="object" ref="1040322652"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">215</int> <reference key="object" ref="790794224"/> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">218</int> <reference key="object" ref="892235320"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="963351320"/> </object> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">216</int> <reference key="object" ref="972420730"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="769623530"/> </object> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">200</int> <reference key="object" ref="769623530"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="948374510"/> <reference ref="96193923"/> <reference ref="679648819"/> <reference ref="967646866"/> </object> <reference key="parent" ref="972420730"/> </object> <object class="IBObjectRecord"> <int key="objectID">219</int> <reference key="object" ref="948374510"/> <reference key="parent" ref="769623530"/> </object> <object class="IBObjectRecord"> <int key="objectID">201</int> <reference key="object" ref="96193923"/> <reference key="parent" ref="769623530"/> </object> <object class="IBObjectRecord"> <int key="objectID">204</int> <reference key="object" ref="679648819"/> <reference key="parent" ref="769623530"/> </object> <object class="IBObjectRecord"> <int key="objectID">220</int> <reference key="object" ref="963351320"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="270902937"/> <reference ref="88285865"/> <reference ref="159080638"/> <reference ref="326711663"/> <reference ref="447796847"/> </object> <reference key="parent" ref="892235320"/> </object> <object class="IBObjectRecord"> <int key="objectID">213</int> <reference key="object" ref="270902937"/> <reference key="parent" ref="963351320"/> </object> <object class="IBObjectRecord"> <int key="objectID">210</int> <reference key="object" ref="88285865"/> <reference key="parent" ref="963351320"/> </object> <object class="IBObjectRecord"> <int key="objectID">221</int> <reference key="object" ref="159080638"/> <reference key="parent" ref="963351320"/> </object> <object class="IBObjectRecord"> <int key="objectID">208</int> <reference key="object" ref="326711663"/> <reference key="parent" ref="963351320"/> </object> <object class="IBObjectRecord"> <int key="objectID">209</int> <reference key="object" ref="447796847"/> <reference key="parent" ref="963351320"/> </object> <object class="IBObjectRecord"> <int key="objectID">106</int> <reference key="object" ref="374024848"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="238773614"/> </object> <reference key="parent" ref="391199113"/> <string key="objectName">2</string> </object> <object class="IBObjectRecord"> <int key="objectID">111</int> <reference key="object" ref="238773614"/> <reference key="parent" ref="374024848"/> </object> <object class="IBObjectRecord"> <int key="objectID">57</int> <reference key="object" ref="110575045"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="238522557"/> <reference ref="755159360"/> <reference ref="908899353"/> <reference ref="632727374"/> <reference ref="646227648"/> <reference ref="609285721"/> <reference ref="481834944"/> <reference ref="304266470"/> <reference ref="1046388886"/> <reference ref="1056857174"/> <reference ref="342932134"/> </object> <reference key="parent" ref="694149608"/> </object> <object class="IBObjectRecord"> <int key="objectID">58</int> <reference key="object" ref="238522557"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">134</int> <reference key="object" ref="755159360"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">150</int> <reference key="object" ref="908899353"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">136</int> <reference key="object" ref="632727374"/> <reference key="parent" ref="110575045"/> <string key="objectName">1111</string> </object> <object class="IBObjectRecord"> <int key="objectID">144</int> <reference key="object" ref="646227648"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">129</int> <reference key="object" ref="609285721"/> <reference key="parent" ref="110575045"/> <string key="objectName">121</string> </object> <object class="IBObjectRecord"> <int key="objectID">143</int> <reference key="object" ref="481834944"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">236</int> <reference key="object" ref="304266470"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">131</int> <reference key="object" ref="1046388886"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="752062318"/> </object> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">149</int> <reference key="object" ref="1056857174"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">145</int> <reference key="object" ref="342932134"/> <reference key="parent" ref="110575045"/> </object> <object class="IBObjectRecord"> <int key="objectID">130</int> <reference key="object" ref="752062318"/> <reference key="parent" ref="1046388886"/> </object> <object class="IBObjectRecord"> <int key="objectID">24</int> <reference key="object" ref="835318025"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="299356726"/> <reference ref="625202149"/> <reference ref="575023229"/> <reference ref="1011231497"/> </object> <reference key="parent" ref="713487014"/> </object> <object class="IBObjectRecord"> <int key="objectID">92</int> <reference key="object" ref="299356726"/> <reference key="parent" ref="835318025"/> </object> <object class="IBObjectRecord"> <int key="objectID">5</int> <reference key="object" ref="625202149"/> <reference key="parent" ref="835318025"/> </object> <object class="IBObjectRecord"> <int key="objectID">239</int> <reference key="object" ref="575023229"/> <reference key="parent" ref="835318025"/> </object> <object class="IBObjectRecord"> <int key="objectID">23</int> <reference key="object" ref="1011231497"/> <reference key="parent" ref="835318025"/> </object> <object class="IBObjectRecord"> <int key="objectID">295</int> <reference key="object" ref="586577488"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="466310130"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">296</int> <reference key="object" ref="466310130"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="102151532"/> <reference ref="237841660"/> </object> <reference key="parent" ref="586577488"/> </object> <object class="IBObjectRecord"> <int key="objectID">297</int> <reference key="object" ref="102151532"/> <reference key="parent" ref="466310130"/> </object> <object class="IBObjectRecord"> <int key="objectID">298</int> <reference key="object" ref="237841660"/> <reference key="parent" ref="466310130"/> </object> <object class="IBObjectRecord"> <int key="objectID">211</int> <reference key="object" ref="676164635"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="785027613"/> </object> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">212</int> <reference key="object" ref="785027613"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="680220178"/> <reference ref="731782645"/> </object> <reference key="parent" ref="676164635"/> </object> <object class="IBObjectRecord"> <int key="objectID">195</int> <reference key="object" ref="680220178"/> <reference key="parent" ref="785027613"/> </object> <object class="IBObjectRecord"> <int key="objectID">196</int> <reference key="object" ref="731782645"/> <reference key="parent" ref="785027613"/> </object> <object class="IBObjectRecord"> <int key="objectID">346</int> <reference key="object" ref="967646866"/> <reference key="parent" ref="769623530"/> </object> <object class="IBObjectRecord"> <int key="objectID">348</int> <reference key="object" ref="507821607"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="698887838"/> </object> <reference key="parent" ref="789758025"/> </object> <object class="IBObjectRecord"> <int key="objectID">349</int> <reference key="object" ref="698887838"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="605118523"/> <reference ref="197661976"/> <reference ref="708854459"/> </object> <reference key="parent" ref="507821607"/> </object> <object class="IBObjectRecord"> <int key="objectID">350</int> <reference key="object" ref="605118523"/> <reference key="parent" ref="698887838"/> </object> <object class="IBObjectRecord"> <int key="objectID">351</int> <reference key="object" ref="197661976"/> <reference key="parent" ref="698887838"/> </object> <object class="IBObjectRecord"> <int key="objectID">354</int> <reference key="object" ref="708854459"/> <reference key="parent" ref="698887838"/> </object> <object class="IBObjectRecord"> <int key="objectID">371</int> <reference key="object" ref="972006081"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="439893737"/> </object> <reference key="parent" ref="1049"/> </object> <object class="IBObjectRecord"> <int key="objectID">372</int> <reference key="object" ref="439893737"/> <reference key="parent" ref="972006081"/> </object> <object class="IBObjectRecord"> <int key="objectID">375</int> <reference key="object" ref="302598603"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="941447902"/> </object> <reference key="parent" ref="649796088"/> </object> <object class="IBObjectRecord"> <int key="objectID">376</int> <reference key="object" ref="941447902"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="792887677"/> <reference ref="15516124"/> </object> <reference key="parent" ref="302598603"/> </object> <object class="IBObjectRecord"> <int key="objectID">377</int> <reference key="object" ref="792887677"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="786677654"/> </object> <reference key="parent" ref="941447902"/> </object> <object class="IBObjectRecord"> <int key="objectID">378</int> <reference key="object" ref="15516124"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="23081656"/> </object> <reference key="parent" ref="941447902"/> </object> <object class="IBObjectRecord"> <int key="objectID">379</int> <reference key="object" ref="23081656"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="135107054"/> <reference ref="310547522"/> <reference ref="436088763"/> <reference ref="498119243"/> <reference ref="607995063"/> <reference ref="420564933"/> <reference ref="479856769"/> <reference ref="333628178"/> </object> <reference key="parent" ref="15516124"/> </object> <object class="IBObjectRecord"> <int key="objectID">380</int> <reference key="object" ref="135107054"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">381</int> <reference key="object" ref="310547522"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">382</int> <reference key="object" ref="436088763"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">383</int> <reference key="object" ref="498119243"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">384</int> <reference key="object" ref="607995063"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">385</int> <reference key="object" ref="420564933"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">386</int> <reference key="object" ref="479856769"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">387</int> <reference key="object" ref="333628178"/> <reference key="parent" ref="23081656"/> </object> <object class="IBObjectRecord"> <int key="objectID">388</int> <reference key="object" ref="786677654"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="159677712"/> <reference ref="305399458"/> <reference ref="814362025"/> <reference ref="330926929"/> <reference ref="533507878"/> <reference ref="158063935"/> <reference ref="885547335"/> <reference ref="901062459"/> <reference ref="767671776"/> <reference ref="691570813"/> <reference ref="769124883"/> <reference ref="739652853"/> <reference ref="1012600125"/> <reference ref="214559597"/> <reference ref="596732606"/> <reference ref="393423671"/> </object> <reference key="parent" ref="792887677"/> </object> <object class="IBObjectRecord"> <int key="objectID">389</int> <reference key="object" ref="159677712"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">390</int> <reference key="object" ref="305399458"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">391</int> <reference key="object" ref="814362025"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">392</int> <reference key="object" ref="330926929"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">393</int> <reference key="object" ref="533507878"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">394</int> <reference key="object" ref="158063935"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">395</int> <reference key="object" ref="885547335"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">396</int> <reference key="object" ref="901062459"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">397</int> <reference key="object" ref="767671776"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="175441468"/> </object> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">398</int> <reference key="object" ref="691570813"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="1058217995"/> </object> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">399</int> <reference key="object" ref="769124883"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="18263474"/> </object> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">400</int> <reference key="object" ref="739652853"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">401</int> <reference key="object" ref="1012600125"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">402</int> <reference key="object" ref="214559597"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">403</int> <reference key="object" ref="596732606"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">404</int> <reference key="object" ref="393423671"/> <reference key="parent" ref="786677654"/> </object> <object class="IBObjectRecord"> <int key="objectID">405</int> <reference key="object" ref="18263474"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="257962622"/> <reference ref="644725453"/> <reference ref="1037576581"/> <reference ref="941806246"/> <reference ref="1045724900"/> </object> <reference key="parent" ref="769124883"/> </object> <object class="IBObjectRecord"> <int key="objectID">406</int> <reference key="object" ref="257962622"/> <reference key="parent" ref="18263474"/> </object> <object class="IBObjectRecord"> <int key="objectID">407</int> <reference key="object" ref="644725453"/> <reference key="parent" ref="18263474"/> </object> <object class="IBObjectRecord"> <int key="objectID">408</int> <reference key="object" ref="1037576581"/> <reference key="parent" ref="18263474"/> </object> <object class="IBObjectRecord"> <int key="objectID">409</int> <reference key="object" ref="941806246"/> <reference key="parent" ref="18263474"/> </object> <object class="IBObjectRecord"> <int key="objectID">410</int> <reference key="object" ref="1045724900"/> <reference key="parent" ref="18263474"/> </object> <object class="IBObjectRecord"> <int key="objectID">411</int> <reference key="object" ref="1058217995"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="706297211"/> <reference ref="568384683"/> <reference ref="663508465"/> </object> <reference key="parent" ref="691570813"/> </object> <object class="IBObjectRecord"> <int key="objectID">412</int> <reference key="object" ref="706297211"/> <reference key="parent" ref="1058217995"/> </object> <object class="IBObjectRecord"> <int key="objectID">413</int> <reference key="object" ref="568384683"/> <reference key="parent" ref="1058217995"/> </object> <object class="IBObjectRecord"> <int key="objectID">414</int> <reference key="object" ref="663508465"/> <reference key="parent" ref="1058217995"/> </object> <object class="IBObjectRecord"> <int key="objectID">415</int> <reference key="object" ref="175441468"/> <object class="NSMutableArray" key="children"> <bool key="EncodedWithXMLCoder">YES</bool> <reference ref="252969304"/> <reference ref="766922938"/> <reference ref="677519740"/> <reference ref="238351151"/> </object> <reference key="parent" ref="767671776"/> </object> <object class="IBObjectRecord"> <int key="objectID">416</int> <reference key="object" ref="252969304"/> <reference key="parent" ref="175441468"/> </object> <object class="IBObjectRecord"> <int key="objectID">417</int> <reference key="object" ref="766922938"/> <reference key="parent" ref="175441468"/> </object> <object class="IBObjectRecord"> <int key="objectID">418</int> <reference key="object" ref="677519740"/> <reference key="parent" ref="175441468"/> </object> <object class="IBObjectRecord"> <int key="objectID">419</int> <reference key="object" ref="238351151"/> <reference key="parent" ref="175441468"/> </object> <object class="IBObjectRecord"> <int key="objectID">420</int> <reference key="object" ref="755631768"/> <reference key="parent" ref="1049"/> </object> <object class="IBObjectRecord"> <int key="objectID">450</int> <reference key="object" ref="347872189"/> <reference key="parent" ref="1049"/> </object> </object> </object> <object class="NSMutableDictionary" key="flattenedProperties"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSMutableArray" key="dict.sortedKeys"> <bool key="EncodedWithXMLCoder">YES</bool> <string>-1.IBPluginDependency</string> <string>-2.IBPluginDependency</string> <string>-3.IBPluginDependency</string> <string>103.IBPluginDependency</string> <string>103.ImportedFromIB2</string> <string>106.IBPluginDependency</string> <string>106.ImportedFromIB2</string> <string>106.editorWindowContentRectSynchronizationRect</string> <string>111.IBPluginDependency</string> <string>111.ImportedFromIB2</string> <string>112.IBPluginDependency</string> <string>112.ImportedFromIB2</string> <string>124.IBPluginDependency</string> <string>124.ImportedFromIB2</string> <string>125.IBPluginDependency</string> <string>125.ImportedFromIB2</string> <string>125.editorWindowContentRectSynchronizationRect</string> <string>126.IBPluginDependency</string> <string>126.ImportedFromIB2</string> <string>129.IBPluginDependency</string> <string>129.ImportedFromIB2</string> <string>130.IBPluginDependency</string> <string>130.ImportedFromIB2</string> <string>130.editorWindowContentRectSynchronizationRect</string> <string>131.IBPluginDependency</string> <string>131.ImportedFromIB2</string> <string>134.IBPluginDependency</string> <string>134.ImportedFromIB2</string> <string>136.IBPluginDependency</string> <string>136.ImportedFromIB2</string> <string>143.IBPluginDependency</string> <string>143.ImportedFromIB2</string> <string>144.IBPluginDependency</string> <string>144.ImportedFromIB2</string> <string>145.IBPluginDependency</string> <string>145.ImportedFromIB2</string> <string>149.IBPluginDependency</string> <string>149.ImportedFromIB2</string> <string>150.IBPluginDependency</string> <string>150.ImportedFromIB2</string> <string>19.IBPluginDependency</string> <string>19.ImportedFromIB2</string> <string>195.IBPluginDependency</string> <string>195.ImportedFromIB2</string> <string>196.IBPluginDependency</string> <string>196.ImportedFromIB2</string> <string>197.IBPluginDependency</string> <string>197.ImportedFromIB2</string> <string>198.IBPluginDependency</string> <string>198.ImportedFromIB2</string> <string>199.IBPluginDependency</string> <string>199.ImportedFromIB2</string> <string>200.IBPluginDependency</string> <string>200.ImportedFromIB2</string> <string>200.editorWindowContentRectSynchronizationRect</string> <string>201.IBPluginDependency</string> <string>201.ImportedFromIB2</string> <string>202.IBPluginDependency</string> <string>202.ImportedFromIB2</string> <string>203.IBPluginDependency</string> <string>203.ImportedFromIB2</string> <string>204.IBPluginDependency</string> <string>204.ImportedFromIB2</string> <string>205.IBPluginDependency</string> <string>205.ImportedFromIB2</string> <string>205.editorWindowContentRectSynchronizationRect</string> <string>206.IBPluginDependency</string> <string>206.ImportedFromIB2</string> <string>207.IBPluginDependency</string> <string>207.ImportedFromIB2</string> <string>208.IBPluginDependency</string> <string>208.ImportedFromIB2</string> <string>209.IBPluginDependency</string> <string>209.ImportedFromIB2</string> <string>210.IBPluginDependency</string> <string>210.ImportedFromIB2</string> <string>211.IBPluginDependency</string> <string>211.ImportedFromIB2</string> <string>212.IBPluginDependency</string> <string>212.ImportedFromIB2</string> <string>212.editorWindowContentRectSynchronizationRect</string> <string>213.IBPluginDependency</string> <string>213.ImportedFromIB2</string> <string>214.IBPluginDependency</string> <string>214.ImportedFromIB2</string> <string>215.IBPluginDependency</string> <string>215.ImportedFromIB2</string> <string>216.IBPluginDependency</string> <string>216.ImportedFromIB2</string> <string>217.IBPluginDependency</string> <string>217.ImportedFromIB2</string> <string>218.IBPluginDependency</string> <string>218.ImportedFromIB2</string> <string>219.IBPluginDependency</string> <string>219.ImportedFromIB2</string> <string>220.IBPluginDependency</string> <string>220.ImportedFromIB2</string> <string>220.editorWindowContentRectSynchronizationRect</string> <string>221.IBPluginDependency</string> <string>221.ImportedFromIB2</string> <string>23.IBPluginDependency</string> <string>23.ImportedFromIB2</string> <string>236.IBPluginDependency</string> <string>236.ImportedFromIB2</string> <string>239.IBPluginDependency</string> <string>239.ImportedFromIB2</string> <string>24.IBPluginDependency</string> <string>24.ImportedFromIB2</string> <string>24.editorWindowContentRectSynchronizationRect</string> <string>29.IBEditorWindowLastContentRect</string> <string>29.IBPluginDependency</string> <string>29.ImportedFromIB2</string> <string>29.WindowOrigin</string> <string>29.editorWindowContentRectSynchronizationRect</string> <string>295.IBPluginDependency</string> <string>296.IBPluginDependency</string> <string>296.editorWindowContentRectSynchronizationRect</string> <string>297.IBPluginDependency</string> <string>298.IBPluginDependency</string> <string>346.IBPluginDependency</string> <string>346.ImportedFromIB2</string> <string>348.IBPluginDependency</string> <string>348.ImportedFromIB2</string> <string>349.IBPluginDependency</string> <string>349.ImportedFromIB2</string> <string>349.editorWindowContentRectSynchronizationRect</string> <string>350.IBPluginDependency</string> <string>350.ImportedFromIB2</string> <string>351.IBPluginDependency</string> <string>351.ImportedFromIB2</string> <string>354.IBPluginDependency</string> <string>354.ImportedFromIB2</string> <string>371.IBEditorWindowLastContentRect</string> <string>371.IBWindowTemplateEditedContentRect</string> <string>371.NSWindowTemplate.visibleAtLaunch</string> <string>371.editorWindowContentRectSynchronizationRect</string> <string>371.windowTemplate.maxSize</string> <string>372.IBPluginDependency</string> <string>375.IBPluginDependency</string> <string>376.IBEditorWindowLastContentRect</string> <string>376.IBPluginDependency</string> <string>377.IBPluginDependency</string> <string>378.IBPluginDependency</string> <string>379.IBPluginDependency</string> <string>380.IBPluginDependency</string> <string>381.IBPluginDependency</string> <string>382.IBPluginDependency</string> <string>383.IBPluginDependency</string> <string>384.IBPluginDependency</string> <string>385.IBPluginDependency</string> <string>386.IBPluginDependency</string> <string>387.IBPluginDependency</string> <string>388.IBEditorWindowLastContentRect</string> <string>388.IBPluginDependency</string> <string>389.IBPluginDependency</string> <string>390.IBPluginDependency</string> <string>391.IBPluginDependency</string> <string>392.IBPluginDependency</string> <string>393.IBPluginDependency</string> <string>394.IBPluginDependency</string> <string>395.IBPluginDependency</string> <string>396.IBPluginDependency</string> <string>397.IBPluginDependency</string> <string>398.IBPluginDependency</string> <string>399.IBPluginDependency</string> <string>400.IBPluginDependency</string> <string>401.IBPluginDependency</string> <string>402.IBPluginDependency</string> <string>403.IBPluginDependency</string> <string>404.IBPluginDependency</string> <string>405.IBPluginDependency</string> <string>406.IBPluginDependency</string> <string>407.IBPluginDependency</string> <string>408.IBPluginDependency</string> <string>409.IBPluginDependency</string> <string>410.IBPluginDependency</string> <string>411.IBPluginDependency</string> <string>412.IBPluginDependency</string> <string>413.IBPluginDependency</string> <string>414.IBPluginDependency</string> <string>415.IBPluginDependency</string> <string>416.IBPluginDependency</string> <string>417.IBPluginDependency</string> <string>418.IBPluginDependency</string> <string>419.IBPluginDependency</string> <string>420.IBPluginDependency</string> <string>450.IBPluginDependency</string> <string>5.IBPluginDependency</string> <string>5.ImportedFromIB2</string> <string>56.IBPluginDependency</string> <string>56.ImportedFromIB2</string> <string>57.IBEditorWindowLastContentRect</string> <string>57.IBPluginDependency</string> <string>57.ImportedFromIB2</string> <string>57.editorWindowContentRectSynchronizationRect</string> <string>58.IBPluginDependency</string> <string>58.ImportedFromIB2</string> <string>72.IBPluginDependency</string> <string>72.ImportedFromIB2</string> <string>73.IBPluginDependency</string> <string>73.ImportedFromIB2</string> <string>74.IBPluginDependency</string> <string>74.ImportedFromIB2</string> <string>75.IBPluginDependency</string> <string>75.ImportedFromIB2</string> <string>77.IBPluginDependency</string> <string>77.ImportedFromIB2</string> <string>78.IBPluginDependency</string> <string>78.ImportedFromIB2</string> <string>79.IBPluginDependency</string> <string>79.ImportedFromIB2</string> <string>80.IBPluginDependency</string> <string>80.ImportedFromIB2</string> <string>81.IBPluginDependency</string> <string>81.ImportedFromIB2</string> <string>81.editorWindowContentRectSynchronizationRect</string> <string>82.IBPluginDependency</string> <string>82.ImportedFromIB2</string> <string>83.IBPluginDependency</string> <string>83.ImportedFromIB2</string> <string>92.IBPluginDependency</string> <string>92.ImportedFromIB2</string> </object> <object class="NSMutableArray" key="dict.values"> <bool key="EncodedWithXMLCoder">YES</bool> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilderKit</string> <string>com.apple.InterfaceBuilderKit</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <integer value="1" id="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{596, 852}, {216, 23}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{522, 812}, {146, 23}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{436, 809}, {64, 6}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{608, 612}, {275, 83}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{187, 434}, {243, 243}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{608, 612}, {167, 43}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{608, 612}, {241, 103}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{525, 802}, {197, 73}}</string> <string>{{52, 968}, {478, 20}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{74, 862}</string> <string>{{6, 978}, {478, 20}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{475, 832}, {234, 43}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{608, 612}, {215, 63}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{342, 475}, {480, 360}}</string> <string>{{342, 475}, {480, 360}}</string> <reference ref="9"/> <string>{{33, 99}, {480, 360}}</string> <string>{3.40282e+38, 3.40282e+38}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{437, 242}, {86, 43}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>{{523, 2}, {178, 283}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{64, 785}, {245, 183}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{23, 794}, {245, 183}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>{{145, 474}, {199, 203}}</string> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> <string>com.apple.InterfaceBuilder.CocoaPlugin</string> <reference ref="9"/> </object> </object> <object class="NSMutableDictionary" key="unlocalizedProperties"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSArray" key="dict.sortedKeys"> <bool key="EncodedWithXMLCoder">YES</bool> </object> <object class="NSMutableArray" key="dict.values"> <bool key="EncodedWithXMLCoder">YES</bool> </object> </object> <nil key="activeLocalization"/> <object class="NSMutableDictionary" key="localizations"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="NSArray" key="dict.sortedKeys"> <bool key="EncodedWithXMLCoder">YES</bool> </object> <object class="NSMutableArray" key="dict.values"> <bool key="EncodedWithXMLCoder">YES</bool> </object> </object> <nil key="sourceID"/> <int key="maxID">451</int> </object> <object class="IBClassDescriber" key="IBDocument.Classes"> <object class="NSMutableArray" key="referencedPartialClassDescriptions"> <bool key="EncodedWithXMLCoder">YES</bool> <object class="IBPartialClassDescription"> <string key="className">NSObject</string> <object class="IBClassDescriptionSource" key="sourceIdentifier"> <string key="majorKey">IBProjectSource</string> <string key="minorKey">AsyncSocket.h</string> </object> </object> </object> </object> <int key="IBDocument.localizationMode">0</int> <string key="IBDocument.LastKnownRelativeProjectPath">../SecureHTTPServer.xcodeproj</string> <int key="IBDocument.defaultPropertyAccessControl">3</int> </data> </archive> ```
/content/code_sandbox/CocoaHTTPServer-master/Samples/SecureHTTPServer/English.lproj/MainMenu.xib
xml
2016-10-17T08:37:55
2024-08-15T15:12:09
macSVG
dsward2/macSVG
1,152
36,688
```xml import { createTemporaryProjectFile } from './dotExpo'; const debug = require('debug')('expo:start:project:devices') as typeof console.log; export type DeviceInfo = { installationId: string; lastUsed: number; }; export type DevicesInfo = { devices: DeviceInfo[]; }; const DEVICES_FILE_NAME = 'devices.json'; const MILLISECONDS_IN_30_DAYS = 30 * 24 * 60 * 60 * 1000; export const DevicesFile = createTemporaryProjectFile<DevicesInfo>(DEVICES_FILE_NAME, { devices: [], }); let devicesInfo: DevicesInfo | null = null; export async function getDevicesInfoAsync(projectRoot: string): Promise<DevicesInfo> { if (devicesInfo) { return devicesInfo; } return readDevicesInfoAsync(projectRoot); } export async function readDevicesInfoAsync(projectRoot: string): Promise<DevicesInfo> { try { devicesInfo = await DevicesFile.readAsync(projectRoot); // if the file on disk has old devices, filter them out here before we use them const filteredDevices = filterOldDevices(devicesInfo.devices); if (filteredDevices.length < devicesInfo.devices.length) { devicesInfo = { ...devicesInfo, devices: filteredDevices, }; // save the newly filtered list for consistency try { await setDevicesInfoAsync(projectRoot, devicesInfo); } catch { // do nothing here, we'll just keep using the filtered list in memory for now } } return devicesInfo; } catch { return await DevicesFile.setAsync(projectRoot, { devices: [] }); } } export async function setDevicesInfoAsync( projectRoot: string, json: DevicesInfo ): Promise<DevicesInfo> { devicesInfo = json; return await DevicesFile.setAsync(projectRoot, json); } export async function saveDevicesAsync( projectRoot: string, deviceIds: string | string[] ): Promise<void> { const currentTime = Date.now(); const newDeviceIds = typeof deviceIds === 'string' ? [deviceIds] : deviceIds; debug(`Saving devices: ${newDeviceIds}`); const { devices } = await getDevicesInfoAsync(projectRoot); const newDevicesJson = devices .filter((device) => !newDeviceIds.includes(device.installationId)) .concat(newDeviceIds.map((deviceId) => ({ installationId: deviceId, lastUsed: currentTime }))); await setDevicesInfoAsync(projectRoot, { devices: filterOldDevices(newDevicesJson) }); } function filterOldDevices(devices: DeviceInfo[]) { const currentTime = Date.now(); return ( devices // filter out any devices that haven't been used to open this project in 30 days .filter((device) => currentTime - device.lastUsed <= MILLISECONDS_IN_30_DAYS) // keep only the 10 most recently used devices .sort((a, b) => b.lastUsed - a.lastUsed) .slice(0, 10) ); } ```
/content/code_sandbox/packages/@expo/cli/src/start/project/devices.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
653
```xml <vector xmlns:android="path_to_url" android:width="24dp" android:height="24dp" android:tint="?attr/colorControlNormal" android:viewportWidth="960" android:viewportHeight="960"> <path android:fillColor="@android:color/white" android:pathData="M394,900L338,844L382,800L200,800L200,720L382,720L338,676L394,620L534,760L394,900ZM200,680L200,160Q200,127 223.5,103.5Q247,80 280,80L680,80Q713,80 736.5,103.5Q760,127 760,160L760,680L680,680L680,618Q640,589 589.5,574.5Q539,560 480,560Q421,560 370.5,574.5Q320,589 280,618L280,680L280,680L200,680ZM280,526Q328,503 378.5,491.5Q429,480 480,480Q531,480 581.5,491.5Q632,503 680,526L680,160Q680,160 680,160Q680,160 680,160L280,160Q280,160 280,160Q280,160 280,160L280,526ZM560,800L560,720L760,720L760,800L560,800ZM480,440Q430,440 395,405Q360,370 360,320Q360,270 395,235Q430,200 480,200Q530,200 565,235Q600,270 600,320Q600,370 565,405Q530,440 480,440ZM480,360Q497,360 508.5,348.5Q520,337 520,320Q520,303 508.5,291.5Q497,280 480,280Q463,280 451.5,291.5Q440,303 440,320Q440,337 451.5,348.5Q463,360 480,360ZM480,560Q480,560 480,560Q480,560 480,560L480,560L480,560L480,560L480,560L480,560L480,560Q480,560 480,560Q480,560 480,560ZM480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Q480,320 480,320Z" /> </vector> ```
/content/code_sandbox/app/src/main/res/drawable/ic_outline_camera_front_24.xml
xml
2016-08-15T19:10:31
2024-08-16T19:34:19
Aegis
beemdevelopment/Aegis
8,651
630
```xml import { Chart } from '@antv/g2'; import { schemeTableau10 } from 'd3-scale-chromatic'; const chart = new Chart({ container: 'container', height: 900, width: 1100, }); chart .treemap() .data({ type: 'fetch', value: 'path_to_url }) .layout({ path: (d) => d.name.replace(/\./g, '/'), tile: 'treemapBinary', paddingInner: 1, }) .encode('value', 'size') .scale('color', { range: schemeTableau10 }) .style( 'labelText', (d) => d.data.name .split('.') .pop() .split(/(?=[A-Z][a-z])/g)[0], ) .style('labelFill', '#000') .style('labelPosition', 'top-left') .style('fillOpacity', 0.5); chart.render(); ```
/content/code_sandbox/site/examples/graph/hierarchy/demo/treemap.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
221
```xml <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>OpenBackupsFolder</class> <widget class="QWidget" name="OpenBackupsFolder"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>587</width> <height>90</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="windowTitle"> <string/> </property> <layout class="QVBoxLayout" name="verticalLayout"> <property name="spacing"> <number>0</number> </property> <property name="leftMargin"> <number>7</number> </property> <property name="topMargin"> <number>23</number> </property> <property name="rightMargin"> <number>7</number> </property> <property name="bottomMargin"> <number>0</number> </property> <item> <widget class="QGroupBox" name="groupBox_3"> <property name="minimumSize"> <size> <width>0</width> <height>67</height> </size> </property> <property name="maximumSize"> <size> <width>16777215</width> <height>67</height> </size> </property> <property name="title"> <string/> </property> <layout class="QHBoxLayout" name="horizontalLayout_4"> <property name="spacing"> <number>6</number> </property> <property name="leftMargin"> <number>105</number> </property> <property name="topMargin"> <number>15</number> </property> <property name="rightMargin"> <number>15</number> </property> <property name="bottomMargin"> <number>15</number> </property> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Backup folder:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="lBackupFolder"> <property name="minimumSize"> <size> <width>0</width> <height>0</height> </size> </property> <property name="text"> <string notr="true"/> </property> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QPushButton" name="bOpenBackupFolder"> <property name="cursor"> <cursorShape>PointingHandCursor</cursorShape> </property> <property name="text"> <string>View in MEGA</string> </property> </widget> </item> </layout> </widget> </item> </layout> </widget> <resources/> <connections/> </ui> ```
/content/code_sandbox/src/MEGASync/syncs/gui/Backups/macx/OpenBackupsFolder.ui
xml
2016-02-10T18:28:05
2024-08-16T19:36:44
MEGAsync
meganz/MEGAsync
1,593
743
```xml import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type LineOptions = Record<string, any>; /** * | */ export const Line: SC<LineOptions> = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'line', ...options }, context, ); }; Line.props = { defaultMarker: 'line', ...Color.props, }; ```
/content/code_sandbox/src/shape/point/line.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
94
```xml <?xml version="1.0" encoding="utf-8"?> Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <RelativeLayout xmlns:android="path_to_url" xmlns:chrome="path_to_url" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="@dimen/snippets_padding"> <ImageView android:id="@+id/image" android:layout_width="112dp" android:layout_height="112dp" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginTop="72dp" android:layout_marginBottom="40dp" android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:src="@drawable/ntp_all_dismissed" android:contentDescription="@null" android:importantForAccessibility="no" /> <org.chromium.ui.widget.TextViewWithLeading android:id="@+id/title_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/image" android:layout_alignParentStart="true" android:gravity="center_horizontal" android:text="@string/ntp_all_dismissed_title_text" android:textSize="16sp" android:textColor="@color/snippets_headline_text_color" chrome:leading="24dp" /> <org.chromium.ui.widget.TextViewWithLeading android:id="@+id/body_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/title_text" android:layout_alignParentStart="true" android:layout_marginTop="8dp" android:gravity="center_horizontal" android:text="@string/ntp_all_dismissed_body_text_morning" android:textSize="14sp" android:textColor="@color/snippets_text_color" chrome:leading="20dp" /> <Button android:id="@+id/action_button" style="@style/ButtonCompatBorderless" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/body_text" android:layout_centerHorizontal="true" android:layout_marginTop="24dp" android:text="@string/ntp_all_dismissed_refresh" android:textAllCaps="true" android:textColor="@color/light_active_color" android:textSize="15sp" /> </RelativeLayout> ```
/content/code_sandbox/libraries_res/chrome_res/src/main/res/layout/new_tab_page_all_dismissed.xml
xml
2016-07-04T07:28:36
2024-08-15T05:20:42
AndroidChromium
JackyAndroid/AndroidChromium
3,090
551
```xml import { ISPFxAdaptiveCard, BaseAdaptiveCardView } from "@microsoft/sp-adaptive-card-extension-base"; import { IMyOneDriveInfoAdaptiveCardExtensionProps, IMyOneDriveInfoAdaptiveCardExtensionState } from "../MyOneDriveInfoAdaptiveCardExtension"; import { HelperService } from "../services/HelperService"; export interface IQuickViewData { driveType: string; lastModifiedBy: string; lastModifiedDateTime: string; totalSize: string; deletedSize: string; usedSize: string; remainingSize: string; state: string; webUrl: string; } export class QuickView extends BaseAdaptiveCardView<IMyOneDriveInfoAdaptiveCardExtensionProps, IMyOneDriveInfoAdaptiveCardExtensionState, IQuickViewData> { public get data(): IQuickViewData { const driveDetails = this.state.myDriveDetails; return { driveType: driveDetails?.driveType ?? "", lastModifiedBy: driveDetails?.lastModifiedBy?.user?.displayName ?? "", lastModifiedDateTime: driveDetails?.lastModifiedDateTime ? new Date(driveDetails.lastModifiedDateTime).toLocaleString() : "", totalSize: driveDetails?.quota?.total ? `${HelperService.calculateSpace(driveDetails.quota.total).spaceString}` : "", deletedSize: driveDetails?.quota?.deleted ? `${HelperService.calculateSpace(driveDetails.quota.deleted).spaceString}` : "-", usedSize: driveDetails?.quota?.used ? `${HelperService.calculateSpace(driveDetails.quota.used).spaceString}` : "-", remainingSize: driveDetails?.quota?.remaining ? `${HelperService.calculateSpace(driveDetails.quota.remaining).spaceString}` : "-", state: driveDetails?.quota?.state ?? "", webUrl: driveDetails?.webUrl ?? "", }; } public get template(): ISPFxAdaptiveCard { return require("./template/QuickViewTemplate.json"); } } ```
/content/code_sandbox/samples/react-my-onedrive-info/src/adaptiveCardExtensions/myOneDriveInfo/quickView/QuickView.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
418
```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url"> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>12.8.0</version> <packaging>jar</packaging> <name>Microsoft JDBC Driver for SQL Server</name> <description> Microsoft JDBC Driver for SQL Server. </description> <url>path_to_url <licenses> <license> <url>path_to_url </license> </licenses> <organization> <name>Microsoft Corporation</name> </organization> <developers> <developer> <organization>Microsoft</organization> <organizationUrl>path_to_url </developer> </developers> <scm> <url>path_to_url </scm> <properties> <!-- Allowed values for excluded Groups here - - - - - - - - - - - - - xJDBC42 - - - - - - For tests not compatible with JDBC 42 Specifications xGradle - - - - - - For tests not compatible with Gradle Script - - - - - xSQLv11 - - - - - - For tests not compatible with SQL Server 2012 - - - - xSQLv12 - - - - - - For tests not compatible with SQL Server 2008 R2 - 2014 xSQLv14 - - - - - - For tests not compatible with SQL Server 2016 - 2017 xSQLv15 - - - - - - For tests not compatible with SQL Server 2019 - - - - xSQLv16 - - - - - - For tests not compatible with SQL Server 2022 - - - - xAzureSQLDB - - - - For tests not compatible with Azure SQL Database - - xAzureSQLDW - - - - For tests not compatible with Azure Data Warehouse - xAzureSQLMI - - - - For tests not compatible with Azure SQL Managed Instance NTLM - - - - - - - For tests using NTLM Authentication mode (excluded by default) kerberos - - - - - For tests using Kerberos authentication (excluded by default) reqExternalSetup - For tests requiring external setup (excluded by default) clientCertAuth - - For tests requiring client certificate authentication setup (excluded by default) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Default testing enabled with SQL Server 2019 (SQLv15) --> <excludedGroups>xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth,kerberos</excludedGroups> <!-- Use -preview for preview release, leave empty for official release. --> <releaseExt></releaseExt> <!-- Driver Dependencies --> <org.osgi.core.version>6.0.0</org.osgi.core.version> <azure-security-keyvault-keys.version>4.7.3</azure-security-keyvault-keys.version> <azure-identity.version>1.12.2</azure-identity.version> <msal.version>1.15.1</msal.version> <osgi.jdbc.version>1.1.0</osgi.jdbc.version> <antlr-runtime.version>4.9.3</antlr-runtime.version> <com.google.code.gson.version>2.10.1</com.google.code.gson.version> <bcprov-jdk18on.version>1.78</bcprov-jdk18on.version> <bcpkix-jdk18on.version>1.78</bcpkix-jdk18on.version> <!-- JUnit Test Dependencies --> <junit.platform.version>[1.3.2, 1.9.0]</junit.platform.version> <junit.jupiter.version>5.8.2</junit.jupiter.version> <hikaricp.version>3.4.2</hikaricp.version> <dbcp2.version>2.7.0</dbcp2.version> <slf4j.nop.version>1.7.30</slf4j.nop.version> <gemini.mock.version>2.1.0.RELEASE</gemini.mock.version> <h2.version>2.2.220</h2.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding> <enforcer.skip>false</enforcer.skip> </properties> <dependencies> <dependency> <groupId>com.azure</groupId> <artifactId>azure-security-keyvault-keys</artifactId> <version>${azure-security-keyvault-keys.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> <version>${azure-identity.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>stax</groupId> <artifactId>stax-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>msal4j</artifactId> <version>${msal.version}</version> <optional>true</optional> </dependency> <!-- dependencies for ANTLR --> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr-runtime.version}</version> <optional>true</optional> </dependency> <!-- dependencies for AAS Enclave Provider --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${com.google.code.gson.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>${bcprov-jdk18on.version}</version> <optional>true</optional> </dependency> <!-- dependencies for Client Certificate Authentication --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>${bcpkix-jdk18on.version}</version> <optional>true</optional> </dependency> <!-- dependencies provided by an OSGi-Framework --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>${org.osgi.core.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.jdbc</artifactId> <version>${osgi.jdbc.version}</version> <scope>provided</scope> </dependency> <!-- dependencies for running tests --> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-console</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-runner</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>${hikaricp.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2 </artifactId> <version>${dbcp2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>${slf4j.nop.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.gemini.blueprint</groupId> <artifactId>gemini-blueprint-mock</artifactId> <version>${gemini.mock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>jre8</id> <build> <finalName>${project.artifactId}-${project.version}.jre8${releaseExt}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>**/com/microsoft/sqlserver/jdbc/ISQLServerConnection43.java</exclude> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerConnection43.java</exclude> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerJdbc43.java</exclude> </excludes> <testExcludes> <exclude>**/com/microsoft/sqlserver/jdbc/connection/ConnectionWrapper43Test.java</exclude> <exclude>**/com/microsoft/sqlserver/jdbc/connection/RequestBoundaryMethodsTest.java</exclude> <exclude>**/com/microsoft/sqlserver/jdbc/JDBC43Test.java</exclude> </testExcludes> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <!-- Exclude [xJDBC42] For tests not compatible with JDBC 4.2 Specifications --> <excludedGroups>${excludedGroups}, xJDBC42</excludedGroups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jre11</id> <build> <finalName>${project.artifactId}-${project.version}.jre11${releaseExt}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java</exclude> </excludes> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>com.microsoft.sqlserver.jdbc</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jre17</id> <build> <finalName>${project.artifactId}-${project.version}.jre17${releaseExt}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java</exclude> </excludes> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>com.microsoft.sqlserver.jdbc</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jre21</id> <build> <finalName>${project.artifactId}-${project.version}.jre21${releaseExt}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java</exclude> </excludes> <source>21</source> <target>21</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>com.microsoft.sqlserver.jdbc</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jre22</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <finalName>${project.artifactId}-${project.version}.jre22${releaseExt}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <excludes> <exclude>**/com/microsoft/sqlserver/jdbc/SQLServerJdbc42.java</exclude> </excludes> <source>22</source> <target>22</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>com.microsoft.sqlserver.jdbc</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <resources> <resource> <directory>${basedir}</directory> <includes> <include>META-INF/services/java.sql.Driver</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <includes> <include>**/*.csv</include> </includes> </testResource> <testResource> <directory>AE_Certificates</directory> <includes> <include>**/*.txt</include> <include>**/*.jks</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedPlugins> <!-- will only display a warning but does not fail the build. --> <level>WARN</level> <excludes> <exclude>org.apache.maven.plugins:maven-verifier-plugin</exclude> </excludes> <message>Please consider using the maven-invoker-plugin (path_to_url </bannedPlugins> <requireMavenVersion> <version>3.5.0</version> </requireMavenVersion> <requireJavaVersion> <version>11</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <forkCount>3</forkCount> <reuseForks>true</reuseForks> <argLine>${argLine} -Xmx1024m -Djava.library.path=${dllPath} </argLine> <excludedGroups>${excludedGroups}</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Create OSGI Headers --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.1</version> <extensions>true</extensions> <configuration> <instructions> <_exportcontents> com.microsoft.sqlserver.jdbc, com.microsoft.sqlserver.jdbc.osgi, com.microsoft.sqlserver.jdbc.dataclassification, microsoft.sql </_exportcontents> <Import-Package>!microsoft.sql,jdk.net;resolution:=optional,*</Import-Package> <Bundle-Activator>com.microsoft.sqlserver.jdbc.osgi.Activator</Bundle-Activator> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <failOnError>true</failOnError> <excludePackageNames>mssql.*</excludePackageNames> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.5</version> <inherited>true</inherited> <configuration> <outputFile>outdated-dependencies.txt</outputFile> <rulesUri>file:///${session.executionRootDirectory}/maven-version-rules.xml</rulesUri> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>pre-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>**/mssql/googlecode/**/*</exclude> <exclude>**/mssql/security/**/*</exclude> </excludes> <fileSets> <fileSet> <directory>jacoco-execs/</directory> <includes> <include>**/*.exec</include> </includes> </fileSet> </fileSets> <!-- File containing the merged coverage data --> <destFile>${project.build.directory}/jacoco.exec</destFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <groupId>org.apache.maven</groupId> <artifactId>maven-archiver</artifactId> <version>3.4.0</version> </plugin> </plugins> </build> </project> ```
/content/code_sandbox/pom.xml
xml
2016-08-22T21:58:47
2024-08-14T04:52:30
mssql-jdbc
microsoft/mssql-jdbc
1,046
6,066
```xml export * from './generation' export * from './legends' export * from './stratification' ```
/content/code_sandbox/packages/boxplot/src/compute/index.ts
xml
2016-04-16T03:27:56
2024-08-16T03:38:37
nivo
plouc/nivo
13,010
22
```xml import * as React from "react"; export const id = "skip-nav"; export default function SkipNavContent() { return <div id={id} />; } ```
/content/code_sandbox/app/components/SkipNavContent.tsx
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
35
```xml <shapes name="mxgraph.weblogos"> <shape aspect="variable" h="458.18" name="Adfty" strokewidth="inherit" w="455.82"> <connections/> <foreground> <fillcolor color="#ffffff"/> <path> <move x="37.74" y="325.23"/> <curve x1="13.36" x2="0" x3="17.99" y1="311.16" y2="264.78" y3="233.86"/> <line x="134.83" y="33.04"/> <curve x1="149.42" x2="196.36" x3="220.92" y1="7.98" y2="0" y3="14.05"/> <line x="417.52" y="126.52"/> <curve x1="452.26" x2="455.82" x3="443.75" y1="146.39" y2="197.11" y3="218.26"/> <line x="332.4" y="413.42"/> <curve x1="314.54" x2="268.16" x3="236.32" y1="444.72" y2="458.18" y3="439.81"/> <close/> </path> <fill/> <fillcolor color="#a3ce39"/> <path> <move x="214.02" y="358.81"/> <curve x1="200.38" x2="186.15" x3="163.85" y1="357.91" y2="355.93" y3="339.11"/> <curve x1="155.2" x2="139.29" x3="129.34" y1="332.79" y2="318.43" y3="293.1"/> <curve x1="125.56" x2="126.37" x3="122.84" y1="282.86" y2="269.16" y3="253.26"/> <curve x1="120.32" x2="114.77" x3="105.1" y1="240.01" y2="233.27" y3="227.23"/> <curve x1="117.48" x2="129.87" x3="134.26" y1="228.16" y2="232.76" y3="244.58"/> <curve x1="137.48" x2="139.35" x3="143.28" y1="249.94" y2="250.96" y3="244.72"/> <curve x1="144.74" x2="146.07" x3="146.97" y1="242.19" y2="238.48" y3="230.6"/> <curve x1="147.8" x2="149.6" x3="151.26" y1="217.91" y2="214.21" y3="209.14"/> <curve x1="152.49" x2="155.06" x3="150.96" y1="204.18" y2="200.31" y3="190.97"/> <curve x1="146.94" x2="143.64" x3="142.22" y1="181.16" y2="172.69" y3="167.68"/> <curve x1="151.57" x2="162.68" x3="172.52" y1="177.55" y2="195.01" y3="203.71"/> <curve x1="176.36" x2="180.66" x3="180.97" y1="207.31" y2="207.6" y3="202.43"/> <curve x1="181.76" x2="183.14" x3="189.41" y1="189.65" y2="177.72" y3="169.34"/> <curve x1="192.35" x2="194.06" x3="189.6" y1="164.99" y2="159.84" y3="146.72"/> <curve x1="185.3" x2="183.93" x3="176.02" y1="136.94" y2="129.58" y3="122.92"/> <curve x1="169" x2="164.35" x3="160.43" y1="115.98" y2="112.26" y3="109.55"/> <curve x1="169.36" x2="178.62" x3="192.85" y1="111.76" y2="114.79" y3="129.43"/> <curve x1="200.73" x2="208.33" x3="215.64" y1="138.54" y2="144.98" y3="148.83"/> <curve x1="220.35" x2="225.21" x3="226.46" y1="150.85" y2="153.21" y3="147.08"/> <curve x1="227.9" x2="228.71" x3="223.16" y1="140.67" y2="133.16" y3="116.21"/> <curve x1="219.89" x2="214.24" x3="212.76" y1="104.27" y2="91.48" y3="83.1"/> <curve x1="209.66" x2="211.62" x3="220.25" y1="66.67" y2="55.67" y3="43.26"/> <curve x1="223.27" x2="227.02" x3="232.86" y1="56.87" y2="72.29" y3="85.44"/> <curve x1="238.4" x2="242.62" x3="247.38" y1="95.65" y2="100.11" y3="106.39"/> <curve x1="254.75" x2="256.28" x3="255.14" y1="117.14" y2="142.78" y3="156.32"/> <curve x1="254.13" x2="252.48" x3="250.62" y1="166.46" y2="178.54" y3="191.22"/> <curve x1="250.3" x2="249.86" x3="254.95" y1="195.42" y2="199.39" y3="197.01"/> <curve x1="257.27" x2="259.13" x3="267.01" y1="195.79" y2="197.16" y3="181.72"/> <curve x1="273.65" x2="272.83" x3="272.08" y1="167.37" y2="147.08" y3="127.23"/> <curve x1="284.78" x2="294.07" x3="292.09" y1="140.27" y2="154.88" y3="174.69"/> <curve x1="290.46" x2="289.08" x3="288.58" y1="189.08" y2="203.28" y3="216.81"/> <curve x1="288.23" x2="291.3" x3="299.23" y1="228.83" y2="232.49" y3="227.37"/> <curve x1="311.71" x2="316.4" x3="321.75" y1="219.76" y2="212.44" y3="205.09"/> <curve x1="327.39" x2="330.97" x3="332.6" y1="196.16" y2="185.36" y3="168.91"/> <curve x1="335.04" x2="339.74" x3="332.71" y1="186.46" y2="204.59" y3="220.52"/> <curve x1="325.74" x2="320.25" x3="318.38" y1="235.14" y2="248.85" y3="260.36"/> <curve x1="317.55" x2="319.67" x3="327.21" y1="267.78" y2="272.67" y3="269.73"/> <curve x1="337.31" x2="343.54" x3="348.85" y1="264.73" y2="248.37" y3="229.28"/> <curve x1="348.2" x2="343.22" x3="324.3" y1="256.04" y2="285.06" y3="314.57"/> <curve x1="304.59" x2="275.33" x3="265.34" y1="343.47" y2="354.51" y3="351.53"/> <curve x1="272.68" x2="283.65" x3="289.82" y1="346.74" y2="336.42" y3="315.88"/> <curve x1="292.03" x2="294.7" x3="284.96" y1="306.74" y2="286.28" y3="276.01"/> <curve x1="276.04" x2="269.91" x3="263.75" y1="286.16" y2="293.14" y3="299.95"/> <curve x1="265.95" x2="268.7" x3="269.53" y1="292.82" y2="286.33" y3="277.92"/> <curve x1="270.05" x2="269" x3="263.89" y1="273.41" y2="268.43" y3="270.05"/> <curve x1="253.6" x2="250.02" x3="244.34" y1="273.9" y2="280.34" y3="285.37"/> <curve x1="247.18" x2="253.46" x3="254.28" y1="277.02" y2="266.94" y3="249.58"/> <curve x1="255.43" x2="250.34" x3="243.6" y1="232.29" y2="218.34" y3="205.27"/> <curve x1="239.9" x2="233.96" x3="228.49" y1="200.72" y2="191.64" y3="194.28"/> <curve x1="225.07" x2="225.75" x3="228.34" y1="196.26" y2="205.85" y3="214.6"/> <curve x1="236.54" x2="236.42" x3="235.08" y1="234.17" y2="244.44" y3="253.34"/> <curve x1="233" x2="226.87" x3="222.91" y1="261.18" y2="263.08" y3="256.6"/> <curve x1="220.41" x2="219.8" x3="216.74" y1="253.11" y2="245.32" y3="238.12"/> <line x="212.52" y="227.65"/> <curve x1="210.59" x2="207.5" x3="204.5" y1="224.36" y2="223.63" y3="231.42"/> <curve x1="200.59" x2="200.8" x3="203.12" y1="240.62" y2="251.13" y3="262.32"/> <curve x1="207.2" x2="211.01" x3="214.72" y1="282.67" y2="292.63" y3="301.98"/> <curve x1="206.6" x2="199.45" x3="195.39" y1="296.75" y2="289.14" y3="278.28"/> <curve x1="193.24" x2="190.75" x3="186.41" y1="272.09" y2="263.86" y3="257.52"/> <curve x1="182.26" x2="179.49" x3="178.71" y1="251.22" y2="253.91" y3="256.6"/> <curve x1="176.23" x2="175.72" x3="178.22" y1="263.93" y2="277.16" y3="289.28"/> <curve x1="173.24" x2="161.91" x3="156.72" y1="286.01" y2="281.16" y3="281.26"/> <curve x1="149.69" x2="150.23" x3="152.5" y1="281.41" y2="285.34" y3="289.1"/> <curve x1="161.01" x2="181.06" x3="190.45" y1="300.24" y2="317.6" y3="337.66"/> <curve x1="199.01" x2="206.89" x3="214.02" y1="348.61" y2="355.82" y3="358.81"/> <close/> <move x="243.52" y="431.52"/> <curve x1="268.6" x2="309.33" x3="322.36" y1="445.83" y2="433.09" y3="410.17"/> <line x="435.9" y="210.42"/> <curve x1="447.96" x2="437.72" x3="414.19" y1="189.2" y2="149.75" y3="136.24"/> <line x="218.58" y="23.92"/> <curve x1="194.99" x2="154.94" x3="143.28" y1="10.38" y2="19.14" y3="39.08"/> <line x="26" y="239.54"/> <curve x1="10.68" x2="25.21" x3="46.05" y1="265.72" y2="306.98" y3="318.87"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="338.36" name="Adobe PDF" strokewidth="inherit" w="346.82"> <connections/> <foreground> <path> <move x="258.17" y="214.74"/> <curve x1="279.91" x2="287.21" x3="328.42" y1="222.34" y2="230.74" y3="237.28"/> <curve x1="334.02" x2="340.02" x3="343.8" y1="237.87" y2="236.59" y3="230.94"/> <curve x1="345.02" x2="343.29" x3="340.71" y1="226.44" y2="223.96" y3="222.05"/> <curve x1="334.7" x2="326.21" x3="314.93" y1="217.55" y2="213.36" y3="212.85"/> <curve x1="289.36" x2="273.48" x3="258.17" y1="211.95" y2="213.28" y3="214.74"/> <close/> <move x="104.54" y="241.65"/> <curve x1="145.43" x2="182.31" x3="217.61" y1="225.68" y2="216.11" y3="208.93"/> <curve x1="188.31" x2="170.2" x3="156.1" y1="189.92" y2="164.73" y3="137.32"/> <curve x1="138.91" x2="121.72" x3="104.54" y1="179.78" y2="213.65" y3="241.65"/> <close/> <move x="73.67" y="255.91"/> <curve x1="50.81" x2="34.73" x3="21.84" y1="276.18" y2="290.6" y3="309.62"/> <curve x1="19.02" x2="12.47" x3="14.35" y1="313.83" y2="322.01" y3="327.82"/> <curve x1="18.3" x2="25" x3="38.83" y1="328.58" y2="326.47" y3="313.38"/> <curve x1="79.56" x2="117.53" x3="149.23" y1="263.85" y2="194.27" y3="120.06"/> <curve x1="144.14" x2="139.05" x3="135.14" y1="101.26" y2="82.49" y3="55.45"/> <curve x1="133.44" x2="132.48" x3="135" y1="38.82" y2="23.28" y3="12.84"/> <curve x1="136.5" x2="140.83" x3="146.7" y1="8.37" y2="2.11" y3="1.07"/> <curve x1="150.78" x2="159.23" x3="165.19" y1="0.62" y2="0" y3="2.03"/> <curve x1="180.36" x2="174.51" x3="172.53" y1="14.78" y2="31.73" y3="40.98"/> <curve x1="172.09" x2="171.43" x3="165.68" y1="31.16" y2="22.98" y3="12.91"/> <curve x1="159.54" x2="158.64" x3="155.68" y1="2.79" y2="1.97" y3="1.67"/> <curve x1="152.17" x2="150.26" x3="149.01" y1="1.97" y2="9.7" y3="20.47"/> <curve x1="147.32" x2="153.61" x3="159.48" y1="38.54" y2="71.81" y3="93.77"/> <curve x1="163.61" x2="167.6" x3="170.62" y1="79.97" y2="65.5" y3="46.65"/> <curve x1="171.35" x2="172.02" x3="164.39" y1="63.26" y2="79.33" y3="111.54"/> <curve x1="181.57" x2="206.05" x3="239.15" y1="157.39" y2="186.95" y3="204.48"/> <curve x1="266.29" x2="298.35" x3="319.3" y1="202.03" y2="198.57" y3="202"/> <curve x1="337.1" x2="343.39" x3="345.08" y1="205.26" y2="211.61" y3="217.28"/> <curve x1="346.82" x2="343.96" x3="342.41" y1="229.05" y2="236.83" y3="239.85"/> <curve x1="339.57" x2="330.85" x3="323.96" y1="244.9" y2="248.19" y3="247.94"/> <curve x1="289.9" x2="254" x3="232.31" y1="245.66" y2="230.72" y3="217.82"/> <curve x1="170.52" x2="139.91" x3="101.52" y1="227.84" y2="236.61" y3="248.43"/> <curve x1="83.88" x2="66.24" x3="48.6" y1="278.14" y2="306.76" y3="323.81"/> <curve x1="38.94" x2="28.76" x3="15.13" y1="331.88" y2="338.36" y3="334.52"/> <line x="2.92" y="327.73"/> <curve x1="0" x2="3.78" x3="6.69" y1="320.34" y2="312.28" y3="306.33"/> <curve x1="15.13" x2="51.8" x3="73.67" y1="290.4" y2="264.81" y3="255.91"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="342.29" name="Aim" strokewidth="inherit" w="311.61"> <connections/> <foreground> <fillcolor color="#fdd500"/> <path> <move x="10.23" y="245.77"/> <curve x1="69.39" x2="97.63" x3="109.13" y1="234.44" y2="211.33" y3="181.85"/> <curve x1="120.21" x2="119.66" x3="159.18" y1="153.7" y2="125.56" y3="97.42"/> <curve x1="150.76" x2="148.23" x3="147.72" y1="77.69" y2="64.68" y3="54"/> <curve x1="155.88" x2="175.47" x3="208.63" y1="25.91" y2="8.75" y3="4.55"/> <curve x1="239.26" x2="257.09" x3="259.29" y1="12.41" y2="32.04" y3="66.06"/> <curve x1="251.6" x2="231.48" x3="212.86" y1="99.92" y2="108.95" y3="120.94"/> <curve x1="232.76" x2="253.6" x3="292.46" y1="127.2" y2="132.69" y3="123.35"/> <line x="303.31" y="170.39"/> <curve x1="268.11" x2="233.66" x3="199.59" y1="185.11" y2="187.68" y3="184.26"/> <curve x1="244.93" x2="262.19" x3="278.59" y1="226.22" y2="270.33" y3="314.52"/> <line x="224.92" y="334.42"/> <curve x1="208.31" x2="185.42" x3="149.53" y1="295.65" y2="263.53" y3="245.17"/> <curve x1="107.53" x2="64.08" x3="18.67" y1="281.73" y2="302.87" y3="303.06"/> <close/> </path> <fill/> <fillcolor color="#221f1f"/> <path> <move x="203.45" y="108.71"/> <curve x1="230" x2="249.47" x3="249.47" y1="108.71" y2="85.23" y3="63.17"/> <curve x1="249.47" x2="232.1" x3="202.09" y1="39.36" y2="15.67" y3="15.67"/> <curve x1="176.02" x2="156.89" x3="156.89" y1="15.67" y2="38.47" y3="60.02"/> <curve x1="156.89" x2="181.72" x3="203.45" y1="93.53" y2="108.71" y3="108.71"/> <close/> <move x="24.24" y="295.06"/> <curve x1="64.76" x2="114.84" x3="140.08" y1="294.11" y2="271.82" y3="241.68"/> <curve x1="141.9" x2="147.1" x3="151.72" y1="238.49" y2="235.16" y3="237.16"/> <curve x1="194.27" x2="218.84" x3="230.11" y1="263.15" y2="293.36" y3="322.35"/> <line x="268.34" y="307.73"/> <curve x1="253.66" x2="229.8" x3="191.43" y1="265.66" y2="225.78" y3="189.33"/> <curve x1="189.53" x2="189.31" x3="190.25" y1="186.16" y2="183.31" y3="180.7"/> <curve x1="192.22" x2="195.04" x3="199" y1="177.62" y2="176" y3="176.33"/> <curve x1="231.96" x2="270.47" x3="293.77" y1="180.21" y2="177.53" y3="165.35"/> <line x="286.73" y="132.62"/> <curve x1="240.16" x2="180.34" x3="158.59" y1="144.72" y2="128.53" y3="105.65"/> <curve x1="141.61" x2="129.7" x3="122.24" y1="121.19" y2="137.48" y3="163.43"/> <curve x1="116.99" x2="106.76" x3="85.67" y1="188.2" y2="208.06" y3="224.2"/> <curve x1="62.01" x2="36.93" x3="17.34" y1="242.05" y2="247.99" y3="252.39"/> <close/> <move x="17.44" y="311.08"/> <curve x1="12.68" x2="10.38" x3="9.13" y1="310.94" y2="309.58" y3="303.08"/> <line x="1.03" y="248.93"/> <curve x1="0" x2="0.96" x3="8.49" y1="242.2" y2="238.69" y3="236.99"/> <curve x1="41.2" x2="89.28" x3="101.77" y1="234.35" y2="215.31" y3="177.29"/> <curve x1="108.92" x2="120.31" x3="148.31" y1="145.78" y2="119.41" y3="92.61"/> <curve x1="143.95" x2="140.53" x3="140.53" y1="83.5" y2="74.03" y3="60.99"/> <curve x1="140.53" x2="170.47" x3="203.69" y1="26.32" y2="0" y3="0"/> <curve x1="238.13" x2="265.31" x3="265.31" y1="0" y2="29.09" y3="64.5"/> <curve x1="265.31" x2="248.95" x3="229.06" y1="87.36" y2="109.33" y3="118.87"/> <curve x1="245.65" x2="265.33" x3="289.83" y1="122.31" y2="122.2" y3="114.71"/> <curve x1="295.66" x2="299.52" x3="300.38" y1="113.89" y2="116.74" y3="121.21"/> <line x="310.72" y="166.52"/> <curve x1="311.61" x2="310.66" x3="306.24" y1="172.05" y2="175.38" y3="177.61"/> <curve x1="275.27" x2="246.41" x3="217.97" y1="192.56" y2="194.4" y3="193.6"/> <curve x1="244.34" x2="273.7" x3="284.66" y1="222.64" y2="266.55" y3="308.63"/> <curve x1="286.18" x2="284.46" x3="279.86" y1="313.81" y2="318.85" y3="320.62"/> <line x="228.63" y="340.08"/> <curve x1="222.76" x2="218.34" x3="216.16" y1="342.29" y2="340.7" y3="333.25"/> <curve x1="205.88" x2="169.07" x3="149.64" y1="295.04" y2="266.51" y3="254.47"/> <curve x1="119.62" x2="60.22" x3="17.44" y1="288.48" y2="312.16" y3="311.08"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="397.83" name="Allvoices" strokewidth="inherit" w="419.49"> <connections/> <foreground> <fillcolor color="#3d3e3e"/> <path> <move x="181.69" y="397.83"/> <curve x1="195.2" x2="213.24" x3="217.8" y1="375.81" y2="349.45" y3="335.99"/> <curve x1="162.22" x2="99.58" x3="53.07" y1="339.55" y2="323.64" y3="276.56"/> <curve x1="21" x2="0" x3="16.32" y1="244.04" y2="191.46" y3="137.55"/> <curve x1="34.23" x2="84.85" x3="146.38" y1="79.79" y2="39.36" y3="23.31"/> <curve x1="236.57" x2="321.21" x3="359.65" y1="0" y2="36.85" y3="81.97"/> <curve x1="419.49" x2="395.86" x3="355.38" y1="154.22" y2="228.26" y3="275.84"/> <curve x1="315.76" x2="273.5" x3="181.69" y1="326.69" y2="348.59" y3="397.83"/> <close/> </path> <fill/> <fillcolor color="#8bc540"/> <path> <move x="188.17" y="237.44"/> <curve x1="184.54" x2="177.31" x3="162.51" y1="244.32" y2="250.26" y3="253.72"/> <curve x1="159.53" x2="143.89" x3="140.28" y1="254.55" y2="254.56" y3="252.29"/> <curve x1="137.21" x2="134.55" x3="133.87" y1="250.29" y2="248.09" y3="244.9"/> <curve x1="133.56" x2="133.29" x3="134.55" y1="239.76" y2="235.62" y3="232.91"/> <curve x1="137.8" x2="142.78" x3="147.44" y1="227.93" y2="225.37" y3="224.17"/> <line x="188.17" y="216.71"/> <close/> <move x="230.04" y="253.29"/> <curve x1="224.57" x2="217.39" x3="216.02" y1="256.26" y2="258.67" y3="250.74"/> <line x="216.02" y="170.5"/> <curve x1="216.02" x2="212.74" x3="201.86" y1="166.13" y2="157.87" y3="150.52"/> <curve x1="190.82" x2="175.82" x3="156.33" y1="143.82" y2="140.79" y3="141.93"/> <curve x1="136.01" x2="126.68" x3="119.27" y1="144.16" y2="152.99" y3="162.97"/> <curve x1="114.08" x2="115.23" x3="114.82" y1="171.06" y2="180.24" y3="187.55"/> <line x="139.01" y="187.76"/> <curve x1="138.94" x2="139.12" x3="140.77" y1="184.38" y2="182.25" y3="177.45"/> <curve x1="143.52" x2="151.26" x3="156.83" y1="169.68" y2="164.81" y3="164.7"/> <curve x1="163.47" x2="171.36" x3="179.47" y1="164.5" y2="164.52" y3="167.25"/> <curve x1="183.62" x2="187.33" x3="188.17" y1="168.88" y2="170.88" y3="175.02"/> <line x="188.17" y="190.25"/> <curve x1="188.07" x2="186.29" x3="180.04" y1="193.25" y2="195.73" y3="195.97"/> <curve x1="156.63" x2="147.75" x3="138.14" y1="196.5" y2="199.22" y3="201.82"/> <curve x1="123.51" x2="116.26" x3="111.29" y1="206.83" y2="213.35" y3="226.09"/> <curve x1="107.52" x2="107.93" x3="117.28" y1="238.74" y2="252.26" y3="264.57"/> <curve x1="125.41" x2="139.76" x3="153.75" y1="274.43" y2="278.16" y3="278.38"/> <curve x1="168.36" x2="181.06" x3="191.39" y1="278.16" y2="269.62" y3="262"/> <curve x1="195.19" x2="203.73" x3="213.29" y1="271.88" y2="278.82" y3="278.48"/> <curve x1="221.47" x2="225.45" x3="229.88" y1="277.82" y2="276.85" y3="275.38"/> <close/> <move x="293.83" y="273.63"/> <line x="293.83" y="255.73"/> <line x="284.58" y="255.73"/> <line x="284.58" y="96.52"/> <line x="248.1" y="96.52"/> <line x="248.1" y="123.56"/> <line x="257.11" y="123.56"/> <line x="257.11" y="273.63"/> <close/> <move x="203.22" y="377.5"/> <curve x1="212.52" x2="222.09" x3="229.45" y1="362.79" y2="349.13" y3="326.69"/> <curve x1="198.07" x2="144.35" x3="106.73" y1="333.07" y2="326.87" y3="306.49"/> <curve x1="72.73" x2="24.24" x3="18.53" y1="289.52" y2="251.17" y3="184.9"/> <curve x1="14.48" x2="33.12" x3="92.63" y1="148.77" y2="89.66" y3="54.14"/> <curve x1="144.13" x2="222.75" x3="292.53" y1="21.73" y2="10.98" y3="42.65"/> <curve x1="353.11" x2="385.03" x3="388.06" y1="69.34" y2="119.18" y3="165.07"/> <curve x1="390.73" x2="377.38" x3="360.03" y1="207.6" y2="235.29" y3="257.66"/> <line x="360.03" y="255.73"/> <line x="350.33" y="255.73"/> <line x="350.33" y="96.52"/> <line x="313.23" y="96.52"/> <line x="313.23" y="123.56"/> <line x="322.84" y="123.56"/> <line x="322.84" y="273.76"/> <line x="345.71" y="273.76"/> <curve x1="305.7" x2="249.75" x3="203.22" y1="326.37" y2="352.05" y3="377.5"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="340.65" name="Amazon" strokewidth="inherit" w="314.36"> <connections/> <foreground> <fillcolor color="#353233"/> <path> <move x="232.04" y="248.55"/> <curve x1="227.08" x2="223.03" x3="218.6" y1="252.88" y2="254.2" y3="250.39"/> <curve x1="210.78" x2="201.67" x3="194.44" y1="243.83" y2="234.53" y3="221.66"/> <curve x1="183.35" x2="170.69" x3="152.08" y1="232.41" y2="245.36" y3="250.22"/> <curve x1="138.17" x2="119.5" x3="93.21" y1="253.34" y2="257.52" y3="248.37"/> <curve x1="67.82" x2="55.52" x3="55.52" y1="238.9" y2="212.49" y3="191.7"/> <curve x1="55.52" x2="57.09" x3="95.32" y1="167.52" y2="138.45" y3="114.81"/> <curve x1="128.42" x2="157.78" x3="185.21" y1="98.91" y2="100.5" y3="96.89"/> <line x="184.88" y="73.22"/> <curve x1="184.51" x2="183.63" x3="164.21" y1="69.93" y2="56.06" y3="49.57"/> <curve x1="152.95" x2="138.75" x3="129.31" y1="46.6" y2="49.62" y3="57.75"/> <curve x1="124.62" x2="121.49" x3="120.25" y1="62.61" y2="67.84" y3="75.86"/> <curve x1="119.65" x2="115.16" x3="110" y1="79.13" y2="83.97" y3="83.06"/> <curve x1="95.82" x2="85.56" x3="68.77" y1="80.73" y2="79.8" y3="78.26"/> <curve x1="65" x2="61.38" x3="62.99" y1="77.9" y2="73" y3="67.72"/> <curve x1="66.12" x2="75.01" x3="85.03" y1="47.97" y2="36.44" y3="26.53"/> <curve x1="100.22" x2="115.77" x3="168.14" y1="14.22" y2="0" y3="1.02"/> <curve x1="213.57" x2="247.16" x3="247.16" y1="2.58" y2="27.13" y3="64.9"/> <line x="247.86" y="171.05"/> <curve x1="247.86" x2="251.91" x3="254.19" y1="182.48" y2="190.84" y3="194.95"/> <line x="265.97" y="210.14"/> <curve x1="268" x2="268.28" x3="265.85" y1="213.18" y2="216.28" y3="219.49"/> <close/> <move x="185.03" y="133"/> <curve x1="159.45" x2="139.35" x3="128.27" y1="132.97" y2="137.98" y3="151.28"/> <curve x1="122.75" x2="118.76" x3="121.59" y1="159.05" y2="168.71" y3="186.69"/> <curve x1="123.56" x2="128.26" x3="136.09" y1="196.49" y2="203.34" y3="206.81"/> <curve x1="146.6" x2="153.35" x3="164.65" y1="209.7" y2="209.8" y3="202.59"/> <curve x1="176.27" x2="185.03" x3="185.03" y1="194.17" y2="176.58" y3="161.38"/> <line x="185.03" y="133"/> <close/> </path> <fill/> <fillcolor color="#f8981d"/> <path> <move x="292.14" y="311.64"/> <curve x1="289.84" x2="287.81" x3="288.81" y1="312.44" y2="311.61" y3="308.03"/> <curve x1="292.32" x2="295.96" x3="299.26" y1="298.09" y2="290.68" y3="276.05"/> <curve x1="300.08" x2="300.3" x3="290.91" y1="272.21" y2="266.99" y3="265.86"/> <curve x1="278.74" x2="268.5" x3="257.61" y1="264.57" y2="266.5" y3="267.35"/> <curve x1="254.31" x2="253.36" x3="255.42" y1="267.43" y2="264.55" y3="262.96"/> <curve x1="271.68" x2="284.6" x3="309.54" y1="254.76" y2="249.35" y3="255.31"/> <curve x1="313.52" x2="313.88" x3="314.2" y1="256.47" y2="257.45" y3="261.82"/> <curve x1="314.36" x2="307.51" x3="292.14" y1="279.81" y2="298.46" y3="311.64"/> <close/> <move x="2.64" y="261.55"/> <curve x1="0" x2="3.63" x3="7.72" y1="258.53" y2="252.65" y3="255.56"/> <curve x1="36.12" x2="84.27" x3="140.43" y1="278.2" y2="301.95" y3="306.75"/> <curve x1="179.3" x2="220.71" x3="277.91" y1="309.34" y2="307.47" y3="277.98"/> <curve x1="281.66" x2="285.35" x3="286.61" y1="276.08" y2="275.94" y3="278.95"/> <curve x1="287.83" x2="286.47" x3="284.94" y1="283.46" y2="285.84" y3="287.12"/> <curve x1="258.45" x2="221.3" x3="190.92" y1="312.89" y2="328.12" y3="333.43"/> <curve x1="142.59" x2="103.66" x3="64.68" y1="340.65" y2="334.21" y3="311.88"/> <curve x1="40.59" x2="20.08" x3="2.64" y1="298.39" y2="281.48" y3="261.55"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="400.75" name="Android" strokewidth="inherit" w="338.53"> <connections/> <foreground> <path> <move x="152.41" y="321.81"/> <line x="152.41" y="377.33"/> <curve x1="152.41" x2="143.8" x3="126.59" y1="387.92" y2="400.38" y3="400.38"/> <curve x1="114.83" x2="103.35" x3="103.35" y1="400.38" y2="389.98" y3="377.33"/> <line x="103.35" y="321.81"/> <line x="83.44" y="321.81"/> <curve x1="74.62" x2="58.18" x3="58.18" y1="321.81" y2="312.92" y3="294.39"/> <line x="58.18" y="134.85"/> <line x="280.4" y="134.85"/> <line x="280.4" y="295.32"/> <curve x1="280.4" x2="267.06" x3="255.96" y1="310.31" y2="321.81" y3="321.81"/> <line x="235.32" y="321.81"/> <line x="235.32" y="377.33"/> <curve x1="235.32" x2="223.64" x3="209.96" y1="390.13" y2="400.75" y3="400.75"/> <curve x1="198.06" x2="185.92" x3="185.92" y1="400.75" y2="389.68" y3="377.33"/> <line x="185.92" y="321.81"/> <close/> <move x="338.53" y="258.51"/> <curve x1="338.53" x2="327.57" x3="313.83" y1="270.72" y2="282.7" y3="282.7"/> <curve x1="304.28" x2="289.4" x3="289.4" y1="282.7" y2="274.88" y3="258.51"/> <line x="289.4" y="153.59"/> <curve x1="289.4" x2="298.64" x3="313.98" y1="142.93" y2="129.98" y3="129.98"/> <curve x1="328.55" x2="338.53" x3="338.53" y1="129.98" y2="142.33" y3="153.74"/> <close/> <move x="49.29" y="259.47"/> <curve x1="49.29" x2="38.85" x3="23.89" y1="271.51" y2="282.54" y3="282.54"/> <curve x1="13.02" x2="0" x3="0" y1="282.54" y2="273.12" y3="259.47"/> <line x="0" y="153.72"/> <curve x1="0" x2="10.62" x3="25.26" y1="141.82" y2="130.08" y3="130.08"/> <curve x1="40.25" x2="49.29" x3="49.29" y1="130.08" y2="143.29" y3="152.73"/> <close/> <move x="58.3" y="125.65"/> <curve x1="58.14" x2="77.72" x3="114.9" y1="90.8" y2="56.26" y3="36.81"/> <line x="97.44" y="4.22"/> <curve x1="97.17" x2="97.74" x3="99.22" y1="2.84" y2="1.67" y3="0.73"/> <curve x1="101.24" x2="102.5" x3="103.07" y1="0" y2="0.83" y3="1.69"/> <line x="120.93" y="33.99"/> <curve x1="150.54" x2="184.95" x3="217.75" y1="21.42" y2="20.18" y3="34.06"/> <line x="236.14" y="1.41"/> <curve x1="236.81" x2="237.9" x3="239.73" y1="0.67" y2="0.35" y3="0.79"/> <curve x1="241.29" x2="241.53" x3="241.18" y1="2.16" y2="3.43" y3="4.66"/> <line x="223.82" y="36.83"/> <curve x1="266.47" x2="280.98" x3="280.17" y1="59.55" y2="98.51" y3="125.65"/> <close/> <move x="118.32" y="85.79"/> <curve x1="124.6" x2="128.4" x3="128.4" y1="85.79" y2="81.36" y3="76.54"/> <curve x1="128.4" x2="125.17" x3="118.65" y1="72.78" y2="66.84" y3="66.84"/> <curve x1="112.46" x2="109.28" x3="109.28" y1="66.84" y2="71.5" y3="76.1"/> <curve x1="109.57" x2="114.18" x3="118.32" y1="83.05" y2="85.79" y3="85.79"/> <close/> <move x="220.14" y="85.85"/> <curve x1="224.64" x2="229.12" x3="229.12" y1="85.85" y2="82.85" y3="75.98"/> <curve x1="229.12" x2="225.88" x3="219.86" y1="71.59" y2="66.67" y3="66.67"/> <curve x1="213.95" x2="210.66" x3="210.66" y1="66.67" y2="71.58" y3="75.98"/> <curve x1="210.66" x2="215.14" x3="220.14" y1="82.6" y2="85.85" y3="85.85"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="426.14" name="Apache" strokewidth="inherit" w="213.12"> <connections/> <foreground> <fillcolor color="#282662"/> <path> <move x="0" y="426.14"/> <line x="13.68" y="381.96"/> <line x="18.5" y="381.45"/> <line x="6.41" y="419.9"/> <curve x1="5.31" x2="3.58" x3="0" y1="422.65" y2="424.99" y3="426.14"/> <close/> </path> <fill/> <fillcolor color="#7e2a7e"/> <path> <move x="13.68" y="381.96"/> <line x="32.73" y="325.28"/> <curve x1="22.44" x2="13.26" x3="4.12" y1="323.54" y2="327.01" y3="330.66"/> <curve x1="12.6" x2="18.1" x3="27.92" y1="324.63" y2="320.54" y3="318.51"/> <curve x1="20.39" x2="15.86" x3="11.1" y1="316.42" y2="312.25" y3="308.24"/> <curve x1="17.55" x2="24.41" x3="31.21" y1="310.68" y2="312.83" y3="311.71"/> <curve x1="30.13" x2="22.47" x3="13.32" y1="297.5" y2="283.7" y3="270.53"/> <curve x1="20.87" x2="28.69" x3="31.67" y1="275.45" y2="281.37" y3="286.58"/> <curve x1="32.34" x2="34.17" x3="35.99" y1="274.66" y2="264.47" y3="254.27"/> <line x="51.96" y="285.51"/> <curve x1="40.8" x2="29.65" x3="18.5" y1="314.05" y2="348.13" y3="381.45"/> <close/> <move x="53.39" y="342.86"/> <curve x1="49.76" x2="47.13" x3="41.62" y1="336.13" y2="332.11" y3="328.56"/> <line x="55.41" y="288.95"/> <curve x1="59.31" x2="63.45" x3="67.56" y1="288.55" y2="288.62" y3="287.67"/> <curve x1="77.06" x2="86.64" x3="96.43" y1="289.35" y2="289.44" y3="285.42"/> <curve x1="105.63" x2="110.96" x3="115.81" y1="281.72" y2="276.98" y3="272.12"/> <curve x1="111.87" x2="108.12" x3="99.61" y1="279.28" y2="286.4" y3="294.56"/> <curve x1="92.25" x2="85.7" x3="79.37" y1="300.59" y2="303.95" y3="306.63"/> <curve x1="86.66" x2="94.44" x3="100.95" y1="307.04" y2="307.09" y3="298.73"/> <curve x1="96.79" x2="90.5" x3="73.74" y1="307.04" y2="316.48" y3="322.16"/> <curve x1="63.83" x2="54.4" x3="45.23" y1="324.95" y2="325.67" y3="325.24"/> <curve x1="51.89" x2="53.11" x3="53.39" y1="332.1" y2="337.6" y3="342.86"/> <close/> </path> <fill/> <fillcolor color="#c7203e"/> <path> <move x="51.96" y="285.51"/> <line x="35.99" y="254.27"/> <curve x1="41.09" x2="48.42" x3="56.34" y1="230.12" y2="207.96" y3="189.03"/> <curve x1="61.99" x2="67.7" x3="73.56" y1="175.91" y2="163.44" y3="152.18"/> <curve x1="81.63" x2="89.76" x3="100.14" y1="136.96" y2="121.7" y3="105.04"/> <line x="115.98" y="136.32"/> <curve x1="104.01" x2="91.85" x3="79.01" y1="160.75" y2="186.53" y3="217.09"/> <curve x1="70.21" x2="61.17" x3="51.96" y1="238.16" y2="261.11" y3="285.51"/> <close/> <move x="71.3" y="287.08"/> <curve x1="63.8" x2="60" x3="55.41" y1="288.76" y2="288.67" y3="288.95"/> <curve x1="65.7" x2="76.72" x3="88.48" y1="261.09" y2="233.08" y3="204.93"/> <curve x1="98.27" x2="108.13" x3="118.79" y1="182.3" y2="159.75" y3="138.27"/> <line x="160.75" y="133.71"/> <curve x1="168.53" x2="174.84" x3="179.92" y1="132.45" y2="130.04" y3="126.7"/> <curve x1="178.61" x2="175.07" x3="168.15" y1="133.9" y2="143.34" y3="156.15"/> <curve x1="162.91" x2="155.01" x3="144.78" y1="164.83" y2="171.06" y3="175.16"/> <curve x1="150.53" x2="156.68" x3="165.43" y1="174.89" y2="172.85" y3="167.14"/> <curve x1="158.65" x2="148.8" x3="135.43" y1="179.84" y2="191.89" y3="196.05"/> <curve x1="139.76" x2="146.75" x3="152.41" y1="196.2" y2="194.45" y3="191.14"/> <curve x1="144.51" x2="139.38" x3="133.01" y1="213.84" y2="225.52" y3="236.88"/> <curve x1="120.55" x2="108.92" x3="97.48" y1="258.28" y2="268.28" y3="275.68"/> <curve x1="90.96" x2="84.81" x3="71.3" y1="279.57" y2="283.48" y3="287.08"/> <close/> </path> <fill/> <fillcolor color="#e46a2c"/> <path> <move x="115.98" y="136.32"/> <line x="100.14" y="105.04"/> <curve x1="115.69" x2="132.03" x3="149.93" y1="80.12" y2="56.2" y3="34.21"/> <line x="162.11" y="57.05"/> <curve x1="154.93" x2="147.31" x3="139.24" y1="67.43" y2="79.42" y3="93.04"/> <curve x1="130.33" x2="123.17" x3="115.98" y1="108.81" y2="122.55" y3="136.32"/> <close/> <move x="159.43" y="133.87"/> <line x="118.79" y="138.27"/> <curve x1="127.05" x2="134.32" x3="145.09" y1="122.05" y2="106.59" y3="88.44"/> <curve x1="150.46" x2="157.14" x3="163.71" y1="78.6" y2="68.11" y3="57.66"/> <curve x1="179.48" x2="195.24" x3="211.01" y1="56.68" y2="54.72" y3="51.97"/> <curve x1="209.08" x2="205.51" x3="201.38" y1="61.6" y2="71.71" y3="80.28"/> <curve x1="195.82" x2="189.73" x3="183.35" y1="92.35" y2="103.07" y3="113.06"/> <curve x1="177.27" x2="171.89" x3="159.43" y1="122.84" y2="127.52" y3="133.87"/> <close/> </path> <fill/> <fillcolor color="#f69825"/> <path> <move x="162.11" y="57.05"/> <line x="149.93" y="34.21"/> <curve x1="161.26" x2="171.54" x3="179.76" y1="20.6" y2="9.6" y3="3.66"/> <curve x1="184.12" x2="189.04" x3="194.33" y1="0.76" y2="0" y3="2.42"/> <curve x1="203.05" x2="209.35" x3="210.93" y1="7.35" y2="16.06" y3="25.4"/> <curve x1="213.12" x2="212.17" x3="211.01" y1="36.11" y2="44.53" y3="51.97"/> <curve x1="193.74" x2="177.86" x3="163.71" y1="54.89" y2="56.83" y3="57.66"/> <curve x1="171.26" x2="178.55" x3="185.68" y1="45.63" y2="35.86" y3="27.35"/> <curve x1="177.71" x2="169.87" x3="162.11" y1="35.78" y2="45.92" y3="57.05"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="381.07" name="Apple" strokewidth="inherit" w="312.13"> <connections/> <foreground> <path> <move x="159.31" y="86.47"/> <curve x1="157.39" x2="163.24" x3="181.05" y1="68.57" y2="47.67" y3="26.65"/> <curve x1="198.78" x2="216.88" x3="234.43" y1="8.92" y2="2.28" y3="0"/> <curve x1="235.72" x2="228.42" x3="215.28" y1="25.27" y2="43.06" y3="59.1"/> <curve x1="203.3" x2="181.09" x3="159.31" y1="74.71" y2="88.22" y3="86.47"/> <close/> <move x="312.13" y="275.35"/> <curve x1="303.43" x2="278.66" x3="258.92" y1="305.02" y2="344.92" y3="361.86"/> <curve x1="237.5" x2="215.4" x3="196.94" y1="380.66" y2="374.99" y3="366.3"/> <curve x1="177.52" x2="156.52" x3="135.46" y1="357.32" y2="357.26" y3="366.52"/> <curve x1="114.41" x2="97.54" x3="76.85" y1="375.88" y2="381.07" y3="363.61"/> <curve x1="57.58" x2="32.05" x3="22.76" y1="348.29" y2="308.11" y3="281.45"/> <curve x1="4.24" x2="0" x3="22.46" y1="234.07" y2="180.03" y3="139.47"/> <curve x1="40.98" x2="84.73" x3="117.86" y1="104.82" y2="84.76" y3="94.39"/> <curve x1="125.82" x2="137.88" x3="146.87" y1="96.17" y2="100.7" y3="104.52"/> <curve x1="165.09" x2="177.41" x3="193.71" y1="113.81" y2="103.41" y3="98.26"/> <curve x1="218.94" x2="238.02" x3="261.89" y1="88.19" y2="89.1" y3="96.7"/> <curve x1="279.14" x2="293.21" x3="302.45" y1="102.68" y2="114.61" y3="128.09"/> <curve x1="276.52" x2="259.2" x3="262.14" y1="144.04" y2="173.55" y3="206.56"/> <curve x1="266.18" x2="286.26" x3="312.13" y1="241.72" y2="263.9" y3="275.35"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="366.03" name="Apple classic" strokewidth="inherit" w="307.27"> <connections/> <foreground> <fillcolor color="#314097"/> <path> <move x="296.85" y="304.57"/> <curve x1="288.77" x2="276.37" x3="259.03" y1="322.89" y2="338.22" y3="350.15"/> <curve x1="240.65" x2="225.52" x3="214.45" y1="362.69" y2="364.75" y3="364.89"/> <curve x1="204.38" x2="194.69" x3="185.57" y1="364.66" y2="362.12" y3="356.15"/> <curve x1="178.55" x2="174.56" x3="157.29" y1="353.01" y2="350.9" y3="350.99"/> <curve x1="148.01" x2="138.14" x3="126.02" y1="351.2" y2="352.3" y3="359.62"/> <curve x1="115.88" x2="104.71" x3="93.48" y1="364.81" y2="365.54" y3="366.03"/> <curve x1="81.26" x2="67.79" x3="56.63" y1="366.03" y2="360.5" y3="348.72"/> <curve x1="45.74" x2="38.22" x3="30.93" y1="336.46" y2="322.46" y3="304.68"/> <close/> </path> <fill/> <fillcolor color="#d31b5f"/> <path> <move x="296.85" y="304.57"/> <line x="30.93" y="304.68"/> <curve x1="25.62" x2="20.37" x3="15.22" y1="291.09" y2="277.15" y3="262.29"/> <line x="307.26" y="261.84"/> <curve x1="306.31" x2="302.77" x3="296.85" y1="277.91" y2="292.11" y3="304.57"/> <close/> </path> <fill/> <fillcolor color="#ed1a3b"/> <path> <move x="307.26" y="261.84"/> <line x="15.22" y="262.29"/> <curve x1="7.98" x2="2.9" x3="0.85" y1="243.57" y2="225.12" y3="207.07"/> <line x="261.49" y="206.9"/> <curve x1="268.72" x2="287.57" x3="306.78" y1="229.72" y2="246.87" y3="256.2"/> <curve x1="307.27" x2="307.27" x3="307.26" y1="258.68" y2="260.25" y3="261.84"/> <close/> </path> <fill/> <fillcolor color="#f37021"/> <path> <move x="261.49" y="206.9"/> <line x="0.85" y="207.07"/> <curve x1="0" x2="0.32" x3="7.32" y1="190.23" y2="171.71" y3="154.05"/> <line x="265.43" y="153.91"/> <curve x1="259.65" x2="255.03" x3="261.49" y1="168.7" y2="185.57" y3="206.9"/> <close/> </path> <fill/> <fillcolor color="#fff200"/> <path> <move x="265.43" y="153.91"/> <line x="7.32" y="154.05"/> <curve x1="16.15" x2="30.33" x3="49.78" y1="132.53" y2="115.11" y3="101.72"/> <line x="146.15" y="101.56"/> <curve x1="156.74" x2="170.49" x3="183.42" y1="107.24" y2="107.7" y3="101.56"/> <line x="280.82" y="101.47"/> <curve x1="287.51" x2="293.62" x3="297.31" y1="106.87" y2="114.51" y3="119.82"/> <curve x1="283.18" x2="269.56" x3="265.43" y1="127.21" y2="143.32" y3="153.91"/> <close/> </path> <fill/> <fillcolor color="#51b848"/> <path> <move x="156.57" y="96.71"/> <curve x1="157.31" x2="162.19" x3="170.23" y1="74.02" y2="53.76" y3="40.02"/> <curve x1="178.8" x2="202.02" x3="224.4" y1="26.51" y2="7.57" y3="0"/> <curve x1="225.48" x2="220.35" x3="211.22" y1="26" y2="48.49" y3="63.63"/> <curve x1="199.68" x2="178.89" x3="156.57" y1="82.52" y2="94.2" y3="96.71"/> <close/> <move x="146.15" y="101.56"/> <line x="49.78" y="101.72"/> <curve x1="61.56" x2="80.98" x3="99.01" y1="93.34" y2="86.57" y3="86.83"/> <curve x1="115.11" x2="132.14" x3="146.15" y1="86.83" y2="94.35" y3="101.56"/> <close/> <move x="280.82" y="101.47"/> <line x="183.42" y="101.56"/> <curve x1="198.89" x2="212.81" x3="237.2" y1="92.81" y2="84.05" y3="84.07"/> <curve x1="251.83" x2="270.41" x3="280.82" y1="84.07" y2="93.13" y3="101.47"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="49.8" name="App Store" strokewidth="inherit" w="152.96"> <connections/> <foreground> <path> <move x="6.59" y="49.79"/> <curve x1="3.12" x2="0" x3="0" y1="49.79" y2="46.68" y3="43.14"/> <line x="0" y="6.63"/> <curve x1="0" x2="3.13" x3="6.63" y1="3.26" y2="0" y3="0"/> <line x="146.76" y="0"/> <curve x1="150.48" x2="152.94" x3="152.94" y1="0" y2="3.44" y3="6.51"/> <line x="152.96" y="42.94"/> <curve x1="152.96" x2="150.06" x3="146.41" y1="46.61" y2="49.8" y3="49.8"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="18.83" y="14.39"/> <curve x1="18.63" x2="19.22" x3="21.01" y1="12.59" y2="10.49" y3="8.37"/> <curve x1="22.8" x2="24.62" x3="26.38" y1="6.59" y2="5.92" y3="5.69"/> <curve x1="26.51" x2="25.78" x3="24.46" y1="8.24" y2="10.03" y3="11.64"/> <curve x1="23.25" x2="21.02" x3="18.83" y1="13.21" y2="14.57" y3="14.39"/> <close/> <move x="34.2" y="33.39"/> <curve x1="33.33" x2="30.83" x3="28.85" y1="36.38" y2="40.39" y3="42.1"/> <curve x1="26.69" x2="24.47" x3="22.61" y1="43.99" y2="43.42" y3="42.55"/> <curve x1="20.66" x2="18.55" x3="16.43" y1="41.64" y2="41.64" y3="42.57"/> <curve x1="14.31" x2="12.61" x3="10.53" y1="43.51" y2="44.03" y3="42.27"/> <curve x1="8.59" x2="6.02" x3="5.09" y1="40.73" y2="36.69" y3="34.01"/> <curve x1="3.23" x2="2.8" x3="5.06" y1="29.24" y2="23.81" y3="19.73"/> <curve x1="6.92" x2="11.32" x3="14.66" y1="16.24" y2="14.22" y3="15.19"/> <curve x1="15.46" x2="16.67" x3="17.58" y1="15.37" y2="15.82" y3="16.21"/> <curve x1="19.41" x2="20.65" x3="22.29" y1="17.14" y2="16.1" y3="15.58"/> <curve x1="24.82" x2="26.74" x3="29.15" y1="14.57" y2="14.66" y3="15.42"/> <curve x1="30.88" x2="32.3" x3="33.23" y1="16.02" y2="17.22" y3="18.58"/> <curve x1="30.62" x2="28.88" x3="29.17" y1="20.18" y2="23.15" y3="26.47"/> <curve x1="29.58" x2="31.6" x3="34.2" y1="30.01" y2="32.24" y3="33.39"/> <close/> <move x="126.13" y="17.9"/> <line x="126.2" y="7.24"/> <line x="127.87" y="7.19"/> <line x="127.93" y="11.33"/> <curve x1="128.79" x2="129.32" x3="130.42" y1="10.51" y2="10.3" y3="10.3"/> <curve x1="131.53" x2="132.72" x3="132.72" y1="10.3" y2="12.02" y3="13.43"/> <line x="132.69" y="17.88"/> <line x="130.83" y="17.89"/> <line x="130.85" y="13.18"/> <curve x1="130.85" x2="130.32" x3="129.45" y1="12.66" y2="11.83" y3="11.83"/> <curve x1="128.78" x2="127.99" x3="127.99" y1="11.83" y2="12.42" y3="13.07"/> <line x="127.96" y="17.89"/> <close/> <move x="120.46" y="11.86"/> <line x="120.46" y="10.54"/> <line x="121.53" y="10.54"/> <line x="121.53" y="9.23"/> <line x="123.29" y="8.69"/> <line x="123.29" y="10.54"/> <line x="125.01" y="10.54"/> <line x="125.03" y="11.86"/> <line x="123.29" y="11.86"/> <line x="123.29" y="15.76"/> <curve x1="123.34" x2="123.53" x3="123.85" y1="16.23" y2="16.48" y3="16.54"/> <curve x1="124.23" x2="124.57" x3="124.92" y1="16.58" y2="16.55" y3="16.48"/> <line x="124.92" y="17.85"/> <curve x1="124.08" x2="123.25" x3="122.64" y1="18.02" y2="18.13" y3="17.79"/> <curve x1="122.21" x2="121.53" x3="121.53" y1="17.53" y2="16.85" y3="15.78"/> <line x="121.53" y="11.86"/> <close/> <move x="109.57" y="17.88"/> <line x="109.57" y="10.56"/> <line x="111.16" y="10.56"/> <line x="111.17" y="11.48"/> <curve x1="111.8" x2="112.63" x3="113.52" y1="10.6" y2="10.34" y3="10.3"/> <curve x1="114.63" x2="116.01" x3="116.01" y1="10.28" y2="11.53" y3="12.61"/> <line x="116.01" y="17.88"/> <line x="114.26" y="17.88"/> <line x="114.26" y="13.32"/> <curve x1="114.24" x2="114.03" x3="112.99" y1="12.86" y2="11.8" y3="11.8"/> <curve x1="111.78" x2="111.4" x3="111.37" y1="11.84" y2="12.82" y3="13.34"/> <line x="111.37" y="17.88"/> <close/> <move x="104.82" y="16.69"/> <curve x1="105.67" x2="106.62" x3="106.62" y1="16.69" y2="15.55" y3="14.19"/> <curve x1="106.62" x2="105.9" x3="104.7" y1="12.86" y2="11.72" y3="11.72"/> <curve x1="103.96" x2="103" x3="103" y1="11.72" y2="12.64" y3="14.1"/> <curve x1="103" x2="104.02" x3="104.82" y1="15.87" y2="16.69" y3="16.69"/> <close/> <move x="104.59" y="18.04"/> <curve x1="103.21" x2="102.19" x3="101.52" y1="18.03" y2="17.44" y3="15.81"/> <curve x1="101" x2="101.27" x3="101.85" y1="14.39" y2="13.02" y3="12.01"/> <curve x1="102.57" x2="103.6" x3="104.82" y1="10.98" y2="10.32" y3="10.31"/> <curve x1="106.41" x2="107.34" x3="107.92" y1="10.31" y2="11" y3="12.05"/> <curve x1="108.78" x2="108.52" x3="107.84" y1="13.76" y2="15.24" y3="16.37"/> <curve x1="106.92" x2="106.14" x3="104.59" y1="17.77" y2="18.04" y3="18.04"/> <close/> <move x="91.98" y="13.41"/> <line x="95.2" y="13.41"/> <curve x1="95.26" x2="94.49" x3="93.8" y1="12.51" y2="11.62" y3="11.65"/> <curve x1="92.69" x2="92.14" x3="91.98" y1="11.67" y2="12.41" y3="13.41"/> <close/> <move x="96.49" y="17.53"/> <curve x1="95.2" x2="94.14" x3="92.81" y1="18.08" y2="18.14" y3="17.93"/> <curve x1="91.72" x2="90.85" x3="90.33" y1="17.72" y2="16.98" y3="15.36"/> <curve x1="90" x2="90.28" x3="90.93" y1="14.08" y2="12.67" y3="11.79"/> <curve x1="91.95" x2="92.75" x3="93.82" y1="10.63" y2="10.33" y3="10.26"/> <curve x1="95.75" x2="97.11" x3="96.97" y1="10.2" y2="11.96" y3="14.67"/> <line x="92.03" y="14.67"/> <curve x1="92.05" x2="92.4" x3="93.65" y1="15.62" y2="16.35" y3="16.6"/> <curve x1="94.35" x2="95.14" x3="96.22" y1="16.69" y2="16.65" y3="16.25"/> <close/> <move x="80.08" y="15.14"/> <curve x1="80.24" x2="81.22" x3="81.89" y1="16.27" y2="16.66" y3="16.64"/> <curve x1="82.62" x2="83.07" x3="83.36" y1="16.57" y2="16.2" y3="15.57"/> <curve x1="83.61" x2="83.59" x3="83.53" y1="14.94" y2="13.91" y3="13.41"/> <curve x1="83.44" x2="82.8" x3="81.97" y1="12.78" y2="11.81" y3="11.8"/> <curve x1="81.05" x2="80.42" x3="80.13" y1="11.8" y2="12.34" y3="13.02"/> <close/> <move x="78.25" y="17.99"/> <line x="78.25" y="7.19"/> <line x="80.08" y="7.19"/> <line x="80.08" y="11.46"/> <curve x1="80.41" x2="81.02" x3="82.38" y1="10.89" y2="10.44" y3="10.3"/> <curve x1="83.22" x2="84.45" x3="84.9" y1="10.23" y2="10.97" y3="12"/> <curve x1="85.69" x2="85.35" x3="84.93" y1="13.86" y2="15.21" y3="16.23"/> <curve x1="84.46" x2="83.32" x3="82.69" y1="17.24" y2="17.88" y3="17.99"/> <curve x1="81.2" x2="80.33" x3="79.8" y1="18.16" y2="17.79" y3="16.69"/> <line x="79.83" y="17.99"/> <close/> <move x="67.39" y="17.99"/> <line x="67.39" y="7.19"/> <line x="69.18" y="7.19"/> <line x="69.18" y="17.99"/> <close/> <move x="64.67" y="9.52"/> <curve x1="64.12" x2="63.59" x3="63.59" y1="9.52" y2="9.08" y3="8.42"/> <curve x1="63.59" x2="64.06" x3="64.67" y1="7.88" y2="7.35" y3="7.35"/> <curve x1="65.22" x2="65.78" x3="65.78" y1="7.35" y2="7.87" y3="8.42"/> <curve x1="65.78" x2="65.23" x3="64.67" y1="9.1" y2="9.52" y3="9.52"/> <close/> <move x="63.74" y="17.99"/> <line x="63.74" y="10.5"/> <line x="65.61" y="10.52"/> <line x="65.61" y="17.99"/> <close/> <move x="60.19" y="14.35"/> <curve x1="59.42" x2="58.75" x3="58.31" y1="14.33" y2="14.36" y3="14.64"/> <curve x1="58.08" x2="57.79" x3="57.79" y1="14.78" y2="15.18" y3="15.67"/> <curve x1="57.77" x2="58.45" x3="58.97" y1="16.47" y2="16.81" y3="16.71"/> <curve x1="59.46" x2="59.9" x3="60.24" y1="16.61" y2="16.3" y3="15.65"/> <close/> <move x="60.47" y="17.99"/> <line x="60.42" y="17.05"/> <curve x1="59.87" x2="59.58" x3="58.33" y1="17.68" y2="17.96" y3="17.99"/> <curve x1="56.99" x2="56.34" x3="56.05" y1="17.94" y2="17.49" y3="16.35"/> <curve x1="55.89" x2="56.04" x3="57.12" y1="15.41" y2="14.51" y3="13.76"/> <curve x1="57.99" x2="58.33" x3="60.28" y1="13.2" y2="13.1" y3="12.99"/> <curve x1="60.2" x2="60.09" x3="59.46" y1="12.42" y2="12.03" y3="11.75"/> <curve x1="58.77" x2="57.31" x3="56.89" y1="11.56" y2="11.91" y3="12.23"/> <line x="56.41" y="11.05"/> <curve x1="57.15" x2="58.48" x3="59.84" y1="10.56" y2="10.16" y3="10.32"/> <curve x1="61.1" x2="61.98" x3="62" y1="10.48" y2="11.83" y3="13.04"/> <line x="62.09" y="17.99"/> <close/> <move x="51.38" y="17.99"/> <line x="48.62" y="10.56"/> <line x="50.55" y="10.56"/> <line x="52.19" y="15.87"/> <line x="53.94" y="10.56"/> <line x="55.72" y="10.56"/> <line x="53.05" y="17.99"/> <close/> <move x="43.52" y="13.51"/> <line x="46.05" y="13.51"/> <line x="44.8" y="9.51"/> <close/> <move x="40.37" y="17.99"/> <line x="43.74" y="7.69"/> <line x="45.87" y="7.72"/> <line x="49.25" y="17.99"/> <line x="47.26" y="17.99"/> <line x="46.34" y="15.01"/> <line x="43.21" y="15.01"/> <line x="42.38" y="17.99"/> <close/> <move x="74.7" y="14.37"/> <curve x1="73.93" x2="73.26" x3="72.82" y1="14.35" y2="14.38" y3="14.66"/> <curve x1="72.59" x2="72.3" x3="72.3" y1="14.8" y2="15.2" y3="15.69"/> <curve x1="72.28" x2="72.96" x3="73.48" y1="16.49" y2="16.83" y3="16.73"/> <curve x1="73.97" x2="74.4" x3="74.75" y1="16.63" y2="16.33" y3="15.67"/> <close/> <move x="74.98" y="17.99"/> <line x="74.93" y="17.07"/> <curve x1="74.38" x2="74.09" x3="72.84" y1="17.7" y2="17.96" y3="17.99"/> <curve x1="71.5" x2="70.84" x3="70.56" y1="17.94" y2="17.51" y3="16.37"/> <curve x1="70.4" x2="70.55" x3="71.63" y1="15.43" y2="14.53" y3="13.78"/> <curve x1="72.5" x2="72.83" x3="74.79" y1="13.22" y2="13.12" y3="13.02"/> <curve x1="74.71" x2="74.6" x3="73.97" y1="12.44" y2="12.05" y3="11.77"/> <curve x1="73.28" x2="71.82" x3="71.4" y1="11.58" y2="11.94" y3="12.25"/> <line x="70.92" y="11.07"/> <curve x1="71.66" x2="72.99" x3="74.35" y1="10.58" y2="10.19" y3="10.34"/> <curve x1="75.6" x2="76.54" x3="76.55" y1="10.5" y2="11.85" y3="13.06"/> <line x="76.55" y="17.99"/> <close/> <move x="86.88" y="17.99"/> <line x="86.88" y="7.19"/> <line x="88.67" y="7.19"/> <line x="88.67" y="17.99"/> <close/> <move x="135.6" y="13.44"/> <line x="138.82" y="13.45"/> <curve x1="138.88" x2="138.11" x3="137.41" y1="12.55" y2="11.66" y3="11.69"/> <curve x1="136.3" x2="135.76" x3="135.6" y1="11.71" y2="12.44" y3="13.44"/> <close/> <move x="140.11" y="17.57"/> <curve x1="138.82" x2="137.76" x3="136.42" y1="18.12" y2="18.18" y3="17.97"/> <curve x1="135.34" x2="134.46" x3="133.95" y1="17.76" y2="17.02" y3="15.39"/> <curve x1="133.61" x2="133.9" x3="134.54" y1="14.12" y2="12.71" y3="11.83"/> <curve x1="135.57" x2="136.37" x3="137.44" y1="10.66" y2="10.36" y3="10.3"/> <curve x1="139.36" x2="140.73" x3="140.58" y1="10.24" y2="12.02" y3="14.73"/> <line x="135.65" y="14.69"/> <curve x1="135.67" x2="136.02" x3="137.27" y1="15.63" y2="16.39" y3="16.64"/> <curve x1="137.96" x2="138.76" x3="139.84" y1="16.73" y2="16.69" y3="16.29"/> <close/> <move x="138.92" y="32.28"/> <curve x1="138.85" x2="137.73" x3="136.22" y1="30.24" y2="29.04" y3="28.96"/> <curve x1="134.23" x2="133.37" x3="132.97" y1="29.02" y2="30.46" y3="32.28"/> <close/> <move x="141.07" y="39.64"/> <curve x1="139.3" x2="137.21" x3="134.67" y1="40.48" y2="40.77" y3="40.27"/> <curve x1="132.91" x2="130.51" x3="130.17" y1="39.8" y2="38.67" y3="34.51"/> <curve x1="130.1" x2="131.96" x3="134.08" y1="29.88" y2="28.32" y3="27.27"/> <curve x1="136" x2="138.39" x3="140.26" y1="26.52" y2="26.56" y3="28.58"/> <curve x1="141.45" x2="141.98" x3="141.7" y1="29.97" y2="31.9" y3="34.51"/> <line x="132.97" y="34.45"/> <curve x1="133.12" x2="134.1" x3="136.24" y1="36.48" y2="37.8" y3="38.16"/> <curve x1="138.27" x2="139.45" x3="140.52" y1="38.25" y2="37.95" y3="37.6"/> <close/> <move x="122.32" y="40.31"/> <line x="122.32" y="27.2"/> <line x="124.87" y="27.2"/> <line x="124.97" y="29.6"/> <curve x1="126.13" x2="127.78" x3="129.33" y1="26.98" y2="26.79" y3="27"/> <line x="129.32" y="29.81"/> <curve x1="127.37" x2="125.52" x3="125.36" y1="29.54" y2="30.36" y3="32.89"/> <line x="125.36" y="40.29"/> <close/> <move x="114.22" y="38.29"/> <curve x1="115.88" x2="117.4" x3="117.51" y1="38.29" y2="36.79" y3="33.59"/> <curve x1="117.51" x2="115.64" x3="114.08" y1="30.27" y2="29.12" y3="29.12"/> <curve x1="112.73" x2="110.91" x3="110.91" y1="29.12" y2="30.65" y3="33.57"/> <curve x1="110.96" x2="112.92" x3="114.22" y1="37.25" y2="38.29" y3="38.29"/> <close/> <move x="114.22" y="40.56"/> <curve x1="112.48" x2="109.95" x3="108.32" y1="40.56" y2="40.27" y3="36.62"/> <curve x1="107.58" x2="107.61" x3="108.92" y1="34.7" y2="32.14" y3="29.76"/> <curve x1="110.25" x2="112.13" x3="114.4" y1="27.63" y2="26.94" y3="26.92"/> <curve x1="116.99" x2="118.74" x3="119.8" y1="26.94" y2="28.06" y3="30.08"/> <curve x1="121.28" x2="120.73" x3="119.63" y1="32.73" y2="35.95" y3="37.62"/> <curve x1="118.41" x2="116.66" x3="114.22" y1="39.49" y2="40.56" y3="40.56"/> <close/> <move x="99.11" y="29.45"/> <line x="99.11" y="27.15"/> <line x="101.05" y="27.15"/> <line x="101.05" y="24.86"/> <line x="103.93" y="23.89"/> <line x="103.93" y="27.15"/> <line x="107.18" y="27.15"/> <line x="107.18" y="29.45"/> <line x="103.93" y="29.45"/> <line x="103.93" y="36.13"/> <curve x1="103.98" x2="104.4" x3="105.05" y1="37.28" y2="37.83" y3="37.97"/> <curve x1="105.53" x2="106.02" x3="106.95" y1="38.05" y2="38.12" y3="37.85"/> <line x="106.97" y="40.11"/> <curve x1="105.86" x2="104.34" x3="102.7" y1="40.61" y2="40.6" y3="40.07"/> <curve x1="101.8" x2="101.05" x3="101.05" y1="39.78" y2="38.42" y3="36.42"/> <line x="101.05" y="29.45"/> <close/> <move x="87.3" y="39.3"/> <line x="87.99" y="36.88"/> <curve x1="89.56" x2="91.73" x3="93.2" y1="37.82" y2="38.12" y3="37.93"/> <curve x1="94.41" x2="95.21" x3="95.56" y1="37.58" y2="37.17" y3="35.83"/> <curve x1="95.75" x2="95.26" x3="93.92" y1="34.7" y2="33.71" y3="32.9"/> <curve x1="92.22" x2="90.54" x3="89.26" y1="31.99" y2="31.69" y3="30.46"/> <curve x1="88.08" x2="87.33" x3="87.74" y1="29.33" y2="28.23" y3="25.81"/> <curve x1="88.3" x2="90.12" x3="91.75" y1="23.45" y2="22.61" y3="22.1"/> <curve x1="94.06" x2="96.3" x3="97.91" y1="21.49" y2="22.08" y3="22.73"/> <line x="97.16" y="25.23"/> <curve x1="95.73" x2="94.28" x3="92.81" y1="24.54" y2="24.26" y3="24.48"/> <curve x1="91.8" x2="90.87" x3="90.62" y1="24.69" y2="25.05" y3="26.57"/> <curve x1="90.59" x2="91.52" x3="92.49" y1="28.06" y2="28.61" y3="29.11"/> <curve x1="94.22" x2="95.11" x3="96.85" y1="30.02" y2="29.89" y3="31.43"/> <curve x1="98.64" x2="98.83" x3="98.32" y1="33.01" y2="34.87" y3="36.84"/> <curve x1="97.7" x2="96.35" x3="94.07" y1="38.65" y2="39.85" y3="40.3"/> <curve x1="90.71" x2="88.67" x3="87.3" y1="40.87" y2="40.36" y3="39.3"/> <close/> <move x="58.53" y="35.07"/> <curve x1="58.74" x2="59.89" x3="61.81" y1="37.13" y2="38.09" y3="38.19"/> <curve x1="63.02" x2="63.94" x3="64.42" y1="38.14" y2="37.37" y3="36.36"/> <curve x1="65" x2="65.17" x3="64.75" y1="34.88" y2="33.58" y3="31.93"/> <curve x1="64.26" x2="63.21" x3="61.75" y1="30.47" y2="29.4" y3="29.32"/> <curve x1="60.37" x2="58.75" x3="58.53" y1="29.34" y2="30.41" y3="32.54"/> <close/> <move x="55.49" y="45.51"/> <line x="55.49" y="27.15"/> <line x="58.13" y="27.15"/> <line x="58.23" y="29.29"/> <curve x1="59.34" x2="60.68" x3="62.6" y1="27.5" y2="27" y3="26.89"/> <curve x1="65.04" x2="66.56" x3="67.43" y1="26.87" y2="28.49" y3="30.3"/> <curve x1="68.37" x2="68.15" x3="67.64" y1="32.55" y2="34.76" y3="36.39"/> <curve x1="66.91" x2="65.61" x3="63.56" y1="38.52" y2="39.89" y3="40.41"/> <curve x1="61.34" x2="59.52" x3="58.53" y1="40.88" y2="40.37" y3="38.8"/> <line x="58.53" y="45.54"/> <close/> <move x="43.83" y="32.61"/> <line x="48.52" y="32.61"/> <line x="46.11" y="24.89"/> <close/> <move x="38.55" y="40.32"/> <line x="44.39" y="22.16"/> <line x="48.06" y="22.15"/> <line x="53.97" y="40.32"/> <line x="50.72" y="40.32"/> <line x="49.03" y="35.03"/> <line x="43.29" y="35.03"/> <line x="41.69" y="40.32"/> <close/> <move x="72.79" y="35.07"/> <curve x1="73" x2="74.15" x3="76.07" y1="37.13" y2="38.09" y3="38.19"/> <curve x1="77.28" x2="78.2" x3="78.68" y1="38.14" y2="37.37" y3="36.36"/> <curve x1="79.26" x2="79.43" x3="79.01" y1="34.88" y2="33.58" y3="31.93"/> <curve x1="78.52" x2="77.47" x3="76.01" y1="30.47" y2="29.4" y3="29.32"/> <curve x1="74.63" x2="73.01" x3="72.79" y1="29.34" y2="30.41" y3="32.54"/> <close/> <move x="69.75" y="45.51"/> <line x="69.75" y="27.15"/> <line x="72.39" y="27.15"/> <line x="72.49" y="29.29"/> <curve x1="73.6" x2="74.94" x3="76.86" y1="27.5" y2="27" y3="26.89"/> <curve x1="79.3" x2="80.82" x3="81.69" y1="26.87" y2="28.49" y3="30.3"/> <curve x1="82.63" x2="82.41" x3="81.9" y1="32.55" y2="34.76" y3="36.39"/> <curve x1="81.17" x2="79.87" x3="77.82" y1="38.52" y2="39.89" y3="40.41"/> <curve x1="75.6" x2="73.78" x3="72.79" y1="40.88" y2="40.37" y3="38.8"/> <line x="72.79" y="45.54"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="49.8" name="App Store iPhone" strokewidth="inherit" w="152.96"> <connections/> <foreground> <path> <move x="6.59" y="49.79"/> <curve x1="3.12" x2="0" x3="0" y1="49.79" y2="46.68" y3="43.14"/> <line x="0" y="6.63"/> <curve x1="0" x2="3.13" x3="6.63" y1="3.26" y2="0" y3="0"/> <line x="146.76" y="0"/> <curve x1="150.48" x2="152.94" x3="152.94" y1="0" y2="3.44" y3="6.51"/> <line x="152.96" y="42.94"/> <curve x1="152.96" x2="150.06" x3="146.41" y1="46.61" y2="49.8" y3="49.8"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="141.6" y="15.39"/> <curve x1="140.67" x2="139.91" x3="138.96" y1="15.79" y2="15.83" y3="15.68"/> <curve x1="138.18" x2="137.55" x3="137.18" y1="15.53" y2="15" y3="13.84"/> <curve x1="136.94" x2="137.15" x3="137.61" y1="12.92" y2="11.91" y3="11.28"/> <curve x1="138.34" x2="138.92" x3="139.69" y1="10.45" y2="10.23" y3="10.19"/> <curve x1="141.06" x2="142.05" x3="141.94" y1="10.14" y2="11.41" y3="13.35"/> <line x="138.4" y="13.35"/> <curve x1="138.41" x2="138.67" x3="139.56" y1="14.02" y2="14.55" y3="14.73"/> <curve x1="140.06" x2="140.63" x3="141.41" y1="14.79" y2="14.77" y3="14.48"/> <close/> <move x="138.37" y="12.44"/> <line x="140.67" y="12.44"/> <curve x1="140.71" x2="140.17" x3="139.67" y1="11.8" y2="11.16" y3="11.18"/> <curve x1="138.87" x2="138.48" x3="138.37" y1="11.2" y2="11.73" y3="12.44"/> <close/> <move x="128.64" y="15.72"/> <curve x1="127.65" x2="126.92" x3="126.44" y1="15.71" y2="15.29" y3="14.12"/> <curve x1="126.07" x2="126.26" x3="126.68" y1="13.1" y2="12.12" y3="11.39"/> <curve x1="127.19" x2="127.93" x3="128.8" y1="10.65" y2="10.19" y3="10.18"/> <curve x1="129.95" x2="130.61" x3="131.03" y1="10.18" y2="10.68" y3="11.42"/> <curve x1="131.64" x2="131.45" x3="130.97" y1="12.65" y2="13.71" y3="14.52"/> <curve x1="130.31" x2="129.75" x3="128.64" y1="15.52" y2="15.72" y3="15.72"/> <close/> <move x="128.8" y="14.75"/> <curve x1="129.42" x2="130.1" x3="130.1" y1="14.75" y2="13.93" y3="12.96"/> <curve x1="130.1" x2="129.58" x3="128.72" y1="12.01" y2="11.19" y3="11.19"/> <curve x1="128.19" x2="127.5" x3="127.5" y1="11.19" y2="11.85" y3="12.9"/> <curve x1="127.5" x2="128.23" x3="128.8" y1="14.16" y2="14.75" y3="14.75"/> <close/> <move x="131.99" y="15.63"/> <line x="131.99" y="10.39"/> <line x="133.13" y="10.39"/> <line x="133.13" y="11.05"/> <curve x1="133.59" x2="134.18" x3="134.82" y1="10.42" y2="10.23" y3="10.2"/> <curve x1="135.62" x2="136.6" x3="136.6" y1="10.19" y2="11.08" y3="11.86"/> <line x="136.6" y="15.63"/> <line x="135.35" y="15.63"/> <line x="135.35" y="12.36"/> <curve x1="135.34" x2="135.18" x3="134.44" y1="12.04" y2="11.27" y3="11.27"/> <curve x1="133.57" x2="133.3" x3="133.28" y1="11.31" y2="12.01" y3="12.38"/> <line x="133.28" y="15.63"/> <close/> <move x="120.79" y="15.63"/> <line x="120.79" y="7.98"/> <line x="122.06" y="7.98"/> <line x="122.06" y="10.93"/> <curve x1="122.68" x2="123.06" x3="123.84" y1="10.35" y2="10.19" y3="10.19"/> <curve x1="124.64" x2="125.48" x3="125.48" y1="10.19" y2="11.43" y3="12.44"/> <line x="125.48" y="15.63"/> <line x="124.15" y="15.63"/> <line x="124.15" y="12.27"/> <curve x1="124.15" x2="123.78" x3="123.15" y1="11.89" y2="11.29" y3="11.29"/> <curve x1="122.67" x2="122.06" x3="122.06" y1="11.29" y2="11.72" y3="12.19"/> <line x="122.06" y="15.63"/> <close/> <move x="112.6" y="15.63"/> <line x="112.6" y="10.33"/> <line x="113.94" y="10.33"/> <line x="113.94" y="15.63"/> <close/> <move x="113.27" y="9.62"/> <curve x1="112.88" x2="112.5" x3="112.5" y1="9.62" y2="9.31" y3="8.83"/> <curve x1="112.5" x2="112.83" x3="113.27" y1="8.45" y2="8.07" y3="8.07"/> <curve x1="113.67" x2="114.06" x3="114.06" y1="8.07" y2="8.44" y3="8.83"/> <curve x1="114.06" x2="113.67" x3="113.27" y1="9.32" y2="9.62" y3="9.62"/> <close/> <move x="108.88" y="15.41"/> <curve x1="107.95" x2="107.19" x3="106.24" y1="15.8" y2="15.85" y3="15.69"/> <curve x1="105.46" x2="104.83" x3="104.47" y1="15.54" y2="15.01" y3="13.85"/> <curve x1="104.22" x2="104.43" x3="104.89" y1="12.93" y2="11.92" y3="11.3"/> <curve x1="105.62" x2="106.2" x3="106.97" y1="10.46" y2="10.24" y3="10.2"/> <curve x1="108.34" x2="109.33" x3="109.22" y1="10.16" y2="11.43" y3="13.37"/> <line x="105.68" y="13.35"/> <curve x1="105.7" x2="105.95" x3="106.84" y1="14.02" y2="14.56" y3="14.74"/> <curve x1="107.34" x2="107.91" x3="108.69" y1="14.81" y2="14.78" y3="14.49"/> <close/> <move x="105.65" y="12.45"/> <line x="107.95" y="12.46"/> <curve x1="108" x2="107.45" x3="106.95" y1="11.81" y2="11.17" y3="11.2"/> <curve x1="106.15" x2="105.76" x3="105.65" y1="11.21" y2="11.74" y3="12.45"/> <close/> <move x="70.74" y="15.71"/> <line x="70.74" y="7.97"/> <line x="72.02" y="7.97"/> <line x="72.02" y="15.71"/> <close/> <move x="62.21" y="15.71"/> <line x="62.17" y="15.05"/> <curve x1="61.78" x2="61.57" x3="60.67" y1="15.5" y2="15.69" y3="15.71"/> <curve x1="59.71" x2="59.24" x3="59.04" y1="15.68" y2="15.37" y3="14.55"/> <curve x1="58.93" x2="59.03" x3="59.81" y1="13.87" y2="13.23" y3="12.7"/> <curve x1="60.43" x2="60.67" x3="62.07" y1="12.29" y2="12.22" y3="12.15"/> <curve x1="62.02" x2="61.94" x3="61.49" y1="11.74" y2="11.45" y3="11.25"/> <curve x1="60.99" x2="59.94" x3="59.64" y1="11.12" y2="11.37" y3="11.6"/> <line x="59.3" y="10.75"/> <curve x1="59.83" x2="60.78" x3="61.76" y1="10.4" y2="10.12" y3="10.23"/> <curve x1="62.66" x2="63.32" x3="63.33" y1="10.34" y2="11.31" y3="12.18"/> <line x="63.33" y="15.71"/> <close/> <move x="62.01" y="13.12"/> <curve x1="61.46" x2="60.97" x3="60.66" y1="13.1" y2="13.12" y3="13.32"/> <curve x1="60.49" x2="60.29" x3="60.29" y1="13.42" y2="13.71" y3="14.06"/> <curve x1="60.28" x2="60.76" x3="61.13" y1="14.63" y2="14.88" y3="14.81"/> <curve x1="61.48" x2="61.8" x3="62.04" y1="14.73" y2="14.52" y3="14.05"/> <close/> <move x="69.26" y="44.62"/> <line x="69.26" y="25.84"/> <line x="71.95" y="25.84"/> <line x="72.05" y="28.03"/> <curve x1="73.19" x2="74.57" x3="76.53" y1="26.2" y2="25.69" y3="25.57"/> <curve x1="79.02" x2="80.58" x3="81.46" y1="25.56" y2="27.21" y3="29.06"/> <curve x1="82.42" x2="82.21" x3="81.68" y1="31.36" y2="33.62" y3="35.29"/> <curve x1="80.93" x2="79.6" x3="77.51" y1="37.47" y2="38.87" y3="39.4"/> <curve x1="75.24" x2="73.37" x3="72.37" y1="39.88" y2="39.36" y3="37.76"/> <line x="72.37" y="44.65"/> <close/> <move x="72.37" y="33.94"/> <curve x1="72.58" x2="73.75" x3="75.72" y1="36.05" y2="37.03" y3="37.13"/> <curve x1="76.96" x2="77.89" x3="78.39" y1="37.08" y2="36.3" y3="35.26"/> <curve x1="78.98" x2="79.15" x3="78.73" y1="33.75" y2="32.42" y3="30.73"/> <curve x1="78.22" x2="77.15" x3="75.66" y1="29.23" y2="28.14" y3="28.06"/> <curve x1="74.25" x2="72.59" x3="72.37" y1="28.08" y2="29.17" y3="31.36"/> <close/> <move x="14.14" y="41.58"/> <curve x1="13.05" x2="11.16" x3="11.16" y1="41.58" y2="40.15" y3="38.45"/> <line x="11.16" y="11.23"/> <curve x1="11.16" x2="13.01" x3="13.98" y1="9.82" y2="8.36" y3="8.36"/> <line x="26.26" y="8.36"/> <curve x1="27.88" x2="29.23" x3="29.23" y1="8.36" y2="10.27" y3="11.32"/> <line x="29.23" y="38.37"/> <curve x1="29.23" x2="27.54" x3="25.92" y1="40.11" y2="41.58" y3="41.58"/> <close/> <move x="20.22" y="39.44"/> <curve x1="21.12" x2="21.92" x3="21.92" y1="39.43" y2="38.62" y3="37.72"/> <curve x1="21.92" x2="21.18" x3="20.22" y1="36.79" y2="35.96" y3="35.96"/> <curve x1="19.26" x2="18.42" x3="18.42" y1="35.96" y2="36.8" y3="37.72"/> <curve x1="18.42" x2="19.48" x3="20.22" y1="38.74" y2="39.44" y3="39.44"/> <close/> <move x="13.43" y="34.94"/> <line x="26.99" y="34.94"/> <line x="26.99" y="14.66"/> <line x="13.43" y="14.66"/> <close/> <move x="37.34" y="39.31"/> <line x="43.32" y="20.74"/> <line x="47.07" y="20.72"/> <line x="53.11" y="39.31"/> <line x="49.79" y="39.31"/> <line x="48.06" y="33.9"/> <line x="42.19" y="33.9"/> <line x="40.55" y="39.31"/> <close/> <move x="42.74" y="31.43"/> <line x="47.54" y="31.43"/> <line x="45.08" y="23.53"/> <close/> <move x="54.67" y="44.62"/> <line x="54.67" y="25.84"/> <line x="57.37" y="25.84"/> <line x="57.47" y="28.03"/> <curve x1="58.61" x2="59.98" x3="61.94" y1="26.2" y2="25.69" y3="25.57"/> <curve x1="64.43" x2="65.99" x3="66.88" y1="25.56" y2="27.21" y3="29.06"/> <curve x1="67.84" x2="67.62" x3="67.1" y1="31.36" y2="33.62" y3="35.29"/> <curve x1="66.34" x2="65.02" x3="62.92" y1="37.47" y2="38.87" y3="39.4"/> <curve x1="60.65" x2="58.79" x3="57.78" y1="39.88" y2="39.36" y3="37.76"/> <line x="57.78" y="44.65"/> <close/> <move x="57.78" y="33.94"/> <curve x1="57.99" x2="59.17" x3="61.13" y1="36.05" y2="37.03" y3="37.13"/> <curve x1="62.37" x2="63.31" x3="63.81" y1="37.08" y2="36.3" y3="35.26"/> <curve x1="64.4" x2="64.57" x3="64.14" y1="33.75" y2="32.42" y3="30.73"/> <curve x1="63.64" x2="62.56" x3="61.07" y1="29.23" y2="28.14" y3="28.06"/> <curve x1="59.66" x2="58" x3="57.78" y1="28.08" y2="29.17" y3="31.36"/> <close/> <move x="87.2" y="38.26"/> <line x="87.91" y="35.79"/> <curve x1="89.51" x2="91.73" x3="93.24" y1="36.76" y2="37.07" y3="36.87"/> <curve x1="94.47" x2="95.29" x3="95.65" y1="36.51" y2="36.09" y3="34.72"/> <curve x1="95.84" x2="95.35" x3="93.97" y1="33.57" y2="32.55" y3="31.72"/> <curve x1="92.24" x2="90.52" x3="89.21" y1="30.79" y2="30.49" y3="29.22"/> <curve x1="88" x2="87.23" x3="87.65" y1="28.07" y2="26.95" y3="24.47"/> <curve x1="88.23" x2="90.09" x3="91.76" y1="22.05" y2="21.2" y3="20.68"/> <curve x1="94.12" x2="96.41" x3="98.06" y1="20.05" y2="20.65" y3="21.32"/> <line x="97.29" y="23.88"/> <curve x1="95.83" x2="94.34" x3="92.84" y1="23.17" y2="22.88" y3="23.11"/> <curve x1="91.8" x2="90.85" x3="90.6" y1="23.33" y2="23.69" y3="25.25"/> <curve x1="90.57" x2="91.52" x3="92.51" y1="26.78" y2="27.34" y3="27.85"/> <curve x1="94.28" x2="95.19" x3="96.97" y1="28.77" y2="28.65" y3="30.22"/> <curve x1="98.8" x2="98.99" x3="98.48" y1="31.84" y2="33.74" y3="35.75"/> <curve x1="97.84" x2="96.46" x3="94.13" y1="37.6" y2="38.84" y3="39.29"/> <curve x1="90.7" x2="88.6" x3="87.2" y1="39.87" y2="39.35" y3="38.26"/> <close/> <move x="99.28" y="28.19"/> <line x="99.28" y="25.84"/> <line x="101.26" y="25.84"/> <line x="101.26" y="23.5"/> <line x="104.21" y="22.5"/> <line x="104.21" y="25.84"/> <line x="107.53" y="25.84"/> <line x="107.53" y="28.19"/> <line x="104.21" y="28.19"/> <line x="104.21" y="35.03"/> <curve x1="104.26" x2="104.69" x3="105.36" y1="36.2" y2="36.77" y3="36.91"/> <curve x1="105.85" x2="106.35" x3="107.3" y1="36.99" y2="37.06" y3="36.79"/> <line x="107.32" y="39.09"/> <curve x1="106.18" x2="104.63" x3="102.96" y1="39.61" y2="39.6" y3="39.06"/> <curve x1="102.03" x2="101.26" x3="101.26" y1="38.76" y2="37.37" y3="35.32"/> <line x="101.26" y="28.19"/> <close/> <move x="114.73" y="39.56"/> <curve x1="112.96" x2="110.37" x3="108.71" y1="39.56" y2="39.26" y3="35.53"/> <curve x1="107.94" x2="107.98" x3="109.31" y1="33.57" y2="30.94" y3="28.51"/> <curve x1="110.67" x2="112.6" x3="114.92" y1="26.33" y2="25.63" y3="25.6"/> <curve x1="117.57" x2="119.36" x3="120.45" y1="25.63" y2="26.78" y3="28.83"/> <curve x1="121.95" x2="121.39" x3="120.27" y1="31.55" y2="34.84" y3="36.55"/> <curve x1="119.02" x2="117.24" x3="114.73" y1="38.46" y2="39.56" y3="39.56"/> <close/> <move x="114.74" y="37.24"/> <curve x1="116.44" x2="117.99" x3="118.1" y1="37.24" y2="35.7" y3="32.43"/> <curve x1="118.1" x2="116.19" x3="114.6" y1="29.03" y2="27.86" y3="27.86"/> <curve x1="113.21" x2="111.35" x3="111.35" y1="27.86" y2="29.42" y3="32.41"/> <curve x1="111.4" x2="113.4" x3="114.74" y1="36.17" y2="37.24" y3="37.24"/> <close/> <move x="123.02" y="39.3"/> <line x="123.02" y="25.89"/> <line x="125.63" y="25.89"/> <line x="125.73" y="28.35"/> <curve x1="126.92" x2="128.6" x3="130.19" y1="25.67" y2="25.48" y3="25.69"/> <line x="130.18" y="28.56"/> <curve x1="128.19" x2="126.29" x3="126.13" y1="28.29" y2="29.13" y3="31.71"/> <line x="126.13" y="39.28"/> <close/> <move x="142.2" y="38.62"/> <curve x1="140.38" x2="138.25" x3="135.65" y1="39.47" y2="39.78" y3="39.26"/> <curve x1="133.85" x2="131.4" x3="131.05" y1="38.78" y2="37.62" y3="33.37"/> <curve x1="130.98" x2="132.88" x3="135.05" y1="28.64" y2="27.03" y3="25.96"/> <curve x1="137.01" x2="139.46" x3="141.37" y1="25.19" y2="25.24" y3="27.31"/> <curve x1="142.59" x2="143.13" x3="142.84" y1="28.72" y2="30.7" y3="33.37"/> <line x="133.92" y="33.31"/> <curve x1="134.06" x2="135.07" x3="137.26" y1="35.38" y2="36.73" y3="37.1"/> <curve x1="139.34" x2="140.54" x3="141.64" y1="37.19" y2="36.89" y3="36.53"/> <close/> <move x="139.99" y="31.08"/> <curve x1="139.93" x2="138.78" x3="137.23" y1="29.01" y2="27.78" y3="27.69"/> <curve x1="135.2" x2="134.32" x3="133.91" y1="27.75" y2="29.23" y3="31.08"/> <close/> <move x="37.41" y="15.71"/> <line x="39.82" y="8.33"/> <line x="41.35" y="8.35"/> <line x="43.77" y="15.71"/> <line x="42.34" y="15.71"/> <line x="41.69" y="13.57"/> <line x="39.44" y="13.57"/> <line x="38.85" y="15.71"/> <close/> <move x="39.67" y="12.5"/> <line x="41.48" y="12.5"/> <line x="40.58" y="9.63"/> <close/> <move x="45.3" y="15.71"/> <line x="43.32" y="10.38"/> <line x="44.7" y="10.38"/> <line x="45.88" y="14.19"/> <line x="47.13" y="10.38"/> <line x="48.41" y="10.38"/> <line x="46.49" y="15.71"/> <close/> <move x="51.81" y="15.71"/> <line x="51.77" y="15.04"/> <curve x1="51.38" x2="51.17" x3="50.28" y1="15.49" y2="15.69" y3="15.71"/> <curve x1="49.31" x2="48.85" x3="48.64" y1="15.68" y2="15.35" y3="14.54"/> <curve x1="48.53" x2="48.63" x3="49.41" y1="13.86" y2="13.22" y3="12.68"/> <curve x1="50.03" x2="50.27" x3="51.68" y1="12.28" y2="12.2" y3="12.13"/> <curve x1="51.62" x2="51.54" x3="51.09" y1="11.72" y2="11.44" y3="11.24"/> <curve x1="50.59" x2="49.55" x3="49.24" y1="11.1" y2="11.36" y3="11.58"/> <line x="48.9" y="10.73"/> <curve x1="49.43" x2="50.38" x3="51.36" y1="10.38" y2="10.1" y3="10.21"/> <curve x1="52.26" x2="52.89" x3="52.9" y1="10.32" y2="11.29" y3="12.16"/> <line x="52.97" y="15.71"/> <close/> <move x="51.61" y="13.1"/> <curve x1="51.06" x2="50.57" x3="50.26" y1="13.09" y2="13.11" y3="13.31"/> <curve x1="50.1" x2="49.89" x3="49.89" y1="13.41" y2="13.7" y3="14.05"/> <curve x1="49.88" x2="50.36" x3="50.73" y1="14.62" y2="14.86" y3="14.79"/> <curve x1="51.08" x2="51.4" x3="51.64" y1="14.72" y2="14.5" y3="14.03"/> <close/> <move x="54.15" y="15.71"/> <line x="54.15" y="10.34"/> <line x="55.49" y="10.36"/> <line x="55.49" y="15.71"/> <close/> <move x="54.82" y="9.64"/> <curve x1="54.43" x2="54.05" x3="54.05" y1="9.64" y2="9.33" y3="8.85"/> <curve x1="54.05" x2="54.38" x3="54.82" y1="8.47" y2="8.09" y3="8.09"/> <curve x1="55.22" x2="55.61" x3="55.61" y1="8.09" y2="8.46" y3="8.85"/> <curve x1="55.61" x2="55.22" x3="54.82" y1="9.34" y2="9.64" y3="9.64"/> <close/> <move x="56.77" y="15.71"/> <line x="56.77" y="7.97"/> <line x="58.05" y="7.97"/> <line x="58.05" y="15.71"/> <close/> <move x="64.55" y="15.71"/> <line x="64.55" y="7.97"/> <line x="65.86" y="7.97"/> <line x="65.86" y="11.03"/> <curve x1="66.1" x2="66.54" x3="67.51" y1="10.62" y2="10.3" y3="10.2"/> <curve x1="68.11" x2="68.99" x3="69.32" y1="10.15" y2="10.68" y3="11.42"/> <curve x1="69.88" x2="69.64" x3="69.34" y1="12.75" y2="13.72" y3="14.45"/> <curve x1="69" x2="68.18" x3="67.73" y1="15.17" y2="15.63" y3="15.71"/> <curve x1="66.66" x2="66.04" x3="65.66" y1="15.83" y2="15.57" y3="14.78"/> <line x="65.68" y="15.71"/> <close/> <move x="65.87" y="13.67"/> <curve x1="65.98" x2="66.68" x3="67.16" y1="14.48" y2="14.75" y3="14.75"/> <curve x1="67.68" x2="68" x3="68.21" y1="14.69" y2="14.43" y3="13.97"/> <curve x1="68.39" x2="68.38" x3="68.34" y1="13.52" y2="12.78" y3="12.43"/> <curve x1="68.27" x2="67.81" x3="67.22" y1="11.97" y2="11.28" y3="11.27"/> <curve x1="66.55" x2="66.1" x3="65.9" y1="11.27" y2="11.66" y3="12.15"/> <close/> <move x="77.62" y="15.38"/> <curve x1="76.7" x2="75.94" x3="74.98" y1="15.78" y2="15.82" y3="15.67"/> <curve x1="74.2" x2="73.58" x3="73.21" y1="15.52" y2="14.99" y3="13.82"/> <curve x1="72.97" x2="73.17" x3="73.63" y1="12.91" y2="11.9" y3="11.27"/> <curve x1="74.37" x2="74.94" x3="75.71" y1="10.43" y2="10.22" y3="10.17"/> <curve x1="77.09" x2="78.07" x3="77.96" y1="10.13" y2="11.39" y3="13.33"/> <line x="74.43" y="13.33"/> <curve x1="74.44" x2="74.69" x3="75.59" y1="14.01" y2="14.54" y3="14.71"/> <curve x1="76.09" x2="76.65" x3="77.43" y1="14.78" y2="14.75" y3="14.47"/> <close/> <move x="74.39" y="12.42"/> <line x="76.7" y="12.42"/> <curve x1="76.74" x2="76.19" x3="75.69" y1="11.78" y2="11.15" y3="11.17"/> <curve x1="74.9" x2="74.5" x3="74.39" y1="11.18" y2="11.71" y3="12.42"/> <close/> <move x="83.43" y="15.75"/> <curve x1="82.44" x2="81.7" x3="81.23" y1="15.74" y2="15.32" y3="14.15"/> <curve x1="80.86" x2="81.05" x3="81.46" y1="13.13" y2="12.15" y3="11.42"/> <curve x1="81.98" x2="82.72" x3="83.59" y1="10.68" y2="10.22" y3="10.21"/> <curve x1="84.73" x2="85.4" x3="85.81" y1="10.21" y2="10.7" y3="11.45"/> <curve x1="86.43" x2="86.24" x3="85.76" y1="12.68" y2="13.74" y3="14.55"/> <curve x1="85.09" x2="84.54" x3="83.43" y1="15.55" y2="15.75" y3="15.75"/> <close/> <move x="83.59" y="14.78"/> <curve x1="84.2" x2="84.88" x3="84.88" y1="14.78" y2="13.96" y3="12.99"/> <curve x1="84.88" x2="84.37" x3="83.5" y1="12.03" y2="11.22" y3="11.22"/> <curve x1="82.98" x2="82.29" x3="82.29" y1="11.22" y2="11.88" y3="12.93"/> <curve x1="82.29" x2="83.02" x3="83.59" y1="14.19" y2="14.78" y3="14.78"/> <close/> <move x="87" y="15.63"/> <line x="87" y="10.39"/> <line x="88.14" y="10.39"/> <line x="88.14" y="11.04"/> <curve x1="88.59" x2="89.19" x3="89.83" y1="10.41" y2="10.23" y3="10.2"/> <curve x1="90.62" x2="91.61" x3="91.61" y1="10.19" y2="11.08" y3="11.86"/> <line x="91.61" y="15.63"/> <line x="90.36" y="15.63"/> <line x="90.36" y="12.36"/> <curve x1="90.34" x2="90.19" x3="89.45" y1="12.04" y2="11.27" y3="11.27"/> <curve x1="88.58" x2="88.31" x3="88.28" y1="11.3" y2="12.01" y3="12.37"/> <line x="88.28" y="15.63"/> <close/> <move x="94.8" y="11.32"/> <line x="94.8" y="10.37"/> <line x="95.57" y="10.37"/> <line x="95.57" y="9.43"/> <line x="96.82" y="9.04"/> <line x="96.82" y="10.37"/> <line x="98.06" y="10.37"/> <line x="98.08" y="11.32"/> <line x="96.82" y="11.32"/> <line x="96.82" y="14.11"/> <curve x1="96.87" x2="97" x3="97.23" y1="14.45" y2="14.62" y3="14.67"/> <curve x1="97.5" x2="97.75" x3="98" y1="14.7" y2="14.68" y3="14.63"/> <line x="98" y="15.61"/> <curve x1="97.39" x2="96.8" x3="96.36" y1="15.73" y2="15.81" y3="15.57"/> <curve x1="96.05" x2="95.57" x3="95.57" y1="15.38" y2="14.89" y3="14.13"/> <line x="95.57" y="11.32"/> <close/> <move x="98.86" y="15.65"/> <line x="98.91" y="8"/> <line x="100.11" y="7.97"/> <line x="100.15" y="10.93"/> <curve x1="100.77" x2="101.15" x3="101.93" y1="10.35" y2="10.2" y3="10.2"/> <curve x1="102.73" x2="103.58" x3="103.58" y1="10.2" y2="11.43" y3="12.44"/> <line x="103.57" y="15.63"/> <line x="102.23" y="15.64"/> <line x="102.24" y="12.27"/> <curve x1="102.24" x2="101.87" x3="101.24" y1="11.89" y2="11.29" y3="11.29"/> <curve x1="100.76" x2="100.19" x3="100.19" y1="11.29" y2="11.72" y3="12.19"/> <line x="100.17" y="15.64"/> <close/> <move x="115.32" y="15.63"/> <line x="115.32" y="8.39"/> <curve x1="116.12" x2="117.18" x3="117.78" y1="8.27" y2="8.15" y3="8.19"/> <curve x1="118.68" x2="119.54" x3="119.76" y1="8.29" y2="8.97" y3="9.52"/> <curve x1="120.14" x2="119.96" x3="119.78" y1="10.44" y2="11.2" y3="11.64"/> <curve x1="119.57" x2="119.21" x3="118.28" y1="12.02" y2="12.5" y3="12.76"/> <curve x1="117.73" x2="117.14" x3="116.51" y1="12.89" y2="12.85" y3="12.77"/> <line x="116.51" y="15.63"/> <close/> <move x="116.51" y="11.86"/> <line x="117.64" y="11.86"/> <curve x1="117.94" x2="118.36" x3="118.59" y1="11.86" y2="11.61" y3="11.17"/> <curve x1="118.72" x2="118.83" x3="118.45" y1="10.84" y2="10.18" y3="9.73"/> <curve x1="118.11" x2="117.31" x3="116.51" y1="9.34" y2="9.2" y3="9.29"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="159.91" name="Arduino" strokewidth="inherit" w="337"> <connections/> <foreground> <path> <move x="226.65" y="87.64"/> <line x="226.65" y="72.19"/> <line x="243.85" y="72.19"/> <line x="243.85" y="55.2"/> <line x="259.25" y="55.2"/> <line x="259.25" y="72.19"/> <line x="275.99" y="72.19"/> <line x="275.99" y="87.64"/> <line x="259.25" y="87.64"/> <line x="259.25" y="104.92"/> <line x="243.85" y="104.92"/> <line x="243.85" y="87.64"/> <close/> <move x="60.78" y="87.77"/> <line x="60.78" y="72.27"/> <line x="110.46" y="72.27"/> <line x="110.46" y="87.77"/> <close/> <move x="82.73" y="132.03"/> <curve x1="109.5" x2="135.19" x3="153.52" y1="132.13" y2="113.84" y3="79.81"/> <curve x1="138.38" x2="112.33" x3="83.56" y1="49.89" y2="27.59" y3="27.59"/> <curve x1="60.22" x2="28.67" x3="28.67" y1="27.59" y2="43.4" y3="78.9"/> <curve x1="28.67" x2="55.38" x3="82.73" y1="111.65" y2="132.03" y3="132.03"/> <close/> <move x="184.09" y="80.06"/> <curve x1="200.15" x2="221.16" x3="253.3" y1="108.15" y2="131.87" y3="131.87"/> <curve x1="281.62" x2="309.18" x3="309.18" y1="131.87" y2="112.69" y3="80.98"/> <curve x1="309.18" x2="281.32" x3="255.13" y1="47.02" y2="27.51" y3="27.51"/> <curve x1="227.17" x2="203.49" x3="184.09" y1="27.89" y2="43.6" y3="80.06"/> <close/> <move x="168.77" y="106.64"/> <curve x1="147.3" x2="109.99" x3="83.56" y1="142.17" y2="159.52" y3="159.52"/> <curve x1="37.75" x2="0" x3="0" y1="159.52" y2="121.3" y3="76.86"/> <curve x1="0" x2="34.57" x3="82.9" y1="42.11" y2="0" y3="0"/> <curve x1="121.67" x2="153.85" x3="169.12" y1="0" y2="28.61" y3="52.29"/> <curve x1="187.89" x2="221.7" x3="255.03" y1="20.46" y2="0" y3="0"/> <curve x1="291.01" x2="337" x3="337" y1="0" y2="30.88" y3="80.89"/> <curve x1="337" x2="295.57" x3="254.79" y1="124.83" y2="159.91" y3="159.91"/> <curve x1="219.4" x2="188.1" x3="168.77" y1="159.91" y2="136.39" y3="106.64"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="253.09" name="Ask" strokewidth="inherit" w="343.2"> <connections/> <foreground> <path> <move x="230.24" y="216.82"/> <line x="266.83" y="5.43"/> <line x="303.26" y="0"/> <line x="278.97" y="125.91"/> <line x="312.69" y="77.33"/> <line x="343.2" y="77.01"/> <line x="304.86" y="140.61"/> <line x="325.47" y="201.48"/> <line x="296.55" y="206.43"/> <line x="273.38" y="156.1"/> <line x="263.16" y="211.23"/> <close/> <move x="154.83" y="192.05"/> <curve x1="161.07" x2="168.29" x3="177.51" y1="195.27" y2="199.09" y3="200.36"/> <curve x1="182.41" x2="187.08" x3="190.3" y1="199.87" y2="198.89" y3="194.61"/> <curve x1="195.04" x2="193.17" x3="189.02" y1="188.22" y2="182.15" y3="175.44"/> <curve x1="183.4" x2="176.05" x3="167.93" y1="166.29" y2="162.85" y3="151.63"/> <curve x1="158.53" x2="161.73" x3="166.17" y1="139.81" y2="123.9" y3="112.96"/> <curve x1="173.82" x2="184.75" x3="197.97" y1="95.39" y2="90.84" y3="89"/> <curve x1="211.86" x2="222.31" x3="231.2" y1="87.24" y2="89.32" y3="93.95"/> <line x="223.37" y="121.43"/> <curve x1="217.99" x2="213.25" x3="209.15" y1="117.49" y2="115.04" y3="114.08"/> <curve x1="202.98" x2="197.54" x3="193.49" y1="112.54" y2="113.51" y3="119.19"/> <curve x1="190.08" x2="191.33" x3="199.88" y1="125.54" y2="133.38" y3="140.92"/> <curve x1="206.93" x2="211.46" x3="218.42" y1="149.6" y2="151.85" y3="160.58"/> <curve x1="227.06" x2="227.71" x3="223.85" y1="171.94" y2="186.59" y3="196.69"/> <curve x1="216.52" x2="204.67" x3="191.41" y1="215.17" y2="220.62" y3="224.17"/> <curve x1="165.28" x2="155.88" x3="146.84" y1="227.94" y2="224.77" y3="221.45"/> <close/> <move x="75.73" y="176.4"/> <line x="104.02" y="171.92"/> <line x="104.18" y="102.58"/> <close/> <move x="0" y="253.09"/> <line x="121.11" y="7.35"/> <line x="140.45" y="231.2"/> <line x="104.65" y="236.79"/> <line x="104.5" y="201.8"/> <line x="56.88" y="209.63"/> <line x="46.66" y="246.06"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="274.49" name="Atlassian" strokewidth="inherit" w="301.45"> <connections/> <foreground> <path> <move x="1.21" y="10.92"/> <curve x1="0" x2="0" x3="2.1" y1="8.45" y2="5.92" y3="3.3"/> <curve x1="5.29" x2="8.6" x3="11.94" y1="0" y2="0.57" y3="2.05"/> <curve x1="40.81" x2="97.78" x3="154.86" y1="19.98" y2="37.45" y3="35.77"/> <curve x1="205.96" x2="250.59" x3="289.56" y1="35.77" y2="23.47" y3="2.01"/> <curve x1="293.17" x2="296.45" x3="299.21" y1="0.11" y2="0.18" y3="3.39"/> <curve x1="301.01" x2="301.45" x3="299" y1="5.91" y2="8.63" y3="11.79"/> <curve x1="256.65" x2="204.18" x3="152.6" y1="43.73" y2="60.95" y3="61.64"/> <curve x1="81.64" x2="32.62" x3="1.21" y1="61.1" y2="35.01" y3="10.92"/> <close/> <move x="153.96" y="120.79"/> <curve x1="151.79" x2="148.38" x3="146.57" y1="122.85" y2="122.51" y3="120.57"/> <curve x1="139.75" x2="133.07" x3="127.18" y1="113.45" y2="104.4" y3="92.83"/> <curve x1="126.09" x2="126.46" x3="130.8" y1="90.27" y2="84.85" y3="84.58"/> <curve x1="144.09" x2="156.87" x3="169.89" y1="85.51" y2="85.26" y3="84.75"/> <curve x1="174.43" x2="175.29" x3="174.18" y1="85.36" y2="89.38" y3="91.47"/> <curve x1="168.18" x2="161.14" x3="153.96" y1="104.78" y2="114.13" y3="120.79"/> <close/> <move x="178.7" y="274.47"/> <curve x1="176.09" x2="173.57" x3="173.28" y1="274.47" y2="273.12" y3="268.28"/> <curve x1="171.42" x2="163.83" x3="154.28" y1="250.37" y2="237.14" y3="223.88"/> <curve x1="142.22" x2="129.43" x3="115.68" y1="207.02" y2="194.42" y3="180.62"/> <curve x1="96.47" x2="69.28" x3="58.5" y1="160.58" y2="133.7" y3="109.41"/> <curve x1="53.52" x2="48.82" x3="47.89" y1="98.46" y2="86.91" y3="72.03"/> <curve x1="47.96" x2="51.68" x3="54.83" y1="69.09" y2="66.36" y3="67.41"/> <curve x1="65.31" x2="78.95" x3="90.72" y1="71.43" y2="76" y3="78.68"/> <curve x1="92.98" x2="94.65" x3="95.42" y1="79.1" y2="80.35" y3="82.9"/> <curve x1="99.93" x2="107.19" x3="115.95" y1="94.8" y2="105.73" y3="116.13"/> <curve x1="126.25" x2="135.72" x3="144.97" y1="128.3" y2="138.11" y3="147.31"/> <curve x1="148.38" x2="150.93" x3="155.39" y1="151.25" y2="152.68" y3="148.11"/> <curve x1="176.92" x2="196.97" x3="204.63" y1="126.77" y2="104.78" y3="85.08"/> <curve x1="205.32" x2="207.02" x3="211.33" y1="81.4" y2="78.93" y3="78.39"/> <curve x1="220.41" x2="232.46" x3="245.36" y1="76.59" y2="72.66" y3="68.12"/> <curve x1="251.23" x2="253.18" x3="253.2" y1="66.48" y2="69.44" y3="72.83"/> <curve x1="251.71" x2="242.49" x3="233.63" y1="94.24" y2="110.57" y3="125.14"/> <curve x1="222.29" x2="204.24" x3="183.79" y1="141.98" y2="161.78" y3="182.65"/> <curve x1="181.53" x2="180.99" x3="183.84" y1="184.58" y2="186.88" y3="189.88"/> <curve x1="203.4" x2="216.66" x3="218.02" y1="214.88" y2="240.51" y3="267.61"/> <curve x1="218.56" x2="214.87" x3="212.6" y1="272.54" y2="274.47" y3="274.47"/> <close/> <move x="87.53" y="274.47"/> <curve x1="85.71" x2="82.56" x3="83.06" y1="274.47" y2="273.06" y3="268.34"/> <curve x1="84.77" x2="93.99" x3="105.87" y1="243.42" y2="223.51" y3="205.37"/> <curve x1="107.44" x2="109.62" x3="112.67" y1="203.04" y2="202.36" y3="204.07"/> <curve x1="121.26" x2="128.9" x3="136.44" y1="212.23" y2="221.34" y3="230.55"/> <curve x1="138.52" x2="138.49" x3="136.31" y1="233.59" y2="236.95" y3="240.63"/> <curve x1="132.03" x2="129.06" x3="127.52" y1="248.21" y2="257.54" y3="269.19"/> <curve x1="126.95" x2="125.32" x3="122.04" y1="272.48" y2="274.49" y3="274.47"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="396.55" name="Audioboo" strokewidth="inherit" w="269.76"> <connections/> <foreground> <path> <move x="205.63" y="152.62"/> <curve x1="200.74" x2="191.81" x3="191.81" y1="152.62" y2="147.23" y3="136.06"/> <curve x1="191.81" x2="196.76" x3="207.31" y1="128.96" y2="120.04" y3="120.04"/> <line x="255.23" y="120.04"/> <curve x1="261.17" x2="269.76" x3="269.76" y1="120.04" y2="126.04" y3="136.28"/> <curve x1="269.76" x2="264.29" x3="255.17" y1="143.56" y2="152.62" y3="152.62"/> <close/> <move x="208.67" y="38.91"/> <curve x1="214.37" x2="223.56" x3="230" y1="34.11" y2="35.06" y3="41.31"/> <curve x1="235.95" x2="236.3" x3="231.12" y1="48.05" y2="57.06" y3="63.12"/> <line x="196.61" y="97.95"/> <curve x1="190.21" x2="180.27" x3="174.48" y1="103.03" y2="102.29" y3="96.59"/> <curve x1="168.9" x2="168.15" x3="173.52" y1="90.62" y2="79.02" y3="73.9"/> <close/> <move x="119.16" y="14.59"/> <curve x1="119.16" x2="125.22" x3="135.55" y1="6.96" y2="0" y3="0"/> <curve x1="142.82" x2="150.53" x3="150.53" y1="0" y2="5.47" y3="14.66"/> <line x="150.53" y="62.95"/> <curve x1="150.53" x2="140.03" x3="135.19" y1="73.43" y2="78.09" y3="78.09"/> <curve x1="127.55" x2="119.16" x3="119.16" y1="78.09" y2="71.55" y3="64.7"/> <close/> <move x="37.87" y="62.72"/> <curve x1="32.6" x2="34.81" x3="39.94" y1="55.19" y2="45.96" y3="40.91"/> <curve x1="46.06" x2="55.41" x3="62.31" y1="35.59" y2="33.47" y3="39.95"/> <line x="96.99" y="74.78"/> <curve x1="100.83" x2="103.42" x3="94.51" y1="79.72" y2="88.43" y3="97.23"/> <curve x1="86.54" x2="76.84" x3="72.46" y1="104.05" y2="101.99" y3="97.63"/> <close/> <move x="13.82" y="152.62"/> <curve x1="9.66" x2="0" x3="0" y1="152.62" y2="147.51" y3="136.61"/> <curve x1="0.2" x2="7.54" x3="14.3" y1="126.53" y2="120.04" y3="120.04"/> <line x="63.35" y="120.04"/> <curve x1="69.63" x2="78.05" x3="78.05" y1="120.04" y2="126.42" y3="137.25"/> <curve x1="78.05" x2="69.39" x3="64.07" y1="145.75" y2="152.62" y3="152.62"/> <close/> <move x="173.47" y="262.92"/> <curve x1="173.47" x2="167.42" x3="135.3" y1="269.96" y2="300.55" y3="300.55"/> <curve x1="106.01" x2="96.08" x3="96.08" y1="301.17" y2="274.79" y3="262.24"/> <line x="96.08" y="128.95"/> <curve x1="96.08" x2="107.36" x3="135.09" y1="112.37" y2="88.2" y3="88.2"/> <curve x1="161.53" x2="173.47" x3="173.47" y1="88.2" y2="111.32" y3="126.71"/> <close/> <move x="77.41" y="396.55"/> <curve x1="74.62" x2="68.9" x3="69.14" y1="396.55" y2="393.93" y3="386.83"/> <curve x1="69.14" x2="73.8" x3="79.14" y1="380.65" y2="376.91" y3="376.91"/> <line x="107.11" y="376.91"/> <line x="107.11" y="358.86"/> <curve x1="56.53" x2="25.72" x3="22.53" y1="352.03" y2="308.8" y3="246.94"/> <curve x1="21.83" x2="31.12" x3="45.54" y1="230.16" y2="222.74" y3="219.94"/> <curve x1="56.9" x2="65.58" x3="67.43" y1="218.59" y2="227.62" y3="235.76"/> <curve x1="69.4" x2="92.14" x3="136.77" y1="288.75" y2="320.12" y3="320.12"/> <curve x1="184.36" x2="200.49" x3="202.28" y1="317" y2="279.98" y3="236.88"/> <curve x1="204.15" x2="211.87" x3="223.53" y1="225.39" y2="220.52" y3="220.1"/> <curve x1="232.1" x2="241.41" x3="241.58" y1="220.1" y2="228.83" y3="236.88"/> <curve x1="241.58" x2="207.98" x3="150.53" y1="306.3" y2="350.48" y3="359.09"/> <line x="150.53" y="376.91"/> <line x="178.45" y="376.91"/> <curve x1="186.55" x2="190" x3="190" y1="376.91" y2="381.52" y3="386.6"/> <curve x1="190" x2="185.74" x3="181.02" y1="392.4" y2="396.55" y3="396.55"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="291.83" name="AWS" strokewidth="inherit" w="317.49"> <connections/> <foreground> <fillcolor color="#febe10"/> <path> <move x="2.52" y="31.19"/> <line x="80.52" y="5.19"/> <line x="159.21" y="31.87"/> <line x="239.27" y="4.5"/> <line x="312.61" y="32.89"/> <line x="312.12" y="132.84"/> <line x="234.14" y="157.77"/> <line x="234.48" y="260.07"/> <line x="158.53" y="283.33"/> <line x="80.18" y="255.96"/> <line x="80.52" y="154.35"/> <line x="3.2" y="130.4"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="25.66" y="31.65"/> <line x="83.48" y="50.04"/> <line x="139.07" y="31.73"/> <line x="82.97" y="14.45"/> <close/> <move x="76.34" y="148.48"/> <line x="76.34" y="61.15"/> <line x="14.41" y="41.14"/> <line x="14.41" y="128.13"/> <close/> <move x="90.71" y="148.82"/> <line x="151.82" y="128.21"/> <line x="151.82" y="41.4"/> <line x="90.71" y="61.5"/> <close/> <move x="228.22" y="148.31"/> <line x="228.22" y="61.15"/> <line x="167.17" y="41.57"/> <line x="167.17" y="128.13"/> <close/> <move x="235.9" y="49.83"/> <line x="292.52" y="31.7"/> <line x="236.41" y="14.51"/> <line x="180.22" y="31.68"/> <close/> <move x="243.08" y="149.08"/> <line x="304.49" y="128.55"/> <line x="304.49" y="41.65"/> <line x="243.08" y="61.24"/> <close/> <move x="160.03" y="176.02"/> <line x="215.2" y="157.72"/> <line x="159.34" y="140.61"/> <line x="103.66" y="157.8"/> <close/> <move x="167.17" y="274.9"/> <line x="228.22" y="254.63"/> <line x="228.22" y="167.38"/> <line x="167.17" y="187.48"/> <close/> <move x="90.71" y="254.63"/> <line x="151.82" y="274.9"/> <line x="151.82" y="187.4"/> <line x="90.71" y="167.64"/> <close/> <move x="76.34" y="264.12"/> <line x="76.34" y="162.85"/> <line x="0" y="137.88"/> <line x="0" y="24.63"/> <line x="83.14" y="0"/> <line x="159.43" y="23.26"/> <line x="236.75" y="0"/> <line x="317.49" y="24.98"/> <line x="317.49" y="138.22"/> <line x="243.08" y="163.19"/> <line x="243.08" y="264.46"/> <line x="160.11" y="291.83"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="287.44" name="AWS S3" strokewidth="inherit" w="307.73"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="99.93" y="115.75"/> <curve x1="97.62" x2="95.73" x3="93.67" y1="117.77" y2="118.39" y3="116.61"/> <curve x1="90.02" x2="85.78" x3="82.41" y1="113.56" y2="109.23" y3="103.23"/> <curve x1="77.25" x2="71.35" x3="62.69" y1="108.24" y2="114.27" y3="116.53"/> <curve x1="56.21" x2="47.51" x3="35.27" y1="117.99" y2="119.93" y3="115.67"/> <curve x1="23.45" x2="17.72" x3="17.72" y1="111.26" y2="98.96" y3="89.28"/> <curve x1="17.72" x2="18.45" x3="36.25" y1="78.02" y2="64.48" y3="53.47"/> <curve x1="51.67" x2="65.34" x3="78.12" y1="46.06" y2="46.81" y3="45.12"/> <line x="77.96" y="34.1"/> <curve x1="77.79" x2="77.38" x3="68.34" y1="32.57" y2="26.11" y3="23.08"/> <curve x1="63.09" x2="56.48" x3="52.08" y1="21.7" y2="23.11" y3="26.9"/> <curve x1="49.9" x2="48.44" x3="47.86" y1="29.16" y2="31.6" y3="35.33"/> <curve x1="47.58" x2="45.49" x3="43.09" y1="36.85" y2="39.11" y3="38.68"/> <curve x1="36.49" x2="31.71" x3="23.89" y1="37.6" y2="37.16" y3="36.45"/> <curve x1="22.13" x2="20.44" x3="21.19" y1="36.28" y2="34" y3="31.54"/> <curve x1="22.65" x2="26.79" x3="31.46" y1="22.34" y2="16.97" y3="12.36"/> <curve x1="38.53" x2="45.78" x3="70.16" y1="6.62" y2="0" y3="0.47"/> <curve x1="91.33" x2="106.97" x3="106.97" y1="1.2" y2="12.64" y3="30.23"/> <line x="107.29" y="79.66"/> <curve x1="107.29" x2="109.18" x3="110.24" y1="84.99" y2="88.88" y3="90.79"/> <line x="115.73" y="97.87"/> <curve x1="116.67" x2="116.8" x3="115.67" y1="99.28" y2="100.73" y3="102.22"/> <close/> <move x="78.03" y="61.94"/> <curve x1="66.12" x2="56.76" x3="51.6" y1="61.92" y2="64.26" y3="70.45"/> <curve x1="49.03" x2="47.17" x3="48.49" y1="74.07" y2="78.57" y3="86.94"/> <curve x1="49.41" x2="51.59" x3="55.24" y1="91.51" y2="94.7" y3="96.32"/> <curve x1="60.13" x2="63.28" x3="68.54" y1="97.66" y2="97.71" y3="94.35"/> <curve x1="73.95" x2="78.03" x3="78.03" y1="90.43" y2="82.24" y3="75.16"/> <line x="78.03" y="61.94"/> <close/> </path> <fill/> <fillcolor color="#f98900"/> <path> <move x="136.06" y="133.2"/> <curve x1="134.99" x2="134.04" x3="134.5" y1="133.57" y2="133.18" y3="131.52"/> <curve x1="136.14" x2="137.83" x3="139.37" y1="126.89" y2="123.44" y3="116.62"/> <curve x1="139.75" x2="139.86" x3="135.48" y1="114.83" y2="112.4" y3="111.88"/> <curve x1="129.81" x2="125.05" x3="119.98" y1="111.27" y2="112.18" y3="112.57"/> <curve x1="118.44" x2="117.99" x3="118.95" y1="112.61" y2="111.27" y3="110.53"/> <curve x1="126.53" x2="132.54" x3="144.16" y1="106.71" y2="104.19" y3="106.97"/> <curve x1="146.01" x2="146.18" x3="146.33" y1="107.5" y2="107.96" y3="109.99"/> <curve x1="146.4" x2="143.21" x3="136.06" y1="118.37" y2="127.06" y3="133.2"/> <close/> <move x="1.23" y="109.87"/> <curve x1="0" x2="1.69" x3="3.6" y1="108.46" y2="105.72" y3="107.08"/> <curve x1="16.82" x2="39.25" x3="65.4" y1="117.62" y2="128.68" y3="130.92"/> <curve x1="83.5" x2="102.79" x3="129.43" y1="132.13" y2="131.26" y3="117.52"/> <curve x1="131.17" x2="132.89" x3="133.48" y1="116.64" y2="116.57" y3="117.97"/> <curve x1="134.05" x2="133.42" x3="132.7" y1="120.07" y2="121.18" y3="121.78"/> <curve x1="120.36" x2="103.07" x3="88.92" y1="133.78" y2="140.87" y3="143.35"/> <curve x1="66.41" x2="48.28" x3="30.12" y1="146.71" y2="143.71" y3="133.31"/> <curve x1="18.9" x2="9.35" x3="1.23" y1="127.03" y2="119.15" y3="109.87"/> <close/> </path> <fill/> <fillcolor color="#febe10"/> <path> <move x="232.83" y="42.58"/> <line x="171.34" y="22.22"/> <line x="233.87" y="3.8"/> <line x="294.27" y="22.47"/> <close/> <move x="240.59" y="149.46"/> <line x="240.59" y="54.71"/> <line x="307.73" y="32.88"/> <line x="307.73" y="126.89"/> <close/> <move x="224.4" y="148.85"/> <line x="158.03" y="128.26"/> <line x="158.03" y="32.79"/> <line x="224.4" y="54.52"/> <close/> <move x="148.84" y="179.17"/> <line x="87.71" y="159.25"/> <line x="148.57" y="140.65"/> <line x="209.7" y="159.61"/> <close/> <move x="156.71" y="287.44"/> <line x="156.71" y="191.93"/> <line x="223.25" y="170.29"/> <line x="223.25" y="265.19"/> <close/> <move x="73.95" y="264.64"/> <line x="73.95" y="170.06"/> <line x="142.06" y="192.12"/> <line x="142.06" y="287.44"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="385.24" name="Baidu" strokewidth="inherit" w="355"> <connections/> <foreground> <path> <move x="108.63" y="381.26"/> <curve x1="82.3" x2="70.97" x3="59.1" y1="383.05" y2="382.06" y3="375.51"/> <curve x1="46.28" x2="32.64" x3="26.5" y1="368.87" y2="358.12" y3="331.25"/> <curve x1="18.2" x2="32.95" x3="60.38" y1="295.99" y2="272.74" y3="250.4"/> <curve x1="88.28" x2="105.45" x3="118.69" y1="227.39" y2="212.29" y3="192.08"/> <curve x1="129.37" x2="148.98" x3="173.82" y1="172.79" y2="156.93" y3="156.93"/> <curve x1="201.26" x2="214.02" x3="225.8" y1="156.93" y2="171.52" y3="185.65"/> <curve x1="245.5" x2="269.97" x3="293.63" y1="215.13" y2="238.65" y3="259.52"/> <curve x1="317.34" x2="330.98" x3="326.41" y1="274.53" y2="297.93" y3="326.62"/> <curve x1="320.64" x2="302.82" x3="263.93" y1="364.68" y2="383.02" y3="385.09"/> <curve x1="248.56" x2="233.31" x3="215.04" y1="385.03" y2="385.24" y3="378.54"/> <curve x1="193.01" x2="172.9" x3="151.77" y1="373.08" y2="371.84" y3="374.71"/> <curve x1="144.31" x2="139.68" x3="108.63" y1="375.28" y2="379.22" y3="381.26"/> <close/> <move x="43.14" y="204.79"/> <curve x1="21.69" x2="0" x3="0.13" y1="206.2" y2="180.86" y3="149.23"/> <curve x1="0.16" x2="11.78" x3="43.67" y1="130.81" y2="88.16" y3="89.08"/> <curve x1="68.85" x2="92.1" x3="90.09" y1="90.08" y2="115.86" y3="150.91"/> <curve x1="88.05" x2="69.28" x3="43.14" y1="192.43" y2="203.79" y3="204.79"/> <close/> <move x="130.43" y="120.39"/> <curve x1="109.52" x2="87.63" x3="89.46" y1="119.76" y2="97.22" y3="54.67"/> <curve x1="91.76" x2="106.98" x3="129.08" y1="25.87" y2="1.95" y3="0.99"/> <curve x1="151.15" x2="173.95" x3="173.18" y1="0" y2="20.8" y3="62.34"/> <curve x1="172.36" x2="149.61" x3="130.43" y1="100.66" y2="121.12" y3="120.39"/> <close/> <move x="230.06" y="123.86"/> <curve x1="200.43" x2="190.43" x3="196.51" y1="118.95" y2="93.85" y3="58.51"/> <curve x1="201.08" x2="223.8" x3="246.2" y1="37.5" y2="9.43" y3="10.09"/> <curve x1="263.33" x2="294.52" x3="283.75" y1="10.67" y2="42.27" y3="77.36"/> <curve x1="273.01" x2="250.94" x3="230.06" y1="114.01" y2="127.64" y3="123.86"/> <close/> <move x="305" y="229.63"/> <curve x1="278.66" x2="265.31" x3="264.09" y1="227.02" y2="213.58" y3="185.85"/> <curve x1="263.84" x2="263.33" x3="270.41" y1="168.15" y2="152.52" y3="138.49"/> <curve x1="279.86" x2="288.68" x3="307.71" y1="121.81" y2="116.89" y3="116.99"/> <curve x1="338.83" x2="355" x3="353.57" y1="118.27" y2="145.37" y3="174.35"/> <curve x1="352.34" x2="340.5" x3="305" y1="209.61" y2="232.58" y3="229.63"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="115.18" y="328.69"/> <curve x1="110.67" x2="95.69" x3="95.69" y1="328.69" y2="321.89" y3="301.21"/> <curve x1="95.69" x2="108.92" x3="116.46" y1="285.01" y2="275.17" y3="275.17"/> <line x="138.71" y="275.01"/> <line x="138.71" y="328.69"/> <close/> <move x="264.24" y="349.68"/> <line x="264.24" y="257.75"/> <line x="237.73" y="257.75"/> <line x="237.73" y="326.86"/> <line x="213.6" y="326.86"/> <curve x1="207.44" x2="202.39" x3="201.86" y1="326.86" y2="324.71" y3="316.71"/> <line x="201.86" y="257.75"/> <line x="176.8" y="257.75"/> <line x="176.8" y="324.37"/> <curve x1="176.8" x2="196.39" x3="203.75" y1="339.78" y2="349.68" y3="349.68"/> <close/> <move x="163.35" y="350.02"/> <line x="163.35" y="219"/> <line x="138.71" y="219"/> <line x="138.71" y="254.56"/> <line x="111.19" y="254.56"/> <curve x1="94.65" x2="69.96" x3="69.96" y1="254.56" y2="272.78" y3="300.41"/> <curve x1="69.76" x2="103.17" x3="110.07" y1="340.93" y2="350.02" y3="350.02"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="356.91" name="Bebo" strokewidth="inherit" w="279.08"> <connections/> <foreground> <path> <move x="0" y="24.86"/> <curve x1="0" x2="10.92" x3="27.17" y1="13.46" y2="0" y3="0"/> <curve x1="39.92" x2="53.74" x3="53.74" y1="0" y2="10.36" y3="25.34"/> <line x="53.74" y="222.24"/> <curve x1="53.74" x2="87.36" x3="139.06" y1="257.17" y2="303.36" y3="303.36"/> <curve x1="188.51" x2="224.92" x3="224.92" y1="303.36" y2="261.38" y3="219.75"/> <curve x1="224.92" x2="176.12" x3="133.18" y1="154.29" y2="127.33" y3="127.33"/> <curve x1="122.88" x2="109.9" x3="109.9" y1="127.33" y2="113.82" y3="99.53"/> <curve x1="109.9" x2="126.82" x3="138.57" y1="83.45" y2="72.94" y3="72.94"/> <curve x1="216.51" x2="279.08" x3="279.08" y1="72.94" y2="139.41" y3="215.2"/> <curve x1="279.08" x2="220.13" x3="137.7" y1="292.11" y2="356.91" y3="356.91"/> <curve x1="52.05" x2="0" x3="0" y1="356.91" y2="282.48" y3="221.11"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="228.37" name="Behance" strokewidth="inherit" w="368.98"> <connections/> <foreground> <path> <move x="239.76" y="32.56"/> <line x="239.76" y="8.91"/> <line x="331.8" y="8.91"/> <line x="331.8" y="32.56"/> <close/> <move x="322.53" y="123.07"/> <curve x1="322.53" x2="299.97" x3="287.86" y1="99" y2="88.64" y3="88.64"/> <curve x1="272.14" x2="254.57" x3="249.51" y1="88.64" y2="95.71" y3="123.07"/> <close/> <move x="365.19" y="173.16"/> <curve x1="363.34" x2="337.5" x3="287.38" y1="194.67" y2="227.17" y3="227.17"/> <curve x1="248.01" x2="216.42" x3="209.89" y1="227.17" y2="202.92" y3="176.36"/> <curve x1="197.1" x2="208.8" x3="230.34" y1="129.64" y2="92.44" y3="72.82"/> <curve x1="254.25" x2="286" x3="319.97" y1="52.65" y2="47.19" y3="58.76"/> <curve x1="349.15" x2="368.98" x3="368.55" y1="70.48" y2="93.53" y3="152.07"/> <line x="248.39" y="152.07"/> <curve x1="249.21" x2="269.51" x3="285.94" y1="178.95" y2="192.18" y3="192.18"/> <curve x1="302.28" x2="313.73" x3="321.09" y1="192.77" y2="186.22" y3="173.16"/> <close/> <move x="54.14" y="89.65"/> <line x="105.68" y="89.65"/> <curve x1="114.78" x2="134.78" x3="134.78" y1="89.65" y2="85.2" y3="65.76"/> <curve x1="134.78" x2="129.35" x3="101.85" y1="52.16" y2="40.39" y3="40.39"/> <line x="54.14" y="40.39"/> <close/> <move x="54.14" y="188.35"/> <line x="105.64" y="188.35"/> <curve x1="127.19" x2="139.25" x3="139.25" y1="188.35" y2="175.61" y3="158.65"/> <curve x1="139.25" x2="113.98" x3="104.63" y1="128.42" y2="128.18" y3="128.18"/> <line x="54.14" y="128.18"/> <close/> <move x="0" y="228.37"/> <line x="0" y="0"/> <line x="114.93" y="0"/> <curve x1="144.73" x2="180.81" x3="180.81" y1="0" y2="15.47" y3="58.12"/> <curve x1="180.81" x2="164.36" x3="152.69" y1="92.27" y2="99.76" y3="105.74"/> <curve x1="179.38" x2="188.68" x3="188.48" y1="114.58" y2="138.8" y3="160.54"/> <curve x1="188.48" x2="169.3" x3="113.38" y1="187.51" y2="228.37" y3="228.37"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="360.36" name="Bing" strokewidth="inherit" w="251.67"> <connections/> <foreground> <path> <move x="0" y="0"/> <line x="71.41" y="25.57"/> <line x="71.41" y="279.38"/> <line x="172.91" y="220.43"/> <line x="123.19" y="196.33"/> <line x="92.11" y="118.98"/> <line x="251.67" y="174.99"/> <line x="251.67" y="256.3"/> <line x="71.35" y="360.36"/> <line x="0" y="319.64"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="373.84" name="Bitbucket" strokewidth="inherit" w="325.55"> <connections/> <foreground> <path> <move x="0" y="56.38"/> <curve x1="1.36" x2="5.76" x3="20.66" y1="46.61" y2="37.02" y3="28.09"/> <curve x1="39.02" x2="59.77" x3="99.35" y1="19.28" y2="11.79" y3="4.89"/> <curve x1="136.25" x2="189.07" x3="230.51" y1="1.46" y2="0" y3="5.34"/> <curve x1="270.04" x2="286.74" x3="301.7" y1="12.64" y2="19.3" y3="27.24"/> <curve x1="315.44" x2="324.56" x3="325.55" y1="34.85" y2="43.69" y3="54.71"/> <line x="298.96" y="220.1"/> <curve x1="295.3" x2="288.02" x3="262.94" y1="229.85" y2="238.73" y3="250.28"/> <curve x1="202.55" x2="124.23" x3="60.43" y1="275.38" y2="277.15" y3="249.77"/> <curve x1="43.55" x2="33.11" x3="28.39" y1="242.5" y2="232.66" y3="223.05"/> <close/> <move x="41.92" y="270"/> <curve x1="42.18" x2="46.27" x3="50.93" y1="265.2" y2="262.52" y3="264.77"/> <curve x1="80.61" x2="122.6" x3="163.07" y1="287.35" y2="298.07" y3="298.58"/> <curve x1="206.81" x2="248.94" x3="276.39" y1="298.49" y2="285.66" y3="265.82"/> <curve x1="281.14" x2="284.8" x3="284.29" y1="261.9" y2="264.73" y3="269.32"/> <line x="272.43" y="333.04"/> <curve x1="269.69" x2="263.67" x3="253.85" y1="341.62" y2="348.12" y3="354.46"/> <curve x1="225.07" x2="198.01" x3="156.51" y1="369.17" y2="373.84" y3="373.84"/> <curve x1="133.28" x2="112.98" x3="91.21" y1="373.84" y2="371.68" y3="363.18"/> <curve x1="75.62" x2="60.77" x3="53.41" y1="357.06" y2="350.51" y3="334.65"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="70.54" y="59.51"/> <curve x1="64.98" x2="58.45" x3="58.45" y1="57.01" y2="53.07" y3="48.67"/> <curve x1="58.45" x2="64.94" x3="73.59" y1="43.24" y2="39.03" y3="35.9"/> <curve x1="100.94" x2="135.67" x3="164.65" y1="27.4" y2="24.49" y3="24.49"/> <curve x1="197.33" x2="228.53" x3="248.25" y1="24.49" y2="28.73" y3="34.32"/> <curve x1="258.08" x2="267.2" x3="267.2" y1="37.8" y2="42.26" y3="48.14"/> <curve x1="267.2" x2="259.46" x3="250.1" y1="53.74" y2="57.84" y3="61.51"/> <curve x1="222.56" x2="191.67" x3="159.45" y1="70.8" y2="71.49" y3="71.49"/> <curve x1="130.66" x2="91.9" x3="70.54" y1="71.49" y2="68.98" y3="59.51"/> <close/> <move x="163.6" y="206.44"/> <curve x1="177.42" x2="188.4" x3="188.4" y1="206.44" y2="192.58" y3="181.34"/> <curve x1="188.4" x2="179.43" x3="163.28" y1="169.52" y2="155.4" y3="155.4"/> <curve x1="149.39" x2="137.28" x3="137.28" y1="155.4" y2="168.2" y3="181.58"/> <curve x1="137.28" x2="150.86" x3="163.6" y1="193.37" y2="206.44" y3="206.44"/> <close/> <move x="163.09" y="234.14"/> <curve x1="135.67" x2="111.1" x3="111.1" y1="234.14" y2="211.01" y3="185.6"/> <curve x1="111.1" x2="143.13" x3="163.44" y1="144.68" y2="129.78" y3="129.78"/> <curve x1="188.8" x2="215.06" x3="215.06" y1="129.78" y2="152.91" y3="182.83"/> <curve x1="215.06" x2="192.25" x3="163.09" y1="209.04" y2="234.14" y3="234.14"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="359.18" name="Blinklist" strokewidth="inherit" w="405.68"> <connections/> <foreground> <path> <move x="189.22" y="179.7"/> <line x="128.2" y="147.67"/> <curve x1="143.33" x2="175.5" x3="231.13" y1="106.51" y2="76.62" y3="76.62"/> <curve x1="275.92" x2="329.97" x3="329.97" y1="76.62" y2="116.85" y3="179.66"/> <curve x1="329.97" x2="277.06" x3="226.57" y1="243.4" y2="283.45" y3="283.45"/> <curve x1="176.49" x2="141.54" x3="128.27" y1="283.45" y2="250.32" y3="213.35"/> <close/> <move x="0" y="249.41"/> <line x="0.08" y="110.65"/> <line x="128.95" y="178.92"/> <close/> <move x="93.76" y="226.17"/> <curve x1="115.68" x2="170.9" x3="228.96" y1="286.04" y2="320.36" y3="320.36"/> <curve x1="298.08" x2="366.48" x3="366.48" y1="320.36" y2="259.47" y3="179.73"/> <curve x1="366.48" x2="298.17" x3="225.33" y1="99.3" y2="39.92" y3="39.92"/> <curve x1="173.03" x2="114.41" x3="94.75" y1="39.92" y2="74.54" y3="133.26"/> <line x="58.96" y="113.92"/> <curve x1="78.94" x2="136.34" x3="227.2" y1="62.42" y2="0" y3="0"/> <curve x1="323.33" x2="405.68" x3="405.68" y1="0" y2="81.31" y3="179.91"/> <curve x1="405.68" x2="340.95" x3="224.97" y1="265.2" y2="359.18" y3="359.18"/> <curve x1="141.53" x2="81.89" x3="58.61" y1="359.18" y2="304.21" y3="245.53"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="291.1" name="Blogger" strokewidth="inherit" w="289.71"> <connections/> <foreground> <path> <move x="144.17" y="110.27"/> <curve x1="155.42" x2="161.59" x3="161.59" y1="110.27" y2="100.63" y3="94.19"/> <curve x1="161.59" x2="155.11" x3="143.12" y1="85.58" y2="75.91" y3="75.91"/> <line x="93.61" y="75.89"/> <curve x1="82.01" x2="75.71" x3="75.71" y1="75.89" y2="86.26" y3="92.99"/> <curve x1="75.71" x2="83.08" x3="94.48" y1="101.29" y2="110.57" y3="110.57"/> <close/> <move x="196.42" y="214.9"/> <curve x1="207.14" x2="213.52" x3="213.52" y1="214.9" y2="207.21" y3="198.13"/> <curve x1="213.45" x2="207.8" x3="196.02" y1="190.54" y2="180.87" y3="180.87"/> <line x="93.13" y="181.03"/> <curve x1="83.01" x2="76.11" x3="76.11" y1="181.03" y2="189" y3="197.81"/> <curve x1="76.11" x2="85.9" x3="94.48" y1="209.55" y2="215.14" y3="215.14"/> <close/> <move x="85.52" y="291.1"/> <curve x1="42.09" x2="0.23" x3="0.23" y1="291.1" y2="245.62" y3="205.83"/> <line x="0" y="88.88"/> <curve x1="0" x2="43.27" x3="88.08" y1="42.4" y2="0.64" y3="0.64"/> <line x="158.24" y="0"/> <curve x1="215.51" x2="235.36" x3="237.07" y1="15.25" y2="50.75" y3="93.16"/> <curve x1="238.49" x2="243.27" x3="254.59" y1="105.74" y2="109.16" y3="109.82"/> <line x="275.19" y="111.21"/> <curve x1="285.9" x2="289.71" x3="289.71" y1="111.21" y2="120.78" y3="123.69"/> <line x="289.22" y="203.53"/> <curve x1="289.22" x2="244.7" x3="202.29" y1="249.1" y2="291.06" y3="291.06"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="322.11" name="Blogmarks" strokewidth="inherit" w="188.42"> <connections/> <foreground> <fillcolor color="#999999"/> <path> <move x="0" y="221.29"/> <line x="0" y="0"/> <line x="188.27" y="110.87"/> <close/> </path> <fill/> <fillcolor color="#89c540"/> <path> <move x="0" y="322.11"/> <line x="0" y="99.85"/> <line x="188.42" y="211.31"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="313.69" name="Bookmarks.fr" strokewidth="inherit" w="351.31"> <connections/> <foreground> <fillcolor color="#ffffff"/> <path> <move x="250.17" y="127.58"/> <curve x1="249.09" x2="242.36" x3="232.57" y1="116.96" y2="106.73" y3="96.72"/> <curve x1="220.83" x2="204.11" x3="189.03" y1="86.37" y2="77.35" y3="78.52"/> <curve x1="170.64" x2="158.86" x3="157.88" y1="80.38" y2="88.55" y3="103.41"/> <curve x1="165.1" x2="189.54" x3="213.1" y1="131.32" y2="146.71" y3="149.98"/> <curve x1="227.57" x2="244.29" x3="250.17" y1="151.7" y2="147.29" y3="127.58"/> <close/> <move x="95.95" y="226.26"/> <curve x1="83.38" x2="51.22" x3="36.67" y1="236.65" y2="230.85" y3="220.18"/> <curve x1="6.53" x2="0" x3="4.72" y1="197.63" y2="173.39" y3="150.36"/> <line x="139.41" y="101.95"/> <line x="45.78" y="69.67"/> <curve x1="40.07" x2="34.75" x3="40.35" y1="67.62" y2="45.63" y3="38.52"/> <line x="172.81" y="69.51"/> <line x="157.31" y="26.69"/> <curve x1="154.89" x2="159.99" x3="168.17" y1="20.44" y2="11.44" y3="6.56"/> <curve x1="189.69" x2="233.22" x3="232.72" y1="17" y2="24.32" y3="37.88"/> <line x="224.89" y="77.98"/> <line x="313.89" y="100.51"/> <curve x1="315.65" x2="317.47" x3="310.37" y1="106" y2="115.3" y3="115.85"/> <line x="260.84" y="118.89"/> <line x="346.48" y="174.65"/> <curve x1="347.88" x2="349.5" x3="339.45" y1="185.69" y2="200.82" y3="215.87"/> <curve x1="332" x2="320.09" x3="305.74" y1="224.52" y2="228.54" y3="225.78"/> <line x="236.08" y="152.92"/> <line x="281.93" y="250.38"/> <curve x1="282.22" x2="280.01" x3="249.66" y1="268.82" y2="291.57" y3="305.03"/> <curve x1="223.22" x2="196.52" x3="180.47" y1="313.69" y2="308.56" y3="302.63"/> <curve x1="161.89" x2="157.07" x3="152.67" y1="293.48" y2="277.86" y3="262.05"/> <curve x1="151.59" x2="153.09" x3="155.39" y1="251.3" y2="243.79" y3="237.28"/> <line x="178.56" y="147.8"/> <close/> </path> <fill/> <fillcolor color="#cd3467"/> <path> <move x="223.12" y="78.46"/> <line x="259" y="47.62"/> <curve x1="263.46" x2="269.72" x3="276.22" y1="46.28" y2="47.33" y3="50.25"/> <curve x1="287.72" x2="297.99" x3="306.11" y1="56.04" y2="67.52" y3="77.43"/> <curve x1="313.31" x2="320.63" x3="310.52" y1="86.91" y2="101.66" y3="104.55"/> <line x="248.65" y="109.76"/> <curve x1="243.86" x2="234.04" x3="223.12" y1="95.77" y2="84.92" y3="78.46"/> <close/> <move x="157.35" y="97.33"/> <line x="45.26" y="58.37"/> <curve x1="36.63" x2="37.3" x3="40.03" y1="47.44" y2="35.56" y3="26.28"/> <curve x1="48.73" x2="62.65" x3="76.87" y1="11.94" y2="5.32" y3="3.68"/> <curve x1="91.1" x2="102.32" x3="112.97" y1="2.56" y2="4.45" y3="6.9"/> <line x="175.15" y="70.32"/> <curve x1="160.73" x2="157.41" x3="157.35" y1="75.97" y2="86.01" y3="97.33"/> <close/> <move x="237.76" y="145.09"/> <line x="281.53" y="242.95"/> <curve x1="284.07" x2="278.4" x3="258.69" y1="255.08" y2="277.63" y3="289.61"/> <curve x1="238.15" x2="212.93" x3="191.26" y1="301.17" y2="300.02" y3="295.12"/> <curve x1="166.93" x2="149.99" x3="152.99" y1="287.43" y2="265.7" y3="236.08"/> <line x="180.4" y="136.38"/> <curve x1="188.79" x2="199.74" x3="211.95" y1="144.26" y2="148.01" y3="149.72"/> <curve x1="221.3" x2="230.11" x3="237.76" y1="150.68" y2="149.86" y3="145.09"/> <close/> </path> <fill/> <fillcolor color="#a3ce39"/> <path> <move x="249.64" y="111.45"/> <line x="317.66" y="140.6"/> <curve x1="337.57" x2="346.91" x3="349.06" y1="149.78" y2="159.68" y3="170.06"/> <curve x1="351.31" x2="346.23" x3="330.62" y1="183.18" y2="202.64" y3="211.72"/> <curve x1="323.37" x2="313.82" x3="305.67" y1="215.82" y2="217.62" y3="214.78"/> <line x="238.15" y="144.87"/> <curve x1="247" x2="253.61" x3="249.64" y1="138.87" y2="130.58" y3="111.45"/> <close/> <move x="177.61" y="69.37"/> <line x="157.08" y="13.69"/> <curve x1="162.57" x2="171.15" x3="184.17" y1="5.05" y2="0" y3="0.1"/> <curve x1="197.31" x2="209.52" x3="220.26" y1="1.28" y2="5.52" y3="14.53"/> <curve x1="228.31" x2="231.07" x3="231.5" y1="22.42" y2="29.1" y3="33.71"/> <line x="222.18" y="77.75"/> <curve x1="206.72" x2="194.78" x3="177.61" y1="69.21" y2="65.38" y3="69.37"/> <close/> <move x="180.4" y="136.38"/> <line x="93.29" y="217.64"/> <curve x1="77.97" x2="54.43" x3="40.35" y1="225.35" y2="219.97" y3="211.12"/> <curve x1="32.1" x2="1.84" x3="4.03" y1="206.22" y2="181.3" y3="145.62"/> <curve x1="8.25" x2="26.32" x3="41.95" y1="120.58" y2="109.31" y3="101.04"/> <line x="156.8" y="98.69"/> <curve x1="158.68" x2="171.66" x3="180.4" y1="117.24" y2="129.66" y3="136.38"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="320.61" name="Box" strokewidth="inherit" w="223.09"> <connections/> <foreground> <path> <move x="112.48" y="269.71"/> <curve x1="145.79" x2="171.88" x3="171.88" y1="269.71" y2="240.51" y3="208.87"/> <curve x1="171.88" x2="148.05" x3="109.36" y1="176.86" y2="148.31" y3="148.31"/> <curve x1="75.76" x2="50.53" x3="50.53" y1="148.31" y2="177.78" y3="206.59"/> <curve x1="50.53" x2="83.05" x3="112.48" y1="248.92" y2="269.71" y3="269.71"/> <close/> <move x="0.04" y="23.5"/> <curve x1="0.04" x2="10.68" x3="25.64" y1="11.44" y2="0" y3="0"/> <curve x1="44.5" x2="51.09" x3="51.09" y1="0" y2="14.95" y3="26.02"/> <line x="50.94" y="115.8"/> <curve x1="65.93" x2="83.98" x3="113.68" y1="105.17" y2="97.37" y3="97.37"/> <curve x1="175.72" x2="223.09" x3="223.09" y1="97.37" y2="151.47" y3="208.57"/> <curve x1="223.09" x2="180.22" x3="107.25" y1="263.45" y2="320.61" y3="320.61"/> <curve x1="64.24" x2="0" x3="0" y1="320.61" y2="285.05" y3="205.79"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="284.77" name="Buddymarks" strokewidth="inherit" w="396.77"> <connections/> <foreground> <fillcolor color="#531213"/> <path> <move x="32.48" y="212.98"/> <curve x1="26" x2="17.82" x3="10.35" y1="216.85" y2="218.35" y3="214.62"/> <curve x1="3.49" x2="0" x3="0.55" y1="209.2" y2="208.01" y3="197.98"/> <curve x1="0.66" x2="1.96" x3="3.22" y1="193.85" y2="190.51" y3="187.14"/> <line x="57.58" y="118.52"/> <curve x1="49.65" x2="39.55" x3="38.42" y1="109.77" y2="96.17" y3="69.21"/> <curve x1="38.42" x2="70.33" x3="109.71" y1="33.76" y2="0" y3="0"/> <curve x1="149.66" x2="180.56" x3="180.56" y1="0" y2="33.99" y3="69.81"/> <curve x1="180.56" x2="173.25" x3="164.96" y1="89.25" y2="104.6" y3="114.51"/> <line x="193.37" y="146.4"/> <line x="215.5" y="118.53"/> <curve x1="206.6" x2="196.31" x3="196.31" y1="108.55" y2="92.19" y3="69.96"/> <curve x1="196.31" x2="226.74" x3="268.61" y1="34.77" y2="0.2" y3="0.2"/> <curve x1="307.28" x2="338.13" x3="338.13" y1="0.2" y2="33.33" y3="70.62"/> <curve x1="338.13" x2="331.05" x3="323.1" y1="89.67" y2="104.05" y3="114.65"/> <curve x1="347.85" x2="376.26" x3="392.21" y1="142.1" y2="172.91" y3="193.68"/> <curve x1="396.35" x2="396.77" x3="392.21" y1="200.42" y2="207.33" y3="214.47"/> <curve x1="386.49" x2="380.49" x3="374.38" y1="222.85" y2="228.1" y3="232.14"/> <curve x1="367.92" x2="362.48" x3="354.93" y1="236.24" y2="238.84" y3="238.98"/> <curve x1="351.06" x2="342.23" x3="334.28" y1="252.89" y2="261.59" y3="267.2"/> <curve x1="319.29" x2="288.82" x3="257.64" y1="276.72" y2="282.08" y3="282.2"/> <curve x1="231.94" x2="209.2" x3="193.48" y1="282.43" y2="275.27" y3="247.44"/> <curve x1="188.48" x2="181.52" x3="164.37" y1="257.65" y2="265.53" y3="273.14"/> <curve x1="150.48" x2="111.77" x3="79.86" y1="278.61" y2="284.77" y3="280.86"/> <curve x1="67.49" x2="46.22" x3="35.15" y1="278.91" y2="269.11" y3="246.4"/> <curve x1="31.67" x2="31.49" x3="32.48" y1="235.88" y2="223.78" y3="212.98"/> <close/> </path> <fill/> <fillcolor color="#a4010c"/> <path> <move x="324.95" y="132.6"/> <line x="375.54" y="189.76"/> <curve x1="379.13" x2="378.51" x3="375.96" y1="194.96" y2="199.58" y3="203.94"/> <curve x1="367.14" x2="359.86" x3="353.17" y1="214.86" y2="219.75" y3="219.8"/> <line x="311.21" y="143.03"/> <close/> <move x="293.62" y="136.99"/> <line x="338.57" y="219.9"/> <curve x1="340.44" x2="330.78" x3="316.72" y1="235" y2="249.2" y3="257.08"/> <curve x1="298.65" x2="267.06" x3="240.16" y1="266.31" y2="268.57" y3="266.11"/> <curve x1="223.09" x2="210.76" x3="204.25" y1="263.38" y2="250.3" y3="238.39"/> <curve x1="210.75" x2="218.95" x3="231.87" y1="236.88" y2="232.06" y3="218.01"/> <curve x1="242.6" x2="237.27" x3="227.67" y1="204.24" y2="195.32" y3="184.83"/> <line x="214.43" y="170.23"/> <line x="231.55" y="132.1"/> <curve x1="252.56" x2="273.38" x3="293.62" y1="144.37" y2="144.25" y3="136.99"/> <close/> <move x="207.13" y="162.46"/> <line x="198" y="151.17"/> <line x="209.34" y="136.83"/> <line x="212.8" y="144.55"/> <close/> <move x="266.63" y="124.02"/> <curve x1="237.72" x2="213.8" x3="213.8" y1="124.02" y2="100.07" y3="70.98"/> <curve x1="213.8" x2="241.63" x3="265.68" y1="37.83" y2="17" y3="17"/> <curve x1="292.88" x2="321.24" x3="321.24" y1="17" y2="38.42" y3="72.35"/> <curve x1="321.24" x2="302.09" x3="266.63" y1="94.4" y2="124.02" y3="124.02"/> <close/> <move x="107.62" y="124.33"/> <curve x1="87.75" x2="55.64" x3="55.64" y1="124.33" y2="105.9" y3="70.04"/> <curve x1="55.64" x2="80.02" x3="107.94" y1="40.18" y2="17.52" y3="17.52"/> <curve x1="140.64" x2="162.97" x3="162.97" y1="17.52" y2="43.94" y3="71.09"/> <curve x1="162.97" x2="142.46" x3="107.62" y1="97.27" y2="124.33" y3="124.33"/> <close/> <move x="167.25" y="132.6"/> <line x="215.98" y="187.83"/> <curve x1="221.81" x2="220.81" x3="216.4" y1="195.45" y2="199.37" y3="205.87"/> <curve x1="209.52" x2="202.46" x3="195.19" y1="214.81" y2="219.53" y3="219.36"/> <line x="153.26" y="143.06"/> <close/> <move x="134.41" y="135.99"/> <line x="181.35" y="220.95"/> <curve x1="180.43" x2="171.17" x3="159.4" y1="239.68" y2="249.65" y3="256.98"/> <curve x1="144.89" x2="119.35" x3="85.25" y1="264.49" y2="267.57" y3="266.64"/> <curve x1="59.05" x2="35.43" x3="45.66" y1="261.73" y2="243.28" y3="196.69"/> <line x="73.49" y="132.1"/> <curve x1="92.03" x2="115.28" x3="134.41" y1="142.33" y2="146.21" y3="135.99"/> <close/> <move x="34.68" y="195.33"/> <curve x1="37" x2="25.19" x3="17.91" y1="204.81" y2="207.94" y3="207.54"/> <curve x1="7.33" x2="6.81" x3="11.76" y1="205.08" y2="193.98" y3="186.57"/> <line x="51.49" y="136.77"/> <line x="55.06" y="144.81"/> <curve x1="51.16" x2="42.14" x3="34.68" y1="158.96" y2="179.4" y3="195.33"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="302.21" name="Buffer" strokewidth="inherit" w="352.07"> <connections/> <foreground> <path> <move x="175.92" y="158.24"/> <line x="0" y="79.24"/> <line x="175.92" y="0"/> <line x="352.07" y="79.27"/> <close/> <move x="175.92" y="230.04"/> <line x="0" y="151.03"/> <line x="44.94" y="130.9"/> <line x="175.92" y="190.1"/> <line x="307.49" y="130.98"/> <line x="352.07" y="151.03"/> <close/> <move x="175.92" y="302.21"/> <line x="0" y="222.93"/> <line x="44.94" y="202.56"/> <line x="175.92" y="261.83"/> <line x="307.49" y="202.66"/> <line x="352.07" y="222.85"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="393.24" name="Buzzfeed" strokewidth="inherit" w="392.52"> <connections/> <foreground> <path> <move x="196.18" y="393.24"/> <curve x1="105.88" x2="0" x3="0" y1="393.24" y2="319.24" y3="196.34"/> <curve x1="0" x2="93.88" x3="196.18" y1="84.24" y2="0" y3="0"/> <curve x1="300.29" x2="392.52" x3="392.52" y1="0" y2="81.2" y3="196.34"/> <curve x1="392.52" x2="307.5" x3="196.18" y1="305.19" y2="393.24" y3="393.24"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="106.32" y="314.94"/> <line x="66.73" y="293.05"/> <line x="135.62" y="174.21"/> <line x="204.67" y="214.28"/> <line x="244.62" y="145.53"/> <line x="201.1" y="121.22"/> <line x="309.07" y="77.46"/> <line x="325.13" y="192.42"/> <line x="282.46" y="167.54"/> <line x="221.86" y="274.29"/> <line x="150.7" y="235.69"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="377.76" name="Chrome" strokewidth="inherit" w="374.33"> <connections/> <foreground> <fillcolor color="#4cb749"/> <path> <move x="170.34" y="369.05"/> <curve x1="90.34" x2="0" x3="0" y1="364.08" y2="293.9" y3="185.16"/> <curve x1="0" x2="68.79" x3="189.96" y1="93.99" y2="0" y3="0"/> <curve x1="318.78" x2="374.33" x3="369.26" y1="7.91" y2="113.91" y3="192.09"/> <curve x1="365.98" x2="272.7" x3="170.34" y1="297.17" y2="377.49" y3="369.05"/> <close/> </path> <fill/> <fillcolor color="#df2227"/> <path> <move x="105.68" y="209.95"/> <line x="31.39" y="81.16"/> <curve x1="63.26" x2="113.86" x3="189.96" y1="35.83" y2="0" y3="0"/> <curve x1="258.03" x2="320.19" x3="350.67" y1="3.47" y2="39.51" y3="102.67"/> <line x="181.52" y="102.79"/> <curve x1="159.49" x2="131.83" x3="115.26" y1="103.1" y2="114.71" y3="140.57"/> <curve x1="104.77" x2="97.24" x3="105.68" y1="156.71" y2="181.61" y3="209.95"/> <close/> </path> <fill/> <fillcolor color="#e4e2e2"/> <path> <move x="182.65" y="266.8"/> <curve x1="138.61" x2="101.98" x3="101.98" y1="266.8" y2="229.8" y3="185.59"/> <curve x1="103.48" x2="149.29" x3="181.52" y1="128.76" y2="103.37" y3="102.79"/> <curve x1="240.12" x2="266.14" x3="266.14" y1="102.79" y2="151.46" y3="185.77"/> <curve x1="264.52" x2="232.65" x3="182.65" y1="230.37" y2="266.8" y3="266.8"/> <close/> </path> <fill/> <fillcolor color="#fcd209"/> <path> <move x="170.34" y="369.05"/> <line x="247.81" y="237.13"/> <curve x1="258.11" x2="265.84" x3="265.93" y1="224.68" y2="204.89" y3="185.77"/> <curve x1="265.93" x2="238.65" x3="181.52" y1="148.4" y2="102.79" y3="102.79"/> <line x="350.67" y="102.67"/> <curve x1="365.35" x2="370.97" x3="369.26" y1="132.54" y2="165.8" y3="192.09"/> <curve x1="366.97" x2="285.11" x3="170.34" y1="284.43" y2="377.76" y3="369.05"/> <close/> </path> <fill/> <fillcolor color="#236ba2"/> <path> <move x="184.4" y="251.8"/> <curve x1="148.48" x2="117.33" x3="117.33" y1="251.8" y2="222.38" y3="185.48"/> <curve x1="117.33" x2="152.46" x3="183.72" y1="143.05" y2="117.84" y3="117.84"/> <curve x1="215.58" x2="251.35" x3="251.35" y1="117.84" y2="141.63" y3="185.98"/> <curve x1="251.35" x2="223.31" x3="184.4" y1="219.28" y2="251.8" y3="251.8"/> <close/> </path> <fill/> <fillcolor color="#000000"/> <alpha alpha="0.1"/> <path> <move x="353.04" y="107.83"/> <line x="248.16" y="134.06"/> <curve x1="234.7" x2="214.39" x3="185.11" y1="117.58" y2="103.99" y3="102.74"/> <line x="350.64" y="102.68"/> <close/> <move x="34.83" y="76.3"/> <line x="108.49" y="153.41"/> <curve x1="99.7" x2="100.99" x3="105.75" y1="175.36" y2="194.59" y3="210.12"/> <line x="31.39" y="81.22"/> <close/> <move x="170.34" y="369.15"/> <line x="199.75" y="265.41"/> <curve x1="218.49" x2="234.83" x3="247.97" y1="261.64" y2="252.63" y3="236.95"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="179.45" name="Citeulike" strokewidth="inherit" w="377.09"> <connections/> <foreground> <path> <move x="19.85" y="159.62"/> <line x="127.49" y="159.62"/> <line x="127.49" y="19.95"/> <line x="19.85" y="19.95"/> <close/> <move x="306.34" y="26.17"/> <line x="306.34" y="19.04"/> <line x="357.91" y="19.04"/> <line x="357.91" y="26.17"/> <close/> <move x="306.34" y="45.45"/> <line x="306.34" y="38.32"/> <line x="357.91" y="38.32"/> <line x="357.91" y="45.45"/> <close/> <move x="306.34" y="64.44"/> <line x="306.34" y="57.78"/> <line x="357.91" y="57.78"/> <line x="357.91" y="64.44"/> <close/> <move x="306.34" y="84"/> <line x="306.34" y="76.68"/> <line x="357.91" y="76.68"/> <line x="357.91" y="84"/> <close/> <move x="294.1" y="95.9"/> <line x="369.84" y="95.9"/> <line x="369.84" y="7.22"/> <line x="294.1" y="7.22"/> <close/> <move x="286.89" y="102.87"/> <line x="286.89" y="0"/> <line x="377.09" y="0"/> <line x="377.09" y="102.87"/> <close/> <move x="184.94" y="38.97"/> <line x="184.94" y="25.76"/> <line x="249.11" y="25.76"/> <line x="249.11" y="38.97"/> <close/> <move x="184.94" y="64.51"/> <line x="184.94" y="51.21"/> <line x="249.11" y="51.21"/> <line x="249.11" y="64.51"/> <close/> <move x="184.94" y="90.06"/> <line x="184.94" y="76.8"/> <line x="249.11" y="76.8"/> <line x="249.11" y="90.06"/> <close/> <move x="184.94" y="115.29"/> <line x="184.94" y="102.03"/> <line x="249.11" y="102.03"/> <line x="249.11" y="115.29"/> <close/> <move x="172.92" y="127.71"/> <line x="261.66" y="127.71"/> <line x="261.66" y="13.4"/> <line x="172.92" y="13.4"/> <close/> <move x="159.5" y="141.04"/> <line x="159.5" y="0"/> <line x="274.97" y="0"/> <line x="274.97" y="141.04"/> <close/> <move x="32.03" y="51.65"/> <line x="32.03" y="32.1"/> <line x="115.14" y="32.1"/> <line x="115.14" y="51.65"/> <close/> <move x="32.03" y="83.63"/> <line x="32.03" y="64.05"/> <line x="115.14" y="64.05"/> <line x="115.14" y="83.63"/> <close/> <move x="32.03" y="115.2"/> <line x="32.03" y="96.09"/> <line x="115.14" y="96.09"/> <line x="115.14" y="115.2"/> <close/> <move x="32.03" y="147.42"/> <line x="32.03" y="127.91"/> <line x="115.14" y="127.91"/> <line x="115.14" y="147.42"/> <close/> <move x="0" y="179.29"/> <line x="0" y="0"/> <line x="147.09" y="0"/> <line x="147.09" y="179.45"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="333.57" name="Confluence" strokewidth="inherit" w="388.37"> <connections/> <foreground> <path> <move x="220.82" y="26.22"/> <curve x1="224.32" x2="228.92" x3="226.71" y1="26.27" y2="30.12" y3="35.2"/> <curve x1="220.28" x2="213.7" x3="197.97" y1="51.82" y2="61.15" y3="77.09"/> <curve x1="194.67" x2="190.63" x3="187.76" y1="80.23" y2="80.36" y3="77.2"/> <curve x1="178.63" x2="167.17" x3="159.74" y1="67.7" y2="55.06" y3="37.15"/> <curve x1="158.16" x2="159.91" x3="165.44" y1="30.48" y2="25.96" y3="25.83"/> <curve x1="185.45" x2="203.93" x3="220.82" y1="26.67" y2="26.81" y3="26.22"/> <close/> <move x="46.5" y="8.13"/> <curve x1="46.63" x2="51.86" x3="54.58" y1="2.99" y2="0.08" y3="0.74"/> <curve x1="75.19" x2="92.64" x3="108.4" y1="8.03" y2="13.54" y3="17.55"/> <curve x1="110.87" x2="113" x3="113.98" y1="18.32" y2="20.16" y3="22.15"/> <curve x1="120.27" x2="128.85" x3="137.5" y1="38.77" y2="50.8" y3="62.7"/> <curve x1="157.43" x2="170.6" x3="185.46" y1="88.08" y2="99.36" y3="115.83"/> <curve x1="190.72" x2="196" x3="200.26" y1="121.64" y2="120.69" y3="115.12"/> <curve x1="213.92" x2="232.7" x3="248.92" y1="101.92" y2="81.68" y3="61.66"/> <curve x1="255.93" x2="265.05" x3="270.38" y1="52.34" y2="38.85" y3="24.87"/> <curve x1="271.72" x2="273.41" x3="278.39" y1="21.18" y2="17.76" y3="16.86"/> <curve x1="297.53" x2="316.94" x3="329.6" y1="13.23" y2="5.93" y3="1.38"/> <curve x1="334.2" x2="339.68" x3="339.07" y1="0" y2="3.18" y3="10.84"/> <curve x1="334.62" x2="318.72" x3="287.96" y1="46.29" y2="78.24" y3="113.59"/> <curve x1="268.87" x2="254.46" x3="239.69" y1="137.11" y2="149.15" y3="165.53"/> <curve x1="237.61" x2="237.23" x3="239.27" y1="168.03" y2="170.83" y3="174.04"/> <curve x1="251.74" x2="263.54" x3="270.27" y1="190.48" y2="206.78" y3="222.02"/> <curve x1="324.08" x2="352.65" x3="365.91" y1="231.72" y2="243.55" y3="256.66"/> <curve x1="388.37" x2="380.97" x3="365.83" y1="272.9" y2="293.5" y3="304.61"/> <curve x1="354.23" x2="342.35" x3="297.76" y1="313.16" y2="321.74" y3="332.65"/> <curve x1="294.58" x2="290.79" x3="289.55" y1="333.49" y2="331.59" y3="327.75"/> <curve x1="288.8" x2="290.7" x3="293.39" y1="323.99" y2="319.71" y3="318.7"/> <curve x1="318.12" x2="339.13" x3="350.46" y1="311.38" y2="302.72" y3="290.59"/> <curve x1="356.1" x2="355.02" x3="347.59" y1="284.2" y2="279.41" y3="274.45"/> <curve x1="337.84" x2="317.37" x3="291.58" y1="267.13" y2="262.09" y3="258.17"/> <curve x1="286.21" x2="284.82" x3="285.85" y1="257.3" y2="259.1" y3="263.98"/> <curve x1="287.98" x2="288.91" x3="289.24" y1="273.08" y2="281.51" y3="287.27"/> <curve x1="289.49" x2="287.46" x3="282.08" y1="291.97" y2="295.39" y3="295.86"/> <line x="230.86" y="295.83"/> <curve x1="228.09" x2="225.71" x3="225.24" y1="295.74" y2="292.49" y3="285.59"/> <curve x1="224.37" x2="209.66" x3="174.44" y1="268.1" y2="232.91" y3="195.91"/> <curve x1="149.94" x2="132.09" x3="110.67" y1="167.25" y2="153.83" y3="128.74"/> <curve x1="86.86" x2="50.95" x3="46.5" y1="101.09" y2="62.34" y3="8.13"/> <close/> <move x="102.9" y="295.94"/> <curve x1="98.56" x2="96.15" x3="96.34" y1="295.94" y2="290.87" y3="285.93"/> <curve x1="96.75" x2="97.48" x3="99.88" y1="279.75" y2="272.9" y3="262.54"/> <curve x1="100.48" x2="99.12" x3="95.44" y1="259.64" y2="257.25" y3="257.72"/> <curve x1="75.65" x2="57.06" x3="42.06" y1="260.81" y2="264.85" y3="271.74"/> <curve x1="28.86" x2="30.02" x3="37.01" y1="278.52" y2="286.21" y3="292.32"/> <curve x1="47.25" x2="72.38" x3="90.01" y1="303.75" y2="312.07" y3="317.95"/> <curve x1="96.5" x2="97.21" x3="95.66" y1="320.26" y2="324.55" y3="328.73"/> <curve x1="93.9" x2="89.93" x3="87.6" y1="332.3" y2="333.57" y3="332.95"/> <curve x1="66.1" x2="40.52" x3="21.56" y1="327.33" y2="319.83" y3="306.11"/> <curve x1="0" x2="1.81" x3="19.6" y1="289.77" y2="271.87" y3="256.14"/> <curve x1="40.1" x2="90.92" x3="115.41" y1="238.21" y2="225.32" y3="222.21"/> <curve x1="119.34" x2="124.06" x3="129.41" y1="213.2" y2="204.98" y3="197.39"/> <curve x1="132.11" x2="138.07" x3="139.97" y1="193.97" y2="194.1" y3="196.36"/> <curve x1="150.96" x2="161.94" x3="172.93" y1="207.81" y2="219.85" y3="233.3"/> <curve x1="175.8" x2="175.92" x3="173.76" y1="237.29" y2="241.92" y3="245.58"/> <curve x1="168.62" x2="162.22" x3="160.23" y1="254.69" y2="271.19" y3="289.95"/> <curve x1="159.22" x2="155.93" x3="153.47" y1="294.74" y2="295.76" y3="295.76"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="412.76" name="Connotea" strokewidth="inherit" w="404.41"> <connections/> <foreground> <fillcolor color="#d15264"/> <path> <move x="255.12" y="229.39"/> <curve x1="254.68" x2="250.76" x3="237.03" y1="245.43" y2="267.36" y3="278.95"/> <curve x1="225.99" x2="211.64" x3="194.92" y1="287.59" y2="289.77" y3="287.32"/> <curve x1="174.27" x2="160.93" x3="154.69" y1="282.46" y2="270.39" y3="243.83"/> <curve x1="149.35" x2="152.55" x3="157.49" y1="214.16" y2="176.7" y3="159.09"/> <curve x1="165.4" x2="183.94" x3="204.21" y1="130.34" y2="121.2" y3="121.2"/> <curve x1="224.02" x2="239.15" x3="246.96" y1="121.08" y2="129.98" y3="145.46"/> <curve x1="253.23" x2="252.8" x3="252.42" y1="164.79" y2="172.37" y3="180.05"/> <line x="221.1" y="180.05"/> <curve x1="221.26" x2="220.96" x3="217.48" y1="173.77" y2="167.1" y3="157.74"/> <curve x1="214.37" x2="212.33" x3="202.4" y1="153.54" y2="148.58" y3="149.29"/> <curve x1="195.01" x2="188.17" x3="185.91" y1="149.4" y2="155.41" y3="173.03"/> <curve x1="183.61" x2="183.14" x3="184.38" y1="185.95" y2="213.86" y3="241.39"/> <curve x1="185.99" x2="191.64" x3="203.58" y1="262.18" y2="264.77" y3="264.9"/> <curve x1="221.89" x2="223.04" x3="224.34" y1="265" y2="243.55" y3="229.48"/> <close/> </path> <fill/> <fillcolor color="#92a4b0"/> <path> <move x="102.97" y="113.34"/> <line x="105.23" y="41.95"/> <line x="127.17" y="63.73"/> <line x="174.06" y="18.05"/> <curve x1="185.03" x2="213.28" x3="238.59" y1="8.62" y2="0" y3="23.18"/> <line x="294.37" y="78.43"/> <line x="273.34" y="99.54"/> <line x="215.37" y="42.32"/> <curve x1="207.11" x2="196.54" x3="188.53" y1="35.23" y2="36.85" y3="43.76"/> <line x="148.73" y="84.69"/> <line x="174.36" y="108.96"/> <close/> <move x="109.86" y="307.87"/> <line x="39.47" y="305.06"/> <line x="60.19" y="284.14"/> <line x="13.61" y="237.06"/> <curve x1="0" x2="3.09" x3="15.28" y1="219.89" y2="190.59" y3="176.64"/> <line x="75.76" y="115.52"/> <line x="97.47" y="135.95"/> <line x="40.36" y="192.57"/> <curve x1="32.32" x2="32.31" x3="38.83" y1="201.25" y2="212.32" y3="220.46"/> <line x="81.15" y="263.06"/> <line x="106.87" y="238.01"/> <close/> <move x="111.09" y="335.11"/> <line x="132.62" y="314.46"/> <line x="189.31" y="371.36"/> <curve x1="198.5" x2="208.96" x3="218.54" y1="378.84" y2="379.41" y3="370.16"/> <line x="259.55" y="329.22"/> <line x="234.51" y="305.49"/> <line x="304.89" y="300.24"/> <line x="304" y="371.4"/> <line x="281.19" y="349.86"/> <line x="234.97" y="395.55"/> <curve x1="212.05" x2="186.6" x3="171.08" y1="412.76" y2="407.86" y3="394.63"/> <close/> <move x="294.55" y="106.79"/> <line x="364.94" y="109.6"/> <line x="344.22" y="130.53"/> <line x="390.8" y="177.6"/> <curve x1="404.41" x2="401.32" x3="389.13" y1="194.77" y2="224.07" y3="238.02"/> <line x="328.65" y="299.14"/> <line x="306.94" y="278.71"/> <line x="364.05" y="222.09"/> <curve x1="372.1" x2="372.1" x3="365.58" y1="213.41" y2="202.35" y3="194.2"/> <line x="323.26" y="151.6"/> <line x="297.54" y="176.65"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="333.3" name="Dealsplus" strokewidth="inherit" w="379.63"> <connections/> <foreground> <path> <move x="163.93" y="333.3"/> <curve x1="83.81" x2="0" x3="0" y1="333.3" y2="263.44" y3="166.49"/> <curve x1="0" x2="72.88" x3="166.17" y1="78.68" y2="0" y3="0"/> <curve x1="210.03" x2="259.61" x3="284.73" y1="0" y2="20.41" y3="53.69"/> <curve x1="296.42" x2="304.69" x3="325.95" y1="42.29" y2="38.35" y3="38.35"/> <curve x1="351.09" x2="379.63" x3="379.63" y1="38.35" y2="60.99" y3="97.15"/> <curve x1="379.63" x2="359.03" x3="329.78" y1="130.13" y2="149.71" y3="156.42"/> <curve x1="330.55" x2="330.08" x3="330.1" y1="163.25" y2="166.17" y3="175.76"/> <curve x1="330.1" x2="262.1" x3="163.93" y1="249.46" y2="333.3" y3="333.3"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="95.35" y="204.18"/> <curve x1="112.46" x2="125.06" x3="124.5" y1="204.49" y2="188.09" y3="168.02"/> <curve x1="123.92" x2="121.01" x3="107.55" y1="151.82" y2="143.45" y3="133.45"/> <curve x1="96.07" x2="83.31" x3="73.54" y1="125.61" y2="129.52" y3="140.79"/> <curve x1="65.95" x2="64.08" x3="66.42" y1="150.75" y2="159.84" y3="177.74"/> <curve x1="69.78" x2="84.61" x3="95.35" y1="198" y2="203.77" y3="204.18"/> <close/> <move x="309.37" y="135.15"/> <line x="309.37" y="109.72"/> <line x="284.65" y="109.72"/> <line x="284.65" y="86.17"/> <line x="309.37" y="86.17"/> <line x="309.37" y="60.54"/> <line x="333.28" y="60.54"/> <line x="333.28" y="86.17"/> <line x="357.79" y="86.17"/> <line x="357.79" y="109.72"/> <line x="333.28" y="109.72"/> <line x="333.28" y="135.15"/> <close/> <move x="237.75" y="204.52"/> <curve x1="250.54" x2="260.53" x3="263.77" y1="204.52" y2="193.18" y3="183.35"/> <curve x1="269.23" x2="266.75" x3="256.88" y1="165.24" y2="151.01" y3="138.8"/> <curve x1="245.38" x2="228.32" x3="217.3" y1="126.52" y2="125.81" y3="138.69"/> <curve x1="210.29" x2="201.65" x3="209.67" y1="147.33" y2="163.77" y3="183.65"/> <curve x1="217.44" x2="225.7" x3="237.75" y1="200.13" y2="204.52" y3="204.52"/> <close/> <move x="224.65" y="271.14"/> <line x="163.93" y="271.14"/> <line x="163.93" y="250.53"/> <line x="181.46" y="250.53"/> <line x="181.46" y="140.27"/> <curve x1="181.3" x2="179.09" x3="173.84" y1="132.99" y2="129.36" y3="129.36"/> <line x="161.72" y="129.36"/> <line x="161.72" y="108.63"/> <line x="193.69" y="108.63"/> <curve x1="201.14" x2="204.72" x3="204.72" y1="108.63" y2="113.31" y3="117.52"/> <line x="204.72" y="124.95"/> <curve x1="218.68" x2="224.05" x3="239.59" y1="111.58" y2="105.88" y3="106.01"/> <curve x1="264.32" x2="279.15" x3="287.04" y1="106.01" y2="116.12" y3="133.49"/> <curve x1="294.88" x2="298.05" x3="287.92" y1="153.47" y2="173.5" y3="199.08"/> <curve x1="283.51" x2="270.99" x3="246.06" y1="209.44" y2="224.13" y3="227.52"/> <curve x1="234.19" x2="221.12" x3="207.07" y1="229.13" y2="227.18" y3="210.59"/> <line x="207.07" y="242.86"/> <curve x1="207.07" x2="208.29" x3="211.07" y1="248.71" y2="250.53" y3="250.53"/> <line x="224.65" y="250.53"/> <close/> <move x="167.53" y="225.33"/> <line x="138.93" y="225.33"/> <curve x1="130.04" x2="126.38" x3="126.38" y1="225.33" y2="222.09" y3="206.59"/> <curve x1="112.84" x2="106.48" x3="98.95" y1="222.95" y2="224.8" y3="226.51"/> <curve x1="78.35" x2="64.3" x3="48.57" y1="229.46" y2="227.08" y3="209.29"/> <curve x1="36.65" x2="31.18" x3="46.5" y1="194.88" y2="154.59" y3="129.97"/> <curve x1="57.67" x2="71.01" x3="86.39" y1="114.19" y2="106.35" y3="105.94"/> <curve x1="107.84" x2="117.45" x3="125.08" y1="105.52" y2="114.44" y3="125.23"/> <line x="125.08" y="83.5"/> <line x="105.73" y="83.5"/> <line x="105.73" y="62.93"/> <line x="150.5" y="62.93"/> <line x="150.5" y="194.77"/> <curve x1="150.5" x2="152.19" x3="156.28" y1="199.81" y2="204.61" y3="204.61"/> <line x="167.53" y="204.61"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="359.41" name="Designfloat" strokewidth="inherit" w="359.02"> <connections/> <foreground> <fillcolor color="#ffffff"/> <path> <move x="179.94" y="359.41"/> <curve x1="76.6" x2="0" x3="0" y1="359.41" y2="273.8" y3="180.71"/> <curve x1="0" x2="83.01" x3="181.03" y1="78.52" y2="0" y3="0"/> <curve x1="275.34" x2="359.02" x3="359.02" y1="0" y2="76.1" y3="180.55"/> <curve x1="359.02" x2="278.97" x3="179.94" y1="279.07" y2="359.41" y3="359.41"/> <close/> </path> <fillstroke/> <fillcolor color="#f8a838"/> <path> <move x="178.79" y="268.27"/> <curve x1="235.15" x2="268.27" x3="268.27" y1="268.27" y2="221.23" y3="182.47"/> <curve x1="268.27" x2="228.92" x3="182.47" y1="130.2" y2="91.87" y3="91.87"/> <curve x1="127.57" x2="91.87" x3="91.87" y1="91.87" y2="133.1" y3="180.71"/> <curve x1="91.87" x2="131.94" x3="178.79" y1="229.82" y2="268.27" y3="268.27"/> <close/> <move x="212.03" y="335.22"/> <curve x1="271.14" x2="325.42" x3="334.42" y1="326.05" y2="270.21" y3="213.06"/> <line x="273.7" y="213.06"/> <curve x1="262.45" x2="243.12" x3="212.03" y1="243.25" y2="260.74" y3="274.02"/> <close/> <move x="144.68" y="272.74"/> <curve x1="118.24" x2="95.46" x3="86.44" y1="261.8" y2="240.25" y3="213.06"/> <line x="25.09" y="213.06"/> <curve x1="35.4" x2="77.83" x3="144.68" y1="265.47" y2="317.84" y3="334.9"/> <close/> <move x="144.68" y="86.6"/> <line x="144.68" y="25.88"/> <curve x1="81.84" x2="34.03" x3="25.72" y1="37.66" y2="94.08" y3="145.48"/> <line x="86.6" y="145.48"/> <curve x1="99.19" x2="118.97" x3="144.68" y1="113.49" y2="97.77" y3="86.6"/> <close/> <move x="212.03" y="85.96"/> <curve x1="241.71" x2="262.6" x3="273.06" y1="96.25" y2="117.94" y3="145.48"/> <line x="334.42" y="145.48"/> <curve x1="323.56" x2="273.12" x3="212.03" y1="88.58" y2="35.7" y3="25.05"/> <close/> <move x="177.95" y="349.63"/> <curve x1="86.84" x2="10.07" x3="10.07" y1="349.63" y2="273.51" y3="177.03"/> <curve x1="10.07" x2="83.29" x3="180.92" y1="89.91" y2="10.26" y3="10.26"/> <curve x1="273.45" x2="349.68" x3="349.68" y1="10.26" y2="86.55" y3="182.15"/> <curve x1="349.68" x2="283.79" x3="177.95" y1="261.6" y2="349.63" y3="349.63"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="432" name="Deviantart" strokewidth="inherit" w="309.6"> <connections/> <foreground> <path> <move x="0" y="432"/> <line x="0" y="382.12"/> <line x="120.75" y="171.68"/> <line x="0" y="171.68"/> <line x="0" y="67.57"/> <line x="181.66" y="67.57"/> <line x="219.52" y="0"/> <line x="309.6" y="0"/> <line x="309.6" y="51.81"/> <line x="188.81" y="261.64"/> <line x="309.6" y="261.64"/> <line x="309.6" y="365.14"/> <line x="127.97" y="365.14"/> <line x="90.08" y="432"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="280.26" name="Digg" strokewidth="inherit" w="290.45"> <connections/> <foreground> <save/> <path> <move x="48.41" y="155.42"/> <line x="48.41" y="221.66"/> <arc large-arc-flag="1" rx="40.76" ry="25.48" sweep-flag="0" x="58.6" x-axis-rotation="0" y="221.66"/> <line x="58.6" y="155.42"/> <line x="104.46" y="155.42"/> <line x="104.46" y="84.08"/> <arc large-arc-flag="0" rx="53.5" ry="61.15" sweep-flag="0" x="2.55" x-axis-rotation="0" y="84.08"/> <line x="2.55" y="155.42"/> <close/> </path> <fillstroke/> <fillcolor color="#000000"/> <path> <move x="45.86" y="219.34"/> <line x="45.86" y="158"/> <line x="2.56" y="157.97"/> <curve x1="1.17" x2="0" x3="0" y1="157.97" y2="156.95" y3="155.29"/> <line x="0" y="88.29"/> <curve x1="0" x2="20.76" x3="53.58" y1="70.23" y2="39.02" y3="39.02"/> <curve x1="74.98" x2="91.46" x3="99.3" y1="39.02" y2="52.72" y3="66.16"/> <line x="132.44" y="66.22"/> <line x="132.44" y="3.06"/> <curve x1="132.44" x2="133.19" x3="135.11" y1="1.49" y2="0" y3="0"/> <line x="236.91" y="0"/> <curve x1="238.58" x2="239.48" x3="239.48" y1="0" y2="1.39" y3="2.43"/> <line x="239.49" y="66.24"/> <line x="288" y="66.25"/> <curve x1="289.21" x2="290.45" x3="290.45" y1="66.25" y2="67.35" y3="68.79"/> <line x="290.44" y="140"/> <curve x1="290.44" x2="289.36" x3="287.73" y1="141.58" y2="142.71" y3="142.71"/> <line x="249.65" y="142.71"/> <line x="249.69" y="277.84"/> <curve x1="249.69" x2="248.8" x3="247.03" y1="278.87" y2="280.26" y3="280.26"/> <line x="124.77" y="280.26"/> <curve x1="123.46" x2="122.29" x3="122.29" y1="280.26" y2="279.12" y3="277.76"/> <line x="122.3" y="142.68"/> <line x="107.01" y="142.68"/> <line x="107.01" y="155.51"/> <curve x1="107.01" x2="106.04" x3="104.07" y1="156.62" y2="158" y3="158"/> <line x="61.15" y="157.98"/> <line x="61.15" y="219.34"/> <curve x1="74.24" x2="85.68" x3="92.13" y1="220.91" y2="226.08" y3="234.16"/> <curve x1="97.76" x2="98.8" x3="92.67" y1="241.31" y2="250.33" y3="259.11"/> <curve x1="83.57" x2="67.65" x3="52.81" y1="270.55" y2="275" y3="275"/> <curve x1="44.09" x2="31.42" x3="20.49" y1="274.79" y2="273.1" y3="265.23"/> <curve x1="11" x2="5.31" x3="15.78" y1="258.12" y2="245.36" y3="233.08"/> <curve x1="22.97" x2="35.12" x3="45.86" y1="224.83" y2="220.53" y3="219.34"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="234.39" y="107.01"/> <line x="234.4" y="5.11"/> <line x="137.58" y="5.1"/> <line x="137.58" y="107.01"/> <close/> <move x="244.57" y="275.15"/> <line x="193.64" y="275.15"/> <line x="193.61" y="180.74"/> <curve x1="193.61" x2="192.63" x3="190.98" y1="179.66" y2="178.35" y3="178.35"/> <curve x1="189.85" x2="188.52" x3="188.52" y1="178.35" y2="179.36" y3="181.01"/> <line x="188.52" y="275.15"/> <line x="127.4" y="275.17"/> <line x="127.37" y="140.18"/> <curve x1="127.37" x2="126.36" x3="124.86" y1="138.79" y2="137.6" y3="137.6"/> <line x="107.01" y="137.59"/> <line x="107.01" y="83.73"/> <curve x1="105.81" x2="104.56" x3="102.3" y1="79.83" y2="75.89" y3="71.34"/> <line x="132.5" y="71.37"/> <line x="132.47" y="109.49"/> <curve x1="132.47" x2="133.93" x3="135.03" y1="111.17" y2="112.1" y3="112.1"/> <line x="236.78" y="112.08"/> <curve x1="238.42" x2="239.48" x3="239.48" y1="112.08" y2="110.99" y3="109.51"/> <line x="239.51" y="71.28"/> <line x="285.37" y="71.31"/> <line x="285.36" y="137.59"/> <line x="247.63" y="137.56"/> <curve x1="245.74" x2="244.57" x3="244.57" y1="137.54" y2="138.65" y3="140.21"/> <close/> <move x="101.87" y="152.83"/> <line x="101.91" y="84.49"/> <curve x1="97.74" x2="81.49" x3="53.41" y1="68.32" y2="44.1" y3="44.1"/> <curve x1="31.85" x2="11.57" x3="5.07" y1="44.1" y2="60.48" y3="84.49"/> <line x="5.09" y="152.87"/> <line x="48.51" y="152.88"/> <curve x1="49.8" x2="50.95" x3="50.95" y1="152.88" y2="154.09" y3="155.29"/> <line x="50.95" y="221.6"/> <curve x1="50.95" x2="50.3" x3="48.61" y1="222.66" y2="224.03" y3="224.19"/> <curve x1="31.43" x2="15.22" x3="15.22" y1="225.76" y2="234.03" y3="247.58"/> <curve x1="15.22" x2="30.35" x3="53.49" y1="257.9" y2="269.91" y3="269.91"/> <curve x1="73.12" x2="91.69" x3="91.69" y1="269.91" y2="259.89" y3="247.44"/> <curve x1="92.22" x2="75.45" x3="58.3" y1="234.6" y2="225.45" y3="224.17"/> <curve x1="57" x2="56.05" x3="56.05" y1="224.05" y2="222.91" y3="221.81"/> <line x="56.04" y="155.93"/> <curve x1="56.02" x2="56.88" x3="58.64" y1="154.15" y2="152.89" y3="152.89"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="343.86" name="Diigo" strokewidth="inherit" w="305.52"> <connections/> <foreground> <path> <move x="141.63" y="243.84"/> <curve x1="178.97" x2="205.79" x3="205.79" y1="243.84" y2="215.7" y3="180.75"/> <curve x1="205.79" x2="174.08" x3="142.68" y1="145.78" y2="117.59" y3="117.59"/> <curve x1="109.55" x2="79.26" x3="79.26" y1="117.59" y2="147.86" y3="180.23"/> <curve x1="79.26" x2="109.04" x3="141.63" y1="216.22" y2="243.84" y3="243.84"/> <close/> <move x="212.93" y="276.02"/> <line x="212.93" y="256.68"/> <curve x1="198.38" x2="181.5" x3="139.67" y1="271" y2="284.96" y3="284.96"/> <curve x1="91.61" x2="38.69" x3="38.69" y1="284.96" y2="244.15" y3="181.11"/> <curve x1="38.69" x2="89.88" x3="140.31" y1="118.65" y2="76.61" y3="76.61"/> <curve x1="178.62" x2="201.44" x3="212.93" y1="76.61" y2="92.75" y3="105.37"/> <line x="212.93" y="0"/> <line x="250.64" y="0"/> <line x="250.64" y="276.02"/> <close/> </path> <fillstroke/> <fillcolor color="#f1a942"/> <path> <move x="305.52" y="309.41"/> <curve x1="279.52" x2="250.6" x3="219.4" y1="312.15" y2="315.47" y3="322.99"/> <curve x1="196.19" x2="159.13" x3="135.57" y1="329.03" y2="337.49" y3="339.52"/> <curve x1="116.12" x2="93.11" x3="48.46" y1="341.31" y2="343.86" y3="333.69"/> <curve x1="35.14" x2="11.38" x3="0" y1="330.77" y2="320.18" y3="311.47"/> <curve x1="29.39" x2="68.77" x3="95.57" y1="319.52" y2="326.26" y3="326.51"/> <curve x1="137.65" x2="170.37" x3="200.33" y1="326.11" y2="316.72" y3="311.65"/> <curve x1="254.73" x2="282.19" x3="305.52" y1="301.62" y2="305.06" y3="309.41"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="336.81" name="Dopplr" strokewidth="inherit" w="335.13"> <connections/> <foreground> <path> <move x="167.44" y="336.81"/> <curve x1="74.98" x2="0" x3="0" y1="336.81" y2="259.8" y3="167.65"/> <curve x1="0" x2="76.45" x3="167.44" y1="77.84" y2="0" y3="0"/> <curve x1="255.71" x2="335.13" x3="335.13" y1="0" y2="69.46" y3="167.65"/> <curve x1="335.13" x2="253.45" x3="167.44" y1="269.27" y2="336.81" y3="336.81"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="167.44" y="181.83"/> <curve x1="160.23" x2="154.02" x3="154.02" y1="181.83" y2="177.44" y3="167.65"/> <curve x1="154.1" x2="158.3" x3="167.44" y1="160.69" y2="153.71" y3="153.71"/> <curve x1="176.48" x2="181.32" x3="181.24" y1="153.71" y2="158.59" y3="167.65"/> <curve x1="181.24" x2="173.96" x3="167.44" y1="178.39" y2="181.83" y3="181.83"/> <close/> <move x="274.33" y="212.74"/> <curve x1="280.11" x2="283.62" x3="284.06" y1="200.86" y2="185.82" y3="167.65"/> <curve x1="284.33" x2="273.95" x3="254.87" y1="144.67" y2="111.82" y3="90.11"/> <line x="266.26" y="78.77"/> <curve x1="268.61" x2="268.45" x3="266.1" y1="76.35" y2="71.42" y3="68.62"/> <curve x1="263.74" x2="259.06" x3="255.64" y1="65.91" y2="65.07" y3="68.07"/> <line x="177.74" y="145.88"/> <curve x1="174.96" x2="172.19" x3="167.44" y1="144.7" y2="143.48" y3="143.48"/> <curve x1="154.45" x2="143.44" x3="143.44" y1="143.48" y2="156.19" y3="167.89"/> <curve x1="143.44" x2="156.09" x3="167.28" y1="181.72" y2="191.81" y3="191.81"/> <curve x1="181.5" x2="192.28" x3="192.28" y1="191.81" y2="179.04" y3="167.65"/> <curve x1="192.28" x2="191.01" x3="188.61" y1="163.95" y2="159.44" y3="156.9"/> <line x="213.22" y="132.3"/> <curve x1="223.08" x2="224.56" x3="224.56" y1="144.24" y2="157.3" y3="167.65"/> <curve x1="224.56" x2="195.66" x3="167.44" y1="202.21" y2="224.65" y3="224.65"/> <curve x1="138.27" x2="110.64" x3="110.64" y1="224.65" y2="201.02" y3="167.65"/> <curve x1="110.72" x2="111.61" x3="112.78" y1="161.41" y2="156.82" y3="150.34"/> <curve x1="113.42" x2="111.18" x3="106.76" y1="145.75" y2="141.54" y3="140.49"/> <curve x1="102.29" x2="98.16" x3="96.8" y1="139.36" y2="141.52" y3="147.34"/> <curve x1="95.1" x2="94.48" x3="94.59" y1="153.15" y2="160.04" y3="167.65"/> <curve x1="94.59" x2="127.66" x3="167.55" y1="206.9" y2="239.93" y3="239.93"/> <curve x1="207.75" x2="240.88" x3="240.88" y1="239.93" y2="205.57" y3="168.1"/> <curve x1="240.88" x2="234.49" x3="224.56" y1="151.24" y2="133.96" y3="121.27"/> <line x="243.57" y="100.98"/> <curve x1="261.67" x2="267.93" x3="268.18" y1="122.73" y2="145.05" y3="167.65"/> <curve x1="268.18" x2="263.01" x3="259.87" y1="185.72" y2="198.93" y3="205.87"/> <curve x1="258.49" x2="259.04" x3="262.91" y1="209.12" y2="214.62" y3="216.26"/> <curve x1="268.2" x2="272.58" x3="274.33" y1="218.13" y2="216.29" y3="212.74"/> <close/> <move x="249.3" y="253.76"/> <curve x1="257.07" x2="266.13" x3="266.13" y1="253.76" y2="246.64" y3="236.25"/> <curve x1="266.13" x2="258.44" x3="249.3" y1="227.23" y2="218.62" y3="218.62"/> <curve x1="240.17" x2="231.02" x3="231.02" y1="218.62" y2="226.33" y3="236.25"/> <curve x1="231.02" x2="240.38" x3="249.3" y1="245.14" y2="253.76" y3="253.76"/> <close/> <move x="230.23" y="264.36"/> <curve x1="232.7" x2="233.78" x3="231.39" y1="262.76" y2="257.48" y3="254.21"/> <curve x1="229.04" x2="224.31" x3="221.24" y1="250.84" y2="250.09" y3="252.03"/> <curve x1="184.55" x2="135.08" x3="99.94" y1="274.02" y2="275.87" y3="240.9"/> <curve x1="76.97" x2="58.45" x3="71.65" y1="218.85" y2="185.04" y3="137.25"/> <curve x1="72.34" x2="70.04" x3="65.41" y1="134.36" y2="130.2" y3="128.99"/> <curve x1="60.79" x2="56.77" x3="55.6" y1="127.99" y2="130.68" y3="134.97"/> <curve x1="44.05" x2="58.44" x3="87.06" y1="179.5" y2="222.48" y3="250.68"/> <curve x1="133.21" x2="188.64" x3="230.23" y1="292.03" y2="290.11" y3="264.36"/> <close/> <move x="167.44" y="314.76"/> <curve x1="94.43" x2="22.52" x3="22.52" y1="314.76" y2="256.02" y3="167.65"/> <curve x1="22.52" x2="79.66" x3="167.44" y1="94.41" y2="22.37" y3="22.37"/> <curve x1="246.26" x2="314.2" x3="314.2" y1="22.37" y2="81.8" y3="167.65"/> <curve x1="314.2" x2="249.47" x3="167.44" y1="250.27" y2="314.76" y3="314.76"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="340.84" name="Drawio1" strokewidth="inherit" w="248.35"> <connections/> <foreground> <save/> <fillcolor color="#ff8e14"/> <path> <move x="0" y="191.06"/> <line x="0" y="39.55"/> <curve x1="0" x2="19.19" x3="36.92" y1="17.89" y2="0" y3="0"/> <line x="210.28" y="0"/> <curve x1="230.94" x2="248.35" x3="248.35" y1="0" y2="20.19" y3="36.75"/> <line x="248.35" y="190.51"/> <curve x1="248.35" x2="227.54" x3="211.04" y1="210.71" y2="228" y3="228"/> <line x="35.19" y="228"/> <curve x1="22.72" x2="0" x3="0" y1="228" y2="212.42" y3="191.06"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="46.03" y="183.74"/> <curve x1="42.5" x2="38.53" x3="38.53" y1="183.74" y2="180.04" y3="175.75"/> <line x="38.53" y="137.35"/> <curve x1="38.53" x2="42.95" x3="47.35" y1="133.26" y2="129.9" y3="129.9"/> <line x="84.87" y="129.9"/> <line x="101.48" y="102.04"/> <line x="90.81" y="102.04"/> <curve x1="88.96" x2="84.87" x3="84.87" y1="102.04" y2="99.83" y3="95.86"/> <line x="84.87" y="51.42"/> <curve x1="84.87" x2="87.66" x3="91.49" y1="47.34" y2="43.79" y3="43.79"/> <line x="159.68" y="44.67"/> <curve x1="163.63" x2="166.9" x3="166.9" y1="44.67" y2="49.84" y3="52.59"/> <line x="166.85" y="94.1"/> <curve x1="166.89" x2="163.53" x3="160.78" y1="97.28" y2="102.04" y3="102.04"/> <line x="150.18" y="102.04"/> <line x="166.95" y="129.9"/> <line x="202.92" y="129.9"/> <curve x1="208.98" x2="211.91" x3="211.91" y1="129.9" y2="134.19" y3="139.11"/> <line x="211.91" y="174.2"/> <curve x1="211.91" x2="208.89" x3="204.36" y1="179.51" y2="183.74" y3="183.74"/> <line x="136.39" y="183.74"/> <curve x1="132.72" x2="129.22" x3="129.22" y1="183.74" y2="180.54" y3="175.52"/> <line x="129.22" y="138.01"/> <curve x1="129.86" x2="131.5" x3="135.07" y1="134.26" y2="131.31" y3="129.9"/> <line x="149.08" y="129.9"/> <line x="133.52" y="102.04"/> <line x="117.97" y="102.04"/> <line x="101.97" y="129.9"/> <line x="114.66" y="129.9"/> <curve x1="118.51" x2="121.22" x3="121.22" y1="129.9" y2="133.54" y3="137.9"/> <line x="121.22" y="175.97"/> <curve x1="121.22" x2="118.23" x3="113.99" y1="179.67" y2="183.74" y3="183.74"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="168.18" y="331.18"/> <line x="179.02" y="331.18"/> <line x="179.02" y="340.18"/> <line x="168.18" y="340.18"/> <close/> <move x="114.27" y="297.14"/> <line x="125.99" y="297.14"/> <line x="131.43" y="322.05"/> <line x="138.49" y="297.14"/> <line x="146.43" y="297.14"/> <line x="153.79" y="323.15"/> <line x="158.78" y="297.14"/> <line x="170.34" y="297.14"/> <line x="159.93" y="340.18"/> <line x="149.33" y="340.18"/> <line x="142.1" y="314.35"/> <line x="135.31" y="340.18"/> <line x="124.95" y="340.18"/> <close/> <move x="99.49" y="321.88"/> <curve x1="96.79" x2="93.62" x3="90.66" y1="321.14" y2="320.9" y3="321.38"/> <curve x1="87.59" x2="86.25" x3="85.97" y1="321.87" y2="323.92" y3="326.9"/> <curve x1="85.98" x2="88.46" x3="91.6" y1="329.4" y2="330.42" y3="330.38"/> <curve x1="93.98" x2="97.72" x3="99.54" y1="330.17" y2="329.39" y3="326.9"/> <close/> <move x="76.76" y="311.01"/> <curve x1="77.57" x2="79.51" x3="86.74" y1="306.1" y2="301.16" y3="298.43"/> <curve x1="91.34" x2="99.23" x3="102.96" y1="296.83" y2="297.05" y3="298.21"/> <curve x1="108.74" x2="110.96" x3="110.96" y1="300.65" y2="305.76" y3="310.07"/> <line x="110.46" y="332.25"/> <curve x1="110.99" x2="111.81" x3="112.78" y1="335.65" y2="338.11" y3="340.19"/> <line x="101.74" y="340.19"/> <curve x1="100.6" x2="99.58" x3="99.26" y1="339.29" y2="336.96" y3="334.6"/> <curve x1="97" x2="95.05" x3="92.87" y1="337.8" y2="339.7" y3="340.25"/> <curve x1="86.13" x2="84.97" x3="81.45" y1="340.84" y2="340.29" y3="338.65"/> <curve x1="76.82" x2="75.7" x3="74.34" y1="335.77" y2="334.12" y3="327.82"/> <curve x1="73.28" x2="78.7" x3="85.25" y1="321.96" y2="316.76" y3="315.43"/> <curve x1="88.9" x2="95.81" x3="99.49" y1="314.99" y2="314.94" y3="315.87"/> <line x="99.54" y="309.52"/> <curve x1="99.5" x2="96.6" x3="93.8" y1="307.44" y2="305.98" y3="306.05"/> <curve x1="89.13" x2="87.75" x3="86.85" y1="306.36" y2="308.32" y3="310.52"/> <close/> <move x="52.8" y="297.26"/> <line x="63.03" y="297.26"/> <line x="63.03" y="302.11"/> <curve x1="64.01" x2="66.72" x3="68.47" y1="300.52" y2="298.27" y3="297.47"/> <curve x1="69.81" x2="72.51" x3="75.3" y1="296.94" y2="296.83" y3="297.46"/> <line x="75.3" y="307.4"/> <curve x1="72.81" x2="70.42" x3="68.07" y1="306.24" y2="306.36" y3="306.88"/> <curve x1="66.01" x2="64.16" x3="63.55" y1="307.61" y2="308.76" y3="311.56"/> <line x="63.55" y="340"/> <line x="52.8" y="340"/> <close/> <move x="36.44" y="310.91"/> <curve x1="35.11" x2="33.66" x3="29.48" y1="308.7" y2="306.55" y3="306.38"/> <curve x1="25.11" x2="24.29" x3="22.47" y1="307.74" y2="309.2" y3="312.65"/> <curve x1="21.46" x2="21.56" x3="22.21" y1="315.5" y2="319.86" y3="324.99"/> <curve x1="23.31" x2="25.75" x3="29.14" y1="329.11" y2="330.13" y3="330.58"/> <curve x1="32.96" x2="34.9" x3="36.44" y1="331.02" y2="329.11" y3="326.65"/> <close/> <move x="37.93" y="340.06"/> <line x="37.64" y="334.21"/> <curve x1="34.28" x2="31.18" x3="25.73" y1="337.87" y2="340.04" y3="340.23"/> <curve x1="19.28" x2="15.24" x3="12.05" y1="340.16" y2="336.2" y3="332.08"/> <curve x1="9.85" x2="9.42" x3="10.13" y1="326.49" y2="320.27" y3="313.65"/> <curve x1="11.56" x2="15.46" x3="22.72" y1="306.04" y2="300.36" y3="297.32"/> <curve x1="26.43" x2="33.14" x3="36.33" y1="296.07" y2="297.99" y3="301.91"/> <line x="36.33" y="278.35"/> <line x="48.34" y="278.35"/> <line x="48.34" y="340.06"/> <close/> </path> <fill/> <fillcolor color="#ff8e14"/> <path> <move x="223.4" y="331.14"/> <curve x1="229.36" x2="232.02" x3="232.02" y1="331.14" y2="325.15" y3="319.01"/> <curve x1="232.02" x2="228.92" x3="223.4" y1="311.15" y2="305.96" y3="305.96"/> <curve x1="218.4" x2="214.77" x3="214.77" y1="305.96" y2="309.41" y3="319.01"/> <curve x1="214.77" x2="218.05" x3="223.4" y1="325.88" y2="331.14" y3="331.14"/> <close/> <move x="223.43" y="340.15"/> <curve x1="212.58" x2="203.47" x3="203.47" y1="340.15" y2="332.29" y3="319.2"/> <curve x1="203.47" x2="213.27" x3="223.48" y1="302.68" y2="296.99" y3="296.99"/> <curve x1="233.84" x2="242.89" x3="242.89" y1="296.99" y2="303.51" y3="319.58"/> <curve x1="242.89" x2="234.27" x3="223.43" y1="331.35" y2="340.15" y3="340.15"/> <close/> <move x="187.27" y="339.93"/> <line x="187.27" y="297.21"/> <line x="199.43" y="297.21"/> <line x="199.43" y="339.93"/> <close/> <move x="187.27" y="288.19"/> <line x="187.27" y="278.78"/> <line x="199.43" y="278.78"/> <line x="199.43" y="288.19"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="353.72" name="Drawio2" strokewidth="inherit" w="261.17"> <connections/> <foreground> <save/> <fillcolor color="#f08707"/> <path> <move x="260.78" y="251.96"/> <curve x1="260.78" x2="256.35" x3="253.13" y1="256.08" y2="259.93" y3="259.93"/> <line x="7.72" y="259.93"/> <curve x1="4.3" x2="0.79" x3="0.79" y1="259.93" y2="256.09" y3="252.98"/> <line x="0.79" y="8.54"/> <curve x1="0.79" x2="3.25" x3="8.36" y1="3.97" y2="0" y3="0"/> <line x="254.64" y="0.19"/> <curve x1="258.33" x2="260.73" x3="260.78" y1="0.19" y2="3.58" y3="7.99"/> <close/> </path> <fill/> <fillcolor color="#db6112"/> <path> <move x="96.9" y="259.93"/> <line x="56.82" y="199.71"/> <line x="149.82" y="61.15"/> <line x="160.49" y="59.23"/> <line x="260.77" y="161.67"/> <line x="260.77" y="252.22"/> <curve x1="260.77" x2="256.6" x3="253.33" y1="255.5" y2="260.35" y3="259.93"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="61.16" y="200.4"/> <curve x1="54.84" x2="51.86" x3="51.86" y1="200.4" y2="195.22" y3="190.93"/> <line x="51.86" y="156.82"/> <curve x1="51.86" x2="54.99" x3="59.39" y1="152.73" y2="147.63" y3="147.63"/> <line x="86.22" y="147.63"/> <line x="110.12" y="107.98"/> <line x="106.94" y="107.98"/> <curve x1="105.09" x2="99.4" x3="99.4" y1="107.98" y2="104.32" y3="100.36"/> <line x="99.4" y="63.91"/> <curve x1="99.4" x2="104.49" x3="108.32" y1="59.82" y2="54.62" y3="54.62"/> <line x="151.65" y="54.62"/> <curve x1="155.59" x2="162.01" x3="162.01" y1="54.62" y2="56.81" y3="64.3"/> <line x="162.01" y="99.31"/> <curve x1="162.01" x2="158.31" x3="154.56" y1="103.4" y2="107.98" y3="107.98"/> <line x="151.46" y="107.98"/> <line x="175.43" y="147.63"/> <line x="200.95" y="147.63"/> <curve x1="207.01" x2="209.95" x3="209.95" y1="147.63" y2="150.97" y3="155.9"/> <line x="209.95" y="190.98"/> <curve x1="209.95" x2="205.4" x3="200.87" y1="196.28" y2="200.4" y3="200.4"/> <line x="157.82" y="200.4"/> <curve x1="152.3" x2="147.55" x3="147.55" y1="200.4" y2="196.84" y3="191.4"/> <line x="147.55" y="154.59"/> <curve x1="148.18" x2="151.69" x3="155.83" y1="150.83" y2="147.63" y3="147.63"/> <line x="163.91" y="147.63"/> <line x="140.87" y="107.98"/> <line x="121.02" y="107.98"/> <line x="98.13" y="147.63"/> <line x="106.92" y="147.63"/> <curve x1="110.78" x2="114.11" x3="114.11" y1="147.63" y2="151.41" y3="155.78"/> <line x="114.11" y="193.09"/> <curve x1="114.11" x2="110.55" x3="106.51" y1="196.19" y2="200.4" y3="200.4"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="185.03" y="339.64"/> <curve x1="188.94" x2="191.75" x3="191.75" y1="339.64" y2="343.3" y3="346.45"/> <curve x1="191.65" x2="188.89" x3="185.03" y1="350.89" y2="353.72" y3="353.61"/> <curve x1="180.67" x2="177.54" x3="177.54" y1="353.58" y2="350.84" y3="346.45"/> <curve x1="177.54" x2="180.55" x3="185.03" y1="342.67" y2="339.64" y3="339.64"/> <close/> <move x="114.03" y="312.9"/> <line x="125.75" y="312.9"/> <line x="133.33" y="340.21"/> <line x="140.24" y="312.9"/> <line x="150.04" y="312.9"/> <line x="157.63" y="339.33"/> <line x="165.21" y="312.9"/> <line x="176.19" y="312.9"/> <line x="164.13" y="352.85"/> <line x="151.47" y="352.85"/> <line x="144.95" y="328.69"/> <line x="138.67" y="352.85"/> <line x="125.64" y="352.85"/> <close/> <move x="98.84" y="336.6"/> <curve x1="95.85" x2="94.7" x3="91.42" y1="335.86" y2="335.22" y3="335.7"/> <curve x1="88.01" x2="86.19" x3="85.87" y1="336.19" y2="337.78" y3="340.75"/> <curve x1="85.88" x2="88.54" x3="92.01" y1="343.24" y2="345.45" y3="345.41"/> <curve x1="94.66" x2="96.82" x3="98.84" y1="345.21" y2="343.63" y3="341.15"/> <close/> <move x="76.88" y="318.98"/> <curve x1="78.98" x2="81.11" x3="86.63" y1="315.19" y2="313.32" y3="312"/> <curve x1="93.18" x2="98.32" x3="103.16" y1="310.79" y2="311.62" y3="313.28"/> <curve x1="108.97" x2="109.48" x3="109.48" y1="315.81" y2="321.59" y3="325.89"/> <line x="109.48" y="346.07"/> <curve x1="109.52" x2="109.25" x3="110.32" y1="349" y2="350.85" y3="352.92"/> <line x="101.48" y="353.13"/> <curve x1="100.56" x2="100.85" x3="100.99" y1="351.8" y2="350.22" y3="347.59"/> <curve x1="98.49" x2="94.5" x3="92.08" y1="350.78" y2="352.34" y3="352.89"/> <curve x1="84.61" x2="83.57" x3="79.51" y1="353.48" y2="353.33" y3="351.3"/> <curve x1="76.97" x2="75.54" x3="75.17" y1="349.98" y2="346.49" y3="341.82"/> <curve x1="75.2" x2="79.21" x3="85.33" y1="335.82" y2="330.65" y3="329.27"/> <curve x1="90.02" x2="92.89" x3="99.21" y1="328.28" y2="328.19" y3="328.81"/> <line x="99.12" y="324.64"/> <curve x1="99.08" x2="95.86" x3="92.76" y1="322.56" y2="320.11" y3="320.18"/> <curve x1="86.03" x2="83.01" x3="81.04" y1="320.29" y2="322.06" y3="324.28"/> <close/> <move x="47.33" y="313.16"/> <line x="56.45" y="313.16"/> <line x="56.48" y="318.2"/> <curve x1="57.56" x2="60.01" x3="62.48" y1="316.62" y2="314.31" y3="313.34"/> <curve x1="65.51" x2="68.37" x3="71.46" y1="312.42" y2="313.08" y3="313.71"/> <line x="71.22" y="323.22"/> <curve x1="69.58" x2="67.99" x3="65.42" y1="322.1" y2="321.3" y3="321.71"/> <curve x1="61.66" x2="58.26" x3="58.26" y1="322.69" y2="326.58" y3="328.99"/> <line x="58.26" y="352.85"/> <line x="47.33" y="352.85"/> <close/> <move x="26.77" y="327.42"/> <curve x1="25.59" x2="22.91" x3="18.95" y1="325.19" y2="320.86" y3="320.71"/> <curve x1="16.55" x2="13.55" x3="12.38" y1="320.71" y2="323.49" y3="325.85"/> <curve x1="11.26" x2="11.17" x3="11.89" y1="328.69" y2="333.64" y3="338.75"/> <curve x1="13.1" x2="14.82" x3="18.57" y1="342.85" y2="344.16" y3="344.62"/> <curve x1="22.8" x2="24.86" x3="26.57" y1="345.05" y2="341.15" y3="338.7"/> <close/> <move x="28.81" y="352.85"/> <line x="28.2" y="346.53"/> <curve x1="25.04" x2="23.63" x3="17.59" y1="351.1" y2="353.03" y3="353.23"/> <curve x1="10.44" x2="6.36" x3="2.82" y1="353.16" y2="350.71" y3="346.6"/> <curve x1="0.38" x2="0" x3="0.79" y1="341.04" y2="332.55" y3="325.95"/> <curve x1="2.38" x2="5.3" x3="13.35" y1="318.37" y2="314.91" y3="311.89"/> <curve x1="17.46" x2="23.01" x3="26.55" y1="310.64" y2="312.16" y3="316.06"/> <line x="26.55" y="295.59"/> <line x="37.56" y="295.59"/> <line x="37.56" y="352.85"/> <close/> </path> <fill/> <fillcolor color="#f08707"/> <path> <move x="240.98" y="345.1"/> <curve x1="247.64" x2="249.9" x3="249.9" y1="345.1" y2="338.5" y3="332.36"/> <curve x1="249.9" x2="246.4" x3="240.88" y1="324.5" y2="320.32" y3="320.32"/> <curve x1="235.88" x2="231.96" x3="231.96" y1="320.32" y2="324.56" y3="332.46"/> <curve x1="231.96" x2="235.14" x3="240.98" y1="339.33" y2="345.1" y3="345.1"/> <close/> <move x="240.81" y="353.71"/> <curve x1="226.47" x2="220.45" x3="220.45" y1="353.71" y2="341.95" y3="334.45"/> <curve x1="220.45" x2="229.75" x3="239.97" y1="319.82" y2="311.55" y3="311.55"/> <curve x1="250.33" x2="261.17" x3="261.17" y1="311.55" y2="316.67" y3="332.74"/> <curve x1="261.17" x2="253.35" x3="240.81" y1="344.51" y2="353.71" y3="353.71"/> <close/> <move x="201.85" y="352.9"/> <line x="201.85" y="312.97"/> <line x="213.14" y="312.97"/> <line x="213.14" y="352.9"/> <close/> <move x="200.97" y="302.13"/> <curve x1="200.97" x2="204.21" x3="207.19" y1="298.87" y2="296" y3="296"/> <curve x1="211.29" x2="213.2" x3="213.2" y1="296" y2="299.05" y3="302.13"/> <curve x1="213.2" x2="210.66" x3="207.3" y1="305.86" y2="308" y3="308"/> <curve x1="203.92" x2="200.97" x3="200.97" y1="308" y2="304.94" y3="302.13"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="260.35" name="Drawio3" strokewidth="inherit" w="259.99"> <connections/> <foreground> <fillcolor color="#f08707"/> <path> <move x="259.99" y="251.96"/> <curve x1="259.99" x2="255.56" x3="252.34" y1="256.08" y2="259.93" y3="259.93"/> <line x="6.93" y="259.93"/> <curve x1="3.51" x2="0" x3="0" y1="259.93" y2="256.09" y3="252.98"/> <line x="0" y="8.54"/> <curve x1="0" x2="2.46" x3="7.57" y1="3.97" y2="0" y3="0"/> <line x="253.85" y="0.19"/> <curve x1="257.54" x2="259.94" x3="259.99" y1="0.19" y2="3.58" y3="7.99"/> <close/> </path> <fill/> <fillcolor color="#db6112"/> <path> <move x="96.11" y="259.93"/> <line x="56.03" y="199.71"/> <line x="149.03" y="61.15"/> <line x="159.7" y="59.23"/> <line x="259.98" y="161.67"/> <line x="259.98" y="252.22"/> <curve x1="259.98" x2="255.81" x3="252.53" y1="255.5" y2="260.35" y3="259.93"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="60.37" y="200.4"/> <curve x1="54.05" x2="51.07" x3="51.07" y1="200.4" y2="195.22" y3="190.93"/> <line x="51.07" y="156.82"/> <curve x1="51.07" x2="54.2" x3="58.6" y1="152.73" y2="147.63" y3="147.63"/> <line x="85.43" y="147.63"/> <line x="109.33" y="107.98"/> <line x="106.15" y="107.98"/> <curve x1="104.3" x2="98.61" x3="98.61" y1="107.98" y2="104.32" y3="100.36"/> <line x="98.61" y="63.91"/> <curve x1="98.61" x2="103.7" x3="107.53" y1="59.82" y2="54.62" y3="54.62"/> <line x="150.86" y="54.62"/> <curve x1="154.8" x2="161.22" x3="161.22" y1="54.62" y2="56.81" y3="64.3"/> <line x="161.22" y="99.31"/> <curve x1="161.22" x2="157.52" x3="153.77" y1="103.4" y2="107.98" y3="107.98"/> <line x="150.67" y="107.98"/> <line x="174.64" y="147.63"/> <line x="200.16" y="147.63"/> <curve x1="206.22" x2="209.16" x3="209.16" y1="147.63" y2="150.97" y3="155.9"/> <line x="209.16" y="190.98"/> <curve x1="209.16" x2="204.61" x3="200.07" y1="196.28" y2="200.4" y3="200.4"/> <line x="157.03" y="200.4"/> <curve x1="151.51" x2="146.75" x3="146.75" y1="200.4" y2="196.84" y3="191.4"/> <line x="146.75" y="154.59"/> <curve x1="147.39" x2="150.9" x3="155.04" y1="150.83" y2="147.63" y3="147.63"/> <line x="163.12" y="147.63"/> <line x="140.08" y="107.98"/> <line x="120.23" y="107.98"/> <line x="97.34" y="147.63"/> <line x="106.13" y="147.63"/> <curve x1="109.98" x2="113.32" x3="113.32" y1="147.63" y2="151.41" y3="155.78"/> <line x="113.32" y="193.09"/> <curve x1="113.32" x2="109.76" x3="105.72" y1="196.19" y2="200.4" y3="200.4"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="260.35" name="Drawio4" strokewidth="inherit" w="259.99"> <connections/> <foreground> <fillcolor color="#f08707"/> <path> <move x="259.99" y="251.96"/> <curve x1="259.99" x2="255.56" x3="252.34" y1="256.08" y2="259.93" y3="259.93"/> <line x="6.93" y="259.93"/> <curve x1="3.51" x2="0" x3="0" y1="259.93" y2="256.09" y3="252.98"/> <line x="0" y="8.54"/> <curve x1="0" x2="2.46" x3="7.57" y1="3.97" y2="0" y3="0"/> <line x="253.85" y="0.19"/> <curve x1="257.54" x2="259.94" x3="259.99" y1="0.19" y2="3.58" y3="7.99"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="60.37" y="200.4"/> <curve x1="54.05" x2="51.07" x3="51.07" y1="200.4" y2="195.22" y3="190.93"/> <line x="51.07" y="156.82"/> <curve x1="51.07" x2="54.2" x3="58.6" y1="152.73" y2="147.63" y3="147.63"/> <line x="85.43" y="147.63"/> <line x="109.33" y="107.98"/> <line x="106.15" y="107.98"/> <curve x1="104.3" x2="98.61" x3="98.61" y1="107.98" y2="104.32" y3="100.36"/> <line x="98.61" y="63.91"/> <curve x1="98.61" x2="103.7" x3="107.53" y1="59.82" y2="54.62" y3="54.62"/> <line x="150.86" y="54.62"/> <curve x1="154.8" x2="161.22" x3="161.22" y1="54.62" y2="56.81" y3="64.3"/> <line x="161.22" y="99.31"/> <curve x1="161.22" x2="157.52" x3="153.77" y1="103.4" y2="107.98" y3="107.98"/> <line x="150.67" y="107.98"/> <line x="174.64" y="147.63"/> <line x="200.16" y="147.63"/> <curve x1="206.22" x2="209.16" x3="209.16" y1="147.63" y2="150.97" y3="155.9"/> <line x="209.16" y="190.98"/> <curve x1="209.16" x2="204.61" x3="200.07" y1="196.28" y2="200.4" y3="200.4"/> <line x="157.03" y="200.4"/> <curve x1="151.51" x2="146.75" x3="146.75" y1="200.4" y2="196.84" y3="191.4"/> <line x="146.75" y="154.59"/> <curve x1="147.39" x2="150.9" x3="155.04" y1="150.83" y2="147.63" y3="147.63"/> <line x="163.12" y="147.63"/> <line x="140.08" y="107.98"/> <line x="120.23" y="107.98"/> <line x="97.34" y="147.63"/> <line x="106.13" y="147.63"/> <curve x1="109.98" x2="113.32" x3="113.32" y1="147.63" y2="151.41" y3="155.78"/> <line x="113.32" y="193.09"/> <curve x1="113.32" x2="109.76" x3="105.72" y1="196.19" y2="200.4" y3="200.4"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="335.96" name="Dribbble" strokewidth="inherit" w="337"> <connections/> <foreground> <fillcolor color="#c32361"/> <path> <move x="168.33" y="335.96"/> <curve x1="73.35" x2="0" x3="0" y1="335.96" y2="258.32" y3="166.73"/> <curve x1="0" x2="73.14" x3="168.5" y1="77.51" y2="0" y3="0"/> <curve x1="262.93" x2="337" x3="337" y1="0" y2="75.9" y3="169.24"/> <curve x1="337" x2="268.07" x3="168.33" y1="253.63" y2="335.96" y3="335.96"/> <close/> </path> <fill/> <fillcolor color="#ea4c89"/> <path> <move x="211.2" y="299.71"/> <curve x1="208.84" x2="203.98" x3="191.43" y1="270.19" y2="238.32" y3="199.22"/> <curve x1="151.49" x2="119.64" x3="88.27" y1="214.68" y2="235.94" y3="280.98"/> <curve x1="119.56" x2="166.37" x3="211.2" y1="304.25" y2="315.39" y3="299.71"/> <close/> <move x="239.63" y="287.15"/> <curve x1="269.17" x2="293.75" x3="304.7" y1="268.93" y2="243.02" y3="196.02"/> <curve x1="282.38" x2="257.73" x3="219.33" y1="190.19" y2="186.07" y3="192.15"/> <curve x1="229.66" x2="234.57" x3="239.63" y1="219.05" y2="253.21" y3="287.15"/> <close/> <move x="210.38" y="164.93"/> <curve x1="236.1" x2="265.54" x3="307.41" y1="159.1" y2="156.85" y3="166.58"/> <curve x1="307.08" x2="302.99" x3="283.54" y1="144.19" y2="120.15" y3="89.4"/> <curve x1="262.7" x2="240.27" x3="201.06" y1="107.18" y2="124.97" y3="142.75"/> <close/> <move x="188.2" y="116.43"/> <curve x1="222.19" x2="245.23" x3="264.52" y1="101.08" y2="83.54" y3="67.93"/> <curve x1="228.24" x2="183.7" x3="133.05" y1="34.23" y2="21.08" y3="33.53"/> <curve x1="156.93" x2="172.54" x3="188.2" y1="61.56" y2="88.99" y3="116.43"/> <close/> <move x="160.75" y="126.51"/> <curve x1="146.63" x2="128.68" x3="104.32" y1="100.92" y2="73.98" y3="44.78"/> <curve x1="64.3" x2="38.51" x3="31.01" y1="67.29" y2="100.35" y3="146.96"/> <curve x1="92.99" x2="130.49" x3="160.75" y1="147.56" y2="138.47" y3="126.51"/> <close/> <move x="173.95" y="153.99"/> <curve x1="130.95" x2="83.13" x3="29.28" y1="170.01" y2="177.73" y3="175.08"/> <curve x1="31.6" x2="46.08" x3="66.43" y1="212.5" y2="239.37" y3="261.17"/> <curve x1="90.74" x2="126.08" x3="181.66" y1="224.41" y2="193.16" y3="172.03"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="309.52" name="Dropbox" strokewidth="inherit" w="336.6"> <connections/> <foreground> <path> <move x="65.42" y="254.14"/> <line x="65.42" y="224.71"/> <line x="98.98" y="246"/> <line x="168.59" y="191.89"/> <line x="238.02" y="246.05"/> <line x="271.39" y="224.82"/> <line x="271.39" y="254.37"/> <line x="168.24" y="309.52"/> <close/> <move x="98.73" y="234.77"/> <line x="0" y="171.51"/> <line x="68.34" y="117.46"/> <line x="0" y="63.35"/> <line x="99.1" y="0.06"/> <line x="168.27" y="56.41"/> <line x="237.68" y="0"/> <line x="336.55" y="63.44"/> <line x="268.47" y="117.42"/> <line x="336.6" y="171.69"/> <line x="237.8" y="234.5"/> <line x="168.24" y="178.92"/> <close/> <move x="168.24" y="178.92"/> <line x="268.47" y="117.42"/> <line x="168.27" y="56.41"/> <line x="68.34" y="117.46"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="344.84" name="Drupal" strokewidth="inherit" w="302.55"> <connections/> <foreground> <fillcolor color="#005a8e"/> <path> <move x="145.24" y="344.84"/> <curve x1="72.5" x2="0" x3="0" y1="344.84" y2="274.82" y3="197.76"/> <curve x1="4.72" x2="44.28" x3="84.53" y1="124.66" y2="81.12" y3="62.81"/> <curve x1="103.5" x2="120.63" x3="128.69" y1="53.85" y2="43.34" y3="30.12"/> <curve x1="134.07" x2="136.54" x3="138.03" y1="21.3" y2="10.91" y3="0"/> <curve x1="156.18" x2="175.62" x3="197.98" y1="22.32" y2="42.23" y3="53.45"/> <curve x1="254.9" x2="302.55" x3="302.55" y1="74.54" y2="125.72" y3="200.34"/> <curve x1="302.55" x2="212.47" x3="145.24" y1="298.55" y2="344.84" y3="344.84"/> <close/> </path> <fill/> <fillcolor color="#3890c8"/> <path> <move x="216.27" y="207.73"/> <curve x1="170.78" x2="132.59" x3="71.67" y1="244.68" y2="272.34" y3="278.43"/> <curve x1="58.13" x2="43.31" x3="27.22" y1="279.51" y2="279.72" y3="279.09"/> <curve x1="12.2" x2="0" x3="0" y1="256.97" y2="230.37" y3="197.76"/> <curve x1="4.59" x2="42.75" x3="84.53" y1="126.33" y2="82.3" y3="62.81"/> <curve x1="112.72" x2="122.57" x3="128.69" y1="49.55" y2="39.5" y3="30.12"/> <curve x1="134.01" x2="136.28" x3="138.03" y1="21.92" y2="11.18" y3="0"/> <curve x1="157.69" x2="177.71" x3="197.98" y1="24.35" y2="43.55" y3="53.45"/> <curve x1="237.61" x2="259.61" x3="274.68" y1="68.89" y2="90.61" y3="111.07"/> <curve x1="269.69" x2="260.03" x3="216.27" y1="147.31" y2="170.99" y3="207.73"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="184.35" y="324.61"/> <curve x1="157.77" x2="145.26" x3="139.02" y1="325.23" y2="320.07" y3="312.45"/> <curve x1="137.78" x2="137.4" x3="138.86" y1="310.85" y2="309.11" y3="307.06"/> <curve x1="140.8" x2="143.67" x3="145.42" y1="305.07" y2="305.63" y3="307.55"/> <curve x1="151.89" x2="160.97" x3="188.51" y1="312.8" y2="316.97" y3="317.14"/> <curve x1="199.59" x2="210.66" x3="223.28" y1="317.33" y2="312.9" y3="305.37"/> <curve x1="225.16" x2="228.02" x3="229.34" y1="304.31" y2="304.12" y3="305.59"/> <curve x1="230.23" x2="229.19" x3="228.36" y1="306.78" y2="308.95" y3="309.71"/> <curve x1="219.8" x2="206.93" x3="184.35" y1="318.19" y2="324.19" y3="324.61"/> <close/> <move x="173.05" y="289.63"/> <curve x1="172.05" x2="169.44" x3="168.39" y1="290.5" y2="291.25" y3="289.78"/> <curve x1="167.73" x2="167.57" x3="169" y1="288.71" y2="287.47" y3="285.65"/> <curve x1="179.19" x2="186.98" x3="202.33" y1="273.25" y2="267.46" y3="266.76"/> <curve x1="212.7" x2="221.03" x3="223.37" y1="266.65" y2="277.28" y3="284.44"/> <curve x1="224.04" x2="224.39" x3="222.97" y1="286.93" y2="289.14" y3="289.84"/> <curve x1="221.2" x2="218.88" x3="216.66" y1="290.66" y2="290.46" y3="287.69"/> <curve x1="212.7" x2="208.4" x3="200.14" y1="282.36" y2="276.93" y3="276.1"/> <curve x1="191.37" x2="181.81" x3="173.05" y1="276.04" y2="282.21" y3="289.63"/> <close/> <move x="105.14" y="281.55"/> <curve x1="88.04" x2="72.07" x3="68.87" y1="280.04" y2="272" y3="254.87"/> <curve x1="65.03" x2="75.15" x3="86.05" y1="234.8" y2="220.36" y3="210.45"/> <curve x1="106.9" x2="134.92" x3="158.75" y1="192.99" y2="195.96" y3="208.37"/> <curve x1="173.8" x2="185.84" x3="196.14" y1="215.91" y2="226.05" y3="230.9"/> <curve x1="208.25" x2="216.97" x3="225.54" y1="237.26" y2="233.05" y3="228.34"/> <curve x1="238.64" x2="251.11" x3="260.61" y1="221.09" y2="209.91" y3="205.49"/> <curve x1="272.41" x2="278.91" x3="282.82" y1="200.45" y2="205.14" y3="210.93"/> <curve x1="290.3" x2="288.7" x3="286.65" y1="224.94" y2="237.07" y3="249.75"/> <curve x1="283.3" x2="272.6" x3="259.65" y1="269.68" y2="281.9" y3="284.27"/> <curve x1="251.26" x2="241.86" x3="231.77" y1="285.83" y2="279.23" y3="267.17"/> <curve x1="226.2" x2="222.27" x3="214.43" y1="261.73" y2="256.83" y3="250.63"/> <curve x1="207.32" x2="198.03" x3="190.86" y1="245.09" y2="246.02" y3="249.91"/> <curve x1="181.43" x2="172.47" x3="149.16" y1="256.3" y2="262.58" y3="272.28"/> <curve x1="135.16" x2="123.15" x3="105.14" y1="277.76" y2="283.24" y3="281.55"/> <close/> <move x="140.3" y="3.78"/> <curve x1="143.77" x2="142.19" x3="139.9" y1="19.69" y2="33.64" y3="44.46"/> <curve x1="137.48" x2="131.28" x3="110.04" y1="53.17" y2="63.84" y3="82.11"/> <curve x1="91" x2="60.67" x3="46" y1="99.34" y2="120.36" y3="123.07"/> <curve x1="40.17" x2="34.44" x3="29.06" y1="124.46" y2="125.2" y3="123.45"/> <curve x1="31.63" x2="34.78" x3="57.37" y1="115.36" y2="106.96" y3="87.82"/> <curve x1="71.28" x2="91.74" x3="103.62" y1="77.11" y2="65.06" y3="58.42"/> <curve x1="118.29" x2="128.66" x3="134.46" y1="50.21" y2="42.18" y3="32.29"/> <curve x1="139.13" x2="139.81" x3="140.3" y1="23.74" y2="13.79" y3="3.78"/> <close/> </path> <fill/> <fillcolor color="#b8d7ed"/> <path> <move x="36.28" y="134.47"/> <curve x1="32.59" x2="29.2" x3="27.41" y1="135.12" y2="135.03" y3="131.04"/> <curve x1="26.64" x2="26.92" x3="29.06" y1="129.44" y2="126.71" y3="123.45"/> <curve x1="33.85" x2="39.73" x3="46" y1="125.06" y2="124.6" y3="123.07"/> <curve x1="61.5" x2="86.56" x3="110.04" y1="119.63" y2="102.69" y3="82.11"/> <curve x1="131.58" x2="137.46" x3="139.9" y1="63.61" y2="52.94" y3="44.46"/> <curve x1="143.17" x2="142.99" x3="140.3" y1="29.34" y2="16.12" y3="3.78"/> <curve x1="145.02" x2="145.23" x3="142.61" y1="16.2" y2="32.4" y3="45.48"/> <curve x1="136.79" x2="115.62" x3="92.36" y1="69.79" y2="88.01" y3="105.39"/> <curve x1="77.49" x2="51.29" x3="36.28" y1="116.23" y2="132.72" y3="134.47"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="305.82" name="Dzone" strokewidth="inherit" w="438.32"> <connections/> <foreground> <fillcolor color="#a7a4a6"/> <path> <move x="31.88" y="207.01"/> <line x="187.78" y="33.31"/> <line x="192.81" y="37.47"/> <line x="36.45" y="211.22"/> <close/> <move x="140.05" y="173.64"/> <line x="40.06" y="218.55"/> <line x="37.32" y="213.12"/> <line x="137.29" y="167.93"/> <close/> <move x="159.22" y="143.24"/> <line x="194.25" y="38.55"/> <line x="199.64" y="40.42"/> <line x="165.29" y="145.16"/> <close/> <move x="374.52" y="70.46"/> <line x="220.97" y="29.2"/> <line x="222.61" y="22.97"/> <line x="376.44" y="64.71"/> <close/> <move x="374.72" y="190.14"/> <line x="397.38" y="108.04"/> <line x="403.46" y="109.3"/> <line x="380.43" y="191.77"/> <close/> <move x="243.35" y="254.66"/> <line x="352.63" y="214.22"/> <line x="354.95" y="219.94"/> <line x="245.35" y="260.45"/> <close/> <move x="210.27" y="241.74"/> <line x="206.49" y="148.81"/> <line x="175.53" y="159.62"/> <line x="173.32" y="153.77"/> <line x="206.34" y="142.33"/> <line x="201.56" y="40.18"/> <line x="207.11" y="39.86"/> <line x="212.47" y="140.14"/> <line x="283.32" y="115.88"/> <line x="213.94" y="37.95"/> <line x="218.14" y="33.99"/> <line x="290.23" y="113.36"/> <line x="373.6" y="85.09"/> <line x="375.42" y="90.93"/> <line x="294.88" y="118.62"/> <line x="326.71" y="154.91"/> <line x="382.11" y="99.1"/> <line x="386.74" y="103.15"/> <line x="331.26" y="159.86"/> <line x="361.66" y="193.93"/> <line x="357.58" y="198.6"/> <line x="326.59" y="164.57"/> <line x="240.74" y="251.2"/> <line x="235.93" y="247.16"/> <line x="322.31" y="159.54"/> <line x="287.96" y="120.95"/> <line x="212.77" y="146.99"/> <line x="217.3" y="241.74"/> <close/> <move x="196.85" y="250.69"/> <line x="162.28" y="182.74"/> <line x="167.67" y="179.11"/> <line x="201.96" y="247.5"/> <close/> <move x="184.34" y="267.36"/> <line x="39.27" y="231.52"/> <line x="41.13" y="225.8"/> <line x="185.81" y="261.35"/> <close/> </path> <fill/> <fillcolor color="#c35353"/> <path> <move x="20.51" y="244.98"/> <curve x1="13.04" x2="0" x3="0" y1="244.98" y2="238.51" y3="223.48"/> <curve x1="0" x2="8.48" x3="20.45" y1="213.8" y2="203.06" y3="203.06"/> <curve x1="31.1" x2="41.88" x3="41.88" y1="203.06" y2="212.31" y3="223.15"/> <curve x1="41.88" x2="31.42" x3="20.51" y1="235.86" y2="244.98" y3="244.98"/> <close/> </path> <fill/> <fillcolor color="#3673b8"/> <path> <move x="216.66" y="305.82"/> <curve x1="201.42" x2="181.83" x3="181.83" y1="305.82" y2="293.44" y3="271.7"/> <curve x1="181.83" x2="204.52" x3="216.66" y1="247.79" y2="237.75" y3="237.75"/> <curve x1="232.25" x2="249.73" x3="249.73" y1="237.75" y2="252.82" y3="271.7"/> <curve x1="249.73" x2="234.86" x3="216.66" y1="289.46" y2="305.82" y3="305.82"/> <close/> </path> <fill/> <fillcolor color="#a377b6"/> <path> <move x="155.57" y="184.38"/> <curve x1="144.48" x2="134.59" x3="134.59" y1="184.38" y2="172.76" y3="163.11"/> <curve x1="134.59" x2="145.31" x3="155.79" y1="152" y2="142.04" y3="142.04"/> <curve x1="168.13" x2="177.11" x3="177.11" y1="142.04" y2="152.76" y3="163.11"/> <curve x1="177.11" x2="167.35" x3="155.57" y1="173.55" y2="184.38" y3="184.38"/> <close/> </path> <fill/> <fillcolor color="#f7cbb1"/> <path> <move x="201.16" y="42.1"/> <curve x1="193.28" x2="181.91" x3="181.91" y1="42.1" y2="33.19" y3="21.09"/> <curve x1="181.91" x2="191.25" x3="203.24" y1="11.65" y2="0" y3="0"/> <curve x1="213.22" x2="223.85" x3="223.85" y1="0" y2="6.55" y3="21.81"/> <curve x1="223.85" x2="218.34" x3="201.16" y1="30.03" y2="42.1" y3="42.1"/> <close/> </path> <fill/> <fillcolor color="#fdd478"/> <path> <move x="404.93" y="110.05"/> <curve x1="389.61" x2="370.87" x3="370.87" y1="110.05" y2="97.94" y3="75.99"/> <curve x1="370.87" x2="386.52" x3="404.93" y1="57.98" y2="42.08" y3="42.08"/> <curve x1="421.84" x2="438.32" x3="438.32" y1="42.08" y2="54.92" y3="75.99"/> <curve x1="438.32" x2="422.16" x3="404.93" y1="96.56" y2="110.05" y3="110.05"/> <close/> </path> <fill/> <fillcolor color="#99b66c"/> <path> <move x="371.56" y="231.2"/> <curve x1="359.5" x2="350.79" x3="350.79" y1="231.2" y2="220.26" y3="210.19"/> <curve x1="350.79" x2="359.21" x3="371.56" y1="201.03" y2="189.18" y3="189.18"/> <curve x1="384.68" x2="392.98" x3="392.98" y1="189.18" y2="200.29" y3="210.19"/> <curve x1="392.98" x2="383.12" x3="371.56" y1="221.57" y2="231.2" y3="231.2"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="164.75" name="Ebay" strokewidth="inherit" w="414.03"> <connections/> <foreground> <fillcolor color="#e53238"/> <path> <move x="83.07" y="76.79"/> <curve x1="82.77" x2="66.43" x3="54.23" y1="56.74" y2="49.79" y3="49.79"/> <curve x1="36.74" x2="22.4" x3="22.52" y1="49.79" y2="60.75" y3="76.79"/> <close/> <move x="102.49" y="104.51"/> <curve x1="99.93" x2="87.76" x3="54.31" y1="118.29" y2="133.91" y3="133.91"/> <curve x1="38.95" x2="10.77" x3="3.11" y1="133.91" y2="130.07" y3="102.68"/> <curve x1="0.79" x2="0" x3="2.64" y1="94.87" y2="81.03" y3="69.7"/> <curve x1="10.04" x2="33.94" x3="55.35" y1="41.89" y2="35.89" y3="35.89"/> <curve x1="72.01" x2="94.32" x3="102.22" y1="35.89" y2="42" y3="65.37"/> <curve x1="105.34" x2="104.75" x3="104.64" y1="72.88" y2="83.06" y3="90.53"/> <line x="22.12" y="90.53"/> <curve x1="22.26" x2="34.95" x3="53.12" y1="107.43" y2="120.37" y3="120.41"/> <curve x1="63.94" x2="76.34" x3="80.84" y1="120.52" y2="116.91" y3="104.51"/> <close/> </path> <fill/> <fillcolor color="#0064d2"/> <path> <move x="125.99" y="85.31"/> <curve x1="125.99" x2="140.21" x3="157.85" y1="107.12" y2="119.87" y3="119.87"/> <curve x1="178.12" x2="190.62" x3="190.62" y1="119.87" y2="103.73" y3="84.88"/> <curve x1="190.62" x2="176.98" x3="157.44" y1="63.91" y2="50.41" y3="50.41"/> <curve x1="138.91" x2="125.99" x3="125.99" y1="50.41" y2="64.9" y3="85.31"/> <close/> <move x="104.86" y="0"/> <line x="125.82" y="0"/> <line x="125.74" y="51.95"/> <curve x1="134.45" x2="149.19" x3="162.88" y1="40.36" y2="36.21" y3="36.21"/> <curve x1="192.44" x2="212.42" x3="212.42" y1="36.21" y2="56.41" y3="84.62"/> <curve x1="212.42" x2="191.49" x3="163.04" y1="115.01" y2="134.15" y3="134.15"/> <curve x1="145.41" x2="135.48" x3="125.55" y1="134.15" y2="128.25" y3="118.26"/> <curve x1="125.7" x2="125.19" x3="124.9" y1="122.75" y2="127.73" y3="130.77"/> <line x="104.25" y="130.77"/> <curve x1="105.17" x2="104.85" x3="104.86" y1="117.21" y2="44.59" y3="0"/> <close/> </path> <fill/> <fillcolor color="#f5af02"/> <path> <move x="287.67" y="87.13"/> <curve x1="270.7" x2="256.75" x3="249.14" y1="87.12" y2="87.23" y3="88.78"/> <curve x1="240.52" x2="230.57" x3="231.86" y1="90.41" y2="94.46" y3="104.95"/> <curve x1="232.95" x2="239.53" x3="253.61" y1="114.99" y2="119.8" y3="120.64"/> <curve x1="282.58" x2="286.8" x3="287.67" y1="120.93" y2="102.32" y3="95.22"/> <close/> <move x="290.35" y="130.77"/> <curve x1="289.92" x2="289.84" x3="289.79" y1="127.99" y2="123.95" y3="117.37"/> <curve x1="279.97" x2="265.49" x3="249.07" y1="130.16" y2="134.08" y3="134.33"/> <curve x1="241.09" x2="225.02" x3="215.85" y1="134.33" y2="132.97" y3="121.25"/> <curve x1="207.72" x2="208.2" x3="216.59" y1="110.61" y2="96.08" y3="86.63"/> <curve x1="224.87" x2="235.86" x3="247.79" y1="78.21" y2="75.62" y3="74.36"/> <curve x1="259.26" x2="274.45" x3="287.72" y1="73.12" y2="73.66" y3="73.65"/> <curve x1="287.95" x2="287.54" x3="283.02" y1="67.66" y2="60.96" y3="56.87"/> <curve x1="278.17" x2="271.35" x3="262.27" y1="52.47" y2="49.49" y3="49.69"/> <curve x1="246.65" x2="239.74" x3="238.72" y1="49.73" y2="56.75" y3="63.75"/> <line x="216.77" y="63.75"/> <curve x1="217.2" x2="222.01" x3="239.25" y1="56.77" y2="44.86" y3="39.32"/> <curve x1="253.13" x2="273.17" x3="283.28" y1="35.06" y2="35.3" y3="38.29"/> <curve x1="302.81" x2="308.7" x3="308.68" y1="43.66" y2="58.01" y3="71.32"/> <line x="308.68" y="113.94"/> <curve x1="308.68" x2="309.16" x3="309.65" y1="122.57" y2="125.55" y3="130.77"/> <close/> </path> <fill/> <fillcolor color="#86b817"/> <path> <move x="297.02" y="39.83"/> <line x="321.56" y="39.83"/> <line x="356.84" y="110.91"/> <line x="392" y="39.83"/> <line x="414.03" y="39.83"/> <line x="350.49" y="164.75"/> <line x="327.13" y="164.75"/> <line x="345.47" y="130.57"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="368.76" name="Edmodo" strokewidth="inherit" w="346.38"> <connections/> <foreground> <path> <move x="173.32" y="368.76"/> <line x="113.28" y="307.29"/> <curve x1="95.64" x2="75.95" x3="56.1" y1="305.69" y2="303.74" y3="295.18"/> <curve x1="37.6" x2="19.75" x3="12" y1="287.5" y2="274.35" y3="226.72"/> <curve x1="7.06" x2="0" x3="21.46" y1="199.34" y2="105.29" y3="53.39"/> <curve x1="27.21" x2="41.43" x3="61.36" y1="37.82" y2="24.41" y3="18.26"/> <curve x1="121.73" x2="235.87" x3="283.66" y1="0" y2="2.41" y3="17.28"/> <curve x1="308.27" x2="322.92" x3="331.18" y1="25.46" y2="39.04" y3="70.17"/> <curve x1="346.38" x2="342.98" x3="323.93" y1="130.02" y2="225.71" y3="262.06"/> <curve x1="311.64" x2="304.79" x3="279.6" y1="284.48" y2="291.65" y3="299.09"/> <curve x1="266.19" x2="251.57" x3="231.59" y1="303.46" y2="307.1" y3="307.59"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="25.01" y="123.6"/> <curve x1="26.92" x2="31.07" x3="37.61" y1="98.13" y2="77.28" y3="60.21"/> <curve x1="40.82" x2="47.69" x3="63.92" y1="52.13" y2="41.86" y3="35.97"/> <curve x1="112.92" x2="254.1" x3="287.34" y1="16.24" y2="19.57" y3="37.57"/> <curve x1="299.61" x2="301.22" x3="305.87" y1="44.28" y2="46.87" y3="53.87"/> <curve x1="315.89" x2="319.87" x3="321.71" y1="70.83" y2="97.77" y3="123.78"/> <line x="264.22" y="124.01"/> <curve x1="257.43" x2="238.41" x3="217.42" y1="102.36" y2="87.85" y3="87.85"/> <curve x1="199.54" x2="185.08" x3="172.26" y1="87.85" y2="95.18" y3="114.54"/> <curve x1="163.38" x2="151.47" x3="126.33" y1="100.75" y2="88.15" y3="88.15"/> <curve x1="106.99" x2="88.6" x3="80.76" y1="88.15" y2="101.2" y3="124.35"/> <close/> <move x="213.84" y="162.2"/> <curve x1="221.46" x2="226.78" x3="226.78" y1="162.2" y2="154.23" y3="147.5"/> <curve x1="226.78" x2="222.71" x3="214.8" y1="142.6" y2="134.56" y3="134.56"/> <curve x1="206.97" x2="202.33" x3="202.33" y1="134.56" y2="140.52" y3="147.82"/> <curve x1="202.33" x2="208.43" x3="213.84" y1="156.04" y2="162.2" y3="162.2"/> <close/> <move x="214.96" y="173.7"/> <curve x1="198.01" x2="179.96" x3="179.96" y1="173.7" y2="159.02" y3="135.83"/> <curve x1="179.96" x2="197.95" x3="217.19" y1="115.36" y2="100.68" y3="100.68"/> <curve x1="237.61" x2="252.82" x3="252.82" y1="100.68" y2="117.46" y3="137.27"/> <curve x1="252.82" x2="241.55" x3="214.96" y1="155.05" y2="173.7" y3="173.7"/> <close/> <move x="130.46" y="161.68"/> <curve x1="137.37" x2="142.42" x3="142.42" y1="161.68" y2="156.45" y3="148.94"/> <curve x1="142.42" x2="137.54" x3="131.22" y1="139.65" y2="134.95" y3="134.95"/> <curve x1="124.86" x2="118.47" x3="118.47" y1="134.95" y2="141.08" y3="147.58"/> <curve x1="118.47" x2="124.84" x3="130.46" y1="156.04" y2="161.68" y3="161.68"/> <close/> <move x="127.23" y="172.88"/> <curve x1="109.06" x2="92" x3="92" y1="172.69" y2="158.85" y3="135.52"/> <curve x1="92" x2="109.09" x3="129.15" y1="116.64" y2="100.81" y3="100.81"/> <curve x1="150.33" x2="164.79" x3="164.79" y1="100.81" y2="117.86" y3="138.52"/> <curve x1="164.79" x2="150.07" x3="127.23" y1="156.51" y2="173.67" y3="172.88"/> <close/> <move x="218.95" y="225.39"/> <curve x1="221.53" x2="221.72" x3="219.11" y1="222.18" y2="218.72" y3="214.76"/> <curve x1="216.93" x2="211.99" x3="208.25" y1="212.06" y2="210.74" y3="214.13"/> <curve x1="197.13" x2="190.79" x3="172.46" y1="224.65" y2="228.8" y3="228.82"/> <curve x1="157.95" x2="151.69" x3="137.78" y1="228.41" y2="227.81" y3="214.13"/> <curve x1="135.58" x2="131.26" x3="128.2" y1="211.93" y2="211.39" y3="213.17"/> <curve x1="124.97" x2="123.95" x3="124.92" y1="215.1" y2="219.25" y3="221"/> <curve x1="132.48" x2="151.09" x3="171.02" y1="232.66" y2="243.2" y3="243.2"/> <curve x1="194.61" x2="210.59" x3="218.95" y1="243.01" y2="233.98" y3="225.39"/> <close/> <move x="121.17" y="290.41"/> <curve x1="100.24" x2="82.73" x3="60.29" y1="288.69" y2="287.46" y3="278.04"/> <curve x1="48.45" x2="40.31" x3="32.81" y1="272.53" y2="265.58" y3="240.97"/> <curve x1="26.37" x2="22.94" x3="24.5" y1="216.09" y2="179.26" y3="141.91"/> <line x="79.46" y="142.86"/> <curve x1="83.46" x2="99.92" x3="129.16" y1="163.14" y2="186.64" y3="186.64"/> <curve x1="151.63" x2="163.64" x3="172.46" y1="186.64" y2="172.71" y3="159.64"/> <curve x1="182.26" x2="193.94" x3="218.47" y1="174.17" y2="186.16" y3="186.16"/> <curve x1="239.21" x2="261.91" x3="265.77" y1="186.16" y2="170.97" y3="142.7"/> <line x="322.33" y="142.07"/> <curve x1="323.17" x2="322.48" x3="306.48" y1="183.64" y2="229.41" y3="258.53"/> <curve x1="301.08" x2="295.77" x3="282.12" y1="269.79" y2="274.32" y3="279.42"/> <curve x1="264.23" x2="253.11" x3="224" y1="286.78" y2="288.95" y3="290.59"/> <line x="173.13" y="343.49"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="376.29" name="Evernote" strokewidth="inherit" w="316.75"> <connections/> <foreground> <path> <move x="76.06" y="9.84"/> <curve x1="73.97" x2="71.8" x3="71.59" y1="14.64" y2="19.55" y3="25.8"/> <curve x1="70.85" x2="70.59" x3="71.9" y1="38.6" y2="52.21" y3="68.23"/> <curve x1="71.9" x2="69.9" x3="65.83" y1="72.37" y2="73.77" y3="73.54"/> <curve x1="53.5" x2="33.2" x3="25.34" y1="73.23" y2="72.9" y3="73.84"/> <curve x1="18.85" x2="12.97" x3="5.22" y1="74.7" y2="75.77" y3="79.58"/> <curve x1="29.59" x2="53.39" x3="76.06" y1="54.28" y2="30.88" y3="9.84"/> <close/> <move x="259.94" y="182.96"/> <curve x1="261.05" x2="260.06" x3="243.29" y1="173.7" y2="158.83" y3="156.53"/> <curve x1="228.94" x2="222.13" x3="220.69" y1="154.89" y2="166.64" y3="178.56"/> <curve x1="235.21" x2="253.1" x3="259.94" y1="176.86" y2="179.84" y3="182.96"/> <close/> <move x="1.74" y="125.12"/> <curve x1="0" x2="3.91" x3="24.79" y1="100.26" y2="86.56" y3="83.99"/> <curve x1="39.94" x2="53.01" x3="68.91" y1="81.68" y2="82.82" y3="82.96"/> <curve x1="77.81" x2="82.35" x3="82.73" y1="83.62" y2="78.41" y3="64.65"/> <curve x1="82.22" x2="81.78" x3="82.18" y1="52.16" y2="42.91" y3="33.72"/> <curve x1="83.48" x2="94.18" x3="115.99" y1="10.64" y2="1.36" y3="0.55"/> <curve x1="134.21" x2="147.47" x3="153.64" y1="0" y2="0.51" y3="1.69"/> <curve x1="176.93" x2="182.91" x3="186.57" y1="5.33" y2="16.56" y3="28.86"/> <curve x1="209.27" x2="232.76" x3="250.35" y1="29.84" y2="30.66" y3="32.66"/> <curve x1="267.96" x2="278.72" x3="287.01" y1="34.64" y2="37.4" y3="40.45"/> <curve x1="299.98" x2="300.78" x3="301.71" y1="46.17" y2="50.4" y3="54.09"/> <curve x1="309.83" x2="313.31" x3="313.11" y1="87.17" y2="134.06" y3="145"/> <curve x1="316.75" x2="313.11" x3="309.52" y1="201.43" y2="251.14" y3="270.13"/> <curve x1="305.76" x2="298.65" x3="289.03" y1="294.67" y2="320.39" y3="344.88"/> <curve x1="282.4" x2="270.98" x3="244.87" y1="362.07" y2="374.99" y3="375.93"/> <curve x1="221.44" x2="200.59" x3="184.2" y1="376.29" y2="376.15" y3="372.71"/> <curve x1="173.99" x2="160.67" x3="158.22" y1="370.72" y2="363.7" y3="345.65"/> <curve x1="155.63" x2="156.06" x3="158.1" y1="326.04" y2="317.52" y3="306.79"/> <curve x1="161.51" x2="172.23" x3="187.7" y1="288.89" y2="282.57" y3="279.9"/> <curve x1="199.95" x2="203.87" x3="213.35" y1="278.03" y2="278.55" y3="279.56"/> <curve x1="218.55" x2="218.23" x3="217.3" y1="279.77" y2="282.2" y3="284.64"/> <curve x1="215.97" x2="214.51" x3="215.89" y1="288.74" y2="299.18" y3="301.59"/> <curve x1="217.46" x2="216.97" x3="213.63" y1="304.26" y2="306.48" y3="307.01"/> <curve x1="209.01" x2="208.43" x3="198.72" y1="307.78" y2="304.99" y3="306.79"/> <curve x1="192.48" x2="191.09" x3="190.08" y1="308.18" y2="311.45" y3="316.96"/> <curve x1="189.4" x2="189.35" x3="190.92" y1="321.96" y2="326.58" y3="330.23"/> <curve x1="192.77" x2="198.78" x3="202.67" y1="334.86" y2="336.93" y3="336.45"/> <line x="232.22" y="336.62"/> <curve x1="239.67" x2="250.45" x3="252.01" y1="336.62" y2="334.4" y3="322.71"/> <curve x1="253.86" x2="253.48" x3="249.58" y1="310.19" y2="295.29" y3="278"/> <curve x1="247.42" x2="244.12" x3="230.25" y1="270.07" y2="262.29" y3="259.42"/> <curve x1="212.32" x2="194.19" x3="182.53" y1="255.4" y2="255.51" y3="250.91"/> <curve x1="163.4" x2="161.38" x3="160.42" y1="243.27" y2="233.14" y3="204.31"/> <curve x1="158.25" x2="155.19" x3="150.79" y1="232" y2="246.24" y3="255.88"/> <curve x1="145.47" x2="141.06" x3="130.4" y1="267.33" y2="271.17" y3="269.52"/> <curve x1="106.29" x2="65.46" x3="38.46" y1="267.15" y2="262.14" y3="249.06"/> <curve x1="28.49" x2="24.95" x3="20.44" y1="244.15" y2="240.07" y3="219.75"/> <curve x1="18.76" x2="15.64" x3="13.75" y1="211.75" y2="202.7" y3="195.91"/> <curve x1="6.55" x2="3.43" x3="1.74" y1="167.1" y2="151.12" y3="125.12"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="395.13" name="Fancy" strokewidth="inherit" w="195.91"> <connections/> <foreground> <path> <move x="25.83" y="296.23"/> <curve x1="17.51" x2="0" x3="0" y1="296.23" y2="288.65" y3="266.12"/> <line x="0" y="90.12"/> <curve x1="0" x2="51.69" x3="83.83" y1="29.17" y2="0" y3="0"/> <line x="115.78" y="0"/> <curve x1="155.24" x2="195.91" x3="195.91" y1="0" y2="41.81" y3="81.81"/> <line x="195.91" y="270.03"/> <curve x1="195.91" x2="183.36" x3="165.95" y1="282.72" y2="296.23" y3="296.23"/> <line x="119.7" y="296.23"/> <line x="119.7" y="374.04"/> <curve x1="119.7" x2="110.85" x3="97.73" y1="387.87" y2="395.13" y3="395.13"/> <curve x1="89" x2="78.23" x3="78.23" y1="395.13" y2="387.95" y3="372.76"/> <line x="78.23" y="296.23"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="351.25" name="Fark" strokewidth="inherit" w="221.29"> <connections/> <foreground> <path> <move x="0" y="351.25"/> <line x="0" y="0"/> <line x="221.29" y="0"/> <line x="221.29" y="70.2"/> <line x="80.18" y="70.2"/> <line x="80.18" y="150.95"/> <line x="211.28" y="150.95"/> <line x="211.28" y="220.28"/> <line x="80.18" y="220.28"/> <line x="80.18" y="351.25"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="365.57" name="Fashiolista" strokewidth="inherit" w="387.73"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="181.99" y="364.37"/> <line x="0" y="182.47"/> <line x="181.99" y="0.72"/> <line x="193.01" y="12.06"/> <line x="205" y="0"/> <line x="387.73" y="182.7"/> <line x="204.76" y="365.57"/> <line x="192.61" y="353.59"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="179.67" y="245.42"/> <line x="179.67" y="191.17"/> <line x="208.91" y="191.17"/> <line x="208.75" y="173.76"/> <line x="179.67" y="173.76"/> <line x="179.67" y="136.21"/> <line x="212.82" y="136.21"/> <line x="212.82" y="119.75"/> <line x="161.46" y="119.75"/> <line x="161.46" y="245.74"/> <close/> <move x="181.91" y="358.14"/> <line x="5.67" y="182.55"/> <line x="181.91" y="6.63"/> <line x="358.3" y="182.59"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="295.97" name="Feed" strokewidth="inherit" w="301.69"> <connections/> <foreground> <path> <move x="235.48" y="295.95"/> <curve x1="239.74" x2="223.17" x3="177.53" y1="242.84" y2="181.45" y3="134.07"/> <curve x1="125.31" x2="57.56" x3="0.09" y1="79.5" y2="64.37" y3="70.98"/> <line x="0" y="9.64"/> <curve x1="79.79" x2="158.14" x3="218.02" y1="0" y2="26.81" y3="83.87"/> <curve x1="282.69" x2="301.69" x3="296.93" y1="148.08" y2="224.55" y3="295.94"/> <close/> <move x="138.18" y="295.95"/> <curve x1="141.45" x2="129.43" x3="97.91" y1="261.01" y2="223.16" y3="193.98"/> <curve x1="68.04" x2="32.15" x3="0.05" y1="167.29" y2="159.34" y3="163.15"/> <line x="0" y="101.96"/> <curve x1="70.99" x2="126.94" x3="155.58" y1="91.45" y2="124.24" y3="157.16"/> <curve x1="190.18" x2="205.16" x3="199.48" y1="195.08" y2="244.88" y3="295.97"/> <close/> <move x="45.06" y="295.97"/> <curve x1="28.84" x2="5.16" x3="5.16" y1="295.97" y2="282.53" y3="253.65"/> <curve x1="5.16" x2="24.75" x3="44.93" y1="232.12" y2="214.02" y3="214.02"/> <curve x1="69.36" x2="87.14" x3="87.14" y1="214.02" y2="231.73" y3="255.93"/> <curve x1="87.14" x2="72.68" x3="45.06" y1="273.63" y2="295.97" y3="295.97"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="372.21" name="Feedburner" strokewidth="inherit" w="342.53"> <connections/> <foreground> <fillcolor color="#027bbc"/> <path> <move x="53.14" y="346.76"/> <curve x1="14.96" x2="0" x3="0" y1="330.38" y2="311.8" y3="293.23"/> <curve x1="0" x2="31.31" x3="55.04" y1="268.69" y2="248.6" y3="240.3"/> <line x="288.54" y="240.49"/> <curve x1="317.29" x2="341.56" x3="342.53" y1="250.99" y2="271.6" y3="291.96"/> <curve x1="342.53" x2="317.73" x3="250.27" y1="317.22" y2="342.21" y3="358.5"/> <curve x1="191.01" x2="109.15" x3="53.14" y1="372.21" y2="368.57" y3="346.76"/> <close/> </path> <fill/> <fillcolor color="#ee3a42"/> <path> <move x="164.63" y="344.99"/> <curve x1="122.45" x2="87.67" x3="69.14" y1="344.99" y2="317.97" y3="283.17"/> <curve x1="56.99" x2="46.14" x3="49.66" y1="260.92" y2="218.48" y3="176.7"/> <curve x1="62.91" x2="104.61" x3="140.05" y1="84.79" y2="29.74" y3="0"/> <curve x1="136.36" x2="133.21" x3="137.82" y1="12.4" y2="28.43" y3="45.68"/> <curve x1="143.86" x2="161.96" x3="165.34" y1="68.91" y2="87.27" y3="108.61"/> <curve x1="169.25" x2="157.71" x3="142.45" y1="136.71" y2="164.15" y3="189.67"/> <curve x1="170.03" x2="189.86" x3="202.79" y1="198.05" y2="188.7" y3="170.98"/> <curve x1="217.62" x2="217.76" x3="213.57" y1="149.73" y2="132.77" y3="104.51"/> <curve x1="242.33" x2="264.95" x3="277.6" y1="121.42" y2="139.59" y3="162.67"/> <curve x1="290.58" x2="291.98" x3="290.83" y1="189.67" y2="215.75" y3="229.25"/> <curve x1="288.6" x2="276.89" x3="248.72" y1="255.12" y2="283.3" y3="309.82"/> <curve x1="223.87" x2="197.53" x3="164.63" y1="332" y2="343.34" y3="344.99"/> <close/> </path> <fill/> <fillcolor color="#ffc523"/> <path> <move x="160.9" y="321.47"/> <curve x1="138.28" x2="113.45" x3="98.84" y1="321.47" y2="311.89" y3="292.52"/> <curve x1="66.77" x2="76.87" x3="105.19" y1="248.26" y2="201.06" y3="153.35"/> <curve x1="100.94" x2="99.92" x3="119.25" y1="178.05" y2="200.63" y3="230.68"/> <curve x1="141.2" x2="170.82" x3="190.19" y1="259.26" y2="257.48" y3="245.38"/> <curve x1="208.21" x2="224.32" x3="229.74" y1="234.17" y2="200.54" y3="173.4"/> <curve x1="255.89" x2="264.68" x3="259.82" y1="193.74" y2="221" y3="253.69"/> <curve x1="250.11" x2="206.97" x3="160.9" y1="297.89" y2="321.41" y3="321.47"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="155.6" name="Flickr" strokewidth="inherit" w="356.1"> <connections/> <foreground> <fillcolor color="#0062dd"/> <path> <move x="0" y="78.5"/> <curve x1="0" x2="34.02" x3="78.13" y1="37.01" y2="0.15" y3="0.15"/> <curve x1="127.87" x2="155.68" x3="155.68" y1="0.15" y2="46.2" y3="76.23"/> <curve x1="155.68" x2="122.24" x3="79.24" y1="117.36" y2="155.57" y3="155.57"/> <curve x1="34.29" x2="0" x3="0" y1="155.57" y2="120.69" y3="78.5"/> <close/> </path> <fill/> <fillcolor color="#ff0084"/> <path> <move x="275.34" y="155.6"/> <curve x1="241.66" x2="200.53" x3="200.53" y1="155.6" y2="124.41" y3="77.36"/> <curve x1="200.53" x2="237.56" x3="279.29" y1="34.99" y2="0" y3="0"/> <curve x1="316" x2="356.1" x3="356.1" y1="0" y2="31.72" y3="77.47"/> <curve x1="356.1" x2="329.25" x3="275.34" y1="113.36" y2="155.6" y3="155.6"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="217.56" name="Folkd" strokewidth="inherit" w="419.03"> <connections/> <foreground> <path> <move x="278.4" y="112.93"/> <curve x1="284.47" x2="288.74" x3="289.78" y1="116.45" y2="112.04" y3="108.55"/> <curve x1="292.16" x2="293.02" x3="291.79" y1="100.55" y2="91.47" y3="80.92"/> <curve x1="291.15" x2="288.38" x3="279.46" y1="76.78" y2="69.04" y3="72.2"/> <curve x1="274.47" x2="269.59" x3="265.49" y1="73.77" y2="76.66" y3="89.38"/> <curve x1="263.47" x2="264.33" x3="266.94" y1="96.43" y2="99.16" y3="103.21"/> <curve x1="272.14" x2="275.22" x3="278.4" y1="109.3" y2="111.02" y3="112.93"/> <close/> <move x="233.84" y="112.91"/> <curve x1="237.57" x2="239.65" x3="232.37" y1="107.3" y2="101.36" y3="93.66"/> <curve x1="225.54" x2="217.04" x3="201.84" y1="86.18" y2="79.29" y3="74.79"/> <curve x1="188.86" x2="173.8" x3="168.5" y1="72.33" y2="72.88" y3="82.84"/> <curve x1="163.97" x2="165.88" x3="174.96" y1="93.4" y2="106.55" y3="122.76"/> <curve x1="185.26" x2="196.18" x3="207.37" y1="137.15" y2="139.42" y3="135.88"/> <curve x1="218.7" x2="226.92" x3="233.84" y1="131.11" y2="122.22" y3="112.91"/> <close/> <move x="32.93" y="166.63"/> <curve x1="33.58" x2="34.35" x3="23.91" y1="173.21" y2="181.81" y3="185.88"/> <curve x1="17.44" x2="12.88" x3="7.37" y1="188.31" y2="188.08" y3="185.16"/> <curve x1="2.89" x2="0" x3="1.86" y1="182.35" y2="175.71" y3="163.51"/> <curve x1="3.6" x2="9.06" x3="14.72" y1="152.78" y2="146.66" y3="142.5"/> <curve x1="20.69" x2="25.04" x3="30.94" y1="139.24" y2="141.54" y3="152.01"/> <line x="116.66" y="124.29"/> <curve x1="115.64" x2="123.65" x3="135.19" y1="102.81" y2="89.51" y3="76.48"/> <curve x1="133.07" x2="130.39" x3="126.56" y1="72.68" y2="68.85" y3="65.37"/> <curve x1="117.99" x2="110.72" x3="105.23" y1="71" y2="71.76" y3="65.89"/> <curve x1="101.85" x2="99.97" x3="106.35" y1="61.6" y2="54.37" y3="44.64"/> <curve x1="114.86" x2="121.45" x3="129.12" y1="31.74" y2="32.46" y3="38.13"/> <curve x1="139.03" x2="135.22" x3="132.4" y1="46.18" y2="55.09" y3="59.42"/> <curve x1="136.9" x2="140.13" x3="143.5" y1="62.74" y2="65.48" y3="68.29"/> <curve x1="153.55" x2="165.1" x3="178.91" y1="58.34" y2="50.22" y3="44.04"/> <curve x1="179.05" x2="178.87" x3="176.85" y1="40.05" y2="35.74" y3="30.58"/> <curve x1="167.07" x2="163.47" x3="161.56" y1="30.3" y2="31.21" y3="21.43"/> <curve x1="160.22" x2="165.78" x3="172.82" y1="14.12" y2="8.84" y3="7.53"/> <curve x1="181.39" x2="188.58" x3="192.95" y1="6.29" y2="7.93" y3="13.36"/> <curve x1="195.9" x2="195.68" x3="193.23" y1="17.82" y2="20.44" y3="23.67"/> <curve x1="190.55" x2="188.69" x3="184.2" y1="26.78" y2="27.62" y3="29.14"/> <curve x1="186.87" x2="188.85" x3="190.67" y1="33.13" y2="36.7" y3="40.16"/> <curve x1="205.67" x2="226.13" x3="241.84" y1="34.7" y2="35.38" y3="37.74"/> <curve x1="243.35" x2="244.8" x3="245.57" y1="33.94" y2="29.56" y3="23.68"/> <curve x1="240.4" x2="233.99" x3="234.81" y1="22.01" y2="19.01" y3="12.04"/> <curve x1="235.75" x2="241.36" x3="246.96" y1="5.95" y2="2.63" y3="1.18"/> <curve x1="251.82" x2="256.65" x3="259.27" y1="0" y2="2.16" y3="4.11"/> <curve x1="265.56" x2="268.66" x3="270.3" y1="9.45" y2="13.24" y3="16.33"/> <curve x1="272.39" x2="270.95" x3="267.71" y1="20.71" y2="22.47" y3="23.42"/> <curve x1="264.76" x2="260.39" x3="255.02" y1="24.2" y2="24.55" y3="24.58"/> <curve x1="253.18" x2="252.21" x3="252" y1="30.52" y2="35.6" y3="39.66"/> <curve x1="265.9" x2="277.97" x3="287.09" y1="42.24" y2="45.76" y3="51.16"/> <curve x1="290.01" x2="293.32" x3="296.47" y1="48.92" y2="44.55" y3="39.77"/> <curve x1="293.96" x2="291.78" x3="294.89" y1="37.24" y2="32.48" y3="25.46"/> <curve x1="299.76" x2="308.08" x3="312.86" y1="18" y2="17.94" y3="21.2"/> <curve x1="318.75" x2="323.95" x3="325.19" y1="25.53" y2="30.87" y3="35.84"/> <curve x1="326.71" x2="324.28" x3="320.06" y1="40.94" y2="42.86" y3="43.32"/> <curve x1="315.33" x2="312.36" x3="304.85" y1="43.76" y2="43.62" y3="42.31"/> <curve x1="302.67" x2="299.65" x3="296.11" y1="48.18" y2="52.55" y3="56.01"/> <curve x1="303.78" x2="309.86" x3="313.46" y1="61.36" y2="67.12" y3="73.53"/> <line x="381.73" y="59.58"/> <curve x1="381.73" x2="384.23" x3="387.4" y1="50.69" y2="45.82" y3="42"/> <curve x1="393.85" x2="398.93" x3="403.46" y1="35.84" y2="36.65" y3="40.24"/> <curve x1="415.57" x2="419.03" x3="418.72" y1="50.8" y2="61.22" y3="70.04"/> <curve x1="418.65" x2="414.58" x3="404.74" y1="75.37" y2="82.12" y3="83.86"/> <curve x1="394.31" x2="383.63" x3="381.81" y1="85.61" y2="82.16" y3="70.12"/> <curve x1="360.83" x2="336.06" x3="316.38" y1="73.69" y2="77.77" y3="83.3"/> <curve x1="318.36" x2="318.32" x3="315.82" y1="94.71" y2="103.03" y3="109.11"/> <curve x1="322.33" x2="326.76" x3="330.52" y1="109.55" y2="110.32" y3="111.19"/> <curve x1="334.63" x2="338.57" x3="344.18" y1="103.68" y2="102.51" y3="102.56"/> <curve x1="351.72" x2="352.41" x3="352.25" y1="102.89" y2="112.15" y3="117.1"/> <curve x1="351.91" x2="350.18" x3="346.02" y1="127.26" y2="134.64" y3="137.15"/> <curve x1="339.72" x2="333.86" x3="328.84" y1="139.96" y2="139.38" y3="132.2"/> <curve x1="326.74" x2="327.49" x3="327.96" y1="128.2" y2="123.46" y3="119.89"/> <curve x1="324.12" x2="319.17" x3="311.51" y1="118.88" y2="118.28" y3="117.9"/> <curve x1="307.12" x2="301.13" x3="290.02" y1="124.79" y2="130.76" y3="138.03"/> <curve x1="292" x2="296.49" x3="300.24" y1="141.25" y2="145.32" y3="149.13"/> <curve x1="305.94" x2="311.7" x3="317.82" y1="145.5" y2="143.06" y3="147.22"/> <curve x1="327.24" x2="318.88" x3="315.58" y1="155.03" y2="163.31" y3="166.55"/> <curve x1="311.29" x2="306.39" x3="298.73" y1="170.85" y2="174.38" y3="174.46"/> <curve x1="295.07" x2="290.51" x3="291.93" y1="174.56" y2="171.28" y3="163.59"/> <curve x1="292.61" x2="293.98" x3="295.29" y1="159.89" y2="158.05" y3="156.16"/> <curve x1="290.46" x2="285.55" x3="282.75" y1="152.2" y2="146.42" y3="142.18"/> <curve x1="272.68" x2="262.03" x3="250.47" y1="148.66" y2="154.54" y3="159.52"/> <curve x1="251.95" x2="253.64" x3="255.9" y1="166" y2="170.09" y3="172.86"/> <curve x1="259.8" x2="266.76" x3="270.52" y1="171.85" y2="170.31" y3="172.22"/> <curve x1="276.24" x2="276.89" x3="275.08" y1="174.98" y2="181.09" y3="185.24"/> <curve x1="273.35" x2="268.23" x3="260.38" y1="188.73" y2="193.4" y3="197.23"/> <curve x1="252.5" x2="247.07" x3="243.76" y1="201.09" y2="202.03" y3="199.3"/> <curve x1="240.07" x2="239.2" x3="242.24" y1="196.05" y2="191.38" y3="186.04"/> <curve x1="244.79" x2="246.14" x3="248.31" y1="181.39" y2="180.17" y3="177.89"/> <curve x1="246.41" x2="243.93" x3="242.72" y1="174.97" y2="172.78" y3="163.11"/> <curve x1="231.18" x2="215.71" x3="199.74" y1="168.91" y2="174.88" y3="176.46"/> <curve x1="198.5" x2="197.54" x3="197.98" y1="180.7" y2="185.28" y3="191.63"/> <curve x1="204.07" x2="206.63" x3="208.77" y1="190.71" y2="193.68" y3="195.87"/> <curve x1="211.64" x2="210.43" x3="206.05" y1="198.78" y2="204.26" y3="208.65"/> <curve x1="200.3" x2="193.85" x3="185.12" y1="214.84" y2="217.56" y3="214.72"/> <curve x1="179.9" x2="174.82" x3="175.38" y1="213" y2="209.49" y3="203.14"/> <curve x1="175.92" x2="181.16" x3="186.8" y1="196.94" y2="194.06" y3="192.83"/> <curve x1="186.4" x2="186.61" x3="187.52" y1="187.56" y2="182.24" y3="178.37"/> <curve x1="176.16" x2="163.1" x3="150.45" y1="178.44" y2="179.28" y3="171.34"/> <curve x1="146.64" x2="142.97" x3="139.59" y1="175.84" y2="180.88" y3="187.08"/> <curve x1="145.08" x2="147.23" x3="143.58" y1="191.9" y2="197.73" y3="201.54"/> <curve x1="140.58" x2="134.31" x3="125.13" y1="204.41" y2="204.61" y3="201.94"/> <curve x1="121.84" x2="112.77" x3="112.82" y1="200.79" y2="198.71" y3="187.88"/> <curve x1="112.94" x2="116.13" x3="120.17" y1="181.14" y2="178.15" y3="176.54"/> <curve x1="123.87" x2="128.1" x3="131.92" y1="175.35" y2="176.72" y3="179.25"/> <curve x1="134.57" x2="137.1" x3="140.77" y1="174.66" y2="170.02" y3="165.86"/> <curve x1="132.11" x2="122.93" x3="118.63" y1="159.23" y2="150.01" y3="134.08"/> <curve x1="92.48" x2="63.55" x3="32.93" y1="144.47" y2="155.39" y3="166.63"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="365.81" name="Forrst" strokewidth="inherit" w="264.19"> <connections/> <foreground> <path> <move x="110.73" y="365.81"/> <line x="110.73" y="318.36"/> <line x="0" y="318.36"/> <line x="131.58" y="0"/> <line x="264.19" y="318.36"/> <line x="153.91" y="318.36"/> <line x="153.91" y="365.81"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="118.85" y="359.24"/> <line x="144.83" y="359.24"/> <line x="144.83" y="268.26"/> <line x="197.48" y="240.32"/> <line x="193.91" y="233.33"/> <line x="144.83" y="260.32"/> <line x="144.83" y="233.03"/> <line x="176.05" y="216.56"/> <line x="172.63" y="209.91"/> <line x="144.83" y="224.72"/> <line x="144.83" y="187.5"/> <line x="118.85" y="187.5"/> <line x="118.85" y="243.25"/> <line x="90.49" y="222.65"/> <line x="85.94" y="229.46"/> <line x="118.85" y="251.93"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="238" name="Fotolog" strokewidth="inherit" w="238"> <connections/> <foreground> <path> <move x="0" y="238"/> <line x="0" y="0"/> <line x="238" y="0"/> <line x="238" y="238"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="58" y="180"/> <line x="180" y="180"/> <line x="180" y="58"/> <line x="58" y="58"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="379.46" name="Freshbump" strokewidth="inherit" w="356.08"> <connections/> <foreground> <path> <move x="80" y="256.36"/> <curve x1="80.12" x2="82.62" x3="88.2" y1="237.33" y2="217.63" y3="206.81"/> <curve x1="103.37" x2="130.66" x3="170.87" y1="175.46" y2="143.9" y3="132.79"/> <curve x1="186.03" x2="201.03" x3="223.66" y1="128.78" y2="126.47" y3="122.45"/> <curve x1="243.86" x2="259.07" x3="273.08" y1="118.35" y2="109.54" y3="85.77"/> <curve x1="287.31" x2="295.92" x3="291.02" y1="62.14" y2="24.94" y3="0"/> <curve x1="331.59" x2="356.08" x3="350.57" y1="61.11" y2="144.75" y3="204.11"/> <curve x1="346.69" x2="296.48" x3="246.36" y1="280.81" y2="341.76" y3="362.15"/> <curve x1="202.85" x2="154.26" x3="113.72" y1="379.46" y2="376.4" y3="348.96"/> <curve x1="108.83" x2="98.54" x3="92.99" y1="345.32" y2="329.87" y3="315.94"/> <curve x1="91.47" x2="89.13" x3="103.7" y1="312.53" y2="296.26" y3="285.82"/> <curve x1="147.77" x2="203.98" x3="239.22" y1="260.04" y2="230.6" y3="192.49"/> <curve x1="274.63" x2="293.42" x3="299.85" y1="154.34" y2="112.29" y3="75.34"/> <curve x1="276.95" x2="263.17" x3="219.86" y1="129.33" y2="151.93" y3="188.05"/> <curve x1="177.1" x2="141.91" x3="92.26" y1="223.98" y2="246.97" y3="260.54"/> <curve x1="89.35" x2="80.7" x3="80" y1="261.5" y2="261.36" y3="256.36"/> <close/> <move x="64.7" y="325.24"/> <curve x1="39.65" x2="19.38" x3="18.39" y1="311.35" y2="280.98" y3="238.73"/> <curve x1="18.21" x2="31.2" x3="43.09" y1="198.3" y2="169.5" y3="141.81"/> <curve x1="63" x2="47.51" x3="0" y1="101.78" y2="59.26" y3="25.78"/> <curve x1="70.82" x2="158.27" x3="188.7" y1="19.77" y2="75.93" y3="103.43"/> <curve x1="154.72" x2="126.51" x3="101.46" y1="105.74" y2="120.93" y3="143.22"/> <curve x1="95.87" x2="93.3" x3="61.83" y1="118.27" y2="94.99" y3="55.66"/> <curve x1="78.97" x2="87.19" x3="89.96" y1="87.85" y2="114.5" y3="155.2"/> <curve x1="51.1" x2="41.81" x3="64.7" y1="199.46" y2="264.34" y3="325.24"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="426.27" name="Fresqui" strokewidth="inherit" w="380.67"> <connections/> <foreground> <fillcolor color="#b7e0f8"/> <path> <move x="127.57" y="0"/> <curve x1="188.41" x2="245.76" x3="307.48" y1="48.1" y2="80.9" y3="126.22"/> <curve x1="360.78" x2="380.67" x3="379.7" y1="167.33" y2="219.72" y3="265.55"/> <curve x1="375.19" x2="317.58" x3="195.9" y1="342.24" y2="426.27" y3="426.27"/> <curve x1="108.68" x2="0.77" x3="0" y1="426.27" y2="371.44" y3="235.29"/> <curve x1="0" x2="18.88" x3="45.45" y1="192.82" y2="138.87" y3="94.27"/> <curve x1="69.86" x2="98.4" x3="127.57" y1="53.96" y2="26.03" y3="0"/> <close/> </path> <fill/> <fillcolor color="#5a8fca"/> <path> <move x="126.78" y="37.87"/> <curve x1="132.55" x2="158.23" x3="176.79" y1="76.99" y2="92.06" y3="105.29"/> <curve x1="156.99" x2="136.46" x3="119.9" y1="120.52" y2="133.81" y3="157.54"/> <curve x1="111.94" x2="111.86" x3="116.23" y1="170.1" y2="178.31" y3="184.06"/> <curve x1="122.97" x2="131.86" x3="142.43" y1="192.25" y2="192.28" y3="185.98"/> <curve x1="152" x2="161.15" x3="169.44" y1="179.9" y2="172.29" y3="161.54"/> <curve x1="179.02" x2="191.03" x3="203.91" y1="171.14" y2="180.11" y3="186.71"/> <curve x1="181.87" x2="161.31" x3="161.45" y1="213.09" y2="241.05" y3="291.28"/> <curve x1="165.82" x2="199.2" x3="218.17" y1="351.79" y2="381.8" y3="398.49"/> <curve x1="171.68" x2="125.91" x3="92.26" y1="403.62" y2="390.75" y3="363.5"/> <curve x1="67.36" x2="41.8" x3="31.55" y1="341.08" y2="307.52" y3="247.66"/> <curve x1="27.53" x2="36.57" x3="59.99" y1="225.13" y2="165.03" y3="126.7"/> <curve x1="82.51" x2="104.68" x3="126.78" y1="86.55" y2="60.73" y3="37.87"/> <close/> </path> <fill/> <fillcolor color="#dcf0fc"/> <path> <move x="129.81" y="14.38"/> <curve x1="194.56" x2="239.07" x3="279.36" y1="52.54" y2="89.22" y3="125.59"/> <curve x1="302.64" x2="302.68" x3="296.62" y1="147.42" y2="166.41" y3="178.63"/> <curve x1="288.22" x2="261.75" x3="237.5" y1="192.67" y2="193.4" y3="192.37"/> <curve x1="203.23" x2="184.5" x3="158.57" y1="191.44" y2="178.38" y3="149.87"/> <curve x1="146.22" x2="139.09" x3="134.12" y1="135.16" y2="112.24" y3="87.88"/> <curve x1="130.84" x2="128.45" x3="129.81" y1="63.21" y2="38.62" y3="14.38"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="355.32" name="Friendfeed" strokewidth="inherit" w="369.44"> <connections/> <foreground> <path> <move x="64.29" y="355.32"/> <line x="64.29" y="194.58"/> <line x="0.24" y="194.58"/> <line x="0" y="129.35"/> <line x="64.29" y="129.35"/> <line x="64.29" y="94.53"/> <curve x1="64.29" x2="109.7" x3="148.96" y1="40.59" y2="0" y3="0"/> <line x="207.43" y="0"/> <line x="207.43" y="64.63"/> <line x="152.51" y="64.63"/> <curve x1="143.74" x2="130.04" x3="130.04" y1="64.63" y2="77.11" y3="96.86"/> <line x="130.04" y="129.35"/> <line x="226.29" y="129.35"/> <line x="226.29" y="93.42"/> <curve x1="226.29" x2="262.56" x3="312.85" y1="49.79" y2="0" y3="0"/> <line x="369.44" y="0"/> <line x="369.44" y="64.63"/> <line x="314.41" y="64.63"/> <curve x1="301.3" x2="292" x3="292" y1="64.63" y2="82.84" y3="94.33"/> <line x="292" y="129.35"/> <line x="356.47" y="129.35"/> <line x="356.47" y="194.58"/> <line x="292" y="194.58"/> <line x="292" y="355.32"/> <line x="226.29" y="355.32"/> <line x="226.29" y="194.58"/> <line x="130.04" y="194.58"/> <line x="130.04" y="355.32"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="199.66" name="Funp" strokewidth="inherit" w="375.09"> <connections/> <foreground> <fillcolor color="#1e407d"/> <path> <move x="165.85" y="196.46"/> <curve x1="168.35" x2="170.42" x3="170.8" y1="170.82" y2="146.2" y3="123.52"/> <line x="195.89" y="123.52"/> <line x="194.61" y="136.14"/> <curve x1="202.67" x2="213.35" x3="228.16" y1="126.61" y2="121.98" y3="120.96"/> <curve x1="243.33" x2="251.43" x3="257.56" y1="120.6" y2="124.32" y3="127.68"/> <curve x1="261.84" x2="266.2" x3="265.71" y1="130.64" y2="136.36" y3="149.41"/> <line x="263" y="196.46"/> <line x="237.27" y="196.46"/> <line x="240.47" y="157.23"/> <curve x1="241.06" x2="239.36" x3="226.89" y1="150.29" y2="141.26" y3="138.22"/> <curve x1="218.48" x2="210.56" x3="204.52" y1="136.59" y2="138.88" y3="141.9"/> <curve x1="197.96" x2="193.82" x3="193.01" y1="145.85" y2="154.41" y3="166.02"/> <line x="191.1" y="196.46"/> <close/> <move x="152.32" y="196.46"/> <line x="127.96" y="196.46"/> <line x="128.52" y="184.69"/> <curve x1="124.23" x2="118.72" x3="105.06" y1="189.59" y2="195.77" y3="198"/> <curve x1="90.79" x2="79.02" x3="69.31" y1="199.66" y2="198.7" y3="193.45"/> <curve x1="63.79" x2="58.92" x3="60.06" y1="189.8" y2="184.25" y3="169.95"/> <curve x1="62.04" x2="62.41" x3="62.99" y1="154.94" y2="141.86" y3="123.52"/> <line x="88.78" y="123.52"/> <curve x1="86.25" x2="85.34" x3="84.64" y1="141.94" y2="154.46" y3="168.69"/> <curve x1="84.53" x2="88.55" x3="94.72" y1="174.09" y2="179.36" y3="181.15"/> <curve x1="103.22" x2="108.77" x3="115.89" y1="183.21" y2="182.92" y3="180.59"/> <curve x1="123.9" x2="128.1" x3="129.79" y1="177.09" y2="171.47" y3="159.95"/> <curve x1="131.32" x2="131.11" x3="131.5" y1="149.2" y2="136.2" y3="123.52"/> <line x="156.74" y="123.52"/> <curve x1="154.34" x2="152.62" x3="152.32" y1="149.94" y2="174.25" y3="196.46"/> <close/> <move x="7.83" y="196.46"/> <line x="11.58" y="137.58"/> <line x="0" y="137.58"/> <line x="1.2" y="123.52"/> <line x="12.86" y="123.52"/> <line x="13.5" y="111.22"/> <curve x1="14.21" x2="22.57" x3="32.67" y1="101.01" y2="96.4" y3="95.16"/> <curve x1="45.33" x2="53.83" x3="64.79" y1="93.82" y2="94.4" y3="97.16"/> <line x="65.27" y="110.58"/> <curve x1="60.22" x2="55.64" x3="47.77" y1="109.15" y2="107.29" y3="107.54"/> <curve x1="39.37" x2="35.77" x3="35.95" y1="108.19" y2="114.55" y3="117.85"/> <line x="36.27" y="123.52"/> <line x="58.88" y="123.52"/> <line x="58.4" y="137.58"/> <line x="35.47" y="137.58"/> <line x="33.95" y="196.46"/> <close/> </path> <fill/> <fillcolor color="#d41f26"/> <path> <move x="277.69" y="196.46"/> <curve x1="279.99" x2="283.18" x3="282.62" y1="169.35" y2="135.17" y3="97.88"/> <line x="343.25" y="97.88"/> <curve x1="356.54" x2="369.8" x3="373.04" y1="97.88" y2="104" y3="119.81"/> <curve x1="375.09" x2="367.2" x3="354.92" y1="131.07" y2="145.31" y3="150.81"/> <curve x1="342.4" x2="333.82" x3="314.99" y1="156.04" y2="156.93" y3="155.29"/> <line x="310.45" y="141.18"/> <curve x1="320.74" x2="332.23" x3="337.05" y1="141.79" y2="141.76" y3="139.42"/> <curve x1="340.55" x2="346.79" x3="346.72" y1="137.74" y2="131.82" y3="126.08"/> <curve x1="346.5" x2="343.28" x3="333.86" y1="119.95" y2="113.78" y3="112.5"/> <curve x1="328.44" x2="316.92" x3="307.41" y1="111.71" y2="112.49" y3="112.5"/> <curve x1="305.78" x2="303.6" x3="303.74" y1="118.14" y2="165.19" y3="196.46"/> <close/> </path> <fill/> <fillcolor color="#b8b8b7"/> <path> <move x="259.32" y="106.9"/> <line x="215.7" y="72.39"/> <curve x1="208.1" x2="197.29" x3="194.54" y1="65.63" y2="62.09" y3="45.47"/> <curve x1="193.31" x2="196.66" x3="211.23" y1="35.32" y2="25.22" y3="16.04"/> <curve x1="228.15" x2="251.26" x3="280.21" y1="5.62" y2="0" y3="7.92"/> <curve x1="305.69" x2="316.19" x3="316.27" y1="16.31" y2="27.86" y3="43.67"/> <curve x1="314.39" x2="309.66" x3="292.06" y1="55.33" y2="62.83" y3="71.83"/> <curve x1="278.97" x2="267.96" x3="253.07" y1="78.09" y2="79.59" y3="80.14"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="252.45" y="96.12"/> <line x="218.02" y="68.88"/> <curve x1="211.55" x2="201.48" x3="198.36" y1="63.04" y2="59.6" y3="44.99"/> <curve x1="196.69" x2="202.1" x3="215.06" y1="37.04" y2="26.25" y3="18.07"/> <curve x1="234.9" x2="255.7" x3="277.46" y1="7.98" y2="5.65" y3="11.12"/> <curve x1="295.78" x2="313.21" x3="311.57" y1="15.77" y2="26.85" y3="44.91"/> <curve x1="310.74" x2="301.74" x3="289.44" y1="54.33" y2="63.58" y3="68.64"/> <curve x1="281.34" x2="272.7" x3="247.66" y1="72.19" y2="76.22" y3="75.91"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="330.76" name="Fwisp" strokewidth="inherit" w="327.46"> <connections/> <foreground> <save/> <fillcolor color="#fae8a3"/> <path> <move x="166.72" y="66.95"/> <curve x1="149.93" x2="133.65" x3="133.65" y1="66.95" y2="52.57" y3="33.55"/> <curve x1="133.65" x2="149.47" x3="166.72" y1="16.52" y2="0" y3="0"/> <curve x1="185.66" x2="200.44" x3="200.44" y1="0" y2="15.89" y3="33.55"/> <curve x1="200.44" x2="181.67" x3="166.72" y1="53.84" y2="66.95" y3="66.95"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="238.54" y="275.3"/> <curve x1="248.86" x2="257.6" x3="270.82" y1="265.71" y2="262.5" y3="241.11"/> <curve x1="275.79" x2="280.9" x3="282.56" y1="232.05" y2="223.27" y3="207.79"/> <curve x1="282.89" x2="282.27" x3="297.26" y1="195.83" y2="183.97" y3="170.56"/> <curve x1="308.13" x2="319.04" x3="326.26" y1="162.36" y2="159.03" y3="158.74"/> <line x="327.46" y="168.49"/> <curve x1="321.38" x2="315.31" x3="309.64" y1="169.63" y2="170.64" y3="174.08"/> <curve x1="298.09" x2="292.28" x3="292.63" y1="180.85" y2="190.77" y3="203.88"/> <curve x1="291.21" x2="282.49" x3="271.78" y1="228.31" y2="244.12" y3="257.56"/> <line x="244.54" y="284.01"/> <close/> <move x="74.24" y="51.81"/> <line x="96.11" y="58.35"/> <curve x1="111.69" x2="119.86" x3="123.53" y1="64.19" y2="72.25" y3="81.13"/> <line x="134.21" y="103.2"/> <line x="225.22" y="103.2"/> <curve x1="237.23" x2="253.24" x3="260.71" y1="103.69" y2="109.62" y3="114.44"/> <curve x1="276.16" x2="285.61" x3="291.74" y1="124.52" y2="135.28" y3="144.91"/> <line x="283.3" y="150.76"/> <curve x1="269.15" x2="249.59" x3="221.7" y1="131.48" y2="113.74" y3="113.74"/> <line x="127.18" y="113.74"/> <line x="118.47" y="92.35"/> <curve x1="109.86" x2="90.75" x3="72.96" y1="72.25" y2="66.55" y3="62.71"/> <close/> <move x="76.61" y="284.96"/> <curve x1="69.55" x2="50.98" x3="45.13" y1="277.57" y2="257.65" y3="244.94"/> <curve x1="42.86" x2="41.18" x3="40.82" y1="240.62" y2="235.64" y3="229.2"/> <curve x1="40.6" x2="40.43" x3="35.7" y1="224.29" y2="221.15" y3="221.77"/> <curve x1="29.38" x2="23.34" x3="14.13" y1="222.37" y2="222.98" y3="223.37"/> <curve x1="7.04" x2="2.14" x3="0.79" y1="223.22" y2="219.33" y3="209.39"/> <curve x1="0.1" x2="0" x3="0.79" y1="196.27" y2="184.86" y3="176"/> <curve x1="2.24" x2="12.33" x3="18.61" y1="164.12" y2="157.14" y3="157.14"/> <line x="36.66" y="157.22"/> <curve x1="50.17" x2="63.95" x3="77.89" y1="125.11" y2="108.53" y3="100.66"/> <line x="82.84" y="110.41"/> <curve x1="67.19" x2="56.27" x3="46.57" y1="117.79" y2="135.82" y3="161.06"/> <curve x1="45.15" x2="42.16" x3="37.54" y1="164.88" y2="166.71" y3="166.49"/> <line x="21.01" y="166.65"/> <curve x1="14.1" x2="10.85" x3="10.62" y1="166.65" y2="173.16" y3="181.03"/> <line x="10.44" y="204.27"/> <curve x1="10.13" x2="11.97" x3="17.82" y1="211.55" y2="213.69" y3="212.96"/> <line x="36.72" y="211.59"/> <curve x1="44.24" x2="49.61" x3="50.1" y1="211.29" y2="216.67" y3="221.51"/> <line x="51.04" y="228.8"/> <curve x1="51.27" x2="53.64" x3="55.46" y1="235.46" y2="239.47" y3="242.3"/> <curve x1="62.73" x2="73.73" x3="83.48" y1="255.59" y2="266.19" y3="277.69"/> <close/> <move x="86.16" y="330.76"/> <line x="76.46" y="327.79"/> <curve x1="88.18" x2="117.36" x3="163.1" y1="298.3" y2="268.77" y3="268.77"/> <curve x1="219.16" x2="240.45" x3="246.21" y1="268.77" y2="307.36" y3="328.26"/> <line x="236.07" y="330.66"/> <curve x1="228.39" x2="202.47" x3="163.49" y1="301.07" y2="277.96" y3="278.8"/> <curve x1="122.91" x2="98.38" x3="86.16" y1="278.8" y2="301.83" y3="330.76"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="329.36" name="Gabbr" strokewidth="inherit" w="321.52"> <connections/> <foreground> <path> <move x="155.27" y="0"/> <curve x1="231.35" x2="298" x3="321.52" y1="29.47" y2="98.89" y3="166.73"/> <line x="292.6" y="160.5"/> <curve x1="270.14" x2="224.15" x3="160.95" y1="101.84" y2="53.77" y3="28.92"/> <close/> <move x="165.58" y="49.49"/> <curve x1="208.13" x2="256.18" x3="272.54" y1="60.7" y2="105.29" y3="155.53"/> <line x="258.66" y="152.77"/> <curve x1="243.06" x2="205.3" x3="168.02" y1="106.23" y2="73.78" y3="61.71"/> <close/> <move x="171.09" y="74.5"/> <curve x1="201.83" x2="231.38" x3="245.11" y1="85.27" y2="110.56" y3="149.35"/> <line x="228.61" y="145.8"/> <curve x1="219.5" x2="194.87" x3="173.73" y1="117.77" y2="97.11" y3="89.76"/> <close/> <move x="153.52" y="127.58"/> <line x="183.4" y="134.05"/> <line x="176.69" y="103.62"/> <curve x1="194.61" x2="208.77" x3="215.19" y1="110.13" y2="124.4" y3="142.6"/> <line x="184.27" y="135.89"/> <line x="192.26" y="166.89"/> <curve x1="177.69" x2="156" x3="153.52" y1="162.88" y2="143.61" y3="127.58"/> <close/> <move x="138.52" y="123.98"/> <curve x1="144.06" x2="163.69" x3="196.11" y1="142.5" y2="172.15" y3="181.83"/> <line x="202.2" y="205.1"/> <curve x1="166.15" x2="125.54" x3="116.8" y1="198.77" y2="162.02" y3="119.57"/> <close/> <move x="99.3" y="116"/> <curve x1="113.43" x2="169.01" x3="206.72" y1="177.79" y2="218.06" y3="222.73"/> <line x="212.08" y="244.14"/> <curve x1="155.99" x2="88.72" x3="81.32" y1="236.67" y2="177.22" y3="111.94"/> <close/> <move x="49.9" y="104.97"/> <curve x1="69.97" x2="127.03" x3="220.38" y1="195.63" y2="252.29" y3="275.62"/> <line x="246.43" y="324.67"/> <curve x1="129.79" x2="0" x3="1.97" y1="329.36" y2="192.38" y3="81.33"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="408.23" name="Gamespot" strokewidth="inherit" w="407.59"> <connections/> <foreground> <fillcolor color="#ed2323"/> <path> <move x="198.76" y="408.23"/> <curve x1="104.14" x2="0" x3="0" y1="408.23" y2="329.13" y3="203.72"/> <curve x1="0" x2="86.77" x3="209.47" y1="94.83" y2="0" y3="0"/> <curve x1="303.4" x2="407.59" x3="407.59" y1="0" y2="82.38" y3="206.27"/> <curve x1="407.59" x2="332.27" x3="198.76" y1="298.41" y2="408.23" y3="408.23"/> <close/> </path> <fill/> <fillcolor color="#f4b327"/> <path> <move x="198.6" y="380.59"/> <curve x1="114.52" x2="27.32" x3="27.32" y1="380.59" y2="305.39" y3="204.04"/> <curve x1="27.32" x2="89.32" x3="209.63" y1="122.89" y2="28.28" y3="28.28"/> <curve x1="286.4" x2="379.95" x3="379.95" y1="28.28" y2="95.76" y3="207.07"/> <curve x1="379.95" x2="317.35" x3="198.6" y1="284.56" y2="380.59" y3="380.59"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="288.08" y="293.99"/> <curve x1="249.65" x2="239.13" x3="201" y1="293.56" y2="294.85" y3="296.39"/> <curve x1="176.73" x2="144.69" x3="127.98" y1="295.25" y2="280.63" y3="246.06"/> <curve x1="119.83" x2="116.74" x3="149.07" y1="224.49" y2="183.61" y3="147.8"/> <curve x1="180.69" x2="246.79" x3="274.98" y1="117.63" y2="121.12" y3="139.33"/> <line x="274.82" y="167.45"/> <curve x1="264.03" x2="253.41" x3="224.81" y1="156.56" y2="149.5" y3="152.43"/> <curve x1="200.67" x2="186.43" x3="179.11" y1="155.2" y2="167.99" y3="189.18"/> <curve x1="173.29" x2="172.72" x3="189.18" y1="211.1" y2="238.25" y3="253.25"/> <curve x1="205.77" x2="226.06" x3="245.26" y1="267.01" y2="265.22" y3="260.12"/> <line x="245.1" y="216.18"/> <line x="287.92" y="216.5"/> <close/> </path> <fill/> <fillcolor color="#232122"/> <path> <move x="287.92" y="286.49"/> <curve x1="249.49" x2="238.97" x3="200.84" y1="286.06" y2="287.34" y3="288.88"/> <curve x1="176.57" x2="139.73" x3="123.03" y1="287.75" y2="276.01" y3="241.43"/> <curve x1="114.87" x2="109.87" x3="142.2" y1="219.86" y2="180.74" y3="144.92"/> <curve x1="173.82" x2="246.63" x3="274.82" y1="114.75" y2="113.61" y3="131.82"/> <line x="274.66" y="159.94"/> <curve x1="263.87" x2="253.25" x3="224.65" y1="149.05" y2="141.99" y3="144.92"/> <curve x1="200.5" x2="184.2" x3="176.87" y1="147.69" y2="159.21" y3="180.39"/> <curve x1="171.05" x2="167.76" x3="184.22" y1="202.32" y2="229.31" y3="244.31"/> <curve x1="200.81" x2="225.9" x3="245.1" y1="258.07" y2="257.72" y3="252.61"/> <line x="244.94" y="208.68"/> <line x="287.76" y="208.99"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="375.43" name="Github" strokewidth="inherit" w="374.9"> <connections/> <foreground> <fillcolor color="#0d2636"/> <path> <move x="187.92" y="375.43"/> <curve x1="77.34" x2="0" x3="0" y1="375.43" y2="285.2" y3="189.16"/> <curve x1="0" x2="92.35" x3="189.31" y1="74.32" y2="0" y3="0"/> <curve x1="282.71" x2="374.9" x3="374.9" y1="0" y2="76.75" y3="187.64"/> <curve x1="374.9" x2="295.98" x3="187.92" y1="287.01" y2="375.43" y3="375.43"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="147.35" y="334.33"/> <curve x1="147.35" x2="141.22" x3="132.02" y1="342.45" y2="345.79" y3="342.66"/> <curve x1="76.54" x2="23.2" x3="23.2" y1="323.18" y2="263.06" y3="187.96"/> <curve x1="23.2" x2="109.95" x3="185.13" y1="86.4" y2="22.36" y3="22.36"/> <curve x1="282.73" x2="352.14" x3="352.14" y1="22.36" y2="102.45" y3="186.98"/> <curve x1="352.14" x2="307.32" x3="240.15" y1="256.75" y2="320.95" y3="343.49"/> <curve x1="232.56" x2="227.85" x3="227.85" y1="345.51" y2="341.46" y3="334.76"/> <line x="227.85" y="285.89"/> <curve x1="227.85" x2="223.98" x3="216.9" y1="276.44" y2="266.37" y3="259.34"/> <curve x1="244.17" x2="260.71" x3="273.39" y1="256.22" y2="249.4" y3="236.32"/> <curve x1="285.84" x2="291.43" x3="292.46" y1="223.95" y2="205.79" y3="183.36"/> <curve x1="293.14" x2="288.4" x3="275.51" y1="165.55" y2="148.17" y3="134.92"/> <curve x1="280" x2="280.76" x3="273.96" y1="123.98" y2="109.48" y3="91.56"/> <curve x1="260.46" x2="245.06" x3="229.33" y1="90.51" y2="98.63" y3="108.37"/> <curve x1="201.65" x2="173.97" x3="146.29" y1="101.15" y2="100.21" y3="108.79"/> <curve x1="133.91" x2="122.68" x3="101.24" y1="100.72" y2="91.65" y3="91.56"/> <curve x1="95.57" x2="94.67" x3="99.54" y1="107.38" y2="121.83" y3="134.64"/> <curve x1="84.21" x2="82.46" x3="82.74" y1="151.67" y2="168.39" y3="185.05"/> <curve x1="84.43" x2="96.17" x3="109.22" y1="217.22" y2="233.48" y3="243.17"/> <curve x1="120.06" x2="135.26" x3="158.43" y1="251.23" y2="256.27" y3="259.69"/> <curve x1="152.2" x2="148.71" x3="148.12" y1="265.85" y2="273.19" y3="281.79"/> <curve x1="134.51" x2="115.03" x3="101.69" y1="288.01" y2="291.15" y3="272.23"/> <curve x1="95.74" x2="87.62" x3="72.2" y1="262.72" y2="251.98" y3="252.04"/> <curve x1="69.66" x2="67.17" x3="66.8" y1="251.94" y2="252.92" y3="254.02"/> <curve x1="66.46" x2="67.87" x3="69.58" y1="255.23" y2="257.75" y3="258.73"/> <curve x1="83.1" x2="85.28" x3="90.79" y1="267.33" y2="272.16" y3="283.91"/> <curve x1="95.91" x2="104.78" x3="114.37" y1="297.66" y2="302.96" y3="306.65"/> <curve x1="124.19" x2="140.04" x3="147.35" y1="310.12" y2="309.16" y3="306.65"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="234.16" name="Gmail" strokewidth="inherit" w="323.88"> <connections/> <foreground> <fillcolor color="#fffef9"/> <path> <move x="27.55" y="233.97"/> <line x="22.76" y="0"/> <line x="307.52" y="0.24"/> <line x="311.11" y="234.16"/> <close/> </path> <fill/> <fillcolor color="#ccccbe"/> <path> <move x="35.81" y="228.39"/> <line x="303.21" y="47.12"/> <line x="311.11" y="234.16"/> <line x="288.02" y="234.16"/> <line x="162.15" y="149.49"/> <line x="39" y="233.88"/> <line x="35.86" y="234.02"/> <close/> </path> <fill/> <fillcolor color="#ed4335"/> <path> <move x="35.86" y="234.02"/> <line x="14.45" y="233.97"/> <curve x1="6.97" x2="0" x3="0" y1="233.97" y2="227.77" y3="219.56"/> <line x="0.13" y="15.3"/> <curve x1="0.13" x2="7.19" x3="13.91" y1="6.86" y2="0.29" y3="0.29"/> <line x="23.58" y="0.02"/> <line x="161.96" y="99.56"/> <line x="289.52" y="8.42"/> <line x="289.99" y="58.07"/> <line x="162.15" y="149.49"/> <line x="35.81" y="58.78"/> <close/> </path> <fill/> <fillcolor color="#a6332a"/> <path> <move x="288.02" y="234.16"/> <line x="287.91" y="9.51"/> <line x="301.93" y="0.22"/> <line x="310.96" y="0.44"/> <curve x1="317.08" x2="323.86" x3="323.86" y1="0.44" y2="6.65" y3="14.77"/> <line x="323.88" y="218.58"/> <curve x1="323.88" x2="315.18" x3="311.11" y1="229.43" y2="234.16" y3="234.16"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="347" name="Google" strokewidth="inherit" w="325.95"> <connections/> <foreground> <fillcolor color="#3a7cec"/> <path> <move x="169.1" y="208.1"/> <line x="169.1" y="145.48"/> <line x="320.87" y="145.48"/> <curve x1="324.51" x2="325.95" x3="321.35" y1="161.9" y2="185.97" y3="213.38"/> <curve x1="314.6" x2="297.61" x3="269.42" y1="249.38" y2="281.68" y3="303.81"/> <line x="217.02" y="263.23"/> <curve x1="243.68" x2="253.95" x3="257.28" y1="249.11" y2="226.98" y3="208.1"/> <close/> </path> <fill/> <fillcolor color="#2ba14b"/> <path> <move x="224.85" y="258.51"/> <line x="276.06" y="298.22"/> <curve x1="245.37" x2="185.97" x3="131.34" y1="328.46" y2="347" y3="332.95"/> <curve x1="81.14" x2="38.72" x3="20.45" y1="321.36" y2="283.4" y3="239.54"/> <line x="75.29" y="200.67"/> <curve x1="85.96" x2="112.84" x3="148.63" y1="237.12" y2="264.22" y3="271.86"/> <curve x1="178.12" x2="204.57" x3="224.85" y1="278.26" y2="271.99" y3="258.51"/> <close/> </path> <fill/> <fillcolor color="#f1b500"/> <path> <move x="24.4" y="248.13"/> <curve x1="1.15" x2="0" x3="29.28" y1="202.75" y2="143.89" y3="93.9"/> <line x="80.96" y="135.2"/> <curve x1="71.51" x2="68.92" x3="77.38" y1="156.01" y2="182.96" y3="207.18"/> <close/> </path> <fill/> <fillcolor color="#e33e2b"/> <path> <move x="24.47" y="102.7"/> <curve x1="45.62" x2="76.61" x3="119.16" y1="63.96" y2="36.3" y3="21.66"/> <curve x1="189.13" x2="248.33" x3="276.93" y1="0" y2="27.36" y3="55.92"/> <line x="231.8" y="101.29"/> <curve x1="214.57" x2="180.62" x3="141.28" y1="84.11" y2="69.05" y3="81"/> <curve x1="112.85" x2="88.21" x3="77.49" y1="89.86" y2="111.55" y3="143.99"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="290.05" name="Google Drive" strokewidth="inherit" w="332.12"> <connections/> <foreground> <fillcolor color="#4688f4"/> <path> <move x="275.38" y="290.05"/> <line x="55.6" y="290.05"/> <line x="0" y="193.14"/> <line x="332.12" y="193.14"/> <close/> </path> <fill/> <fillcolor color="#1aa260"/> <path> <move x="110.15" y="0"/> <line x="221.13" y="0"/> <line x="55.6" y="290.05"/> <line x="0" y="193.14"/> <close/> </path> <fill/> <fillcolor color="#ffcf48"/> <path> <move x="110.15" y="0"/> <line x="221.13" y="0"/> <line x="332.12" y="193.14"/> <line x="219.98" y="193.14"/> <close/> </path> <fill/> <fillcolor color="#229760"/> <path> <move x="110.15" y="0"/> <line x="165.45" y="97.4"/> <line x="136.21" y="148.7"/> <close/> </path> <fill/> <fillcolor color="#417bda"/> <path> <move x="110.9" y="193.14"/> <line x="166.55" y="290.05"/> <line x="55.6" y="290.05"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="377.53" name="Google Hangout" strokewidth="inherit" w="324.39"> <connections/> <foreground> <path> <move x="163.54" y="377.53"/> <line x="163.03" y="323.91"/> <curve x1="74.36" x2="0" x3="0" y1="323.91" y2="253.37" y3="157.39"/> <curve x1="0" x2="67.54" x3="164.18" y1="78.49" y2="0" y3="0"/> <curve x1="263.06" x2="324.39" x3="324.39" y1="5.76" y2="77.14" y3="168.13"/> <curve x1="324.39" x2="301.54" x3="270.57" y1="211.64" y2="264.1" y3="299.24"/> <curve x1="243.45" x2="209.45" x3="163.54" y1="328.58" y2="355.31" y3="377.53"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="205.71" y="235.07"/> <curve x1="202.71" x2="199.98" x3="199.98" y1="235.57" y2="234.35" y3="229.9"/> <line x="199.98" y="214.09"/> <curve x1="199.98" x2="201.86" x3="205.54" y1="211.51" y2="209.58" y3="209.33"/> <curve x1="216.4" x2="223.94" x3="223.94" y1="207.31" y2="197.6" y3="186.66"/> <line x="185.06" y="186.66"/> <curve x1="179.01" x2="176.62" x3="176.62" y1="186.66" y2="182.57" y3="177.58"/> <line x="176.62" y="121.47"/> <curve x1="176.62" x2="179" x3="183.29" y1="116.77" y2="113.58" y3="113.58"/> <line x="242.54" y="113.58"/> <curve x1="246.7" x2="249.34" x3="249.34" y1="113.58" y2="117.82" y3="121.47"/> <line x="249.34" y="185.84"/> <curve x1="249.34" x2="229.98" x3="205.71" y1="213.48" y2="231.49" y3="235.07"/> <close/> <move x="104.46" y="235.07"/> <curve x1="101.46" x2="98.73" x3="98.73" y1="235.57" y2="234.35" y3="229.9"/> <line x="98.73" y="214.09"/> <curve x1="98.73" x2="100.61" x3="104.29" y1="211.51" y2="209.58" y3="209.33"/> <curve x1="115.15" x2="122.69" x3="122.69" y1="207.31" y2="197.6" y3="186.66"/> <line x="83.81" y="186.66"/> <curve x1="77.76" x2="75.37" x3="75.37" y1="186.66" y2="182.57" y3="177.58"/> <line x="75.37" y="121.47"/> <curve x1="75.37" x2="77.76" x3="82.04" y1="116.77" y2="113.58" y3="113.58"/> <line x="141.3" y="113.58"/> <curve x1="145.45" x2="148.09" x3="148.09" y1="113.58" y2="117.82" y3="121.47"/> <line x="148.09" y="185.84"/> <curve x1="148.09" x2="128.73" x3="104.46" y1="213.48" y2="231.49" y3="235.07"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="436.39" name="Google Photos" strokewidth="inherit" w="435.75"> <connections/> <foreground> <fillcolor color="#5dae47"/> <path> <move x="217.89" y="436.39"/> <line x="109.12" y="327.18"/> <line x="199.76" y="236.25"/> <line x="217.89" y="281.4"/> <close/> </path> <fill/> <fillcolor color="#00825c"/> <path> <move x="109.12" y="327.18"/> <line x="109.08" y="218.42"/> <line x="156.04" y="218.42"/> <line x="199.76" y="236.25"/> <close/> </path> <fill/> <fillcolor color="#fcb913"/> <path> <move x="0" y="218.42"/> <line x="109.31" y="109.91"/> <line x="200.61" y="200.4"/> <line x="156.04" y="218.42"/> <close/> </path> <fill/> <fillcolor color="#ee8122"/> <path> <move x="200.61" y="200.4"/> <line x="109.31" y="109.91"/> <line x="218.15" y="109.91"/> <line x="218.15" y="155.89"/> <close/> </path> <fill/> <fillcolor color="#de3e26"/> <path> <move x="218.15" y="155.89"/> <line x="218.15" y="0"/> <line x="326.71" y="109.83"/> <line x="236.01" y="200.43"/> <close/> </path> <fill/> <fillcolor color="#782a8f"/> <path> <move x="236.01" y="200.43"/> <line x="326.71" y="109.83"/> <line x="326.75" y="218.72"/> <line x="280.57" y="218.72"/> <close/> </path> <fill/> <fillcolor color="#4875b9"/> <path> <move x="236.1" y="236.44"/> <line x="280.57" y="218.72"/> <line x="435.75" y="218.72"/> <line x="326.94" y="327.39"/> <close/> </path> <fill/> <fillcolor color="#363b97"/> <path> <move x="217.89" y="281.4"/> <line x="236.1" y="236.44"/> <line x="326.94" y="327.39"/> <line x="217.89" y="327.46"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="102.84" name="Google Play" strokewidth="inherit" w="347.35"> <connections/> <foreground> <path> <move x="14.31" y="102.84"/> <curve x1="7.66" x2="0" x3="0" y1="102.84" y2="97.24" y3="88.95"/> <line x="0.02" y="13.78"/> <curve x1="0.02" x2="7.18" x3="14.02" y1="5.62" y2="0" y3="0"/> <line x="333.79" y="0"/> <curve x1="341.28" x2="347.35" x3="347.35" y1="0" y2="6.94" y3="14.27"/> <line x="347.31" y="88.69"/> <curve x1="347.31" x2="341.14" x3="333.02" y1="95.49" y2="102.76" y3="102.76"/> <close/> </path> <fill/> <fillcolor color="#55decc"/> <path> <move x="30.04" y="85.6"/> <curve x1="29.14" x2="28.63" x3="28.62" y1="85.02" y2="84.32" y3="83.26"/> <line x="28.54" y="36.07"/> <curve x1="28.54" x2="29.16" x3="29.8" y1="35.13" y2="34.49" y3="34.02"/> <line x="55.95" y="59.93"/> <close/> </path> <fill/> <fillcolor color="#d8405f"/> <path> <move x="32.74" y="85.1"/> <curve x1="31.41" x2="30.66" x3="30.04" y1="85.85" y2="86.03" y3="85.6"/> <line x="55.95" y="59.93"/> <line x="63.94" y="68.22"/> <close/> </path> <fill/> <fillcolor color="#ffb075"/> <path> <move x="63.94" y="68.22"/> <line x="55.95" y="59.93"/> <line x="64.06" y="51.34"/> <line x="76.08" y="57.82"/> <curve x1="77.23" x2="77.5" x3="76.21" y1="58.46" y2="60.86" y3="61.5"/> <close/> </path> <fill/> <fillcolor color="#c7f8a3"/> <path> <move x="55.95" y="59.93"/> <line x="29.8" y="34.02"/> <curve x1="30.63" x2="31.35" x3="32.26" y1="33.48" y2="33.47" y3="33.97"/> <line x="64.06" y="51.34"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="142" y="14.01"/> <line x="152.62" y="14.01"/> <line x="152.62" y="16.14"/> <line x="148.41" y="16.14"/> <line x="148.41" y="29.45"/> <line x="146.22" y="29.45"/> <line x="146.22" y="16.14"/> <line x="142" y="16.14"/> <close/> <move x="271.53" y="75.33"/> <line x="271.53" y="42.03"/> <line x="276.63" y="42.03"/> <line x="276.63" y="75.33"/> <close/> <move x="164.56" y="71.15"/> <curve x1="167.69" x2="170.77" x3="170.77" y1="71.15" y2="68.38" y3="64.22"/> <curve x1="170.77" x2="168.12" x3="164.56" y1="60.58" y2="57.4" y3="57.4"/> <curve x1="161.09" x2="158.1" x3="158.1" y1="57.4" y2="60.63" y3="64.22"/> <curve x1="158.1" x2="161.16" x3="164.56" y1="68.11" y2="71.15" y3="71.15"/> <close/> <move x="152.9" y="64.22"/> <curve x1="152.9" x2="158.19" x3="164.65" y1="57.46" y2="52.79" y3="52.79"/> <curve x1="171.72" x2="175.96" x3="175.96" y1="52.79" y2="58.23" y3="64.27"/> <curve x1="175.96" x2="169.37" x3="164.83" y1="72.11" y2="75.76" y3="75.76"/> <curve x1="158.52" x2="152.9" x3="152.9" y1="75.76" y2="71.13" y3="64.22"/> <close/> <move x="176.4" y="29.45"/> <line x="176.4" y="14.01"/> <line x="178.9" y="14.01"/> <line x="186.24" y="25.58"/> <line x="186.24" y="14.01"/> <line x="188.36" y="14.01"/> <line x="188.36" y="29.45"/> <line x="186.05" y="29.45"/> <line x="178.49" y="17.16"/> <line x="178.49" y="29.45"/> <close/> <move x="166.33" y="15.61"/> <curve x1="163.95" x2="160.53" x3="160.53" y1="15.61" y2="17.94" y3="21.73"/> <curve x1="160.68" x2="164.23" x3="166.27" y1="26.49" y2="27.79" y3="27.79"/> <curve x1="169.18" x2="171.86" x3="171.86" y1="27.79" y2="25.46" y3="21.62"/> <curve x1="171.88" x2="168.22" x3="166.33" y1="17.48" y2="15.61" y3="15.61"/> <close/> <move x="166.51" y="13.45"/> <curve x1="169.98" x2="174.07" x3="174.18" y1="13.45" y2="16.65" y3="21.84"/> <curve x1="174.18" x2="169.81" x3="166.15" y1="27.09" y2="29.81" y3="29.81"/> <curve x1="162.27" x2="158.29" x3="158.29" y1="29.81" y2="26.96" y3="21.85"/> <curve x1="158.29" x2="162.24" x3="166.51" y1="16.57" y2="13.45" y3="13.45"/> <close/> <move x="138.15" y="14.01"/> <line x="140.28" y="14.01"/> <line x="140.28" y="29.45"/> <line x="138.15" y="29.45"/> <close/> <move x="121.05" y="14.01"/> <line x="131.67" y="14.01"/> <line x="131.67" y="16.14"/> <line x="127.46" y="16.14"/> <line x="127.46" y="29.45"/> <line x="125.26" y="29.45"/> <line x="125.26" y="16.14"/> <line x="121.05" y="16.14"/> <close/> <move x="110.55" y="29.45"/> <line x="110.55" y="14.01"/> <line x="119.6" y="14.01"/> <line x="119.6" y="16.14"/> <line x="112.69" y="16.14"/> <line x="112.69" y="20.84"/> <line x="118.87" y="20.84"/> <line x="118.87" y="22.81"/> <line x="112.69" y="22.81"/> <line x="112.69" y="27.29"/> <line x="119.6" y="27.29"/> <line x="119.6" y="29.45"/> <close/> <move x="108.38" y="21.12"/> <curve x1="108.63" x2="105.07" x3="100.73" y1="26.98" y2="29.85" y3="29.85"/> <curve x1="96.57" x2="92.71" x3="92.71" y1="29.85" y2="26.16" y3="22.17"/> <curve x1="92.74" x2="96.9" x3="100.39" y1="16.36" y2="13.68" y3="13.68"/> <curve x1="104.26" x2="105.6" x3="106.43" y1="13.65" y2="15.29" y3="16.09"/> <line x="104.96" y="17.56"/> <curve x1="104.05" x2="102.72" x3="100.39" y1="16.38" y2="15.56" y3="15.62"/> <curve x1="97.95" x2="94.81" x3="94.81" y1="15.62" y2="18.42" y3="21.64"/> <curve x1="94.81" x2="97.42" x3="100.73" y1="24.47" y2="27.81" y3="27.81"/> <curve x1="104.71" x2="105.77" x3="106.28" y1="27.53" y2="25.63" y3="23.2"/> <line x="100.75" y="23.2"/> <line x="100.75" y="21.12"/> <close/> <move x="303.56" y="52.61"/> <line x="309.59" y="52.61"/> <line x="315.93" y="68.31"/> <line x="321.89" y="52.61"/> <line x="328.13" y="52.61"/> <line x="313.73" y="85.58"/> <line x="307.86" y="85.58"/> <line x="313.17" y="74.36"/> <close/> <move x="296.45" y="65.29"/> <curve x1="293.78" x2="292.53" x3="290.18" y1="64.15" y2="64.05" y3="64.38"/> <curve x1="287.98" x2="285.9" x3="286.06" y1="64.77" y2="66.3" y3="67.88"/> <curve x1="286.53" x2="289.73" x3="291.74" y1="70.77" y2="71.37" y3="70.79"/> <curve x1="294.03" x2="296.17" x3="296.45" y1="70.19" y2="68.02" y3="65.29"/> <close/> <move x="281.26" y="56.94"/> <curve x1="282.61" x2="285.07" x3="291.73" y1="53.82" y2="51.28" y3="51.28"/> <curve x1="298.14" x2="301.86" x3="301.87" y1="51.38" y2="56.11" y3="60.91"/> <line x="301.8" y="75.14"/> <line x="296.59" y="75.14"/> <line x="296.55" y="72.28"/> <curve x1="295.2" x2="293.57" x3="289.51" y1="73.96" y2="75.89" y3="75.89"/> <curve x1="286.77" x2="280.56" x3="280.56" y1="75.89" y2="73.85" y3="68.03"/> <curve x1="280.56" x2="285.37" x3="289.41" y1="62.79" y2="60.4" y3="59.95"/> <curve x1="293.4" x2="294.92" x3="296.6" y1="59.56" y2="60.44" y3="61.04"/> <curve x1="296.3" x2="296.02" x3="292.05" y1="59.27" y2="57.05" y3="56.48"/> <curve x1="288.99" x2="287.21" x3="286.15" y1="56.1" y2="57.15" y3="59.01"/> <close/> <move x="250.06" y="57.41"/> <line x="256.77" y="57.41"/> <curve x1="259.9" x2="262.19" x3="262.19" y1="57.41" y2="54.42" y3="52.25"/> <curve x1="262.19" x2="259.75" x3="256.89" y1="50.18" y2="47.11" y3="47.11"/> <line x="250.06" y="47.11"/> <close/> <move x="244.92" y="75.31"/> <line x="244.92" y="41.97"/> <line x="256.98" y="41.97"/> <curve x1="262.59" x2="267.48" x3="267.48" y1="41.97" y2="46.5" y3="52.47"/> <curve x1="267.48" x2="263.57" x3="256.42" y1="57" y2="62.69" y3="62.69"/> <line x="250.06" y="62.69"/> <line x="250.06" y="75.31"/> <close/> <move x="227.28" y="59.46"/> <curve x1="226.05" x2="224.99" x3="220.6" y1="58.07" y2="56.54" y3="57.74"/> <curve x1="217.63" x2="217.12" x3="216.84" y1="59.49" y2="61.76" y3="63.69"/> <close/> <move x="232.85" y="70.46"/> <curve x1="230.94" x2="228.13" x3="223.14" y1="73.38" y2="75.5" y3="75.66"/> <curve x1="218.02" x2="212.49" x3="211.98" y1="75.66" y2="72.28" y3="64.16"/> <curve x1="211.98" x2="218.67" x3="222.42" y1="55.72" y2="52.72" y3="52.72"/> <curve x1="229.84" x2="231.97" x3="233.23" y1="52.72" y2="58.93" y3="61.4"/> <line x="217.69" y="67.7"/> <curve x1="218.82" x2="220.17" x3="223.45" y1="69.41" y2="70.91" y3="71.06"/> <curve x1="226.16" x2="227.63" x3="228.94" y1="70.82" y2="69.42" y3="67.86"/> <close/> <move x="204.07" y="75.33"/> <line x="204.07" y="42.03"/> <line x="209.18" y="42.03"/> <line x="209.18" y="75.33"/> <close/> <move x="195.78" y="64.29"/> <curve x1="195.78" x2="193.54" x3="189.42" y1="61.24" y2="57.27" y3="57.27"/> <curve x1="186.29" x2="183.37" x3="183.37" y1="57.27" y2="60.89" y3="64.16"/> <curve x1="183.37" x2="186.87" x3="189.42" y1="68.32" y2="71.06" y3="71.06"/> <curve x1="193.45" x2="195.78" x3="195.78" y1="71.06" y2="67.27" y3="64.29"/> <close/> <move x="200.23" y="53.48"/> <line x="200.23" y="75.51"/> <curve x1="200.23" x2="197.24" x3="189.2" y1="79.52" y2="85.97" y3="85.97"/> <curve x1="186.01" x2="181.26" x3="179.08" y1="85.97" y2="83.9" y3="79.11"/> <line x="183.56" y="77.2"/> <curve x1="184.73" x2="187.57" x3="189.17" y1="79.93" y2="81.37" y3="81.37"/> <curve x1="194.55" x2="195.64" x3="195.4" y1="81.08" y2="76.75" y3="73.13"/> <curve x1="193.57" x2="191.58" x3="188.51" y1="74.73" y2="76.07" y3="75.7"/> <curve x1="183.02" x2="178.79" x3="178.2" y1="74.52" y2="71.72" y3="64.23"/> <curve x1="178.87" x2="184.6" x3="189.36" y1="55.98" y2="52.72" y3="52.72"/> <curve x1="192.35" x2="193.94" x3="195.37" y1="52.78" y2="54.03" y3="55.23"/> <line x="195.34" y="53.48"/> <close/> <move x="139.56" y="71.15"/> <curve x1="142.68" x2="145.77" x3="145.77" y1="71.15" y2="68.38" y3="64.22"/> <curve x1="145.77" x2="143.12" x3="139.56" y1="60.58" y2="57.4" y3="57.4"/> <curve x1="136.09" x2="133.1" x3="133.1" y1="57.4" y2="60.63" y3="64.22"/> <curve x1="133.1" x2="136.16" x3="139.56" y1="68.11" y2="71.15" y3="71.15"/> <close/> <move x="127.9" y="64.22"/> <curve x1="127.9" x2="133.19" x3="139.65" y1="57.46" y2="52.79" y3="52.79"/> <curve x1="146.72" x2="150.96" x3="150.96" y1="52.79" y2="58.23" y3="64.27"/> <curve x1="150.96" x2="144.37" x3="139.83" y1="72.11" y2="75.76" y3="75.76"/> <curve x1="133.52" x2="127.9" x3="127.9" y1="75.76" y2="71.13" y3="64.22"/> <close/> <move x="125.24" y="56.26"/> <curve x1="126.55" x2="123.96" x3="109.73" y1="63.48" y2="74.86" y3="75.73"/> <curve x1="97.9" x2="91.41" x3="91.41" y1="75.73" y2="66.9" y3="57.61"/> <curve x1="91.41" x2="99.73" x3="107.94" y1="48.25" y2="40.25" y3="40.25"/> <curve x1="115.67" x2="118.37" x3="121.32" y1="40.25" y2="42.61" y3="45.08"/> <line x="118" y="48.59"/> <curve x1="115.65" x2="113.25" x3="108.47" y1="46.81" y2="45.07" y3="45.14"/> <curve x1="103.23" x2="96.62" x3="96.62" y1="45.14" y2="50.35" y3="57.99"/> <curve x1="96.62" x2="103.24" x3="108.99" y1="65.77" y2="70.75" y3="70.75"/> <curve x1="115.65" x2="120.49" x3="120.49" y1="70.75" y2="66.22" y3="61.31"/> <line x="109.13" y="61.31"/> <line x="109.13" y="56.26"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="52.57" name="Google Play Light" strokewidth="inherit" w="299.58"> <connections/> <foreground> <fillcolor color="#55decc"/> <path> <move x="1.49" y="52.13"/> <curve x1="0.6" x2="0.08" x3="0.08" y1="51.55" y2="50.85" y3="49.79"/> <line x="0" y="2.6"/> <curve x1="0" x2="0.61" x3="1.25" y1="1.67" y2="1.02" y3="0.55"/> <line x="27.4" y="26.46"/> <close/> </path> <fill/> <fillcolor color="#d8405f"/> <path> <move x="4.2" y="51.64"/> <curve x1="2.86" x2="2.12" x3="1.49" y1="52.38" y2="52.57" y3="52.13"/> <line x="27.4" y="26.46"/> <line x="35.4" y="34.76"/> <close/> </path> <fill/> <fillcolor color="#ffb075"/> <path> <move x="35.4" y="34.76"/> <line x="27.4" y="26.46"/> <line x="35.52" y="17.88"/> <line x="47.54" y="24.35"/> <curve x1="48.69" x2="48.95" x3="47.67" y1="25" y2="27.39" y3="28.03"/> <close/> </path> <fill/> <fillcolor color="#c7f8a3"/> <path> <move x="27.4" y="26.46"/> <line x="1.25" y="0.55"/> <curve x1="2.08" x2="2.81" x3="3.71" y1="0.01" y2="0" y3="0.5"/> <line x="35.52" y="17.88"/> <close/> </path> <fill/> <fillcolor color="#7f8083"/> <path> <move x="96.7" y="22.79"/> <curve x1="98.01" x2="95.41" x3="81.18" y1="30.02" y2="41.39" y3="42.26"/> <curve x1="69.36" x2="62.87" x3="62.87" y1="42.26" y2="33.43" y3="24.14"/> <curve x1="62.87" x2="71.19" x3="79.4" y1="14.78" y2="6.78" y3="6.78"/> <curve x1="87.12" x2="89.83" x3="92.78" y1="6.78" y2="9.14" y3="11.61"/> <line x="89.46" y="15.12"/> <curve x1="87.1" x2="84.71" x3="79.93" y1="13.34" y2="11.6" y3="11.67"/> <curve x1="74.69" x2="68.07" x3="68.07" y1="11.67" y2="16.88" y3="24.52"/> <curve x1="68.07" x2="74.7" x3="80.45" y1="32.3" y2="37.28" y3="37.28"/> <curve x1="87.11" x2="91.95" x3="91.95" y1="37.28" y2="32.75" y3="27.84"/> <line x="80.59" y="27.84"/> <line x="80.59" y="22.79"/> <close/> <move x="99.36" y="30.75"/> <curve x1="99.36" x2="104.64" x3="111.11" y1="23.99" y2="19.32" y3="19.32"/> <curve x1="118.18" x2="122.42" x3="122.42" y1="19.32" y2="24.76" y3="30.8"/> <curve x1="122.42" x2="115.83" x3="111.29" y1="38.65" y2="42.29" y3="42.29"/> <curve x1="104.98" x2="99.36" x3="99.36" y1="42.29" y2="37.67" y3="30.75"/> <close/> <move x="111.02" y="37.68"/> <curve x1="114.14" x2="117.23" x3="117.23" y1="37.68" y2="34.91" y3="30.75"/> <curve x1="117.23" x2="114.58" x3="111.02" y1="27.11" y2="23.93" y3="23.93"/> <curve x1="107.54" x2="104.56" x3="104.56" y1="23.93" y2="27.16" y3="30.75"/> <curve x1="104.56" x2="107.61" x3="111.02" y1="34.65" y2="37.68" y3="37.68"/> <close/> <move x="171.69" y="20.01"/> <line x="171.69" y="42.04"/> <curve x1="171.69" x2="168.7" x3="160.66" y1="46.05" y2="52.51" y3="52.51"/> <curve x1="157.47" x2="152.72" x3="150.53" y1="52.51" y2="50.43" y3="45.64"/> <line x="155.02" y="43.73"/> <curve x1="156.19" x2="159.03" x3="160.63" y1="46.46" y2="47.9" y3="47.9"/> <curve x1="166.01" x2="167.1" x3="166.86" y1="47.61" y2="43.28" y3="39.66"/> <curve x1="165.03" x2="163.04" x3="159.97" y1="41.26" y2="42.6" y3="42.23"/> <curve x1="154.48" x2="150.24" x3="149.66" y1="41.05" y2="38.25" y3="30.76"/> <curve x1="150.33" x2="156.05" x3="160.81" y1="22.51" y2="19.26" y3="19.26"/> <curve x1="163.81" x2="165.4" x3="166.83" y1="19.31" y2="20.56" y3="21.76"/> <line x="166.8" y="20.01"/> <close/> <move x="167.24" y="30.82"/> <curve x1="167.24" x2="165" x3="160.88" y1="27.77" y2="23.8" y3="23.8"/> <curve x1="157.75" x2="154.83" x3="154.83" y1="23.8" y2="27.42" y3="30.69"/> <curve x1="154.83" x2="158.33" x3="160.88" y1="34.85" y2="37.59" y3="37.59"/> <curve x1="164.91" x2="167.24" x3="167.24" y1="37.59" y2="33.8" y3="30.82"/> <close/> <move x="175.53" y="41.86"/> <line x="175.53" y="8.56"/> <line x="180.64" y="8.56"/> <line x="180.64" y="41.86"/> <close/> <move x="204.31" y="36.99"/> <curve x1="202.4" x2="199.59" x3="194.6" y1="39.91" y2="42.03" y3="42.2"/> <curve x1="189.48" x2="183.95" x3="183.44" y1="42.2" y2="38.81" y3="30.69"/> <curve x1="183.44" x2="190.13" x3="193.88" y1="22.25" y2="19.26" y3="19.26"/> <curve x1="201.29" x2="203.43" x3="204.69" y1="19.26" y2="25.46" y3="27.94"/> <line x="189.14" y="34.24"/> <curve x1="190.28" x2="191.63" x3="194.91" y1="35.94" y2="37.45" y3="37.59"/> <curve x1="197.62" x2="199.09" x3="200.39" y1="37.35" y2="35.95" y3="34.39"/> <close/> <move x="198.73" y="25.99"/> <curve x1="197.51" x2="196.45" x3="192.06" y1="24.6" y2="23.07" y3="24.27"/> <curve x1="189.08" x2="188.57" x3="188.3" y1="26.02" y2="28.29" y3="30.22"/> <close/> <move x="216.38" y="41.84"/> <line x="216.38" y="8.51"/> <line x="228.44" y="8.51"/> <curve x1="234.05" x2="238.94" x3="238.94" y1="8.51" y2="13.04" y3="19.01"/> <curve x1="238.94" x2="235.03" x3="227.88" y1="23.53" y2="29.22" y3="29.22"/> <line x="221.52" y="29.22"/> <line x="221.52" y="41.84"/> <close/> <move x="221.52" y="23.94"/> <line x="228.22" y="23.94"/> <curve x1="231.36" x2="233.64" x3="233.64" y1="23.94" y2="20.96" y3="18.79"/> <curve x1="233.64" x2="231.21" x3="228.35" y1="16.71" y2="13.65" y3="13.65"/> <line x="221.52" y="13.65"/> <close/> <move x="252.71" y="23.48"/> <curve x1="254.07" x2="256.53" x3="263.18" y1="20.36" y2="17.81" y3="17.81"/> <curve x1="269.6" x2="273.32" x3="273.33" y1="17.92" y2="22.65" y3="27.45"/> <line x="273.26" y="41.67"/> <line x="268.05" y="41.67"/> <line x="268.01" y="38.81"/> <curve x1="266.66" x2="265.03" x3="260.97" y1="40.5" y2="42.43" y3="42.43"/> <curve x1="258.22" x2="252.02" x3="252.02" y1="42.43" y2="40.39" y3="34.56"/> <curve x1="252.02" x2="256.83" x3="260.87" y1="29.32" y2="26.93" y3="26.48"/> <curve x1="264.85" x2="266.37" x3="268.05" y1="26.09" y2="26.97" y3="27.57"/> <curve x1="267.76" x2="267.48" x3="263.51" y1="25.8" y2="23.59" y3="23.02"/> <curve x1="260.45" x2="258.67" x3="257.61" y1="22.63" y2="23.69" y3="25.54"/> <close/> <move x="267.91" y="31.82"/> <curve x1="265.24" x2="263.99" x3="261.64" y1="30.69" y2="30.58" y3="30.91"/> <curve x1="259.44" x2="257.36" x3="257.52" y1="31.3" y2="32.83" y3="34.42"/> <curve x1="257.99" x2="261.19" x3="263.2" y1="37.31" y2="37.9" y3="37.32"/> <curve x1="265.49" x2="267.62" x3="267.91" y1="36.73" y2="34.56" y3="31.82"/> <close/> <move x="275.02" y="19.14"/> <line x="281.05" y="19.14"/> <line x="287.39" y="34.85"/> <line x="293.34" y="19.14"/> <line x="299.58" y="19.14"/> <line x="285.19" y="52.11"/> <line x="279.32" y="52.11"/> <line x="284.63" y="40.89"/> <close/> <move x="124.36" y="30.75"/> <curve x1="124.36" x2="129.64" x3="136.11" y1="23.99" y2="19.32" y3="19.32"/> <curve x1="143.18" x2="147.42" x3="147.42" y1="19.32" y2="24.76" y3="30.8"/> <curve x1="147.42" x2="140.83" x3="136.29" y1="38.65" y2="42.29" y3="42.29"/> <curve x1="129.98" x2="124.36" x3="124.36" y1="42.29" y2="37.67" y3="30.75"/> <close/> <move x="136.02" y="37.68"/> <curve x1="139.14" x2="142.23" x3="142.23" y1="37.68" y2="34.91" y3="30.75"/> <curve x1="142.23" x2="139.58" x3="136.02" y1="27.11" y2="23.93" y3="23.93"/> <curve x1="132.54" x2="129.56" x3="129.56" y1="23.93" y2="27.16" y3="30.75"/> <curve x1="129.56" x2="132.61" x3="136.02" y1="34.65" y2="37.68" y3="37.68"/> <close/> <move x="242.98" y="41.86"/> <line x="242.98" y="8.56"/> <line x="248.09" y="8.56"/> <line x="248.09" y="41.86"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="220.18" name="Google Plus" strokewidth="inherit" w="327.89"> <connections/> <foreground> <path> <move x="230.42" y="94.43"/> <line x="266.21" y="94.43"/> <line x="266.21" y="58.96"/> <line x="292.13" y="58.96"/> <line x="292.13" y="94.43"/> <line x="327.89" y="94.43"/> <line x="327.89" y="120.55"/> <line x="292.13" y="120.55"/> <line x="292.13" y="156.3"/> <line x="266.21" y="156.3"/> <line x="266.21" y="120.55"/> <line x="230.42" y="120.55"/> <close/> <move x="203.38" y="91.63"/> <curve x1="208.72" x2="209.15" x3="190.76" y1="106.73" y2="143.13" y3="172.08"/> <curve x1="167.57" x2="131.07" x3="88.98" y1="207.55" y2="220.18" y3="213.47"/> <curve x1="54.39" x2="15.66" x3="6.69" y1="207.74" y2="178.95" y3="131.18"/> <curve x1="0" x2="19.35" x3="57.82" y1="86.01" y2="44.69" y3="23.17"/> <curve x1="100.25" x2="148.75" x3="176.69" y1="0" y2="9.12" y3="37.39"/> <line x="147.14" y="66.95"/> <curve x1="138.23" x2="129.05" x3="103.84" y1="60.35" y2="51.41" y3="51.61"/> <curve x1="78.36" x2="51.22" x3="47.75" y1="54.06" y2="73.16" y3="111.37"/> <curve x1="48.54" x2="72.23" x3="108.15" y1="144.3" y2="172.9" y3="173.52"/> <curve x1="141.9" x2="156.97" x3="162.16" y1="172.62" y2="154.87" y3="133.26"/> <line x="107.43" y="133.26"/> <line x="107.43" y="91.63"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="310.76" name="Grooveshark" strokewidth="inherit" w="310.91"> <connections/> <foreground> <path> <move x="158.18" y="310.76"/> <curve x1="68.02" x2="0" x3="0" y1="310.76" y2="241.68" y3="154.49"/> <curve x1="0" x2="66.71" x3="156.21" y1="72.89" y2="0" y3="0"/> <curve x1="239.94" x2="310.91" x3="310.91" y1="0" y2="68.16" y3="158.37"/> <curve x1="310.91" x2="245.31" x3="158.18" y1="235.05" y2="310.76" y3="310.76"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="255.42" y="178.46"/> <curve x1="258.91" x2="265.34" x3="267.19" y1="176.97" y2="172.68" y3="150.15"/> <curve x1="266.61" x2="263.68" x3="253.84" y1="132.31" y2="113.79" y3="94.59"/> <curve x1="236.26" x2="204.73" x3="153.31" y1="59.72" y2="33.1" y3="33.35"/> <curve x1="86.87" x2="46.2" x3="40.26" y1="34.4" y2="87.19" y3="126.69"/> <curve x1="38.56" x2="39.89" x3="47.26" y1="139.74" y2="153.09" y3="161.24"/> <curve x1="56.29" x2="65.93" x3="73.76" y1="168.8" y2="172.12" y3="172.11"/> <curve x1="84.33" x2="92.37" x3="98.42" y1="171.97" y2="165.75" y3="154.78"/> <curve x1="108.97" x2="112.29" x3="111.58" y1="134.85" y2="99.53" y3="64.66"/> <curve x1="132.51" x2="159.63" x3="180.87" y1="71.47" y2="86.2" y3="114.55"/> <line x="217.41" y="165.53"/> <curve x1="225.64" x2="242.43" x3="255.42" y1="176.33" y2="183.43" y3="178.46"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="221.36" name="Hatena" strokewidth="inherit" w="430.69"> <connections/> <foreground> <fillcolor color="#d2dee9"/> <path> <move x="164.51" y="59.88"/> <line x="212.92" y="42.7"/> <line x="260.86" y="59.96"/> <line x="212.52" y="77.14"/> <close/> <move x="0" y="103.51"/> <line x="48.41" y="86.34"/> <line x="96.35" y="103.59"/> <line x="48.01" y="120.77"/> <close/> <move x="110.35" y="103.55"/> <line x="158.77" y="86.37"/> <line x="206.7" y="103.63"/> <line x="158.37" y="120.81"/> <close/> <move x="334.34" y="103.4"/> <line x="382.76" y="86.23"/> <line x="430.69" y="103.48"/> <line x="382.36" y="120.66"/> <close/> <move x="276.53" y="147.06"/> <line x="324.94" y="129.89"/> <line x="372.87" y="147.14"/> <line x="324.54" y="164.32"/> <close/> <move x="54.4" y="147.13"/> <line x="102.81" y="129.95"/> <line x="150.74" y="147.21"/> <line x="102.41" y="164.38"/> <close/> <move x="164.25" y="147.06"/> <line x="212.67" y="129.89"/> <line x="260.6" y="147.14"/> <line x="212.27" y="164.32"/> <close/> </path> <fill/> <fillcolor color="#8096c1"/> <path> <move x="110.14" y="17.36"/> <line x="158.56" y="0.19"/> <line x="206.49" y="17.44"/> <line x="158.16" y="34.62"/> <close/> <move x="221.53" y="17.18"/> <line x="269.94" y="0"/> <line x="317.88" y="17.26"/> <line x="269.54" y="34.43"/> <close/> <move x="276.43" y="59.92"/> <line x="324.85" y="42.74"/> <line x="372.78" y="60"/> <line x="324.45" y="77.18"/> <close/> <move x="54.22" y="59.89"/> <line x="102.63" y="42.71"/> <line x="150.56" y="59.97"/> <line x="102.23" y="77.14"/> <close/> <move x="221.4" y="103.46"/> <line x="269.81" y="86.28"/> <line x="317.74" y="103.54"/> <line x="269.41" y="120.71"/> <close/> <move x="164.62" y="204.11"/> <line x="213.03" y="186.93"/> <line x="260.97" y="204.19"/> <line x="212.63" y="221.36"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="369.9" name="HTML5" strokewidth="inherit" w="262.2"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="198.03" y="49.74"/> <line x="198.03" y="0"/> <line x="214.88" y="0"/> <line x="214.88" y="33.22"/> <line x="238.24" y="33.22"/> <line x="238.24" y="49.74"/> <close/> <move x="133.82" y="49.74"/> <line x="133.82" y="0"/> <line x="150.95" y="0"/> <line x="161.74" y="17.54"/> <line x="172.31" y="0"/> <line x="189.7" y="0"/> <line x="189.7" y="49.74"/> <line x="173.12" y="49.74"/> <line x="173.12" y="25.31"/> <line x="161.58" y="43.05"/> <line x="149.88" y="25.25"/> <line x="149.88" y="49.74"/> <close/> <move x="80.24" y="0"/> <line x="126.09" y="0"/> <line x="126.09" y="16.32"/> <line x="111.46" y="16.32"/> <line x="111.46" y="49.74"/> <line x="94.99" y="49.74"/> <line x="94.99" y="16.32"/> <line x="80.24" y="16.32"/> <close/> <move x="24.31" y="49.74"/> <line x="24.25" y="0"/> <line x="40.92" y="0"/> <line x="40.92" y="16.67"/> <line x="56.34" y="16.67"/> <line x="56.34" y="0"/> <line x="73.09" y="0"/> <line x="73.09" y="49.74"/> <line x="56.34" y="49.74"/> <line x="56.34" y="33.08"/> <line x="40.92" y="33.08"/> <line x="40.92" y="49.74"/> <close/> </path> <fill/> <fillcolor color="#e44d26"/> <path> <move x="262.2" y="72.81"/> <line x="237.95" y="339.82"/> <line x="130.92" y="369.9"/> <line x="23.68" y="339.98"/> <line x="0" y="72.81"/> <close/> </path> <fill/> <fillcolor color="#f16529"/> <path> <move x="130.93" y="347.21"/> <line x="130.93" y="94.24"/> <line x="237.82" y="94.24"/> <line x="218.23" y="323.21"/> <close/> </path> <fill/> <fillcolor color="#ebebeb"/> <path> <move x="130.93" y="226.94"/> <line x="57.63" y="226.94"/> <line x="48.51" y="127.04"/> <line x="130.93" y="127.04"/> <line x="130.93" y="160.39"/> <line x="84.79" y="160.39"/> <line x="87.86" y="193.58"/> <line x="130.93" y="193.58"/> <close/> <move x="130.93" y="313.45"/> <line x="63.41" y="294.54"/> <line x="58.7" y="242.66"/> <line x="92.05" y="242.72"/> <line x="94.67" y="269.02"/> <line x="130.93" y="278.81"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="130.93" y="313.45"/> <line x="130.93" y="278.81"/> <line x="167.11" y="268.85"/> <line x="170.74" y="226.94"/> <line x="130.93" y="226.94"/> <line x="130.93" y="193.58"/> <line x="207.55" y="193.58"/> <line x="198.69" y="294.66"/> <close/> <move x="130.93" y="127.04"/> <line x="213.34" y="127.04"/> <line x="210.32" y="160.39"/> <line x="130.93" y="160.39"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="237.86" name="Identi.ca" strokewidth="inherit" w="371.01"> <connections/> <foreground> <fillcolor color="#a4c5d3"/> <path> <move x="80.76" y="115.47"/> <curve x1="101.98" x2="117.14" x3="117.14" y1="115.47" y2="98.04" y3="78.13"/> <curve x1="117.14" x2="101.84" x3="80.76" y1="58.38" y2="40.79" y3="40.79"/> <curve x1="57.71" x2="42.35" x3="42.35" y1="40.79" y2="58.83" y3="78.13"/> <curve x1="42.35" x2="63.46" x3="80.76" y1="103.47" y2="115.47" y3="115.47"/> <close/> <move x="123.47" y="198.51"/> <curve x1="114.67" x2="94.5" x3="59.52" y1="182.04" y2="154.83" y3="148.12"/> <curve x1="45.67" x2="18.79" x3="10.03" y1="145.48" y2="128.99" y3="99.54"/> <curve x1="0" x2="17.28" x3="56.24" y1="60.73" y2="25.59" y3="9.27"/> <curve x1="83.94" x2="123.94" x3="140.98" y1="0" y2="10.47" y3="38.42"/> <curve x1="154.59" x2="159.15" x3="137.82" y1="62.04" y2="92.84" y3="122.02"/> <curve x1="126.5" x2="121.18" x3="123.47" y1="136.63" y2="151.07" y3="198.51"/> <close/> </path> <fill/> <fillcolor color="#afc161"/> <path> <move x="270.78" y="158.56"/> <curve x1="305.99" x2="326.61" x3="326.61" y1="158.56" y2="129.41" y3="104.3"/> <curve x1="326.61" x2="299.73" x3="272.89" y1="69.3" y2="48" y3="48"/> <curve x1="241.5" x2="216.64" x3="216.64" y1="48" y2="71.05" y3="103.51"/> <curve x1="216.64" x2="247.06" x3="270.78" y1="137.7" y2="158.56" y3="158.56"/> <close/> <move x="172.61" y="110.05"/> <curve x1="172.61" x2="226.19" x3="272.36" y1="37.02" y2="3.45" y3="3.45"/> <curve x1="319.8" x2="371.01" x3="371.01" y1="3.45" y2="41" y3="103.72"/> <curve x1="371.01" x2="321.92" x3="275.14" y1="161.73" y2="202.57" y3="202.57"/> <curve x1="261.14" x2="245.6" x3="235.97" y1="202.57" y2="200.11" y3="200.11"/> <curve x1="220.75" x2="186.13" x3="143.85" y1="200.11" y2="200.29" y3="237.86"/> <curve x1="170.67" x2="184.03" x3="175.5" y1="203.48" y2="187.01" y3="127.45"/> <curve x1="174.72" x2="172.61" x3="172.61" y1="122.03" y2="113.71" y3="110.05"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="361.39" name="Instagram" strokewidth="inherit" w="360.95"> <connections/> <foreground> <save/> <save/> <fillcolor color="#dbcdbd"/> <path> <move x="57.51" y="361.39"/> <curve x1="32.59" x2="0" x3="0" y1="361.39" y2="336.43" y3="301.47"/> <line x="0" y="112.22"/> <line x="360.95" y="112.22"/> <line x="360.95" y="303.05"/> <curve x1="360.95" x2="335.51" x3="301.71" y1="330.06" y2="361.39" y3="361.39"/> <close/> </path> <fill/> <fillcolor color="#b4947f"/> <path> <move x="0" y="112.22"/> <line x="0" y="56.79"/> <curve x1="0" x2="23.54" x3="64.7" y1="32.82" y2="0" y3="0"/> <line x="301.69" y="0"/> <curve x1="330.35" x2="360.95" x3="360.95" y1="0" y2="26.82" y3="60.05"/> <line x="360.95" y="112.22"/> <close/> </path> <fill/> <fillcolor color="#5c5755"/> <path> <move x="179.98" y="276.56"/> <curve x1="128.85" x2="85.79" x3="85.79" y1="276.56" y2="232.87" y3="183.76"/> <curve x1="85.79" x2="132.5" x3="179.98" y1="126.54" y2="87.14" y3="87.14"/> <curve x1="232.76" x2="274.89" x3="274.89" y1="87.14" y2="129.28" y3="183.76"/> <curve x1="274.89" x2="229.34" x3="179.98" y1="236.65" y2="276.56" y3="276.56"/> <close/> </path> <fill/> <fillcolor color="#eee6de"/> <path> <move x="179.98" y="271.53"/> <curve x1="128.15" x2="90.9" x3="90.9" y1="271.53" y2="226.45" y3="183.76"/> <curve x1="90.9" x2="143.86" x3="179.98" y1="120.37" y2="91.7" y3="91.7"/> <curve x1="226.29" x2="270.09" x3="270.09" y1="91.7" y2="128.2" y3="183.76"/> <curve x1="270.09" x2="233.08" x3="179.98" y1="227.31" y2="271.53" y3="271.53"/> <close/> </path> <fill/> <fillcolor color="#3b3d43"/> <path> <move x="179.98" y="262.58"/> <curve x1="136.24" x2="99.69" x3="99.69" y1="262.58" y2="225.99" y3="183.76"/> <curve x1="99.69" x2="144.57" x3="180.3" y1="129.4" y2="101.02" y3="101.02"/> <curve x1="217.31" x2="261.46" x3="261.46" y1="101.02" y2="128.75" y3="183.92"/> <curve x1="261.46" x2="227.29" x3="179.98" y1="224.15" y2="262.58" y3="262.58"/> <close/> </path> <fill/> <fillcolor color="#4c4849"/> <path> <move x="179.98" y="220.56"/> <curve x1="161.14" x2="142.59" x3="142.59" y1="220.56" y2="205.28" y3="183.76"/> <curve x1="142.59" x2="156.85" x3="179.98" y1="157.77" y2="142.75" y3="142.75"/> <curve x1="203.09" x2="218.88" x3="218.88" y1="142.75" y2="160.34" y3="183.76"/> <curve x1="218.88" x2="202.77" x3="179.98" y1="204.66" y2="220.56" y3="220.56"/> <close/> </path> <fill/> <fillcolor color="#3b3b3f"/> <path> <move x="179.9" y="214.89"/> <curve x1="163.58" x2="146.5" x3="146.5" y1="215.01" y2="201.81" y3="183.76"/> <curve x1="146.53" x2="160.9" x3="179.98" y1="164.18" y2="148.58" y3="148.58"/> <curve x1="200.28" x2="212.17" x3="212.17" y1="148.58" y2="163.44" y3="183.76"/> <curve x1="212.17" x2="199.62" x3="179.9" y1="201.7" y2="214.89" y3="214.89"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <alpha alpha="0.1"/> <path> <move x="99.83" y="188.92"/> <curve x1="96.22" x2="144.81" x3="180.3" y1="131" y2="101.02" y3="101.02"/> <curve x1="226.99" x2="264.38" x3="261.31" y1="101.02" y2="140.05" y3="188.52"/> <curve x1="235.67" x2="212.86" x3="179.66" y1="198.53" y2="201.47" y3="201.47"/> <curve x1="143.67" x2="124.16" x3="99.83" y1="201.47" y2="197.13" y3="188.92"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <fillcolor color="#b9b7b7"/> <path> <move x="190.67" y="150.97"/> <line x="197.71" y="133.8"/> <curve x1="207.61" x2="215.28" x3="221" y1="136.81" y2="143.95" y3="150.3"/> <line x="206.9" y="163.69"/> <curve x1="203.44" x2="198.08" x3="190.67" y1="157.82" y2="154.26" y3="150.97"/> <close/> </path> <fill/> <path> <move x="209.87" y="166.78"/> <line x="224.38" y="155.62"/> <curve x1="226.67" x2="229.37" x3="230.54" y1="159.61" y2="167.2" y3="172.17"/> <line x="212.87" y="178.38"/> <curve x1="212.24" x2="211.52" x3="209.87" y1="173.51" y2="170.47" y3="166.78"/> <close/> </path> <fill/> <fillcolor color="#f47888"/> <path> <move x="26.32" y="111.24"/> <line x="26.32" y="11.54"/> <curve x1="32.36" x2="37.95" x3="43.55" y1="7.41" y2="4.79" y3="3.06"/> <line x="43.55" y="111.24"/> <close/> </path> <fill/> <fillcolor color="#fedb72"/> <path> <move x="43.55" y="111.24"/> <line x="43.55" y="3.06"/> <curve x1="49.47" x2="55.3" x3="61" y1="1.25" y2="0.4" y3="0.01"/> <line x="61" y="111.24"/> <close/> </path> <fill/> <fillcolor color="#a2d8b8"/> <path> <move x="61" y="111.24"/> <line x="61" y="0.01"/> <line x="77.98" y="0"/> <line x="77.98" y="111.24"/> <close/> </path> <fill/> <fillcolor color="#93b6de"/> <path> <move x="77.98" y="111.24"/> <line x="77.98" y="0"/> <line x="96.25" y="0"/> <line x="96.25" y="111.24"/> <close/> </path> <fill/> <fillcolor color="#5f6266"/> <path> <move x="275.92" y="96.57"/> <curve x1="272.04" x2="262.02" x3="262.02" y1="96.57" y2="91.72" y3="81.71"/> <line x="262.1" y="41.05"/> <curve x1="262.1" x2="269.02" x3="275.64" y1="33.48" y2="26.8" y3="26.8"/> <line x="318.99" y="26.67"/> <curve x1="324.64" x2="331.92" x3="331.92" y1="26.67" y2="32.97" y3="40.6"/> <line x="331.77" y="82.03"/> <curve x1="331.77" x2="324.79" x3="316.11" y1="90.28" y2="96.67" y3="96.67"/> <close/> </path> <fill/> <fillcolor color="#5e6062"/> <path> <move x="295.71" y="93.89"/> <curve x1="283.14" x2="264.53" x3="264.53" y1="93.89" y2="82.1" y3="62.57"/> <curve x1="264.53" x2="280.56" x3="299.48" y1="42.71" y2="28.66" y3="28.66"/> <curve x1="314.01" x2="329.59" x3="329.59" y1="28.66" y2="43.58" y3="62.57"/> <curve x1="329.59" x2="314.92" x3="295.71" y1="77.07" y2="93.89" y3="93.89"/> <close/> </path> <fill/> <fillcolor color="#6c6a6a"/> <path> <move x="296.54" y="83.07"/> <curve x1="286.26" x2="275.29" x3="275.29" y1="83.07" y2="73.86" y3="62.62"/> <curve x1="275.29" x2="286.01" x3="297.26" y1="49.1" y2="39.13" y3="39.13"/> <curve x1="308.67" x2="318.09" x3="318.67" y1="39.13" y2="49.57" y3="62.46"/> <curve x1="318.67" x2="309.86" x3="296.54" y1="73.66" y2="83.07" y3="83.07"/> <close/> </path> <fill/> <fillcolor color="#66686a"/> <path> <move x="296.62" y="79.71"/> <curve x1="308.1" x2="315.63" x3="315.63" y1="79.46" y2="71.53" y3="62.94"/> <curve x1="315.63" x2="306.05" x3="297.05" y1="52.12" y2="42.11" y3="42.11"/> <curve x1="288.43" x2="278.97" x3="278.24" y1="42.11" y2="51" y3="61.66"/> <curve x1="278.24" x2="286.17" x3="296.62" y1="70.56" y2="79.71" y3="79.71"/> <close/> </path> <fill/> <fillcolor color="#797777"/> <path> <move x="297.19" y="69.67"/> <curve x1="293" x2="288.94" x3="288.94" y1="69.67" y2="66.05" y3="61.42"/> <curve x1="288.94" x2="292.69" x3="297.53" y1="56.66" y2="53.28" y3="53.28"/> <curve x1="302.39" x2="305.32" x3="305.32" y1="53.28" y2="57.73" y3="61.76"/> <curve x1="305.32" x2="301.37" x3="297.19" y1="65.97" y2="69.61" y3="69.67"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <alpha alpha="0.1"/> <path> <move x="262.02" y="61.02"/> <line x="262.06" y="41.05"/> <curve x1="262.06" x2="268.4" x3="275.29" y1="34.14" y2="26.83" y3="26.83"/> <line x="318.59" y="26.67"/> <curve x1="324.93" x2="331.97" x3="331.97" y1="26.67" y2="33.18" y3="40.61"/> <line x="331.85" y="60.94"/> <curve x1="322.31" x2="307.56" x3="297.42" y1="64.78" y2="68.77" y3="68.77"/> <curve x1="289.78" x2="275.24" x3="262.02" y1="68.77" y2="66.44" y3="61.02"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <fillcolor color="#c7c7c7"/> <path> <move x="302.17" y="45.02"/> <line x="306.66" y="35.16"/> <curve x1="312.27" x2="315.66" x3="318.86" y1="37.85" y2="41.22" y3="44.65"/> <line x="311.23" y="51.89"/> <curve x1="309.3" x2="305.71" x3="302.17" y1="49.18" y2="45.8" y3="45.02"/> <close/> </path> <fill/> <path> <move x="312" y="53.21"/> <line x="320.61" y="47.26"/> <curve x1="322.52" x2="323.31" x3="323.84" y1="50.42" y2="53.47" y3="56.41"/> <line x="314.21" y="59.46"/> <curve x1="313.89" x2="313.08" x3="312" y1="57.31" y2="55.53" y3="53.21"/> <close/> </path> <fill/> <fillcolor color="#74706d"/> <path> <move x="37.33" y="139.21"/> <curve x1="31.35" x2="23.1" x3="23.1" y1="139.21" y2="133.11" y3="124.69"/> <line x="23.32" y="115.93"/> <curve x1="23.32" x2="31.17" x3="36.94" y1="109.31" y2="102.66" y3="102.66"/> <line x="85.01" y="102.6"/> <curve x1="93.29" x2="99.94" x3="99.94" y1="102.6" y2="109.17" y3="117.81"/> <line x="99.76" y="124.58"/> <curve x1="99.76" x2="94.29" x3="85.35" y1="130.26" y2="139.09" y3="139.09"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="80.92" y="116.86"/> <curve x1="82.05" x2="84.43" x3="86.67" y1="115.77" y2="115.03" y3="115.03"/> <curve x1="89.06" x2="92.61" x3="92.58" y1="114.96" y2="117.23" y3="119.66"/> <line x="92.5" y="130.56"/> <line x="88.3" y="130.52"/> <line x="88.31" y="128.61"/> <curve x1="87.55" x2="86.45" x3="83.15" y1="129.73" y2="130.65" y3="130.68"/> <curve x1="81.23" x2="78.6" x3="79.72" y1="130.68" y2="127.87" y3="124.61"/> <curve x1="80.33" x2="81.22" x3="82.79" y1="122.97" y2="122.05" y3="121.5"/> <curve x1="85.73" x2="87.21" x3="88.03" y1="121.01" y2="121.18" y3="121.66"/> <curve x1="88.03" x2="88.23" x3="85.71" y1="120.61" y2="119.2" y3="119.34"/> <curve x1="83.25" x2="82.15" x3="80.96" y1="119.48" y2="119.84" y3="120.34"/> <close/> </path> <fill/> <fillcolor color="#74706d"/> <path> <move x="87.31" y="123.97"/> <curve x1="85.42" x2="84.59" x3="84.11" y1="123.79" y2="123.98" y3="124.29"/> <curve x1="83.03" x2="83.65" x3="85.07" y1="125.14" y2="126.74" y3="127.17"/> <curve x1="85.97" x2="86.69" x3="87.31" y1="127.3" y2="126.87" y3="126.16"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="29.03" y="130.28"/> <line x="29.07" y="126.45"/> <line x="31.78" y="126.41"/> <line x="31.74" y="115.7"/> <line x="29.19" y="115.58"/> <line x="29.19" y="111.51"/> <line x="39.33" y="111.39"/> <line x="39.49" y="115.66"/> <line x="37.26" y="115.7"/> <line x="37.22" y="126.25"/> <line x="39.33" y="126.25"/> <line x="39.33" y="130.32"/> <close/> </path> <fill/> <path> <move x="41.57" y="130.08"/> <line x="41.37" y="115.98"/> <line x="46.04" y="115.9"/> <line x="46.08" y="117.58"/> <curve x1="47.15" x2="48.57" x3="50.32" y1="116.15" y2="115.38" y3="115.38"/> <curve x1="53.21" x2="55.07" x3="55.07" y1="115.38" y2="117.65" y3="119.5"/> <line x="55.11" y="130.28"/> <line x="49.76" y="130.28"/> <line x="49.84" y="121.14"/> <curve x1="49.84" x2="49.53" x3="48.36" y1="120.27" y2="119.38" y3="119.38"/> <curve x1="47.05" x2="46.22" x3="46.22" y1="119.38" y2="120.45" y3="121.14"/> <line x="46.22" y="129.88"/> <close/> </path> <fill/> <path> <move x="56.79" y="125.21"/> <curve x1="58.7" x2="60.35" x3="62.86" y1="126.09" y2="127.39" y3="127.17"/> <curve x1="63.78" x2="64.52" x3="64.3" y1="127.17" y2="126.49" y3="125.73"/> <curve x1="64.05" x2="62.33" x3="60.38" y1="125.14" y2="124.92" y3="124.85"/> <curve x1="57.31" x2="56.2" x3="56.47" y1="124.56" y2="121.93" y3="119.98"/> <curve x1="57.11" x2="59.53" x3="61.58" y1="116.89" y2="115.42" y3="115.34"/> <curve x1="64.11" x2="66.15" x3="67.93" y1="115.24" y2="115.82" y3="116.78"/> <line x="67.81" y="120.62"/> <curve x1="66.21" x2="64.84" x3="62.54" y1="119.89" y2="118.88" y3="118.94"/> <curve x1="61.8" x2="61.22" x3="61.22" y1="119.1" y2="119.39" y3="120.18"/> <curve x1="61.32" x2="62.24" x3="63.5" y1="120.95" y2="121.34" y3="121.58"/> <curve x1="67.48" x2="68.66" x3="68.69" y1="121.95" y2="123.76" y3="125.81"/> <curve x1="68.82" x2="66.53" x3="62.58" y1="128.33" y2="130.8" y3="130.88"/> <curve x1="60.48" x2="58.27" x3="56.47" y1="130.91" y2="130.73" y3="129.01"/> <close/> </path> <fill/> <path> <move x="68.69" y="119.74"/> <line x="68.65" y="116.38"/> <line x="70.33" y="116.42"/> <line x="70.25" y="112.19"/> <line x="75.24" y="112.23"/> <line x="75.28" y="115.94"/> <line x="79.28" y="115.98"/> <line x="79.28" y="119.58"/> <line x="75.16" y="119.62"/> <line x="75.24" y="125.17"/> <curve x1="75.22" x2="77.11" x3="79.28" y1="126.89" y2="127.18" y3="126.17"/> <line x="79.32" y="130.24"/> <curve x1="77.67" x2="74.37" x3="72.69" y1="130.99" y2="131.07" y3="130.08"/> <curve x1="71.27" x2="70.24" x3="70.21" y1="129.25" y2="127.92" y3="125.29"/> <line x="70.25" y="119.78"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="351.42" name="Instapaper" strokewidth="inherit" w="138.55"> <connections/> <foreground> <fillcolor color="#221f1f"/> <path> <move x="0" y="351.42"/> <line x="0" y="341.7"/> <line x="10.34" y="341.81"/> <curve x1="37.37" x2="42.94" x3="42.94" y1="341.81" y2="316.92" y3="307.14"/> <line x="42.94" y="55.4"/> <curve x1="42.94" x2="29.89" x3="10.98" y1="30.01" y2="9.87" y3="9.87"/> <line x="0" y="10.11"/> <line x="0" y="0"/> <line x="138.55" y="0"/> <line x="138.55" y="10.19"/> <line x="130.25" y="10.19"/> <curve x1="114.32" x2="95.66" x3="95.66" y1="10.19" y2="31.5" y3="52.45"/> <line x="95.66" y="307.53"/> <curve x1="95.66" x2="119.27" x3="128.41" y1="329.91" y2="341.73" y3="341.73"/> <line x="138.55" y="341.51"/> <line x="138.55" y="351.42"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="197.18" name="iOS" strokewidth="inherit" w="367.77"> <connections/> <foreground> <fillcolor color="#cfcfcf"/> <path> <move x="255.45" y="149.7"/> <curve x1="277.69" x2="290.83" x3="305.39" y1="162.19" y2="164.26" y3="165.52"/> <curve x1="320.65" x2="332.73" x3="332.73" y1="166.06" y2="156.88" y3="147.44"/> <curve x1="332.73" x2="329.55" x3="314.2" y1="139.35" y2="130.02" y3="120.78"/> <line x="274.66" y="100.89"/> <curve x1="264.67" x2="253.66" x3="254.32" y1="94.25" y2="80.95" y3="56.6"/> <curve x1="256.13" x2="273.19" x3="299.06" y1="29.9" y2="15.78" y3="8.93"/> <curve x1="313.39" x2="342.05" x3="355.55" y1="6.31" y2="10.23" y3="20.45"/> <line x="355.32" y="47.56"/> <curve x1="341.88" x2="326.83" x3="316.46" y1="40.33" y2="34.85" y3="34.46"/> <curve x1="304.87" x2="296.11" x3="291.15" y1="34.4" y2="37.16" y3="43.72"/> <curve x1="286.01" x2="289.02" x3="295.9" y1="54.18" y2="62.18" y3="69.03"/> <curve x1="314.64" x2="327.65" x3="340.86" y1="85.23" y2="85.05" y3="92.3"/> <curve x1="357.64" x2="366.9" x3="367.41" y1="102.07" y2="117.28" y3="126.96"/> <curve x1="367.77" x2="359.34" x3="348.11" y1="156.62" y2="168.99" y3="178.37"/> <curve x1="333.82" x2="316.73" x3="299.67" y1="189.22" y2="194.4" y3="194.24"/> <curve x1="287.19" x2="272.81" x3="255.22" y1="193.64" y2="189.74" y3="180.2"/> <close/> <move x="150.91" y="166.4"/> <curve x1="169.78" x2="185.09" x3="192.67" y1="166.4" y2="157.64" y3="140.51"/> <curve x1="198.2" x2="202.26" x3="197.56" y1="130.46" y2="99.42" y3="75.57"/> <curve x1="194.43" x2="175" x3="153.78" y1="56.47" y2="36.07" y3="36.07"/> <curve x1="127.57" x2="118.47" x3="107.44" y1="36.07" y2="43.08" y3="64.06"/> <curve x1="101.37" x2="99.52" x3="106.17" y1="80.44" y2="107.07" y3="132.8"/> <curve x1="114.58" x2="137.78" x3="150.91" y1="160.23" y2="166.4" y3="166.4"/> <close/> <move x="65.47" y="104.44"/> <curve x1="65.47" x2="72.67" x3="88.57" y1="73.21" y2="54.16" y3="34.34"/> <curve x1="101.14" x2="115.28" x3="138.17" y1="19.2" y2="12.18" y3="9.38"/> <curve x1="158.19" x2="174.49" x3="186.48" y1="7.9" y2="9.82" y3="12.57"/> <curve x1="209.48" x2="224" x3="228.08" y1="18.52" y2="38.09" y3="56.83"/> <curve x1="236.55" x2="232.71" x3="230.77" y1="97.61" y2="116.16" y3="131.62"/> <curve x1="225.54" x2="209.24" x3="184.09" y1="157.92" y2="174.69" y3="186.51"/> <curve x1="158.67" x2="119.68" x3="96.34" y1="197.18" y2="194.59" y3="179.87"/> <curve x1="74.26" x2="65.47" x3="65.47" y1="163.37" y2="140.78" y3="104.44"/> <close/> <move x="20.68" y="39.32"/> <curve x1="10.4" x2="0" x3="0" y1="39.32" y2="32.4" y3="20.45"/> <curve x1="0" x2="11.01" x3="21.35" y1="9.75" y2="0" y3="0"/> <curve x1="31.29" x2="41.24" x3="41.24" y1="0" y2="10.52" y3="19.77"/> <curve x1="41.24" x2="31.73" x3="20.68" y1="29.16" y2="39.32" y3="39.32"/> <close/> <move x="4.64" y="190.87"/> <line x="5.31" y="59.54"/> <line x="36.27" y="59.31"/> <line x="37.32" y="190.97"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="390.02" name="Jamespot" strokewidth="inherit" w="389.93"> <connections/> <foreground> <fillcolor color="#e11e2d"/> <path> <move x="195.71" y="390.02"/> <curve x1="74.1" x2="0" x3="0" y1="390.02" y2="290.49" y3="194.03"/> <curve x1="0" x2="89.23" x3="195.71" y1="84.77" y2="0" y3="0"/> <curve x1="315.82" x2="389.93" x3="389.93" y1="0" y2="101.28" y3="194.03"/> <curve x1="389.93" x2="298.57" x3="195.71" y1="305.23" y2="390.02" y3="390.02"/> <close/> </path> <fill/> <fillcolor color="#f09933"/> <path> <move x="190.41" y="301.43"/> <curve x1="209.7" x2="243.14" x3="243.14" y1="301.43" y2="284.63" y3="233.07"/> <line x="243.14" y="98.1"/> <curve x1="243.14" x2="233.72" x3="220.95" y1="86.43" y2="75.1" y3="75.1"/> <curve x1="208.93" x2="199.38" x3="199.38" y1="75.1" y2="87.04" y3="97.15"/> <line x="199.38" y="233.12"/> <curve x1="199.38" x2="196.72" x3="186.28" y1="248.9" y2="258.27" y3="258.27"/> <line x="136.62" y="258.27"/> <curve x1="122.36" x2="115.83" x3="115.83" y1="259.35" y2="271.67" y3="279.32"/> <curve x1="116.64" x2="128.35" x3="135.79" y1="294.03" y2="301.43" y3="301.43"/> <close/> <move x="195.71" y="369.89"/> <curve x1="117.2" x2="19.96" x3="19.96" y1="369.89" y2="309.8" y3="194.03"/> <curve x1="19.96" x2="96.06" x3="195.71" y1="100.94" y2="20.13" y3="20.13"/> <curve x1="309.1" x2="370.05" x3="370.05" y1="20.13" y2="119.61" y3="194.03"/> <curve x1="370.05" x2="297.93" x3="195.71" y1="282.47" y2="369.89" y3="369.89"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="324.85" name="Java" strokewidth="inherit" w="171.48"> <connections/> <foreground> <fillcolor color="#e11e22"/> <path> <move x="92.83" y="132.71"/> <curve x1="96.63" x2="105.22" x3="97.67" y1="127.49" y2="118.27" y3="109.79"/> <curve x1="91.89" x2="89.94" x3="88.07" y1="103.22" y2="99.69" y3="94"/> <curve x1="84.54" x2="89.3" x3="96.65" y1="81.21" y2="73.49" y3="66.22"/> <curve x1="114.44" x2="127.42" x3="138.15" y1="53.29" y2="49" y3="46.21"/> <curve x1="128.48" x2="121.08" x3="109.77" y1="51.54" y2="55.64" y3="65.01"/> <curve x1="99.83" x2="95.73" x3="102.97" y1="73.47" y2="82.51" y3="91.43"/> <line x="108.13" y="98.42"/> <curve x1="112.76" x2="113.69" x3="108.27" y1="104.64" y2="112.63" y3="119.2"/> <curve x1="103.7" x2="99.03" x3="92.83" y1="124.17" y2="127.99" y3="132.71"/> <close/> <move x="89.73" y="125.85"/> <curve x1="79.92" x2="70.03" x3="59.15" y1="117.32" y2="109.75" y3="92.24"/> <curve x1="53.96" x2="58.87" x3="65.73" y1="83.8" y2="71.79" y3="65.32"/> <curve x1="77.43" x2="82.87" x3="90.36" y1="55.31" y2="51.11" y3="45.26"/> <curve x1="96.39" x2="105.27" x3="108.13" y1="40.35" y2="31.89" y3="21.43"/> <curve x1="109.79" x2="109.79" x3="107.79" y1="15.62" y2="8.56" y3="0"/> <curve x1="111.38" x2="117.46" x3="113.39" y1="6.03" y2="12.65" y3="26.58"/> <curve x1="109.9" x2="101.27" x3="91.44" y1="37.79" y2="47.17" y3="56.12"/> <curve x1="84.4" x2="78.06" x3="73.9" y1="61.47" y2="67" y3="73.1"/> <curve x1="69.84" x2="67.36" x3="70.64" y1="78.08" y2="83.45" y3="95.27"/> <curve x1="73.65" x2="81.82" x3="89.73" y1="104.7" y2="114.89" y3="125.85"/> <close/> <move x="153.57" y="282.73"/> <curve x1="149.12" x2="143.44" x3="138.41" y1="282.24" y2="282.19" y3="284.45"/> <curve x1="134.96" x2="133.47" x3="134.43" y1="286.62" y2="290.24" y3="293.65"/> <curve x1="135.77" x2="139.19" x3="144.84" y1="298.48" y2="300.48" y3="299.19"/> <curve x1="149.83" x2="152.71" x3="153.57" y1="298.08" y2="295.64" y3="293.51"/> <close/> <move x="126.45" y="259.06"/> <curve x1="131.52" x2="137.86" x3="146.38" y1="256.45" y2="254.79" y3="254.76"/> <curve x1="158.25" x2="163.48" x3="163.48" y1="254.73" y2="262.28" y3="267.86"/> <line x="163.48" y="306.24"/> <line x="155.98" y="306.07"/> <line x="154.98" y="300.94"/> <curve x1="151.06" x2="147.23" x3="143.52" y1="303.75" y2="305.79" y3="306.66"/> <curve x1="139.13" x2="133.28" x3="127.74" y1="307.71" y2="307.64" y3="303.49"/> <curve x1="124.08" x2="122.63" x3="125.7" y1="300.06" y2="292.34" y3="285.69"/> <curve x1="128.98" x2="134.32" x3="140.43" y1="280.69" y2="278.22" y3="276.46"/> <curve x1="144.11" x2="148.5" x3="153.69" y1="275.79" y2="275.52" y3="275.71"/> <curve x1="153.69" x2="154.6" x3="149.66" y1="270.81" y2="266.47" y3="263.39"/> <curve x1="143.39" x2="136.47" x3="128.55" y1="260.68" y2="262.55" y3="265.43"/> <close/> <move x="75.16" y="255.07"/> <line x="86.37" y="255.07"/> <line x="98.26" y="295.35"/> <curve x1="103.08" x2="106.37" x3="109.5" y1="284.9" y2="270.57" y3="255.48"/> <line x="119.48" y="255.48"/> <curve x1="115.95" x2="110.48" x3="103.93" y1="274.4" y2="291" y3="306.26"/> <line x="90.87" y="306.26"/> <close/> <move x="59.14" y="282.89"/> <curve x1="55.38" x2="51.78" x3="47.62" y1="282.85" y2="282.55" y3="283.1"/> <curve x1="42.43" x2="39.99" x3="39.79" y1="283.91" y2="287.08" y3="290.42"/> <curve x1="39.27" x2="42.5" x3="47.4" y1="297.53" y2="299.38" y3="299.38"/> <curve x1="51.42" x2="55.34" x3="59.14" y1="299.4" y2="297.77" y3="294.13"/> <close/> <move x="32.21" y="258.95"/> <curve x1="38.9" x2="47.39" x3="58" y1="256.12" y2="254.34" y3="255.27"/> <curve x1="65.07" x2="69.34" x3="69.34" y1="256.63" y2="262.94" y3="268.34"/> <line x="69.34" y="306.26"/> <line x="60.85" y="306.26"/> <line x="60.66" y="300.51"/> <curve x1="55.76" x2="50.56" x3="46.75" y1="304.77" y2="307.15" y3="307.15"/> <curve x1="39.02" x2="34.96" x3="32.86" y1="307.15" y2="305.69" y3="303.25"/> <curve x1="29.84" x2="28.36" x3="29.87" y1="299.33" y2="295.18" y3="287.3"/> <curve x1="31.24" x2="37.9" x3="41.48" y1="282.96" y2="278.42" y3="277.22"/> <curve x1="46.6" x2="52.59" x3="59.21" y1="275.89" y2="275.56" y3="275.95"/> <line x="59.26" y="270.98"/> <curve x1="59.26" x2="57.07" x3="49.15" y1="267.93" y2="262.64" y3="262.56"/> <curve x1="41.87" x2="39.18" x3="33.58" y1="262.56" y2="263.12" y3="265"/> <close/> <move x="0" y="318.22"/> <curve x1="6.71" x2="10.63" x3="10.63" y1="314.26" y2="311.18" y3="301.65"/> <line x="10.63" y="237.64"/> <line x="21.43" y="237.64"/> <line x="21.43" y="304.62"/> <curve x1="21.43" x2="10.16" x3="4.69" y1="316.7" y2="322.04" y3="324.85"/> <close/> </path> <fill/> <fillcolor color="#0a6eb6"/> <path> <move x="136.1" y="125.96"/> <curve x1="138.36" x2="140.91" x3="147.61" y1="123.82" y2="121.77" y3="120.9"/> <curve x1="154.83" x2="162.26" x3="165.31" y1="120.28" y2="124" y3="129.27"/> <curve x1="171.48" x2="164.02" x3="156.73" y1="141.16" y2="148.39" y3="154.73"/> <curve x1="147.59" x2="137.65" x3="128.94" y1="160.96" y2="164.56" y3="166.27"/> <curve x1="136.66" x2="146" x3="152.65" y1="162.15" y2="156.61" y3="150.65"/> <curve x1="160.25" x2="160.96" x3="155.63" y1="142.03" y2="134.91" y3="129.1"/> <curve x1="148.26" x2="143.74" x3="136.1" y1="123.07" y2="122.89" y3="125.96"/> <close/> <move x="135.45" y="130.76"/> <curve x1="131.17" x2="126.8" x3="120.13" y1="133.25" y2="135.72" y3="137.91"/> <curve x1="110.61" x2="97.48" x3="78.27" y1="140.47" y2="142.05" y3="143.09"/> <curve x1="61.03" x2="43.61" x3="24.03" y1="143.51" y2="143.48" y3="137.76"/> <curve x1="21.79" x2="22.02" x3="24.03" y1="136.8" y2="134.55" y3="133.19"/> <curve x1="28.58" x2="33.3" x3="40.81" y1="130.61" y2="128.07" y3="126.12"/> <curve x1="50.07" x2="56.79" x3="62.17" y1="123.75" y2="123.08" y3="123.3"/> <curve x1="55.84" x2="49.48" x3="40.89" y1="125.01" y2="126.04" y3="130.15"/> <curve x1="37.78" x2="36.68" x3="41.14" y1="131.75" y2="134.32" y3="135.48"/> <curve x1="57.7" x2="63.22" x3="78.44" y1="139.41" y2="137.79" y3="137.58"/> <curve x1="102.68" x2="119.24" x3="135.45" y1="136.96" y2="133.92" y3="130.76"/> <close/> <move x="125.05" y="160.37"/> <curve x1="112.63" x2="98.46" x3="81.33" y1="163.13" y2="165.28" y3="166.37"/> <curve x1="67.48" x2="49.41" x3="42.12" y1="166.78" y2="164.77" y3="159.8"/> <curve x1="40.42" x2="38.53" x3="41.26" y1="158.44" y2="157.17" y3="153.74"/> <curve x1="45.73" x2="49.21" x3="52.35" y1="149.94" y2="149.05" y3="149.34"/> <curve x1="48.67" x2="47.59" x3="50.52" y1="151.57" y2="154.44" y3="155.63"/> <curve x1="59.33" x2="69.81" x3="80.98" y1="158.69" y2="158.32" y3="158.25"/> <curve x1="93.03" x2="107.01" x3="115.9" y1="158.14" y2="156.57" y3="154.48"/> <curve x1="118.11" x2="121.25" x3="125.05" y1="156.34" y2="158.31" y3="160.37"/> <close/> <move x="121.62" y="183.92"/> <curve x1="111.8" x2="99.87" x3="81.27" y1="187.57" y2="190.49" y3="191.12"/> <curve x1="68.96" x2="57.2" x3="48.01" y1="190.7" y2="189.65" y3="183.23"/> <curve x1="45.02" x2="45.95" x3="47.32" y1="180.89" y2="178.8" y3="177.4"/> <curve x1="51.39" x2="55.25" x3="57.38" y1="174" y2="173.29" y3="172.71"/> <curve x1="53.77" x2="54.13" x3="56.41" y1="175.24" y2="177.54" y3="178.43"/> <curve x1="61.41" x2="72.6" x3="85.5" y1="180.02" y2="180.89" y3="180.89"/> <curve x1="96.19" x2="102.78" x3="108.82" y1="180.25" y2="178.82" y3="177.29"/> <curve x1="112.98" x2="117.31" x3="121.62" y1="180.01" y2="181.92" y3="183.92"/> <close/> <move x="7.2" y="205.18"/> <curve x1="3.46" x2="3.68" x3="7.43" y1="203.38" y2="199.7" y3="197.4"/> <curve x1="13.1" x2="18.37" x3="21.95" y1="193.74" y2="191.69" y3="190.77"/> <curve x1="29.88" x2="38.13" x3="41.15" y1="188.37" y2="188.82" y3="189.63"/> <curve x1="32.82" x2="24.82" x3="20.8" y1="190.76" y2="192.48" y3="195.35"/> <curve x1="16.95" x2="18.34" x3="21.15" y1="197.74" y2="199.57" y3="200.83"/> <curve x1="40.19" x2="66.99" x3="84.36" y1="207.85" y2="206.94" y3="206.78"/> <curve x1="111.67" x2="127.81" x3="140.59" y1="206.38" y2="204.11" y3="201.29"/> <curve x1="146.24" x2="150.86" x3="153.17" y1="199.92" y2="198.55" y3="196.95"/> <curve x1="155.78" x2="155.01" x3="153.17" y1="195.28" y2="192.98" y3="190.32"/> <curve x1="156.02" x2="157.86" x3="157.97" y1="190.73" y2="192.04" y3="194.89"/> <curve x1="157.48" x2="156.13" x3="154.43" y1="197.85" y2="199.32" y3="200.15"/> <curve x1="145.95" x2="135.08" x3="120.82" y1="203.97" y2="207.41" y3="209.41"/> <curve x1="99.2" x2="78.09" x3="57.38" y1="212.23" y2="212.95" y3="211.81"/> <curve x1="38.51" x2="20.08" x3="7.2" y1="210.67" y2="209.31" y3="205.18"/> <close/> <move x="33.38" y="216.84"/> <curve x1="46.07" x2="60.32" x3="75.67" y1="218.35" y2="219.44" y3="219.58"/> <curve x1="100.48" x2="121.41" x3="140.14" y1="220.04" y2="217.78" y3="213.98"/> <curve x1="151.87" x2="160.92" x3="167.68" y1="211.65" y2="209.51" y3="201.75"/> <curve x1="167.7" x2="166.74" x3="158.31" y1="205.43" y2="208.82" y3="213.41"/> <curve x1="149.59" x2="135.26" x3="108.02" y1="217.3" y2="220.65" y3="222.78"/> <curve x1="91.5" x2="73.69" x3="58.75" y1="223.47" y2="223.53" y3="222.32"/> <curve x1="41.02" x2="40.21" x3="33.38" y1="220.13" y2="218.75" y3="216.84"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="327.96" name="Joomla" strokewidth="inherit" w="330.15"> <connections/> <foreground> <fillcolor color="#096dab"/> <path> <move x="231.86" y="203.2"/> <line x="157.62" y="277.14"/> <curve x1="137.56" x2="111.5" x3="86.12" y1="296.61" y2="300.75" y3="293.43"/> <curve x1="83.27" x2="66.46" x3="43.78" y1="312.36" y2="327.23" y3="327.23"/> <curve x1="21.31" x2="0" x3="0" y1="327.23" y2="309.07" y3="284.25"/> <curve x1="0" x2="16.49" x3="37.15" y1="262" y2="242.33" y3="240.55"/> <curve x1="30.8" x2="40.01" x3="58.56" y1="211.67" y2="187.83" y3="170.24"/> <line x="91.39" y="203.24"/> <curve x1="82.37" x2="76.72" x3="87.8" y1="210.5" y2="225.92" y3="241.03"/> <curve x1="101.21" x2="118.95" x3="128.3" y1="255.47" y2="249.3" y3="240.63"/> <line x="199.02" y="170.19"/> <close/> </path> <fill/> <fillcolor color="#b8d5e7"/> <path> <move x="208.54" y="185.49"/> <line x="138.61" y="255.01"/> <curve x1="133.86" x2="123.17" x3="113.2" y1="259.78" y2="262.48" y3="261.56"/> <curve x1="105.27" x2="97.92" x3="93.15" y1="260.13" y2="258.28" y3="254.53"/> <curve x1="107.91" x2="119.17" x3="130.62" y1="257.3" y2="257.05" y3="246.38"/> <line x="199.89" y="176.66"/> <close/> <move x="38.82" y="285.22"/> <curve x1="29.92" x2="17.34" x3="16.54" y1="285.22" y2="281.56" y3="267.94"/> <curve x1="16.54" x2="28.66" x3="40.45" y1="257.62" y2="251.83" y3="251.83"/> <curve x1="54.23" x2="61.95" x3="61.95" y1="251.83" y2="260.68" y3="269.84"/> <curve x1="61.95" x2="56.38" x3="38.82" y1="276.32" y2="285.14" y3="285.22"/> <close/> </path> <fill/> <fillcolor color="#e22828"/> <path> <move x="167.69" y="272.9"/> <line x="200.84" y="240.39"/> <curve x1="211.31" x2="230.98" x3="241.82" y1="252.92" y2="254.64" y3="240.31"/> <curve x1="252.11" x2="248.61" x3="239.51" y1="228.21" y2="215.6" y3="203.88"/> <line x="168.65" y="132.3"/> <line x="201.24" y="99.57"/> <line x="273.7" y="173.04"/> <curve x1="283.76" x2="290.56" x3="292.95" y1="184.11" y2="196.45" y3="210.51"/> <curve x1="295.33" x2="293.63" x3="291.52" y1="225.55" y2="233.32" y3="240.87"/> <curve x1="310.8" x2="330.15" x3="330.15" y1="247.26" y2="261.31" y3="286.55"/> <curve x1="329.25" x2="312.49" x3="286.69" y1="306.77" y2="327.96" y3="327.96"/> <curve x1="268.28" x2="247.76" x3="243.17" y1="327.96" y2="316.56" y3="290.94"/> <curve x1="225.23" x2="215.18" x3="198.29" y1="296.66" y2="298.44" y3="292.79"/> <curve x1="189.69" x2="180.73" x3="167.69" y1="289.69" y2="285.78" y3="272.9"/> <close/> </path> <fill/> <fillcolor color="#f7c0c0"/> <path> <move x="295.51" y="287.12"/> <curve x1="282.2" x2="272.1" x3="272.1" y1="287.12" y2="280.07" y3="269.63"/> <curve x1="272.1" x2="283.11" x3="295.59" y1="259.57" y2="252.85" y3="252.85"/> <curve x1="306.72" x2="317.66" x3="317.66" y1="252.85" y2="260.62" y3="269.91"/> <curve x1="317.66" x2="306.14" x3="295.51" y1="280.81" y2="287.12" y3="287.12"/> <close/> <move x="283.69" y="243.18"/> <curve x1="286.81" x2="280.12" x3="267.07" y1="225.26" y2="210.27" y3="195.89"/> <line x="189.02" y="116.4"/> <line x="197.89" y="107.53"/> <line x="275.06" y="186.94"/> <curve x1="287.74" x2="293.72" x3="283.69" y1="199.75" y2="224.7" y3="243.18"/> <close/> </path> <fill/> <fillcolor color="#73b162"/> <path> <move x="128.22" y="233.52"/> <line x="54.01" y="159.38"/> <curve x1="37.48" x2="29.34" x3="37.67" y1="140.59" y2="115.96" y3="88.43"/> <curve x1="25.99" x2="6.04" x3="3.66" y1="84.75" y2="77.87" y3="45.07"/> <curve x1="3.66" x2="22.46" x3="48.82" y1="22.28" y2="1.73" y3="1.73"/> <curve x1="72.41" x2="89.06" x3="91.03" y1="1.73" y2="21.57" y3="38.42"/> <curve x1="116.51" x2="140.75" x3="160.99" y1="34.23" y2="37.49" y3="60.92"/> <line x="128.02" y="93.65"/> <curve x1="122.89" x2="104.1" x3="87.96" y1="84.25" y2="76.99" y3="91.23"/> <curve x1="76.93" x2="81.4" x3="89.08" y1="103.07" y2="119.32" y3="128.38"/> <line x="160.82" y="200.44"/> <close/> </path> <fill/> <fillcolor color="#ddecd9"/> <path> <move x="146.26" y="210.8"/> <line x="78.21" y="142.6"/> <curve x1="64.65" x2="68.81" x3="76.93" y1="127.84" y2="107.1" y3="94.83"/> <curve x1="73.34" x2="75.53" x3="84.6" y1="108.26" y2="121.16" y3="131.66"/> <line x="154.72" y="202.02"/> <close/> <move x="46.84" y="54.14"/> <curve x1="35.25" x2="15.9" x3="15.9" y1="54.14" y2="48.05" y3="33.13"/> <curve x1="15.9" x2="26.69" x3="45.62" y1="19.72" y2="8.63" y3="8.63"/> <curve x1="64.27" x2="76.29" x3="76.29" y1="8.63" y2="17.7" y3="31.43"/> <curve x1="76.29" x2="62.88" x3="46.84" y1="44.58" y2="54.14" y3="54.14"/> <close/> <move x="149.23" y="72.14"/> <curve x1="144.48" x2="140.42" x3="125.27" y1="66.18" y2="59.48" y3="50.97"/> <curve x1="114.98" x2="103.55" x3="90.91" y1="45.82" y2="42.86" y3="42.18"/> <curve x1="99.66" x2="110.27" x3="125.19" y1="41.16" y2="39.44" y3="43.14"/> <curve x1="143.85" x2="150.43" x3="157.7" y1="49.45" y2="57.09" y3="63.51"/> <close/> </path> <fill/> <fillcolor color="#f9aa64"/> <path> <move x="98.02" y="129.3"/> <line x="172.56" y="55.36"/> <curve x1="184.33" x2="195.21" x3="205.71" y1="45.17" y2="40.34" y3="37.79"/> <curve x1="220.02" x2="231.08" x3="239.19" y1="35.03" y2="35.8" y3="39.07"/> <curve x1="245.64" x2="266.78" x3="284.09" y1="13.46" y2="0" y3="0"/> <curve x1="302.06" x2="326.67" x3="326.67" y1="0" y2="15.12" y3="44.02"/> <curve x1="326.67" x2="309.36" x3="289.76" y1="67.6" y2="84.77" y3="87"/> <curve x1="296.05" x2="296.52" x3="292.71" y1="106.94" y2="113.45" y3="127.26"/> <curve x1="288.16" x2="282.06" x3="271.22" y1="142.51" y2="152.73" y3="163.29"/> <line x="238.55" y="129.58"/> <curve x1="248.8" x2="254.47" x3="239.67" y1="122.74" y2="102.74" y3="89.16"/> <curve x1="228.73" x2="216.17" x3="201.4" y1="79.92" y2="79.77" y3="92.03"/> <line x="130.64" y="162.11"/> <close/> </path> <fill/> <fillcolor color="#fde5cf"/> <path> <move x="106.26" y="132.68"/> <line x="185.22" y="55.04"/> <curve x1="193.41" x2="204.29" x3="212.11" y1="48.03" y2="43.96" y3="42.5"/> <curve x1="219.08" x2="236.9" x3="242.54" y1="41.2" y2="42.77" y3="47.81"/> <curve x1="233.02" x2="212.25" x3="193.89" y1="43.87" y2="45.54" y3="63.91"/> <line x="114.73" y="141.15"/> <close/> <move x="285.44" y="52.89"/> <curve x1="268.12" x2="254.93" x3="254.93" y1="52.89" y2="43.17" y3="29.4"/> <curve x1="254.93" x2="269.74" x3="285.68" y1="16.4" y2="7.11" y3="7.11"/> <curve x1="300.73" x2="315.64" x3="315.64" y1="7.11" y2="15.87" y3="31.16"/> <curve x1="315.64" x2="303.24" x3="285.44" y1="41.34" y2="52.89" y3="52.89"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="335.06" name="Jquery" strokewidth="inherit" w="369.05"> <connections/> <foreground> <fillcolor color="#79cef4"/> <path> <move x="238.2" y="1.12"/> <curve x1="228.43" x2="222.79" x3="230.21" y1="16.87" y2="37.03" y3="63.11"/> <curve x1="247.26" x2="279.17" x3="289.96" y1="103.09" y2="111.59" y3="112.64"/> <curve x1="316.34" x2="337.67" x3="353.88" y1="115.09" y2="107.59" y3="90.59"/> <curve x1="344.55" x2="331.09" x3="289.01" y1="105.65" y2="127.43" y3="129.58"/> <curve x1="257.58" x2="226.6" x3="215.99" y1="130.83" y2="111.54" y3="74.46"/> <curve x1="208.45" x2="225.58" x3="238.2" y1="28.5" y2="15.12" y3="1.12"/> <close/> <move x="169.49" y="0"/> <curve x1="157.51" x2="145.65" x3="153.19" y1="20.47" y2="49.12" y3="90.43"/> <curve x1="167.01" x2="222.75" x3="264.56" y1="154.99" y2="187.17" y3="191.25"/> <curve x1="311.24" x2="346.1" x3="369.05" y1="196.97" y2="176.03" y3="154.67"/> <curve x1="346.45" x2="319.69" x3="269.83" y1="188.89" y2="213.38" y3="218.9"/> <curve x1="204.52" x2="139.69" x3="129.23" y1="225.67" y2="183.09" y3="109.13"/> <curve x1="122.42" x2="158.64" x3="169.49" y1="44.54" y2="9.78" y3="0"/> <close/> <move x="88.16" y="26.2"/> <curve x1="72.62" x2="59.3" x3="63.08" y1="52.23" y2="80.99" y3="130.54"/> <curve x1="71.99" x2="128.33" x3="179.08" y1="213.51" y2="259.83" y3="278.81"/> <curve x1="250.23" x2="309.4" x3="359.36" y1="300.76" y2="282.76" y3="238.9"/> <curve x1="335.24" x2="290.02" x3="233.02" y1="281.15" y2="315.4" y3="323.83"/> <curve x1="158.41" x2="88.37" x3="52.31" y1="335.06" y2="299.35" y3="232.52"/> <curve x1="0" x2="61.37" x3="88.16" y1="130.36" y2="49.67" y3="26.2"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="379.32" name="JSON" strokewidth="inherit" w="349.94"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="116.09" y="379.32"/> <curve x1="90.8" x2="58.61" x3="58.61" y1="379.32" y2="358.52" y3="319.03"/> <line x="58.61" y="276.92"/> <line x="15.73" y="276.92"/> <curve x1="8.26" x2="0" x3="0.15" y1="276.92" y2="272.66" y3="259.82"/> <line x="0.15" y="176.93"/> <curve x1="0.15" x2="4.65" x3="14.54" y1="169.17" y2="160.99" y3="160.72"/> <line x="58.61" y="160.72"/> <line x="58.61" y="56.92"/> <curve x1="58.61" x2="83.1" x3="118.41" y1="28.48" y2="0" y3="0"/> <line x="232.43" y="0"/> <curve x1="242.59" x2="255.84" x3="268.53" y1="0" y2="7.24" y3="19.67"/> <line x="331.91" y="83.44"/> <curve x1="347.41" x2="349.94" x3="349.94" y1="100.27" y2="108.94" y3="119.77"/> <line x="349.94" y="320.72"/> <curve x1="349.94" x2="326.66" x3="288.53" y1="350.82" y2="379.32" y3="379.32"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="202.3" y="248.11"/> <line x="202.3" y="185.47"/> <line x="222.13" y="185.47"/> <line x="244.08" y="220.13"/> <line x="244.08" y="185.47"/> <line x="259.4" y="185.47"/> <line x="259.4" y="248.11"/> <line x="243.31" y="248.11"/> <line x="217.86" y="206.63"/> <line x="217.86" y="248.11"/> <close/> <move x="173.48" y="217.17"/> <curve x1="173.44" x2="171.38" x3="158.22" y1="209.63" y2="197.18" y3="196.81"/> <curve x1="148.46" x2="143.51" x3="143.54" y1="196.66" y2="206.82" y3="216.46"/> <curve x1="143.85" x2="150.6" x3="158.69" y1="231.22" y2="237.04" y3="237.05"/> <curve x1="167.6" x2="173.37" x3="173.48" y1="236.85" y2="229.55" y3="217.17"/> <close/> <move x="126.26" y="212.91"/> <curve x1="126.67" x2="139.54" x3="151.95" y1="196.59" y2="185.67" y3="184.5"/> <curve x1="165.6" x2="172.45" x3="178.69" y1="183.31" y2="185.81" y3="189.71"/> <curve x1="187.03" x2="192.61" x3="190.29" y1="195.74" y2="206.79" y3="224.15"/> <curve x1="188.04" x2="180.32" x3="161.77" y1="236.33" y2="248.2" y3="249.48"/> <curve x1="154.95" x2="141.77" x3="132.77" y1="249.83" y2="250.15" y3="238.11"/> <curve x1="128.65" x2="126.1" x3="126.26" y1="232.1" y2="227.73" y3="212.91"/> <close/> <move x="65.96" y="229.04"/> <line x="68.22" y="228.79"/> <curve x1="78.72" x2="86.44" x3="93.87" y1="236.67" y2="237.21" y3="236.97"/> <curve x1="98.29" x2="102.02" x3="102.33" y1="236.33" y2="235.27" y3="231.4"/> <curve x1="102.53" x2="99.61" x3="96.77" y1="228.62" y2="226.76" y3="226.03"/> <curve x1="87.99" x2="80.78" x3="71.7" y1="223.72" y2="224.48" y3="217.48"/> <curve x1="64.46" x2="64.81" x3="68.27" y1="210.7" y2="202.46" y3="195.98"/> <curve x1="74.47" x2="85.23" x3="91.78" y1="186.35" y2="184.86" y3="184.29"/> <curve x1="102.83" x2="111.64" x3="117.17" y1="184.2" y2="186.1" y3="188.8"/> <line x="117.12" y="203.53"/> <line x="114.69" y="203.72"/> <curve x1="109.63" x2="104.08" x3="96.31" y1="199.79" y2="197.23" y3="196.79"/> <curve x1="92.01" x2="86.9" x3="83.78" y1="196.71" y2="196.68" y3="200.19"/> <curve x1="82.15" x2="86.44" x3="90.19" y1="206.03" y2="206.41" y3="207.29"/> <curve x1="100.09" x2="105.63" x3="113.25" y1="209.54" y2="210.12" y3="214.92"/> <curve x1="122.87" x2="119.82" x3="114.78" y1="222.34" y2="234.98" y3="240.71"/> <curve x1="108.15" x2="101.71" x3="89.58" y1="247.14" y2="249.49" y3="249.48"/> <curve x1="82.6" x2="74.02" x3="65.85" y1="249.37" y2="248.34" y3="244.35"/> <close/> <move x="16.46" y="234.33"/> <curve x1="20.36" x2="23.17" x3="32.18" y1="235.63" y2="237.44" y3="236.34"/> <curve x1="35.46" x2="38.81" x3="38.81" y1="235.46" y2="232.98" y3="228.05"/> <line x="38.81" y="197.73"/> <line x="24.53" y="197.73"/> <line x="24.53" y="185.47"/> <line x="55.66" y="185.47"/> <line x="55.66" y="231.74"/> <curve x1="54.35" x2="48.91" x3="40.46" y1="241.41" y2="246.5" y3="248.14"/> <curve x1="34.54" x2="27.67" x3="16.46" y1="249.42" y2="250.12" y3="248.08"/> <close/> <move x="87.56" y="276.92"/> <line x="262.36" y="276.92"/> <curve x1="271.44" x2="277.16" x3="277.16" y1="276.92" y2="269.86" y3="261.07"/> <line x="277.16" y="175.6"/> <curve x1="277.16" x2="271.07" x3="261.58" y1="167.07" y2="160.72" y3="160.72"/> <line x="87.56" y="160.72"/> <line x="87.56" y="58.87"/> <curve x1="87.56" x2="104.79" x3="116.64" y1="38.09" y2="28.96" y3="28.96"/> <line x="220.99" y="28.96"/> <curve x1="231.62" x2="233.46" x3="233.46" y1="28.96" y2="41.19" y3="47.65"/> <line x="233.52" y="101.65"/> <curve x1="233.52" x2="241.88" x3="248.16" y1="111.6" y2="116.63" y3="116.63"/> <line x="302.6" y="116.63"/> <curve x1="310.05" x2="321.12" x3="321.12" y1="116.63" y2="118.97" y3="132.08"/> <line x="321.12" y="319.42"/> <curve x1="321.12" x2="310.32" x3="290.77" y1="336.09" y2="350.07" y3="350.07"/> <line x="117.62" y="350.07"/> <curve x1="103.49" x2="87.56" x3="87.56" y1="350.07" y2="340.03" y3="319.89"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="126.31" name="JSON 2" strokewidth="inherit" w="401.78"> <connections/> <foreground> <fillcolor color="#1c809b"/> <path> <move x="269.72" y="105.71"/> <line x="269.72" y="21.56"/> <line x="291.64" y="21.56"/> <line x="324.14" y="84.01"/> <line x="324.14" y="21.56"/> <line x="338.62" y="21.56"/> <line x="338.62" y="105.71"/> <line x="319.33" y="105.71"/> <line x="283.38" y="39.3"/> <line x="283.38" y="105.71"/> <close/> <move x="199.51" y="88.6"/> <curve x1="208.78" x2="219.75" x3="226.48" y1="95.22" y2="94.78" y3="90.13"/> <curve x1="233.36" x2="236.34" x3="236.29" y1="84.87" y2="76.95" y3="64.38"/> <curve x1="236.45" x2="236.12" x3="227.86" y1="54.67" y2="45.06" y3="36.96"/> <curve x1="220.44" x2="208.71" x3="200.89" y1="31.12" y2="31.46" y3="37.57"/> <curve x1="193.7" x2="192.31" x3="192.31" y1="43.77" y2="52" y3="62.7"/> <curve x1="192.07" x2="195.82" x3="199.51" y1="78.64" y2="85.53" y3="88.6"/> <close/> <move x="173.61" y="63.77"/> <curve x1="173.78" x2="179.18" x3="193.23" y1="48.35" y2="33.54" y3="24.39"/> <curve x1="208.82" x2="231.24" x3="239.5" y1="16.37" y2="19.88" y3="25.92"/> <curve x1="249.58" x2="254.37" x3="254.37" y1="33.06" y2="42.14" y3="63.92"/> <curve x1="254.37" x2="247.65" x3="239.05" y1="80.67" y2="93" y3="100.55"/> <curve x1="229.39" x2="202.82" x3="186.64" y1="107.55" y2="112.24" y3="99.32"/> <curve x1="179.08" x2="173.61" x3="173.61" y1="92.83" y2="81.14" y3="63.77"/> <close/> <move x="110.33" y="85.84"/> <curve x1="121.32" x2="126.68" x3="136.23" y1="92.63" y2="94.42" y3="94.42"/> <curve x1="142.12" x2="146.67" x3="147.41" y1="93.19" y2="89.87" y3="85.53"/> <curve x1="148" x2="145.97" x3="136.38" y1="80.68" y2="74.76" y3="70.51"/> <curve x1="129.07" x2="122.31" x3="116.46" y1="67.05" y2="65.94" y3="58.71"/> <curve x1="113.5" x2="110.95" x3="112.01" y1="54.6" y2="48.03" y3="36.96"/> <curve x1="113.88" x2="121.72" x3="137.14" y1="29.25" y2="21.16" y3="19.18"/> <curve x1="149.13" x2="154.89" x3="159.59" y1="19.18" y2="22.85" y3="27.3"/> <line x="159.59" y="39.56"/> <curve x1="154.15" x2="149.79" x3="140.06" y1="36.05" y2="32.65" y3="32.2"/> <curve x1="132.32" x2="128.28" x3="127.64" y1="32.13" y2="36.31" y3="41.09"/> <curve x1="129.67" x2="133.24" x3="137.14" y1="49.36" y2="51.26" y3="53.2"/> <curve x1="145.37" x2="150.92" x3="156.76" y1="58.01" y2="57.61" y3="63.31"/> <curve x1="164.54" x2="167.52" x3="161.36" y1="71.34" y2="81.03" y3="94.26"/> <curve x1="156.41" x2="146.53" x3="133.31" y1="102.88" y2="107.87" y3="107.9"/> <curve x1="127.62" x2="117.14" x3="110.33" y1="107.9" y2="105.11" y3="99.47"/> <close/> <move x="60.53" y="89.51"/> <curve x1="68.05" x2="78.13" x3="78.3" y1="94.51" y2="93.89" y3="86.76"/> <line x="78.3" y="21.4"/> <line x="94.09" y="21.4"/> <line x="94.09" y="89.21"/> <curve x1="92.82" x2="89.58" x3="83.82" y1="98.08" y2="102.96" y3="105.3"/> <curve x1="76.26" x2="68.64" x3="60.68" y1="107.16" y2="107.91" y3="103.31"/> <close/> </path> <fill/> <fillcolor color="#adadad"/> <path> <move x="362.55" y="113.88"/> <curve x1="370.12" x2="374.25" x3="374.04" y1="115.45" y2="113.13" y3="103.46"/> <line x="374.04" y="84.15"/> <curve x1="374.04" x2="383.45" x3="390.13" y1="70.39" y2="62.12" y3="61.17"/> <curve x1="384.05" x2="374.23" x3="374.35" y1="59.68" y2="57.81" y3="45.08"/> <line x="374.5" y="21.17"/> <curve x1="374.5" x2="371.68" x3="367.46" y1="16.87" y2="12.44" y3="12.44"/> <line x="362.55" y="12.44"/> <line x="362.55" y="0.95"/> <curve x1="370.88" x2="374.5" x3="378.95" y1="0" y2="0.95" y3="1.56"/> <curve x1="386.17" x2="388.47" x3="388.6" y1="2.99" y2="13.37" y3="19.33"/> <line x="389.06" y="44.31"/> <curve x1="389.06" x2="393.94" x3="401.78" y1="52.62" y2="54.66" y3="55.73"/> <line x="401.78" y="66.53"/> <curve x1="393.8" x2="388.91" x3="388.91" y1="66.99" y2="73.83" y3="85.84"/> <line x="388.91" y="109.13"/> <curve x1="388.91" x2="383.08" x3="376.04" y1="116.84" y2="124.04" y3="125.83"/> <curve x1="372.09" x2="367.71" x3="362.55" y1="126.31" y2="126.31" y3="124.76"/> <close/> <move x="37.85" y="125.98"/> <line x="27.99" y="125.98"/> <curve x1="21.76" x2="11.65" x3="11.65" y1="125.98" y2="118.28" y3="106.06"/> <line x="11.65" y="82.93"/> <curve x1="10.6" x2="10.14" x3="0" y1="76.33" y2="69.39" y3="67.14"/> <line x="0" y="55.96"/> <curve x1="8.8" x2="11.83" x3="11.65" y1="55.29" y2="48.9" y3="38.79"/> <line x="11.65" y="17.34"/> <curve x1="11.65" x2="18.01" x3="27.43" y1="9.16" y2="0.87" y3="0.87"/> <line x="37.85" y="0.87"/> <line x="37.85" y="11.21"/> <curve x1="32.34" x2="27.12" x3="27.12" y1="11.21" y2="13.46" y3="19.79"/> <line x="27.12" y="46.15"/> <curve x1="27.12" x2="19.04" x3="12.41" y1="53.46" y2="60.1" y3="61.78"/> <curve x1="22.51" x2="27.12" x3="27.12" y1="64.7" y2="71.37" y3="77.41"/> <line x="27.12" y="104.38"/> <curve x1="27.18" x2="30.92" x3="37.85" y1="112.44" y2="114.76" y3="114.19"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="249.08" name="Last.fm" strokewidth="inherit" w="415.09"> <connections/> <foreground> <path> <move x="221.31" y="197.81"/> <curve x1="200.6" x2="165.57" x3="123.84" y1="227.05" y2="246.86" y3="246.86"/> <curve x1="62" x2="0" x3="0" y1="246.86" y2="199.08" y3="123.85"/> <curve x1="0" x2="48.47" x3="125.12" y1="60.15" y2="0.88" y3="0.88"/> <curve x1="169.4" x2="212.92" x3="234.89" y1="0.88" y2="26.15" y3="72.31"/> <curve x1="250.43" x2="258.07" x3="278.35" y1="106.36" y2="134.38" y3="173.29"/> <curve x1="292.04" x2="312.05" x3="330.94" y1="203.52" y2="210.49" y3="210.66"/> <curve x1="351.16" x2="371.16" x3="377.83" y1="209.58" y2="198.4" y3="183.51"/> <curve x1="384.19" x2="380.08" x3="370.72" y1="169.5" y2="158.3" y3="148.21"/> <curve x1="364.09" x2="340.2" x3="325.49" y1="141.05" y2="132.63" y3="130.05"/> <curve x1="301.65" x2="266.85" x3="266.21" y1="125.15" y2="105.88" y3="63.36"/> <curve x1="266.53" x2="298.03" x3="325.57" y1="26.64" y2="1.99" y3="0.95"/> <curve x1="361.69" x2="380.87" x3="386.32" y1="0" y2="23.41" y3="38.74"/> <line x="359.78" y="51.86"/> <curve x1="354.46" x2="343.12" x3="323.58" y1="40.6" y2="29.03" y3="31.59"/> <curve x1="305.78" x2="295.8" x3="295.98" y1="34.94" y2="51.49" y3="64.75"/> <curve x1="298.64" x2="318.24" x3="326.5" y1="90.12" y2="96.55" y3="97.42"/> <curve x1="354.26" x2="383.92" x3="400.42" y1="99.28" y2="111.96" y3="133.02"/> <curve x1="413.34" x2="415.09" x3="405.98" y1="147.99" y2="173.12" y3="195.84"/> <curve x1="396.6" x2="376.88" x3="340.64" y1="218.31" y2="240.46" y3="245.06"/> <curve x1="297.22" x2="266.96" x3="252.15" y1="249.08" y2="223.8" y3="189.26"/> <curve x1="236.42" x2="220.67" x3="204.82" y1="157.32" y2="123.64" y3="81.87"/> <curve x1="196.96" x2="175.79" x3="119.59" y1="65.28" y2="31.91" y3="30.27"/> <curve x1="83.61" x2="34.44" x3="28.79" y1="31.61" y2="57.58" y3="120.69"/> <curve x1="29.4" x2="79.9" x3="124.16" y1="183.46" y2="218.63" y3="217.76"/> <curve x1="161.59" x2="190.47" x3="204.05" y1="216.34" y2="196" y3="170.73"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="399.54" name="Linkagogo" strokewidth="inherit" w="511.39"> <connections/> <foreground> <fillcolor color="#054f97"/> <path> <move x="250.94" y="348.55"/> <curve x1="335.17" x2="401.97" x3="401.97" y1="348.55" y2="285.61" y3="201.01"/> <curve x1="401.97" x2="341.44" x3="251.18" y1="122.68" y2="51.17" y3="51.17"/> <curve x1="171.85" x2="103.88" x3="103.88" y1="50.59" y2="118.21" y3="199.82"/> <curve x1="103.88" x2="178.25" x3="250.94" y1="286.76" y2="348.55" y3="348.55"/> <close/> <move x="250.55" y="399.54"/> <curve x1="143.74" x2="53.7" x3="53.7" y1="399.54" y2="310.3" y3="198.54"/> <curve x1="53.7" x2="146.74" x3="247.04" y1="88.14" y2="0.1" y3="0.1"/> <curve x1="362.67" x2="452.42" x3="452.42" y1="0.1" y2="89.18" y3="199.5"/> <curve x1="452.42" x2="369.22" x3="250.55" y1="303.45" y2="399.54" y3="399.54"/> <close/> </path> <fill/> <fillcolor color="#ec1c23"/> <path> <move x="0.1" y="348.33"/> <curve x1="87.6" x2="160.92" x3="160.92" y1="348.33" y2="278.58" y3="201.74"/> <curve x1="160.58" x2="152.95" x3="132.88" y1="169.01" y2="137.15" y3="111.94"/> <curve x1="143" x2="155.28" x3="168.99" y1="98.32" y2="86.5" y3="76.87"/> <curve x1="207.87" x2="219.33" x3="206.32" y1="128.02" y2="186.68" y3="243.28"/> <curve x1="176.19" x2="72.92" x3="0.26" y1="356.56" y2="399.51" y3="399.51"/> <curve x1="0.2" x2="0.14" x3="0.08" y1="398.71" y2="397.65" y3="396.4"/> <close/> <move x="0" y="0.45"/> <curve x1="50.72" x2="105.12" x3="131.7" y1="0" y2="19.89" y3="41.17"/> <curve x1="117.54" x2="103.71" x3="95.69" y1="52.03" y2="66.89" y3="77.27"/> <curve x1="69.02" x2="31.67" x3="0.15" y1="59.23" y2="51.49" y3="51.28"/> <close/> </path> <fill/> <fillcolor color="#3cac48"/> <path> <move x="340.27" y="321.17"/> <curve x1="318.66" x2="301.19" x3="299.9" y1="290.28" y2="254.89" y3="201.89"/> <curve x1="299.9" x2="398.57" x3="511.27" y1="84.9" y2="0.4" y3="0.4"/> <line x="511.29" y="50.84"/> <curve x1="441.35" x2="357.01" x3="350.69" y1="50.84" y2="94.79" y3="199.48"/> <curve x1="350.2" x2="362.2" x3="375.98" y1="239.63" y2="263.66" y3="285.38"/> <curve x1="366.35" x2="354.02" x3="340.27" y1="299.28" y2="311.64" y3="321.17"/> <close/> <move x="412.01" y="319.57"/> <curve x1="444.21" x2="479.28" x3="511.39" y1="341.08" y2="348.17" y3="348.17"/> <line x="511.31" y="398.98"/> <curve x1="455.9" x2="409.22" x3="376.22" y1="398.98" y2="380.76" y3="356.47"/> <curve x1="389.71" x2="401.54" x3="412.01" y1="345.8" y2="333.4" y3="319.57"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="302.98" name="LinkedIn" strokewidth="inherit" w="287.07"> <connections/> <foreground> <path> <move x="95.54" y="79.49"/> <line x="159.26" y="79.72"/> <line x="159.54" y="110.75"/> <curve x1="162.57" x2="181.37" x3="213.77" y1="89.14" y2="79.26" y3="79.49"/> <curve x1="252.85" x2="267.76" x3="275.99" y1="79.49" y2="95.18" y3="114.12"/> <curve x1="282.65" x2="286.68" x3="286.94" y1="129.87" y2="150.88" y3="170.91"/> <line x="287.07" y="302.78"/> <line x="223.16" y="302.78"/> <line x="223.03" y="172.68"/> <curve x1="223.03" x2="215.15" x3="192.11" y1="160.51" y2="143.31" y3="143.31"/> <curve x1="173.09" x2="159.35" x3="159.35" y1="143.31" y2="152.17" y3="176.03"/> <line x="159.45" y="302.74"/> <line x="95.54" y="302.98"/> <close/> <move x="31.62" y="63.91"/> <curve x1="16.22" x2="0.07" x3="0.07" y1="63.91" y2="52.27" y3="31.86"/> <curve x1="0.07" x2="12.74" x3="31.62" y1="14.86" y2="0" y3="0"/> <curve x1="53.43" x2="63.98" x3="63.98" y1="0" y2="18.1" y3="31.86"/> <curve x1="63.98" x2="47.9" x3="31.62" y1="50.94" y2="63.91" y3="63.91"/> <close/> <move x="0" y="302.95"/> <line x="0.14" y="79.53"/> <line x="63.87" y="79.72"/> <line x="64.05" y="302.8"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="342.97" name="Livejournal" strokewidth="inherit" w="320.12"> <connections/> <foreground> <fillcolor color="#ffffff"/> <path> <move x="193.5" y="140.85"/> <line x="204.79" y="237.17"/> <curve x1="226.69" x2="243.81" x3="256.77" y1="217.15" y2="199.41" y3="178.26"/> <curve x1="268" x2="272.75" x3="272.41" y1="159.66" y2="140.95" y3="122.48"/> <curve x1="270.18" x2="261.01" x3="239.06" y1="94.48" y2="84.13" y3="74.2"/> <curve x1="204.14" x2="169.58" x3="149.44" y1="59.22" y2="72.57" y3="82.84"/> <close/> <move x="69.92" y="151.42"/> <curve x1="55.74" x2="45.27" x3="39.18" y1="171.54" y2="193.83" y3="218.64"/> <curve x1="30.94" x2="42.92" x3="55.64" y1="260.56" y2="282.42" y3="295.65"/> <curve x1="77.06" x2="103.16" x3="124.98" y1="314.44" y2="319.37" y3="318.98"/> <curve x1="167.5" x2="204.38" x3="230.12" y1="315.64" y2="289.3" y3="264.66"/> <curve x1="263.76" x2="292.06" x3="300.46" y1="231.92" y2="191.4" y3="145.14"/> <curve x1="304.01" x2="306.03" x3="285.04" y1="119.39" y2="91.11" y3="62.88"/> <curve x1="267.42" x2="236.47" x3="203.31" y1="43.33" y2="31.62" y3="34.95"/> <curve x1="180.53" x2="156.7" x3="132.11" y1="37.4" y2="45.98" y3="58.97"/> <line x="146.05" y="77.66"/> <curve x1="168.67" x2="191.9" x3="211.25" y1="65.64" y2="58.08" y3="57.17"/> <curve x1="235.3" x2="260.4" x3="272.56" y1="56.76" y2="64.18" y3="83.86"/> <curve x1="284.37" x2="287.2" x3="270.87" y1="102.14" y2="132.84" y3="165.82"/> <curve x1="258.17" x2="232.8" x3="205.72" y1="193.7" y2="221.45" y3="241.39"/> <line x="205.98" y="246.23"/> <line x="108.76" y="204.02"/> <close/> <move x="0" y="216.31"/> <curve x1="7.33" x2="25.73" x3="48.45" y1="182.3" y2="150.61" y3="122.45"/> <line x="10.02" y="72.68"/> <curve x1="6.65" x2="5.43" x3="12.82" y1="67.66" y2="52.88" y3="40.49"/> <curve x1="26.8" x2="39.27" x3="70.71" y1="18.99" y2="8.58" y3="2.06"/> <curve x1="80.33" x2="91.54" x3="93.79" y1="0" y2="4.61" y3="7.77"/> <line x="127.86" y="53.83"/> <curve x1="147.28" x2="170.07" x3="210.79" y1="42.58" y2="27.03" y3="22.05"/> <curve x1="244.58" x2="273.18" x3="294.03" y1="18.2" y2="25.07" y3="48"/> <curve x1="320.12" x2="319.13" x3="312.94" y1="73.36" y2="111.14" y3="139.88"/> <curve x1="303.52" x2="279.21" x3="237.15" y1="184.6" y2="225.59" y3="269.13"/> <curve x1="201.61" x2="153.49" x3="81.8" y1="300.15" y2="342.97" y3="327.59"/> <curve x1="58.23" x2="26.59" x3="27.33" y1="321.46" y2="299.61" y3="253.19"/> <curve x1="27.29" x2="36.65" x3="66.5" y1="218.3" y2="179.05" y3="147.25"/> <line x="50.67" y="125.93"/> <curve x1="36.13" x2="10.22" x3="3.85" y1="142.59" y2="179.37" y3="216.21"/> <close/> </path> <fill/> <fillcolor color="#41577d"/> <path> <move x="112.84" y="198.35"/> <line x="15.21" y="68.13"/> <curve x1="12.75" x2="12.92" x3="16.01" y1="65.48" y2="54.73" y3="48.16"/> <curve x1="18.4" x2="27.36" x3="40.3" y1="41.21" y2="30.27" y3="19.88"/> <curve x1="50.94" x2="80.26" x3="88.87" y1="13.31" y2="2.96" y3="12.21"/> <line x="187.14" y="142.35"/> <line x="198.8" y="236.06"/> <close/> </path> <fill/> <fillcolor color="#fdd4ae"/> <path> <move x="172.9" y="214.39"/> <line x="122.97" y="191.98"/> <curve x1="132.81" x2="135.02" x3="134.06" y1="177.87" y2="164.82" y3="152.21"/> <curve x1="151.08" x2="164.47" x3="176.39" y1="156.86" y2="152.98" y3="145.63"/> <line x="184.77" y="204.66"/> <curve x1="180.65" x2="175.45" x3="172.9" y1="205.24" y2="209.29" y3="214.39"/> <close/> </path> <fill/> <fillcolor color="#8eb3d7"/> <path> <move x="118.03" y="188.28"/> <line x="52.12" y="99.68"/> <curve x1="56.31" x2="62.49" x3="72.18" y1="89.71" y2="79.76" y3="73.88"/> <line x="123.46" y="142.98"/> <curve x1="132.83" x2="127.18" x3="118.03" y1="159.86" y2="177.83" y3="188.28"/> <close/> </path> <fill/> <fillcolor color="#bddaf1"/> <path> <move x="108.45" y="55.11"/> <line x="172.49" y="140.86"/> <curve x1="165.11" x2="137.93" x3="128.23" y1="148.72" y2="152.16" y3="141.57"/> <line x="75.21" y="71.08"/> <curve x1="83" x2="95.39" x3="108.45" y1="63.11" y2="57.35" y3="55.11"/> <close/> </path> <fill/> <fillcolor color="#deddde"/> <path> <move x="45.41" y="91.14"/> <line x="33.11" y="75.16"/> <curve x1="38.62" x2="46.56" x3="56.76" y1="60.95" y2="50.71" y3="44.16"/> <curve x1="71.66" x2="80.49" x3="89.99" y1="34.34" y2="31.68" y3="29.46"/> <line x="102.61" y="46.88"/> <curve x1="94.05" x2="81.95" x3="70.5" y1="49.21" y2="52.63" y3="60.62"/> <curve x1="57.48" x2="49.62" x3="45.41" y1="70.61" y2="82.17" y3="91.14"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="73.05" y="58.86"/> <line x="59.23" y="42.48"/> <curve x1="65.88" x2="72.56" x3="81.28" y1="38.54" y2="34.61" y3="31.7"/> <line x="93.51" y="49.43"/> <curve x1="86.49" x2="79.72" x3="73.05" y1="51.58" y2="54.98" y3="58.86"/> <close/> </path> <fill/> <fillcolor color="#fac5c5"/> <path> <move x="25.92" y="67.81"/> <curve x1="21.76" x2="33.12" x3="46.21" y1="52.6" y2="35.73" y3="27.86"/> <curve x1="61.78" x2="72.98" x3="85.2" y1="19.17" y2="16.77" y3="21.79"/> <curve x1="78.29" x2="66.37" x3="49.25" y1="22.09" y2="24.1" y3="36.49"/> <curve x1="37.19" x2="26.9" x3="25.92" y1="44.91" y2="60.42" y3="67.81"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="393.52" name="Mail.ru" strokewidth="inherit" w="406.39"> <connections/> <foreground> <fillcolor color="#f79d1d"/> <path> <move x="195.49" y="272.08"/> <curve x1="237.73" x2="273.79" x3="273.79" y1="272.08" y2="240.44" y3="194.36"/> <curve x1="273.79" x2="239.58" x3="197.67" y1="153.79" y2="119.07" y3="119.07"/> <curve x1="153.38" x2="121.31" x3="121.31" y1="119.07" y2="157.79" y3="193.04"/> <curve x1="121.31" x2="162.17" x3="195.49" y1="243.14" y2="272.08" y3="272.08"/> <close/> <move x="278.49" y="348.2"/> <curve x1="282.56" x2="280.07" x3="270.75" y1="360.18" y2="366.34" y3="372.3"/> <curve x1="234.7" x2="157.73" x3="97.89" y1="393.52" y2="391.49" y3="358.56"/> <curve x1="46.49" x2="1.16" x3="0" y1="330.33" y2="274.32" y3="188.46"/> <curve x1="0" x2="64.78" x3="202.28" y1="107.5" y2="0" y3="0"/> <curve x1="350.96" x2="406.39" x3="406.39" y1="0" y2="118.32" y3="188.37"/> <curve x1="406.39" x2="392.35" x3="362.9" y1="234.66" y2="283.05" y3="314.17"/> <curve x1="349.28" x2="328.9" x3="305.41" y1="329.51" y2="336.42" y3="326.4"/> <curve x1="289.99" x2="274.3" x3="276.35" y1="320.5" y2="304.66" y3="275.91"/> <curve x1="251.2" x2="215.76" x3="169.66" y1="302.25" y2="315.25" y3="305.16"/> <curve x1="115.89" x2="82.55" x3="82.55" y1="294.03" y2="243.09" y3="195.11"/> <curve x1="82.55" x2="144.3" x3="194.93" y1="122.43" y2="78.77" y3="78.77"/> <curve x1="233.68" x2="261.04" x3="276.2" y1="78.77" y2="98.88" y3="113.27"/> <curve x1="278.9" x2="283.4" x3="297.6" y1="104.22" y2="95.3" y3="95.49"/> <curve x1="307.84" x2="314.25" x3="313.96" y1="95.49" y2="102.23" y3="115.04"/> <line x="313.96" y="278.24"/> <curve x1="319.05" x2="326.88" x3="332.63" y1="286.57" y2="285.91" y3="280.49"/> <curve x1="346.61" x2="355.81" x3="360.18" y1="266.35" y2="246.16" y3="216.28"/> <curve x1="366.26" x2="352.81" x3="298.85" y1="172.87" y2="110.96" y3="73.33"/> <curve x1="225.23" x2="149.79" x3="98.34" y1="26.87" y2="36.18" y3="78.69"/> <curve x1="57.9" x2="31.78" x3="53.23" y1="113.51" y2="176.39" y3="239.35"/> <curve x1="67.41" x2="99.58" x3="148.11" y1="286.88" y2="318.16" y3="334.66"/> <curve x1="193.96" x2="224.07" x3="254.35" y1="349.36" y2="341.81" y3="334.48"/> <curve x1="267.23" x2="273.49" x3="278.49" y1="332.48" y2="334.83" y3="348.2"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="241.17" name="MathOverflow" strokewidth="inherit" w="295.35"> <connections/> <foreground> <path> <move x="223.64" y="185.46"/> <line x="241.14" y="185.46"/> <line x="241.14" y="241.17"/> <line x="0" y="241.17"/> <line x="0" y="0"/> <line x="241.14" y="0"/> <line x="241.14" y="56.78"/> <line x="223.64" y="56.78"/> <line x="223.64" y="17.16"/> <line x="17.22" y="17.16"/> <line x="17.22" y="223.55"/> <line x="223.64" y="223.55"/> <close/> </path> <fill/> <fillcolor color="#000000"/> <path> <move x="228.66" y="149.79"/> <curve x1="238.7" x2="243.16" x3="247.01" y1="149.79" y2="146.75" y3="140.91"/> <curve x1="253.43" x2="257.68" x3="257.9" y1="131.41" y2="116.74" y3="105.76"/> <curve x1="257.52" x2="257.56" x3="246.96" y1="96.88" y2="90.2" y3="87.91"/> <curve x1="239.15" x2="232.08" x3="224.47" y1="86.43" y2="87.48" y3="103.14"/> <curve x1="221.29" x2="220.14" x3="217.77" y1="110.83" y2="114.44" y3="132.33"/> <curve x1="216.68" x2="221.41" x3="228.66" y1="141.92" y2="149.79" y3="149.79"/> <close/> <move x="227.05" y="165.04"/> <curve x1="216.43" x2="200.09" x3="193.01" y1="165.04" y2="159.74" y3="148.44"/> <curve x1="187.34" x2="186.13" x3="190.76" y1="139.56" y2="123.56" y3="110.57"/> <curve x1="198.17" x2="206.38" x3="217.17" y1="92.64" y2="85.63" y3="78.77"/> <curve x1="230.25" x2="257.15" x3="272.99" y1="71.81" y2="70.08" y3="80.46"/> <curve x1="295.35" x2="285.23" x3="278.7" y1="96.59" y2="124.72" y3="136.87"/> <curve x1="269.48" x2="253.36" x3="227.05" y1="153.61" y2="164.18" y3="165.04"/> <close/> <move x="34.3" y="162.56"/> <line x="34.3" y="157.33"/> <curve x1="37.42" x2="39.02" x3="40.61" y1="157.42" y2="157.13" y3="156.84"/> <curve x1="43.96" x2="45.64" x3="45.64" y1="156.02" y2="154.36" y3="151.86"/> <line x="45.54" y="89.98"/> <line x="33.85" y="89.98"/> <line x="33.85" y="85.34"/> <curve x1="42.11" x2="48.05" x3="53.03" y1="82.11" y2="80.3" y3="79.03"/> <line x="60.38" y="79.03"/> <line x="60.38" y="88.1"/> <curve x1="67.78" x2="78.4" x3="87.5" y1="83.01" y2="78.15" y3="77.5"/> <curve x1="97.23" x2="104.92" x3="107.17" y1="76.94" y2="84.63" y3="89.63"/> <curve x1="115.15" x2="122.82" x3="129.36" y1="85.07" y2="81.06" y3="78.98"/> <curve x1="134.71" x2="141.05" x3="149.43" y1="77.49" y2="77.01" y3="81.2"/> <curve x1="157.25" x2="159.1" x3="159.57" y1="85.74" y2="94.33" y3="100.82"/> <line x="159.57" y="150.93"/> <curve x1="159.59" x2="161.47" x3="164.66" y1="154.9" y2="155.84" y3="156.49"/> <line x="171.41" y="157.74"/> <line x="171.41" y="162.56"/> <line x="134.57" y="162.56"/> <line x="134.57" y="157.47"/> <curve x1="137.14" x2="139.75" x3="142.13" y1="157.43" y2="157.5" y3="156.52"/> <curve x1="144.76" x2="145.93" x3="145.93" y1="155.18" y2="153.73" y3="151.16"/> <line x="145.93" y="106.71"/> <curve x1="145.93" x2="143.49" x3="129.02" y1="100.34" y2="87.71" y3="88.74"/> <curve x1="122.38" x2="117.49" x3="109.93" y1="89.34" y2="90.72" y3="94.82"/> <line x="109.93" y="151.21"/> <curve x1="109.93" x2="110.98" x3="113.79" y1="154.73" y2="155.53" y3="156.48"/> <curve x1="116.71" x2="118.69" x3="121.23" y1="157.21" y2="157.38" y3="157.57"/> <line x="121.23" y="162.56"/> <line x="83.79" y="162.56"/> <line x="83.79" y="157.68"/> <curve x1="87.08" x2="88.67" x3="90.34" y1="157.67" y2="157.29" y3="156.92"/> <curve x1="93.25" x2="95.71" x3="95.71" y1="156.38" y2="154.97" y3="151.76"/> <line x="95.71" y="107.68"/> <curve x1="95.71" x2="93.18" x3="80.1" y1="98.95" y2="89.45" y3="88.74"/> <curve x1="73.37" x2="68.29" x3="60.38" y1="88.47" y2="90.96" y3="94.46"/> <line x="60.38" y="151.07"/> <curve x1="60.38" x2="61.88" x3="64.13" y1="155.15" y2="155.84" y3="156.29"/> <curve x1="66.98" x2="68.92" x3="70.96" y1="157.13" y2="157.33" y3="157.33"/> <line x="70.96" y="162.56"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="149.83" name="Meetup" strokewidth="inherit" w="373.85"> <connections/> <foreground> <path> <move x="329.38" y="98.78"/> <curve x1="337.18" x2="343.7" x3="347.35" y1="99.56" y2="93.95" y3="88.71"/> <curve x1="353.4" x2="354.81" x3="355.26" y1="79.23" y2="73.88" y3="65.3"/> <curve x1="355.64" x2="354.53" x3="348.71" y1="59.92" y2="50.74" y3="50.61"/> <curve x1="343.21" x2="339.33" x3="337.05" y1="50.42" y2="57.07" y3="61.71"/> <curve x1="331.5" x2="330.35" x3="329.38" y1="73.42" y2="87.46" y3="98.78"/> <close/> <move x="255.84" y="60.53"/> <curve x1="260.94" x2="266.46" x3="269.96" y1="62.02" y2="64.16" y3="67.39"/> <curve x1="273.55" x2="274.28" x3="273.93" y1="71.2" y2="77.84" y3="81.73"/> <curve x1="273.05" x2="272.16" x3="272.91" y1="89.5" y2="94.48" y3="100.68"/> <curve x1="273.67" x2="275.99" x3="279.28" y1="105.32" y2="107.17" y3="107.3"/> <curve x1="281.73" x2="286.8" x3="289.64" y1="107.32" y2="104.16" y3="97.33"/> <curve x1="293.12" x2="294.3" x3="289.57" y1="87.3" y2="75.54" y3="63.87"/> <curve x1="297.32" x2="302.42" x3="304.51" y1="64.22" y2="66.98" y3="74.78"/> <curve x1="306.01" x2="303.62" x3="302.1" y1="81.3" y2="89.17" y3="92.26"/> <curve x1="306.86" x2="311.11" x3="317.73" y1="95.57" y2="97.94" y3="98.08"/> <curve x1="318.46" x2="319.94" x3="322.05" y1="84.45" y2="75.66" y3="64.7"/> <curve x1="324.57" x2="328.75" x3="338.27" y1="54.46" y2="47.14" y3="42.33"/> <curve x1="345.56" x2="357.33" x3="364.34" y1="39.17" y2="39.36" y3="44.23"/> <curve x1="373.85" x2="371.26" x3="368.07" y1="52.23" y2="67.99" y3="75.6"/> <curve x1="363.01" x2="359.31" x3="350.07" y1="87.72" y2="92.52" y3="98.59"/> <curve x1="345.6" x2="336.98" x3="329.1" y1="101.04" y2="102.08" y3="102.09"/> <curve x1="328.1" x2="329.17" x3="329.38" y1="115.22" y2="133.42" y3="149.78"/> <line x="316.92" y="149.83"/> <curve x1="316.57" x2="316" x3="317.72" y1="137.1" y2="112.8" y3="98.76"/> <curve x1="304.72" x2="303.81" x3="299.75" y1="97.95" y2="100.15" y3="98.44"/> <curve x1="295.07" x2="288.28" x3="279.53" y1="107.3" y2="115.45" y3="118.47"/> <curve x1="273.37" x2="265.06" x3="260.88" y1="120.23" y2="118.76" y3="108.31"/> <curve x1="259.56" x2="259.4" x3="259.62" y1="104.98" y2="99.72" y3="94.27"/> <curve x1="259.89" x2="260.01" x3="255.84" y1="82.46" y2="71.54" y3="60.53"/> <close/> <move x="220.36" y="122.56"/> <line x="216.1" y="77.93"/> <line x="199.8" y="75.61"/> <line x="203.27" y="65.23"/> <line x="220.53" y="65.11"/> <curve x1="218.86" x2="216.94" x3="214.98" y1="41.74" y2="20.69" y3="0"/> <line x="226.35" y="7.29"/> <curve x1="228.34" x2="229.53" x3="230.64" y1="27.65" y2="46.4" y3="64.99"/> <line x="242.14" y="65.15"/> <line x="244.54" y="74.65"/> <line x="227.12" y="74.81"/> <curve x1="228.46" x2="229.62" x3="230.75" y1="88.84" y2="105.47" y3="122.67"/> <close/> <move x="150.58" y="90.92"/> <curve x1="145.21" x2="139.5" x3="133.92" y1="89.05" y2="86.14" y3="80"/> <curve x1="126.36" x2="117.52" x3="107.85" y1="83.46" y2="86.56" y3="89.42"/> <curve x1="109.53" x2="109.92" x3="115.11" y1="98.14" y2="103.13" y3="109.15"/> <curve x1="119.91" x2="124.77" x3="135.77" y1="113.73" y2="113.49" y3="113.12"/> <curve x1="145.75" x2="152.01" x3="156.4" y1="112.63" y2="110.29" y3="107.34"/> <curve x1="153.77" x2="150.88" x3="150.58" y1="103.06" y2="96.87" y3="90.92"/> <close/> <move x="161.91" y="81.94"/> <curve x1="170.1" x2="173.82" x3="180.95" y1="80.54" y2="79.24" y3="74.27"/> <curve x1="185" x2="186.84" x3="185.58" y1="71.19" y2="67.22" y3="60.75"/> <curve x1="183.81" x2="179.37" x3="173.89" y1="55.08" y2="51.73" y3="51.26"/> <curve x1="170.22" x2="168.13" x3="165.09" y1="51.09" y2="52.44" y3="60.24"/> <curve x1="162.59" x2="162.27" x3="161.91" y1="66.97" y2="73.43" y3="81.94"/> <close/> <move x="107.66" y="83.08"/> <curve x1="117.02" x2="122.41" x3="127.31" y1="81.02" y2="78.43" y3="75.77"/> <curve x1="130.36" x2="132.87" x3="133.83" y1="73.91" y2="71.21" y3="66.2"/> <curve x1="134.39" x2="133.42" x3="127.25" y1="61.62" y2="57.2" y3="53.36"/> <curve x1="120.27" x2="116.32" x3="112.08" y1="50.13" y2="51.23" y3="56.31"/> <curve x1="106.81" x2="107.19" x3="107.66" y1="63.92" y2="73.98" y3="83.08"/> <close/> <move x="1.43" y="115.87"/> <curve x1="2.54" x2="4.64" x3="1.59" y1="102.87" y2="90.18" y3="71.06"/> <curve x1="0.53" x2="0" x3="0.64" y1="64.01" y2="56.5" y3="47.97"/> <curve x1="0.96" x2="1.92" x3="2.87" y1="43.63" y2="42.49" y3="41.26"/> <curve x1="4.57" x2="6.1" x3="7.59" y1="39.62" y2="38.99" y3="38.62"/> <curve x1="10.31" x2="13.03" x3="13.98" y1="38.25" y2="40.06" y3="41.7"/> <curve x1="21.91" x2="33.9" x3="42.82" y1="59.88" y2="76.73" y3="93.27"/> <curve x1="43.93" x2="44.86" x3="46.33" y1="78.44" y2="63.3" y3="50.84"/> <curve x1="46.92" x2="47.86" x3="49.77" y1="45.76" y2="41.55" y3="38.95"/> <curve x1="52.21" x2="55.67" x3="58.77" y1="35.62" y2="31.6" y3="29.96"/> <curve x1="62.44" x2="66.14" x3="67.23" y1="28.29" y2="29.12" y3="31.09"/> <curve x1="72.31" x2="78.33" x3="82.72" y1="40.41" y2="71.04" y3="91.19"/> <line x="97.22" y="86"/> <curve x1="96.5" x2="97.2" x3="98.82" y1="77.7" y2="70.17" y3="63.15"/> <curve x1="100.63" x2="105.8" x3="111.14" y1="55.1" y2="47.21" y3="41.58"/> <curve x1="115.6" x2="122.49" x3="130.35" y1="37.75" y2="35.91" y3="39.31"/> <curve x1="142.9" x2="143.74" x3="142.16" y1="46.92" y2="64.09" y3="68.79"/> <curve x1="140.95" x2="141.02" x3="142.51" y1="73.29" y2="75.37" y3="77.48"/> <curve x1="144.82" x2="146.95" x3="149.11" y1="80.58" y2="81.11" y3="82.22"/> <curve x1="148.41" x2="150.38" x3="153.06" y1="72.25" y2="64.46" y3="57.24"/> <curve x1="156.33" x2="160.82" x3="166.96" y1="49.52" y2="43.25" y3="38.94"/> <curve x1="170.63" x2="179.17" x3="185.38" y1="36.72" y2="36.52" y3="41.14"/> <curve x1="193.58" x2="196" x3="194.97" y1="48.78" y2="56.9" y3="64.83"/> <curve x1="193.89" x2="192.39" x3="183.22" y1="72.49" y2="76.74" y3="81.6"/> <curve x1="178.95" x2="166.4" x3="161.54" y1="83.55" y2="87.65" y3="88.87"/> <curve x1="161.47" x2="162.01" x3="165.09" y1="96.94" y2="101.23" y3="107.09"/> <curve x1="170.12" x2="178.42" x3="187.17" y1="114.02" y2="113.82" y3="113.08"/> <curve x1="203.69" x2="206.81" x3="210.65" y1="111.48" y2="109.05" y3="106.03"/> <curve x1="209.45" x2="198.7" x3="191.65" y1="111.26" y2="117.49" y3="120.59"/> <curve x1="185.09" x2="179.33" x3="171.68" y1="123.08" y2="124.16" y3="121.47"/> <curve x1="166.84" x2="162.15" x3="157.42" y1="119.61" y2="115.66" y3="109.12"/> <curve x1="152.3" x2="139.96" x3="127.46" y1="113.53" y2="122.06" y3="122.71"/> <curve x1="120.83" x2="113.38" x3="107.81" y1="122.67" y2="119.57" y3="112.12"/> <curve x1="103.1" x2="100.68" x3="98.5" y1="105.65" y2="100.08" y3="92.39"/> <line x="85.8" y="96.82"/> <curve x1="87.76" x2="88.67" x3="89.27" y1="102.69" y2="106.73" y3="110.84"/> <line x="78.53" y="110.72"/> <curve x1="77.41" x2="76.14" x3="73.97" y1="102.62" y2="94.24" y3="84.24"/> <curve x1="72.19" x2="69.77" x3="65.94" y1="76.43" y2="63.97" y3="58.59"/> <curve x1="63.96" x2="62.27" x3="61.47" y1="56.09" y2="56.61" y3="59.55"/> <curve x1="59.98" x2="60.06" x3="60.12" y1="65.92" y2="71.44" y3="79.14"/> <curve x1="60.02" x2="59.48" x3="58.2" y1="87.37" y2="99.56" y3="104.65"/> <curve x1="57.22" x2="53.58" x3="50.45" y1="108.49" y2="111.34" y3="111.32"/> <curve x1="46.1" x2="42.52" x3="39.18" y1="111.08" y2="108.79" y3="105.01"/> <curve x1="33.39" x2="33.39" x3="29.12" y1="97.46" y2="93.82" y3="88.55"/> <curve x1="25.4" x2="21.12" x3="16.97" y1="83.67" y2="79.41" y3="76.97"/> <curve x1="18.9" x2="23.94" x3="22.6" y1="82.93" y2="106.73" y3="112.12"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="337.22" name="Meneame" strokewidth="inherit" w="379.01"> <connections/> <foreground> <fillcolor color="#f16421"/> <path> <move x="228.36" y="329.71"/> <curve x1="242.52" x2="254.08" x3="266.45" y1="322.52" y2="319.63" y3="313.58"/> <curve x1="281.72" x2="283.13" x3="288.83" y1="305.92" y2="305.93" y3="300.38"/> <curve x1="294.52" x2="295.3" x3="293.14" y1="294.43" y2="290.8" y3="285.76"/> <curve x1="287.32" x2="271.47" x3="262.01" y1="274.95" y2="235.23" y3="203.76"/> <curve x1="258.43" x2="255.48" x3="254.68" y1="191.89" y2="176.87" y3="158.69"/> <curve x1="255.06" x2="262.72" x3="282.42" y1="136.81" y2="124.27" y3="112.6"/> <curve x1="300.27" x2="318.93" x3="332.29" y1="103.01" y2="94" y3="87.92"/> <curve x1="355.92" x2="363.99" x3="364.91" y1="75.76" y2="62.58" y3="45.05"/> <curve x1="366.34" x2="364.81" x3="361.44" y1="22.11" y2="14.94" y3="0.07"/> <curve x1="370.45" x2="379.01" x3="373.96" y1="15.63" y2="32.03" y3="51.71"/> <curve x1="368.01" x2="352.5" x3="333.32" y1="73.38" y2="88.46" y3="98.34"/> <curve x1="316.31" x2="299.92" x3="288.16" y1="106.62" y2="114.9" y3="123.18"/> <curve x1="271.79" x2="263.53" x3="269.2" y1="134.7" y2="153.81" y3="177"/> <curve x1="276.37" x2="295.54" x3="305.84" y1="207.99" y2="245.52" y3="276.17"/> <curve x1="311.71" x2="307.36" x3="298.81" y1="294.86" y2="304.83" y3="311.96"/> <curve x1="290.63" x2="280.79" x3="263.66" y1="318.29" y2="324.24" y3="328.58"/> <curve x1="253.26" x2="242.35" x3="228.47" y1="330.79" y2="332.76" y3="333.24"/> <curve x1="224.63" x2="224.76" x3="228.36" y1="333.39" y2="331.42" y3="329.71"/> <close/> <move x="198.18" y="156.9"/> <curve x1="189.89" x2="176.66" x3="144.39" y1="160.61" y2="170.42" y3="168.72"/> <curve x1="125.32" x2="102.37" x3="90.46" y1="166.73" y2="155.23" y3="127.9"/> <curve x1="81.89" x2="75.51" x3="90.7" y1="106.68" y2="76.15" y3="50.27"/> <curve x1="100.93" x2="126.16" x3="156.93" y1="33.76" y2="13.26" y3="7.1"/> <curve x1="195.21" x2="228.4" x3="254.31" y1="0" y2="6.26" y3="18.95"/> <curve x1="273.92" x2="290.14" x3="305.36" y1="27.46" y2="38.09" y3="40.23"/> <curve x1="313.97" x2="318.04" x3="323.1" y1="41.09" y2="39.32" y3="34.59"/> <curve x1="329.54" x2="329.43" x3="330.2" y1="28.06" y2="20.77" y3="11.35"/> <curve x1="332.66" x2="336.77" x3="330.63" y1="20.33" y2="31.33" y3="41.67"/> <curve x1="319.81" x2="303.29" x3="291.35" y1="53.82" y2="53.31" y3="49"/> <curve x1="260.51" x2="238.43" x3="215.09" y1="38.49" y2="23.8" y3="21.16"/> <curve x1="195.38" x2="172.41" x3="147.08" y1="18.14" y2="16.88" y3="25.07"/> <curve x1="120.31" x2="99.35" x3="99.26" y1="31.99" y2="53.83" y3="89.66"/> <curve x1="99.45" x2="123.98" x3="146.7" y1="124.6" y2="155.41" y3="160.49"/> <curve x1="169.13" x2="184.94" x3="198.18" y1="163.14" y2="160.96" y3="156.9"/> <close/> <move x="216.03" y="334.44"/> <curve x1="217.05" x2="219.33" x3="218.96" y1="310.96" y2="297.54" y3="275.64"/> <curve x1="218.95" x2="219.23" x3="209.56" y1="265.64" y2="262.75" y3="259.07"/> <curve x1="192.1" x2="164.76" x3="137.9" y1="253.36" y2="252.14" y3="251.58"/> <curve x1="161.4" x2="189.97" x3="225.05" y1="249.47" y2="243.06" y3="251.1"/> <curve x1="230.88" x2="231.61" x3="231.67" y1="253.03" y2="257.99" y3="261.35"/> <curve x1="231.18" x2="228.21" x3="225.31" y1="277.41" y2="296.27" y3="312.64"/> <curve x1="222.75" x2="221.37" x3="216.03" y1="324.41" y2="331.9" y3="334.44"/> <close/> <move x="207.52" y="329.88"/> <curve x1="211.01" x2="210.12" x3="207.42" y1="331.4" y2="332.84" y3="333.05"/> <curve x1="177.06" x2="146.18" x3="112.1" y1="335.46" y2="337.22" y3="334.91"/> <curve x1="73.36" x2="38.58" x3="16.49" y1="332.52" y2="320.59" y3="283.84"/> <curve x1="0" x2="7.84" x3="20.68" y1="254.78" y2="216.02" y3="185.46"/> <curve x1="31.72" x2="59.08" x3="80.29" y1="159.54" y2="130.18" y3="112.4"/> <curve x1="62.7" x2="42.69" x3="31.56" y1="138.65" y2="167.75" y3="199.53"/> <curve x1="12.48" x2="29.93" x3="53.53" y1="255.87" y2="282.83" y3="299.1"/> <curve x1="85.07" x2="138.46" x3="188.24" y1="321.14" y2="324.76" y3="327.3"/> <curve x1="195.95" x2="202.33" x3="207.52" y1="327.78" y2="328.65" y3="329.88"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="383.9" name="Messenger" strokewidth="inherit" w="412.7"> <connections/> <foreground> <fillcolor color="#468760"/> <path> <move x="111.9" y="288.07"/> <curve x1="94.68" x2="79.46" x3="54.48" y1="287.59" y2="287.95" y3="282.58"/> <curve x1="44.98" x2="35.62" x3="28.03" y1="280" y2="276.68" y3="269.57"/> <curve x1="25.22" x2="22.34" x3="21.6" y1="266.9" y2="264.07" y3="258.93"/> <curve x1="15.32" x2="7.64" x3="3.53" y1="257.8" y2="252.74" y3="243.42"/> <curve x1="0" x2="1.37" x3="7.73" y1="235.51" y2="212.01" y3="195.91"/> <curve x1="17.19" x2="35.9" x3="70.63" y1="172.44" y2="151.44" y3="136.42"/> <curve x1="58.54" x2="48.17" x3="48.43" y1="125.79" y2="112.31" y3="88.38"/> <curve x1="48.43" x2="70.22" x3="106.73" y1="64.83" y2="34.36" y3="34.36"/> <curve x1="130.6" x2="161.73" x3="161.73" y1="34.36" y2="54.2" y3="91.92"/> <curve x1="161.75" x2="150.37" x3="140.62" y1="111.98" y2="128" y3="135.51"/> <curve x1="159.64" x2="170.43" x3="189.22" y1="143.6" y2="150.77" y3="169.3"/> <close/> </path> <fill/> <fillcolor color="#a1d06c"/> <path> <move x="107.58" y="284.62"/> <curve x1="94.44" x2="79.64" x3="65.27" y1="284.22" y2="283.5" y3="280.84"/> <curve x1="49.37" x2="42.1" x3="33.42" y1="277.7" y2="275.37" y3="269.33"/> <curve x1="28.03" x2="25.28" x3="25.46" y1="265.02" y2="262.11" y3="254.99"/> <curve x1="19.62" x2="8.29" x3="5.71" y1="255.53" y2="249.43" y3="238.75"/> <curve x1="3.23" x2="6.54" x3="12.97" y1="226.58" y2="207.77" y3="194.52"/> <curve x1="25.85" x2="34.02" x3="43.22" y1="168.79" y2="162.46" y3="155.79"/> <curve x1="59.46" x2="70.76" x3="80.57" y1="144.51" y2="140.01" y3="137.55"/> <curve x1="69.33" x2="52.71" x3="52.15" y1="132.95" y2="117.76" y3="89.71"/> <curve x1="52.15" x2="74.18" x3="105.82" y1="65.75" y2="38.53" y3="38.53"/> <curve x1="130.35" x2="157.77" x3="157.77" y1="38.53" y2="59.53" y3="92.77"/> <curve x1="157.77" x2="144.81" x3="129.77" y1="112.57" y2="130.99" y3="137.77"/> <curve x1="151.87" x2="170.54" x3="183.21" y1="141.77" y2="155.28" y3="169.24"/> <close/> </path> <fill/> <fillcolor color="#134678"/> <path> <move x="128.73" y="336.85"/> <curve x1="117.69" x2="107.83" x3="102.77" y1="334.51" y2="326.75" y3="316.23"/> <curve x1="96.24" x2="96.74" x3="104.97" y1="303.94" y2="276.81" y3="250.31"/> <curve x1="116.04" x2="134.71" x3="149.71" y1="218.37" y2="197.5" y3="184.35"/> <curve x1="168.97" x2="188.52" x3="202.43" y1="168.61" y2="159.27" y3="152.8"/> <curve x1="181.79" x2="169.82" x3="168.75" y1="137.15" y2="113.25" y3="85.19"/> <curve x1="168.75" x2="211.44" x3="255.4" y1="35.38" y2="0" y3="0"/> <curve x1="295.18" x2="339.12" x3="339.12" y1="0" y2="34.05" y3="86.99"/> <curve x1="339.12" x2="327.66" x3="306.47" y1="109.32" y2="135.31" y3="151.96"/> <curve x1="334.31" x2="358.98" x3="379.46" y1="162.68" y2="178.95" y3="202.35"/> <curve x1="399.09" x2="412.7" x3="412.31" y1="226.98" y2="260.71" y3="295.86"/> <curve x1="410.8" x2="401.15" x3="382.79" y1="316.76" y2="330.04" y3="336.36"/> <curve x1="376.73" x2="350.86" x3="330.14" y1="357.31" y2="366.32" y3="372.55"/> <curve x1="284.36" x2="230.34" x3="181.63" y1="383.9" y2="382.73" y3="373.54"/> <curve x1="159.83" x2="130.3" x3="128.73" y1="369.24" y2="355.16" y3="336.85"/> <close/> </path> <fill/> <fillcolor color="#80cef1"/> <path> <move x="134.18" y="331.32"/> <curve x1="126.27" x2="109.43" x3="105.25" y1="331.36" y2="323.26" y3="307.98"/> <curve x1="101.99" x2="102.45" x3="111.27" y1="296.42" y2="273.26" y3="251.68"/> <curve x1="123.67" x2="139.93" x3="154.42" y1="217.34" y2="199.8" y3="187.56"/> <curve x1="170.94" x2="195.57" x3="216.48" y1="173.58" y2="159.97" y3="155.12"/> <curve x1="197.59" x2="173.02" x3="174.96" y1="145.31" y2="121.25" y3="84.06"/> <curve x1="174.96" x2="211.15" x3="256.42" y1="41.04" y2="6.67" y3="6.67"/> <curve x1="296.79" x2="332.68" x3="332.68" y1="6.67" y2="42.12" y3="87.22"/> <curve x1="332.68" x2="311.75" x3="291.67" y1="119.81" y2="145.16" y3="154.67"/> <curve x1="327.47" x2="354.77" x3="373.13" y1="164.24" y2="183.69" y3="204.95"/> <curve x1="390.53" x2="405.79" x3="406.85" y1="226.68" y2="258.66" y3="292.68"/> <curve x1="406.85" x2="391.05" x3="376.63" y1="320.22" y2="329.33" y3="331.17"/> <curve x1="375.28" x2="369.53" x3="350.68" y1="346.88" y2="351.18" y3="359.74"/> <curve x1="320.87" x2="267.88" x3="222.41" y1="373.23" y2="377.49" y3="373.29"/> <curve x1="195.26" x2="175.59" x3="154.23" y1="370.69" y2="368.28" y3="357.41"/> <curve x1="143.38" x2="133.82" x3="134.18" y1="351.28" y2="344.22" y3="331.32"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="324" name="Messenger 2" strokewidth="inherit" w="322"> <connections/> <foreground> <fillcolor color="#437bbd"/> <path> <move x="161" y="0"/> <curve x1="72.08" x2="0" x3="0" y1="0" y2="67.16" y3="150"/> <curve x1="0" x2="23.41" x3="60" y1="197.2" y2="239.31" y3="266.81"/> <line x="60" y="324"/> <line x="114.82" y="293.73"/> <curve x1="129.45" x2="144.95" x3="161" y1="297.8" y2="300" y3="300"/> <curve x1="249.92" x2="322" x3="322" y1="300" y2="232.84" y3="150"/> <curve x1="322" x2="249.92" x3="161" y1="67.16" y2="0" y3="0"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="177" y="202"/> <line x="136" y="158"/> <line x="56" y="202"/> <line x="144" y="108"/> <line x="186" y="152"/> <line x="265" y="108"/> <line x="177" y="202"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="324.23" name="Messenger 3" strokewidth="inherit" w="322.07"> <connections/> <foreground> <save/> <fillcolor color="#ffffff"/> <path> <move x="60" y="324.23"/> <line x="59.92" y="266.95"/> <curve x1="34.51" x2="0" x3="0" y1="248.72" y2="206.57" y3="153.83"/> <curve x1="0" x2="84.63" x3="161.03" y1="54.29" y2="0" y3="0"/> <curve x1="249.43" x2="322.07" x3="322.07" y1="0" y2="66.1" y3="153.68"/> <curve x1="322.07" x2="267.34" x3="158.02" y1="214.91" y2="300.34" y3="300.34"/> <curve x1="150.78" x2="130.73" x3="114.8" y1="300.34" y2="298.71" y3="293.95"/> <close/> </path> <fillstroke/> <restore/> <rect/> <stroke/> <path> <move x="176.95" y="202.08"/> <line x="264.83" y="108.37"/> <line x="185.98" y="152.31"/> <line x="144.04" y="108.21"/> <line x="56" y="202.16"/> <line x="135.97" y="158.22"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="464.34" name="Mind Body Green" strokewidth="inherit" w="407.15"> <connections/> <foreground> <fillcolor color="#ffffff"/> <path> <move x="187.91" y="464.31"/> <curve x1="188.26" x2="188.57" x3="188.42" y1="453.03" y2="441.62" y3="428.86"/> <curve x1="188.96" x2="178.38" x3="156.3" y1="414.36" y2="405.61" y3="405.93"/> <curve x1="131.36" x2="111.72" x3="99.96" y1="406.24" y2="413.62" y3="412.71"/> <curve x1="74.09" x2="66.74" x3="55.52" y1="410.06" y2="403.77" y3="387.16"/> <curve x1="50.96" x2="50.9" x3="53.97" y1="378.66" y2="375.12" y3="367.11"/> <curve x1="57.04" x2="56.26" x3="48.86" y1="358.67" y2="348.71" y3="344.31"/> <curve x1="41.61" x2="42.69" x3="44.92" y1="339.29" y2="331.79" y3="324.87"/> <curve x1="36.44" x2="32.48" x3="37.86" y1="320.5" y2="314.72" y3="303.04"/> <curve x1="43.05" x2="35.43" x3="19.62" y1="291.79" y2="287.45" y3="282.42"/> <curve x1="10.87" x2="2.66" x3="1.38" y1="280.69" y2="279.33" y3="272.73"/> <curve x1="0" x2="2.03" x3="5.16" y1="264.36" y2="259.24" y3="253.37"/> <curve x1="18.94" x2="38.45" x3="48.73" y1="227.37" y2="213.13" y3="195.66"/> <curve x1="53.19" x2="55.23" x3="48.3" y1="189.18" y2="182.62" y3="177.64"/> <curve x1="43.23" x2="40.13" x3="41.43" y1="173.91" y2="165.12" y3="153.48"/> <curve x1="44.89" x2="50.1" x3="62.36" y1="127.37" y2="101.62" y3="77.27"/> <curve x1="82.45" x2="118.45" x3="154.15" y1="36.54" y2="17.63" y3="9.95"/> <curve x1="201.47" x2="250.91" x3="296.09" y1="0" y2="4.67" y3="13.52"/> <curve x1="342.72" x2="378.17" x3="392.19" y1="24.25" y2="58.27" y3="104.51"/> <curve x1="405.88" x2="407.15" x3="397.42" y1="147.2" y2="200.86" y3="256.86"/> <curve x1="393.11" x2="386.53" x3="380.64" y1="290.13" y2="320.78" y3="342.15"/> <curve x1="377.49" x2="366.58" x3="366.92" y1="353.84" y2="364.62" y3="391.4"/> <curve x1="365.82" x2="369.94" x3="374.25" y1="413.42" y2="438.77" y3="464.24"/> <close/> </path> <fillstroke/> <fillcolor color="#ea9229"/> <path> <move x="249.81" y="343.35"/> <curve x1="226.37" x2="210.84" x3="210.84" y1="343.35" y2="319.22" y3="300.79"/> <curve x1="210.84" x2="229.52" x3="247.78" y1="273.23" y2="256.8" y3="256.8"/> <curve x1="265.7" x2="285.58" x3="285.58" y1="256.8" y2="274.71" y3="302.08"/> <curve x1="285.58" x2="265.97" x3="249.81" y1="328.77" y2="343.35" y3="343.35"/> <close/> <move x="244.98" y="464.34"/> <curve x1="239.39" x2="216.7" x3="185.6" y1="412.78" y2="387.19" y3="371.53"/> <curve x1="140.92" x2="125.79" x3="102.49" y1="342.85" y2="328.4" y3="236.38"/> <curve x1="121.66" x2="155.28" x3="186.19" y1="290.42" y2="321.96" y3="338.08"/> <curve x1="228" x2="276.44" x3="309.38" y1="358.01" y2="365.43" y3="332.62"/> <curve x1="339.32" x2="353.44" x3="352.72" y1="299.37" y2="239.76" y3="166.6"/> <curve x1="358.1" x2="365.12" x3="359.52" y1="193.35" y2="242.65" y3="276.7"/> <curve x1="355.57" x2="353.29" x3="348.27" y1="301.94" y2="309.47" y3="325.86"/> <curve x1="339.8" x2="331.26" x3="338.19" y1="355.01" y2="397.59" y3="429.71"/> <curve x1="341.25" x2="344.97" x3="350.05" y1="446.4" y2="446.54" y3="464.32"/> <close/> </path> <fill/> <fillcolor color="#bbd364"/> <path> <move x="81.42" y="202.75"/> <curve x1="83.08" x2="86.04" x3="90.71" y1="180.43" y2="161.49" y3="146.95"/> <curve x1="95.65" x2="111.24" x3="123.36" y1="132.25" y2="114.8" y3="104.17"/> <curve x1="123.27" x2="120.06" x3="112.95" y1="126.65" y2="145.37" y3="159.32"/> <curve x1="106.32" x2="95.06" x3="81.42" y1="174.07" y2="188.5" y3="202.75"/> <close/> <move x="141.36" y="138"/> <curve x1="143.91" x2="148.68" x3="161.54" y1="123.76" y2="108.91" y3="86.91"/> <curve x1="171.38" x2="185.99" x3="202.16" y1="70.2" y2="59.97" y3="53.2"/> <curve x1="199.11" x2="192.35" x3="181.18" y1="68.28" y2="82.26" y3="97.17"/> <curve x1="171.62" x2="157.7" x3="141.36" y1="109.87" y2="124.08" y3="138"/> <close/> <move x="217.51" y="100.57"/> <curve x1="228.2" x2="239.15" x3="250.55" y1="83.03" y2="67.77" y3="56.26"/> <curve x1="270.98" x2="283.94" x3="302.42" y1="39.84" y2="36.48" y3="33.4"/> <curve x1="296.45" x2="285.96" x3="268.99" y1="46.32" y2="59.85" y3="73.39"/> <curve x1="256.53" x2="238.43" x3="217.51" y1="83.01" y2="92.92" y3="100.57"/> <close/> <move x="274.03" y="117.66"/> <curve x1="285.8" x2="300.46" x3="315.19" y1="102.9" y2="91.6" y3="83.18"/> <curve x1="328.6" x2="349.16" x3="361.15" y1="75.62" y2="72.96" y3="73.72"/> <curve x1="353.38" x2="344.55" x3="327.09" y1="83.55" y2="93.8" y3="104.33"/> <curve x1="313.48" x2="292.2" x3="274.03" y1="112.03" y2="117.52" y3="117.66"/> <close/> <move x="225.84" y="162.27"/> <curve x1="239.32" x2="260.28" x3="282.91" y1="153.31" y2="145.6" y3="145.6"/> <curve x1="304.89" x2="318.32" x3="327.65" y1="145.6" y2="153.75" y3="162.03"/> <curve x1="315.1" x2="302.56" x3="278.99" y1="166.26" y2="170.49" y3="171.05"/> <curve x1="258.15" x2="242.03" x3="225.84" y1="169.93" y2="166.08" y3="162.27"/> <close/> <move x="152.24" y="205.84"/> <curve x1="163.84" x2="187.25" x3="209.6" y1="201.23" y2="194.56" y3="194.56"/> <curve x1="228.44" x2="247.98" x3="257.02" y1="194.56" y2="200.7" y3="211.51"/> <curve x1="243.86" x2="221.58" x3="204.7" y1="214.92" y2="220.59" y3="220.59"/> <curve x1="190.86" x2="166.77" x3="152.24" y1="220.59" y2="212.08" y3="205.84"/> <close/> <move x="93.81" y="250.78"/> <curve x1="110.98" x2="124.2" x3="138.57" y1="225.44" y2="198.34" y3="176.71"/> <curve x1="157.31" x2="183.14" x3="206.94" y1="149.05" y2="132.29" y3="123.68"/> <curve x1="224.85" x2="239.82" x3="258.41" y1="117.94" y2="117.62" y3="126.73"/> <curve x1="243.15" x2="225.53" x3="204.88" y1="122.63" y2="123.51" y3="137.42"/> <curve x1="167.64" x2="136.75" x3="93.81" y1="163.35" y2="208.94" y3="250.78"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="430.92" name="MongoDb" strokewidth="inherit" w="206.1"> <connections/> <foreground> <fillcolor color="#599736"/> <path> <move x="117.86" y="374.12"/> <curve x1="109.94" x2="104.09" x3="103.08" y1="370.25" y2="357.34" y3="323.15"/> <curve x1="105.29" x2="105.36" x3="105.55" y1="289.28" y2="249.71" y3="209.15"/> <curve x1="104.64" x2="106.54" x3="100.12" y1="140.06" y2="72.94" y3="0"/> <curve x1="107.52" x2="114.95" x3="123.82" y1="21.36" y2="30.55" y3="38.8"/> <curve x1="152.85" x2="174.64" x3="183.53" y1="66.69" y2="106.27" y3="133.73"/> <curve x1="206.1" x2="198.07" x3="185.92" y1="195.59" y2="244.89" y3="282.65"/> <curve x1="165.99" x2="142.44" x3="117.86" y1="330.44" y2="355.51" y3="374.12"/> <close/> </path> <fill/> <fillcolor color="#69b23f"/> <path> <move x="94.69" y="378.99"/> <curve x1="70.77" x2="44.26" x3="21.67" y1="357.82" y2="335.93" y3="286.32"/> <curve x1="0" x2="4.22" x3="19.59" y1="234.58" y2="171.66" y3="127.98"/> <curve x1="34.14" x2="56.21" x3="86.54" y1="82.26" y2="53.65" y3="25.09"/> <curve x1="99.33" x2="99.82" x3="100.12" y1="14.88" y2="8.64" y3="0"/> <curve x1="105.78" x2="105.42" x3="105.55" y1="62.5" y2="135.02" y3="209.15"/> <curve x1="106.53" x2="106.35" x3="103.08" y1="248.41" y2="286.86" y3="323.15"/> <curve x1="100.92" x2="99.68" x3="94.69" y1="342.66" y2="363.45" y3="378.99"/> <close/> </path> <fill/> <fillcolor color="#c1c0be"/> <path> <move x="100.6" y="426.93"/> <curve x1="100.85" x2="100.98" x3="94.69" y1="415.2" y2="401.85" y3="378.99"/> <curve x1="99.8" x2="100.7" x3="103.08" y1="363.63" y2="342.35" y3="323.15"/> <curve x1="104.1" x2="107.55" x3="117.86" y1="349.08" y2="369.47" y3="374.12"/> <curve x1="113.46" x2="110.87" x3="110.99" y1="378.5" y2="387.47" y3="403.28"/> <line x="111.63" y="430.92"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="351.07" name="MySpace" strokewidth="inherit" w="315.45"> <connections/> <foreground> <path> <move x="238.26" y="115.93"/> <curve x1="206.22" x2="179.19" x3="179.19" y1="115.93" y2="91.15" y3="57.22"/> <curve x1="179.19" x2="201.24" x3="239.04" y1="28.91" y2="0" y3="0"/> <curve x1="270.61" x2="295.87" x3="295.87" y1="0" y2="26.47" y3="57.82"/> <curve x1="295.87" x2="269.75" x3="238.26" y1="89.95" y2="115.93" y3="115.93"/> <close/> <move x="130.81" y="105.39"/> <curve x1="106.62" x2="87.74" x3="87.74" y1="105.39" y2="85.59" y3="63.86"/> <curve x1="87.74" x2="114.38" x3="131.06" y1="32.4" y2="20.96" y3="20.96"/> <curve x1="154.67" x2="172.31" x3="172.31" y1="20.96" y2="41.61" y3="62.86"/> <curve x1="172.31" x2="154.53" x3="130.81" y1="86.12" y2="105.39" y3="105.39"/> <close/> <move x="45.97" y="101.25"/> <curve x1="32.13" x2="11.22" x3="11.22" y1="101.25" y2="89.48" y3="65.97"/> <curve x1="11.22" x2="31.05" x3="46.95" y1="42.71" y2="31.45" y3="31.45"/> <curve x1="64.79" x2="80.95" x3="80.95" y1="31.45" y2="45.46" y3="66.43"/> <curve x1="80.95" x2="67.68" x3="45.97" y1="82.47" y2="101.25" y3="101.25"/> <close/> <move x="0" y="237.22"/> <line x="0" y="152.74"/> <curve x1="0" x2="25.67" x3="46.43" y1="121.34" y2="106.98" y3="106.98"/> <curve x1="68.47" x2="82.35" x3="87.64" y1="106.98" y2="120.78" y3="132.44"/> <curve x1="101.56" x2="117.93" x3="131.5" y1="115.97" y2="112.86" y3="112.86"/> <curve x1="157.99" x2="177.2" x3="183.35" y1="112.86" y2="132.1" y3="149.44"/> <curve x1="200.21" x2="219.75" x3="240.87" y1="131.99" y2="126.09" y3="126.95"/> <curve x1="278.5" x2="315.45" x3="315.45" y1="126.95" y2="161.77" y3="201.93"/> <line x="315.45" y="351.07"/> <line x="153.98" y="351.07"/> <line x="153.98" y="275.12"/> <line x="77.96" y="275.12"/> <line x="77.96" y="237.22"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="158.82" name="N4g" strokewidth="inherit" w="440.53"> <connections/> <foreground> <path> <move x="207.59" y="84.84"/> <line x="234.04" y="84.84"/> <line x="234.04" y="48.73"/> <close/> <move x="0" y="154.87"/> <line x="0" y="0.52"/> <line x="42.22" y="0.52"/> <line x="115.6" y="78.21"/> <line x="115.6" y="0.52"/> <line x="169.76" y="0.52"/> <line x="169.76" y="64.87"/> <line x="220.37" y="0.52"/> <line x="284.29" y="0.52"/> <line x="284.29" y="38.51"/> <curve x1="300.65" x2="326.42" x3="362.46" y1="14.23" y2="0.09" y3="0"/> <line x="362.46" y="32.91"/> <curve x1="343.2" x2="322.99" x3="323.03" y1="38.02" y2="48.71" y3="76.77"/> <curve x1="323.36" x2="355.13" x3="383.95" y1="113.67" y2="120.69" y3="119.27"/> <line x="383.95" y="100.62"/> <line x="362.1" y="100.62"/> <line x="361.94" y="70.1"/> <line x="440.53" y="70.1"/> <line x="440.53" y="145.08"/> <curve x1="425.19" x2="396.37" x3="364.17" y1="150.84" y2="158.47" y3="158.82"/> <curve x1="331.81" x2="299.75" x3="284.29" y1="158.82" y2="145.18" y3="121.11"/> <line x="284.29" y="154.87"/> <line x="234.04" y="154.87"/> <line x="234.04" y="121.99"/> <line x="169.76" y="121.99"/> <line x="169.76" y="154.87"/> <line x="125.95" y="154.87"/> <line x="57.32" y="81.17"/> <line x="57.32" y="154.87"/> <close/> </path> <fillstroke/> <fillcolor color="#eb1926"/> <path> <move x="382.63" y="2.96"/> <line x="440.53" y="2.96"/> <line x="440.53" y="53.29"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="343.99" name="Netlog" strokewidth="inherit" w="382.6"> <connections/> <foreground> <path> <move x="76.09" y="343.99"/> <curve x1="44.43" x2="3.53" x3="0" y1="317.33" y2="278.59" y3="192.37"/> <curve x1="0" x2="87.23" x3="194.41" y1="80.31" y2="0" y3="0"/> <curve x1="299.79" x2="382.6" x3="382.6" y1="0" y2="89.12" y3="188.54"/> <curve x1="382.6" x2="354.09" x3="308.65" y1="258.68" y2="306.65" y3="342.51"/> <curve x1="283.11" x2="235.96" x3="192.73" y1="303.59" y2="280.35" y3="280.35"/> <curve x1="151.09" x2="102.85" x3="76.09" y1="280.35" y2="302.16" y3="343.99"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="190.92" y="261.02"/> <curve x1="233.44" x2="261.55" x3="261.55" y1="261.02" y2="227.28" y3="190.08"/> <curve x1="261.55" x2="233.88" x3="193.16" y1="158.34" y2="121.7" y3="121.7"/> <curve x1="149.5" x2="121.58" x3="121.58" y1="121.7" y2="157.62" y3="191.36"/> <curve x1="121.58" x2="147.84" x3="190.92" y1="222.57" y2="261.02" y3="261.02"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="309.19" name="Netvibes" strokewidth="inherit" w="309.14"> <connections/> <foreground> <path> <move x="0" y="102.88"/> <line x="103.01" y="102.88"/> <line x="103.01" y="0"/> <line x="206.1" y="0"/> <line x="206.1" y="102.88"/> <line x="309.14" y="102.88"/> <line x="309.14" y="206.04"/> <line x="206.1" y="206.04"/> <line x="206.1" y="309.19"/> <line x="103.01" y="309.19"/> <line x="103.01" y="206.04"/> <line x="0" y="206.04"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="286.78" name="Netvouz" strokewidth="inherit" w="285.76"> <connections/> <foreground> <fillcolor color="#6ebd44"/> <path> <move x="0" y="286.78"/> <line x="0" y="0"/> <line x="100.34" y="0"/> <line x="205.85" y="105.51"/> <line x="205.85" y="185.96"/> <line x="54.77" y="36.04"/> <line x="54.77" y="286.78"/> <close/> </path> <fill/> <fillcolor color="#0399cd"/> <path> <move x="80.01" y="181.43"/> <line x="80.01" y="100.82"/> <line x="230.95" y="250.74"/> <line x="230.95" y="0"/> <line x="285.76" y="0"/> <line x="285.76" y="286.78"/> <line x="185.5" y="286.78"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="393.64" name="Networkedblogs" strokewidth="inherit" w="393.87"> <connections/> <foreground> <fillcolor color="#f6921f"/> <path> <move x="347.61" y="193.17"/> <curve x1="347.61" x2="298.89" x3="195.66" y1="133.47" y2="45.38" y3="45.38"/> <line x="195.66" y="0"/> <curve x1="314.84" x2="393.87" x3="393.87" y1="0" y2="98.43" y3="193.17"/> <close/> <move x="280.19" y="193.17"/> <curve x1="280.19" x2="243.41" x3="195.66" y1="144.84" y2="107.37" y3="107.37"/> <line x="195.66" y="60.4"/> <curve x1="281.58" x2="327.48" x3="327.48" y1="58.09" y2="123.86" y3="193.17"/> <close/> <move x="393.47" y="206.75"/> <curve x1="393.47" x2="321.96" x3="195.41" y1="285.73" y2="393.64" y3="393.64"/> <curve x1="120.01" x2="0" x3="0" y1="393.64" y2="337.72" y3="189.58"/> <curve x1="0" x2="78.64" x3="182.2" y1="98.59" y2="6.72" y3="0.74"/> <line x="182.2" y="46.23"/> <curve x1="100.96" x2="45.72" x3="45.72" y1="55.13" y2="123.11" y3="193.53"/> <curve x1="45.72" x2="131.8" x3="195.56" y1="297.31" y2="348.05" y3="348.05"/> <curve x1="261.99" x2="339.05" x3="347.29" y1="348.05" y2="302.66" y3="206.75"/> <close/> </path> <fill/> <fillcolor color="#2d89c9"/> <path> <move x="248.71" y="282.55"/> <curve x1="246.56" x2="244.78" x3="237.36" y1="274.59" y2="265.61" y3="257.24"/> <curve x1="234.22" x2="226.37" x3="219.79" y1="253.45" y2="252.86" y3="256.04"/> <curve x1="208.73" x2="201.58" x3="195.66" y1="261.85" y2="263.04" y3="263.16"/> <curve x1="164.15" x2="128.8" x3="128.8" y1="263.16" y2="233.48" y3="191.16"/> <curve x1="131.55" x2="165.75" x3="197.86" y1="146.05" y2="124.76" y3="124.76"/> <curve x1="238.46" x2="264.85" x3="264.85" y1="124.76" y2="159.27" y3="192.4"/> <curve x1="264.85" x2="261.74" x3="259.82" y1="203.9" y2="211.21" y3="217.82"/> <curve x1="256.18" x2="255.95" x3="258.05" y1="228.27" y2="235.45" y3="246.31"/> <curve x1="258.98" x2="252.89" x3="248.71" y1="255.69" y2="271.94" y3="282.55"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="386.41" name="Newsvine" strokewidth="inherit" w="203.08"> <connections/> <foreground> <path> <move x="93.3" y="386.41"/> <line x="93.3" y="310.19"/> <line x="43.22" y="274.4"/> <curve x1="37.59" x2="32.01" x3="27.32" y1="277.03" y2="278.31" y3="278.31"/> <curve x1="15.93" x2="0" x3="0" y1="278.31" y2="267.92" y3="249.87"/> <curve x1="0" x2="15.44" x3="28.6" y1="232.64" y2="221.83" y3="221.83"/> <curve x1="46.72" x2="61.16" x3="56.32" y1="221.83" y2="238.65" y3="257.7"/> <line x="93.3" y="283.59"/> <line x="93.3" y="204.34"/> <line x="43.22" y="168.87"/> <curve x1="39.57" x2="32.7" x3="27.24" y1="170.91" y2="172.62" y3="172.62"/> <curve x1="18.08" x2="0.24" x3="0.24" y1="172.62" y2="165.59" y3="143.38"/> <curve x1="0.24" x2="16.56" x3="28.36" y1="126.73" y2="116.06" y3="116.06"/> <curve x1="45.04" x2="60.66" x3="56.48" y1="116.06" y2="130.82" y3="152.57"/> <line x="93.3" y="177.81"/> <line x="93.3" y="99.2"/> <line x="43.14" y="63.25"/> <curve x1="39.49" x2="34.01" x3="27.4" y1="65.28" y2="67.09" y3="67.09"/> <curve x1="16.25" x2="0" x3="0" y1="67.09" y2="56.32" y3="39.13"/> <curve x1="0" x2="14.59" x3="28.52" y1="22.13" y2="10.84" y3="10.84"/> <curve x1="47.71" x2="60.63" x3="56.4" y1="10.84" y2="27.43" y3="46.56"/> <line x="93.3" y="72.36"/> <line x="93.3" y="0"/> <line x="115.47" y="0"/> <line x="115.47" y="125.81"/> <line x="148.59" y="101.6"/> <curve x1="146.8" x2="144.87" x3="148.67" y1="96.92" y2="92.37" y3="82.51"/> <curve x1="152.8" x2="160.11" x3="175.92" y1="73.73" y2="65.57" y3="65.25"/> <curve x1="188.13" x2="203.08" x3="203.08" y1="65.25" y2="76.44" y3="93.85"/> <curve x1="203.08" x2="191.28" x3="177.35" y1="107.49" y2="121.33" y3="121.33"/> <curve x1="171.75" x2="168.61" x3="161.78" y1="121.33" y2="121.93" y3="117.98"/> <line x="115.47" y="152.16"/> <line x="115.47" y="231.37"/> <line x="148.52" y="206.9"/> <curve x1="141.44" x2="154.44" x3="174.26" y1="191.16" y2="171.03" y3="171.03"/> <curve x1="190.47" x2="203.07" x3="203.07" y1="171.03" y2="183.58" y3="199.16"/> <curve x1="203.07" x2="194.31" x3="174.91" y1="209.92" y2="227.28" y3="227.28"/> <curve x1="167.95" x2="164.82" x3="162.02" y1="227.28" y2="225.46" y3="223.59"/> <line x="115.47" y="257.94"/> <line x="115.47" y="337.27"/> <line x="148.51" y="312.43"/> <curve x1="140.97" x2="158.88" x3="174.72" y1="292.23" y2="276.64" y3="276.64"/> <curve x1="192.82" x2="202.92" x3="202.92" y1="276.64" y2="291.89" y3="304.98"/> <curve x1="202.92" x2="189.99" x3="174.94" y1="320.24" y2="333.15" y3="333.15"/> <curve x1="168.39" x2="164.47" x3="161.83" y1="333.15" y2="331.09" y3="329.19"/> <line x="115.47" y="363.59"/> <line x="115.47" y="386.41"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="409.2" name="Odnoklassniki" strokewidth="inherit" w="246.48"> <connections/> <foreground> <path> <move x="124.56" y="150.99"/> <curve x1="151.34" x2="167.06" x3="167.06" y1="150.99" y2="126.74" y3="110.09"/> <curve x1="167.06" x2="140.03" x3="124.4" y1="76.06" y2="64.71" y3="64.71"/> <curve x1="99.79" x2="81.1" x3="81.1" y1="64.71" y2="86.16" y3="107.05"/> <curve x1="81.1" x2="104.85" x3="124.56" y1="135.46" y2="150.99" y3="150.99"/> <close/> <move x="120.24" y="215.7"/> <curve x1="70.91" x2="15.75" x3="15.75" y1="215.7" y2="173.29" y3="103.86"/> <curve x1="15.75" x2="61.62" x3="124.4" y1="53.13" y2="0" y3="0"/> <curve x1="180.87" x2="232.26" x3="232.26" y1="0" y2="46.32" y3="107.39"/> <curve x1="232.26" x2="195.08" x3="120.24" y1="157.41" y2="215.7" y3="215.7"/> <close/> <move x="63.2" y="399.77"/> <curve x1="53.82" x2="31.88" x3="20.38" y1="408.69" y2="409.2" y3="394.97"/> <curve x1="9.48" x2="10.76" x3="19.26" y1="380.98" y2="363.04" y3="354.39"/> <line x="81.1" y="294.79"/> <curve x1="58.44" x2="32.59" x3="13.99" y1="289.93" y2="282.32" y3="266.51"/> <curve x1="7.37" x2="0" x3="7.92" y1="261.27" y2="249.06" y3="228.64"/> <curve x1="15.61" x2="34.25" x3="44.03" y1="213.24" y2="208.79" y3="214.42"/> <curve x1="71.49" x2="97.83" x3="123.6" y1="229.29" y2="234.61" y3="235.03"/> <curve x1="166.11" x2="185.03" x3="204.29" y1="232.97" y2="223.32" y3="213.78"/> <curve x1="217.94" x2="232.3" x3="239.6" y1="208.4" y2="216.83" y3="230.72"/> <curve x1="246.48" x2="239.54" x3="234.32" y1="244.84" y2="260.49" y3="265.55"/> <curve x1="224.92" x2="196.47" x3="165.25" y1="274.69" y2="288.76" y3="294.6"/> <line x="226.81" y="354.07"/> <curve x1="238.06" x2="235.37" x3="224.9" y1="366.4" y2="386.41" y3="396.89"/> <curve x1="212.39" x2="193.53" x3="182.4" y1="409.09" y2="408.56" y3="399.13"/> <line x="123.44" y="345.12"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="352.05" name="Oknotizie" strokewidth="inherit" w="236.96"> <connections/> <foreground> <fillcolor color="#ef5222"/> <path> <move x="201.74" y="238.59"/> <curve x1="201.74" x2="192.83" x3="181.62" y1="227.2" y2="217.39" y3="217.39"/> <curve x1="168.88" x2="161.23" x3="161.23" y1="217.39" y2="227.16" y3="236.34"/> <line x="161.23" y="307.92"/> <curve x1="161.23" x2="169.38" x3="180.94" y1="314.73" y2="324.91" y3="324.91"/> <curve x1="194.69" x2="201.74" x3="201.74" y1="324.91" y2="313.81" y3="305.97"/> <close/> <move x="183.58" y="352.05"/> <curve x1="155.02" x2="125.4" x3="125.4" y1="352.05" y2="328.44" y3="294.12"/> <line x="125.4" y="243"/> <curve x1="125.4" x2="156.21" x3="182.9" y1="209.09" y2="185.77" y3="185.77"/> <curve x1="217.74" x2="236.96" x3="236.96" y1="185.77" y2="216.09" y3="238.63"/> <line x="236.96" y="299.65"/> <curve x1="236.96" x2="218.3" x3="183.58" y1="320.39" y2="352.05" y3="352.05"/> <close/> <move x="0" y="346.51"/> <line x="0" y="183.95"/> <line x="39.1" y="183.95"/> <line x="84.06" y="303.25"/> <line x="84.06" y="183.95"/> <line x="110.72" y="183.95"/> <line x="110.72" y="346.51"/> <line x="75.23" y="346.51"/> <line x="27.74" y="234.41"/> <line x="27.74" y="346.51"/> <close/> </path> <fill/> <fillcolor color="#9bd644"/> <path> <move x="131.71" y="166.56"/> <line x="131.71" y="0"/> <line x="159.63" y="0"/> <line x="159.63" y="93.97"/> <line x="196.21" y="47.08"/> <line x="227.82" y="47.08"/> <line x="192.15" y="87.76"/> <line x="226.62" y="168.03"/> <line x="189.63" y="166.18"/> <line x="174.78" y="110.81"/> <line x="159.63" y="129.87"/> <line x="159.63" y="166.75"/> <close/> <move x="77.54" y="54.72"/> <curve x1="77.54" x2="72.15" x3="57.57" y1="47.64" y2="33.63" y3="33.63"/> <curve x1="44.36" x2="36.96" x3="36.96" y1="33.63" y2="44.1" y3="54.57"/> <line x="36.96" y="118.8"/> <curve x1="36.96" x2="47.96" x3="56.13" y1="134.53" y2="141.32" y3="141.32"/> <curve x1="70.25" x2="77.54" x3="77.54" y1="141.32" y2="131.75" y3="119.59"/> <close/> <move x="112.88" y="116.21"/> <curve x1="112.88" x2="91.36" x3="59.89" y1="141.23" y2="168.25" y3="168.25"/> <curve x1="23.2" x2="1.58" x3="1.58" y1="168.25" y2="137.02" y3="114.68"/> <line x="1.58" y="57.76"/> <curve x1="1.58" x2="29.8" x3="59.48" y1="27.22" y2="2.8" y3="2.8"/> <curve x1="93.94" x2="112.88" x3="112.88" y1="2.8" y2="32.36" y3="53.13"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="216.76" name="OneDrive" strokewidth="inherit" w="356.57"> <connections/> <foreground> <path> <move x="127.1" y="216.76"/> <curve x1="110.81" x2="81.4" x3="81.81" y1="216.76" y2="204.91" y3="164.92"/> <curve x1="81.81" x2="106.95" x3="130.29" y1="137.29" y2="121.27" y3="121.27"/> <curve x1="133.17" x2="142.03" x3="174.77" y1="102.66" y2="74.46" y3="64.27"/> <curve x1="210.26" x2="231.45" x3="245.48" y1="56.64" y2="71.59" y3="90.8"/> <curve x1="267.47" x2="289.28" x3="306.21" y1="80.41" y2="82.93" y3="96.39"/> <curve x1="317.67" x2="324.5" x3="323.08" y1="107.47" y2="123.77" y3="138.2"/> <curve x1="341.4" x2="356.57" x3="356.57" y1="141.65" y2="154.75" y3="179.01"/> <curve x1="356.57" x2="345.23" x3="326.51" y1="193.57" y2="216.15" y3="216.15"/> <close/> <move x="79.65" y="201.17"/> <line x="42.82" y="201.28"/> <curve x1="29.39" x2="0" x3="0" y1="201.28" y2="182.71" y3="152.36"/> <curve x1="0" x2="17.79" x3="43.16" y1="125.53" y2="107.81" y3="104.23"/> <curve x1="42.3" x2="43.97" x3="67.45" y1="86.49" y2="68.48" y3="48.08"/> <curve x1="86.01" x2="111.93" x3="130.27" y1="34.91" y2="33.34" y3="44.8"/> <curve x1="153.67" x2="190.03" x3="217.26" y1="5.33" y2="0" y3="8.08"/> <curve x1="255.67" x2="268.5" x3="272.85" y1="22.23" y2="47.01" y3="73.16"/> <curve x1="262.37" x2="255.84" x3="247.88" y1="72.79" y2="73.22" y3="78.69"/> <curve x1="236.29" x2="210.35" x3="175.01" y1="58.95" y2="45.77" y3="52.94"/> <curve x1="147.66" x2="125.32" x3="120.78" y1="59.07" y2="81.23" y3="111.69"/> <curve x1="105.7" x2="83.89" x3="73.78" y1="113.68" y2="123.54" y3="145.01"/> <curve x1="64.02" x2="71.42" x3="79.65" y1="168.93" y2="188.47" y3="201.17"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="114.66" name="Oracle" strokewidth="inherit" w="448.92"> <connections/> <foreground> <path> <move x="0.06" y="114.66"/> <line x="0" y="0.03"/> <line x="448.92" y="0"/> <line x="448.77" y="114.27"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="386.68" y="81.96"/> <line x="355.59" y="81.96"/> <curve x1="351.68" x2="346.16" x3="342.5" y1="81.96" y2="78.39" y3="71.62"/> <curve x1="339.38" x2="338.92" x3="342.59" y1="64.54" y2="54.37" y3="45.26"/> <curve x1="344.6" x2="350.15" x3="355.3" y1="40.56" y2="34.59" y3="34.59"/> <line x="390.26" y="34.59"/> <line x="385.15" y="42.19"/> <line x="361.96" y="42.19"/> <curve x1="353.81" x2="348.19" x3="348.19" y1="42.19" y2="48.29" y3="55.65"/> <line x="387.52" y="55.65"/> <line x="384.21" y="62.65"/> <line x="347.82" y="62.65"/> <curve x1="347.82" x2="353.2" x3="360.21" y1="69.69" y2="75.08" y3="75.08"/> <line x="389.95" y="75.08"/> <close/> <move x="293.98" y="81.96"/> <line x="293.98" y="34.59"/> <line x="303.1" y="34.59"/> <line x="303.1" y="75.08"/> <line x="340.07" y="75.08"/> <line x="335.65" y="81.96"/> <close/> <move x="285.62" y="81.96"/> <line x="256.43" y="81.96"/> <curve x1="252.17" x2="248.03" x3="244.2" y1="81.96" y2="80.57" y3="75.99"/> <curve x1="238.11" x2="235.77" x3="241.57" y1="67.23" y2="57.3" y3="43.73"/> <curve x1="245.08" x2="253.1" x3="257.42" y1="36.91" y2="34.59" y3="34.59"/> <line x="289.84" y="34.59"/> <line x="283.38" y="42.19"/> <line x="260.1" y="42.19"/> <curve x1="253.76" x2="246.59" x3="246.59" y1="42.19" y2="48.58" y3="58.46"/> <curve x1="246.59" x2="255.64" x3="260.48" y1="70.52" y2="75.08" y3="75.08"/> <line x="290.53" y="75.08"/> <close/> <move x="178.9" y="81.96"/> <line x="206.98" y="34.59"/> <line x="215.53" y="34.59"/> <line x="240.6" y="81.96"/> <line x="231.04" y="81.96"/> <line x="227.01" y="75.08"/> <line x="205.21" y="75.08"/> <line x="201.48" y="65.89"/> <line x="222.36" y="65.89"/> <line x="211.61" y="42.19"/> <line x="190.91" y="81.96"/> <close/> <move x="126.23" y="81.96"/> <line x="126.23" y="34.59"/> <line x="168.55" y="34.59"/> <curve x1="173.22" x2="176.9" x3="179.04" y1="34.59" y2="35.89" y3="42.11"/> <curve x1="180.98" x2="179.47" x3="177.15" y1="50.7" y2="56.34" y3="59.78"/> <curve x1="173.89" x2="170.84" x3="162.31" y1="64.21" y2="66.11" y3="66.11"/> <line x="177" y="81.96"/> <line x="163.88" y="81.96"/> <line x="138.61" y="56.11"/> <line x="162.28" y="56.11"/> <curve x1="167.19" x2="170.6" x3="170.6" y1="56.11" y2="52.27" y3="49.5"/> <curve x1="170.6" x2="168.07" x3="162.24" y1="45.86" y2="42.19" y3="42.19"/> <line x="135.81" y="42.19"/> <line x="135.81" y="81.96"/> <close/> <move x="99.8" y="75.08"/> <curve x1="106.56" x2="113.97" x3="113.97" y1="75.08" y2="67.21" y3="57.09"/> <curve x1="113.97" x2="108.22" x3="102.25" y1="46.03" y2="42.19" y3="42.19"/> <line x="72.68" y="42.19"/> <curve x1="66.43" x2="61.44" x3="61.44" y1="42.19" y2="47.01" y3="56.92"/> <curve x1="61.44" x2="71.09" x3="76.41" y1="69.56" y2="75.08" y3="75.08"/> <close/> <move x="74.26" y="81.96"/> <curve x1="65.92" x2="55.2" x3="53.94" y1="81.96" y2="76.1" y3="62.75"/> <curve x1="53.57" x2="53.01" x3="55.21" y1="57.77" y2="50.53" y3="44.46"/> <curve x1="58.2" x2="64.57" x3="71" y1="37.53" y2="34.59" y3="34.59"/> <line x="106.14" y="34.59"/> <curve x1="112.14" x2="115.91" x3="117.25" y1="34.59" y2="37.18" y3="39.32"/> <curve x1="124.85" x2="122.72" x3="118.24" y1="51.28" y2="63.97" y3="71.36"/> <curve x1="114.49" x2="108.78" x3="100.96" y1="76.77" y2="81.96" y3="81.96"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="290.03" name="Paypal" strokewidth="inherit" w="256"> <connections/> <foreground> <fillcolor color="#002f86"/> <path> <move x="8.26" y="254.29"/> <curve x1="4.31" x2="0" x3="1.21" y1="254.29" y2="250.83" y3="244.32"/> <line x="39.81" y="8.88"/> <curve x1="40.54" x2="47.33" x3="50.94" y1="4.33" y2="0" y3="0"/> <line x="155.86" y="0.06"/> <curve x1="184.1" x2="209.13" x3="222.85" y1="0.06" y2="8.82" y3="27.17"/> <curve x1="233.6" x2="232.61" x3="227.84" y1="45.99" y2="60.93" y3="86.51"/> <line x="71.85" y="253.8"/> <close/> </path> <fill/> <fillcolor color="#009cde"/> <path> <move x="68.32" y="290.03"/> <curve x1="63.93" x2="61.59" x3="62.49" y1="290.03" y2="286.38" y3="281.28"/> <line x="80.28" y="164.42"/> <line x="218.36" y="70.7"/> <curve x1="237.65" x2="251.9" x3="256" y1="74.38" y2="84.13" y3="112.04"/> <curve x1="255.02" x2="246.04" x3="222.49" y1="143.73" y2="172.23" y3="191.43"/> <curve x1="209.39" x2="181.19" x3="152.82" y1="202.5" y2="210.05" y3="208.7"/> <curve x1="147.41" x2="140.38" x3="138.84" y1="208.7" y2="210.95" y3="221.46"/> <line x="128.87" y="279.94"/> <curve x1="127.67" x2="124.27" x3="116.59" y1="286.66" y2="289.91" y3="289.91"/> <close/> </path> <fill/> <fillcolor color="#012069"/> <path> <move x="79.63" y="168.21"/> <curve x1="82.4" x2="86.6" x3="94.34" y1="163.09" y2="160.82" y3="160.55"/> <curve x1="139.41" x2="163.41" x3="187.84" y1="161.99" y2="160.23" y3="144.87"/> <curve x1="219.87" x2="227.29" x3="229.9" y1="121.99" y2="91.14" y3="73.9"/> <curve x1="221.35" x2="199.24" x3="182.52" y1="70.46" y2="63.89" y3="63.89"/> <line x="112.94" y="63.41"/> <curve x1="104.25" x2="97.76" x3="96.41" y1="63.41" y2="66.48" y3="73.38"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="271.29" name="Phone" strokewidth="inherit" w="289.23"> <connections/> <foreground> <path> <move x="67.39" y="0"/> <line x="98.34" y="72.23"/> <line x="69.97" y="108.34"/> <arc large-arc-flag="0" rx="206.36" ry="206.36" sweep-flag="0" x="180.89" x-axis-rotation="0" y="206.36"/> <line x="217" y="165.09"/> <line x="289.23" y="201.2"/> <line x="284.07" y="234.74"/> <arc large-arc-flag="0" rx="77.39" ry="77.39" sweep-flag="1" x="211.84" x-axis-rotation="0" y="268.27"/> <arc large-arc-flag="0" rx="283.75" ry="283.75" sweep-flag="1" x="1.35" x-axis-rotation="0" y="67.07"/> <arc large-arc-flag="0" rx="77.39" ry="77.39" sweep-flag="1" x="33.86" x-axis-rotation="0" y="0"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="394.1" name="Phonefavs" strokewidth="inherit" w="322.4"> <connections/> <foreground> <fillcolor color="#c7c7c7"/> <path> <move x="313.25" y="267.38"/> <curve x1="322.4" x2="318.15" x3="295.83" y1="287.44" y2="301.07" y3="309"/> <line x="139.89" y="345.59"/> <curve x1="105.27" x2="93.36" x3="88.12" y1="353.57" y2="339.33" y3="320.35"/> <line x="22.13" y="105.28"/> <curve x1="16.05" x2="27.4" x3="42.42" y1="86.25" y2="78.34" y3="75.88"/> <line x="212.67" y="55.52"/> <close/> <move x="133.24" y="384.43"/> <curve x1="101" x2="77.61" x3="70.6" y1="394.1" y2="382.48" y3="357.12"/> <line x="4.73" y="131.95"/> <curve x1="0" x2="10.42" x3="21.28" y1="115.4" y2="91.48" y3="81"/> <curve x1="17.46" x2="14.61" x3="17.94" y1="88.42" y2="95.6" y3="107.66"/> <line x="83.81" y="323.38"/> <curve x1="93.9" x2="121.12" x3="139.81" y1="356.36" y2="355.56" y3="351.02"/> <line x="293.76" y="315.31"/> <curve x1="304.63" x2="318.44" x3="321.73" y1="313.24" y2="304.16" y3="293.49"/> <curve x1="320.41" x2="320.07" x3="314.85" y1="304.21" y2="310.16" y3="322.1"/> <curve x1="310.23" x2="303.99" x3="295.83" y1="331.13" y2="335.87" y3="338.38"/> <close/> </path> <fill/> <fillcolor color="#78afe2"/> <path> <move x="37.28" y="92.81"/> <line x="200.03" y="72.14"/> <line x="247.44" y="175.63"/> <line x="74.61" y="208.04"/> <close/> </path> <fill/> <fillcolor color="#7f7c7d"/> <path> <move x="240.55" y="281.76"/> <line x="292.32" y="269.86"/> <line x="299.43" y="283.52"/> <line x="247.58" y="296.3"/> <close/> <move x="230" y="257.21"/> <line x="281.35" y="246.27"/> <line x="288.3" y="260.48"/> <line x="236.69" y="272.03"/> <close/> <move x="219.13" y="231.72"/> <line x="270.37" y="222.1"/> <line x="277.44" y="236.42"/> <line x="225.6" y="247.03"/> <close/> <move x="208.61" y="205.94"/> <line x="259.58" y="197.59"/> <line x="266.31" y="212.25"/> <line x="214.73" y="221.2"/> <close/> <move x="174.72" y="298.38"/> <line x="227.13" y="285.03"/> <line x="233.76" y="299.57"/> <line x="181.59" y="313.64"/> <close/> <move x="164.1" y="271.85"/> <line x="216.18" y="260.03"/> <line x="222.73" y="275.13"/> <line x="170.81" y="287.91"/> <close/> <move x="178.56" y="255"/> <curve x1="164.39" x2="150.2" x3="150.2" y1="255" y2="243.53" y3="229.91"/> <curve x1="150.2" x2="158.6" x3="176.48" y1="220.59" y2="208.02" y3="208.02"/> <curve x1="191.84" x2="204.84" x3="204.84" y1="208.02" y2="220.23" y3="232.87"/> <curve x1="204.84" x2="195.1" x3="178.56" y1="244.04" y2="255" y3="255"/> <close/> <move x="109.05" y="315.79"/> <line x="160.98" y="301.73"/> <line x="167.69" y="317.39"/> <line x="115.28" y="332.73"/> <close/> <move x="98.67" y="288.23"/> <line x="150.51" y="275.53"/> <line x="156.99" y="291.27"/> <line x="104.66" y="305.09"/> <close/> <move x="88.2" y="259.87"/> <line x="140.13" y="248.13"/> <line x="146.68" y="264.5"/> <line x="94.43" y="276.89"/> <close/> <move x="78.17" y="231.05"/> <line x="129.86" y="220.56"/> <line x="136.16" y="237.29"/> <line x="84.61" y="248.42"/> <close/> </path> <fill/> <fillcolor color="#f9e47a"/> <path> <move x="160.26" y="112.74"/> <line x="166.31" y="74.43"/> <line x="104.43" y="36.34"/> <line x="173.19" y="38.94"/> <line x="186.23" y="0"/> <line x="218.04" y="43.11"/> <line x="283.68" y="50.18"/> <line x="242.63" y="77.32"/> <line x="262.85" y="122.17"/> <line x="206.08" y="94.84"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="175.89" y="93.61"/> <line x="180.33" y="68.56"/> <line x="149.32" y="49.84"/> <line x="182.17" y="51.23"/> <line x="190.18" y="26.42"/> <line x="210.78" y="54.28"/> <line x="248.45" y="59.13"/> <line x="228.23" y="72.17"/> <line x="240.03" y="97.89"/> <line x="206.69" y="81.54"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="372.04" name="Pinterest" strokewidth="inherit" w="384.22"> <connections/> <foreground> <path> <move x="115.7" y="356.81"/> <curve x1="65.81" x2="0" x3="0" y1="334" y2="281.48" y3="182.18"/> <curve x1="0" x2="71.8" x3="194.1" y1="97.92" y2="0" y3="0"/> <curve x1="295.18" x2="384.22" x3="384.22" y1="0" y2="78.66" y3="189.33"/> <curve x1="384.22" x2="329.67" x3="186.95" y1="256.74" y2="372.04" y3="371.51"/> <curve x1="172.5" x2="153.26" x3="137.69" y1="371.51" y2="370.04" y3="363.57"/> <curve x1="144" x2="150.1" x3="155.7" y1="354.9" y2="344.41" y3="329.41"/> <line x="171.06" y="272.74"/> <curve x1="191.19" x2="231.56" x3="256.59" y1="302.83" y2="298.76" y3="288.1"/> <curve x1="286.32" x2="311.45" x3="318.29" y1="274.83" y2="243.16" y3="198.33"/> <curve x1="323.54" x2="326.84" x3="269.83" y1="167.86" y2="122.19" y3="81.29"/> <curve x1="236.52" x2="174.38" x3="109.89" y1="64.65" y2="47.58" y3="90.3"/> <curve x1="83.21" x2="61.05" x3="63.02" y1="112.44" y2="142.12" y3="189.33"/> <curve x1="67.01" x2="82.93" x3="101.64" y1="220.9" y2="240.28" y3="249.47"/> <curve x1="105.26" x2="109.12" x3="110.69" y1="250.8" y2="250.31" y3="245.69"/> <line x="115.11" y="230.02"/> <curve x1="116.14" x2="115.79" x3="112.12" y1="226.62" y2="223.98" y3="219.87"/> <curve x1="95.83" x2="97.2" x3="105.39" y1="201.45" y2="175.65" y3="150.67"/> <curve x1="124.91" x2="164.47" x3="200.58" y1="105.29" y2="93.33" y3="94.27"/> <curve x1="249.02" x2="278.79" x3="274.6" y1="95.57" y2="129.04" y3="172.52"/> <curve x1="271.96" x2="261.39" x3="233.15" y1="212.73" y2="245.41" y3="260.03"/> <curve x1="220.3" x2="205.18" x3="189.99" y1="267.42" y2="269.19" y3="255.4"/> <curve x1="182.51" x2="180.1" x3="182.98" y1="247.29" y2="240.63" y3="226.53"/> <line x="198.86" y="173.05"/> <curve x1="201.92" x2="197.59" x3="179.67" y1="154.64" y2="140.63" y3="135.58"/> <curve x1="167.55" x2="151.41" x3="142.46" y1="133.24" y2="138.62" y3="157.55"/> <curve x1="135.55" x2="136.28" x3="144.18" y1="175.75" y2="197.79" y3="212.9"/> <line x="119.69" y="310.08"/> <curve x1="116.69" x2="115.54" x3="115.7" y1="323.56" y2="334.2" y3="356.81"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="399.93" name="Plaxo" strokewidth="inherit" w="398.97"> <connections/> <foreground> <path> <move x="199.25" y="399.93"/> <curve x1="97.56" x2="0" x3="0" y1="399.93" y2="320.05" y3="200.2"/> <curve x1="0" x2="92.93" x3="200.53" y1="87.95" y2="0" y3="0"/> <curve x1="307.45" x2="398.97" x3="398.97" y1="0" y2="86.65" y3="201.96"/> <curve x1="398.97" x2="314.83" x3="199.25" y1="307.61" y2="399.93" y3="399.93"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="119.89" y="383.21"/> <curve x1="96.75" x2="72.07" x3="47.93" y1="372.9" y2="358.2" y3="330.92"/> <line x="48.01" y="202.61"/> <curve x1="48.01" x2="109.43" x3="194.98" y1="129.86" y2="49.33" y3="49.33"/> <curve x1="278.27" x2="350.39" x3="350.39" y1="49.33" y2="118.67" y3="198.98"/> <curve x1="350.39" x2="284.05" x3="199.75" y1="283.52" y2="351.55" y3="351.55"/> <curve x1="178.19" x2="161.58" x3="161.58" y1="351.55" y2="335.81" y3="315.08"/> <curve x1="161.58" x2="173.74" x3="193.5" y1="297.16" y2="280.14" y3="278.01"/> <curve x1="238.6" x2="275.08" x3="275.08" y1="277.92" y2="246.72" y3="200.87"/> <curve x1="275.08" x2="230.74" x3="197.26" y1="150.8" y2="123.39" y3="123.39"/> <curve x1="159.91" x2="119.4" x3="119.4" y1="123.39" y2="156.99" y3="198.62"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="307.34" name="Playfire" strokewidth="inherit" w="309.71"> <connections/> <foreground> <path> <move x="309.71" y="0.03"/> <line x="309.39" y="157.41"/> <curve x1="309.39" x2="249.02" x3="154.34" y1="226.75" y2="307.34" y3="307.34"/> <curve x1="67.51" x2="0" x3="0" y1="307.34" y2="235.49" y3="153.72"/> <curve x1="0" x2="69.74" x3="156.41" y1="65.8" y2="0" y3="0"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="266.85" y="130.68"/> <curve x1="271.01" x2="254.83" x3="229.82" y1="165.53" y2="190.78" y3="205.02"/> <curve x1="265.53" x2="242.08" x3="210.32" y1="162.4" y2="114.49" y3="97.49"/> <curve x1="229.13" x2="228.03" x3="225.66" y1="116.33" y2="134.18" y3="147.02"/> <curve x1="223.33" x2="209.11" x3="185.88" y1="127.71" y2="113.22" y3="111.71"/> <curve x1="170.21" x2="147.53" x3="147.53" y1="111.71" y2="126.96" y3="149.26"/> <curve x1="147.53" x2="163.64" x3="180.6" y1="173.63" y2="185.11" y3="190"/> <curve x1="154.81" x2="121.12" x3="118.45" y1="194.31" y2="176.31" y3="137.76"/> <curve x1="117.75" x2="139.75" x3="157.6" y1="110.92" y2="84.88" y3="75.76"/> <curve x1="175.86" x2="196.91" x3="221.99" y1="65.65" y2="62.4" y3="72.41"/> <curve x1="203.85" x2="163.44" x3="124.36" y1="62.13" y2="51.22" y3="76.88"/> <curve x1="97.11" x2="89.47" x3="85.22" y1="96.85" y2="117.43" y3="138.4"/> <curve x1="80.09" x2="90.69" x3="103.43" y1="171.04" y2="189.23" y3="210.3"/> <curve x1="87.72" x2="68.96" x3="77.87" y1="193.99" y2="162.43" y3="115.55"/> <curve x1="87.45" x2="114.12" x3="134.59" y1="73.34" y2="53.66" y3="42.21"/> <curve x1="103.95" x2="52.39" x3="44.31" y1="49.2" y2="73.87" y3="143.19"/> <curve x1="37.94" x2="95.45" x3="153.92" y1="212.02" y2="265.1" y3="265.1"/> <curve x1="200.99" x2="239" x3="260.61" y1="265.1" y2="238.88" y3="197.72"/> <curve x1="272.46" x2="270.3" x3="266.85" y1="172.52" y2="146.84" y3="130.68"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="509.85" name="Plurk" strokewidth="inherit" w="510.05"> <connections/> <foreground> <path> <move x="255.17" y="509.85"/> <curve x1="112.2" x2="0" x3="0" y1="509.85" y2="395.79" y3="251.49"/> <curve x1="0" x2="109.3" x3="254.69" y1="120.84" y2="0" y3="0"/> <curve x1="405.72" x2="510.05" x3="510.05" y1="0" y2="123.26" y3="253.06"/> <curve x1="510.05" x2="393.73" x3="255.17" y1="400.62" y2="509.85" y3="509.85"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="231.93" y="254.68"/> <line x="231.93" y="227.3"/> <curve x1="231.93" x2="247.6" x3="265.02" y1="210.22" y2="197.74" y3="197.74"/> <curve x1="281.65" x2="297.92" x3="297.92" y1="197.74" y2="209.47" y3="226.35"/> <curve x1="297.92" x2="285.66" x3="264.94" y1="240.73" y2="254.68" y3="254.68"/> <close/> <move x="231.93" y="312.6"/> <line x="272.8" y="312.6"/> <curve x1="308.8" x2="365.47" x3="365.47" y1="312.6" y2="282.17" y3="226.56"/> <curve x1="365.47" x2="321.17" x3="265.13" y1="179.86" y2="139.8" y3="139.8"/> <curve x1="207.64" x2="164.91" x3="164.91" y1="139.8" y2="180.49" y3="223.44"/> <line x="164.91" y="343.19"/> <curve x1="164.91" x2="178.27" x3="198.38" y1="356.01" y2="370.59" y3="370.59"/> <curve x1="220.86" x2="231.93" x3="231.93" y1="370.59" y2="353.18" y3="344.58"/> <close/> <move x="283.12" y="366.89"/> <curve x1="277.63" x2="249.56" x3="196.11" y1="388.32" y2="425.8" y3="425.8"/> <curve x1="148.98" x2="109.46" x3="109.46" y1="424.64" y2="388.22" y3="341.6"/> <line x="109.46" y="223.85"/> <curve x1="109.46" x2="174.17" x3="264.41" y1="153.17" y2="84.91" y3="84.91"/> <curve x1="352.48" x2="420.56" x3="420.56" y1="84.91" y2="148.59" y3="225.56"/> <curve x1="420.56" x2="361.05" x3="283.12" y1="299.33" y2="359.43" y3="366.89"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="288.73" name="Pocket" strokewidth="inherit" w="313.54"> <connections/> <foreground> <path> <move x="284.62" y="0"/> <curve x1="309.31" x2="313.54" x3="313.54" y1="0" y2="24.14" y3="35.23"/> <line x="313.54" y="131.51"/> <curve x1="313.54" x2="300.42" x3="284.05" y1="170.96" y2="199.53" y3="223.73"/> <curve x1="259.66" x2="221.67" x3="154.53" y1="257.99" y2="288.73" y3="288.73"/> <curve x1="129.04" x2="77.52" x3="47.61" y1="288.73" y2="276.16" y3="242.75"/> <curve x1="20" x2="0" x3="0" y1="215.8" y2="176.26" y3="131.8"/> <line x="0" y="36.32"/> <curve x1="0" x2="10.92" x3="29.83" y1="18.94" y2="0" y3="0"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="157.39" y="151.85"/> <line x="97.5" y="91.77"/> <curve x1="87.11" x2="74.94" x3="66.79" y1="82.79" y2="84.56" y3="92.18"/> <curve x1="58.12" x2="60.57" x3="66.15" y1="102.48" y2="113.98" y3="121.32"/> <line x="157.62" y="212.6"/> <line x="254.46" y="115.19"/> <curve x1="259.64" x2="261.92" x3="252.85" y1="108.53" y2="96.3" y3="86.17"/> <curve x1="244.43" x2="232.16" x3="222.32" y1="78.39" y2="78.23" y3="86.62"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="398.45" name="Protopage" strokewidth="inherit" w="392.47"> <connections/> <foreground> <fillcolor color="#1e0609"/> <path> <move x="173.08" y="303.8"/> <curve x1="159.5" x2="146.12" x3="124.32" y1="318" y2="332.23" y3="345.26"/> <curve x1="99.04" x2="81.14" x3="55.56" y1="360.22" y2="362.25" y3="341.88"/> <curve x1="42.62" x2="30.9" x3="23.34" y1="330.7" y2="315.71" y3="287.78"/> <curve x1="19.28" x2="20.82" x3="34.85" y1="270.96" y2="259.38" y3="245.19"/> <curve x1="46.09" x2="60.97" x3="80.64" y1="233.48" y2="220.73" y3="206.61"/> <curve x1="54.19" x2="33.26" x3="17.66" y1="188.37" y2="171.05" y3="154.62"/> <curve x1="5.47" x2="0" x3="8.83" y1="141.33" y2="125.93" y3="106.04"/> <curve x1="16.84" x2="26.82" x3="37.22" y1="91.93" y2="83.24" y3="75.7"/> <curve x1="51.79" x2="69.57" x3="87.74" y1="67.72" y2="67.65" y3="75.71"/> <curve x1="101.06" x2="119.2" x3="137.85" y1="81.52" y2="97.5" y3="114.58"/> <curve x1="138.38" x2="143.08" x3="157.37" y1="79.43" y2="50.47" y3="27.66"/> <curve x1="174.85" x2="198.47" x3="224.97" y1="2.99" y2="0" y3="7.17"/> <curve x1="254.15" x2="271.99" x3="276.1" y1="16.47" y2="35.97" y3="63.12"/> <curve x1="278.42" x2="273.68" x3="266.7" y1="92.3" y2="106.87" y3="127.48"/> <curve x1="287.57" x2="301.89" x3="315.01" y1="123.08" y2="122.71" y3="123.08"/> <curve x1="331.93" x2="345.55" x3="352.83" y1="124.31" y2="131.05" y3="140.71"/> <curve x1="365.82" x2="374.32" x3="379.48" y1="157.73" y2="173.02" y3="187.03"/> <curve x1="392.47" x2="365.76" x3="328.96" y1="231.2" y2="261.44" y3="261.31"/> <line x="267.11" y="261.35"/> <curve x1="281.69" x2="294.24" x3="301.62" y1="278.44" y2="296.88" y3="318.76"/> <curve x1="305.19" x2="298.69" x3="278.8" y1="333.47" y2="366.52" y3="382.82"/> <curve x1="258.72" x2="226.6" x3="207.56" y1="398.45" y2="393.1" y3="372.94"/> <curve x1="194.93" x2="182.76" x3="173.08" y1="356.4" y2="328.2" y3="303.8"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="241.85" y="338.42"/> <curve x1="227.19" x2="217.55" x3="208.35" y1="342.54" y2="336.31" y3="322.41"/> <curve x1="196.26" x2="190.78" x3="184.82" y1="302.94" y2="281.28" y3="259.77"/> <curve x1="182.92" x2="179.18" x3="169.02" y1="252.55" y2="241.74" y3="238.01"/> <curve x1="158.53" x2="148.99" x3="139.7" y1="236.13" y2="243.49" y3="253.27"/> <curve x1="119.2" x2="109.84" x3="88.23" y1="273.89" y2="288.89" y3="300.26"/> <curve x1="75.32" x2="60.92" x3="52.14" y1="307.18" y2="306.45" y3="289.7"/> <curve x1="46.84" x2="42.97" x3="60.56" y1="279.88" y2="267.95" y3="251.73"/> <curve x1="78.73" x2="95.32" x3="104.58" y1="235.92" y2="231.96" y3="225.68"/> <curve x1="117.04" x2="122.74" x3="123.08" y1="216.72" y2="209.77" y3="201.5"/> <curve x1="122.98" x2="121.16" x3="106.99" y1="194.88" y2="186.2" y3="176.54"/> <curve x1="79.15" x2="65.53" x3="38.08" y1="159.22" y2="159.04" y3="135.67"/> <curve x1="26.34" x2="28.39" x3="36.16" y1="124.75" y2="114.43" y3="104.35"/> <curve x1="46.49" x2="59.01" x3="70.52" y1="92.44" y2="91.7" y3="98.12"/> <curve x1="92.45" x2="103.65" x3="126.28" y1="109.21" y2="126.23" y3="137.27"/> <curve x1="135.14" x2="145.59" x3="153.44" y1="141.59" y2="142.83" y3="138.39"/> <curve x1="163.93" x2="165.22" x3="166.22" y1="130.66" y2="120.52" y3="109.47"/> <curve x1="167.47" x2="173.11" x3="184.28" y1="83.25" y2="52" y3="39"/> <curve x1="194.94" x2="203.74" x3="215.44" y1="26.44" y2="27.51" y3="29.58"/> <curve x1="228.02" x2="233.67" x3="232.05" y1="32.72" y2="41.94" y3="55.62"/> <curve x1="229.58" x2="219.67" x3="214.32" y1="79.87" y2="95.57" y3="119.85"/> <curve x1="211.54" x2="210.57" x3="215.91" y1="132.71" y2="146.64" y3="153.73"/> <curve x1="220.46" x2="234.9" x3="244.04" y1="160.59" y2="159.43" y3="157.88"/> <curve x1="267.39" x2="296.14" x3="313.38" y1="155.16" y2="145.97" y3="147.65"/> <curve x1="325.49" x2="339.45" x3="341.02" y1="148.82" y2="152.74" y3="171.46"/> <curve x1="341.77" x2="337.69" x3="321.53" y1="183.68" y2="192.4" y3="197.98"/> <curve x1="300.23" x2="273.88" x3="248.83" y1="204.88" y2="202.46" y3="201.5"/> <curve x1="237.23" x2="225.29" x3="222.63" y1="200.82" y2="202.54" y3="208.21"/> <curve x1="218.84" x2="222.51" x3="225.75" y1="215.74" y2="226.27" y3="235.07"/> <curve x1="237.08" x2="251.94" x3="257.45" y1="262.22" y2="278.63" y3="307.41"/> <curve x1="259.88" x2="256.65" x3="241.85" y1="321.92" y2="334.66" y3="338.42"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="360.51" name="Readernaut" strokewidth="inherit" w="360.44"> <connections/> <foreground> <save/> <fillcolor color="#ffffff"/> <path> <move x="0" y="281.56"/> <line x="0" y="210.32"/> <curve x1="14.25" x2="27.65" x3="40.7" y1="210.18" y2="211.33" y3="212.99"/> <line x="43.48" y="211.26"/> <curve x1="26.87" x2="13.62" x3="16.53" y1="203.63" y2="180.8" y3="152.99"/> <curve x1="20.53" x2="37.66" x3="54.53" y1="124.33" y2="108.14" y3="107.99"/> <curve x1="78.05" x2="120.05" x3="165.29" y1="60.83" y2="32.76" y3="26.11"/> <curve x1="227.22" x2="273.01" x3="296.87" y1="17.75" y2="47.19" y3="74.15"/> <line x="297.17" y="63.85"/> <curve x1="289.44" x2="283.16" x3="281.98" y1="65.27" y2="51.83" y3="35.32"/> <curve x1="281.88" x2="295.74" x3="316.22" y1="17.61" y2="0" y3="0.09"/> <curve x1="333.62" x2="349.28" x3="350.52" y1="0.17" y2="11.72" y3="34.12"/> <curve x1="350.34" x2="345.05" x3="333.32" y1="47.99" y2="55.33" y3="63.36"/> <line x="333.32" y="116.22"/> <curve x1="346.96" x2="356.06" x3="352.62" y1="129.38" y2="145.86" y3="171.6"/> <curve x1="350.48" x2="343.4" x3="328.75" y1="189.07" y2="204.46" y3="210.29"/> <line x="328.33" y="212.77"/> <line x="360.44" y="210.14"/> <line x="360.44" y="281.87"/> <curve x1="330.24" x2="295.57" x3="258.49" y1="280.97" y2="286.72" y3="306.98"/> <curve x1="224.81" x2="201.53" x3="183.14" y1="325.55" y2="342.88" y3="360.51"/> <curve x1="166.16" x2="136.78" x3="106" y1="344.95" y2="323.9" y3="307.17"/> <curve x1="74.49" x2="41.62" x3="0" y1="291.07" y2="280.41" y3="281.56"/> <close/> </path> <fillstroke/> <restore/> <rect/> <stroke/> <path> <move x="144.42" y="161.32"/> <curve x1="134.47" x2="124.77" x3="124.77" y1="161.32" y2="153.03" y3="141.42"/> <curve x1="124.77" x2="133.92" x3="144.74" y1="129.7" y2="121.37" y3="121.37"/> <curve x1="153.54" x2="164.31" x3="164.31" y1="121.37" y2="128.1" y3="141.58"/> <curve x1="164.31" x2="157.38" x3="144.42" y1="150.18" y2="161.32" y3="161.32"/> <close/> <move x="121.23" y="184.31"/> <curve x1="116.26" x2="109.23" x3="109.23" y1="184.31" y2="179.79" y3="171.92"/> <curve x1="109.23" x2="113.65" x3="121.23" y1="166.17" y2="159.87" y3="159.87"/> <curve x1="129.49" x2="133.21" x3="133.21" y1="159.87" y2="165.92" y3="171.92"/> <curve x1="133.21" x2="127.42" x3="121.23" y1="179.18" y2="184.31" y3="184.31"/> <close/> </path> <fillstroke/> <path> <move x="21.28" y="270.55"/> <curve x1="51.71" x2="88.05" x3="117.28" y1="271.49" y2="281.41" y3="297.77"/> <curve x1="144.27" x2="164.43" x3="183.56" y1="312.78" y2="327.59" y3="345.55"/> <curve x1="205.89" x2="232.71" x3="263.48" y1="322.97" y2="304.73" y3="290.29"/> <curve x1="296.53" x2="320.8" x3="343.11" y1="275.22" y2="271.45" y3="270.1"/> <line x="343.11" y="227.58"/> <curve x1="298.94" x2="232.9" x3="184.72" y1="230.77" y2="247.15" y3="291.23"/> <curve x1="154.32" x2="95.7" x3="21.28" y1="267.32" y2="227.31" y3="227.77"/> <close/> <move x="61.53" y="217.96"/> <line x="72.9" y="220.59"/> <curve x1="60.9" x2="56.86" x3="88.37" y1="189.51" y2="143.89" y3="100.32"/> <curve x1="115.91" x2="160.42" x3="207.62" y1="62.07" y2="44.96" y3="52.42"/> <curve x1="243.88" x2="291.65" x3="305.18" y1="58.11" y2="87.44" y3="148.51"/> <curve x1="311.46" x2="305.22" x3="298.11" y1="183.75" y2="204.37" y3="221.15"/> <curve x1="302.48" x2="306.4" x3="309.27" y1="219.82" y2="218.76" y3="218.33"/> <curve x1="311.66" x2="312.73" x3="313.64" y1="211.87" y2="206.99" y3="202.31"/> <curve x1="324.52" x2="330.47" x3="334.54" y1="202.21" y2="194.81" y3="181.34"/> <curve x1="337.09" x2="338.01" x3="335.59" y1="171.36" y2="161.4" y3="147.73"/> <curve x1="332.85" x2="328.65" x3="315.99" y1="137.08" y2="129.04" y3="125.74"/> <line x="315.99" y="54.8"/> <curve x1="328.42" x2="333.56" x3="334.13" y1="52" y2="49.59" y3="35.36"/> <curve x1="333.95" x2="328.24" x3="315.1" y1="23.16" y2="15.17" y3="14.08"/> <curve x1="306.22" x2="295" x3="293.75" y1="13.78" y2="22.4" y3="34.91"/> <curve x1="293.45" x2="296.67" x3="305.34" y1="42.88" y2="51.96" y3="54.61"/> <line x="305.34" y="127.28"/> <curve x1="293.96" x2="272.39" x3="235.21" y1="97.68" y2="67.49" y3="50.71"/> <curve x1="202.76" x2="159.83" x3="121.73" y1="36.79" y2="36.84" y3="56.98"/> <curve x1="86.57" x2="70.61" x3="61.75" y1="78.18" y2="103.49" y3="125.96"/> <curve x1="44.63" x2="32.48" x3="31.36" y1="117.84" y2="141.12" y3="160.77"/> <curve x1="31.11" x2="33.11" x3="35.6" y1="170.48" y2="179.5" y3="185.11"/> <curve x1="40.55" x2="46.34" x3="57.03" y1="195.31" y2="202.48" y3="202.37"/> <close/> <move x="185.74" y="276.38"/> <curve x1="215.47" x2="247.2" x3="286.57" y1="252.51" y2="236.43" y3="224.46"/> <curve x1="295.22" x2="291.79" x3="277.54" y1="194.78" y2="167.32" y3="141.86"/> <curve x1="259.46" x2="221.72" x3="190.53" y1="109.78" y2="90.58" y3="89.23"/> <curve x1="152.95" x2="122.65" x3="100.81" y1="89.69" y2="105.15" y3="132.05"/> <curve x1="78.92" x2="76.88" x3="85.66" y1="165.31" y2="195.45" y3="223.9"/> <curve x1="119.75" x2="154.88" x3="185.74" y1="233.61" y2="250.95" y3="276.38"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="367.63" name="Reddit" strokewidth="inherit" w="439.9"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="214.63" y="367.63"/> <curve x1="151.55" x2="56.82" x3="37.6" y1="367.63" y2="338.32" y3="259.48"/> <curve x1="36.53" x2="36" x3="38.3" y1="247.24" y2="235.07" y3="223.25"/> <curve x1="29.97" x2="4.69" x3="3.79" y1="220.6" y2="208" y3="175.96"/> <curve x1="4.13" x2="25.97" x3="46.61" y1="150.21" y2="133" y3="129.3"/> <curve x1="65.31" x2="86" x3="96.62" y1="125.66" y2="134.99" y3="148.95"/> <curve x1="135.23" x2="174.8" x3="211.5" y1="125.63" y2="118.78" y3="117.64"/> <line x="226.36" y="20.65"/> <curve x1="226.85" x2="229.72" x3="233.71" y1="17.4" y2="15.79" y3="16.82"/> <line x="301.93" y="32.16"/> <curve x1="309.92" x2="325.48" x3="347.63" y1="11.96" y2="1.38" y3="0.36"/> <curve x1="364.26" x2="392.21" x3="392.21" y1="0" y2="14.58" y3="49.41"/> <curve x1="392.21" x2="377.63" x3="346.51" y1="64.75" y2="92.39" y3="92.39"/> <curve x1="331.69" x2="317.76" x3="307.05" y1="92.39" y2="87.22" y3="71.46"/> <curve x1="301.91" x2="299.62" x3="300.02" y1="63.22" y2="53.23" y3="41.58"/> <line x="234.67" y="26.56"/> <line x="221.41" y="117.48"/> <curve x1="272.87" x2="313.96" x3="340.28" y1="118.2" y2="134.19" y3="151.99"/> <curve x1="350.1" x2="366.99" x3="384.54" y1="137.52" y2="128.5" y3="128.5"/> <curve x1="407.95" x2="434.87" x3="434.87" y1="128.5" y2="147.99" y3="177.4"/> <curve x1="434.87" x2="415" x3="394.78" y1="202.65" y2="219.33" y3="224.99"/> <curve x1="397.5" x2="396.09" x3="387.41" y1="245.63" y2="262.32" y3="281.57"/> <curve x1="353.68" x2="277.19" x3="214.63" y1="345.65" y2="366.89" y3="367.63"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="345.55" y="83.61"/> <curve x1="330.32" x2="309.28" x3="309.28" y1="83.61" y2="71.79" y3="45.26"/> <curve x1="309.28" x2="325.03" x3="346.35" y1="27.86" y2="10.11" y3="10.11"/> <curve x1="368.26" x2="382.78" x3="382.78" y1="10.11" y2="28.05" y3="46.22"/> <curve x1="382.78" x2="367.07" x3="345.55" y1="66.24" y2="83.61" y3="83.61"/> <close/> <move x="348.43" y="157.26"/> <curve x1="358.79" x2="392.48" x3="416.17" y1="139.11" y2="126.7" y3="153.75"/> <curve x1="439.9" x2="411.98" x3="392.05" y1="183.9" y2="214.24" y3="214.94"/> <curve x1="381.21" x2="368.11" x3="348.43" y1="185.91" y2="173.53" y3="157.26"/> <close/> <move x="41.35" y="214.02"/> <curve x1="26.85" x2="0" x3="22.07" y1="209.57" y2="187.46" y3="153.67"/> <curve x1="37.03" x2="72.19" x3="88.16" y1="134.27" y2="131.7" y3="154.65"/> <curve x1="60.78" x2="46.53" x3="41.35" y1="174.47" y2="196.58" y3="214.02"/> <close/> <move x="214.85" y="357.15"/> <curve x1="176.46" x2="123.14" x3="82.88" y1="357.15" y2="347.66" y3="313.37"/> <curve x1="69.64" x2="46.1" x3="45.97" y1="300.38" y2="279.01" y3="240.67"/> <curve x1="45.97" x2="64.85" x3="117.71" y1="212.35" y2="174.24" y3="148.48"/> <curve x1="154.44" x2="173.17" x3="233.87" y1="132.02" y2="127.7" y3="127.7"/> <curve x1="259.88" x2="305.49" x3="337.56" y1="127.7" y2="139.86" y3="161.74"/> <curve x1="361.36" x2="386.62" x3="386.62" y1="179.01" y2="204.6" y3="242.43"/> <curve x1="386.62" x2="366.49" x3="322.38" y1="273.85" y2="307.4" y3="332.06"/> <curve x1="292.61" x2="260.65" x3="214.85" y1="347.63" y2="357.15" y3="357.15"/> <close/> </path> <fill/> <fillcolor color="#000000"/> <path> <move x="137.2" y="294.19"/> <curve x1="135" x2="133.84" x3="139.12" y1="291.35" y2="285.35" y3="279.89"/> <curve x1="144.32" x2="149.93" x3="153.1" y1="276.06" y2="277.47" y3="279.73"/> <curve x1="169.08" x2="199" x3="214.85" y1="295.12" y2="298.19" y3="298.19"/> <curve x1="259.71" x2="273.02" x3="284.29" y1="298.19" y2="287.99" y3="279.84"/> <curve x1="289.75" x2="296.37" x3="299.29" y1="275.93" y2="277.65" y3="281.01"/> <curve x1="302.57" x2="303.05" x3="299.86" y1="284.62" y2="290.71" y3="294.54"/> <curve x1="285.26" x2="260.93" x3="218.69" y1="308.89" y2="318.59" y3="319.76"/> <curve x1="187.4" x2="153.16" x3="137.2" y1="319.76" y2="311.19" y3="294.19"/> <close/> </path> <fill/> <fillcolor color="#ed4523"/> <path> <move x="288.75" y="235.31"/> <curve x1="275.59" x2="263.35" x3="263.35" y1="235.31" y2="224.61" y3="210.63"/> <curve x1="263.35" x2="275.07" x3="288.03" y1="197.41" y2="185.38" y3="185.38"/> <curve x1="301.99" x2="313.12" x3="313.12" y1="185.38" y2="196.43" y3="211.35"/> <curve x1="313.12" x2="302.66" x3="288.75" y1="221.6" y2="235.31" y3="235.31"/> <close/> <move x="149.5" y="235.47"/> <curve x1="137.95" x2="124.5" x3="124.5" y1="235.47" y2="224.95" y3="209.83"/> <curve x1="124.5" x2="133.12" x3="149.66" y1="200.49" y2="185.62" y3="185.62"/> <curve x1="164.04" x2="174.67" x3="174.67" y1="185.62" y2="198.04" y3="210.71"/> <curve x1="174.67" x2="163.77" x3="149.5" y1="222.05" y2="235.47" y3="235.47"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="407.88" name="RSS" strokewidth="inherit" w="408.2"> <connections/> <foreground> <path> <move x="325.67" y="407.7"/> <curve x1="325.88" x2="298.36" x3="226.6" y1="332" y2="244.12" y3="173.52"/> <curve x1="159.08" x2="80.94" x3="0.14" y1="109.76" y2="82.92" y3="82.25"/> <line x="0.14" y="0.56"/> <curve x1="120.47" x2="222.25" x3="288.25" y1="0" y2="53.61" y3="119.9"/> <curve x1="371.41" x2="408.2" x3="407.55" y1="200.47" y2="312.02" y3="407.7"/> <close/> <move x="203.63" y="407.7"/> <curve x1="203.03" x2="183.24" x3="144.22" y1="351.61" y2="303.88" y3="264.36"/> <curve x1="110.21" x2="64.25" x3="0.14" y1="230.46" y2="205.5" y3="204.28"/> <line x="0.14" y="122.99"/> <curve x1="66.01" x2="139.27" x3="200.44" y1="121.93" y2="145.58" y3="204.68"/> <curve x1="265.76" x2="285.33" x3="285.32" y1="267.4" y2="348.9" y3="407.7"/> <close/> <move x="51.03" y="407.88"/> <curve x1="26.83" x2="0" x3="0" y1="407.88" y2="387.77" y3="358.11"/> <curve x1="0" x2="23.92" x3="49.72" y1="327.62" y2="306.14" y3="306.14"/> <curve x1="84.4" x2="102.49" x3="102.49" y1="306.14" y2="332.95" y3="356.94"/> <curve x1="102.49" x2="78.27" x3="51.03" y1="385.73" y2="407.88" y3="407.88"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="350.97" name="Scoopit" strokewidth="inherit" w="290.98"> <connections/> <foreground> <path> <move x="224.21" y="346.45"/> <line x="224.21" y="282"/> <line x="290.98" y="282"/> <line x="290.98" y="346.45"/> <close/> <move x="232.79" y="251.38"/> <line x="224.21" y="112.3"/> <line x="224.21" y="0"/> <line x="290.98" y="0"/> <line x="290.98" y="112.3"/> <line x="282.28" y="251.38"/> <close/> <move x="0" y="57.28"/> <line x="0" y="0"/> <line x="66.15" y="0"/> <line x="66.15" y="57.28"/> <close/> <move x="0" y="346.45"/> <line x="0" y="87.67"/> <line x="99.21" y="87.67"/> <line x="99.21" y="0"/> <line x="166.15" y="0"/> <line x="166.15" y="87.67"/> <line x="204.52" y="87.67"/> <line x="204.52" y="133.74"/> <line x="166.15" y="133.74"/> <line x="166.15" y="277.47"/> <curve x1="166.15" x2="181.78" x3="204.52" y1="301.56" y2="302.75" y3="299.51"/> <line x="204.52" y="346.17"/> <curve x1="184.86" x2="160.7" x3="133.6" y1="348.91" y2="350.97" y3="347.19"/> <curve x1="121.96" x2="99.21" x3="99.21" y1="345.9" y2="338.98" y3="293.64"/> <line x="99.21" y="133.74"/> <line x="66.15" y="133.74"/> <line x="66.15" y="346.45"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="346.37" name="Scribd" strokewidth="inherit" w="289.24"> <connections/> <foreground> <path> <move x="82.8" y="272.93"/> <curve x1="104.02" x2="137.43" x3="159.34" y1="286.55" y2="287.75" y3="273.25"/> <curve x1="172.59" x2="177.34" x3="172.6" y1="264.04" y2="251.57" y3="237.62"/> <curve x1="168.88" x2="156.18" x3="137.45" y1="227.26" y2="219.18" y3="210.46"/> <curve x1="109.29" x2="75.44" x3="53.24" y1="197.22" y2="187.25" y3="170.03"/> <curve x1="30.22" x2="17.63" x3="16.02" y1="152.59" y2="138.86" y3="99.09"/> <curve x1="15.16" x2="33.01" x3="66.03" y1="71.4" y2="34.54" y3="16.97"/> <curve x1="97.21" x2="130.7" x3="158.7" y1="0" y2="2.22" y3="8.34"/> <curve x1="196.34" x2="229.31" x3="236.99" y1="17.02" y2="34.7" y3="69.05"/> <curve x1="242.43" x2="229.97" x3="200.24" y1="93.76" y2="118.74" y3="120.66"/> <curve x1="181.82" x2="155.53" x3="159.66" y1="121.82" y2="107.91" y3="72.25"/> <curve x1="142.41" x2="124.29" x3="105.33" y1="63.7" y2="62.16" y3="68.41"/> <curve x1="87.72" x2="83.76" x3="85.68" y1="75.89" y2="89.41" y3="103.09"/> <curve x1="88.99" x2="104.8" x3="115.56" y1="119.83" y2="126.8" y3="131.05"/> <curve x1="144.6" x2="174.52" x3="202.8" y1="141.85" y2="146.88" y3="170.03"/> <curve x1="233.58" x2="239.28" x3="239.23" y1="196.34" y2="204.93" y3="238.42"/> <curve x1="228.84" x2="210.47" x3="196.09" y1="240.84" y2="246.55" y3="271.33"/> <curve x1="188.42" x2="189.5" x3="197.05" y1="287.22" y2="309.28" y3="322.62"/> <curve x1="174.89" x2="139.36" x3="97.5" y1="338.02" y2="346.37" y3="340.2"/> <curve x1="74.32" x2="43.64" x3="23.37" y1="337.03" y2="328.84" y3="307.44"/> <curve x1="10.42" x2="0" x3="8.51" y1="292.84" y2="273.85" y3="244.17"/> <curve x1="15.05" x2="34.35" x3="49.41" y1="226.38" y2="217.98" y3="219.88"/> <curve x1="82.15" x2="91.26" x3="82.8" y1="225.33" y2="254" y3="272.93"/> <close/> </path> <fillstroke/> <fillcolor color="#5dabc8"/> <path> <move x="209.67" y="296.42"/> <curve x1="209.67" x2="223.36" x3="250.09" y1="278.36" y2="256.95" y3="256.95"/> <curve x1="276.12" x2="289.24" x3="289.24" y1="256.95" y2="278.91" y3="295.94"/> <curve x1="289.24" x2="270.5" x3="248.65" y1="320.07" y2="336.2" y3="336.2"/> <curve x1="228.22" x2="209.67" x3="209.67" y1="336.2" y2="317.73" y3="296.42"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="388.53" name="Segnalo" strokewidth="inherit" w="402.78"> <connections/> <foreground> <fillcolor color="#f0a722"/> <path> <move x="243.96" y="228.12"/> <curve x1="239.7" x2="230.6" x3="198.42" y1="206.35" y2="183.22" y3="166.76"/> <curve x1="170.83" x2="139.26" x3="121.41" y1="153.64" y2="160.61" y3="176.51"/> <close/> <move x="280.71" y="331.41"/> <curve x1="255.68" x2="220.24" x3="158.32" y1="360.68" y2="387.42" y3="388.53"/> <curve x1="83.93" x2="0" x3="6.92" y1="388.53" y2="324.97" y3="218.65"/> <curve x1="13.57" x2="75.06" x3="163.54" y1="149.12" y2="79.78" y3="79.78"/> <curve x1="253.29" x2="315.3" x3="315.3" y1="79.78" y2="158.33" y3="230.23"/> <curve x1="315.3" x2="305.86" x3="295.57" y1="268.45" y2="290.28" y3="308.8"/> <line x="93.29" y="222.84"/> <curve x1="86.14" x2="83.62" x3="106.71" y1="242" y2="268.12" y3="301.77"/> <curve x1="141.83" x2="193.52" x3="222.79" y1="345.75" y2="338.27" y3="307.69"/> <close/> </path> <fill/> <fillcolor color="#64e253"/> <path> <move x="207.6" y="78.2"/> <curve x1="194.05" x2="174.22" x3="161.36" y1="74.56" y2="67.21" y3="49.97"/> <curve x1="153.69" x2="148.22" x3="148.87" y1="39.01" y2="17.43" y3="0"/> <curve x1="164.8" x2="188.95" x3="195.87" y1="5.67" y2="18.75" y3="29.51"/> <curve x1="204.46" x2="208" x3="207.6" y1="44.5" y2="59.29" y3="78.2"/> <close/> <move x="227.5" y="84.8"/> <curve x1="255.29" x2="286" x3="313.46" y1="55.09" y2="34.08" y3="29.99"/> <curve x1="348.05" x2="383.11" x3="402.78" y1="24.97" y2="37.68" y3="47.89"/> <curve x1="381.38" x2="353.47" x3="321.93" y1="72.87" y2="93.06" y3="101.57"/> <curve x1="296.22" x2="258.19" x3="227.5" y1="106.38" y2="100.42" y3="84.8"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="333.64" name="Sina" strokewidth="inherit" w="464.14"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="360.92" y="166.56"/> <curve x1="381.72" x2="420.59" x3="445.51" y1="162.36" y2="158.25" y3="166.15"/> <curve x1="457.16" x2="464.14" x3="459.04" y1="171.05" y2="180.42" y3="197.16"/> <line x="444.76" y="243.59"/> <curve x1="433.79" x2="415.04" x3="390.28" y1="254.95" y2="264.91" y3="270.21"/> <curve x1="377.18" x2="350.85" x3="334" y1="272.38" y2="276.32" y3="264.42"/> <curve x1="323.44" x2="325.62" x3="338.85" y1="255.16" y2="236.81" y3="221.86"/> <curve x1="354.81" x2="384.71" x3="409.46" y1="206.37" y2="202.53" y3="201.45"/> <line x="403.55" y="221.34"/> <curve x1="393.34" x2="385.91" x3="377.88" y1="222.08" y2="222.37" y3="225.92"/> <curve x1="368.15" x2="367.66" x3="366.94" y1="231.01" y2="236.66" y3="241.19"/> <curve x1="366.06" x2="374.66" x3="383.4" y1="247.81" y2="250.03" y3="250.1"/> <curve x1="393.59" x2="402.08" x3="408.29" y1="250.11" y2="245.99" y3="242.31"/> <line x="420.92" y="200.06"/> <curve x1="422.09" x2="422.6" x3="411.94" y1="194.45" y2="188.54" y3="186.15"/> <curve x1="393.21" x2="373.67" x3="352.95" y1="182.5" y2="184.63" y3="192.05"/> <close/> <move x="214.49" y="175.21"/> <curve x1="239.07" x2="283.4" x3="305.58" y1="165.18" y2="158.5" y3="162.88"/> <curve x1="325.74" x2="331.7" x3="325.47" y1="166.56" y2="177.36" y3="200.36"/> <line x="303.18" y="272.16"/> <line x="265.39" y="272.16"/> <line x="284.57" y="210.36"/> <curve x1="285.75" x2="288.97" x3="281.44" y1="205.69" y2="193.8" y3="190.28"/> <curve x1="269.8" x2="256.95" x3="246.37" y1="185.91" y2="189.84" y3="194.72"/> <line x="222.42" y="272.16"/> <line x="184.64" y="272.16"/> <close/> <move x="191.56" y="176.68"/> <curve x1="172.96" x2="144.73" x3="129.37" y1="230.95" y2="315.09" y3="330.21"/> <curve x1="126.06" x2="123.64" x3="123.32" y1="333.64" y2="333.46" y3="328.58"/> <curve x1="121.81" x2="125.55" x3="129.41" y1="313.84" y2="289.67" y3="265.36"/> <curve x1="134.93" x2="141.5" x3="148.28" y1="236.14" y2="205.51" y3="174.61"/> <curve x1="162.47" x2="179.84" x3="191.56" y1="178.77" y2="178.65" y3="176.68"/> <close/> <move x="0" y="264.99"/> <line x="9.03" y="235.67"/> <curve x1="17.95" x2="27.67" x3="42.82" y1="243.26" y2="248.28" y3="250.53"/> <curve x1="58.45" x2="66.74" x3="71.98" y1="252.2" y2="251.16" y3="249.01"/> <curve x1="78.53" x2="79.03" x3="79.33" y1="246.25" y2="243.37" y3="241.1"/> <curve x1="79.66" x2="78.65" x3="73.02" y1="239.14" y2="236.42" y3="235.03"/> <curve x1="58.43" x2="47.9" x3="37.47" y1="230.91" y2="231.62" y3="227.6"/> <curve x1="31.24" x2="19.48" x3="19.17" y1="225.2" y2="220.91" y3="204.43"/> <curve x1="20.75" x2="30.46" x3="48.57" y1="190.68" y2="178.54" y3="170.48"/> <curve x1="74.82" x2="111.97" x3="133.69" y1="158.63" y2="161.04" y3="169.92"/> <line x="125.23" y="199"/> <curve x1="119.05" x2="111.31" x3="93.15" y1="193.15" y2="187.71" y3="185.02"/> <curve x1="84.12" x2="73.69" x3="64.63" y1="184.48" y2="183.87" y3="188.61"/> <curve x1="59.97" x2="59.85" x3="60.4" y1="191.55" y2="194.99" y3="197"/> <curve x1="61.34" x2="63.37" x3="69.26" y1="199.76" y2="201" y3="202.2"/> <curve x1="81.87" x2="93.85" x3="105.45" y1="205.19" y2="206.18" y3="209.79"/> <curve x1="113.12" x2="123.23" x3="119.91" y1="212.95" y2="219.13" y3="234.63"/> <curve x1="116.85" x2="105.73" x3="82.13" y1="248.77" y2="260.91" y3="269.06"/> <curve x1="63.64" x2="25.55" x3="0" y1="275.44" y2="276.74" y3="264.99"/> <close/> </path> <fill/> <fillcolor color="#d51f2d"/> <path> <move x="180.65" y="165.13"/> <curve x1="161.37" x2="127.43" x3="106.25" y1="165.13" y2="161.27" y3="143.03"/> <curve x1="88.89" x2="86.26" x3="102" y1="127.35" y2="102.89" y3="71.93"/> <curve x1="105.46" x2="110.09" x3="118.4" y1="62.29" y2="48.08" y3="39.94"/> <curve x1="119.52" x2="122.93" x3="123.51" y1="38.74" y2="38.04" y3="41.86"/> <curve x1="123.89" x2="122.39" x3="123.49" y1="44.45" y2="50.63" y3="54.19"/> <curve x1="124.62" x2="126.33" x3="128.62" y1="57.68" y2="58.96" y3="58.48"/> <curve x1="130.67" x2="132.63" x3="136.82" y1="58.05" y2="57.65" y3="45.26"/> <curve x1="139.12" x2="144.99" x3="149.66" y1="38.13" y2="27.29" y3="23.21"/> <curve x1="152.56" x2="154.68" x3="157.91" y1="20.79" y2="19.31" y3="20.71"/> <curve x1="159.25" x2="159.4" x3="159.28" y1="21.61" y2="24.41" y3="26.61"/> <curve x1="159.15" x2="158.6" x3="158.43" y1="30.22" y2="33.28" y3="37.31"/> <curve x1="158.37" x2="159.94" x3="163.13" y1="40.66" y2="43.32" y3="43.14"/> <curve x1="168.88" x2="169.37" x3="173.66" y1="42.69" y2="40.91" y3="35.52"/> <curve x1="188.3" x2="197.15" x3="207.7" y1="12.5" y2="2.88" y3="0.67"/> <curve x1="210.85" x2="214.63" x3="215.62" y1="0.12" y2="0" y3="2.63"/> <curve x1="216.46" x2="216.23" x3="215.28" y1="5.71" y2="7.93" y3="10.92"/> <curve x1="213.11" x2="210.3" x3="209.43" y1="17.78" y2="23.52" y3="28.55"/> <curve x1="207.7" x2="209.92" x3="212.52" y1="37.06" y2="38.4" y3="39.61"/> <curve x1="217.21" x2="221.98" x3="227.59" y1="40.9" y2="37.6" y3="30.54"/> <curve x1="236.28" x2="247.66" x3="255.43" y1="20.65" y2="11.22" y3="8.19"/> <curve x1="259.85" x2="263.49" x3="265.34" y1="6.43" y2="7.05" y3="9.13"/> <curve x1="266.54" x2="265.67" x3="263.17" y1="11.09" y2="16.59" y3="19.88"/> <curve x1="260.44" x2="256.45" x3="255.02" y1="23.42" y2="31.71" y3="35.81"/> <curve x1="253.45" x2="254.11" x3="256.13" y1="41.17" y2="43.98" y3="45.06"/> <curve x1="258.91" x2="260.34" x3="263.8" y1="46.13" y2="46.5" y3="44.62"/> <curve x1="271.28" x2="280.77" x3="294.45" y1="40.46" y2="31.19" y3="27.33"/> <curve x1="297.54" x2="302.85" x3="305.19" y1="26.56" y2="25.86" y3="28.32"/> <curve x1="306.44" x2="306.69" x3="303.03" y1="30.12" y2="33.57" y3="39.21"/> <curve x1="299.92" x2="295.53" x3="291.9" y1="44.22" y2="48.37" y3="53.94"/> <curve x1="287.82" x2="288.78" x3="291.37" y1="59.88" y2="62.95" y3="68.1"/> <curve x1="295.29" x2="297.1" x3="297.16" y1="76.14" y2="85.49" y3="95.92"/> <curve x1="297.1" x2="292.37" x3="252.2" y1="104.37" y2="130.81" y3="149.49"/> <curve x1="235.12" x2="205.16" x3="180.65" y1="157.66" y2="164.7" y3="165.13"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="186.37" y="154.76"/> <curve x1="168.85" x2="141.02" x3="125.43" y1="155.92" y2="153.05" y3="137.09"/> <curve x1="111.58" x2="111.79" x3="125.19" y1="123.02" y2="107.83" y3="91.63"/> <curve x1="143.3" x2="172.59" x3="194.13" y1="71.8" y2="64.8" y3="65.03"/> <curve x1="211.98" x2="234.55" x3="249.41" y1="64.53" y2="68.33" y3="83.51"/> <curve x1="260.18" x2="267.04" x3="236.67" y1="94.29" y2="117.3" y3="138.29"/> <curve x1="225.24" x2="209.11" x3="186.37" y1="146.28" y2="153.31" y3="154.76"/> <close/> </path> <fill/> <fillcolor color="#000000"/> <path> <move x="182.83" y="114.8"/> <curve x1="184.49" x2="185.8" x3="185.42" y1="114.28" y2="112.73" y3="109.68"/> <curve x1="184.9" x2="181.84" x3="180.47" y1="106.83" y2="106.94" y3="108.09"/> <curve x1="179.37" x2="178.76" x3="178.63" y1="109.15" y2="110.46" y3="111.88"/> <curve x1="178.51" x2="180.72" x3="182.83" y1="114.19" y2="115.3" y3="114.8"/> <close/> <move x="170" y="131.85"/> <curve x1="174.32" x2="179.2" x3="179.51" y1="130.61" y2="126.31" y3="119.67"/> <curve x1="179.63" x2="177.35" x3="171.44" y1="115.07" y2="110.09" y3="109.72"/> <curve x1="165.17" x2="160.98" x3="158.78" y1="109.28" y2="112.68" y3="117.91"/> <curve x1="155.37" x2="161.78" x3="170" y1="128.38" y2="133.45" y3="131.85"/> <close/> <move x="185.16" y="143.55"/> <curve x1="176.46" x2="163.69" x3="154.22" y1="146.92" y2="146.25" y3="138.96"/> <curve x1="149.02" x2="143.56" x3="146.03" y1="134.1" y2="126.29" y3="112.16"/> <curve x1="148.26" x2="154.72" x3="167.37" y1="103.19" y2="93.55" y3="86.68"/> <curve x1="178.29" x2="196.24" x3="206.93" y1="81" y2="81.16" y3="94.79"/> <curve x1="213.67" x2="216.48" x3="185.16" y1="103.83" y2="130.95" y3="143.55"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="329.92" name="Sitejot" strokewidth="inherit" w="385.79"> <connections/> <foreground> <fillcolor color="#211f1f"/> <path> <move x="40.9" y="243.2"/> <line x="12.47" y="157.29"/> <curve x1="31.01" x2="51.75" x3="72.95" y1="173.49" y2="185.91" y3="190.37"/> <curve x1="96.02" x2="112.48" x3="121.28" y1="194.61" y2="188.97" y3="171.91"/> <curve x1="127.63" x2="120.27" x3="103.3" y1="158.21" y2="143.19" y3="137.96"/> <curve x1="80.47" x2="46.67" x3="26.76" y1="131.24" y2="119.88" y3="103.97"/> <curve x1="5.42" x2="0" x3="12.29" y1="86.21" y2="60.72" y3="38.25"/> <curve x1="28.12" x2="58.52" x3="89.62" y1="12.02" y2="1.76" y3="0.06"/> <curve x1="137.23" x2="173.37" x3="195.98" y1="0" y2="20.77" y3="38.97"/> <line x="201.47" y="6.34"/> <line x="227.74" y="90.33"/> <curve x1="212.08" x2="195.42" x3="173.49" y1="75.89" y2="62.26" y3="52.88"/> <curve x1="162.85" x2="151.8" x3="145.15" y1="48.55" y2="50.93" y3="61.04"/> <curve x1="138.22" x2="146.8" x3="156.99" y1="74.18" y2="81.78" y3="89.39"/> <curve x1="178.3" x2="194.47" x3="234.25" y1="103.98" y2="98.64" y3="120.82"/> <curve x1="256.26" x2="270.53" x3="264.36" y1="133.41" y2="150.37" y3="178.86"/> <curve x1="260.46" x2="252.49" x3="230.19" y1="193.95" y2="206.67" y3="221.34"/> <curve x1="205.07" x2="157" x3="121.12" y1="237.34" y2="247.59" y3="240.52"/> <curve x1="99.99" x2="65.85" x3="42.89" y1="236.61" y2="222.85" y3="203.56"/> <close/> </path> <fill/> <fillcolor color="#cf1f27"/> <path> <move x="124.71" y="182.22"/> <line x="248.7" y="168"/> <curve x1="240.75" x2="226.96" x3="223.62" y1="175.65" y2="188" y3="211.62"/> <curve x1="222.76" x2="226.83" x3="245.99" y1="224.34" y2="240.65" y3="241.18"/> <curve x1="264.36" x2="278.18" x3="288.17" y1="241.04" y2="233.95" y3="215.77"/> <curve x1="303.51" x2="291.68" x3="270.75" y1="186.9" y2="142.7" y3="121.34"/> <line x="182.55" y="106.64"/> <line x="385.79" y="79.8"/> <line x="315.82" y="116.04"/> <curve x1="334.22" x2="344.09" x3="355.23" y1="135.29" y2="142.89" y3="152.88"/> <curve x1="374.68" x2="379.39" x3="377.82" y1="171.08" y2="197.98" y3="218.57"/> <curve x1="376.73" x2="363.68" x3="341.47" y1="242.1" y2="272.94" y3="292.92"/> <curve x1="316.63" x2="252.44" x3="198.21" y1="313.45" y2="329.92" y3="320.75"/> <curve x1="164.98" x2="131.13" x3="126.95" y1="314.68" y2="298.08" y3="253.8"/> <curve x1="125.95" x2="152.62" x3="184.79" y1="225.76" y2="203.87" y3="193.88"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="393.38" name="Skype" strokewidth="inherit" w="387.73"> <connections/> <foreground> <path> <move x="224.53" y="364.44"/> <curve x1="168.69" x2="110.49" x3="60.36" y1="375.05" y2="359.47" y3="306.12"/> <curve x1="35.88" x2="13.36" x3="21.61" y1="276.87" y2="232.79" y3="162.32"/> <curve x1="4.7" x2="0" x3="43.58" y1="127.27" y2="78.51" y3="37.69"/> <curve x1="89.5" x2="135" x3="161.42" y1="0" y2="8.24" y3="24.11"/> <curve x1="207.07" x2="266.54" x3="311.21" y1="11.98" y2="24.61" y3="65.45"/> <curve x1="357.22" x2="376.36" x3="364.9" y1="109.35" y2="168.27" y3="225.06"/> <curve x1="383.53" x2="387.73" x3="348.36" y1="262.28" y2="302.09" y3="348.46"/> <curve x1="324.95" x2="268.71" x3="224.53" y1="375.51" y2="393.38" y3="364.44"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="106.9" y="257.39"/> <curve x1="104.07" x2="104.07" x3="112.89" y1="251.32" y2="238.13" y3="231.42"/> <curve x1="123.72" x2="137.64" x3="141.85" y1="223.53" y2="228.55" y3="235.82"/> <curve x1="152.45" x2="162.97" x3="192.58" y1="250.93" y2="265.38" y3="265.77"/> <curve x1="214.23" x2="223.18" x3="228.13" y1="265.21" y2="259.3" y3="253.19"/> <curve x1="234.19" x2="235.71" x3="233.92" y1="245.93" y2="239.08" y3="233.22"/> <curve x1="231.05" x2="228.46" x3="216.14" y1="224.19" y2="220.88" y3="216.04"/> <curve x1="197.15" x2="173.93" x3="152.03" y1="209.45" y2="206.26" y3="199.87"/> <curve x1="141.83" x2="121.13" x3="111.49" y1="197.28" y2="188.72" y3="170.51"/> <curve x1="103.45" x2="103.09" x3="118.88" y1="153.85" y2="128.31" y3="107.99"/> <curve x1="138.07" x2="173.57" x3="201.76" y1="83.86" y2="79.51" y3="80.83"/> <curve x1="215.34" x2="252.93" x3="268.67" y1="81.37" y2="90.52" y3="114.19"/> <curve x1="277.49" x2="272.24" x3="265.88" y1="131.1" y2="138.22" y3="143.74"/> <curve x1="258.36" x2="244.1" x3="235.52" y1="149.53" y2="150.53" y3="139.95"/> <curve x1="227.68" x2="216.42" x3="193.58" y1="128.81" y2="118.56" y3="116.98"/> <curve x1="179.54" x2="164.55" x3="155.03" y1="115.77" y2="116.67" y3="129.36"/> <curve x1="146.53" x2="156.29" x3="167.21" y1="145.74" y2="156.14" y3="159.92"/> <curve x1="191.93" x2="222.75" x3="240.31" y1="168.3" y2="172.13" y3="178.1"/> <curve x1="260.54" x2="275.58" x3="279.46" y1="183.56" y2="200.21" y3="216.04"/> <curve x1="287.67" x2="270.69" x3="249.3" y1="257.22" y2="274.93" y3="288.54"/> <curve x1="236.12" x2="197.64" x3="163.62" y1="295.87" y2="304.66" y3="296.33"/> <curve x1="138.97" x2="119.38" x3="106.9" y1="289.78" y2="282.11" y3="257.39"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="351.41" name="Skyrock" strokewidth="inherit" w="338.87"> <connections/> <foreground> <save/> <fillcolor color="#000000"/> <path> <move x="0" y="233.05"/> <line x="41.84" y="233.05"/> <curve x1="44.4" x2="55.68" x3="71.68" y1="252.54" y2="261.41" y3="264.71"/> <curve x1="91.17" x2="104.7" x3="115.86" y1="267.96" y2="267.5" y3="260.08"/> <curve x1="125.56" x2="126.31" x3="126.07" y1="252.56" y2="244.3" y3="240.35"/> <curve x1="125.21" x2="114.22" x3="96.31" y1="229.72" y2="222.08" y3="216.26"/> <curve x1="64.24" x2="38.58" x3="22.92" y1="206.13" y2="203.88" y3="192.93"/> <curve x1="7.87" x2="0.74" x3="4.09" y1="181.17" y2="160.98" y3="137.21"/> <curve x1="7.13" x2="15.79" x3="49.21" y1="119.03" y2="99.63" y3="89.62"/> <curve x1="81.42" x2="114.54" x3="133.34" y1="81.6" y2="86.43" y3="98.65"/> <curve x1="154.68" x2="158.07" x3="159.91" y1="115.44" y2="132.89" y3="150.82"/> <line x="132.85" y="150.82"/> <curve x1="125.5" x2="118.57" x3="114.34" y1="150.59" y2="144.24" y3="135.23"/> <curve x1="108.6" x2="97.38" x3="86.88" y1="125.11" y2="122.02" y3="120.58"/> <curve x1="76.22" x2="60.47" x3="52.41" y1="119.42" y2="120.25" y3="127.27"/> <curve x1="46.48" x2="42.19" x3="45.58" y1="132.69" y2="141.87" y3="151.14"/> <curve x1="52.4" x2="84.59" x3="100.48" y1="166.01" y2="170.8" y3="174.92"/> <curve x1="124.29" x2="145.85" x3="157.26" y1="181.81" y2="186.56" y3="202.38"/> <curve x1="169.51" x2="169.63" x3="160.31" y1="221.24" y2="246.3" y3="266.33"/> <curve x1="146.8" x2="112.04" x3="66.11" y1="294.12" y2="304.76" y3="300.89"/> <curve x1="25.29" x2="3.92" x3="0" y1="294.55" y2="274.85" y3="233.05"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="174.11" y="280.53"/> <curve x1="179.33" x2="182.88" x3="184.45" y1="273.27" y2="262.11" y3="252.53"/> <line x="217.3" y="276.76"/> <line x="193.32" y="205.99"/> <line x="252.73" y="163.11"/> <line x="179.67" y="163.11"/> <curve x1="179.43" x2="175.58" x3="166.38" y1="138.78" y2="122.19" y3="107.18"/> <curve x1="160.02" x2="146.8" x3="132.36" y1="95.85" y2="83.53" y3="76.35"/> <line x="157.03" y="0"/> <line x="200.63" y="135.03"/> <line x="338.87" y="135.03"/> <line x="225.8" y="217.83"/> <line x="271.46" y="351.41"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="310.5" name="Slashdot" strokewidth="inherit" w="262.41"> <connections/> <foreground> <path> <move x="207.99" y="310.38"/> <curve x1="181.85" x2="154.21" x3="154.21" y1="310.38" y2="288.69" y3="257.09"/> <curve x1="154.21" x2="176.88" x3="207.99" y1="228.96" y2="202.34" y3="202.34"/> <curve x1="240.33" x2="262.41" x3="262.41" y1="202.34" y2="228.81" y3="257.09"/> <curve x1="262.41" x2="238.94" x3="207.99" y1="286.36" y2="310.38" y3="310.38"/> <close/> <move x="0" y="310.5"/> <line x="161.36" y="0"/> <line x="229.85" y="0"/> <line x="68.35" y="310.5"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="320.57" name="SMS" strokewidth="inherit" w="346.19"> <connections/> <foreground> <path> <move x="34.27" y="320.57"/> <curve x1="55.6" x2="67.22" x3="74.45" y1="300.85" y2="278.57" y3="256.22"/> <curve x1="29.51" x2="3.29" x3="0.88" y1="231.44" y2="192.03" y3="149.08"/> <curve x1="0" x2="31.71" x3="85.67" y1="96.64" y2="52.54" y3="26.87"/> <curve x1="145.67" x2="215.03" x3="270.56" y1="0" y2="2.36" y3="31.5"/> <curve x1="317.09" x2="346.19" x3="346.19" y1="57.02" y2="98.23" y3="144.52"/> <curve x1="346.14" x2="324.68" x3="250.94" y1="181.96" y2="236.83" y3="266.35"/> <curve x1="214.26" x2="174.34" x3="140.35" y1="281.19" y2="283.79" y3="278.4"/> <curve x1="104.44" x2="68.54" x3="34.27" y1="305.66" y2="316.46" y3="320.57"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="32.13" y="193.06"/> <curve x1="47.31" x2="61.69" x3="77.05" y1="199.57" y2="201.01" y3="199.33"/> <curve x1="89.63" x2="100.58" x3="105.88" y1="197.59" y2="192.05" y3="181.35"/> <curve x1="109.17" x2="109.56" x3="102.68" y1="174.38" y2="162.27" y3="154.82"/> <curve x1="96.63" x2="86.61" x3="79.22" y1="148.24" y2="145.74" y3="143.88"/> <curve x1="72.58" x2="64.99" x3="59.94" y1="142.38" y2="141.44" y3="138.98"/> <curve x1="56.86" x2="55.03" x3="57.03" y1="137.56" y2="133.61" y3="129.91"/> <curve x1="60.01" x2="66.71" x3="72.6" y1="125.25" y2="124.29" y3="124.2"/> <curve x1="83.94" x2="95.6" x3="102.15" y1="123.82" y2="129.21" y3="134.28"/> <line x="104.61" y="134.27"/> <line x="104.64" y="113.82"/> <curve x1="95.76" x2="83.13" x3="69.24" y1="110.49" y2="107.43" y3="107.93"/> <curve x1="55.93" x2="45.05" x3="37.39" y1="108.52" y2="112.71" y3="121.66"/> <curve x1="30.26" x2="32.48" x3="35.42" y1="131.05" y2="142.56" y3="148.28"/> <curve x1="40.25" x2="51.1" x3="59.62" y1="157.44" y2="160.73" y3="163.04"/> <curve x1="66.26" x2="73.2" x3="78.54" y1="164.67" y2="165.36" y3="167.4"/> <curve x1="85.45" x2="85.66" x3="83.17" y1="170.26" y2="175.72" y3="178.97"/> <curve x1="80.68" x2="76.19" x3="69.19" y1="181.9" y2="183.33" y3="183.57"/> <curve x1="56.78" x2="44.05" x3="34.49" y1="184.01" y2="179.29" y3="171.82"/> <line x="32.16" y="171.85"/> <close/> <move x="145.54" y="198.35"/> <line x="145.55" y="138.83"/> <line x="162.03" y="177.46"/> <line x="177.89" y="177.46"/> <line x="194.36" y="138.81"/> <line x="194.36" y="198.42"/> <line x="217.18" y="198.39"/> <line x="217.19" y="109.46"/> <line x="190.55" y="109.47"/> <line x="170.6" y="154.08"/> <line x="150.58" y="109.48"/> <line x="123.93" y="109.46"/> <line x="123.94" y="198.39"/> <close/> <move x="282.84" y="198.88"/> <curve x1="296.49" x2="307.43" x3="310.13" y1="196.38" y2="188.28" y3="177.41"/> <curve x1="312.15" x2="310.96" x3="302.7" y1="168.46" y2="158.51" y3="152.22"/> <curve x1="295.46" x2="284.32" x3="276.09" y1="146.45" y2="144.39" y3="142.65"/> <curve x1="269.72" x2="261.69" x3="259.9" y1="141.24" y2="140.03" y3="136.28"/> <curve x1="258.51" x2="258.95" x3="261.71" y1="133.28" y2="130.29" y3="127.86"/> <curve x1="265.48" x2="271.33" x3="276.38" y1="124.82" y2="124.18" y3="124.18"/> <curve x1="289.32" x2="299.57" x3="305.06" y1="124.44" y2="129.95" y3="134.26"/> <line x="307.49" y="134.26"/> <line x="307.53" y="113.82"/> <curve x1="295.71" x2="271.87" x3="253.57" y1="109.13" y2="104.1" y3="111.83"/> <curve x1="244.3" x2="236.52" x3="235.55" y1="116.19" y2="122.65" y3="133.95"/> <curve x1="234.93" x2="241.01" x3="247.57" y1="147.11" y2="153.6" y3="157.46"/> <curve x1="260.53" x2="268.41" x3="279.47" y1="164.36" y2="163.53" y3="166.71"/> <curve x1="283.27" x2="287.77" x3="287.49" y1="167.74" y2="170.34" y3="175.17"/> <curve x1="287.31" x2="285.45" x3="282.84" y1="178.45" y2="180.03" y3="181.37"/> <curve x1="278.17" x2="268.87" x3="261.03" y1="183.91" y2="184.14" y3="182.63"/> <curve x1="251.39" x2="242.75" x3="237.5" y1="180.6" y2="176.34" y3="171.84"/> <line x="235.05" y="171.81"/> <line x="234.96" y="193.07"/> <curve x1="249.16" x2="266.17" x3="282.84" y1="199.26" y2="201.7" y3="198.88"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="247.56" name="Socialvibe" strokewidth="inherit" w="247.23"> <connections/> <foreground> <path> <move x="122.74" y="247.56"/> <curve x1="63.1" x2="0" x3="0" y1="247.56" y2="197.36" y3="122.53"/> <curve x1="0" x2="61.5" x3="123.76" y1="50.43" y2="0" y3="0"/> <curve x1="177.42" x2="247.23" x3="247.23" y1="0" y2="41.63" y3="124.51"/> <curve x1="247.23" x2="202.22" x3="122.74" y1="182.09" y2="247.56" y3="247.56"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="126.99" y="182.97"/> <line x="127.14" y="129.29"/> <line x="176.88" y="100.83"/> <line x="118.72" y="87.71"/> <line x="109.33" y="30.94"/> <line x="83.72" y="80.86"/> <line x="34.55" y="81.47"/> <line x="66.36" y="116.81"/> <line x="41.28" y="159.7"/> <line x="82.63" y="145.11"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="265.27" name="Society6" strokewidth="inherit" w="374.59"> <connections/> <foreground> <path> <move x="166.02" y="182.75"/> <curve x1="165.15" x2="167.33" x3="172.48" y1="167.25" y2="147.04" y3="127.52"/> <curve x1="168.33" x2="164.16" x3="149.64" y1="132.28" y2="135.71" y3="134.39"/> <curve x1="138.48" x2="130.4" x3="123.59" y1="133.25" y2="128.59" y3="114.42"/> <curve x1="120.2" x2="116.68" x3="114.73" y1="107.33" y2="100.69" y3="88.45"/> <curve x1="102.65" x2="88.88" x3="84.13" y1="90.32" y2="96.71" y3="108.5"/> <curve x1="77.01" x2="96.56" x3="103.78" y1="127.54" y2="135.54" y3="139.42"/> <curve x1="120.12" x2="131.45" x3="143.33" y1="146.71" y2="149.64" y3="157.32"/> <curve x1="156.78" x2="162.49" x3="166.02" y1="166.07" y2="174.98" y3="182.75"/> <close/> <move x="227.52" y="214.07"/> <curve x1="230.04" x2="234.25" x3="241.47" y1="227.72" y2="236.98" y3="241.43"/> <curve x1="254.55" x2="270.68" x3="276.58" y1="247.76" y2="237.51" y3="231.43"/> <curve x1="285.94" x2="294.74" x3="300.23" y1="220.83" y2="207.59" y3="178.24"/> <curve x1="303.76" x2="302.33" x3="290.64" y1="157.1" y2="138.7" y3="125.68"/> <curve x1="272.86" x2="247.82" x3="232.48" y1="110.1" y2="119.12" y3="136.7"/> <curve x1="227.02" x2="224.47" x3="227.52" y1="160" y2="199.2" y3="214.07"/> <close/> <move x="167.29" y="201.43"/> <curve x1="165.2" x2="157.16" x3="141.62" y1="217.82" y2="234" y3="243.99"/> <curve x1="120.23" x2="82.87" x3="49.06" y1="258.21" y2="261.33" y3="256.7"/> <curve x1="35.25" x2="16.46" x3="7.18" y1="254.77" y2="248.71" y3="234.36"/> <curve x1="0.64" x2="0" x3="9.17" y1="224.38" y2="214.96" y3="205.76"/> <curve x1="25.52" x2="42.94" x3="50.26" y1="192.56" y2="195.98" y3="201.89"/> <curve x1="64.87" x2="69.76" x3="72.25" y1="213.95" y2="231.23" y3="245.76"/> <curve x1="82.32" x2="95.25" x3="104.13" y1="245.32" y2="243.35" y3="235.16"/> <curve x1="112.71" x2="114.23" x3="111.35" y1="226.07" y2="215.56" y3="206.89"/> <curve x1="108.82" x2="101.57" x3="87.59" y1="200.15" y2="193.78" y3="187.94"/> <curve x1="73.22" x2="61.99" x3="44.24" y1="181.55" y2="180.47" y3="167.75"/> <curve x1="33.38" x2="27.39" x3="30.26" y1="159.16" y2="145.48" y3="122.75"/> <curve x1="33.72" x2="50.62" x3="69.44" y1="101.66" y2="89.34" y3="83.2"/> <curve x1="98.24" x2="127.47" x3="149.62" y1="74.49" y2="75.82" y3="81.43"/> <curve x1="171.22" x2="178.68" x3="179.7" y1="87.67" y2="98.19" y3="109.67"/> <curve x1="187.18" x2="200.47" x3="214.59" y1="92.95" y2="75.6" y3="61.13"/> <curve x1="237.03" x2="262.52" x3="284.97" y1="38.53" y2="24.23" y3="15.98"/> <curve x1="313.23" x2="334.99" x3="353.95" y1="5.72" y2="1.55" y3="0"/> <line x="355.01" y="17.1"/> <curve x1="336.54" x2="316.43" x3="290.19" y1="18.96" y2="24.23" y3="42.22"/> <curve x1="257.11" x2="246.44" x3="239.74" y1="66.8" y2="91.69" y3="114.22"/> <curve x1="254.87" x2="272.41" x3="294.41" y1="98.03" y2="94.63" y3="93.5"/> <curve x1="322.67" x2="341.43" x3="353.31" y1="92.29" y2="102.8" y3="120"/> <curve x1="374.59" x2="367.35" x3="350.2" y1="148.36" y2="181.95" y3="208.43"/> <curve x1="334.53" x2="304.64" x3="270.94" y1="232.85" y2="252.81" y3="257"/> <curve x1="214" x2="179.31" x3="167.29" y1="265.27" y2="242.53" y3="201.43"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="315.51" name="Sonico" strokewidth="inherit" w="345.66"> <connections/> <foreground> <path> <move x="178.31" y="112.4"/> <line x="142.2" y="14.7"/> <line x="183.35" y="0"/> <line x="219.22" y="97.23"/> <close/> <move x="105.85" y="139.19"/> <line x="69.76" y="41.41"/> <line x="110.92" y="26.33"/> <line x="146.72" y="124.16"/> <close/> <move x="0" y="154.11"/> <line x="61.99" y="131.26"/> <line x="75.26" y="166.89"/> <curve x1="99.58" x2="161.8" x3="210.11" y1="223.53" y2="243.84" y3="220.25"/> <curve x1="269.14" x2="273.64" x3="260.96" y1="190.27" y2="127.67" y3="98.51"/> <line x="247.54" y="63.06"/> <line x="308.85" y="40.02"/> <line x="324.2" y="80.48"/> <curve x1="345.66" x2="324.94" x3="233.6" y1="147.71" y2="239.13" y3="282.09"/> <curve x1="152.95" x2="52.58" x3="15.02" y1="315.51" y2="287.21" y3="191.33"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="162.61" name="Soundcloud" strokewidth="inherit" w="366.85"> <connections/> <foreground> <path> <move x="197" y="162.57"/> <curve x1="194.33" x2="191.88" x3="191.88" y1="162.57" y2="160.24" y3="156.94"/> <line x="191.88" y="14.6"/> <curve x1="191.88" x2="192.46" x3="195.16" y1="12.03" y2="10.47" y3="9.3"/> <curve x1="218.29" x2="247.08" x3="272.57" y1="0" y2="0.67" y3="19.21"/> <curve x1="295.64" x2="302.32" x3="304.29" y1="36.59" y2="58.22" y3="76.03"/> <curve x1="309.92" x2="316.74" x3="329.24" y1="74.08" y2="71.3" y3="73.11"/> <curve x1="351.24" x2="366.85" x3="366.85" y1="76.86" y2="95.45" y3="118.15"/> <curve x1="366.85" x2="344.39" x3="323.18" y1="144.38" y2="162.57" y3="162.57"/> <close/> <move x="189.61" y="120.03"/> <line x="187.41" y="157.58"/> <curve x1="187.27" x2="185.49" x3="182.5" y1="160.17" y2="162.41" y3="162.41"/> <curve x1="180.38" x2="177.86" x3="177.66" y1="162.41" y2="160.6" y3="157.1"/> <line x="175.66" y="120.03"/> <line x="177.67" y="19.37"/> <curve x1="177.71" x2="180.06" x3="182.54" y1="16.14" y2="14.05" y3="14.05"/> <curve x1="184.72" x2="187.31" x3="187.47" y1="14.05" y2="15.7" y3="18.73"/> <close/> <move x="173.71" y="120.03"/> <line x="171.77" y="158.53"/> <curve x1="171.61" x2="168.92" x3="167.14" y1="161.01" y2="162.61" y3="162.61"/> <curve x1="165.34" x2="162.87" x3="162.6" y1="162.61" y2="161" y3="158.65"/> <line x="160.89" y="120.03"/> <line x="162.51" y="27.02"/> <curve x1="162.91" x2="165.43" x3="167.18" y1="24.21" y2="22.72" y3="22.72"/> <curve x1="169.88" x2="171.72" x3="171.81" y1="22.72" y2="25" y3="27.38"/> <close/> <move x="158.16" y="120.03"/> <line x="155.94" y="158.52"/> <curve x1="155.71" x2="153.33" x3="151.54" y1="161.19" y2="162.59" y3="162.59"/> <curve x1="150.1" x2="147.62" x3="147.39" y1="162.59" y2="161.18" y3="158.43"/> <line x="145.52" y="120.03"/> <line x="147.36" y="42.08"/> <curve x1="147.37" x2="149.33" x3="151.9" y1="40.2" y2="37.92" y3="37.92"/> <curve x1="153.53" x2="155.88" x3="155.92" y1="37.92" y2="39.42" y3="42.49"/> <close/> <move x="142.72" y="120.03"/> <line x="140.27" y="158.43"/> <curve x1="140.08" x2="138.84" x3="136.31" y1="160.53" y2="162.45" y3="162.45"/> <curve x1="134.66" x2="132.68" x3="132.34" y1="162.45" y2="161.36" y3="158.42"/> <line x="130.26" y="120.03"/> <line x="132.27" y="39.88"/> <curve x1="132.34" x2="134.54" x3="136.38" y1="36.8" y2="35.28" y3="35.28"/> <curve x1="138.35" x2="140.27" x3="140.38" y1="35.28" y2="36.96" y3="39.62"/> <close/> <move x="127.42" y="120.03"/> <line x="124.7" y="158.89"/> <curve x1="124.55" x2="122.28" x3="121.06" y1="161.32" y2="162.56" y3="162.56"/> <curve x1="119.57" x2="117.51" x3="117.38" y1="162.56" y2="161.31" y3="158.77"/> <line x="115.09" y="120.03"/> <line x="117.35" y="36.98"/> <curve x1="117.42" x2="119.37" x3="121.14" y1="34.93" y2="33.49" y3="33.49"/> <curve x1="122.51" x2="124.7" x3="124.76" y1="33.49" y2="34.86" y3="37.1"/> <close/> <move x="112.11" y="120.03"/> <line x="109.36" y="158.87"/> <curve x1="109.18" x2="107.14" x3="105.88" y1="161.54" y2="162.43" y3="162.43"/> <curve x1="104.74" x2="102.6" x3="102.51" y1="162.43" y2="161.54" y3="158.61"/> <line x="100.05" y="120.03"/> <line x="102.61" y="39.54"/> <curve x1="102.7" x2="104.18" x3="106.04" y1="38.01" y2="36.54" y3="36.54"/> <curve x1="107.83" x2="109.22" x3="109.34" y1="36.54" y2="37.96" y3="40.34"/> <close/> <move x="97.03" y="120.03"/> <line x="94.02" y="159.25"/> <curve x1="93.84" x2="92.57" x3="90.9" y1="161.05" y2="162.59" y3="162.59"/> <curve x1="89.73" x2="88.01" x3="87.85" y1="162.59" y2="161.49" y3="159.49"/> <line x="85.17" y="120.03"/> <line x="87.88" y="45.92"/> <curve x1="88.01" x2="89.45" x3="90.95" y1="44.55" y2="43.01" y3="43.01"/> <curve x1="92.51" x2="93.83" x3="93.94" y1="43.01" y2="44.61" y3="45.81"/> <close/> <move x="82" y="120.03"/> <line x="78.76" y="159.73"/> <curve x1="78.65" x2="77.32" x3="76.02" y1="161.16" y2="162.45" y3="162.45"/> <curve x1="74.69" x2="73.52" x3="73.33" y1="162.45" y2="161.4" y3="159.79"/> <line x="70.41" y="120.03"/> <line x="73.31" y="60.21"/> <curve x1="73.36" x2="74.42" x3="76.1" y1="58.47" y2="57.13" y3="57.13"/> <curve x1="77.47" x2="78.71" x3="78.76" y1="57.13" y2="58.62" y3="59.97"/> <close/> <move x="67.2" y="120.03"/> <line x="63.66" y="159.93"/> <curve x1="63.58" x2="62.72" x3="61.25" y1="160.81" y2="162.11" y3="162.11"/> <curve x1="59.98" x2="59.02" x3="58.87" y1="162.11" y2="161.07" y3="159.97"/> <line x="55.79" y="120.03"/> <line x="58.83" y="83.36"/> <curve x1="58.9" x2="59.82" x3="61.33" y1="81.99" y2="80.88" y3="80.88"/> <curve x1="62.53" x2="63.53" x3="63.68" y1="80.88" y2="81.8" y3="83.4"/> <close/> <move x="52.4" y="120.03"/> <line x="48.72" y="159.37"/> <curve x1="48.61" x2="47.65" x3="46.59" y1="160.47" y2="161.51" y3="161.51"/> <curve x1="45.8" x2="44.53" x3="44.41" y1="161.51" y2="160.66" y3="159.23"/> <line x="41.26" y="120.03"/> <line x="44.41" y="81"/> <curve x1="44.63" x2="45.41" x3="46.57" y1="78.97" y2="78.25" y3="78.25"/> <curve x1="47.89" x2="48.54" x3="48.72" y1="78.25" y2="78.99" y3="80.96"/> <close/> <move x="33.99" y="157.9"/> <curve x1="33.88" x2="33.04" x3="32.04" y1="158.99" y2="160.03" y3="160.03"/> <curve x1="31.14" x2="30.43" x3="30.27" y1="160.03" y2="159.25" y3="158.02"/> <line x="26.87" y="120.03"/> <line x="30.29" y="81.66"/> <curve x1="30.44" x2="31.02" x3="32.09" y1="80.52" y2="79.7" y3="79.7"/> <curve x1="32.97" x2="33.8" x3="33.96" y1="79.7" y2="80.42" y3="81.82"/> <line x="37.78" y="120.03"/> <close/> <move x="19.2" y="152.6"/> <curve x1="19.09" x2="18.54" x3="17.63" y1="153.42" y2="154.26" y3="154.26"/> <curve x1="17.08" x2="16.3" x3="16.13" y1="154.26" y2="153.78" y3="152.62"/> <line x="12.53" y="120.03"/> <line x="16.14" y="87.46"/> <curve x1="16.27" x2="17.01" x3="17.7" y1="86.66" y2="86.02" y3="86.02"/> <curve x1="18.26" x2="18.98" x3="19.11" y1="86.02" y2="86.71" y3="87.41"/> <line x="23.3" y="120.03"/> <close/> <move x="5.47" y="140.47"/> <curve x1="5.3" x2="4.69" x3="3.98" y1="141.53" y2="141.97" y3="142"/> <curve x1="3.37" x2="2.74" x3="2.59" y1="142" y2="141.43" y3="140.57"/> <line x="0" y="120.03"/> <line x="2.59" y="100.37"/> <curve x1="2.81" x2="3.5" x3="4.02" y1="99.18" y2="98.7" y3="98.7"/> <curve x1="4.71" x2="5.33" x3="5.54" y1="98.7" y2="99.15" y3="100.31"/> <line x="8.73" y="120.03"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="372.45" name="Sourceforge" strokewidth="inherit" w="371.1"> <connections/> <foreground> <fillcolor color="#000000"/> <path> <move x="185.22" y="372.45"/> <curve x1="83.62" x2="0" x3="0" y1="372.45" y2="290.05" y3="185.89"/> <curve x1="0" x2="87.58" x3="187.09" y1="79.4" y2="0" y3="0"/> <curve x1="277.49" x2="371.1" x3="371.1" y1="0" y2="70.92" y3="188.3"/> <curve x1="371.1" x2="281.83" x3="185.22" y1="295.06" y2="372.45" y3="372.45"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="243.33" y="246.85"/> <curve x1="246.93" x2="249.51" x3="249.51" y1="244.71" y2="240.7" y3="233.5"/> <line x="249.51" y="175.58"/> <line x="294.97" y="175.58"/> <curve x1="297.83" x2="300.87" x3="300.87" y1="175.58" y2="171.81" y3="168.96"/> <line x="300.87" y="157.92"/> <curve x1="300.87" x2="296.68" x3="293.54" y1="154.74" y2="152.41" y3="152.41"/> <line x="249.51" y="152.41"/> <line x="249.51" y="126.15"/> <line x="293.31" y="126.15"/> <curve x1="296.69" x2="300.87" x3="300.87" y1="126.15" y2="124.53" y3="120.19"/> <line x="300.87" y="109.16"/> <curve x1="300.87" x2="298.01" x3="293.87" y1="106.61" y2="102.48" y3="102.48"/> <line x="249.73" y="102.48"/> <curve x1="239.96" x2="224.74" x3="224.74" y1="102.48" y2="113.72" y3="124.05"/> <line x="224.74" y="152.41"/> <line x="203.95" y="152.41"/> <curve x1="200.38" x2="198.21" x3="198.21" y1="152.41" y2="154.62" y3="158.36"/> <line x="198.21" y="170.5"/> <curve x1="198.21" x2="201.36" x3="204.28" y1="173.4" y2="175.58" y3="175.58"/> <line x="224.74" y="175.58"/> <line x="224.74" y="251.04"/> <curve x1="224.74" x2="226.63" x3="230.09" y1="254.72" y2="255.91" y3="254.02"/> <close/> <move x="145.58" y="273.61"/> <curve x1="163.64" x2="171.66" x3="171.66" y1="273.61" y2="260.79" y3="251.48"/> <line x="171.66" y="222.03"/> <curve x1="171.66" x2="163.46" x3="148.93" y1="212.8" y2="200.94" y3="200.94"/> <line x="99.96" y="200.94"/> <curve x1="97.64" x2="93.47" x3="93.47" y1="200.94" y2="197.9" y3="194"/> <line x="93.47" y="183.58"/> <curve x1="93.47" x2="96.18" x3="101.45" y1="178.61" y2="175.49" y3="175.49"/> <line x="165.49" y="175.49"/> <curve x1="168.44" x2="171.66" x3="171.66" y1="175.49" y2="172.39" y3="169.23"/> <line x="171.66" y="157.48"/> <curve x1="171.66" x2="168.88" x3="165.22" y1="154.67" y2="152.35" y3="152.35"/> <line x="90.96" y="152.35"/> <curve x1="79.9" x2="69.12" x3="69.12" y1="152.35" y2="163.21" y3="175.02"/> <line x="69.12" y="202.94"/> <curve x1="69.12" x2="80.78" x3="89.09" y1="214.03" y2="223.9" y3="223.9"/> <line x="139.18" y="223.9"/> <curve x1="143.01" x2="146.9" x3="146.9" y1="223.85" y2="227.89" y3="230.3"/> <line x="146.9" y="242.11"/> <curve x1="146.9" x2="144.23" x3="136.86" y1="247.45" y2="250.16" y3="250.16"/> <line x="76.73" y="250.16"/> <curve x1="72.65" x2="69.12" x3="69.12" y1="250.16" y2="252.33" y3="256.23"/> <line x="69.12" y="266.16"/> <curve x1="69.12" x2="73.38" x3="77.61" y1="271.42" y2="273.61" y3="273.61"/> <close/> <move x="184.34" y="336.48"/> <curve x1="111.46" x2="35.43" x3="35.43" y1="336.48" y2="279.86" y3="183.5"/> <curve x1="35.43" x2="111.06" x3="187.24" y1="94.32" y2="35.1" y3="35.1"/> <curve x1="251.9" x2="336" x3="336" y1="35.1" y2="85.55" y3="189.22"/> <curve x1="336" x2="286.52" x3="184.34" y1="250.1" y2="336.48" y3="336.48"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="233.75" name="Sourceforge 2" strokewidth="inherit" w="315.69"> <connections/> <foreground> <path> <move x="247.13" y="179.62"/> <curve x1="247.13" x2="244.67" x3="238.63" y1="188.46" y2="194.19" y3="197.35"/> <line x="219.39" y="207.97"/> <curve x1="214.76" x2="211.18" x3="211.18" y1="210.28" y2="208.59" y3="203.56"/> <line x="211.18" y="99.78"/> <line x="183.7" y="99.78"/> <curve x1="179.57" x2="175.54" x3="175.54" y1="99.78" y2="97.17" y3="91.02"/> <line x="175.54" y="77.15"/> <curve x1="175.54" x2="177.59" x3="185.11" y1="72.29" y2="67.06" y3="67.06"/> <line x="211.18" y="67.06"/> <line x="211.18" y="29.73"/> <curve x1="211.18" x2="230.88" x3="246.64" y1="14.56" y2="0" y3="0"/> <line x="305.24" y="0"/> <curve x1="312.97" x2="315.69" x3="315.63" y1="0" y2="3.45" y3="10.16"/> <line x="315.63" y="24.25"/> <curve x1="315.63" x2="313.24" x3="306.93" y1="29.6" y2="32.79" y3="32.79"/> <line x="247.13" y="32.79"/> <line x="247.13" y="67.06"/> <line x="307.08" y="67.06"/> <curve x1="313.66" x2="315.63" x3="315.63" y1="67.06" y2="70.42" y3="75.22"/> <line x="315.63" y="91.35"/> <curve x1="315.63" x2="312.9" x3="307.88" y1="96.41" y2="99.78" y3="99.78"/> <line x="247.13" y="99.78"/> <close/> <move x="9.08" y="233.41"/> <curve x1="1.5" x2="0" x3="0" y1="233.41" y2="231.36" y3="225.42"/> <line x="0" y="209.87"/> <curve x1="0" x2="2.55" x3="10.16" y1="205.26" y2="200.41" y3="200.41"/> <line x="93.52" y="200.41"/> <curve x1="101.15" x2="105.35" x3="105.35" y1="200.41" y2="197.45" y3="191.9"/> <line x="105.21" y="176.39"/> <curve x1="105.21" x2="102.95" x3="94.55" y1="171.44" y2="166.3" y3="166.3"/> <line x="24.54" y="166.3"/> <curve x1="13.21" x2="0" x3="0" y1="166.3" y2="153.41" y3="139"/> <line x="0" y="93.56"/> <curve x1="0" x2="11.83" x3="27.04" y1="81.64" y2="67.06" y3="67.06"/> <line x="129.4" y="67.06"/> <curve x1="137.59" x2="140.68" x3="140.68" y1="67.06" y2="71.39" y3="77.3"/> <line x="140.68" y="91.16"/> <curve x1="140.69" x2="136.92" x3="131" y1="96.95" y2="99.78" y3="99.78"/> <line x="45.38" y="99.78"/> <curve x1="37.69" x2="34.84" x3="34.84" y1="99.78" y2="104.32" y3="109.12"/> <line x="34.84" y="125.48"/> <curve x1="34.84" x2="39.86" x3="45.13" y1="131.05" y2="133.73" y3="133.73"/> <line x="107.09" y="133.73"/> <curve x1="129.33" x2="140.68" x3="140.68" y1="133.73" y2="145.54" y3="164.62"/> <line x="140.68" y="200.15"/> <curve x1="140.68" x2="127.87" x3="108.18" y1="222.51" y2="233.75" y3="233.41"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="158.26" name="Spring.me" strokewidth="inherit" w="366.44"> <connections/> <foreground> <path> <move x="335.14" y="71.97"/> <curve x1="334.96" x2="332.89" x3="329.15" y1="61.94" y2="52.58" y3="45.18"/> <curve x1="324.42" x2="315.23" x3="303.85" y1="34.15" y2="31.81" y3="31.63"/> <curve x1="291.86" x2="281.55" x3="275.17" y1="31.54" y2="37.38" y3="46.85"/> <curve x1="270.42" x2="269.14" x3="268.54" y1="54.52" y2="63.4" y3="71.97"/> <close/> <move x="268.07" y="93.94"/> <curve x1="270.08" x2="275.57" x3="282.26" y1="111.52" y2="121.25" y3="127.08"/> <curve x1="302.63" x2="328.38" x3="337.6" y1="144.71" y2="133.72" y3="115.03"/> <curve x1="340.84" x2="352.85" x3="357" y1="108.54" y2="110.06" y3="115.18"/> <curve x1="361.14" x2="362.19" x3="358.6" y1="120.2" y2="127.31" y3="131.94"/> <curve x1="349.32" x2="334.91" x3="301.85" y1="144.58" y2="157.54" y3="158.26"/> <curve x1="280.56" x2="248.41" x3="239.5" y1="158.26" y2="145.65" y3="106.52"/> <curve x1="233.19" x2="238.58" x3="260.59" y1="79.03" y2="39.92" y3="24.07"/> <curve x1="290.97" x2="321.66" x3="339.61" y1="0" y2="6.06" y3="19"/> <curve x1="351.86" x2="365.59" x3="365.97" y1="27.54" y2="47.39" y3="81.13"/> <curve x1="366.44" x2="360.82" x3="353.53" y1="90.05" y2="93.94" y3="93.94"/> <close/> <move x="95.81" y="53.81"/> <curve x1="90.16" x2="82.63" x3="67.69" y1="43.86" y2="32.39" y3="31.89"/> <curve x1="56.59" x2="42.47" x3="34.14" y1="31.51" y2="38.46" y3="66.91"/> <curve x1="28.89" x2="27.47" x3="28.53" y1="83.09" y2="108.69" y3="127.09"/> <curve x1="28.88" x2="29.93" x3="30.34" y1="128.16" y2="127.91" y3="126.94"/> <curve x1="31.66" x2="34.83" x3="39.54" y1="111.05" y2="94.38" y3="85.1"/> <curve x1="41.24" x2="45.43" x3="46.09" y1="81.62" y2="82.92" y3="86.7"/> <curve x1="49.49" x2="50.03" x3="46.81" y1="107.47" y2="120.47" y3="133.84"/> <curve x1="43.03" x2="37.27" x3="23.8" y1="150.55" y2="157.12" y3="157.4"/> <curve x1="11.8" x2="2.64" x3="1.83" y1="157.38" y2="144.43" y3="126.01"/> <curve x1="0" x2="6.73" x3="24.12" y1="83.23" y2="54.84" y3="31.1"/> <curve x1="33.59" x2="48.7" x3="68.54" y1="18.67" y2="7.16" y3="8.41"/> <curve x1="89.25" x2="100.53" x3="109.76" y1="10.45" y2="18.77" y3="30.94"/> <curve x1="117.95" x2="127.17" x3="153.03" y1="21.36" y2="9.05" y3="7.85"/> <curve x1="174.51" x2="194.76" x3="204.22" y1="7.53" y2="24.91" y3="45.1"/> <curve x1="206.96" x2="208.21" x3="204.84" y1="49.99" y2="54.55" y3="62.91"/> <curve x1="199.94" x2="196.87" x3="197.96" y1="77.49" y2="108.4" y3="126.49"/> <curve x1="198.59" x2="199.61" x3="199.89" y1="127.79" y2="128.23" y3="125.58"/> <curve x1="201.89" x2="203.85" x3="209.54" y1="106.94" y2="95.93" y3="84.95"/> <curve x1="211.31" x2="213.71" x3="214.57" y1="81.95" y2="82.2" y3="85.42"/> <curve x1="221.28" x2="218.19" x3="215.53" y1="110.12" y2="130.8" y3="137.83"/> <curve x1="210.68" x2="205.34" x3="193" y1="151.68" y2="157.32" y3="157.32"/> <curve x1="185.07" x2="173.54" x3="171.83" y1="157.32" y2="149.65" y3="128.96"/> <curve x1="169.59" x2="172.41" x3="181.18" y1="106.2" y2="74.83" y3="54.27"/> <curve x1="175.38" x2="167.59" x3="151.43" y1="44.9" y2="31.51" y3="31.98"/> <curve x1="136.03" x2="123.9" x3="118.01" y1="31.98" y2="47.24" y3="69.79"/> <curve x1="113.84" x2="112.21" x3="113.55" y1="85.28" y2="114.61" y3="129.56"/> <curve x1="113.96" x2="114.77" x3="114.96" y1="130.48" y2="130.36" y3="129.06"/> <curve x1="116.47" x2="119.38" x3="125.1" y1="110.53" y2="94.7" y3="84.28"/> <curve x1="126.03" x2="129.27" x3="130.21" y1="82.56" y2="82.15" y3="85.1"/> <curve x1="134.7" x2="135.17" x3="131.81" y1="98.96" y2="122.09" y3="134"/> <curve x1="128.8" x2="121.52" x3="109.74" y1="146.91" y2="157.69" y3="157.4"/> <curve x1="101.96" x2="88.41" x3="86.17" y1="157.15" y2="150.63" y3="125.37"/> <curve x1="83.7" x2="89.69" x3="95.81" y1="96.24" y2="70.18" y3="53.81"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="395.2" name="Stackexchange" strokewidth="inherit" w="319.18"> <connections/> <foreground> <fillcolor color="#205196"/> <path> <move x="165.27" y="395.2"/> <line x="165.27" y="319.81"/> <line x="51.93" y="319.81"/> <curve x1="50.1" x2="48.74" x3="44.96" y1="319.81" y2="319.7" y3="318.29"/> <line x="104" y="262.22"/> <line x="319.18" y="262.22"/> <curve x1="319.12" x2="300.81" x3="264.13" y1="288.72" y2="314.91" y3="319.81"/> <line x="239.67" y="319.81"/> <close/> </path> <fill/> <fillcolor color="#466ea8"/> <path> <move x="44.96" y="318.29"/> <curve x1="12.72" x2="3.26" x3="0" y1="306.17" y2="288.2" y3="262.22"/> <line x="105" y="262.22"/> <close/> </path> <fill/> <fillcolor color="#4385d4"/> <path> <move x="0" y="233.18"/> <line x="0" y="169.39"/> <line x="198.55" y="169.39"/> <line x="132.7" y="233.18"/> <close/> </path> <fill/> <fillcolor color="#1d6dcc"/> <path> <move x="319.18" y="233.18"/> <line x="131.7" y="233.18"/> <line x="197.55" y="169.39"/> <line x="319.18" y="169.39"/> <close/> </path> <fill/> <fillcolor color="#36a4ee"/> <path> <move x="319.18" y="140.6"/> <line x="223.54" y="140.6"/> <line x="287.22" y="77.22"/> <line x="319.18" y="77.22"/> <close/> </path> <fill/> <fillcolor color="#58b3f1"/> <path> <move x="224.54" y="140.6"/> <line x="0" y="140.6"/> <line x="0" y="77.22"/> <line x="288.22" y="77.22"/> <close/> </path> <fill/> <fillcolor color="#8ed5eb"/> <path> <move x="319.18" y="48.68"/> <line x="0" y="48.68"/> <curve x1="4.27" x2="25.61" x3="58.42" y1="27.67" y2="0" y3="0"/> <line x="257.27" y="0"/> <curve x1="289.97" x2="313.82" x3="319.18" y1="0" y2="20.21" y3="48.68"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="320.5" name="StackOverflow" strokewidth="inherit" w="271.68"> <connections/> <foreground> <fillcolor color="#bcbbbb"/> <path> <move x="0" y="320.5"/> <line x="0" y="207.32"/> <line x="27.69" y="207.32"/> <line x="27.69" y="292.78"/> <line x="230.68" y="292.78"/> <line x="230.68" y="207.32"/> <line x="258.38" y="207.32"/> <line x="258.38" y="320.5"/> <close/> </path> <fill/> <fillcolor color="#f48024"/> <path> <move x="163.53" y="16.67"/> <line x="186.4" y="0"/> <line x="271.68" y="114.52"/> <line x="249.47" y="131.16"/> <close/> <move x="115.39" y="67.46"/> <line x="133.54" y="45.71"/> <line x="243.14" y="136.87"/> <line x="226.01" y="158.82"/> <close/> <move x="79.1" y="130.86"/> <line x="91.37" y="105.07"/> <line x="220.99" y="166.07"/> <line x="209.04" y="191.18"/> <close/> <move x="60.13" y="197.51"/> <line x="66.46" y="170.3"/> <line x="206.25" y="199.9"/> <line x="200.9" y="227.24"/> <close/> <move x="56.98" y="263.48"/> <line x="56.98" y="235.88"/> <line x="201.43" y="235.88"/> <line x="201.43" y="263.48"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="213.38" name="Startaid" strokewidth="inherit" w="206.19"> <connections/> <foreground> <path> <move x="0" y="139.33"/> <line x="0" y="0"/> <line x="206.19" y="0"/> <line x="206.19" y="43.3"/> <line x="43.22" y="43.3"/> <line x="43.22" y="109.21"/> <line x="86.36" y="109.21"/> <line x="86.36" y="139.33"/> <close/> <move x="0" y="213.38"/> <line x="0" y="171.04"/> <line x="162.89" y="171.04"/> <line x="162.89" y="109.21"/> <line x="119.99" y="109.21"/> <line x="119.99" y="77.01"/> <line x="206.19" y="77.01"/> <line x="206.19" y="213.38"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="421.05" name="Startlap" strokewidth="inherit" w="410.01"> <connections/> <foreground> <fillcolor color="#211f1f"/> <path> <move x="226.37" y="397.59"/> <curve x1="244.7" x2="266.65" x3="276.55" y1="398.23" y2="400" y3="402.26"/> <curve x1="286.35" x2="292.45" x3="292.42" y1="404.5" y2="406.16" y3="409.66"/> <curve x1="292.4" x2="282.9" x3="277.28" y1="412.75" y2="415.11" y3="416.19"/> <curve x1="261.01" x2="237.43" x3="211.29" y1="419.39" y2="420.65" y3="421.05"/> <curve x1="187.92" x2="154.81" x3="138.56" y1="420.95" y2="419.29" y3="413.99"/> <curve x1="134.21" x2="132.14" x3="132.03" y1="412.43" y2="411.3" y3="409.28"/> <curve x1="132.03" x2="140.62" x3="145.56" y1="406.83" y2="403.97" y3="403.1"/> <curve x1="134.39" x2="133.78" x3="127.76" y1="388.22" y2="372.79" y3="345.01"/> <curve x1="124.25" x2="118.63" x3="106.59" y1="326.62" y2="322.44" y3="323.52"/> <curve x1="95.24" x2="63.22" x3="41.25" y1="324.86" y2="320.95" y3="313.98"/> <curve x1="19.65" x2="0" x3="11.44" y1="306.63" y2="288.8" y3="259.05"/> <curve x1="18.37" x2="39.38" x3="55.58" y1="239.55" y2="225.67" y3="209.61"/> <curve x1="61.07" x2="72.05" x3="54.6" y1="204.42" y2="190.63" y3="167.25"/> <curve x1="43.86" x2="27.31" x3="31.1" y1="152.68" y2="132.44" y3="106.98"/> <curve x1="37.94" x2="61.49" x3="84.18" y1="79.73" y2="69.49" y3="67.96"/> <curve x1="110.15" x2="136.8" x3="152.08" y1="66.71" y2="68.16" y3="70.89"/> <curve x1="163.29" x2="177.75" x3="199.98" y1="54.43" y2="37.28" y3="20.48"/> <curve x1="219.23" x2="241.62" x3="261.6" y1="6.45" y2="0" y3="4.31"/> <curve x1="283.3" x2="290.83" x3="292.01" y1="9.74" y2="28.54" y3="47.51"/> <line x="294.27" y="78.11"/> <curve x1="295.75" x2="300.72" x3="321.94" y1="93.5" y2="104.35" y3="104.95"/> <curve x1="342.93" x2="356.58" x3="371.23" y1="105.45" y2="103.83" y3="106.04"/> <curve x1="389.29" x2="402.04" x3="404.91" y1="109.69" y2="120.31" y3="138.3"/> <curve x1="410.01" x2="399.38" x3="382.76" y1="161.7" y2="180.1" y3="195.44"/> <line x="359.79" y="216.61"/> <curve x1="352.28" x2="351.57" x3="357.65" y1="225.14" y2="232.55" y3="239.17"/> <curve x1="368.01" x2="379.48" x3="387.88" y1="250.68" y2="257.15" y3="267.36"/> <curve x1="401.77" x2="404.34" x3="398.55" y1="282.76" y2="300.65" y3="317.85"/> <curve x1="391.77" x2="378.09" x3="343.52" y1="337.48" y2="351.16" y3="349.77"/> <curve x1="326.18" x2="318.11" x3="295.92" y1="349.2" y2="346.68" y3="345.82"/> <curve x1="277.98" x2="271.05" x3="264.98" y1="345.24" y2="348.93" y3="355.56"/> <curve x1="252.43" x2="239.76" x3="226.37" y1="369.07" y2="387.07" y3="397.59"/> <close/> </path> <fill/> <fillcolor color="#ef7e1d"/> <path> <move x="218.51" y="388.27"/> <curve x1="200.47" x2="189.13" x3="164.11" y1="403.07" y2="405.92" y3="403.04"/> <curve x1="150.84" x2="138.87" x3="134.79" y1="401.07" y2="388.33" y3="362.59"/> <curve x1="133.06" x2="132.55" x3="129.67" y1="350.43" y2="340.83" y3="329.47"/> <curve x1="127.92" x2="123.88" x3="114.07" y1="321.84" y2="316.49" y3="317.25"/> <curve x1="106.07" x2="78.62" x3="59.94" y1="317.85" y2="313.64" y3="306.05"/> <curve x1="40.2" x2="14.95" x3="24.22" y1="298.55" y2="284.35" y3="258.41"/> <curve x1="30.37" x2="41.12" x3="53.62" y1="242.74" y2="231.59" y3="220.55"/> <curve x1="84.82" x2="81.51" x3="64.26" y1="193.74" y2="174.37" y3="155.29"/> <curve x1="60.65" x2="37.37" x3="53.51" y1="151.29" y2="119.08" y3="94.72"/> <curve x1="66.54" x2="86.47" x3="107.64" y1="77.32" y2="75.3" y3="74.8"/> <curve x1="136.18" x2="148.74" x3="164.37" y1="75.31" y2="76.06" y3="79.01"/> <curve x1="177.89" x2="195.89" x3="217.46" y1="56.7" y2="38.22" y3="27.65"/> <curve x1="234.97" x2="251.18" x3="269.64" y1="20.54" y2="16.93" y3="25.78"/> <curve x1="286.36" x2="287.11" x3="288.17" y1="35.25" y2="57.16" y3="75.63"/> <curve x1="289.49" x2="299.24" x3="320.32" y1="115.89" y2="115.55" y3="115.74"/> <curve x1="337.94" x2="347.84" x3="366.34" y1="115.5" y2="115.09" y3="118.9"/> <curve x1="379.05" x2="388.12" x3="390.58" y1="122.75" y2="133.25" y3="143.86"/> <curve x1="395.93" x2="388.74" x3="376.37" y1="165.57" y2="181.86" y3="194.5"/> <curve x1="365.04" x2="358.61" x3="350.81" y1="206.78" y2="210.51" y3="218.79"/> <curve x1="343.97" x2="339.87" x3="345.69" y1="225.53" y2="232.62" y3="240.52"/> <curve x1="354.1" x2="366.51" x3="374.42" y1="252.96" y2="264.84" y3="275.86"/> <curve x1="383.76" x2="388.59" x3="381.18" y1="290.81" y2="303.4" y3="321.18"/> <curve x1="374.89" x2="360.21" x3="337.39" y1="335.82" y2="343.87" y3="344.05"/> <curve x1="314.07" x2="297.42" x3="277.95" y1="344.42" y2="340.07" y3="340.26"/> <curve x1="263.21" x2="255.86" x3="249.04" y1="340.37" y2="343.62" y3="351.65"/> <curve x1="234.69" x2="229.71" x3="218.51" y1="368.19" y2="378.36" y3="388.27"/> <close/> </path> <fill/> <fillcolor color="#f49e5d"/> <path> <move x="54.48" y="269.77"/> <curve x1="45.32" x2="41.39" x3="37.57" y1="270.64" y2="269.19" y3="262.96"/> <curve x1="34.92" x2="34.7" x3="38.73" y1="258.63" y2="251.05" y3="245.86"/> <curve x1="42.83" x2="46.75" x3="52.31" y1="241.38" y2="236.65" y3="234.2"/> <curve x1="62.65" x2="66.87" x3="70.24" y1="230.34" y2="235.14" y3="238.94"/> <curve x1="74.27" x2="73.68" x3="72.79" y1="244.48" y2="248.57" y3="251.38"/> <curve x1="70.53" x2="60.2" x3="54.48" y1="257.85" y2="269.13" y3="269.77"/> <close/> </path> <fill/> <fillcolor color="#211f1f"/> <path> <move x="101.29" y="241.23"/> <curve x1="98.05" x2="105.69" x3="115.47" y1="229.67" y2="212.51" y3="201.68"/> <line x="126.44" y="207.58"/> <curve x1="121.53" x2="117.76" x3="117.04" y1="212.33" y2="217.24" y3="222.58"/> <curve x1="141.43" x2="165.96" x3="192.95" y1="230.4" y2="233.13" y3="229.65"/> <curve x1="238.38" x2="281.5" x3="304.26" y1="221.7" y2="195.49" y3="173.22"/> <curve x1="300.55" x2="296.67" x3="289.41" y1="169.29" y2="165.39" y3="162.06"/> <line x="297.87" y="152.77"/> <curve x1="315.13" x2="322.43" x3="322.05" y1="159.79" y2="177.7" y3="189.62"/> <line x="317.65" y="195.85"/> <curve x1="315.71" x2="314.19" x3="310.62" y1="190.62" y2="186.62" y3="181.08"/> <curve x1="288.14" x2="256.6" x3="221.52" y1="205.95" y2="227.31" y3="236.76"/> <curve x1="188.1" x2="144.48" x3="114.15" y1="245.04" y2="244.53" y3="232.66"/> <curve x1="112.97" x2="112.32" x3="111.82" y1="237.29" y2="243.35" y3="249.39"/> <close/> </path> <fill/> <fillcolor color="#f49e5d"/> <path> <move x="77.83" y="126.95"/> <curve x1="71.32" x2="65.58" x3="65.01" y1="125.83" y2="120.74" y3="111.79"/> <curve x1="64.33" x2="73" x3="85.58" y1="102.32" y2="95.5" y3="91.6"/> <curve x1="121.45" x2="143.91" x3="166.44" y1="82.9" y2="87.07" y3="89.13"/> <curve x1="187.1" x2="218.47" x3="238.32" y1="65.34" y2="35.29" y3="34.08"/> <curve x1="250.51" x2="257.84" x3="258.59" y1="33.08" y2="36.55" y3="46.08"/> <curve x1="258.68" x2="257.11" x3="250.88" y1="55.66" y2="58.95" y3="61.49"/> <curve x1="234.89" x2="222.12" x3="217.23" y1="66.04" y2="70.41" y3="74.35"/> <line x="184.42" y="119.5"/> <curve x1="128.3" x2="88.92" x3="77.83" y1="118.08" y2="128.97" y3="126.95"/> <close/> </path> <fill/> <fillcolor color="#211f1f"/> <path> <move x="113.92" y="167.7"/> <curve x1="105.07" x2="90.76" x3="84.94" y1="167.9" y2="162.61" y3="151.68"/> <curve x1="79.11" x2="81.34" x3="87.87" y1="140.18" y2="128.46" y3="116.83"/> <curve x1="95.53" x2="115.71" x3="129.26" y1="104.11" y2="95.08" y3="102.77"/> <curve x1="139.76" x2="149.76" x3="148.92" y1="108.61" y2="124.05" y3="139.46"/> <curve x1="148.28" x2="139.41" x3="113.92" y1="151.96" y2="166.63" y3="167.7"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="113.75" y="162.76"/> <curve x1="104.35" x2="93.64" x3="89.54" y1="162.18" y2="157.3" y3="147.39"/> <curve x1="86.34" x2="85.89" x3="92.59" y1="138.98" y2="130.73" y3="120.34"/> <curve x1="99.84" x2="106.38" x3="123.85" y1="112.27" y2="103.45" y3="106.48"/> <curve x1="133.62" x2="144.06" x3="143.87" y1="109.25" y2="123.22" y3="138.56"/> <curve x1="143.43" x2="135.28" x3="113.75" y1="150.25" y2="163.01" y3="162.76"/> <close/> </path> <fill/> <fillcolor color="#b4c9e8"/> <path> <move x="92.59" y="120.34"/> <curve x1="102.28" x2="111.14" x3="123.85" y1="107.88" y2="104.16" y3="106.48"/> <curve x1="130.03" x2="134.94" x3="139.02" y1="108.48" y2="113.38" y3="120.2"/> <curve x1="124.22" x2="109.17" x3="92.59" y1="119" y2="118.27" y3="120.34"/> <close/> </path> <fill/> <fillcolor color="#211f1f"/> <path> <move x="111.52" y="135.48"/> <curve x1="108.05" x2="111.8" x3="118.17" y1="125.98" y2="120.97" y3="119.73"/> <curve x1="124.76" x2="129.65" x3="131.84" y1="118.22" y2="122.55" y3="128.43"/> <curve x1="134.65" x2="132.15" x3="127.62" y1="137.38" y2="141.79" y3="145.25"/> <curve x1="124.51" x2="114.91" x3="111.52" y1="147.45" y2="145.23" y3="135.48"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="125.11" y="138.7"/> <curve x1="122.37" x2="118.15" x3="111.27" y1="132.13" y2="125.96" y3="117.7"/> <line x="125.46" y="117.56"/> <curve x1="127.14" x2="126.74" x3="125.11" y1="124.77" y2="131.79" y3="138.7"/> <close/> </path> <fill/> <fillcolor color="#211f1f"/> <path> <move x="172.65" y="128.15"/> <curve x1="167.39" x2="176.23" x3="187.31" y1="110.33" y2="93.15" y3="81.3"/> <curve x1="204" x2="227.13" x3="237.05" y1="64.54" y2="61.88" y3="64.89"/> <curve x1="255.09" x2="264.65" x3="266.27" y1="71.5" y2="87.72" y3="111.42"/> <curve x1="267.72" x2="253.57" x3="220.37" y1="130.42" y2="149.46" y3="156.12"/> <curve x1="203.72" x2="180.76" x3="172.65" y1="159.65" y2="153.58" y3="128.15"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="178.7" y="125.98"/> <curve x1="172.82" x2="187.82" x3="193.51" y1="105.62" y2="88.59" y3="84.45"/> <curve x1="205.41" x2="221.87" x3="236.25" y1="75.03" y2="68.35" y3="74.35"/> <curve x1="245.3" x2="255.8" x3="257.84" y1="79.07" y2="86.83" y3="113.86"/> <curve x1="259.09" x2="238.93" x3="216.63" y1="132.85" y2="147.89" y3="150.18"/> <curve x1="201.37" x2="185.57" x3="178.7" y1="151.65" y2="147.53" y3="125.98"/> <close/> </path> <fill/> <fillcolor color="#b4c9e8"/> <path> <move x="179.34" y="104.91"/> <curve x1="183.28" x2="187.04" x3="193.51" y1="94.77" y2="90.16" y3="84.45"/> <curve x1="205.24" x2="221.81" x3="236.25" y1="75.12" y2="68.39" y3="74.35"/> <curve x1="245.58" x2="249.18" x3="252.31" y1="79.52" y2="84.24" y3="91.14"/> <curve x1="226.77" x2="202.46" x3="179.34" y1="91.19" y2="95.83" y3="104.91"/> <close/> </path> <fill/> <fillcolor color="#211f1f"/> <path> <move x="205.33" y="110.42"/> <curve x1="205.27" x2="208.85" x3="213.98" y1="104.95" y2="95.74" y3="90.87"/> <curve x1="221.29" x2="229.56" x3="234.81" y1="84.11" y2="83.98" y3="89.27"/> <curve x1="241.2" x2="239.47" x3="236.07" y1="97.14" y2="105.72" y3="112.79"/> <curve x1="231.22" x2="226.46" x3="215.24" y1="120.99" y2="126.59" y3="125.98"/> <curve x1="212.5" x2="205.21" x3="205.33" y1="125.57" y2="119.91" y3="110.42"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="224.34" y="111.55"/> <curve x1="222.8" x2="219.63" x3="212.98" y1="101.95" y2="92.92" y3="85.12"/> <line x="230.56" y="80.27"/> <curve x1="232.12" x2="230.65" x3="224.34" y1="93.6" y2="102.1" y3="111.55"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="198.13" name="Steam" strokewidth="inherit" w="426.45"> <connections/> <foreground> <fillcolor color="#b2b2b2"/> <path> <move x="52.49" y="86.86"/> <line x="32.34" y="78.48"/> <curve x1="23.72" x2="18.96" x3="22.27" y1="75" y2="62.2" y3="50.06"/> <curve x1="25.31" x2="36.93" x3="50.7" y1="41.38" y2="32.19" y3="36.19"/> <line x="70.43" y="44.53"/> <curve x1="66.08" x2="58.67" x3="43.85" y1="38.16" y2="30.04" y3="28.97"/> <curve x1="23.71" x2="14.37" x3="14.45" y1="29.37" y2="48.83" y3="57.99"/> <curve x1="16.15" x2="33.02" x3="52.49" y1="78.9" y2="91.48" y3="86.86"/> <close/> <move x="250.69" y="168.09"/> <curve x1="255.13" x2="265.92" x3="279.61" y1="176.84" y2="184.3" y3="183.59"/> <curve x1="297.07" x2="305.86" x3="306.14" y1="182.13" y2="166.53" y3="154.51"/> <curve x1="305.72" x2="289.69" x3="267.47" y1="135.11" y2="120.83" y3="125.43"/> <line x="287.6" y="133.89"/> <curve x1="299.8" x2="304.06" x3="294.79" y1="139.94" y2="155.92" y3="168.25"/> <curve x1="288.03" x2="278.26" x3="269.39" y1="176.05" y2="179.27" y3="175.76"/> <close/> <move x="367.49" y="88.36"/> <curve x1="351.01" x2="337.45" x3="337.45" y1="88.36" y2="74.89" y3="58.16"/> <curve x1="337.45" x2="351.96" x3="367.49" y1="41.67" y2="28.28" y3="28.28"/> <curve x1="382.23" x2="397.69" x3="397.69" y1="28.28" y2="40.86" y3="58.48"/> <curve x1="397.69" x2="387.86" x3="367.49" y1="71.43" y2="88.36" y3="88.36"/> <close/> <move x="367.97" y="96.03"/> <curve x1="385.65" x2="405.04" x3="405.04" y1="96.03" y2="80.83" y3="58.8"/> <curve x1="405.04" x2="383.98" x3="367.49" y1="34.35" y2="20.93" y3="20.93"/> <curve x1="352.41" x2="330.42" x3="330.42" y1="20.93" y2="33.94" y3="58.96"/> <curve x1="330.42" x2="350.96" x3="367.97" y1="80.97" y2="96.03" y3="96.03"/> <close/> <move x="319.88" y="149.55"/> <curve x1="322.02" x2="298.83" x3="276.58" y1="181.16" y2="198.13" y3="198.13"/> <curve x1="256.57" x2="236.98" x3="233.6" y1="198.13" y2="183.87" y3="161.22"/> <line x="70.3" y="93.79"/> <curve x1="64.37" x2="54.28" x3="43.94" y1="98.57" y2="102.58" y3="102.58"/> <curve x1="20.27" x2="0" x3="0" y1="102.58" y2="83.06" y3="58"/> <curve x1="0" x2="21.7" x3="43.46" y1="32.76" y2="14.22" y3="14.22"/> <curve x1="69.29" x2="85.23" x3="87.56" y1="14.22" y2="34.63" y3="51.45"/> <line x="250.85" y="119.03"/> <curve x1="256.5" x2="265.98" x3="273.54" y1="113.11" y2="110.87" y3="110.73"/> <line x="309.01" y="61.83"/> <curve x1="307.1" x2="331.67" x3="368.61" y1="29.19" y2="0" y3="0"/> <curve x1="402.57" x2="426.45" x3="426.45" y1="0" y2="28.07" y3="58.48"/> <curve x1="426.45" x2="404.15" x3="362.7" y1="86.21" y2="119.8" y3="116.96"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="511.01" name="StumbleUpon" strokewidth="inherit" w="511.15"> <connections/> <foreground> <path> <move x="257.51" y="511.01"/> <curve x1="109.87" x2="0" x3="0" y1="511.01" y2="394.81" y3="254.51"/> <curve x1="0" x2="116" x3="258.98" y1="111.84" y2="0" y3="0"/> <curve x1="396.95" x2="511.15" x3="511.15" y1="0" y2="116.48" y3="255.45"/> <curve x1="511.15" x2="400.81" x3="257.51" y1="390.56" y2="511.01" y3="511.01"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="270.3" y="259.06"/> <line x="290.97" y="268.79"/> <line x="320.74" y="259.73"/> <line x="320.74" y="301.78"/> <curve x1="320.74" x2="329.05" x3="335.05" y1="310.77" y2="316.72" y3="316.72"/> <curve x1="343.48" x2="350.78" x3="350.78" y1="316.72" y2="311.61" y3="301.2"/> <line x="351.12" y="258.76"/> <line x="401.74" y="258.76"/> <line x="401.74" y="303.37"/> <curve x1="401.74" x2="379.43" x3="337.31" y1="329.5" y2="364.65" y3="366.23"/> <curve x1="302.35" x2="269.94" x3="269.94" y1="366.23" y2="338.12" y3="300.68"/> <close/> <move x="108.5" y="258.67"/> <line x="159.29" y="258.67"/> <line x="159.29" y="297.3"/> <curve x1="159.12" x2="166.07" x3="173.54" y1="307.51" y2="314.73" y3="314.73"/> <curve x1="182.87" x2="189.48" x3="189.48" y1="314.73" y2="307.65" y3="298.86"/> <line x="189.48" y="205.99"/> <curve x1="189.48" x2="212.85" x3="255.68" y1="175.48" y2="141.47" y3="141.47"/> <curve x1="296.15" x2="320.72" x3="320.72" y1="141.47" y2="175.58" y3="202.35"/> <line x="320.72" y="226.02"/> <line x="291.18" y="235.12"/> <line x="270.36" y="225.76"/> <line x="270.36" y="207.74"/> <curve x1="270.36" x2="263.61" x3="255" y1="198.78" y2="191.82" y3="191.82"/> <curve x1="246.52" x2="239.73" x3="239.73" y1="191.82" y2="198.97" y3="208.47"/> <line x="239.73" y="301.2"/> <curve x1="239.73" x2="217.05" x3="171.73" y1="333.31" y2="365.71" y3="365.71"/> <curve x1="136.98" x2="108.5" x3="108.5" y1="365.71" y2="333.22" y3="303.8"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="337.62" name="Stumpedia" strokewidth="inherit" w="334.54"> <connections/> <foreground> <fillcolor color="#f0a422"/> <path> <move x="140.52" y="334.18"/> <line x="140.52" y="322.91"/> <curve x1="142.75" x2="178.62" x3="193.16" y1="308.81" y2="235.36" y3="182.95"/> <curve x1="196.93" x2="199.14" x3="198.62" y1="171.11" y2="165.71" y3="151.18"/> <curve x1="197.59" x2="194.53" x3="191.59" y1="134.75" y2="104.56" y3="78.56"/> <curve x1="174.83" x2="163.46" x3="147.19" y1="77.56" y2="77.6" y3="75.29"/> <curve x1="136.23" x2="139.45" x3="143.07" y1="71.82" y2="61.94" y3="57.69"/> <curve x1="148.06" x2="156.85" x3="166.31" y1="46.25" y2="38.93" y3="30.63"/> <curve x1="172.21" x2="175.22" x3="177.26" y1="24.41" y2="21.39" y3="16.3"/> <curve x1="178.97" x2="181.82" x3="187.15" y1="12.71" y2="10.47" y3="11.03"/> <curve x1="190.93" x2="192.32" x3="194.06" y1="12.45" y2="13.87" y3="15.29"/> <curve x1="197.12" x2="196.87" x3="194.38" y1="19.11" y2="23.38" y3="25.47"/> <curve x1="189.54" x2="185.18" x3="181.03" y1="29.95" y2="29.79" y3="33.63"/> <curve x1="175.21" x2="168.17" x3="164.95" y1="39.97" y2="45.99" y3="51.41"/> <curve x1="161.95" x2="164.2" x3="168.11" y1="57.07" y2="58.32" y3="57.74"/> <curve x1="172.45" x2="174.91" x3="177.61" y1="56.83" y2="55.45" y3="54.13"/> <curve x1="182.67" x2="187.16" x3="191.16" y1="51.27" y2="51.6" y3="51.41"/> <curve x1="202.22" x2="206.86" x3="211.5" y1="52.82" y2="55.72" y3="51.87"/> <curve x1="211.78" x2="214.3" x3="213.57" y1="45.97" y2="41.76" y3="36.24"/> <curve x1="210.04" x2="208.02" x3="208.73" y1="29.61" y2="22.39" y3="14.06"/> <curve x1="209.46" x2="215.39" x3="225.08" y1="7.17" y2="0.46" y3="0"/> <curve x1="234.53" x2="238.81" x3="240.87" y1="0.19" y2="4.48" y3="9.39"/> <curve x1="244.43" x2="243.42" x3="237.68" y1="20.15" y2="28.69" y3="36.77"/> <curve x1="237.82" x2="237.05" x3="236.36" y1="42.21" y2="46.3" y3="50.51"/> <curve x1="242.58" x2="248.57" x3="253.72" y1="53.86" y2="57.51" y3="62.26"/> <curve x1="257.83" x2="259.22" x3="266.05" y1="66.89" y2="67.89" y3="68.35"/> <curve x1="272.3" x2="275.81" x3="280.78" y1="68.76" y2="69.26" y3="68.77"/> <curve x1="283.87" x2="285.5" x3="285.61" y1="68.32" y2="67.35" y3="62.95"/> <curve x1="285.79" x2="287.05" x3="285.4" y1="56.99" y2="52.55" y3="46.34"/> <curve x1="279.71" x2="277.17" x3="278.78" y1="44.53" y2="41.9" y3="34.35"/> <curve x1="280.56" x2="284.47" x3="288.78" y1="28.49" y2="26.1" y3="26.11"/> <curve x1="293.72" x2="296.93" x3="299.17" y1="26.39" y2="28.25" y3="32.89"/> <curve x1="300.92" x2="298.31" x3="298.37" y1="36.99" y2="41.67" y3="47.03"/> <line x="299.33" y="71.64"/> <curve x1="299.19" x2="297.2" x3="291.67" y1="78.69" y2="81.84" y3="84.33"/> <curve x1="282.35" x2="272.29" x3="253.34" y1="87.78" y2="91.17" y3="93.79"/> <line x="252.62" y="97.51"/> <line x="260.31" y="129.14"/> <curve x1="262.8" x2="263.39" x3="263.02" y1="137.16" y2="143.96" y3="147.67"/> <curve x1="262.34" x2="264.71" x3="268.44" y1="163.34" y2="166.09" y3="173.43"/> <curve x1="282.77" x2="288.6" x3="293.3" y1="196.85" y2="210.18" y3="223.14"/> <curve x1="299.16" x2="301.56" x3="302.36" y1="237.5" y2="253.5" y3="269.35"/> <curve x1="303.62" x2="307.34" x3="316.8" y1="283.24" y2="313.99" y3="318.98"/> <curve x1="324.53" x2="329.98" x3="334.31" y1="322.91" y2="326.83" y3="330.76"/> <line x="334.54" y="337.54"/> <curve x1="315.31" x2="301.56" x3="293.69" y1="337.62" y2="336.92" y3="334.83"/> <curve x1="290.19" x2="288.14" x3="286.35" y1="333.83" y2="332.51" y3="325.96"/> <curve x1="283.31" x2="282.39" x3="278.73" y1="311.6" y2="301.27" y3="289.95"/> <curve x1="277.39" x2="272.96" x3="271.34" y1="284.76" y2="273.88" y3="267.94"/> <curve x1="268.22" x2="266.73" x3="263.76" y1="258.06" y2="251.55" y3="239.84"/> <curve x1="260.42" x2="254.44" x3="244.3" y1="229.51" y2="213.11" y3="206.82"/> <curve x1="237.87" x2="229.41" x3="223.67" y1="202.64" y2="198.57" y3="207.22"/> <curve x1="214.31" x2="207" x3="199.72" y1="219.47" y2="232.34" y3="245.21"/> <curve x1="188.05" x2="176.12" x3="163.6" y1="266.45" y2="288.94" y3="314.43"/> <line x="163.46" y="334.48"/> <close/> </path> <fill/> <fillcolor color="#3c3d3d"/> <path> <move x="15.21" y="275.22"/> <curve x1="27.99" x2="39.57" x3="63.17" y1="283.58" y2="290.67" y3="296.47"/> <curve x1="90.77" x2="109.85" x3="121.36" y1="302.84" y2="296.08" y3="280.16"/> <curve x1="133.89" x2="140.72" x3="133.34" y1="260.54" y2="240.71" y3="223.86"/> <curve x1="123.16" x2="109.05" x3="88.28" y1="202.43" y2="196.68" y3="187.28"/> <curve x1="72.53" x2="57.83" x3="39.71" y1="180.35" y2="175.53" y3="163.89"/> <curve x1="24.16" x2="8.12" x3="11.3" y1="153.78" y2="128.16" y3="94.8"/> <curve x1="13.24" x2="27.57" x3="59.65" y1="72.68" y2="39.79" y3="27.91"/> <curve x1="86.72" x2="131.61" x3="157.99" y1="19.33" y2="22.07" y3="38.71"/> <line x="145.68" y="70.34"/> <curve x1="131.5" x2="117.13" x3="100.86" y1="63.57" y2="57.33" y3="56.02"/> <curve x1="85.75" x2="72.88" x3="61.81" y1="54.48" y2="55.38" y3="65.24"/> <curve x1="54.12" x2="46.91" x3="47" y1="72.15" y2="88.41" y3="101.13"/> <curve x1="47.24" x2="57.78" x3="77.28" y1="120.66" y2="129.66" y3="141.35"/> <curve x1="102.76" x2="110.72" x3="135.55" y1="156.39" y2="155.19" y3="168.81"/> <curve x1="147.16" x2="165.86" x3="172.69" y1="175.06" y2="194" y3="214.59"/> <curve x1="177.19" x2="182.36" x3="169.02" y1="228.5" y2="253.18" y3="282.35"/> <curve x1="156.35" x2="128.92" x3="96.55" y1="311.06" y2="329.04" y3="332.72"/> <curve x1="60.39" x2="30.32" x3="0" y1="336.72" y2="326.25" y3="309.01"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="382.31" name="Translate" strokewidth="inherit" w="382.39"> <connections/> <foreground> <fillcolor color="#d9d9d9"/> <path> <move x="382.39" y="356.85"/> <curve x1="382.39" x2="371.59" x3="360.1" y1="370.6" y2="382.31" y3="382.31"/> <line x="208.58" y="382.31"/> <line x="198.28" y="76.56"/> <line x="204.61" y="76.56"/> <line x="382.39" y="253"/> <close/> </path> <fill/> <fillcolor color="#4555b5"/> <path> <move x="208.58" y="382.31"/> <line x="185.68" y="310.27"/> <line x="273.99" y="310.27"/> <close/> </path> <fill/> <fillcolor color="#e5e5e5"/> <path> <move x="382.39" y="253"/> <line x="204.61" y="76.56"/> <line x="355.79" y="76.56"/> <curve x1="372.28" x2="382.39" x3="382.39" y1="76.56" y2="89.98" y3="103.76"/> <close/> </path> <fill/> <fillcolor color="#5290f5"/> <path> <move x="24.7" y="310.27"/> <curve x1="9.73" x2="0" x3="0" y1="310.27" y2="295.89" y3="285.19"/> <line x="0" y="25.42"/> <curve x1="0" x2="11.81" x3="24.11" y1="13.18" y2="0" y3="0"/> <line x="173.43" y="0"/> <line x="273.99" y="310.27"/> <close/> </path> <fill/> <fillcolor color="#64808e"/> <path> <move x="227.61" y="167.32"/> <line x="263.67" y="167.32"/> <line x="263.61" y="143.39"/> <line x="286.32" y="143.39"/> <line x="286.38" y="167.32"/> <line x="358.29" y="167.32"/> <line x="358.29" y="181.88"/> <line x="326.83" y="181.88"/> <curve x1="321.38" x2="309.03" x3="294.63" y1="202.6" y2="223.4" y3="241.49"/> <line x="339.14" y="286"/> <line x="327.62" y="297.86"/> <line x="282.6" y="252.69"/> <line x="262.05" y="273.39"/> <line x="256.41" y="255.91"/> <line x="271.37" y="241.27"/> <curve x1="256.59" x2="250.32" x3="244.15" y1="224.42" y2="212.88" y3="199.98"/> <line x="263.25" y="199.98"/> <curve x1="269.03" x2="276.13" x3="282.9" y1="211.1" y2="220.98" y3="228.67"/> <curve x1="295.6" x2="304.62" x3="309.43" y1="213.79" y2="198.46" y3="181.88"/> <line x="232.29" y="181.88"/> <close/> </path> <fill/> <fillcolor color="#f0eeef"/> <path> <move x="107.05" y="144.08"/> <line x="163.6" y="144.08"/> <curve x1="167.04" x2="163.89" x3="155.14" y1="161.51" y2="178.1" y3="191.4"/> <curve x1="144.74" x2="122.25" x3="91.71" y1="206.91" y2="220.43" y3="213.47"/> <curve x1="68.21" x2="47.2" x3="47.2" y1="207.01" y2="184.29" y3="155.73"/> <curve x1="47.2" x2="67.53" x3="101.88" y1="126.65" y2="100.01" y3="95.29"/> <curve x1="123.35" x2="136.9" x3="147.83" y1="93.44" y2="101.81" y3="111.01"/> <line x="131.46" y="126.46"/> <curve x1="125.95" x2="118.3" x3="100.75" y1="121.43" y2="115.02" y3="117.58"/> <curve x1="85.78" x2="69.73" x3="69.73" y1="120.15" y2="134.31" y3="156.28"/> <curve x1="69.73" x2="88.39" x3="106.49" y1="176.92" y2="193.58" y3="193.58"/> <curve x1="131.25" x2="141.74" x3="141.98" y1="193.58" y2="176.29" y3="164.66"/> <line x="107.05" y="164.66"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="325.67" name="Tumblr" strokewidth="inherit" w="203.39"> <connections/> <foreground> <path> <move x="152.26" y="268.09"/> <curve x1="174.63" x2="188.63" x3="203.23" y1="267.43" y2="259.33" y3="251.79"/> <line x="203.39" y="303.08"/> <curve x1="176.39" x2="143.28" x3="105.76" y1="317.45" y2="325.67" y3="319.22"/> <curve x1="83.46" x2="60.51" x3="50.38" y1="315.29" y2="302.41" y3="282.06"/> <curve x1="45.89" x2="43.74" x3="43.74" y1="273.5" y2="263.86" y3="252.11"/> <line x="43.74" y="132.41"/> <line x="0" y="132.41"/> <line x="0" y="86.05"/> <curve x1="28.48" x2="41.48" x3="52.96" y1="77.15" y2="67.01" y3="49.82"/> <curve x1="62.03" x2="67.07" x3="68.95" y1="36.24" y2="19.56" y3="0.19"/> <line x="115.38" y="0"/> <line x="115.38" y="73.99"/> <line x="189.5" y="73.99"/> <line x="189.5" y="132.41"/> <line x="115.38" y="132.41"/> <line x="115.38" y="236.43"/> <curve x1="114.97" x2="117.93" x3="122.21" y1="244.69" y2="251" y3="255.71"/> <curve x1="130.25" x2="143.32" x3="152.26" y1="266.09" y2="267.79" y3="268.09"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="349.45" name="Tunein" strokewidth="inherit" w="349.45"> <connections/> <foreground> <fillcolor color="#1d998a"/> <path> <move x="171.5" y="349.45"/> <curve x1="102.69" x2="0" x3="0" y1="349.45" y2="291.03" y3="170.49"/> <curve x1="0" x2="79.41" x3="176.23" y1="79.49" y2="0" y3="0"/> <curve x1="260.22" x2="349.45" x3="349.45" y1="0" y2="70.23" y3="175.03"/> <curve x1="349.45" x2="272.51" x3="171.5" y1="270.07" y2="349.45" y3="349.45"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="223.02" y="212.24"/> <curve x1="218.93" x2="217.29" x3="217.29" y1="212.24" y2="209.82" y3="205.59"/> <line x="217.29" y="175.96"/> <curve x1="217.29" x2="231.63" x3="251.34" y1="161.67" y2="146.68" y3="146.68"/> <line x="277.07" y="146.68"/> <curve x1="281.22" x2="283.66" x3="283.66" y1="146.68" y2="149" y3="152.17"/> <line x="283.66" y="178.51"/> <curve x1="283.66" x2="267.86" x3="250.02" y1="197.14" y2="212.24" y3="212.24"/> <close/> <move x="174.15" y="136.03"/> <curve x1="153.74" x2="136.05" x3="136.05" y1="136.03" y2="119.51" y3="99.52"/> <curve x1="136.05" x2="153.61" x3="174.15" y1="77.21" y2="61.7" y3="61.7"/> <curve x1="198.69" x2="212.25" x3="212.25" y1="61.7" y2="82.11" y3="99.52"/> <curve x1="212.25" x2="194.8" x3="174.15" y1="119.8" y2="136.03" y3="136.03"/> <close/> <move x="99.44" y="212.24"/> <curve x1="84.35" x2="68.17" x3="68.17" y1="212.24" y2="198.74" y3="178.82"/> <line x="68.17" y="152.93"/> <curve x1="68.17" x2="69.54" x3="73.18" y1="149.56" y2="146.68" y3="146.68"/> <line x="176.12" y="146.68"/> <curve x1="191.83" x2="207.19" x3="207.19" y1="146.68" y2="161.28" y3="179.47"/> <line x="207.19" y="206.97"/> <curve x1="207.19" x2="206.16" x3="201.56" y1="210.42" y2="212.24" y3="212.24"/> <close/> <move x="146.31" y="287.21"/> <curve x1="143.25" x2="141.07" x3="141.07" y1="287.21" y2="285.91" y3="281.54"/> <line x="141.07" y="227.02"/> <curve x1="141.07" x2="142.99" x3="145.82" y1="223.5" y2="222.1" y3="222.1"/> <line x="203.36" y="222.1"/> <curve x1="206.26" x2="207.19" x3="207.19" y1="222.1" y2="223.81" y3="226"/> <line x="207.19" y="257.42"/> <curve x1="207.19" x2="193.22" x3="176.51" y1="270.14" y2="287.21" y3="287.21"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="350.19" name="Twitter" strokewidth="inherit" w="400.4"> <connections/> <foreground> <path> <move x="0" y="299.41"/> <curve x1="42.41" x2="89.77" x3="121.59" y1="305.45" y2="292.11" y3="265.27"/> <curve x1="87.66" x2="56.08" x3="44.92" y1="264.34" y2="243.46" y3="208.38"/> <curve x1="58.87" x2="70.96" x3="81.93" y1="211.32" y2="210.28" y3="206.84"/> <curve x1="51.53" x2="16.82" x3="15.84" y1="200.12" y2="174.24" y3="125.23"/> <curve x1="28.41" x2="41.61" x3="53.54" y1="132.37" y2="135.75" y3="135.59"/> <curve x1="21.86" x2="3.96" x3="27.91" y1="114.6" y2="71.09" y3="25.28"/> <curve x1="70.18" x2="136.9" x3="197.14" y1="80.01" y2="109.39" y3="111.78"/> <curve x1="189.94" x2="204.81" x3="236.7" y1="74.09" y2="40.12" y3="21.71"/> <curve x1="274.81" x2="315.36" x3="337.5" y1="0" y2="13.57" y3="36.82"/> <curve x1="354.52" x2="371.9" x3="389.77" y1="33.71" y2="27.33" y3="16.56"/> <curve x1="381.73" x2="370.86" x3="353.13" y1="37.69" y2="51.37" y3="62.49"/> <curve x1="366.83" x2="381.43" x3="400.4" y1="60.47" y2="58.18" y3="49.41"/> <curve x1="389.82" x2="375.84" x3="359.46" y1="65.49" y2="79.8" y3="91.73"/> <curve x1="363.8" x2="320.39" x3="263.28" y1="173.38" y2="253.39" y3="293.29"/> <curve x1="184.63" x2="80.85" x3="0" y1="347.85" y2="350.19" y3="299.41"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="100.48" name="Two" strokewidth="inherit" w="377.19"> <connections/> <foreground> <path> <move x="279.44" y="75.3"/> <curve x1="272.73" x2="255.59" x3="238.34" y1="90.82" y2="99.87" y3="100.48"/> <curve x1="222.53" x2="203.27" x3="194.4" y1="100.48" y2="87.69" y3="64.85"/> <line x="210.7" y="26.82"/> <curve x1="212.7" x2="212.51" x3="210.94" y1="20.37" y2="14.85" y3="10.68"/> <curve x1="218.61" x2="228.06" x3="239.14" y1="4.15" y2="1.72" y3="1.58"/> <curve x1="251.02" x2="262.98" x3="271.25" y1="1.3" y2="7.54" y3="15.48"/> <line x="320.15" y="67.24"/> <curve x1="323.1" x2="326.92" x3="331.97" y1="69.8" y2="69.8" y3="69.8"/> <curve x1="340.68" x2="348.91" x3="348.91" y1="69.8" y2="62.14" y3="52.54"/> <curve x1="348.91" x2="343.42" x3="330.77" y1="40.91" y2="32.33" y3="32.33"/> <curve x1="317.92" x2="312.62" x3="312.56" y1="32.33" y2="42.82" y3="51.35"/> <line x="289.95" y="27.46"/> <curve x1="299.13" x2="318.81" x3="330.85" y1="11.33" y2="1.26" y3="1.26"/> <curve x1="345.56" x2="377.19" x3="377.19" y1="1.26" y2="17.74" y3="49.83"/> <curve x1="377.19" x2="360" x3="330.21" y1="71.35" y2="99.68" y3="99.68"/> <curve x1="320.49" x2="307.89" x3="299.53" y1="99.68" y2="96.65" y3="88.49"/> <line x="251.45" y="37.29"/> <curve x1="248.64" x2="244.43" x3="239.43" y1="34.47" y2="31.99" y3="31.99"/> <curve x1="232.79" x2="220.92" x3="220.92" y1="31.91" y2="37.21" y3="51.75"/> <curve x1="220.92" x2="228.55" x3="238.25" y1="63.55" y2="69.68" y3="69.68"/> <curve x1="251.99" x2="257.02" x3="258.01" y1="69.68" y2="61.6" y3="52.18"/> <close/> <move x="65.12" y="32.66"/> <line x="65.12" y="87.5"/> <curve x1="65.12" x2="56.25" x3="49.47" y1="95.66" y2="100.22" y3="100.22"/> <curve x1="42.34" x2="34.96" x3="34.96" y1="100.22" y2="95.23" y3="87.11"/> <line x="34.96" y="32.66"/> <line x="12.12" y="32.66"/> <curve x1="6.01" x2="0" x3="0" y1="32.66" y2="27.69" y3="18.66"/> <curve x1="0" x2="7.77" x3="15.81" y1="10.59" y2="2.6" y3="2.6"/> <line x="97.25" y="2.6"/> <curve x1="101.1" x2="105.06" x3="106.77" y1="2.6" y2="5.99" y3="9.91"/> <line x="122.31" y="41.52"/> <line x="126.58" y="31.32"/> <curve x1="119.89" x2="119.99" x3="127.04" y1="22.79" y2="11.4" y3="5.56"/> <curve x1="134.22" x2="146" x3="149.19" y1="0" y2="3.21" y3="8.85"/> <line x="164.3" y="45.15"/> <line x="178.1" y="8.61"/> <curve x1="181.36" x2="192.94" x3="198.39" y1="0.38" y2="1.48" y3="3.81"/> <curve x1="205.89" x2="208.69" x3="205.27" y1="7.04" y2="16.77" y3="24.9"/> <line x="176.66" y="91.85"/> <curve x1="175.01" x2="170.01" x3="163.4" y1="95.91" y2="100" y3="100"/> <curve x1="158.49" x2="152.86" x3="150.66" y1="100" y2="97.18" y3="92.27"/> <line x="143.4" y="74.4"/> <line x="133.97" y="92.8"/> <curve x1="131.51" x2="126.79" x3="120.79" y1="97.53" y2="100.19" y3="100.19"/> <curve x1="116.37" x2="110.09" x3="107.84" y1="100.19" y2="97.62" y3="91.34"/> <line x="88.95" y="41.2"/> <curve x1="87.09" x2="83.15" x3="76.81" y1="35.88" y2="32.57" y3="32.66"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="191.46" name="Typepad" strokewidth="inherit" w="323.62"> <connections/> <foreground> <path> <move x="50.63" y="162.78"/> <curve x1="48.67" x2="46.82" x3="54.24" y1="161.3" y2="157.01" y3="150.07"/> <curve x1="79.73" x2="154.94" x3="175.28" y1="127.3" y2="88.35" y3="78.91"/> <curve x1="125.61" x2="52.66" x3="23.89" y1="96.95" y2="127.11" y3="129.18"/> <curve x1="16.4" x2="12.65" x3="10.01" y1="129.87" y2="128.33" y3="122.5"/> <curve x1="0" x2="5.75" x3="17.45" y1="96.79" y2="77.81" y3="59.47"/> <curve x1="34.73" x2="87.21" x3="139.2" y1="32.55" y2="7.85" y3="4.05"/> <curve x1="191.06" x2="243.59" x3="280.6" y1="0" y2="10.76" y3="38.84"/> <curve x1="313.35" x2="323.62" x3="305.77" y1="64.59" y2="96.78" y3="128.06"/> <curve x1="290.05" x2="229.91" x3="171.87" y1="159.68" y2="191.46" y3="191.46"/> <curve x1="131.78" x2="83.63" x3="50.63" y1="191.46" y2="187.18" y3="162.78"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="420.82" name="Viadeo" strokewidth="inherit" w="367.42"> <connections/> <foreground> <fillcolor color="#221f1f"/> <path> <move x="285.27" y="214.82"/> <curve x1="293.13" x2="295.16" x3="295.16" y1="236.2" y2="252.38" y3="272"/> <curve x1="295.16" x2="233.92" x3="147.67" y1="349.41" y2="420.82" y3="420.82"/> <curve x1="79.25" x2="0" x3="0" y1="420.82" y2="367.41" y3="267.99"/> <curve x1="0" x2="62.81" x3="145.97" y1="193.17" y2="119.93" y3="119.93"/> <curve x1="174.02" x2="187.02" x3="198.47" y1="120.79" y2="124.87" y3="129.29"/> <line x="186.85" y="164.44"/> <curve x1="175.57" x2="163.69" x3="140" y1="160.09" y2="155.56" y3="157.11"/> <curve x1="99.64" x2="45.85" x3="37.04" y1="159.12" y2="191.28" y3="260.68"/> <curve x1="30.74" x2="102.95" x3="143.24" y1="348.34" y2="387.97" y3="388.02"/> <curve x1="202.98" x2="256.75" x3="259.26" y1="388.89" y2="345.68" y3="272.53"/> <curve x1="259.21" x2="255.53" x3="250.38" y1="254.91" y2="240.5" y3="227.38"/> <close/> </path> <fill/> <fillcolor color="#f3972b"/> <path> <move x="237.31" y="152.32"/> <curve x1="231.97" x2="222.71" x3="228.04" y1="139.54" y2="128.78" y3="103.42"/> <curve x1="230.97" x2="252.83" x3="268.47" y1="85.88" y2="69.51" y3="64.44"/> <curve x1="293.49" x2="322.88" x3="338.77" y1="57.92" y2="50.41" y3="11.55"/> <curve x1="357.09" x2="367.42" x3="353.47" y1="47.15" y2="88.66" y3="127.39"/> <curve x1="345.88" x2="333.25" x3="301.7" y1="146.29" y2="174.33" y3="183.31"/> <curve x1="276.79" x2="259.64" x3="245.46" y1="187.92" y2="175.71" y3="162.86"/> <curve x1="261.3" x2="279.22" x3="298.03" y1="155.39" y2="142.87" y3="128.19"/> <curve x1="320.14" x2="330.41" x3="333.66" y1="107.77" y2="92.55" y3="80.42"/> <curve x1="313.18" x2="308.33" x3="292.27" y1="111.55" y2="114.02" y3="126.75"/> <curve x1="279.82" x2="258.69" x3="237.31" y1="135.01" y2="144.76" y3="152.32"/> <close/> <move x="224.26" y="132.19"/> <curve x1="205.01" x2="183.87" x3="162.08" y1="75.31" y2="34.85" y3="0"/> <curve x1="176.91" x2="192.24" x3="204.48" y1="17.06" y2="32.44" y3="58.42"/> <curve x1="218.91" x2="221.04" x3="224.26" y1="90.47" y2="110.81" y3="132.19"/> <close/> <move x="130.1" y="386.87"/> <curve x1="168.25" x2="191.78" x3="209.86" y1="364.02" y2="341.78" y3="277.02"/> <curve x1="224.84" x2="228.32" x3="224.37" y1="228.96" y2="176.46" y3="133.31"/> <curve x1="233.88" x2="247.89" x3="232.04" y1="167.56" y2="210.84" y3="274.71"/> <curve x1="219.96" x2="190.6" x3="157.1" y1="320.16" y2="362.81" y3="387.51"/> <curve x1="145.82" x2="138.82" x3="130.1" y1="388.48" y2="388.23" y3="386.87"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="426.09" name="Viber" strokewidth="inherit" w="386.96"> <connections/> <foreground> <path> <move x="93.83" y="426.09"/> <line x="93.55" y="343.67"/> <curve x1="83.86" x2="66.8" x3="57.36" y1="337.59" y2="331.43" y3="324.87"/> <curve x1="31.37" x2="9.99" x3="5.3" y1="310.42" y2="276.52" y3="222.89"/> <curve x1="2.68" x2="0" x3="16.57" y1="192.65" y2="137.48" y3="88"/> <curve x1="33.76" x2="74.62" x3="133.61" y1="42.83" y2="18.53" y3="8.91"/> <curve x1="188.08" x2="246.34" x3="293.39" y1="0" y2="5.74" y3="18.49"/> <curve x1="333.58" x2="366.18" x3="375.67" y1="31.72" y2="54.91" y3="108.37"/> <curve x1="386.96" x2="384.13" x3="374.87" y1="158.74" y2="219.31" y3="253.37"/> <curve x1="359.88" x2="339.53" x3="297.78" y1="310.77" y2="325.38" y3="339.65"/> <curve x1="272.34" x2="216.58" x3="184.14" y1="348.67" y2="356.43" y3="353.43"/> <curve x1="167.19" x2="159.88" x3="151.98" y1="350.91" y2="356.94" y3="364.61"/> <curve x1="116.41" x2="110.76" x3="93.83" y1="399.23" y2="416.87" y3="426.09"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="246.79" y="308.47"/> <curve x1="257.87" x2="263.91" x3="274.61" y1="312.49" y2="312.44" y3="307.67"/> <curve x1="284.8" x2="294.09" x3="302.01" y1="303.14" y2="295.33" y3="282.53"/> <curve x1="308.76" x2="307.79" x3="299.62" y1="270.92" y2="263.4" y3="254.05"/> <curve x1="289.68" x2="272.56" x3="259.03" y1="245.63" y2="231.91" y3="224.21"/> <curve x1="244.79" x2="232.07" x3="224.88" y1="216.51" y2="221.19" y3="231.6"/> <curve x1="218.9" x2="210.43" x3="194.72" y1="242.76" y2="245.66" y3="238.39"/> <curve x1="161.84" x2="148.19" x3="138.4" y1="221.69" y2="202.94" y3="181.07"/> <curve x1="132.56" x2="136.86" x3="144.79" y1="168.42" y2="155.97" y3="151.91"/> <curve x1="155.91" x2="162.34" x3="156.98" y1="144.74" y2="137.4" y3="124.75"/> <curve x1="147.4" x2="136.26" x3="120.43" y1="106.08" y2="90.95" y3="75.61"/> <curve x1="112.44" x2="104.23" x3="91.67" y1="69.97" y2="71.31" y3="76.41"/> <curve x1="71.55" x2="69.13" x3="67.5" y1="87.36" y2="99.7" y3="110.37"/> <curve x1="65.64" x2="84.15" x3="103.84" y1="129.06" y2="161.25" y3="193.52"/> <curve x1="124.98" x2="151.24" x3="171.09" y1="224.52" y2="250.14" y3="265.04"/> <curve x1="195.35" x2="218.39" x3="246.79" y1="283.2" y2="295.63" y3="308.47"/> <close/> <move x="234.47" y="164.89"/> <curve x1="235.08" x2="238.43" x3="241.26" y1="170.03" y2="172.17" y3="172.08"/> <curve x1="243.07" x2="246.22" x3="246.65" y1="172.05" y2="169.83" y3="166.69"/> <curve x1="248.63" x2="226.1" x3="208.27" y1="143.99" y2="124.4" y3="126.46"/> <curve x1="204.64" x2="202.4" x3="202.31" y1="126.81" y2="129.54" y3="133.51"/> <curve x1="202.51" x2="204.54" x3="207.43" y1="136.61" y2="137.81" y3="138.28"/> <curve x1="218.41" x2="232.36" x3="234.47" y1="139.78" y2="143.76" y3="164.89"/> <close/> <move x="262.91" y="176.37"/> <curve x1="263.58" x2="265.8" x3="268.31" y1="179.04" y2="181.18" y3="181.18"/> <curve x1="271.28" x2="273.96" x3="274.42" y1="181.18" y2="179.45" y3="177.71"/> <curve x1="275.66" x2="268.38" x3="249.75" y1="150.66" y2="134.69" y3="116.26"/> <curve x1="238.03" x2="221.51" x3="198.62" y1="105.8" y2="98.89" y3="96.68"/> <curve x1="195.41" x2="194.09" x3="193.53" y1="97.41" y2="99.82" y3="102.38"/> <curve x1="192.87" x2="194.13" x3="197.02" y1="104.45" y2="107.89" y3="108.67"/> <curve x1="222.52" x2="234.42" x3="242.76" y1="112.54" y2="119.09" y3="125.84"/> <curve x1="255.05" x2="262.91" x3="262.91" y1="135.38" y2="158.91" y3="176.37"/> <close/> <move x="292.54" y="187.66"/> <curve x1="292.54" x2="295.62" x3="298.08" y1="190.22" y2="192.2" y3="192.2"/> <curve x1="300.69" x2="303.67" x3="303.67" y1="192.2" y2="190.48" y3="188.26"/> <curve x1="305.81" x2="298.82" x3="273.13" y1="162.38" y2="131.53" y3="103.06"/> <curve x1="246.18" x2="220.85" x3="189.53" y1="76.92" y2="68.55" y3="68.21"/> <curve x1="186.74" x2="185.07" x3="185.07" y1="68.78" y2="71.64" y3="73.81"/> <curve x1="185.07" x2="186.04" x3="189.36" y1="77.13" y2="79.12" y3="79.63"/> <curve x1="219.88" x2="246.21" x3="265.03" y1="83.07" y2="92.21" y3="111.59"/> <curve x1="286.57" x2="289.78" x3="292.54" y1="135.73" y2="161.67" y3="187.66"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="106.03" name="Viddler" strokewidth="inherit" w="409.87"> <connections/> <foreground> <fillcolor color="#eb5a59"/> <path> <move x="155.74" y="50.11"/> <curve x1="150.48" x2="143.23" x3="137.33" y1="46.46" y2="43.72" y3="43.72"/> <curve x1="124.93" x2="113.92" x3="113.92" y1="43.72" y2="52.36" y3="68.8"/> <curve x1="113.92" x2="125.55" x3="137.89" y1="84.69" y2="93.57" y3="93.57"/> <curve x1="151.56" x2="161.04" x3="161.04" y1="93.57" y2="82.07" y3="65.54"/> <line x="161.04" y="0"/> <line x="174.15" y="0"/> <line x="174.15" y="66.72"/> <curve x1="174.15" x2="162.08" x3="137.55" y1="86.9" y2="105.93" y3="105.93"/> <curve x1="113.55" x2="100.86" x3="100.86" y1="105.93" y2="86.1" y3="68.21"/> <curve x1="100.86" x2="122.64" x3="134.97" y1="41.67" y2="31.3" y3="31.3"/> <curve x1="140.89" x2="147.97" x3="155.74" y1="31.3" y2="32.18" y3="36.41"/> <close/> <move x="78.25" y="104.61"/> <line x="78.25" y="32.84"/> <line x="91.31" y="32.84"/> <line x="91.31" y="104.61"/> <close/> <move x="14.3" y="32.84"/> <line x="35.35" y="88.62"/> <line x="56.12" y="32.84"/> <line x="70.39" y="32.84"/> <line x="44.58" y="100.39"/> <curve x1="43.15" x2="40.94" x3="34.88" y1="103.72" y2="106.03" y3="106.03"/> <curve x1="29.81" x2="26.88" x3="25.54" y1="106.03" y2="103.85" y3="99.92"/> <line x="0" y="32.84"/> <close/> </path> <fill/> <fillcolor color="#60a1d7"/> <path> <move x="254.51" y="0"/> <line x="254.51" y="65.65"/> <curve x1="254.51" x2="238.05" x3="218.06" y1="92.05" y2="106.02" y3="106.02"/> <curve x1="194.49" x2="181.07" x3="181.07" y1="106.02" y2="87.78" y3="66.73"/> <curve x1="181.07" x2="195.86" x3="215.75" y1="48.25" y2="31.21" y3="31.21"/> <curve x1="224.29" x2="231.59" x3="236.03" y1="31.21" y2="33.71" y3="36.49"/> <line x="236.03" y="50.23"/> <curve x1="232.48" x2="224.42" x3="218.14" y1="47.67" y2="43.84" y3="43.84"/> <curve x1="203.2" x2="194.17" x3="194.17" y1="43.84" y2="54.2" y3="68.29"/> <curve x1="194.17" x2="205.34" x3="218.1" y1="84.17" y2="93.49" y3="93.49"/> <curve x1="234.66" x2="241.25" x3="241.25" y1="93.49" y2="78.72" y3="64.73"/> <line x="241.25" y="0"/> <close/> <move x="374.52" y="32.84"/> <line x="387.4" y="32.84"/> <line x="387.4" y="41.44"/> <curve x1="393.39" x2="399.58" x3="409.87" y1="32.06" y2="31.43" y3="31.38"/> <line x="409.87" y="43.84"/> <curve x1="399.53" x2="387.4" x3="387.4" y1="43.3" y2="47.42" y3="70.04"/> <line x="387.4" y="104.61"/> <line x="374.52" y="104.61"/> <close/> <move x="346.52" y="50.87"/> <curve x1="338.39" x2="325.81" x3="318.08" y1="42.08" y2="42.44" y3="46.87"/> <curve x1="305.98" x2="305.38" x3="306.26" y1="54.97" y2="65.98" y3="72.68"/> <close/> <move x="367.25" y="65.69"/> <curve x1="369.29" x2="354.85" x3="329.74" y1="83.84" y2="105.91" y3="105.91"/> <curve x1="308.08" x2="292.27" x3="292.27" y1="105.91" y2="88.28" y3="68.6"/> <curve x1="292.27" x2="307.65" x3="329.9" y1="49.5" y2="31.46" y3="31.46"/> <curve x1="346.11" x2="358.94" x3="364.57" y1="31.46" y2="41.28" y3="54.46"/> <line x="310.97" y="83.62"/> <curve x1="314.14" x2="320.35" x3="329.9" y1="88.24" y2="92.97" y3="93.53"/> <curve x1="342.7" x2="352.12" x3="353.35" y1="93.53" y2="82.66" y3="73.32"/> <close/> <move x="267.45" y="104.61"/> <line x="267.45" y="0"/> <line x="280.75" y="0"/> <line x="280.75" y="104.61"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="290.06" name="Vimeo" strokewidth="inherit" w="312.89"> <connections/> <foreground> <path> <move x="0" y="78.56"/> <curve x1="25.18" x2="53.84" x3="80.85" y1="49.84" y2="23.21" y3="11.14"/> <curve x1="95.48" x2="108.93" x3="118.56" y1="5.08" y2="4.86" y3="15.77"/> <curve x1="129.93" x2="132.73" x3="136.29" y1="30.76" y2="47.55" y3="64.18"/> <curve x1="140.49" x2="143.75" x3="162.33" y1="81.28" y2="121.76" y3="167.88"/> <curve x1="166.5" x2="171.7" x3="179.75" y1="176.61" y2="178.32" y3="170.12"/> <curve x1="188.05" x2="198.57" x3="217.14" y1="161.93" y2="148.99" y3="111.8"/> <curve x1="222" x2="222.74" x3="211.07" y1="101.45" y2="82.06" y3="74.25"/> <curve x1="203" x2="192.33" x3="177.03" y1="69.02" y2="69.01" y3="78.24"/> <curve x1="182.54" x2="193.95" x3="229.44" y1="52.82" y2="29.07" y3="12.09"/> <curve x1="248.51" x2="285.15" x3="301.18" y1="1.67" y2="0" y3="23.12"/> <curve x1="312.89" x2="310.46" x3="303.1" y1="40.76" y2="64.37" y3="90.07"/> <curve x1="283.55" x2="241.15" x3="170.48" y1="151.92" y2="210.35" y3="264.54"/> <curve x1="137.8" x2="106.48" x3="95.23" y1="290.06" y2="263" y3="229.71"/> <curve x1="76.66" x2="68.68" x3="50.17" y1="180.33" y2="137" y3="90.95"/> <curve x1="47.76" x2="45.86" x3="35.15" y1="84.59" y2="80.07" y3="82.8"/> <curve x1="26.2" x2="20.18" x3="12.62" y1="85.69" y2="90.3" y3="95.18"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="353.64" name="Virb" strokewidth="inherit" w="330.64"> <connections/> <foreground> <path> <move x="264.34" y="201.12"/> <curve x1="271.95" x2="281.23" x3="287.65" y1="205.47" y2="205.39" y3="201.23"/> <curve x1="293.44" x2="298.14" x3="300.8" y1="197.28" y2="192.69" y3="186.95"/> <line x="300.8" y="134.73"/> <curve x1="294.64" x2="280.8" x3="264.34" y1="115.01" y2="110.5" y3="117.08"/> <close/> <move x="264.34" y="314.17"/> <curve x1="273.73" x2="282.89" x3="290.62" y1="319.58" y2="318.62" y3="312.33"/> <curve x1="294.39" x2="299.79" x3="301.15" y1="309.36" y2="303.8" y3="299.51"/> <curve x1="302.17" x2="302.29" x3="301.19" y1="283.94" y2="267.46" y3="249.77"/> <curve x1="296.99" x2="280.21" x3="264.34" y1="228.57" y2="222.93" y3="229.88"/> <close/> <move x="245.56" y="353.56"/> <curve x1="243.11" x2="240.97" x3="240.97" y1="353.56" y2="353.64" y3="349.1"/> <line x="240.97" y="91.67"/> <curve x1="241.02" x2="243.02" x3="246.17" y1="88.74" y2="87.2" y3="87.2"/> <curve x1="269.77" x2="276.49" x3="296.51" y1="87.2" y2="85.75" y3="90.31"/> <curve x1="307.75" x2="321.95" x3="325.7" y1="93.32" y2="100.39" y3="120.68"/> <curve x1="329.95" x2="330.64" x3="327.5" y1="139.17" y2="169.91" y3="190.03"/> <curve x1="326.04" x2="321.63" x3="312.26" y1="201.31" y2="215.19" y3="220.46"/> <curve x1="326.12" x2="328.76" x3="329.44" y1="228.44" y2="251.86" y3="274.34"/> <curve x1="329.89" x2="328.78" x3="326.82" y1="293.23" y2="305.57" y3="315.11"/> <curve x1="321.48" x2="306.64" x3="274.67" y1="343.22" y2="349.96" y3="353.56"/> <close/> <move x="159.23" y="201.44"/> <curve x1="166.29" x2="174.79" x3="179.75" y1="205.45" y2="205.05" y3="202.7"/> <curve x1="186.02" x2="191.27" x3="195.03" y1="199.3" y2="193.88" y3="188.11"/> <line x="195.03" y="134.25"/> <curve x1="189.86" x2="175.95" x3="159.23" y1="114.79" y2="110.72" y3="116.6"/> <close/> <move x="139.94" y="353.56"/> <curve x1="137.77" x2="135.17" x3="135.17" y1="353.56" y2="352.74" y3="349.34"/> <line x="135.17" y="94.54"/> <curve x1="135.17" x2="137.27" x3="140.99" y1="88.84" y2="86.58" y3="86.58"/> <line x="170.25" y="86.58"/> <curve x1="192.83" x2="215.73" x3="220.13" y1="86.58" y2="95.81" y3="121.87"/> <curve x1="227.14" x2="222.67" x3="220.02" y1="151.16" y2="188.99" y3="198.26"/> <curve x1="216.21" x2="212.94" x3="206.56" y1="211.16" y2="216.62" y3="220.56"/> <curve x1="216.62" x2="220.13" x3="220.13" y1="226.45" y2="239.29" y3="248.42"/> <line x="220.13" y="349.36"/> <curve x1="220.13" x2="218.7" x3="215.86" y1="352.28" y2="353.56" y3="353.56"/> <line x="200.44" y="353.56"/> <curve x1="198.24" x2="196.1" x3="196.1" y1="353.56" y2="352.78" y3="349.44"/> <line x="196.1" y="245.22"/> <curve x1="192.76" x2="178.5" x3="159.23" y1="231.27" y2="222.93" y3="229.56"/> <line x="159.23" y="349.25"/> <curve x1="159.23" x2="157.27" x3="154.15" y1="352.52" y2="353.56" y3="353.56"/> <close/> <move x="104.7" y="353.56"/> <curve x1="102.55" x2="99.97" x3="99.97" y1="353.56" y2="352.11" y3="348.85"/> <line x="99.97" y="89.64"/> <curve x1="99.97" x2="100.36" x3="103.01" y1="87.65" y2="86.58" y3="86.58"/> <line x="119.07" y="86.58"/> <curve x1="121.53" x2="122.3" x3="122.3" y1="86.58" y2="86.68" y3="88.68"/> <line x="122.3" y="349.17"/> <curve x1="122.3" x2="120.72" x3="117.56" y1="351.6" y2="353.56" y3="353.56"/> <close/> <move x="34.79" y="353.56"/> <curve x1="32.77" x2="31.19" x3="30.79" y1="353.56" y2="351.65" y3="347.8"/> <line x="0.36" y="92.15"/> <curve x1="0" x2="0.76" x3="4.03" y1="89.42" y2="86.58" y3="86.58"/> <line x="19.05" y="86.58"/> <curve x1="22.86" x2="23.85" x3="24.32" y1="86.58" y2="87.81" y3="91.03"/> <line x="45.49" y="272.62"/> <line x="66.57" y="90.57"/> <curve x1="67.04" x2="68.3" x3="70.99" y1="87.8" y2="86.58" y3="86.58"/> <line x="85.92" y="86.58"/> <curve x1="89.77" x2="90.83" x3="90.52" y1="86.58" y2="87.87" y3="90.5"/> <line x="59.87" y="348.44"/> <curve x1="59.38" x2="58.6" x3="54.68" y1="351.65" y2="353.56" y3="353.56"/> <close/> </path> <fillstroke/> <fillcolor color="#27c2e5"/> <path> <move x="100.92" y="44.28"/> <line x="85.16" y="44.28"/> <curve x1="82.51" x2="76.69" x3="76.69" y1="44.28" y2="41.11" y3="33.95"/> <curve x1="76.69" x2="81.62" x3="85.48" y1="27.8" y2="24.03" y3="24.03"/> <line x="100.92" y="24.03"/> <line x="100.92" y="9.15"/> <curve x1="100.92" x2="105.84" x3="111.4" y1="3.92" y2="0" y3="0"/> <curve x1="116.7" x2="121.19" x3="121.19" y1="0" y2="4.18" y3="8.47"/> <line x="121.19" y="24.03"/> <line x="136.21" y="24.03"/> <curve x1="140.37" x2="144.32" x3="144.32" y1="24.03" y2="28.83" y3="34.07"/> <curve x1="144.32" x2="139.86" x3="136.45" y1="40.12" y2="44.28" y3="44.28"/> <line x="121.19" y="44.28"/> <line x="121.19" y="58.92"/> <curve x1="121.19" x2="117.44" x3="110.92" y1="62.75" y2="67.31" y3="67.31"/> <curve x1="106.79" x2="100.92" x3="100.92" y1="67.31" y2="63.86" y3="59.48"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="200.14" name="Vkontakte" strokewidth="inherit" w="351.68"> <connections/> <foreground> <path> <move x="205.05" y="186.51"/> <curve x1="205" x2="202.92" x3="192.24" y1="192.27" y2="198.27" y3="199.22"/> <line x="165.82" y="199.24"/> <curve x1="129.12" x2="99.72" x3="75.42" y1="196.51" y2="178.52" y3="148.94"/> <curve x1="51.71" x2="25.25" x3="1.53" y1="121.5" y2="74.94" y3="22.41"/> <curve x1="0" x2="0.67" x3="1.98" y1="18.99" y2="14.15" y3="12.92"/> <curve x1="4.25" x2="7.68" x3="11.69" y1="10.82" y2="9.64" y3="9.64"/> <line x="60.16" y="9.19"/> <curve x1="65.68" x2="71.62" x3="73.83" y1="9.19" y2="11.98" y3="17.49"/> <curve x1="93.8" x2="109.21" x3="119.27" y1="62.8" y2="84.34" y3="94.14"/> <curve x1="122.49" x2="125.12" x3="128.94" y1="96.88" y2="98.48" y3="98.05"/> <curve x1="132.98" x2="135.5" x3="136.23" y1="97.29" y2="91.37" y3="86.52"/> <curve x1="139.5" x2="138.76" x3="135.96" y1="69.15" y2="40.35" y3="29.64"/> <curve x1="134.22" x2="129.12" x3="118.69" y1="22.75" y2="16.95" y3="15.2"/> <curve x1="115.51" x2="116.24" x3="117.46" y1="14.72" y2="13.77" y3="11.51"/> <curve x1="119.92" x2="124.09" x3="133.2" y1="7.74" y2="4.42" y3="2.28"/> <curve x1="145.29" x2="171.81" x3="184.16" y1="0.08" y2="0" y3="1.22"/> <curve x1="192.83" x2="198.23" x3="201.67" y1="2.23" y2="3.62" y3="7.61"/> <curve x1="206.31" x2="205.94" x3="205.63" y1="13.5" y2="22.48" y3="30.82"/> <curve x1="204.99" x2="204.59" x3="204.55" y1="44.54" y2="59.95" y3="77.88"/> <curve x1="204.95" x2="209.67" x3="212.4" y1="92.82" y2="96.06" y3="97.54"/> <curve x1="216.7" x2="224.07" x3="228.9" y1="99.24" y2="92.08" y3="86.3"/> <curve x1="242.33" x2="256.08" x3="266.58" y1="69.04" y2="44.97" y3="18.79"/> <curve x1="268.74" x2="270.18" x3="278.22" y1="13.93" y2="9.83" y3="9.87"/> <line x="335.95" y="9.41"/> <curve x1="345.04" x2="348.38" x3="349.05" y1="9.23" y2="12.42" y3="13.59"/> <curve x1="351.68" x2="349.03" x3="346.91" y1="18.76" y2="24.67" y3="30.09"/> <curve x1="338.68" x2="317.91" x3="300.59" y1="49.6" y2="74.1" y3="97.2"/> <curve x1="295.47" x2="293.26" x3="292.9" y1="104.31" y2="109.29" y3="112.9"/> <curve x1="292.75" x2="294" x3="300.98" y1="116.75" y2="119.81" y3="127.42"/> <curve x1="317.74" x2="343.43" x3="348.94" y1="142.84" y2="166.94" y3="182.16"/> <curve x1="351.53" x2="349.42" x3="348.36" y1="190.05" y2="192" y3="193.18"/> <curve x1="346.48" x2="343.05" x3="332.18" y1="195.41" y2="198.75" y3="199.21"/> <curve x1="306.98" x2="292.88" x3="284.91" y1="199.41" y2="199.74" y3="200.14"/> <curve x1="274.53" x2="265.27" x3="257.03" y1="200.07" y2="194.68" y3="186.96"/> <curve x1="248.9" x2="241.19" x3="234.04" y1="179.27" y2="168.88" y3="161.88"/> <curve x1="231.51" x2="224.81" x3="219.13" y1="159.41" y2="152.98" y3="153.41"/> <curve x1="215.76" x2="210.87" x3="208.28" y1="153.61" y2="157.39" y3="164.42"/> <curve x1="206.76" x2="205.13" x3="205.05" y1="169.16" y2="177.31" y3="186.51"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="224.43" name="Wakoopa" strokewidth="inherit" w="413.23"> <connections/> <foreground> <path> <move x="238.71" y="108.14"/> <curve x1="231.8" x2="224.06" x3="209.01" y1="90.14" y2="70.63" y3="49.4"/> <curve x1="230" x2="266.63" x3="297.4" y1="17.87" y2="0.49" y3="0.42"/> <curve x1="317.28" x2="330.36" x3="340.03" y1="15.46" y2="37.82" y3="60.38"/> <curve x1="324.8" x2="304.63" x3="274.27" y1="49.65" y2="41.36" y3="53.65"/> <curve x1="251.61" x2="238.91" x3="238.71" y1="64.71" y2="87.76" y3="108.14"/> <close/> <move x="104.42" y="221.7"/> <curve x1="77.37" x2="64.94" x3="58.97" y1="197.85" y2="171.07" y3="145.75"/> <curve x1="74.52" x2="105.4" x3="133.6" y1="171.13" y2="180.52" y3="170.42"/> <curve x1="152.83" x2="173.63" x3="173.63" y1="163.31" y2="142.48" y3="118.53"/> <curve x1="179.77" x2="195.39" x3="203.11" y1="141.27" y2="164.22" y3="173.58"/> <curve x1="185.11" x2="148.85" x3="104.42" y1="201.53" y2="224.43" y3="221.7"/> <close/> <move x="90.81" y="220.83"/> <curve x1="54.5" x2="0" x3="0" y1="213.72" y2="180.85" y3="108.3"/> <curve x1="0" x2="46.8" x3="110.4" y1="55.15" y2="0" y3="0"/> <curve x1="163.22" x2="198.32" x3="211.23" y1="0" y2="35.26" y3="59.89"/> <line x="244.46" y="130.83"/> <curve x1="260.43" x2="302.77" x3="330.1" y1="175.71" y2="181.03" y3="168.54"/> <curve x1="366.33" x2="375.59" x3="354.27" y1="150.38" y2="105.67" y3="74.88"/> <curve x1="346.25" x2="327.66" x3="310.81" y1="39.07" y2="15.45" y3="0.23"/> <curve x1="363.2" x2="413.23" x3="413.23" y1="4.17" y2="48.12" y3="111.87"/> <curve x1="413.23" x2="358.12" x3="303.9" y1="174.16" y2="222.86" y3="222.86"/> <curve x1="270.1" x2="233.32" x3="208.67" y1="222.86" y2="208.15" y3="171.73"/> <curve x1="196.99" x2="185.22" x3="175.29" y1="153.05" y2="135.22" y3="98.38"/> <curve x1="166.78" x2="144.37" x3="110.25" y1="66.5" y2="47.75" y3="47.75"/> <curve x1="81.86" x2="47.92" x3="47.92" y1="47.75" y2="70.28" y3="113.81"/> <curve x1="47.92" x2="57.49" x3="90.81" y1="148.34" y2="186.67" y3="220.83"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="347.99" name="Weheartit" strokewidth="inherit" w="410.79"> <connections/> <foreground> <path> <move x="206.61" y="347.99"/> <curve x1="159.02" x2="111.36" x3="58.47" y1="323.61" y2="298.75" y3="240.8"/> <curve x1="24.97" x2="0" x3="5.73" y1="203.27" y2="153.99" y3="100.54"/> <curve x1="12.49" x2="51.11" x3="102.76" y1="43.9" y2="7.42" y3="6.06"/> <curve x1="145.35" x2="181.58" x3="206.93" y1="4.62" y2="24.61" y3="55.99"/> <curve x1="241.47" x2="280.84" x3="323.74" y1="19.35" y2="0" y3="6.74"/> <curve x1="373.79" x2="406.91" x3="408.18" y1="15.64" y2="60.55" y3="109.79"/> <curve x1="410.79" x2="395.86" x3="328.14" y1="154.73" y2="204.93" y3="267.91"/> <curve x1="306.28" x2="261.93" x3="206.61" y1="288.65" y2="322.46" y3="347.99"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="277.27" y="252.58"/> <line x="312.53" y="130.01"/> <curve x1="313.63" x2="312.63" x3="308.21" y1="125.61" y2="123.04" y3="123.04"/> <line x="276.26" y="123.04"/> <curve x1="273.47" x2="270.54" x3="269.64" y1="123.04" y2="124.91" y3="128.55"/> <line x="255.88" y="177.76"/> <close/> <move x="311.89" y="113.54"/> <curve x1="315.53" x2="317.03" x3="317.91" y1="113.54" y2="112.66" y3="109.97"/> <line x="325.05" y="85.29"/> <curve x1="326.02" x2="325.43" x3="322.67" y1="81.25" y2="79.14" y3="79.12"/> <line x="288.3" y="79.12"/> <curve x1="285.92" x2="283.68" x3="282.83" y1="79.12" y2="80.07" y3="82.68"/> <line x="275.41" y="108.6"/> <curve x1="274.48" x2="274.96" x3="277.96" y1="111.83" y2="113.54" y3="113.54"/> <close/> <move x="232.98" y="130.61"/> <curve x1="231.62" x2="229.3" x3="224.03" y1="125.89" y2="123.08" y3="123.04"/> <line x="189" y="123.04"/> <curve x1="184.85" x2="182.55" x3="181.33" y1="123.04" y2="124.27" y3="129.64"/> <line x="162.95" y="194.27"/> <line x="131.76" y="86.67"/> <curve x1="130.26" x2="128.51" x3="125.28" y1="81.57" y2="79.12" y3="79.12"/> <line x="90.29" y="79.12"/> <curve x1="86.66" x2="87.93" x3="88.85" y1="79.12" y2="82.23" y3="85.79"/> <line x="135.91" y="250.12"/> <curve x1="137.44" x2="138.78" x3="142.3" y1="255.27" y2="257.66" y3="257.66"/> <line x="180.81" y="257.66"/> <curve x1="187.06" x2="188.67" x3="189.52" y1="257.66" y2="255.3" y3="251.16"/> <line x="206.93" y="189.97"/> <line x="224.62" y="251.46"/> <curve x1="226.04" x2="227.34" x3="231.31" y1="255.99" y2="257.66" y3="257.66"/> <line x="263.93" y="257.66"/> <curve x1="268.95" x2="268.46" x3="267.38" y1="257.66" y2="254.87" y3="251.56"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="373.81" name="Whatsapp" strokewidth="inherit" w="371.65"> <connections/> <foreground> <save/> <fillcolor color="#ffffff"/> <path> <move x="0" y="373.81"/> <line x="33.49" y="274.78"/> <curve x1="20.68" x2="7.2" x3="7.2" y1="253.63" y2="223.25" y3="178.26"/> <curve x1="7.2" x2="77.25" x3="189.43" y1="91.65" y2="0" y3="0"/> <curve x1="303.89" x2="371.65" x3="371.65" y1="0" y2="97.69" y3="178.62"/> <curve x1="371.65" x2="289.68" x3="188.35" y1="281.62" y2="364.09" y3="364.09"/> <curve x1="159.82" x2="139.44" x3="101.56" y1="364.09" y2="359.9" y3="340.32"/> <close/> </path> <fillstroke/> <restore/> <rect/> <stroke/> <path> <move x="47.54" y="326.27"/> <line x="105.88" y="306.47"/> <curve x1="131.68" x2="162.8" x3="187.99" y1="326.11" y2="333.48" y3="333.48"/> <curve x1="271.69" x2="340.68" x3="340.68" y1="333.48" y2="265.67" y3="180.78"/> <curve x1="340.68" x2="266.49" x3="190.87" y1="94.1" y2="29.89" y3="29.89"/> <curve x1="101.96" x2="37.45" x3="37.45" y1="29.89" y2="104.05" y3="177.54"/> <curve x1="37.45" x2="52.27" x3="67.34" y1="222.41" y2="249.61" y3="269.73"/> <close/> <move x="279.82" y="220.4"/> <curve x1="285.17" x2="275.5" x3="263.97" y1="240.63" y2="253.99" y3="258.93"/> <curve x1="246.93" x2="237.8" x3="213.91" y1="267.25" y2="268.44" y3="261.09"/> <curve x1="161.6" x2="107.7" x3="101.92" y1="246.86" y2="187.62" y3="149.09"/> <curve x1="98.78" x2="106.59" x3="119.92" y1="126.38" y2="114.6" y3="100.11"/> <curve x1="128.95" x2="137.17" x3="143.33" y1="97.55" y2="96.58" y3="99.75"/> <line x="164.22" y="144.41"/> <curve x1="161.03" x2="154.16" x3="146.21" y1="152.33" y2="160.26" y3="168.18"/> <curve x1="166.47" x2="189.34" x3="215.35" y1="197.85" y2="217.49" y3="225.08"/> <line x="236.6" y="200.23"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="308.75" name="Wix" strokewidth="inherit" w="370.65"> <connections/> <foreground> <save/> <fillcolor color="#ffffff"/> <path> <move x="92.48" y="193.54"/> <line x="347.73" y="42.23"/> <curve x1="337.49" x2="326.68" x3="307.03" y1="61.43" y2="82.17" y3="112.57"/> <curve x1="300.31" x2="289.58" x3="262.85" y1="123.17" y2="138.92" y3="155.31"/> <line x="331.98" y="289.21"/> <curve x1="336.39" x2="331.65" x3="323.43" y1="298.55" y2="305.78" y3="306.63"/> <curve x1="312.01" x2="283.08" x3="262.1" y1="307.91" y2="307.79" y3="307.16"/> <curve x1="253.08" x2="245.07" x3="234.89" y1="307.31" y2="300.86" y3="284.49"/> <line x="192.93" y="209.56"/> <line x="187.3" y="209.56"/> <line x="147.59" y="275.54"/> <curve x1="138.31" x2="122.39" x3="101.65" y1="291.66" y2="308.75" y3="307.57"/> <curve x1="78.96" x2="58.17" x3="46.2" y1="307.57" y2="308.2" y3="306.86"/> <curve x1="37.21" x2="35.07" x3="39.56" y1="306.04" y2="298.25" y3="289.68"/> <close/> </path> <fill/> <fillcolor color="#fccc1e"/> <path> <move x="62.75" y="246.93"/> <line x="112.06" y="157.82"/> <curve x1="74.81" x2="61.67" x3="38.61" y1="136.58" y2="112.78" y3="71.66"/> <line x="16.61" y="32.64"/> <curve x1="12.54" x2="7.75" x3="2.82" y1="24.5" y2="21.73" y3="12.08"/> <curve x1="0.68" x2="0.01" x3="6.84" y1="7.78" y2="3.07" y3="2.34"/> <curve x1="26.16" x2="41.43" x3="61.47" y1="0.43" y2="0" y3="1.81"/> <curve x1="78.52" x2="87.38" x3="94.85" y1="3.44" y2="12.45" y3="18.66"/> <curve x1="103.91" x2="113.26" x3="119.13" y1="26.19" y2="37.66" y3="46.93"/> <curve x1="124.17" x2="129.97" x3="137.51" y1="30.49" y2="20.92" y3="13.51"/> <curve x1="144.17" x2="147.9" x3="152.82" y1="7.58" y2="7.61" y3="6.7"/> <curve x1="179.31" x2="201.34" x3="220.3" y1="3.41" y2="4.41" y3="8.35"/> <curve x1="227.3" x2="229.75" x3="232" y1="10.31" y2="12.76" y3="15.5"/> <curve x1="241" x2="246.72" x3="250.87" y1="26.01" y2="34.95" y3="47.04"/> <curve x1="257.74" x2="267.05" x3="281.73" y1="36.5" y2="25.4" y3="13.05"/> <curve x1="294.94" x2="300.1" x3="311.84" y1="3.19" y2="2.26" y3="1.44"/> <curve x1="334.09" x2="350.87" x3="363.65" y1="0.3" y2="1.23" y3="2.41"/> <curve x1="369.88" x2="370.65" x3="368.24" y1="2.63" y2="4.72" y3="9.93"/> <curve x1="362.85" x2="354.23" x3="341.07" y1="21.5" y2="26.96" y3="53.95"/> <curve x1="302.79" x2="253.14" x3="199.66" y1="110.61" y2="116.47" y3="139.3"/> <curve x1="137.47" x2="96.07" x3="62.75" y1="161.5" y2="210.35" y3="246.93"/> <close/> </path> <fill/> <fillcolor color="#3f3e3e"/> <path> <move x="209.73" y="52.93"/> <curve x1="212.49" x2="217.39" x3="220.11" y1="49.39" y2="48.39" y3="51.25"/> <curve x1="225.76" x2="225.1" x3="223.79" y1="58.44" y2="66.54" y3="70.03"/> <curve x1="221.94" x2="220.29" x3="213.8" y1="75.17" y2="76.48" y3="76.58"/> <curve x1="208.2" x2="205.44" x3="205.37" y1="76.58" y2="71.66" y3="68.23"/> <curve x1="205.38" x2="205.82" x3="209.73" y1="62.23" y2="57.94" y3="52.93"/> <close/> <move x="209.45" y="36.43"/> <line x="225.07" y="36.59"/> <curve x1="223.89" x2="218.38" x3="209.05" y1="38.81" y2="42.29" y3="43.42"/> <close/> <move x="159.19" y="36.63"/> <line x="159.9" y="43.85"/> <curve x1="150.49" x2="144.99" x3="142.82" y1="42.22" y2="39.24" y3="36.45"/> <close/> <move x="162.83" y="69.91"/> <curve x1="161.92" x2="160.06" x3="155.88" y1="74.3" y2="76.18" y3="76.86"/> <curve x1="152.55" x2="145.45" x3="143.9" y1="77.27" y2="77.02" y3="68.63"/> <curve x1="143.31" x2="143.62" x3="146.62" y1="65.81" y2="58.61" y3="52.97"/> <curve x1="148.81" x2="153.99" x3="157.24" y1="48.95" y2="49.03" y3="51.37"/> <curve x1="161.94" x2="164.06" x3="162.83" y1="55.26" y2="61.73" y3="69.91"/> <close/> <move x="177.25" y="80.37"/> <curve x1="176.72" x2="176.55" x3="177.01" y1="79.95" y2="79.28" y3="78.79"/> <curve x1="177.49" x2="178.22" x3="178.71" y1="78.44" y2="78.85" y3="79.19"/> <curve x1="183.7" x2="188.71" x3="193.99" y1="82.42" y2="83.23" y3="79.31"/> <curve x1="194.5" x2="195.12" x3="195.59" y1="78.88" y2="78.21" y3="78.59"/> <curve x1="196.36" x2="196.09" x3="195.61" y1="79.1" y2="79.78" y3="80.29"/> <curve x1="189.45" x2="181.63" x3="177.25" y1="85.01" y2="83.68" y3="80.37"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="218.28" y="67.83"/> <curve x1="218.28" x2="219.67" x3="221.79" y1="69.77" y2="71.22" y3="71.22"/> <curve x1="219.62" x2="218.32" x3="218.32" y1="71.22" y2="72.71" y3="74.7"/> <curve x1="218.32" x2="216.86" x3="214.92" y1="72.71" y2="71.1" y3="71.1"/> <curve x1="216.88" x2="218.28" x3="218.28" y1="71.1" y2="69.76" y3="67.83"/> <close/> <move x="214.32" y="54.81"/> <curve x1="214.32" x2="217.25" x3="220.79" y1="58.84" y2="60.76" y3="60.76"/> <curve x1="217.29" x2="214.32" x3="214.32" y1="60.76" y2="64.98" y3="67.63"/> <curve x1="214.32" x2="211.43" x3="208.13" y1="64.95" y2="60.76" y3="60.76"/> <curve x1="211.34" x2="214.32" x3="214.32" y1="60.76" y2="58.86" y3="54.81"/> <close/> <move x="150.19" y="67.91"/> <curve x1="150.19" x2="151.48" x3="153.17" y1="69.78" y2="70.98" y3="70.98"/> <curve x1="151.51" x2="150.19" x3="150.19" y1="70.98" y2="72.83" y3="74.3"/> <curve x1="150.19" x2="149.07" x3="146.98" y1="72.81" y2="70.98" y3="70.98"/> <curve x1="149.07" x2="150.19" x3="150.19" y1="70.98" y2="69.87" y3="67.91"/> <close/> <move x="154.33" y="67.35"/> <curve x1="154.33" x2="151.13" x3="148.05" y1="63.86" y2="60.64" y3="60.64"/> <curve x1="151.27" x2="154.33" x3="154.33" y1="60.64" y2="58.29" y3="54.73"/> <curve x1="154.25" x2="157.42" x3="159.96" y1="58.36" y2="60.64" y3="60.64"/> <curve x1="157.45" x2="154.33" x3="154.33" y1="60.68" y2="63.64" y3="67.35"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="112.06" y="157.83"/> <curve x1="74.81" x2="61.67" x3="38.6" y1="136.58" y2="112.78" y3="71.67"/> <line x="16.6" y="32.64"/> <curve x1="12.53" x2="7.75" x3="2.81" y1="24.5" y2="21.74" y3="12.08"/> <curve x1="0.68" x2="0" x3="6.83" y1="7.78" y2="3.07" y3="2.34"/> <curve x1="26.16" x2="41.43" x3="61.46" y1="0.44" y2="0" y3="1.82"/> <curve x1="78.52" x2="87.38" x3="94.84" y1="3.45" y2="12.46" y3="18.66"/> <curve x1="103.91" x2="113.26" x3="119.12" y1="26.19" y2="37.67" y3="46.93"/> <curve x1="124.16" x2="129.97" x3="137.51" y1="30.49" y2="20.93" y3="13.51"/> <curve x1="144.16" x2="147.89" x3="152.82" y1="7.59" y2="7.62" y3="6.7"/> <curve x1="179.31" x2="201.33" x3="220.3" y1="3.42" y2="4.42" y3="8.36"/> <curve x1="227.29" x2="229.74" x3="231.99" y1="10.31" y2="12.77" y3="15.5"/> <curve x1="240.99" x2="246.71" x3="250.86" y1="26.02" y2="34.95" y3="47.05"/> <curve x1="257.74" x2="267.04" x3="281.72" y1="36.5" y2="25.4" y3="13.06"/> <curve x1="294.93" x2="300.1" x3="311.84" y1="3.2" y2="2.26" y3="1.44"/> <curve x1="334.08" x2="350.86" x3="363.64" y1="0.3" y2="1.23" y3="2.42"/> <curve x1="369.87" x2="370.64" x3="368.23" y1="2.64" y2="4.72" y3="9.94"/> <curve x1="362.84" x2="354.22" x3="344.4" y1="21.51" y2="26.97" y3="48.09"/> <curve x1="337.48" x2="326.67" x3="307.03" y1="61.43" y2="82.18" y3="112.57"/> <curve x1="300.3" x2="289.57" x3="262.85" y1="123.17" y2="138.92" y3="155.31"/> <line x="331.97" y="289.21"/> <curve x1="336.38" x2="331.64" x3="323.42" y1="298.55" y2="305.79" y3="306.64"/> <curve x1="312" x2="283.07" x3="262.09" y1="307.92" y2="307.79" y3="307.16"/> <curve x1="253.07" x2="245.07" x3="234.88" y1="307.31" y2="300.87" y3="284.49"/> <line x="192.93" y="209.57"/> <line x="187.29" y="209.57"/> <line x="147.59" y="275.54"/> <curve x1="138.3" x2="122.39" x3="101.64" y1="291.66" y2="308.75" y3="307.57"/> <curve x1="78.95" x2="58.17" x3="46.19" y1="307.57" y2="308.21" y3="306.86"/> <curve x1="37.2" x2="35.06" x3="39.56" y1="306.05" y2="298.26" y3="289.68"/> <line x="77.61" y="220.24"/> <close/> </path> <stroke/> </foreground> </shape> <shape aspect="variable" h="327.26" name="Wordpress" strokewidth="inherit" w="333.54"> <connections/> <foreground> <path> <move x="244.7" y="303.35"/> <line x="299.55" y="144.91"/> <curve x1="302.83" x2="307.84" x3="304.78" y1="133.54" y2="117.17" y3="85.89"/> <curve x1="323.23" x2="333.54" x3="317.24" y1="117.27" y2="165.09" y3="213.88"/> <curve x1="303.32" x2="274.62" x3="244.7" y1="257.75" y2="284.43" y3="303.35"/> <close/> <move x="125.18" y="263.57"/> <line x="66.55" y="89.09"/> <curve x1="74.32" x2="80.26" x3="85.08" y1="88.65" y2="88.07" y3="87.41"/> <curve x1="88.66" x2="91.22" x3="91.07" y1="86.7" y2="84.18" y3="81.02"/> <curve x1="91" x2="88.91" x3="84.84" y1="78.21" y2="74.82" y3="75.03"/> <curve x1="64.06" x2="46.71" x3="30.6" y1="76.99" y2="77.24" y3="76.87"/> <curve x1="57.28" x2="97.52" x3="150.27" y1="37.7" y2="9.7" y3="4.65"/> <curve x1="190.67" x2="241.27" x3="273.76" y1="0" y2="15.07" y3="46.83"/> <curve x1="260.81" x2="252.35" x3="246.13" y1="46.15" y2="51.53" y3="64.17"/> <curve x1="244.24" x2="241.43" x3="251.54" y1="68.7" y2="78.95" y3="98.38"/> <curve x1="269.43" x2="275.92" x3="271.39" y1="125.95" y2="138.63" y3="172.32"/> <curve x1="266.52" x2="264.49" x3="244.96" y1="203.36" y2="187.13" y3="263.05"/> <line x="186.13" y="89.09"/> <curve x1="191.91" x2="202.9" x3="207.03" y1="88.79" y2="88.27" y3="86.76"/> <curve x1="209.28" x2="211.23" x3="210.9" y1="86.03" y2="83.11" y3="80.37"/> <curve x1="210.44" x2="206.82" x3="203.1" y1="76.79" y2="75.01" y3="75.31"/> <curve x1="176.82" x2="148.14" x3="120.31" y1="77.9" y2="77.81" y3="75.11"/> <curve x1="116" x2="113.45" x3="112.72" y1="74.68" y2="77.07" y3="80.22"/> <curve x1="112.08" x2="114.58" x3="116.4" y1="83.63" y2="86.88" y3="87.25"/> <curve x1="124.6" x2="130.12" x3="135.65" y1="88.73" y2="88.77" y3="89.01"/> <line x="160.58" y="157.63"/> <close/> <move x="119.43" y="317.59"/> <line x="167.78" y="177.06"/> <line x="217.97" y="315.11"/> <curve x1="184.81" x2="147.54" x3="119.43" y1="327.26" y2="326.68" y3="317.59"/> <close/> <move x="95.71" y="309.02"/> <curve x1="73.69" x2="32.37" x3="11.42" y1="297.01" y2="273.51" y3="211.16"/> <curve x1="0" x2="2.22" x3="18.85" y1="179.75" y2="136.11" y3="97.72"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="344.05" name="Wordpress 2" strokewidth="inherit" w="343.69"> <connections/> <foreground> <path> <move x="172.97" y="344.05"/> <curve x1="80.34" x2="0" x3="0" y1="344.05" y2="271.41" y3="171.01"/> <curve x1="0" x2="74.32" x3="171.51" y1="79.85" y2="0" y3="0"/> <curve x1="274.64" x2="343.69" x3="343.69" y1="0" y2="83.83" y3="173.09"/> <curve x1="343.69" x2="261.22" x3="172.97" y1="272.32" y2="344.05" y3="344.05"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="175.51" y="186.74"/> <line x="127.57" y="318.56"/> <line x="223.44" y="317.56"/> <close/> <move x="250.28" y="303.95"/> <curve x1="275.94" x2="306.66" x3="317.06" y1="288.06" y2="255.41" y3="222.69"/> <curve x1="333.14" x2="324.48" x3="308.09" y1="172.46" y2="139.79" y3="98.88"/> <curve x1="308.5" x2="307.08" x3="304.86" y1="120.61" y2="140.39" y3="147.5"/> <close/> <move x="249.03" y="264.76"/> <line x="271.5" y="187.61"/> <curve x1="277.89" x2="277.53" x3="264.26" y1="163.5" y2="148.32" y3="123.7"/> <curve x1="252.61" x2="243.26" x3="251.15" y1="104.53" y2="97.01" y3="71.28"/> <curve x1="254.99" x2="264.33" x3="275.24" y1="61.7" y2="59.03" y3="58.29"/> <curve x1="248.84" x2="202.36" x3="166.27" y1="33.15" y2="17.08" y3="18.85"/> <curve x1="115.97" x2="69.45" x3="44.51" y1="20.57" y2="50.08" y3="86.65"/> <curve x1="60.04" x2="76.86" x3="94.03" y1="87.79" y2="87.4" y3="86.23"/> <curve x1="98.72" x2="100.73" x3="101.37" y1="85.11" y2="88.61" y3="92.02"/> <curve x1="101.9" x2="99.92" x3="95.77" y1="95.8" y2="98.8" y3="99.16"/> <curve x1="90.82" x2="85.77" x3="78.06" y1="99.72" y2="100.22" y3="99.39"/> <line x="134.39" y="263.34"/> <line x="166.9" y="164.45"/> <line x="142.79" y="99.51"/> <curve x1="137.85" x2="128.8" x3="125.93" y1="100.01" y2="100.17" y3="99.6"/> <curve x1="122.3" x2="120.48" x3="121.21" y1="98.47" y2="94.73" y3="90.91"/> <curve x1="122.13" x2="125.27" x3="131.37" y1="86.97" y2="84.32" y3="85.15"/> <curve x1="154.89" x2="179.9" x3="206.02" y1="87.64" y2="87.57" y3="85.59"/> <curve x1="211.82" x2="215.22" x3="216.74" y1="84.36" y2="86.13" y3="90.58"/> <curve x1="217.29" x2="215.3" x3="211.61" y1="94.08" y2="97.7" y3="98.54"/> <curve x1="207.87" x2="203.75" x3="193.54" y1="99.42" y2="100.24" y3="100.19"/> <close/> <move x="31.06" y="109.9"/> <curve x1="19.45" x2="13.7" x3="28.71" y1="140.37" y2="188.68" y3="225.69"/> <curve x1="54.77" x2="79.61" x3="104.79" y1="286.53" y2="291.14" y3="311.26"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="189.69" name="Xanga" strokewidth="inherit" w="349.6"> <connections/> <foreground> <save/> <fillcolor color="#437fbb"/> <path> <move x="3.1" y="55.87"/> <line x="3.1" y="0"/> <line x="59.25" y="0"/> <line x="59.25" y="55.87"/> <close/> </path> <fill/> <fillcolor color="#f48422"/> <path> <move x="73.48" y="55.87"/> <line x="73.48" y="0"/> <line x="129.69" y="0"/> <line x="129.69" y="55.87"/> <close/> </path> <fill/> <fillcolor color="#b51e23"/> <path> <move x="144.49" y="55.87"/> <line x="144.49" y="0"/> <line x="200.36" y="0"/> <line x="200.36" y="55.87"/> <close/> </path> <fill/> <fillcolor color="#f7bf20"/> <path> <move x="215.27" y="55.87"/> <line x="215.27" y="0"/> <line x="271.26" y="0"/> <line x="271.26" y="55.87"/> <close/> </path> <fill/> <fillcolor color="#4cb647"/> <path> <move x="285.72" y="55.87"/> <line x="285.72" y="0"/> <line x="341.76" y="0"/> <line x="341.76" y="55.87"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="328.6" y="120.28"/> <curve x1="319.12" x2="313.54" x3="305.83" y1="122.2" y2="122.85" y3="127.92"/> <curve x1="302.16" x2="300.75" x3="301.28" y1="130.74" y2="133.67" y3="138.63"/> <curve x1="302.28" x2="305.35" x3="311.81" y1="144.09" y2="146.78" y3="146.84"/> <curve x1="318.6" x2="324.65" x3="328.6" y1="146.71" y2="141.6" y3="138.08"/> <close/> <move x="330.9" y="159.3"/> <curve x1="330.38" x2="329.79" x3="329.46" y1="157.16" y2="155.61" y3="151.88"/> <curve x1="326.84" x2="320.42" x3="315.32" y1="154.12" y2="157.64" y3="159.23"/> <curve x1="306.07" x2="299.06" x3="291.12" y1="161.59" y2="161.66" y3="157.31"/> <curve x1="288.51" x2="282.26" x3="282.49" y1="155.29" y2="149.02" y3="137.73"/> <curve x1="282.75" x2="289.05" x3="297.59" y1="128.24" y2="119.61" y3="115.69"/> <curve x1="309.46" x2="320.13" x3="328.6" y1="110.63" y2="108.64" y3="107.78"/> <line x="328.6" y="99.75"/> <curve x1="328.62" x2="324.59" x3="315.88" y1="94.62" y2="90.99" y3="90.92"/> <curve x1="306.9" x2="302.69" x3="298.95" y1="90.96" y2="95.97" y3="101.19"/> <line x="286.56" y="91.6"/> <curve x1="290.4" x2="298.83" x3="308.05" y1="86.59" y2="80.04" y3="77.7"/> <curve x1="315.32" x2="326.79" x3="334.86" y1="75.97" y2="77.48" y3="80.45"/> <curve x1="340.31" x2="347.76" x3="347.76" y1="83.14" y2="91.13" y3="106.9"/> <line x="347.76" y="148.12"/> <line x="349.6" y="159.3"/> <close/> <move x="246.54" y="176.08"/> <curve x1="255.33" x2="257.23" x3="263.23" y1="176.32" y2="176.19" y3="172.73"/> <curve x1="269.28" x2="267.83" x3="263.87" y1="168.93" y2="165" y3="162.18"/> <curve x1="259.13" x2="255.59" x3="248.46" y1="159.19" y2="158.28" y3="157.47"/> <curve x1="241.57" x2="234.85" x3="230.88" y1="156.87" y2="157.21" y3="161.94"/> <curve x1="227.05" x2="229.01" x3="231.92" y1="167.24" y2="171.14" y3="173.37"/> <curve x1="235.43" x2="240.23" x3="246.54" y1="175.57" y2="175.61" y3="176.08"/> <close/> <move x="246.3" y="117.92"/> <curve x1="255.26" x2="259.8" x3="259.8" y1="117.92" y2="110.99" y3="104.5"/> <curve x1="259.8" x2="255.04" x3="246.3" y1="97.84" y2="91.16" y3="91.16"/> <curve x1="236.6" x2="231.76" x3="231.76" y1="91.25" y2="98.35" y3="104.93"/> <curve x1="231.76" x2="238.41" x3="246.3" y1="112.42" y2="117.92" y3="117.92"/> <close/> <move x="226.77" y="126.23"/> <curve x1="221.81" x2="216.34" x3="214.94" y1="122.26" y2="117.11" y3="109.01"/> <curve x1="213.96" x2="215.51" x3="222.85" y1="101.26" y2="94.01" y3="85.45"/> <curve x1="227.32" x2="238.11" x3="247.58" y1="80.61" y2="76.68" y3="77.18"/> <curve x1="256.52" x2="262.25" x3="266.19" y1="77.86" y2="80.62" y3="84.53"/> <curve x1="272.28" x2="278.95" x3="285.33" y1="77.58" y2="76.78" y3="77.29"/> <line x="285.33" y="90.04"/> <curve x1="278.39" x2="275.07" x3="272.6" y1="89.73" y2="89.73" y3="91.57"/> <curve x1="276.04" x2="278.54" x3="276.5" y1="96.84" y2="102.84" y3="112.49"/> <curve x1="273.75" x2="267.2" x3="252.69" y1="123.52" y2="129.52" y3="131.82"/> <curve x1="247.02" x2="240.47" x3="234.16" y1="132.7" y2="130.67" y3="133.26"/> <curve x1="231.27" x2="231.14" x3="231.6" y1="134.7" y2="136.51" y3="138.57"/> <curve x1="232.47" x2="234.46" x3="240.15" y1="140.91" y2="141.82" y3="142.85"/> <curve x1="250.3" x2="256.98" x3="267.19" y1="144.29" y2="142.71" y3="145.28"/> <curve x1="276.16" x2="283.27" x3="284.41" y1="147.71" y2="152.27" y3="160.06"/> <curve x1="285.86" x2="279.95" x3="266.07" y1="172.29" y2="180.7" y3="185.63"/> <curve x1="254.1" x2="238.44" x3="224.65" y1="189.69" y2="189.43" y3="185.19"/> <curve x1="220.66" x2="211.5" x3="211.11" y1="183.79" y2="179.12" y3="169.53"/> <curve x1="210.89" x2="215.09" x3="227.28" y1="163.77" y2="154.69" y3="154.63"/> <curve x1="214.12" x2="213.95" x3="214.3" y1="149.77" y2="143.79" y3="138.77"/> <curve x1="214.92" x2="221.74" x3="226.77" y1="134.53" y2="128.5" y3="126.23"/> <close/> <move x="140.57" y="159.3"/> <line x="140.57" y="78.46"/> <line x="158.27" y="78.46"/> <line x="158.12" y="87.76"/> <curve x1="163.88" x2="172.13" x3="181.11" y1="82.91" y2="78.2" y3="76.86"/> <curve x1="185.24" x2="195.13" x3="199.96" y1="76.38" y2="77.84" y3="82.67"/> <curve x1="205.86" x2="206.86" x3="206.86" y1="89.27" y2="97.09" y3="101.71"/> <line x="206.86" y="159.3"/> <line x="187.93" y="159.3"/> <line x="187.93" y="101.47"/> <curve x1="187.58" x2="184.37" x3="178.48" y1="97.12" y2="92.49" y3="92.05"/> <curve x1="173.48" x2="164.51" x3="159.72" y1="91.78" y2="94.62" y3="101.26"/> <line x="159.72" y="159.3"/> <close/> <move x="109.95" y="120.47"/> <curve x1="103.31" x2="95.55" x3="89.96" y1="121.35" y2="122.9" y3="126.15"/> <curve x1="84.66" x2="82.28" x3="82.55" y1="129.49" y2="132.19" y3="137.5"/> <curve x1="83.11" x2="86.48" x3="90.92" y1="143.86" y2="146.14" y3="146.66"/> <curve x1="95.99" x2="102.51" x3="109.95" y1="146.98" y2="144.21" y3="137.63"/> <close/> <move x="112.2" y="159.3"/> <curve x1="111.24" x2="110.9" x3="110.57" y1="156.39" y2="154.19" y3="151.92"/> <curve x1="107.15" x2="103.08" x3="95.39" y1="154.2" y2="157.3" y3="159.58"/> <curve x1="86.35" x2="76.89" x3="72.1" y1="161.97" y2="160.53" y3="157.11"/> <curve x1="66.23" x2="61.6" x3="64.23" y1="152.36" y2="143.74" y3="131.74"/> <curve x1="65.79" x2="74.13" x3="86.12" y1="124.95" y2="116.27" y3="112.81"/> <curve x1="93.73" x2="100.36" x3="109.95" y1="110.38" y2="108.89" y3="107.84"/> <line x="109.95" y="99.87"/> <curve x1="109.2" x2="107.82" x3="96.43" y1="95.65" y2="91.6" y3="90.92"/> <curve x1="86.8" x2="83.99" x3="80.13" y1="92.13" y2="96.74" y3="100.83"/> <line x="67.69" y="91.45"/> <curve x1="71.19" x2="72.94" x3="88.23" y1="87.35" y2="83.56" y3="77.95"/> <curve x1="98.98" x2="113.02" x3="119.11" y1="75.77" y2="77.7" y3="81.97"/> <curve x1="127.03" x2="128.98" x3="128.98" y1="87.53" y2="99.21" y3="104.1"/> <line x="128.98" y="149.08"/> <curve x1="128.98" x2="129.56" x3="130.46" y1="152.89" y2="155.95" y3="159.3"/> <close/> <move x="0" y="159.3"/> <line x="24.05" y="117.2"/> <line x="0.69" y="78.46"/> <line x="22.2" y="78.46"/> <line x="33.49" y="101.6"/> <line x="45.24" y="78.46"/> <line x="65.64" y="78.46"/> <line x="42.89" y="117.5"/> <line x="67.83" y="159.3"/> <line x="47.53" y="159.3"/> <line x="33.79" y="133.98"/> <line x="20.45" y="159.3"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="328.12" name="Xerpi" strokewidth="inherit" w="351.36"> <connections/> <foreground> <path> <move x="176.86" y="328.12"/> <curve x1="154.47" x2="52.32" x3="24.91" y1="317.32" y2="206.54" y3="142.61"/> <curve x1="9.04" x2="0" x3="24.75" y1="107.46" y2="62.96" y3="32.05"/> <curve x1="46.2" x2="81.29" x3="116.3" y1="7.01" y2="0.87" y3="4.56"/> <curve x1="141.27" x2="164.87" x3="176.54" y1="7.82" y2="21.79" y3="49.78"/> <curve x1="184.94" x2="193.64" x3="231.18" y1="32.23" y2="14.75" y3="5.52"/> <curve x1="255.31" x2="315.43" x3="335.84" y1="0" y2="2.84" y3="44.19"/> <curve x1="351.36" x2="341.58" x3="329.28" y1="74.96" y2="114.28" y3="139.74"/> <curve x1="313.96" x2="220.72" x3="176.86" y1="184.95" y2="296.68" y3="328.12"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="368.88" name="Xing" strokewidth="inherit" w="324.71"> <connections/> <foreground> <fillcolor color="#247b82"/> <path> <move x="9.16" y="263.75"/> <curve x1="4.83" x2="0" x3="4.27" y1="263.75" y2="257.4" y3="249.82"/> <line x="62.02" y="146.06"/> <line x="23.22" y="79.25"/> <curve x1="20.39" x2="22.34" x3="29.06" y1="74.79" y2="62.03" y3="62.03"/> <line x="84.58" y="62.03"/> <curve x1="91.04" x2="93.36" x3="96.16" y1="62.03" y2="66.39" y3="71.18"/> <line x="136.75" y="147.26"/> <line x="80.06" y="254.06"/> <curve x1="76.65" x2="70.77" x3="65.64" y1="260.99" y2="263.75" y3="263.75"/> <close/> </path> <fill/> <fillcolor color="#d3d525"/> <path> <move x="211.36" y="368.88"/> <curve x1="206.91" x2="204.83" x3="202.42" y1="368.88" y2="366.31" y3="361.74"/> <line x="123.86" y="223.69"/> <line x="245.72" y="11.5"/> <curve x1="250.13" x2="255.67" x3="263.13" y1="4.68" y2="0" y3="0"/> <line x="316.82" y="0"/> <curve x1="324.71" x2="324.32" x3="322.09" y1="0" y2="6.39" y3="10.39"/> <line x="202.5" y="222.25"/> <line x="279.73" y="362.08"/> <curve x1="281.88" x2="281.3" x3="276.6" y1="366.38" y2="368.88" y3="368.88"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="218.16" name="Yahoo" strokewidth="inherit" w="372.44"> <connections/> <foreground> <path> <move x="325.07" y="173.8"/> <line x="325.14" y="63.13"/> <line x="372.44" y="69.79"/> <line x="345.04" y="176.12"/> <close/> <move x="316.28" y="214.22"/> <line x="319.96" y="187.62"/> <line x="347.36" y="191.29"/> <line x="344.64" y="217.5"/> <close/> <move x="88.3" y="218.16"/> <line x="94.42" y="202.08"/> <curve x1="103.82" x2="121.22" x3="126.57" y1="202.66" y2="202.61" y3="201.11"/> <curve x1="139.49" x2="142.68" x3="142.96" y1="197.03" y2="196.83" y3="184.04"/> <line x="142.2" y="134.65"/> <curve x1="109.09" x2="72.01" x3="48.33" y1="93.29" y2="45.07" y3="20.97"/> <line x="0" y="14.02"/> <line x="0" y="0"/> <line x="163.57" y="0"/> <line x="162.73" y="12.78"/> <line x="111.61" y="17.14"/> <line x="183.11" y="113"/> <line x="229.44" y="74.34"/> <curve x1="238.38" x2="245.64" x3="249.09" y1="66.36" y2="57.33" y3="52.13"/> <line x="206.19" y="44.94"/> <line x="203.08" y="28.94"/> <line x="346.42" y="28.94"/> <line x="336.2" y="44.86"/> <curve x1="317.71" x2="304.09" x3="293.3" y1="48.39" y2="50.5" y3="53.96"/> <curve x1="253.09" x2="225.7" x3="207.4" y1="83.01" y2="104.93" y3="123.36"/> <curve x1="201.65" x2="198.82" x3="197.92" y1="129.21" y2="132.92" y3="135.76"/> <curve x1="196.77" x2="196.9" x3="197.1" y1="150.87" y2="175.41" y3="182.04"/> <curve x1="197.48" x2="198.7" x3="202.17" y1="188.31" y2="199.3" y3="199.9"/> <line x="251.16" y="199.9"/> <line x="251.68" y="218.16"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="231.83" name="Yahoo 2" strokewidth="inherit" w="398.75"> <connections/> <foreground> <path> <move x="149.76" y="231.83"/> <curve x1="57.99" x2="0" x3="0" y1="231.83" y2="180.97" y3="119.23"/> <curve x1="0" x2="62.21" x3="152.55" y1="50.81" y2="5.38" y3="5.38"/> <curve x1="234.9" x2="299.93" x3="299.93" y1="5.38" y2="49.57" y3="117.39"/> <curve x1="299.93" x2="226.98" x3="149.76" y1="194.87" y2="231.83" y3="231.83"/> <close/> <move x="317.41" y="222.43"/> <line x="321.78" y="185.99"/> <line x="362.32" y="190.94"/> <line x="358.36" y="227.51"/> <close/> <move x="329.83" y="162.69"/> <line x="329.83" y="0"/> <line x="398.75" y="9.04"/> <line x="359.77" y="166.08"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="106.02" y="184.88"/> <curve x1="133.43" x2="162.57" x3="193.16" y1="184.5" y2="184.73" y3="184.88"/> <line x="193.56" y="174.96"/> <line x="165.45" y="174.96"/> <line x="163.47" y="157.18"/> <curve x1="163.66" x2="163.62" x3="164.88" y1="149.48" y2="142.43" y3="137.69"/> <curve x1="186.6" x2="200.81" x3="216.71" y1="115.39" y2="106.36" y3="94.48"/> <line x="238.04" y="90.53"/> <line x="244.11" y="82.05"/> <curve x1="227.49" x2="192.55" x3="166.72" y1="80.82" y2="81.67" y3="81.49"/> <line x="168.27" y="90.95"/> <curve x1="177.69" x2="185.36" x3="192.14" y1="91.41" y2="92.61" y3="94.2"/> <curve x1="187.32" x2="170.92" x3="155.99" y1="103.91" y2="114.27" y3="127.67"/> <curve x1="140.51" x2="129.32" x3="117.36" y1="105.63" y2="93.66" y3="75.7"/> <curve x1="128.1" x2="137.58" x3="145.11" y1="74.07" y2="73.85" y3="72.38"/> <line x="145.84" y="65.93"/> <curve x1="127.31" x2="91.85" x3="56.92" y1="64.54" y2="67.07" y3="65.39"/> <line x="57.35" y="74.13"/> <curve x1="66.02" x2="75.63" x3="83.25" y1="75.3" y2="75.77" y3="77.67"/> <curve x1="103.3" x2="119.98" x3="133.88" y1="98.27" y2="119.85" y3="139.46"/> <curve x1="134.64" x2="134.31" x3="134.38" y1="147.23" y2="158.25" y3="168.06"/> <curve x1="134.35" x2="131.69" x3="122.52" y1="174.45" y2="174.8" y3="176.11"/> <line x="107.51" y="176.22"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="298.31" name="Yammer" strokewidth="inherit" w="348.16"> <connections/> <foreground> <path> <move x="301.86" y="69.56"/> <curve x1="264.08" x2="229.04" x3="208.23" y1="88.73" y2="105.4" y3="109.08"/> <curve x1="202.64" x2="200.5" x3="200.13" y1="110.05" y2="108.47" y3="107.35"/> <curve x1="199.49" x2="199.54" x3="203.38" y1="105.19" y2="102.59" y3="98.03"/> <curve x1="218.49" x2="255.43" x3="284.85" y1="80.46" y2="57.79" y3="39.28"/> <curve x1="291.72" x2="303.09" x3="307.38" y1="35.26" y2="38.14" y3="46.31"/> <curve x1="314.52" x2="305.07" x3="301.86" y1="59.47" y2="67.74" y3="69.56"/> <close/> <move x="332.82" y="169.23"/> <curve x1="310.55" x2="256.44" x3="231.77" y1="169.02" y2="167.91" y3="160.29"/> <curve x1="227.41" x2="224.77" x3="224.98" y1="158.96" y2="156.48" y3="154.5"/> <curve x1="225.25" x2="227.62" x3="236.64" y1="152.26" y2="148.82" y3="146.57"/> <curve x1="256.58" x2="309.71" x3="330.94" y1="140.68" y2="135.72" y3="134.8"/> <curve x1="343.53" x2="347.87" x3="348.16" y1="133.99" y2="146.8" y3="152.5"/> <curve x1="347.94" x2="341.32" x3="332.82" y1="159.5" y2="169.31" y3="169.23"/> <close/> <move x="283.12" y="265.59"/> <curve x1="251.86" x2="211.01" x3="201.76" y1="245.38" y2="218.27" y3="203.73"/> <curve x1="199.01" x2="198.98" x3="200.05" y1="199.7" y2="197.56" y3="196.18"/> <curve x1="202.26" x2="206.81" x3="212.75" y1="194.24" y2="194.44" y3="195.9"/> <curve x1="241.09" x2="274.8" x3="302.02" y1="203.79" y2="221.95" y3="237.16"/> <curve x1="305.79" x2="311.68" x3="305.7" y1="238.73" y2="249.93" y3="259.21"/> <curve x1="301.39" x2="293.22" x3="283.12" y1="265.6" y2="270.14" y3="265.59"/> <close/> <move x="16.5" y="294.92"/> <curve x1="13.09" x2="5.25" x3="5.41" y1="294.61" y2="288.24" y3="278"/> <curve x1="5.81" x2="13.91" x3="24.17" y1="268.62" y2="261.28" y3="262.25"/> <curve x1="40.58" x2="59.39" x3="69.59" y1="264.1" y2="264.22" y3="240.78"/> <curve x1="73.14" x2="76.75" x3="79.13" y1="233.54" y2="226.32" y3="218.78"/> <line x="2.4" y="28.15"/> <curve x1="0" x2="1.89" x3="13" y1="18.86" y2="10.52" y3="4.23"/> <curve x1="21.42" x2="33.25" x3="38.05" y1="0" y2="3.78" y3="15.6"/> <line x="98.79" y="169.5"/> <line x="158.38" y="14.83"/> <curve x1="163.5" x2="175.13" x3="182.44" y1="4.94" y2="4.12" y3="6.9"/> <curve x1="191.88" x2="195.21" x3="192.26" y1="11.12" y2="21.18" y3="29.53"/> <line x="106.62" y="242.84"/> <curve x1="95.54" x2="84.3" x3="69.07" y1="269.16" y2="283.41" y3="289.33"/> <curve x1="55.7" x2="40.03" x3="16.5" y1="294.83" y2="298.31" y3="294.92"/> <close/> </path> <fillstroke/> </foreground> </shape> <shape aspect="variable" h="331.84" name="Yandex" strokewidth="inherit" w="158.66"> <connections/> <foreground> <fillcolor color="#ec1f23"/> <path> <move x="125.93" y="180.05"/> <line x="125.88" y="27.53"/> <line x="100.05" y="27.37"/> <curve x1="82.67" x2="64.79" x3="57.46" y1="28.72" y2="43.75" y3="61.58"/> <curve x1="45.87" x2="48.88" x3="52.5" y1="89.25" y2="122.98" y3="136.78"/> <curve x1="60.71" x2="89.11" x3="105.82" y1="172.08" y2="180.11" y3="180.11"/> <close/> <move x="158.65" y="328.84"/> <curve x1="158.65" x2="157.41" x3="155.71" y1="330.8" y2="331.84" y3="331.84"/> <line x="130.47" y="331.84"/> <curve x1="128.41" x2="125.6" x3="125.6" y1="331.84" y2="331.26" y3="327.43"/> <line x="125.76" y="208.69"/> <line x="103.45" y="208.69"/> <line x="43.57" y="327.32"/> <curve x1="41.77" x2="39.92" x3="37.58" y1="330.85" y2="331.84" y3="331.84"/> <line x="6.47" y="331.84"/> <curve x1="2.27" x2="0" x3="1.86" y1="331.84" y2="328.83" y3="325.13"/> <line x="68.65" y="203.17"/> <curve x1="48.41" x2="28.77" x3="18.94" y1="194.37" y2="175.6" y3="146.61"/> <curve x1="11.6" x2="8.14" x3="27.07" y1="125.63" y2="82.17" y3="48.05"/> <curve x1="37.26" x2="69.99" x3="98.06" y1="26.31" y2="0" y3="0"/> <line x="152.33" y="0"/> <curve x1="157.94" x2="158.66" x3="158.65" y1="0" y2="3.15" y3="6.74"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="415.23" name="Yelp" strokewidth="inherit" w="317.28"> <connections/> <foreground> <path> <move x="71.35" y="385.67"/> <curve x1="58.07" x2="56.04" x3="68.31" y1="374.88" y2="360.08" y3="343.49"/> <line x="117.03" y="286.53"/> <curve x1="130.39" x2="142.5" x3="154.03" y1="271.89" y2="270.59" y3="275.39"/> <curve x1="165.75" x2="171.15" x3="171.05" y1="281.06" y2="292.01" y3="300.35"/> <line x="168.97" y="384.23"/> <curve x1="168.89" x2="153.18" x3="132.86" y1="398.7" y2="415.23" y3="409.64"/> <curve x1="107.07" x2="80.94" x3="71.35" y1="405.07" y2="393.03" y3="385.67"/> <close/> <move x="184.03" y="293.96"/> <curve x1="180.26" x2="180.8" x3="189.03" y1="285.67" y2="273.98" y3="264"/> <curve x1="196.69" x2="206.39" x3="217.95" y1="255.58" y2="252.96" y3="255.61"/> <curve x1="246.97" x2="279.13" x3="299.83" y1="265.46" y2="275.45" y3="284.9"/> <curve x1="315.29" x2="317.28" x3="313.21" y1="292.8" y2="308.41" y3="318.06"/> <curve x1="306.05" x2="283.32" x3="269.29" y1="337.99" y2="365.88" y3="376.3"/> <curve x1="260.39" x2="244.91" x3="232.49" y1="383.32" y2="386.53" y3="372.72"/> <curve x1="217.07" x2="199.67" x3="184.03" y1="352.56" y2="323.88" y3="293.96"/> <close/> <move x="214.3" y="240.57"/> <curve x1="198.61" x2="187.45" x3="180.16" y1="243.32" y2="239.24" y3="227.49"/> <curve x1="175.39" x2="175.49" x3="182.41" y1="218.49" y2="206.99" y3="196.75"/> <curve x1="197.97" x2="213.91" x3="230.08" y1="174.58" y2="152.97" y3="131.71"/> <curve x1="242.21" x2="258.85" x3="270.61" y1="116.6" y2="116.89" y3="126.29"/> <curve x1="290.27" x2="306.07" x3="311.18" y1="144.48" y2="169.69" y3="184.03"/> <curve x1="316.98" x2="309.75" x3="291.18" y1="201.94" y2="214.97" y3="220.99"/> <curve x1="275.66" x2="240.47" x3="214.3" y1="226.4" y2="234.91" y3="240.57"/> <close/> <move x="170.89" y="173.49"/> <curve x1="171.18" x2="164.49" x3="150.6" y1="191.89" y2="205.74" y3="208.32"/> <curve x1="138.32" x2="128.54" x3="117.21" y1="211.25" y2="207.97" y3="193.46"/> <curve x1="92.59" x2="65.15" x3="36.73" y1="152.42" y2="109.83" y3="68.12"/> <curve x1="28.69" x2="31.09" x3="51.32" y1="50.79" y2="35.68" y3="24.37"/> <curve x1="59.92" x2="105.6" x3="124.9" y1="19.79" y2="7.29" y3="4.37"/> <curve x1="147.18" x2="158.26" x3="160.91" y1="0" y2="12.3" y3="26.44"/> <curve x1="165.3" x2="167.62" x3="170.89" y1="75.1" y2="122.19" y3="173.49"/> <close/> <move x="123.76" y="220.62"/> <curve x1="133.96" x2="139.07" x3="136.54" y1="227.98" y2="236.85" y3="248.26"/> <curve x1="133.58" x2="127.47" x3="118.48" y1="261.27" y2="267.32" y3="270.31"/> <line x="42.27" y="294.92"/> <curve x1="26.56" x2="10.81" x3="4.4" y1="298.77" y2="295.91" y3="275.42"/> <curve x1="0" x2="0.61" x3="5.04" y1="262.29" y2="228.38" y3="206.4"/> <curve x1="6.78" x2="19.66" x3="41.47" y1="196.67" y2="178.8" y3="186.59"/> <curve x1="55" x2="111.61" x3="123.76" y1="191.54" y2="211.7" y3="220.62"/> <close/> </path> <fillstroke/> <fillcolor color="#ffffff"/> <path> <move x="85.17" y="370.17"/> <curve x1="96.83" x2="116.67" x3="134.94" y1="376.76" y2="384.36" y3="389.03"/> <curve x1="145.72" x2="148.38" x3="148.36" y1="391.73" y2="387.02" y3="379.04"/> <line x="149.96" y="302.27"/> <curve x1="150.05" x2="142.18" x3="136.46" y1="295" y2="291.57" y3="296.76"/> <curve x1="118.04" x2="95.69" x3="84.05" y1="316.65" y2="342.46" y3="357.47"/> <curve x1="78.91" x2="80.98" x3="85.17" y1="363.59" y2="367.17" y3="370.17"/> <close/> <move x="247.75" y="358.35"/> <curve x1="251.59" x2="255.27" x3="257.97" y1="361.94" y2="361.33" y3="358.75"/> <curve x1="270.81" x2="289.27" x3="293.44" y1="347.23" y2="322.73" y3="312.57"/> <curve x1="294.79" x2="293.96" x3="288.97" y1="307.87" y2="304.8" y3="302.75"/> <line x="213.44" y="276.24"/> <curve x1="205.14" x2="200.35" x3="203.94" y1="273.79" y2="281.69" y3="287.92"/> <curve x1="215.24" x2="232.91" x3="247.75" y1="306.78" y2="337.53" y3="358.35"/> <close/> <move x="286.25" y="200.65"/> <curve x1="293.98" x2="293.55" x3="291.51" y1="197.94" y2="193.96" y3="189.6"/> <curve x1="285.9" x2="268.52" x3="258.05" y1="177.55" y2="152.87" y3="142.79"/> <curve x1="253.1" x2="248.86" x3="246.06" y1="138.22" y2="142.68" y3="145.76"/> <curve x1="228.8" x2="214.06" x3="200.08" y1="167.71" y2="188.05" y3="207.9"/> <curve x1="193.34" x2="202.13" x3="209.04" y1="217.46" y2="222.4" y3="220.76"/> <curve x1="225.42" x2="267.33" x3="286.25" y1="216.96" y2="206.67" y3="200.65"/> <close/> <move x="140.76" y="32.5"/> <curve x1="140.13" x2="136.88" x3="129.89" y1="25.46" y2="23.19" y3="24.72"/> <curve x1="112.35" x2="78.98" x3="62.45" y1="27.92" y2="36.54" y3="42.6"/> <curve x1="52.6" x2="52.2" x3="54.89" y1="45.85" y2="52.99" y3="57.49"/> <curve x1="102.22" x2="110.87" x3="135.36" y1="125.43" y2="144.48" y3="182.75"/> <curve x1="139.26" x2="142.84" x3="145.2" y1="187.42" y2="189.68" y3="188.58"/> <curve x1="147.96" x2="150.02" x3="149.92" y1="187.1" y2="182.38" y3="176.85"/> <curve x1="147.61" x2="144.86" x3="140.76" y1="130.98" y2="83.75" y3="32.5"/> <close/> <move x="108.9" y="251.38"/> <curve x1="113.89" x2="115.63" x3="116.09" y1="249.71" y2="248.06" y3="245.39"/> <curve x1="116.68" x2="115.38" x3="110.18" y1="241.68" y2="239.15" y3="236.12"/> <curve x1="86.25" x2="51.83" x3="36.76" y1="225.85" y2="211.96" y3="206.96"/> <curve x1="31.28" x2="26.03" x3="24.61" y1="205.15" y2="205.3" y3="213.11"/> <curve x1="21.48" x2="21.67" x3="23.62" y1="230.93" y2="253.95" y3="266.78"/> <curve x1="25.52" x2="30.74" x3="37.19" y1="277.83" y2="276.3" y3="274.28"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="396.1" name="Yoolink" strokewidth="inherit" w="396.13"> <connections/> <foreground> <fillcolor color="#a8c838"/> <path> <move x="198.71" y="396.1"/> <curve x1="80" x2="0" x3="0" y1="396.1" y2="299.29" y3="199.04"/> <curve x1="0" x2="79.75" x3="197.03" y1="98.47" y2="0" y3="0"/> <curve x1="298.47" x2="396.13" x3="396.13" y1="0" y2="81.3" y3="198"/> <curve x1="396.13" x2="319.63" x3="198.71" y1="298.18" y2="396.1" y3="396.1"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="198.53" y="359.67"/> <curve x1="127.81" x2="37.29" x3="37.29" y1="359.67" y2="304.15" y3="198.36"/> <curve x1="37.29" x2="100.54" x3="197" y1="117.95" y2="37.56" y3="37.56"/> <curve x1="280.11" x2="359.23" x3="359.23" y1="37.56" y2="101.88" y3="198.8"/> <curve x1="359.23" x2="284.16" x3="198.53" y1="290.55" y2="359.67" y3="359.67"/> <close/> </path> <fill/> <fillcolor color="#437cc1"/> <path> <move x="214.31" y="208.39"/> <line x="260.4" y="144"/> <curve x1="264.69" x2="261.62" x3="255.77" y1="137.69" y2="127.49" y3="123.31"/> <curve x1="247.52" x2="237.19" x3="233.24" y1="117.2" y2="120.45" y3="125.78"/> <line x="198.17" y="175"/> <line x="163.58" y="125.94"/> <curve x1="158.77" x2="148.64" x3="141.05" y1="119.93" y2="117.29" y3="123.39"/> <curve x1="132.3" x2="133.67" x3="136.81" y1="129.7" y2="140.18" y3="144.96"/> <line x="181.81" y="208.99"/> <line x="181.81" y="268.95"/> <curve x1="181.81" x2="189.34" x3="197.37" y1="277.63" y2="284.12" y3="284.12"/> <curve x1="207.78" x2="214.31" x3="214.31" y1="284.12" y2="276.87" y3="267.99"/> <close/> <move x="197.71" y="331.59"/> <curve x1="128.32" x2="65.11" x3="65.11" y1="331.59" y2="275.98" y3="195.99"/> <curve x1="65.11" x2="115.03" x3="197.85" y1="136.75" y2="65.64" y3="65.64"/> <curve x1="275.26" x2="331.9" x3="331.9" y1="65.64" y2="127.12" y3="198.48"/> <curve x1="331.9" x2="273.18" x3="197.71" y1="269.69" y2="331.59" y3="331.59"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="380.89" name="Youmob" strokewidth="inherit" w="379.65"> <connections/> <foreground> <fillcolor color="#4560a8"/> <path> <move x="190.49" y="380.89"/> <curve x1="83.34" x2="0" x3="0" y1="380.89" y2="292.34" y3="192.08"/> <curve x1="0" x2="95.89" x3="191.08" y1="76.2" y2="0" y3="0"/> <curve x1="286.68" x2="379.65" x3="379.65" y1="0" y2="79.83" y3="189.27"/> <curve x1="379.65" x2="284.75" x3="190.49" y1="306.66" y2="380.89" y3="380.89"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="299.96" y="226.69"/> <curve x1="306" x2="314.18" x3="314.18" y1="226.69" y2="215.85" y3="200.44"/> <curve x1="314.18" x2="311.64" x3="300.04" y1="193.76" y2="174.94" y3="174.5"/> <curve x1="289.63" x2="285.31" x3="285.31" y1="174.5" y2="191.32" y3="200.52"/> <curve x1="286.53" x2="294.96" x3="299.96" y1="220.41" y2="226.69" y3="226.69"/> <close/> <move x="263.73" y="255.74"/> <line x="263.73" y="96.28"/> <line x="287.14" y="96.28"/> <line x="286.98" y="155.68"/> <curve x1="291.32" x2="297.74" x3="310.32" y1="149.11" y2="143.25" y3="143.4"/> <curve x1="330.32" x2="336.96" x3="336.96" y1="143.4" y2="169.78" y3="202.35"/> <curve x1="336.96" x2="330.64" x3="313.39" y1="226.25" y2="253.72" y3="258.41"/> <curve x1="305.18" x2="294.17" x3="287.06" y1="260.36" y2="254.13" y3="238.64"/> <line x="286.9" y="255.74"/> <close/> <move x="213.8" y="229.54"/> <curve x1="223.26" x2="229.94" x3="229.94" y1="229.48" y2="215.97" y3="201.09"/> <curve x1="229.94" x2="223.88" x3="213.64" y1="185.92" y2="170.9" y3="170.9"/> <curve x1="204.96" x2="197.66" x3="197.66" y1="170.9" y2="185.37" y3="199.98"/> <curve x1="197.66" x2="206.88" x3="213.8" y1="219.66" y2="229.54" y3="229.54"/> <close/> <move x="214.28" y="258.77"/> <curve x1="191.02" x2="172.26" x3="172.26" y1="258.77" y2="233.03" y3="200.78"/> <curve x1="172.26" x2="187.01" x3="213.32" y1="171.32" y2="142.46" y3="142.46"/> <curve x1="244.04" x2="255.5" x3="255.5" y1="142.46" y2="178.67" y3="201.09"/> <curve x1="255.5" x2="235.31" x3="214.28" y1="233.99" y2="258.77" y3="258.77"/> <close/> <move x="61.69" y="255.74"/> <line x="61.69" y="96.28"/> <line x="96.84" y="96.28"/> <line x="114.1" y="179.05"/> <line x="131.35" y="96.28"/> <line x="160.11" y="96.28"/> <line x="160.11" y="255.74"/> <line x="136.15" y="255.74"/> <line x="136.15" y="141.34"/> <line x="124.96" y="255.74"/> <line x="101.95" y="255.74"/> <line x="84.7" y="144.53"/> <line x="84.7" y="255.74"/> <close/> </path> <fill/> <alpha alpha="0.2"/> <path> <move x="8.64" y="154.76"/> <curve x1="12.78" x2="27.52" x3="44.11" y1="133.63" y2="100.83" y3="69.04"/> <curve x1="86.77" x2="143.37" x3="191.08" y1="19.6" y2="0" y3="0"/> <curve x1="253.25" x2="306.05" x3="336.67" y1="0" y2="32.95" y3="70.16"/> <curve x1="353.01" x2="366.41" x3="368.39" y1="101.14" y2="133.35" y3="162.28"/> <curve x1="370.03" x2="362.54" x3="341.32" y1="185.53" y2="194.15" y3="190.59"/> <curve x1="309.14" x2="254.84" x3="175.93" y1="183.33" y2="152.87" y3="156.68"/> <curve x1="111.39" x2="67.92" x3="34.77" y1="155.99" y2="186.4" y3="190.1"/> <curve x1="17.4" x2="0.5" x3="8.64" y1="191.95" y2="195.18" y3="154.76"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="328.73" name="Youtube" strokewidth="inherit" w="785.75"> <connections/> <foreground> <save/> <fillcolor color="#333333"/> <path> <move x="296.12" y="263.81"/> <line x="268.33" y="263.81"/> <line x="268.33" y="247.31"/> <curve x1="259.84" x2="244.8" x3="234.54" y1="258.76" y2="267.03" y3="266.78"/> <curve x1="222.74" x2="214.17" x3="214.17" y1="266.78" y2="259.62" y3="237.96"/> <line x="214.17" y="110.59"/> <line x="242.05" y="110.59"/> <line x="242.05" y="227.84"/> <curve x1="241.92" x2="250.94" x3="258.38" y1="242.45" y2="244.38" y3="238.31"/> <curve x1="262.65" x2="265.8" x3="268.33" y1="234.36" y2="230.95" y3="227.99"/> <line x="268.33" y="110.59"/> <line x="296.12" y="110.59"/> <close/> <move x="149.77" y="241.34"/> <curve x1="160.23" x2="164.16" x3="164.16" y1="241.34" y2="231.74" y3="220.42"/> <line x="164.16" y="153.26"/> <curve x1="164.16" x2="162.52" x3="150.03" y1="145.71" y2="132.57" y3="132.57"/> <curve x1="138.85" x2="135.46" x3="135.46" y1="132.57" y2="142.6" y3="154.76"/> <line x="135.46" y="218.26"/> <curve x1="135.46" x2="144.93" x3="149.77" y1="239.4" y2="241.34" y3="241.34"/> <close/> <move x="149.23" y="266.87"/> <curve x1="127.73" x2="108.05" x3="108.05" y1="266.87" y2="250.61" y3="221.39"/> <line x="108.05" y="152.73"/> <curve x1="108.05" x2="130.37" x3="150.06" y1="121.14" y2="106.99" y3="106.99"/> <curve x1="179.54" x2="191.75" x3="191.75" y1="106.99" y2="130.02" y3="157.32"/> <line x="191.75" y="219.64"/> <curve x1="191.75" x2="170.17" x3="149.23" y1="254.01" y2="266.87" y3="266.87"/> <close/> <move x="39.07" y="263.81"/> <line x="39.07" y="181.53"/> <curve x1="35.66" x2="15.97" x3="0" y1="155.64" y2="104.23" y3="57.76"/> <line x="32.77" y="57.76"/> <line x="55.08" y="138.47"/> <line x="76.38" y="57.76"/> <line x="107.85" y="57.76"/> <line x="70.12" y="181.4"/> <line x="70.12" y="263.81"/> <close/> </path> <fill/> <restore/> <rect/> <stroke/> <path> <move x="378.23" y="319.12"/> <curve x1="350.89" x2="331.79" x3="327.04" y1="315.68" y2="295.46" y3="266.69"/> <curve x1="317.94" x2="318.89" x3="326.6" y1="227.72" y2="107.67" y3="62.36"/> <curve x1="332.45" x2="344.78" x3="379.11" y1="37.63" y2="17.07" y3="10.24"/> <curve x1="477.19" x2="667.04" x3="727.38" y1="0" y2="2.95" y3="10.46"/> <curve x1="742.53" x2="765.47" x3="773.68" y1="12.65" y2="26.25" y3="52.62"/> <curve x1="785.75" x2="785.32" x3="774.47" y1="100.28" y2="231.85" y3="272.81"/> <curve x1="769.54" x2="758.29" x3="730.66" y1="292.85" y2="310.13" y3="318.31"/> <curve x1="680.71" x2="450.96" x3="378.23" y1="328.58" y2="328.73" y3="319.12"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="716.96" y="169.49"/> <line x="716.96" y="152.4"/> <curve x1="716.96" x2="714.09" x3="703.94" y1="144.09" y2="134.56" y3="134.56"/> <curve x1="692.5" x2="690.18" x3="690.18" y1="134.56" y2="146.65" y3="152.14"/> <line x="690.18" y="169.49"/> <close/> <move x="745.11" y="210.86"/> <curve x1="745.11" x2="745.38" x3="743.05" y1="220.3" y2="230.58" y3="238.07"/> <curve x1="737.54" x2="722.26" x3="703.86" y1="256.38" y2="265.57" y3="265.25"/> <curve x1="681.29" x2="662.37" x3="662.37" y1="265.25" y2="250.89" y3="214.02"/> <line x="662.33" y="160.62"/> <curve x1="662.33" x2="679.95" x3="703.49" y1="124.98" y2="109.46" y3="109.46"/> <curve x1="736.11" x2="745" x3="745" y1="109.46" y2="135.99" y3="153.83"/> <line x="745" y="191.98"/> <line x="690.18" y="192.17"/> <line x="690.18" y="221.26"/> <curve x1="690.18" x2="698.03" x3="703.36" y1="236.15" y2="240.33" y3="240.33"/> <curve x1="711.37" x2="714.65" x3="716.2" y1="240.18" y2="235.83" y3="229.96"/> <curve x1="717" x2="716.91" x3="717.01" y1="226.25" y2="218.12" y3="210.86"/> <close/> <move x="588.28" y="233.17"/> <curve x1="591.64" x2="597.76" x3="602.09" y1="237.86" y2="240.27" y3="240.27"/> <curve x1="609.42" x2="613.74" x3="613.74" y1="240.27" y2="232.38" y3="220.54"/> <line x="613.74" y="151.33"/> <curve x1="613.53" x2="611.01" x3="602.43" y1="144.89" y2="134.43" y3="134.13"/> <curve x1="596.31" x2="591.96" x3="588.28" y1="134.32" y2="137.26" y3="140.65"/> <close/> <move x="560.89" y="263.81"/> <line x="560.89" y="57.76"/> <line x="588.28" y="57.76"/> <line x="588.28" y="126.2"/> <curve x1="594.77" x2="604.07" x3="616.26" y1="117.7" y2="109.26" y3="109.26"/> <curve x1="632.53" x2="639.19" x3="640.13" y1="109.26" y2="122.08" y3="135.19"/> <curve x1="642.09" x2="640.97" x3="641.16" y1="157.53" y2="194.58" y3="225.35"/> <curve x1="641.16" x2="637.08" x3="616.44" y1="247.52" y2="265.27" y3="265.32"/> <curve x1="605.71" x2="596.63" x3="588.17" y1="265.32" y2="259.36" y3="248.57"/> <line x="588.14" y="263.81"/> <close/> <move x="509.07" y="263.81"/> <line x="509.07" y="246.14"/> <curve x1="499.83" x2="494.49" x3="487.2" y1="257.84" y2="260.73" y3="263.34"/> <curve x1="469.51" x2="458.18" x3="457.7" y1="269.49" y2="263.58" y3="235.57"/> <line x="457.7" y="110.59"/> <line x="485.24" y="110.59"/> <line x="485.24" y="230.97"/> <curve x1="485.04" x2="492.49" x3="497.53" y1="241.04" y2="241.63" y3="238.7"/> <curve x1="501.35" x2="505.24" x3="509.07" y1="236.21" y2="232.91" y3="227.97"/> <line x="509.07" y="110.59"/> <line x="536.97" y="110.59"/> <line x="536.97" y="263.81"/> <close/> <move x="390.26" y="263.81"/> <line x="390.26" y="88.29"/> <line x="357.96" y="88.1"/> <line x="357.96" y="57.76"/> <line x="454.2" y="57.76"/> <line x="454.2" y="88.38"/> <line x="421.12" y="87.91"/> <line x="421.12" y="263.81"/> <close/> </path> <fill/> </foreground> </shape> <shape aspect="variable" h="162.54" name="Youtube 2" strokewidth="inherit" w="231.63"> <connections/> <foreground> <path> <move x="30.3" y="158.13"/> <curve x1="16.93" x2="7.08" x3="3.16" y1="156.06" y2="149.15" y3="127.02"/> <curve x1="0.43" x2="0" x3="2.17" y1="113.47" y2="61.63" y3="43.46"/> <curve x1="5.66" x2="13.37" x3="33.4" y1="13.9" y2="6.24" y3="2.73"/> <curve x1="51.66" x2="173.61" x3="194.34" y1="0" y2="0.09" y3="2.3"/> <curve x1="212.67" x2="224.91" x3="228.24" y1="3.58" y2="12.86" y3="34.87"/> <curve x1="231.63" x2="231.15" x3="228.76" y1="57" y2="91.55" y3="120.13"/> <curve x1="226.49" x2="220.3" x3="193.68" y1="142.63" y2="157.89" y3="159.19"/> <curve x1="139.05" x2="84.57" x3="30.3" y1="162.54" y2="162.54" y3="158.13"/> <close/> </path> <fill/> <fillcolor color="#ffffff"/> <path> <move x="90.8" y="112.86"/> <line x="90.83" y="47.48"/> <line x="152.54" y="79.57"/> <close/> </path> <fill/> <fillcolor color="#a6a6a6"/> <path> <move x="146.64" y="82.73"/> <line x="90.83" y="47.48"/> <line x="152.54" y="79.57"/> <close/> </path> <fill/> </foreground> </shape> </shapes> ```
/content/code_sandbox/src/main/webapp/stencils/weblogos.xml
xml
2016-09-06T12:59:15
2024-08-16T13:28:41
drawio
jgraph/drawio
40,265
300,616
```xml import { Chart } from '@antv/g2'; const data = [ { name: 'London', : 'Jan.', : 18.9 }, { name: 'London', : 'Feb.', : 28.8 }, { name: 'London', : 'Mar.', : 39.3 }, { name: 'London', : 'Apr.', : 81.4 }, { name: 'London', : 'May', : 47 }, { name: 'London', : 'Jun.', : 20.3 }, { name: 'London', : 'Jul.', : 24 }, { name: 'London', : 'Aug.', : 35.6 }, { name: 'Berlin', : 'Jan.', : 12.4 }, { name: 'Berlin', : 'Feb.', : 23.2 }, { name: 'Berlin', : 'Mar.', : 34.5 }, { name: 'Berlin', : 'Apr.', : 99.7 }, { name: 'Berlin', : 'May', : 52.6 }, { name: 'Berlin', : 'Jun.', : 35.5 }, { name: 'Berlin', : 'Jul.', : 37.4 }, { name: 'Berlin', : 'Aug.', : 42.4 }, ]; const chart = new Chart({ container: 'container', autoFit: true, }); chart .interval() .data(data) .transform({ type: 'stackY' }) .transform({ type: 'normalizeY' }) .transform({ type: 'sortX', by: 'y', reverse: true }) .encode('x', '') .encode('y', '') .encode('color', 'name') .encode('key', (d) => d['name'] + d['']) .interaction({ legendFilter: false, elementPointMove: { precision: 3, }, }); chart.render(); ```
/content/code_sandbox/site/examples/interaction/data/demo/column-normalizeY-element-point-move.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
426
```xml // See LICENSE.txt for license information. import DatabaseManager from '@database/manager'; import { updateLocalFile, updateLocalFilePath, } from './file'; import type ServerDataOperator from '@database/operator/server_data_operator'; import type FileModel from '@typings/database/models/servers/file'; describe('updateLocalFiles', () => { let operator: ServerDataOperator; const serverUrl = 'baseHandler.test.com'; const fileInfo: FileInfo = { id: 'fileid', clientId: 'clientid', localPath: 'path1', } as FileInfo; beforeEach(async () => { await DatabaseManager.init([serverUrl]); operator = DatabaseManager.serverDatabases[serverUrl]!.operator; }); afterEach(async () => { await DatabaseManager.destroyServerDatabase(serverUrl); }); it('updateLocalFile - handle not found database', async () => { const {error} = await updateLocalFile('foo', fileInfo) as {error: unknown}; expect(error).toBeTruthy(); }); it('updateLocalFile', async () => { const models = await updateLocalFile(serverUrl, fileInfo) as FileModel[]; expect(models).toBeDefined(); expect(models.length).toBe(1); expect(models![0].id).toBe('fileid'); }); it('updateLocalFilePath - handle not found database', async () => { const {error} = await updateLocalFilePath('foo', fileInfo.id as string, 'newpath'); expect(error).toBeTruthy(); }); it('updateLocalFilePath', async () => { await operator.handleFiles({files: [fileInfo], prepareRecordsOnly: false}); const {error} = await updateLocalFilePath(serverUrl, fileInfo.id as string, 'newpath'); expect(error).toBeUndefined(); }); }); ```
/content/code_sandbox/app/actions/local/file.test.ts
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
383
```xml // Generates a string from "color-1" to "color-32" based on an input string export default (str: string) => { let hash = 0; for (let i = 0; i < str.length; i++) { hash += str.charCodeAt(i); } /* Modulo 32 lets us be case insensitive for ascii due to A being ascii 65 (100 0001) while a being ascii 97 (110 0001) */ return "color-" + (1 + (hash % 32)).toString(); }; ```
/content/code_sandbox/client/js/helpers/colorClass.ts
xml
2016-02-09T03:16:03
2024-08-16T10:52:38
thelounge
thelounge/thelounge
5,518
126
```xml <?xml version="1.0" encoding="utf-8"?> <!-- /**************************************************************************** ** ** Contact: path_to_url ** ** This file is part of the Qt VS Tools. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see path_to_url For further ** information use the contact form at path_to_url ** ** Alternatively, this file may be used under the terms of the GNU ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** be met: path_to_url ** ** $QT_END_LICENSE$ ** ****************************************************************************/ --> <!-- /////////////////////////////////////////////////////////////////////////////////////////////////// // Deployment of Qt dependencies // --> <Project xmlns="path_to_url"> <!-- ///////////////////////////////////////////////////////////////////////////////////////////////// // Setup property page // --> <ItemGroup> <PropertyPageSchema Include="$(MSBuildThisFileDirectory)qtdeploy.xml" /> </ItemGroup> <!-- ///////////////////////////////////////////////////////////////////////////////////////////////// // Default deploy log location // --> <PropertyGroup> <QtDeployLog Condition="'$(QtDeployLog)' == ''">$(IntDir)windeployqt.log</QtDeployLog> </PropertyGroup> <!-- ///////////////////////////////////////////////////////////////////////////////////////////////// // Schedule QtDeploy target to run after Link // --> <PropertyGroup Condition="'$(QtDeploy)' == 'true' AND '$(ApplicationType)' != 'Linux'"> <BuildLinkTargets>$(BuildLinkTargets);QtDeploy</BuildLinkTargets> </PropertyGroup> <!-- ///////////////////////////////////////////////////////////////////////////////////////////////// // Deploy Qt files // --> <Target Name="QtDeploy" AfterTargets="Link" Inputs="$(TargetPath)" Outputs="$(QtDeployLog)" Condition="'$(QtDeploy)' == 'true' AND '$(ApplicationType)' != 'Linux'"> <ItemGroup> <QtDeploy Include="$(TargetPath)"/> </ItemGroup> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Convert string lists in source item properties to lists of items // --> <Flatten Items="@(QtDeploy)" Metadata="QtDeployFiles; QtDeployDir; QtDeployLibDir; QtDeployPluginDir; QtDeployDebugRelease; QtDeployPdb; QtDeployForce; QtDeployNoPatchQt; QtDeployNoPlugins; QtDeployNoLibraries; QtDeployQmlDir; QtDeployQmlImport; QtDeployNoQuickImport; QtDeployNoTranslations; QtDeployNoSystemD3dCompiler; QtDeployNoVirtualKeyboard; QtDeployCompilerRuntime; QtDeployWebkit2; QtDeployAngle; QtDeployNoOpenglSw; QtDeployIncludeModules; QtDeployExcludeModules; QtDeployVerbose"> <Output TaskParameter="Result" ItemName="Options" /> </Flatten> <ItemGroup> <!-- ///////////////////////////////////////////////////////////////////////////////////////////// // Remove quotes from all paths // --> <Options> <Value Condition="( '%(Name)' == 'QtDeployFiles' OR '%(Name)' == 'QtDeployDir' OR '%(Name)' == 'QtDeployLibDir' OR '%(Name)' == 'QtDeployPluginDir' OR '%(Name)' == 'QtDeployQmlDir' OR '%(Name)' == 'QtDeployQmlImport' )" >$([System.String]::Copy('%(Value)').Replace('&quot;', ''))</Value> </Options> <!-- /////////////////////////////////////////////////////////////////////////////////////////// // Escape trailing back-slash in paths // --> <Options> <Value Condition="( '%(Name)' == 'QtDeployFiles' OR '%(Name)' == 'QtDeployDir' OR '%(Name)' == 'QtDeployLibDir' OR '%(Name)' == 'QtDeployPluginDir' OR '%(Name)' == 'QtDeployQmlDir' OR '%(Name)' == 'QtDeployQmlImport' ) AND $([System.String]::Copy('%(Value)').Contains(' ')) AND $([System.String]::Copy('%(Value)').EndsWith('\'))" >%(Value)\</Value> </Options> <!-- /////////////////////////////////////////////////////////////////////////////////////////// // Add quotes to paths containing spaces // --> <Options> <Value Condition="( '%(Name)' == 'QtDeployFiles' OR '%(Name)' == 'QtDeployDir' OR '%(Name)' == 'QtDeployLibDir' OR '%(Name)' == 'QtDeployPluginDir' OR '%(Name)' == 'QtDeployQmlDir' OR '%(Name)' == 'QtDeployQmlImport' ) AND $([System.String]::Copy('%(Value)').Contains(' '))" >&quot;%(Value)&quot;</Value> </Options> <!-- ///////////////////////////////////////////////////////////////////////////////////////////// // Generate tool command line arguments // --> <Options> <!-- [files] Binaries or directory containing the binary. --> <PosArg Condition="'%(Name)' == 'QtDeployFiles'">%(Value)</PosArg> </Options> <Options> <!-- -dir <directory> Use directory instead of binary directory. --> <Arg Condition="'%(Name)' == 'QtDeployDir'">--dir %(Value)</Arg> </Options> <Options> <!-- -libdir <path> Copy libraries to path. --> <Arg Condition="'%(Name)' == 'QtDeployLibDir'">--libdir %(Value)</Arg> </Options> <Options> <!-- -plugindir <path> Copy plugins to path. --> <Arg Condition="'%(Name)' == 'QtDeployPluginDir'">--plugindir %(Value)</Arg> </Options> <Options> <!-- -debug Assume debug binaries. -release Assume release binaries.--> <Arg Condition="'%(Name)' == 'QtDeployDebugRelease' AND '%(Value)' == 'debug'" >--debug</Arg> <Arg Condition="'%(Name)' == 'QtDeployDebugRelease' AND '%(Value)' == 'release'" >--release</Arg> </Options> <Options> <!-- -pdb Deploy .pdb files (MSVC). --> <Arg Condition="'%(Name)' == 'QtDeployPdb' AND '%(Value)' == 'true'" >--pdb</Arg> </Options> <Options> <!-- -force Force updating files. --> <Arg Condition="'%(Name)' == 'QtDeployForce' AND '%(Value)' == 'true'" >--force</Arg> </Options> <Options> <!-- -no-patchqt Do not patch the Qt5Core library. --> <Arg Condition="'%(Name)' == 'QtDeployNoPatchQt' AND '%(Value)' == 'true'" >--no-patchqt</Arg> </Options> <Options> <!-- -no-plugins Skip plugin deployment. --> <Arg Condition="'%(Name)' == 'QtDeployNoPlugins' AND '%(Value)' == 'true'" >--no-plugins</Arg> </Options> <Options> <!-- -no-libraries Skip library deployment. --> <Arg Condition="'%(Name)' == 'QtDeployNoLibraries' AND '%(Value)' == 'true'" >--no-libraries</Arg> </Options> <Options> <!-- -qmldir <directory> Scan for QML-imports starting from directory. --> <Arg Condition="'%(Name)' == 'QtDeployQmlDir'">--qmldir %(Value)</Arg> </Options> <Options> <!-- -qmlimport <directory> Add the given path to the QML module search locations. --> <Arg Condition="'%(Name)' == 'QtDeployQmlImport'">--qmlimport %(Value)</Arg> </Options> <Options> <!-- -no-quick-import Skip deployment of Qt Quick imports. --> <Arg Condition="'%(Name)' == 'QtDeployNoQuickImport' AND '%(Value)' == 'true'" >--no-quick-import</Arg> </Options> <Options> <!-- -no-translations Skip deployment of translations. --> <Arg Condition="'%(Name)' == 'QtDeployNoTranslations' AND '%(Value)' == 'true'" >--no-translations</Arg> </Options> <Options> <!-- -no-system-d3d-compiler Skip deployment of the system D3D compiler. --> <Arg Condition="'%(Name)' == 'QtDeployNoSystemD3dCompiler' AND '%(Value)' == 'true'" >--no-system-d3d-compiler</Arg> </Options> <Options> <!-- -no-virtualkeyboard Disable deployment of the Virtual Keyboard. --> <Arg Condition="'%(Name)' == 'QtDeployNoVirtualKeyboard' AND '%(Value)' == 'true'" >--no-virtualkeyboard</Arg> </Options> <Options> <!-- -compiler-runtime Deploy compiler runtime (Desktop only). -no-compiler-runtime Do not deploy compiler runtime (Desktop only). --> <Arg Condition="'%(Name)' == 'QtDeployCompilerRuntime' AND '%(Value)' == 'deploy'" >--compiler-runtime</Arg> <Arg Condition="'%(Name)' == 'QtDeployCompilerRuntime' AND '%(Value)' == 'skip'" >--no-compiler-runtime</Arg> </Options> <Options> <!-- -webkit2 Deployment of WebKit2 (web process). -no-webkit2 Skip deployment of WebKit2. --> <Arg Condition="'%(Name)' == 'QtDeployWebkit2' AND '%(Value)' == 'deploy'" >--webkit2</Arg> <Arg Condition="'%(Name)' == 'QtDeployWebkit2' AND '%(Value)' == 'skip'" >--no-webkit2</Arg> </Options> <Options> <!-- -angle Force deployment of ANGLE. -no-angle Disable deployment of ANGLE. --> <Arg Condition="'%(Name)' == 'QtDeployAngle' AND '%(Value)' == 'deploy'" >--angle</Arg> <Arg Condition="'%(Name)' == 'QtDeployAngle' AND '%(Value)' == 'skip'" >--no-angle</Arg> </Options> <Options> <!-- -no-opengl-sw Do not deploy the software rasterizer library. --> <Arg Condition="'%(Name)' == 'QtDeployNoOpenglSw' AND '%(Value)' == 'true'" >--no-opengl-sw</Arg> </Options> <Options> <!-- Qt libraries can be added by passing their name (-xml) ... --> <Arg Condition="'%(Name)' == 'QtDeployIncludeModules'">-%(Value)</Arg> </Options> <Options> <!-- ... or removed by passing the name prepended by -no- (-no-xml). --> <Arg Condition="'%(Name)' == 'QtDeployExcludeModules'">--no-%(Value)</Arg> </Options> </ItemGroup> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Run windeployqt // --> <PropertyGroup> <Cmd><![CDATA["$(QtToolsPath)\windeployqt.exe"]]></Cmd> <Cmd>$(Cmd) --list target</Cmd> <Cmd Condition="'%(Options.Arg)' != ''">$(Cmd) %(Options.Arg)</Cmd> <Cmd Condition="'%(Options.PosArg)' != ''">$(Cmd) %(Options.PosArg)</Cmd> </PropertyGroup> <Message Importance="high" Text="windeployqt: $(Cmd)" /> <Exec Command="$(Cmd) > &quot;$(QtDeployLog)&quot;" /> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Read deploy log into QtDeployed list // --> <ReadLinesFromFile File="$(QtDeployLog)"> <Output TaskParameter="Lines" ItemName="QtDeployed" /> </ReadLinesFromFile> <ItemGroup> <QtDeployed Remove="@(QtDeployed)" Condition="!Exists('%(Fullpath)')"/> </ItemGroup> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Mark deployed files as source content for VS deployment project // --> <ItemGroup> <None Include="@(QtDeployed)" Condition="'%(QtDeploy.QtDeployVsContent)' == 'true'"> <DeploymentContent>true</DeploymentContent> <RootFolder>$(ProjectDir)</RootFolder> </None> </ItemGroup> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Log output files; used by VS on clean and up-to-date check // --> <ItemGroup> <QtDeployLog Include="$(QtDeployLog)"/> <QtDeployed Include="$(QtDeployLog)"/> </ItemGroup> <WriteLinesToFile File="$(TLogLocation)windeployqt.read.1u.tlog" Lines="^$(ProjectPath)" Overwrite="true" Encoding="Unicode"/> <WriteLinesToFile File="$(TLogLocation)windeployqt.write.1u.tlog" Lines="^$(ProjectPath);@(QtDeployLog->'%(Fullpath)')" Overwrite="true" Encoding="Unicode"/> <WriteLinesToFile File="$(TLogLocation)$(ProjectName).write.1u.tlog" Lines="^$(ProjectFileName);@(QtDeployed->'%(Fullpath)')" Overwrite="false" Encoding="Unicode"/> <!-- /////////////////////////////////////////////////////////////////////////////////////////////// // Clean-up // --> <PropertyGroup> <Cmd/> </PropertyGroup> <ItemGroup> <Options Remove="@(Options)"/> <QtDeploy Remove="@(QtDeploy)"/> <QtDeployLog Remove="@(QtDeployLog)"/> <QtDeployed Remove="@(QtDeployed)"/> </ItemGroup> </Target> </Project> ```
/content/code_sandbox/GlosSIConfig/QtMsBuild/deploy/qtdeploy.targets
xml
2016-11-18T00:46:26
2024-08-12T19:26:08
GlosSI
Alia5/GlosSI
1,642
3,077
```xml import Message from '../components/Message'; import socket from '../socket'; import { SEAL_TEXT, SEAL_USER_TIMEOUT } from '../../../utils/const'; /** */ let isSeal = false; export default function fetch<T = any>( event: string, data = {}, { toast = true } = {}, ): Promise<[string | null, T | null]> { if (isSeal) { Message.error(SEAL_TEXT); return Promise.resolve([SEAL_TEXT, null]); } return new Promise((resolve) => { socket.emit(event, data, (res: any) => { if (typeof res === 'string') { if (toast) { Message.error(res); } /** * , * , */ if (res === SEAL_TEXT) { isSeal = true; // ip, setTimeout(() => { isSeal = false; }, SEAL_USER_TIMEOUT); } resolve([res, null]); } else { resolve([null, res]); } }); }); } ```
/content/code_sandbox/packages/web/src/utils/fetch.ts
xml
2016-02-15T14:47:58
2024-08-14T13:07:55
fiora
yinxin630/fiora
6,485
229
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{050F6A72-5004-42F6-8E1A-BA825C6C845B}</ProjectGuid> <Keyword>Win32Proj</Keyword> <RootNamespace>My54_KthNodeInBST</RootNamespace> <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <PlatformToolset>v140</PlatformToolset> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <PlatformToolset>v140</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <PlatformToolset>v140</PlatformToolset> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <PlatformToolset>v140</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> <ImportGroup Label="Shared"> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>true</LinkIncremental> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LinkIncremental>true</LinkIncremental> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <LinkIncremental>false</LinkIncremental> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <LinkIncremental>false</LinkIncremental> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <SubSystem>Console</SubSystem> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ClCompile> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <SubSystem>Console</SubSystem> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <PrecompiledHeader> </PrecompiledHeader> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <SubSystem>Console</SubSystem> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <PrecompiledHeader> </PrecompiledHeader> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <SubSystem>Console</SubSystem> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="KthNodeInBST.cpp" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Utilities\Utilities.vcxproj"> <Project>{732da13a-f8bb-4cef-b96d-61de60bdb6a7}</Project> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> </Project> ```
/content/code_sandbox/54_KthNodeInBST/54_KthNodeInBST.vcxproj
xml
2016-11-21T05:04:57
2024-08-14T04:03:23
CodingInterviewChinese2
zhedahht/CodingInterviewChinese2
5,289
1,782
```xml import {getJsonSchema} from "../../utils/getJsonSchema.js"; import {DefaultMsg} from "./defaultMsg.js"; describe("@DefaultMsg", () => { it("should declare default message", () => { // WHEN @DefaultMsg("foo should be a string") class Model { property: number; } // THEN const schema = getJsonSchema(Model, {customKeys: true}); expect(schema).toEqual({ type: "object", errorMessage: { _: "foo should be a string" } }); }); }); ```
/content/code_sandbox/packages/specs/schema/src/decorators/common/defaultMsg.spec.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
122
```xml import * as React from 'react'; import styles from './Vimeo.module.scss'; import { escape } from '@microsoft/sp-lodash-subset'; import VimeoPlayer from './VimeoPlayer'; import VimeoConstants from './VimeoConstants'; import { PrimaryButton } from 'office-ui-fabric-react/lib/components/Button'; export interface IVimeoPlayerPreviewProps { playbackVideo: any; inEditMode?: boolean; onAdd: Function; } export default class VimeoPlayerPreviewEntry extends React.Component<IVimeoPlayerPreviewProps, {}> { private onSaveItem(){ this.props.onAdd(this.props.playbackVideo); } public render(): React.ReactElement<{ IVimeoPlayerPreviewProps }> { if (this.props.playbackVideo !== null) { return ( <div className={styles.videoPreviewPane}> <div className={styles.videoPlayerHeader}>Video Preview</div> <VimeoPlayer playbackVideoUrl={ this.props.playbackVideo.url } />. <div className={styles.videoPlayerToolbar}>&nbsp;</div> <PrimaryButton text="Use this video" className={styles.n8dSavebutton} onClick={this.onSaveItem.bind(this)} /> </div> ); } else { return (<span />); } } } ```
/content/code_sandbox/samples/react-azfunc-vimeo/VimeoWebPart/src/webparts/vimeo/components/VimeoPreviewPlayer.tsx
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
270
```xml /** * @license * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ import {createFixture, html} from '../../../testing/dom'; import {setUpMdcTestEnvironment} from '../../../testing/helpers/setup'; import {numbers, strings} from '../constants'; import * as util from '../util'; const {ARIA_LIVE_DELAY_MS} = numbers; const {DATA_LIVE_LABEL_TEXT} = strings; describe('MDCSnackbar - util', () => { setUpMdcTestEnvironment(); it('#announce temporarily disables ARIA attributes and then restores them', () => { const fixture = createFixture(html` <div> <div class="aria" role="status" aria-live="polite"> <div class="label"></div> </div> </div>`); const ariaEl = fixture.querySelector<HTMLElement>('.aria')!; const labelEl = fixture.querySelector<HTMLElement>('.label')!; const labelText = 'Foo'; labelEl.textContent = labelText; util.announce(ariaEl, labelEl); // Trim to remove `&nbsp;` (see comment in util.ts) expect(labelEl.textContent.trim()).toEqual(''); expect(ariaEl.getAttribute('aria-live')).toEqual('off'); jasmine.clock().tick(ARIA_LIVE_DELAY_MS); expect(labelEl.textContent).toEqual(labelText); expect(ariaEl.getAttribute('aria-live')).toEqual('polite'); }); it('#announce prevents flicker by displaying label text on ::before pseudo-element and then removing it', () => { const fixture = createFixture(` <div> <div class="aria" role="status" aria-live="polite"> <div class="label"></div> </div> </div>`); const ariaEl = fixture.querySelector<HTMLElement>('.aria')!; const labelEl = fixture.querySelector<HTMLElement>('.label')!; const labelText = 'Foo'; labelEl.textContent = labelText; util.announce(ariaEl, labelEl); expect(labelEl.dataset[DATA_LIVE_LABEL_TEXT]) .toEqual(labelText); jasmine.clock().tick(ARIA_LIVE_DELAY_MS); expect(labelEl.dataset[DATA_LIVE_LABEL_TEXT]).toBeUndefined(); }); it('#announce second argument is optional', () => { const fixture = createFixture(html` <div> <div class="aria label" role="status" aria-live="polite"></div> </div>`); const ariaEl = fixture.querySelector<HTMLElement>('.aria')!; const labelText = 'Foo'; ariaEl.textContent = labelText; util.announce(ariaEl); // Trim to remove `&nbsp;` (see comment in util.ts) expect(ariaEl.textContent.trim()).toEqual(''); expect(ariaEl.dataset[DATA_LIVE_LABEL_TEXT]).toEqual(labelText); expect(ariaEl.getAttribute('aria-live')).toEqual('off'); jasmine.clock().tick(ARIA_LIVE_DELAY_MS); expect(ariaEl.textContent).toEqual(labelText); expect(ariaEl.dataset[DATA_LIVE_LABEL_TEXT]).toBeUndefined(); expect(ariaEl.getAttribute('aria-live')).toEqual('polite'); }); it('#announce does nothing if textContent is empty', () => { const fixture = createFixture(html` <div> <div class="aria" role="status" aria-live="polite"> <div class="label"></div> </div> </div>`); const ariaEl = fixture.querySelector<HTMLElement>('.aria')!; const labelEl = fixture.querySelector<HTMLElement>('.label')!; util.announce(ariaEl, labelEl); expect(labelEl.textContent!.trim()).toEqual(''); expect(labelEl.dataset[DATA_LIVE_LABEL_TEXT]).toBeUndefined(); expect(ariaEl.getAttribute('aria-live')).toEqual('polite'); }); it('#announce does nothing if aria-live was not present', () => { const fixture = createFixture(html` <div> <div class="aria label" role="status">Foo</div> </div>`); const ariaEl = fixture.querySelector<HTMLElement>('.aria')!; util.announce(ariaEl); expect(ariaEl.getAttribute('aria-live')).toBeNull(); expect(ariaEl.dataset[DATA_LIVE_LABEL_TEXT]).toBeUndefined(); jasmine.clock().tick(ARIA_LIVE_DELAY_MS); expect(ariaEl.getAttribute('aria-live')).toBeNull(); expect(ariaEl.dataset[DATA_LIVE_LABEL_TEXT]).toBeUndefined(); }); }); ```
/content/code_sandbox/packages/mdc-snackbar/test/util.test.ts
xml
2016-12-05T16:04:09
2024-08-16T15:42:22
material-components-web
material-components/material-components-web
17,119
1,175
```xml <vector xmlns:android="path_to_url" xmlns:aapt="path_to_url" android:width="48dp" android:height="48dp" android:viewportWidth="48" android:viewportHeight="48"> <path android:pathData="M37,6H11C9.343,6 8,7.343 8,9V39C8,40.657 9.343,42 11,42H37C38.657,42 40,40.657 40,39V9C40,7.343 38.657,6 37,6ZM19.707,19.293C20.097,19.683 20.097,20.317 19.707,20.707L16.414,24L19.707,27.293C20.097,27.683 20.097,28.317 19.707,28.707C19.316,29.098 18.683,29.098 18.293,28.707L13.586,24L18.293,19.293C18.683,18.902 19.316,18.902 19.707,19.293ZM28.293,20.707C27.903,20.317 27.903,19.683 28.293,19.293C28.684,18.902 29.317,18.902 29.707,19.293L34.414,24L29.707,28.707C29.317,29.098 28.684,29.098 28.293,28.707C27.903,28.317 27.903,27.683 28.293,27.293L31.586,24L28.293,20.707Z" android:fillType="evenOdd"> <aapt:attr name="android:fillColor"> <gradient android:startX="24" android:startY="6" android:endX="24" android:endY="42" android:type="linear"> <item android:offset="0" android:color="#FFFD853A"/> <item android:offset="1" android:color="#FFFB6514"/> </gradient> </aapt:attr> </path> </vector> ```
/content/code_sandbox/icon-pack/src/main/res/drawable/ic_web_lang_medium_solid.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
517
```xml <epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> <response> <result code="1000"> <msg>Command completed successfully</msg> </result> <resData> <host:infData xmlns:host="urn:ietf:params:xml:ns:host-1.0"> <host:name>%HOSTNAME%</host:name> <host:roid>NS1_EXAMPLE1-REP</host:roid> <host:status s="ok"/> <host:status s="linked"/> <host:clID>TheRegistrar</host:clID> <host:crID>NewRegistrar</host:crID> <host:crDate>2000-06-06T00:01:00Z</host:crDate> <host:upID>TheRegistrar</host:upID> <host:upDate>2002-05-30T01:01:00Z</host:upDate> <host:trDate>%TRDATE%</host:trDate> </host:infData> </resData> <trID> <clTRID>ABC-12345</clTRID> <svTRID>server-trid</svTRID> </trID> </response> </epp> ```
/content/code_sandbox/core/src/test/resources/google/registry/flows/host_info_response_fakesite_post_transfer_and_update_no_addresses.xml
xml
2016-02-29T20:16:48
2024-08-15T19:49:29
nomulus
google/nomulus
1,685
292
```xml import { DecryptedItemInterface, EmojiString, IconType, KeySystemIdentifier, KeySystemRootKeyStorageMode, SharedVaultListingInterface, VaultListingInterface, } from '@standardnotes/models' import { AbstractService } from '../Service/AbstractService' import { VaultServiceEvent, VaultServiceEventPayload } from './VaultServiceEvent' import { ChangeVaultKeyOptionsDTO } from './UseCase/ChangeVaultKeyOptionsDTO' import { Result } from '@standardnotes/domain-core' export interface VaultServiceInterface extends AbstractService<VaultServiceEvent, VaultServiceEventPayload[VaultServiceEvent]> { createRandomizedVault(dto: { name: string description?: string iconString: IconType | EmojiString }): Promise<VaultListingInterface> createUserInputtedPasswordVault(dto: { name: string description?: string iconString: IconType | EmojiString userInputtedPassword: string storagePreference: KeySystemRootKeyStorageMode }): Promise<VaultListingInterface> getVaults(): VaultListingInterface[] getVault(dto: { keySystemIdentifier: KeySystemIdentifier }): Result<VaultListingInterface> authorizeVaultDeletion(vault: VaultListingInterface): Promise<Result<boolean>> deleteVault(vault: VaultListingInterface): Promise<boolean> moveItemToVault(vault: VaultListingInterface, item: DecryptedItemInterface): Promise<Result<DecryptedItemInterface>> removeItemFromVault(item: DecryptedItemInterface): Promise<DecryptedItemInterface> isItemInVault(item: DecryptedItemInterface): boolean getItemVault(item: DecryptedItemInterface): VaultListingInterface | undefined changeVaultMetadata( vault: VaultListingInterface, params: { name: string; description: string; iconString: IconType | EmojiString }, ): Promise<VaultListingInterface> rotateVaultRootKey(vault: VaultListingInterface, vaultPassword?: string): Promise<void> changeVaultKeyOptions(dto: ChangeVaultKeyOptionsDTO): Promise<Result<void>> changeThirdPartyVaultStorageOptions(dto: { vault: SharedVaultListingInterface newStorageMode: KeySystemRootKeyStorageMode | undefined vaultPassword: string }): Promise<Result<void>> } ```
/content/code_sandbox/packages/services/src/Domain/Vault/VaultServiceInterface.ts
xml
2016-12-05T23:31:33
2024-08-16T06:51:19
app
standardnotes/app
5,180
480
```xml import { Redis } from "ioredis"; import Joi from "joi"; import { isNull } from "lodash"; import { DateTime } from "luxon"; import { v4 as uuid } from "uuid"; import { constructDownloadLinkURL, constructTenantURL, } from "coral-server/app/url"; import { Config } from "coral-server/config"; import { MongoContext } from "coral-server/data/context"; import { TokenInvalidError, UserNotFoundError } from "coral-server/errors"; import { Tenant } from "coral-server/models/tenant"; import { retrieveUser } from "coral-server/models/user"; import { isJWTRevoked, JWTSigningConfig, revokeJWT, signString, StandardClaims, StandardClaimsSchema, verifyJWT, } from "coral-server/services/jwt"; interface DownloadToken extends Required<StandardClaims> { aud: "download"; } const DownloadTokenSchema = StandardClaimsSchema.keys({ aud: Joi.string().valid("download"), }); export async function generateDownloadToken( userID: string, tenant: Tenant, config: Config, signingConfig: JWTSigningConfig, now: Date ) { const nowDate = DateTime.fromJSDate(now); const nowSeconds = Math.round(nowDate.toSeconds()); const expiresAt = Math.round(nowDate.plus({ weeks: 2 }).toSeconds()); const downloadToken: DownloadToken = { jti: uuid(), iss: tenant.id, sub: userID, exp: expiresAt, iat: nowSeconds, nbf: nowSeconds, aud: "download", }; return await signString(signingConfig, downloadToken); } export async function generateDownloadLink( userID: string, tenant: Tenant, config: Config, signingConfig: JWTSigningConfig, now: Date ) { const token = await generateDownloadToken( userID, tenant, config, signingConfig, now ); const downloadLinkDomainOverride = config.get( "download_gdpr_comments_link_domain" ); return constructDownloadLinkURL( config, tenant, `/account/download#downloadToken=${token}`, downloadLinkDomainOverride ); } export async function generateAdminDownloadLink( userID: string, tenant: Tenant, config: Config, signingConfig: JWTSigningConfig, now: Date ) { const token = await generateDownloadToken( userID, tenant, config, signingConfig, now ); return constructTenantURL( config, tenant, `/api/user/download?token=${token}` ); } export function validateDownloadToken( token: DownloadToken | object ): Error | null { const { error } = DownloadTokenSchema.validate(token, { presence: "required", }); return error || null; } export function isDownloadToken( token: DownloadToken | object ): token is DownloadToken { return isNull(validateDownloadToken(token)); } export async function verifyDownloadTokenString( mongo: MongoContext, redis: Redis, tenant: Tenant, signingConfig: JWTSigningConfig, tokenString: string, now: Date ) { const token = verifyJWT(tokenString, signingConfig, now, { issuer: tenant.id, audience: "download", }); if (!isDownloadToken(token)) { throw new TokenInvalidError( tokenString, "does not conform to the download token schema" ); } const { sub: userID, iss } = token; const user = await retrieveUser(mongo, tenant.id, userID); if (!user) { throw new UserNotFoundError(userID); } if (iss !== tenant.id) { throw new TokenInvalidError(tokenString, "invalid tenant"); } // Check to see if the token was revoked. if (await isJWTRevoked(redis, token.jti)) { throw new TokenInvalidError(tokenString, "token was revoked"); } return { token, user }; } export async function redeemDownloadToken( mongo: MongoContext, redis: Redis, tenant: Tenant, signingConfig: JWTSigningConfig, tokenString: string, now: Date ) { // Verify the download token. const { token, user } = await verifyDownloadTokenString( mongo, redis, tenant, signingConfig, tokenString, now ); // Revoke the download token. await revokeJWT(redis, token.jti, token.exp, now); return { token, user }; } ```
/content/code_sandbox/server/src/core/server/services/users/download/token.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
991
```xml import { MigrationInterface, QueryRunner } from "../../../../src" export class WithoutView1623518107000 implements MigrationInterface { name = "WithoutView1623518107000" public async up(queryRunner: QueryRunner): Promise<void> { await queryRunner.query( "CREATE TABLE `foo` (`id` int NOT NULL AUTO_INCREMENT, `updated_at` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), PRIMARY KEY (`id`)) ENGINE=InnoDB", ) } public async down(queryRunner: QueryRunner): Promise<void> { await queryRunner.query("DROP Table `foo`") } } ```
/content/code_sandbox/test/github-issues/4956/migrations/WithoutView.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
141
```xml import { useCallback, useRef } from 'react'; import { FILE_CHUNK_SIZE } from '@proton/shared/lib/drive/constants'; import type { TransferProgresses } from '../../../components/TransferManager/transfer'; import { TransferState } from '../../../components/TransferManager/transfer'; import { isTransferActive, isTransferFinalizing, isTransferPending, isTransferProgress } from '../../../utils/transfer'; import { MAX_BLOCKS_PER_UPLOAD } from '../constants'; import type { UploadFileControls, UploadFolderControls } from '../interface'; import type { FileUpload, UpdateCallback, UpdateFilter, UpdateState } from './interface'; export default function useUploadControl( fileUploads: FileUpload[], updateWithCallback: (idOrFilter: UpdateFilter, newState: UpdateState, callback: UpdateCallback) => void, removeFromQueue: (idOrFilter: UpdateFilter, callback: UpdateCallback) => void, clearQueue: () => void ) { // Controls keep references to ongoing uploads to have ability // to pause or cancel them. const controls = useRef<{ [id: string]: UploadFileControls | UploadFolderControls }>({}); const progresses = useRef<TransferProgresses>({}); const add = (id: string, uploadControls: UploadFileControls | UploadFolderControls) => { controls.current[id] = uploadControls; progresses.current[id] = 0; }; const remove = (id: string) => { delete controls.current[id]; delete progresses.current[id]; }; const updateProgress = (id: string, increment: number) => { // Progress might be updated even when transfer is already finished and // thus progress is not here anymore. In such case it is OK to simply // ignore the call to not crash. if (progresses.current[id] === undefined) { return; } progresses.current[id] += increment; // Because increment can be float, some aritmetic operation can result // in -0.0000000001 which would be then displayed as -0 after rounding. if (progresses.current[id] < 0) { progresses.current[id] = 0; } }; const getProgresses = () => ({ ...progresses.current }); /** * calculateRemainingUploadBytes returns based on progresses of ongoing * uploads how many data is planned to be uploaded to properly count the * available space for next batch of files to be uploaded. */ const calculateRemainingUploadBytes = (): number => { return fileUploads.reduce((sum, upload) => { if (!isTransferActive(upload) || !upload.file.size) { return sum; } // uploadedChunksSize counts only fully uploaded blocks. Fully // uploaded blocks are counted into used space returned by API. // The algorithm is not precise as file is uploaded in parallel, // but this is what we can do without introducing complex // computation. If better precision is needed, we need to keep // track of each block, not the whole file. const uploadedChunksSize = progresses.current[upload.id] - (progresses.current[upload.id] % FILE_CHUNK_SIZE) || 0; return sum + upload.file.size - uploadedChunksSize; }, 0); }; /** * calculateFileUploadLoad returns how many blocks are being currently * uploaded by all ongoing uploads, considering into account the real * state using the progresses. */ const calculateFileUploadLoad = (): number => { // Count both in-progress and finalizing transfers as the ones still // running the worker and taking up some load. Without counting finalizing // state and with the API being slow, we can keep around too many workers. return fileUploads .filter((transfer) => isTransferProgress(transfer) || isTransferFinalizing(transfer)) .reduce((load, upload) => { const remainingSize = (upload.file.size || 0) - (progresses.current[upload.id] || 0); // Even if the file is empty, keep the minimum of blocks to 1, // otherwise it would start too many threads. const chunks = Math.max(Math.ceil(remainingSize / FILE_CHUNK_SIZE), 1); const loadIncrease = Math.min(MAX_BLOCKS_PER_UPLOAD, chunks); return load + loadIncrease; }, 0); }; const pauseUploads = useCallback( (idOrFilter: UpdateFilter) => { updateWithCallback(idOrFilter, TransferState.Paused, ({ id, state }) => { if (isTransferProgress({ state }) || isTransferPending({ state })) { (controls.current[id] as UploadFileControls)?.pause?.(); } }); }, [updateWithCallback] ); const resumeUploads = useCallback( (idOrFilter: UpdateFilter) => { updateWithCallback( idOrFilter, ({ resumeState, parentId }) => { // If the parent folder was created during the pause, // go back to pending, not initializing state. if (parentId && resumeState === TransferState.Initializing) { return TransferState.Pending; } return resumeState || TransferState.Progress; }, ({ id }) => { (controls.current[id] as UploadFileControls)?.resume?.(); } ); }, [updateWithCallback] ); const cancelUploads = useCallback( (idOrFilter: UpdateFilter) => { updateWithCallback(idOrFilter, TransferState.Canceled, ({ id }) => { controls.current[id]?.cancel(); }); }, [updateWithCallback] ); const removeUploads = useCallback( (idOrFilter: UpdateFilter) => { // We should never simply remove uploads, but cancel it first, so // it does not continue on background without our knowledge. cancelUploads(idOrFilter); removeFromQueue(idOrFilter, ({ id }) => remove(id)); }, [removeFromQueue] ); const clearUploads = useCallback(() => { Object.entries(controls.current).map(([, uploadControls]) => uploadControls.cancel()); controls.current = {}; progresses.current = {}; clearQueue(); }, [clearQueue]); return { add, remove, updateProgress, getProgresses, calculateRemainingUploadBytes, calculateFileUploadLoad, pauseUploads, resumeUploads, cancelUploads, removeUploads, clearUploads, }; } ```
/content/code_sandbox/packages/drive-store/store/_uploads/UploadProvider/useUploadControl.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
1,388
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // TypeScript Version: 4.1 /** * Tests if a value is an array containing a circular reference. * * @param value - value to test * @returns boolean indicating whether value is an array containing a circular reference * * @example * var arr = [ 1, 2, 3 ]; * arr.push( arr ); * var bool = isCircularArray( arr ); * // returns true * * @example * var obj = { * 'a': 'beep', * 'b': { * 'c': 'boop' * } * }; * obj.b.self = obj; * var bool = isCircularArray( obj ); * // returns false * * @example * var bool = isCircularArray( [] ); * // returns false * * @example * var bool = isCircularArray( null ); * // returns false */ declare function isCircularArray( value: any ): boolean; // EXPORTS // export = isCircularArray; ```
/content/code_sandbox/lib/node_modules/@stdlib/assert/is-circular-array/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
262
```xml /** * @license * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ import {MDCComponent} from '@material/base/component'; import {MDCTextFieldIconAdapter} from './adapter'; import {MDCTextFieldIconFoundation} from './foundation'; /** MDC Text Field Icon Factory */ export type MDCTextFieldIconFactory = (el: HTMLElement, foundation?: MDCTextFieldIconFoundation) => MDCTextFieldIcon; /** MDC Text Field Icon */ export class MDCTextFieldIcon extends MDCComponent<MDCTextFieldIconFoundation> { static override attachTo(root: HTMLElement): MDCTextFieldIcon { return new MDCTextFieldIcon(root); } // Provided for access by MDCTextField component get foundationForTextField(): MDCTextFieldIconFoundation { return this.foundation; } override getDefaultFoundation() { // DO NOT INLINE this variable. For backward compatibility, foundations take // a Partial<MDCFooAdapter>. To ensure we don't accidentally omit any // methods, we need a separate, strongly typed adapter variable. // tslint:disable:object-literal-sort-keys Methods should be in the same order as the adapter interface. const adapter: MDCTextFieldIconAdapter = { getAttr: (attr) => this.root.getAttribute(attr), setAttr: (attr, value) => { this.safeSetAttribute(this.root, attr, value); }, removeAttr: (attr) => { this.root.removeAttribute(attr); }, setContent: (content) => { this.root.textContent = content; }, registerInteractionHandler: (eventType, handler) => { this.listen(eventType, handler); }, deregisterInteractionHandler: (eventType, handler) => { this.unlisten(eventType, handler); }, notifyIconAction: () => { this.emit( MDCTextFieldIconFoundation.strings.ICON_EVENT, {} /* eventData */, true /* shouldBubble */); }, }; // tslint:enable:object-literal-sort-keys return new MDCTextFieldIconFoundation(adapter); } } ```
/content/code_sandbox/packages/mdc-textfield/icon/component.ts
xml
2016-12-05T16:04:09
2024-08-16T15:42:22
material-components-web
material-components/material-components-web
17,119
647
```xml /* * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ import seq2slice = require( './index' ); // TESTS // // The function returns a Slice object or an error object... { seq2slice( '0:1', 10, false ); // $ExpectType SliceResult seq2slice( '0:1:1', 10, false ); // $ExpectType SliceResult seq2slice( '0:1', 10, true ); // $ExpectType SliceResult seq2slice( '0:1:1', 10, true ); // $ExpectType SliceResult } // The compiler throws an error if the function is provided a first argument which is not a string... { seq2slice( 1, 10, false ); // $ExpectError seq2slice( true, 10, false ); // $ExpectError seq2slice( false, 10, false ); // $ExpectError seq2slice( null, 10, false ); // $ExpectError seq2slice( undefined, 10, false ); // $ExpectError seq2slice( [], 10, false ); // $ExpectError seq2slice( {}, 10, false ); // $ExpectError seq2slice( ( x: number ): number => x, 10, false ); // $ExpectError } // The compiler throws an error if the function is provided a second argument which is not a number... { seq2slice( '0:10', '1', false ); // $ExpectError seq2slice( '0:10', true, false ); // $ExpectError seq2slice( '0:10', false, false ); // $ExpectError seq2slice( '0:10', null, false ); // $ExpectError seq2slice( '0:10', undefined, false ); // $ExpectError seq2slice( '0:10', [], false ); // $ExpectError seq2slice( '0:10', {}, false ); // $ExpectError seq2slice( '0:10', ( x: number ): number => x, false ); // $ExpectError } // The compiler throws an error if the function is provided a third argument which is not a boolean... { seq2slice( '0:10', 10, '1' ); // $ExpectError seq2slice( '0:10', 10, 1 ); // $ExpectError seq2slice( '0:10', 10, null ); // $ExpectError seq2slice( '0:10', 10, undefined ); // $ExpectError seq2slice( '0:10', 10, [] ); // $ExpectError seq2slice( '0:10', 10, {} ); // $ExpectError seq2slice( '0:10', 10, ( x: number ): number => x ); // $ExpectError } // The compiler throws an error if the function is provided an unsupported number of arguments... { seq2slice(); // $ExpectError seq2slice( '0:10' ); // $ExpectError seq2slice( '0:10', 10 ); // $ExpectError seq2slice( '0:10', 10, false, {} ); // $ExpectError } ```
/content/code_sandbox/lib/node_modules/@stdlib/slice/base/seq2slice/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
741
```xml import { BSON, BSONRegExp, BSONSymbol, BSONType, Binary, Code, DBRef, Decimal128, DeserializeOptions, Document, Double, Int32, Long, MaxKey, MinKey, ObjectId, ObjectIdLike, SerializeOptions, Timestamp, deserialize, serialize, } from "./bson.typings" import type { ConnectionOptions as ConnectionOptions_2 } from "tls" import type { Socket } from "net" import type { SrvRecord } from "dns" import type { TcpNetConnectOpts } from "net" import type { TLSSocket } from "tls" import type { TLSSocketOptions } from "tls" import { Readable, EventEmitter } from "../../platform/PlatformTools" /** @public */ export declare abstract class AbstractCursor< TSchema = any, CursorEvents extends AbstractCursorEvents = AbstractCursorEvents, > extends TypedEventEmitter<CursorEvents> { /* Excluded from this release type: [kId] */ /* Excluded from this release type: [kSession] */ /* Excluded from this release type: [kServer] */ /* Excluded from this release type: [kNamespace] */ /* Excluded from this release type: [kDocuments] */ /* Excluded from this release type: [kClient] */ /* Excluded from this release type: [kTransform] */ /* Excluded from this release type: [kInitialized] */ /* Excluded from this release type: [kClosed] */ /* Excluded from this release type: [kKilled] */ /* Excluded from this release type: [kOptions] */ /** @event */ static readonly CLOSE: "close" /* Excluded from this release type: __constructor */ get id(): Long | undefined /* Excluded from this release type: client */ /* Excluded from this release type: server */ get namespace(): MongoDBNamespace get readPreference(): ReadPreference get readConcern(): ReadConcern | undefined /* Excluded from this release type: session */ /* Excluded from this release type: session */ /* Excluded from this release type: cursorOptions */ get closed(): boolean get killed(): boolean get loadBalanced(): boolean /** Returns current buffered documents length */ bufferedCount(): number /** Returns current buffered documents */ readBufferedDocuments(number?: number): TSchema[] [Symbol.asyncIterator](): AsyncGenerator<TSchema, void, void> stream(options?: CursorStreamOptions): Readable & AsyncIterable<TSchema> hasNext(): Promise<boolean> /** Get the next available document from the cursor, returns null if no more documents are available. */ next(): Promise<TSchema | null> /** * Try to get the next available document from the cursor or `null` if an empty batch is returned */ tryNext(): Promise<TSchema | null> /** * Iterates over all the documents for this cursor using the iterator, callback pattern. * * If the iterator returns `false`, iteration will stop. * * @param iterator - The iteration callback. */ forEach(iterator: (doc: TSchema) => boolean | void): Promise<void> close(): Promise<void> /** * Returns an array of documents. The caller is responsible for making sure that there * is enough memory to store the results. Note that the array only contains partial * results when this cursor had been previously accessed. In that case, * cursor.rewind() can be used to reset the cursor. */ toArray(): Promise<TSchema[]> /** * Add a cursor flag to the cursor * * @param flag - The flag to set, must be one of following ['tailable', 'oplogReplay', 'noCursorTimeout', 'awaitData', 'partial' -. * @param value - The flag boolean value. */ addCursorFlag(flag: CursorFlag, value: boolean): this /** * Map all documents using the provided function * If there is a transform set on the cursor, that will be called first and the result passed to * this function's transform. * * @remarks * * **Note** Cursors use `null` internally to indicate that there are no more documents in the cursor. Providing a mapping * function that maps values to `null` will result in the cursor closing itself before it has finished iterating * all documents. This will **not** result in a memory leak, just surprising behavior. For example: * * ```typescript * const cursor = collection.find({}); * cursor.map(() => null); * * const documents = await cursor.toArray(); * // documents is always [], regardless of how many documents are in the collection. * ``` * * Other falsey values are allowed: * * ```typescript * const cursor = collection.find({}); * cursor.map(() => ''); * * const documents = await cursor.toArray(); * // documents is now an array of empty strings * ``` * * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, * it **does not** return a new instance of a cursor. This means when calling map, * you should always assign the result to a new variable in order to get a correctly typed cursor variable. * Take note of the following example: * * @example * ```typescript * const cursor: FindCursor<Document> = coll.find(); * const mappedCursor: FindCursor<number> = cursor.map(doc => Object.keys(doc).length); * const keyCounts: number[] = await mappedCursor.toArray(); // cursor.toArray() still returns Document[] * ``` * @param transform - The mapping transformation method. */ map<T = any>(transform: (doc: TSchema) => T): AbstractCursor<T> /** * Set the ReadPreference for the cursor. * * @param readPreference - The new read preference for the cursor. */ withReadPreference(readPreference: ReadPreferenceLike): this /** * Set the ReadPreference for the cursor. * * @param readPreference - The new read preference for the cursor. */ withReadConcern(readConcern: ReadConcernLike): this /** * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) * * @param value - Number of milliseconds to wait before aborting the query. */ maxTimeMS(value: number): this /** * Set the batch size for the cursor. * * @param value - The number of documents to return per batch. See {@link path_to_url|find command documentation}. */ batchSize(value: number): this /** * Rewind this cursor to its uninitialized state. Any options that are present on the cursor will * remain in effect. Iterating this cursor will cause new queries to be sent to the server, even * if the resultant data has already been retrieved by this cursor. */ rewind(): void /** * Returns a new uninitialized copy of this cursor, with options matching those that have been set on the current instance */ abstract clone(): AbstractCursor<TSchema> /* Excluded from this release type: _initialize */ /* Excluded from this release type: _getMore */ /* Excluded from this release type: [kInit] */ } /** @public */ export declare type AbstractCursorEvents = { [AbstractCursor.CLOSE](): void } /** @public */ export declare interface AbstractCursorOptions extends BSONSerializeOptions { session?: ClientSession readPreference?: ReadPreferenceLike readConcern?: ReadConcernLike /** * Specifies the number of documents to return in each response from MongoDB */ batchSize?: number /** * When applicable `maxTimeMS` controls the amount of time the initial command * that constructs a cursor should take. (ex. find, aggregate, listCollections) */ maxTimeMS?: number /** * When applicable `maxAwaitTimeMS` controls the amount of time subsequent getMores * that a cursor uses to fetch more data should take. (ex. cursor.next()) */ maxAwaitTimeMS?: number /** * Comment to apply to the operation. * * In server versions pre-4.4, 'comment' must be string. A server * error will be thrown if any other type is provided. * * In server versions 4.4 and above, 'comment' can be any valid BSON type. */ comment?: unknown /** * By default, MongoDB will automatically close a cursor when the * client has exhausted all results in the cursor. However, for [capped collections](path_to_url * you may use a Tailable Cursor that remains open after the client exhausts * the results in the initial cursor. */ tailable?: boolean /** * If awaitData is set to true, when the cursor reaches the end of the capped collection, * MongoDB blocks the query thread for a period of time waiting for new data to arrive. * When new data is inserted into the capped collection, the blocked thread is signaled * to wake up and return the next batch to the client. */ awaitData?: boolean noCursorTimeout?: boolean } /* Excluded from this release type: AbstractOperation */ /** @public */ export declare type AcceptedFields<TSchema, FieldType, AssignableType> = { readonly [key in KeysOfAType<TSchema, FieldType>]?: AssignableType } /** @public */ export declare type AddToSetOperators<Type> = { $each?: Array<Flatten<Type>> } /** @public */ export declare interface AddUserOptions extends CommandOperationOptions { /** Roles associated with the created user */ roles?: string | string[] | RoleSpecification | RoleSpecification[] /** Custom data associated with the user (only Mongodb 2.6 or higher) */ customData?: Document } /** * The **Admin** class is an internal class that allows convenient access to * the admin functionality and commands for MongoDB. * * **ADMIN Cannot directly be instantiated** * @public * * @example * ```ts * import { MongoClient } from 'mongodb'; * * const client = new MongoClient('mongodb://localhost:27017'); * const admin = client.db().admin(); * const dbInfo = await admin.listDatabases(); * for (const db of dbInfo.databases) { * console.log(db.name); * } * ``` */ export declare class Admin { /* Excluded from this release type: s */ /* Excluded from this release type: __constructor */ /** * Execute a command * * @param command - The command to execute * @param options - Optional settings for the command */ command(command: Document, options?: RunCommandOptions): Promise<Document> /** * Retrieve the server build information * * @param options - Optional settings for the command */ buildInfo(options?: CommandOperationOptions): Promise<Document> /** * Retrieve the server build information * * @param options - Optional settings for the command */ serverInfo(options?: CommandOperationOptions): Promise<Document> /** * Retrieve this db's server status. * * @param options - Optional settings for the command */ serverStatus(options?: CommandOperationOptions): Promise<Document> /** * Ping the MongoDB server and retrieve results * * @param options - Optional settings for the command */ ping(options?: CommandOperationOptions): Promise<Document> /** * Add a user to the database * * @param username - The username for the new user * @param passwordOrOptions - An optional password for the new user, or the options for the command * @param options - Optional settings for the command */ addUser( username: string, passwordOrOptions?: string | AddUserOptions, options?: AddUserOptions, ): Promise<Document> /** * Remove a user from a database * * @param username - The username to remove * @param options - Optional settings for the command */ removeUser(username: string, options?: RemoveUserOptions): Promise<boolean> /** * Validate an existing collection * * @param collectionName - The name of the collection to validate. * @param options - Optional settings for the command */ validateCollection( collectionName: string, options?: ValidateCollectionOptions, ): Promise<Document> /** * List the available databases * * @param options - Optional settings for the command */ listDatabases(options?: ListDatabasesOptions): Promise<ListDatabasesResult> /** * Get ReplicaSet status * * @param options - Optional settings for the command */ replSetGetStatus(options?: CommandOperationOptions): Promise<Document> } /* Excluded from this release type: AdminPrivate */ /* Excluded from this release type: AggregateOperation */ /** @public */ export declare interface AggregateOptions extends CommandOperationOptions { /** allowDiskUse lets the server know if it can use disk to store temporary results for the aggregation (requires mongodb 2.6 \>). */ allowDiskUse?: boolean /** The number of documents to return per batch. See [aggregation documentation](path_to_url */ batchSize?: number /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ bypassDocumentValidation?: boolean /** Return the query as cursor, on 2.6 \> it returns as a real cursor on pre 2.6 it returns as an emulated cursor. */ cursor?: Document /** specifies a cumulative time limit in milliseconds for processing operations on the cursor. MongoDB interrupts the operation at the earliest following interrupt point. */ maxTimeMS?: number /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. */ maxAwaitTimeMS?: number /** Specify collation. */ collation?: CollationOptions /** Add an index selection hint to an aggregation command */ hint?: Hint /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document out?: string } /** * The **AggregationCursor** class is an internal class that embodies an aggregation cursor on MongoDB * allowing for iteration over the results returned from the underlying query. It supports * one by one document iteration, conversion to an array or can be iterated as a Node 4.X * or higher stream * @public */ export declare class AggregationCursor< TSchema = any, > extends AbstractCursor<TSchema> { /* Excluded from this release type: [kPipeline] */ /* Excluded from this release type: [kOptions] */ /* Excluded from this release type: __constructor */ get pipeline(): Document[] clone(): AggregationCursor<TSchema> map<T>(transform: (doc: TSchema) => T): AggregationCursor<T> /* Excluded from this release type: _initialize */ /** Execute the explain for the cursor */ explain(verbosity?: ExplainVerbosityLike): Promise<Document> /** Add a group stage to the aggregation pipeline */ group<T = TSchema>($group: Document): AggregationCursor<T> /** Add a limit stage to the aggregation pipeline */ limit($limit: number): this /** Add a match stage to the aggregation pipeline */ match($match: Document): this /** Add an out stage to the aggregation pipeline */ out( $out: | { db: string coll: string } | string, ): this /** * Add a project stage to the aggregation pipeline * * @remarks * In order to strictly type this function you must provide an interface * that represents the effect of your projection on the result documents. * * By default chaining a projection to your cursor changes the returned type to the generic {@link Document} type. * You should specify a parameterized type to have assertions on your final results. * * @example * ```typescript * // Best way * const docs: AggregationCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); * // Flexible way * const docs: AggregationCursor<Document> = cursor.project({ _id: 0, a: true }); * ``` * * @remarks * In order to strictly type this function you must provide an interface * that represents the effect of your projection on the result documents. * * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, * it **does not** return a new instance of a cursor. This means when calling project, * you should always assign the result to a new variable in order to get a correctly typed cursor variable. * Take note of the following example: * * @example * ```typescript * const cursor: AggregationCursor<{ a: number; b: string }> = coll.aggregate([]); * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); * * // or always use chaining and save the final cursor * * const cursor = coll.aggregate().project<{ a: string }>({ * _id: 0, * a: { $convert: { input: '$a', to: 'string' } * }}); * ``` */ project<T extends Document = Document>( $project: Document, ): AggregationCursor<T> /** Add a lookup stage to the aggregation pipeline */ lookup($lookup: Document): this /** Add a redact stage to the aggregation pipeline */ redact($redact: Document): this /** Add a skip stage to the aggregation pipeline */ skip($skip: number): this /** Add a sort stage to the aggregation pipeline */ sort($sort: Sort): this /** Add a unwind stage to the aggregation pipeline */ unwind($unwind: Document | string): this /** Add a geoNear stage to the aggregation pipeline */ geoNear($geoNear: Document): this } /** @public */ export declare interface AggregationCursorOptions extends AbstractCursorOptions, AggregateOptions {} /** * It is possible to search using alternative types in mongodb e.g. * string types can be searched using a regex in mongo * array types can be searched using their element type * @public */ export declare type AlternativeType<T> = T extends ReadonlyArray<infer U> ? T | RegExpOrString<U> : RegExpOrString<T> /** @public */ export declare type AnyBulkWriteOperation<TSchema extends Document = Document> = | { insertOne: InsertOneModel<TSchema> } | { replaceOne: ReplaceOneModel<TSchema> } | { updateOne: UpdateOneModel<TSchema> } | { updateMany: UpdateManyModel<TSchema> } | { deleteOne: DeleteOneModel<TSchema> } | { deleteMany: DeleteManyModel<TSchema> } /** @public */ export declare type AnyError = MongoError | Error /** @public */ export declare type ArrayElement<Type> = Type extends ReadonlyArray<infer Item> ? Item : never /** @public */ export declare type ArrayOperator<Type> = { $each?: Array<Flatten<Type>> $slice?: number $position?: number $sort?: Sort } /** @public */ export declare interface Auth { /** The username for auth */ username?: string /** The password for auth */ password?: string } /* Excluded from this release type: AuthContext */ /** @public */ export declare const AuthMechanism: Readonly<{ readonly MONGODB_AWS: "MONGODB-AWS" readonly MONGODB_CR: "MONGODB-CR" readonly MONGODB_DEFAULT: "DEFAULT" readonly MONGODB_GSSAPI: "GSSAPI" readonly MONGODB_PLAIN: "PLAIN" readonly MONGODB_SCRAM_SHA1: "SCRAM-SHA-1" readonly MONGODB_SCRAM_SHA256: "SCRAM-SHA-256" readonly MONGODB_X509: "MONGODB-X509" /** @experimental */ readonly MONGODB_OIDC: "MONGODB-OIDC" }> /** @public */ export declare type AuthMechanism = (typeof AuthMechanism)[keyof typeof AuthMechanism] /** @public */ export declare interface AuthMechanismProperties extends Document { SERVICE_HOST?: string SERVICE_NAME?: string SERVICE_REALM?: string CANONICALIZE_HOST_NAME?: GSSAPICanonicalizationValue AWS_SESSION_TOKEN?: string /** @experimental */ REQUEST_TOKEN_CALLBACK?: OIDCRequestFunction /** @experimental */ REFRESH_TOKEN_CALLBACK?: OIDCRefreshFunction /** @experimental */ PROVIDER_NAME?: "aws" } /** @public */ export declare interface AutoEncrypter { new (client: MongoClient, options: AutoEncryptionOptions): AutoEncrypter init(cb: Callback): void teardown(force: boolean, callback: Callback): void encrypt( ns: string, cmd: Document, options: any, callback: Callback<Document>, ): void decrypt(cmd: Document, options: any, callback: Callback<Document>): void /** @experimental */ readonly cryptSharedLibVersionInfo: { version: bigint versionStr: string } | null } /** @public */ export declare const AutoEncryptionLoggerLevel: Readonly<{ readonly FatalError: 0 readonly Error: 1 readonly Warning: 2 readonly Info: 3 readonly Trace: 4 }> /** @public */ export declare type AutoEncryptionLoggerLevel = (typeof AutoEncryptionLoggerLevel)[keyof typeof AutoEncryptionLoggerLevel] /** @public */ export declare interface AutoEncryptionOptions { /* Excluded from this release type: metadataClient */ /** A `MongoClient` used to fetch keys from a key vault */ keyVaultClient?: MongoClient /** The namespace where keys are stored in the key vault */ keyVaultNamespace?: string /** Configuration options that are used by specific KMS providers during key generation, encryption, and decryption. */ kmsProviders?: { /** Configuration options for using 'aws' as your KMS provider */ aws?: | { /** The access key used for the AWS KMS provider */ accessKeyId: string /** The secret access key used for the AWS KMS provider */ secretAccessKey: string /** * An optional AWS session token that will be used as the * X-Amz-Security-Token header for AWS requests. */ sessionToken?: string } | Record<string, never> /** Configuration options for using 'local' as your KMS provider */ local?: { /** * The master key used to encrypt/decrypt data keys. * A 96-byte long Buffer or base64 encoded string. */ key: Buffer | string } /** Configuration options for using 'azure' as your KMS provider */ azure?: | { /** The tenant ID identifies the organization for the account */ tenantId: string /** The client ID to authenticate a registered application */ clientId: string /** The client secret to authenticate a registered application */ clientSecret: string /** * If present, a host with optional port. E.g. "example.com" or "example.com:443". * This is optional, and only needed if customer is using a non-commercial Azure instance * (e.g. a government or China account, which use different URLs). * Defaults to "login.microsoftonline.com" */ identityPlatformEndpoint?: string | undefined } | { /** * If present, an access token to authenticate with Azure. */ accessToken: string } | Record<string, never> /** Configuration options for using 'gcp' as your KMS provider */ gcp?: | { /** The service account email to authenticate */ email: string /** A PKCS#8 encrypted key. This can either be a base64 string or a binary representation */ privateKey: string | Buffer /** * If present, a host with optional port. E.g. "example.com" or "example.com:443". * Defaults to "oauth2.googleapis.com" */ endpoint?: string | undefined } | { /** * If present, an access token to authenticate with GCP. */ accessToken: string } | Record<string, never> /** * Configuration options for using 'kmip' as your KMS provider */ kmip?: { /** * The output endpoint string. * The endpoint consists of a hostname and port separated by a colon. * E.g. "example.com:123". A port is always present. */ endpoint?: string } } /** * A map of namespaces to a local JSON schema for encryption * * **NOTE**: Supplying options.schemaMap provides more security than relying on JSON Schemas obtained from the server. * It protects against a malicious server advertising a false JSON Schema, which could trick the client into sending decrypted data that should be encrypted. * Schemas supplied in the schemaMap only apply to configuring automatic encryption for Client-Side Field Level Encryption. * Other validation rules in the JSON schema will not be enforced by the driver and will result in an error. */ schemaMap?: Document /** @experimental Public Technical Preview: Supply a schema for the encrypted fields in the document */ encryptedFieldsMap?: Document /** Allows the user to bypass auto encryption, maintaining implicit decryption */ bypassAutoEncryption?: boolean /** @experimental Public Technical Preview: Allows users to bypass query analysis */ bypassQueryAnalysis?: boolean options?: { /** An optional hook to catch logging messages from the underlying encryption engine */ logger?: (level: AutoEncryptionLoggerLevel, message: string) => void } extraOptions?: { /** * A local process the driver communicates with to determine how to encrypt values in a command. * Defaults to "mongodb://%2Fvar%2Fmongocryptd.sock" if domain sockets are available or "mongodb://localhost:27020" otherwise */ mongocryptdURI?: string /** If true, autoEncryption will not attempt to spawn a mongocryptd before connecting */ mongocryptdBypassSpawn?: boolean /** The path to the mongocryptd executable on the system */ mongocryptdSpawnPath?: string /** Command line arguments to use when auto-spawning a mongocryptd */ mongocryptdSpawnArgs?: string[] /** * Full path to a MongoDB Crypt shared library to be used (instead of mongocryptd). * * This needs to be the path to the file itself, not a directory. * It can be an absolute or relative path. If the path is relative and * its first component is `$ORIGIN`, it will be replaced by the directory * containing the mongodb-client-encryption native addon file. Otherwise, * the path will be interpreted relative to the current working directory. * * Currently, loading different MongoDB Crypt shared library files from different * MongoClients in the same process is not supported. * * If this option is provided and no MongoDB Crypt shared library could be loaded * from the specified location, creating the MongoClient will fail. * * If this option is not provided and `cryptSharedLibRequired` is not specified, * the AutoEncrypter will attempt to spawn and/or use mongocryptd according * to the mongocryptd-specific `extraOptions` options. * * Specifying a path prevents mongocryptd from being used as a fallback. * * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. */ cryptSharedLibPath?: string /** * If specified, never use mongocryptd and instead fail when the MongoDB Crypt * shared library could not be loaded. * * This is always true when `cryptSharedLibPath` is specified. * * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. */ cryptSharedLibRequired?: boolean /* Excluded from this release type: cryptSharedLibSearchPaths */ } proxyOptions?: ProxyOptions /** The TLS options to use connecting to the KMS provider */ tlsOptions?: { aws?: AutoEncryptionTlsOptions local?: AutoEncryptionTlsOptions azure?: AutoEncryptionTlsOptions gcp?: AutoEncryptionTlsOptions kmip?: AutoEncryptionTlsOptions } } /** @public */ export declare interface AutoEncryptionTlsOptions { /** * Specifies the location of a local .pem file that contains * either the client's TLS/SSL certificate and key or only the * client's TLS/SSL key when tlsCertificateFile is used to * provide the certificate. */ tlsCertificateKeyFile?: string /** * Specifies the password to de-crypt the tlsCertificateKeyFile. */ tlsCertificateKeyFilePassword?: string /** * Specifies the location of a local .pem file that contains the * root certificate chain from the Certificate Authority. * This file is used to validate the certificate presented by the * KMS provider. */ tlsCAFile?: string } /** * Keeps the state of a unordered batch so we can rewrite the results * correctly after command execution * * @public */ export declare class Batch<T = Document> { originalZeroIndex: number currentIndex: number originalIndexes: number[] batchType: BatchType operations: T[] size: number sizeBytes: number constructor(batchType: BatchType, originalZeroIndex: number) } /** @public */ export declare const BatchType: Readonly<{ readonly INSERT: 1 readonly UPDATE: 2 readonly DELETE: 3 }> /** @public */ export declare type BatchType = (typeof BatchType)[keyof typeof BatchType] export { Binary } /* Excluded from this release type: BinMsg */ /** @public */ export declare type BitwiseFilter = | number /** numeric bit mask */ | Binary /** BinData bit mask */ | ReadonlyArray<number> export { BSON } export { BSONRegExp } /** * BSON Serialization options. * @public */ export declare interface BSONSerializeOptions extends Omit<SerializeOptions, "index">, Omit< DeserializeOptions, | "evalFunctions" | "cacheFunctions" | "cacheFunctionsCrc32" | "allowObjectSmallerThanBufferSize" | "index" | "validation" > { /** * Enabling the raw option will return a [Node.js Buffer](path_to_url * which is allocated using [allocUnsafe API](path_to_url#static-method-bufferallocunsafesize). * See this section from the [Node.js Docs here](path_to_url#what-makes-bufferallocunsafe-and-bufferallocunsafeslow-unsafe) * for more detail about what "unsafe" refers to in this context. * If you need to maintain your own editable clone of the bytes returned for an extended life time of the process, it is recommended you allocate * your own buffer and clone the contents: * * @example * ```ts * const raw = await collection.findOne({}, { raw: true }); * const myBuffer = Buffer.alloc(raw.byteLength); * myBuffer.set(raw, 0); * // Only save and use `myBuffer` beyond this point * ``` * * @remarks * Please note there is a known limitation where this option cannot be used at the MongoClient level (see [NODE-3946](path_to_url * It does correctly work at `Db`, `Collection`, and per operation the same as other BSON options work. */ raw?: boolean /** Enable utf8 validation when deserializing BSON documents. Defaults to true. */ enableUtf8Validation?: boolean } export { BSONSymbol } export { BSONType } /** @public */ export declare type BSONTypeAlias = keyof typeof BSONType /* Excluded from this release type: BufferPool */ /** @public */ export declare abstract class BulkOperationBase { isOrdered: boolean /* Excluded from this release type: s */ operationId?: number /* Excluded from this release type: __constructor */ /** * Add a single insert document to the bulk operation * * @example * ```ts * const bulkOp = collection.initializeOrderedBulkOp(); * * // Adds three inserts to the bulkOp. * bulkOp * .insert({ a: 1 }) * .insert({ b: 2 }) * .insert({ c: 3 }); * await bulkOp.execute(); * ``` */ insert(document: Document): BulkOperationBase /** * Builds a find operation for an update/updateOne/delete/deleteOne/replaceOne. * Returns a builder object used to complete the definition of the operation. * * @example * ```ts * const bulkOp = collection.initializeOrderedBulkOp(); * * // Add an updateOne to the bulkOp * bulkOp.find({ a: 1 }).updateOne({ $set: { b: 2 } }); * * // Add an updateMany to the bulkOp * bulkOp.find({ c: 3 }).update({ $set: { d: 4 } }); * * // Add an upsert * bulkOp.find({ e: 5 }).upsert().updateOne({ $set: { f: 6 } }); * * // Add a deletion * bulkOp.find({ g: 7 }).deleteOne(); * * // Add a multi deletion * bulkOp.find({ h: 8 }).delete(); * * // Add a replaceOne * bulkOp.find({ i: 9 }).replaceOne({writeConcern: { j: 10 }}); * * // Update using a pipeline (requires Mongodb 4.2 or higher) * bulk.find({ k: 11, y: { $exists: true }, z: { $exists: true } }).updateOne([ * { $set: { total: { $sum: [ '$y', '$z' ] } } } * ]); * * // All of the ops will now be executed * await bulkOp.execute(); * ``` */ find(selector: Document): FindOperators /** Specifies a raw operation to perform in the bulk write. */ raw(op: AnyBulkWriteOperation): this get bsonOptions(): BSONSerializeOptions get writeConcern(): WriteConcern | undefined get batches(): Batch[] execute(options?: BulkWriteOptions): Promise<BulkWriteResult> /* Excluded from this release type: handleWriteError */ abstract addToOperationsList( batchType: BatchType, document: Document | UpdateStatement | DeleteStatement, ): this } /* Excluded from this release type: BulkOperationPrivate */ /* Excluded from this release type: BulkResult */ /** @public */ export declare interface BulkWriteOperationError { index: number code: number errmsg: string errInfo: Document op: Document | UpdateStatement | DeleteStatement } /** @public */ export declare interface BulkWriteOptions extends CommandOperationOptions { /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ bypassDocumentValidation?: boolean /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ ordered?: boolean /** Force server to assign _id values instead of driver. */ forceServerObjectId?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** * @public * The result of a bulk write. */ export declare class BulkWriteResult { private readonly result /** Number of documents inserted. */ readonly insertedCount: number /** Number of documents matched for update. */ readonly matchedCount: number /** Number of documents modified. */ readonly modifiedCount: number /** Number of documents deleted. */ readonly deletedCount: number /** Number of documents upserted. */ readonly upsertedCount: number /** Upserted document generated Id's, hash key is the index of the originating operation */ readonly upsertedIds: { [key: number]: any } /** Inserted document generated Id's, hash key is the index of the originating operation */ readonly insertedIds: { [key: number]: any } private static generateIdMap /* Excluded from this release type: __constructor */ /** Evaluates to true if the bulk operation correctly executes */ get ok(): number /** The number of inserted documents */ get nInserted(): number /** Number of upserted documents */ get nUpserted(): number /** Number of matched documents */ get nMatched(): number /** Number of documents updated physically on disk */ get nModified(): number /** Number of removed documents */ get nRemoved(): number /** Returns an array of all inserted ids */ getInsertedIds(): Document[] /** Returns an array of all upserted ids */ getUpsertedIds(): Document[] /** Returns the upserted id at the given index */ getUpsertedIdAt(index: number): Document | undefined /** Returns raw internal result */ getRawResponse(): Document /** Returns true if the bulk operation contains a write error */ hasWriteErrors(): boolean /** Returns the number of write errors off the bulk operation */ getWriteErrorCount(): number /** Returns a specific write error object */ getWriteErrorAt(index: number): WriteError | undefined /** Retrieve all write errors */ getWriteErrors(): WriteError[] /** Retrieve the write concern error if one exists */ getWriteConcernError(): WriteConcernError | undefined toString(): string isOk(): boolean } /** * MongoDB Driver style callback * @public */ export declare type Callback<T = any> = (error?: AnyError, result?: T) => void /** @public */ export declare class CancellationToken extends TypedEventEmitter<{ cancel(): void }> {} /** * Creates a new Change Stream instance. Normally created using {@link Collection#watch|Collection.watch()}. * @public */ export declare class ChangeStream< TSchema extends Document = Document, TChange extends Document = ChangeStreamDocument<TSchema>, > extends TypedEventEmitter<ChangeStreamEvents<TSchema, TChange>> { pipeline: Document[] /** * @remarks WriteConcern can still be present on the options because * we inherit options from the client/db/collection. The * key must be present on the options in order to delete it. * This allows typescript to delete the key but will * not allow a writeConcern to be assigned as a property on options. */ options: ChangeStreamOptions & { writeConcern?: never } parent: MongoClient | Db | Collection namespace: MongoDBNamespace type: symbol /* Excluded from this release type: cursor */ streamOptions?: CursorStreamOptions /* Excluded from this release type: [kCursorStream] */ /* Excluded from this release type: [kClosed] */ /* Excluded from this release type: [kMode] */ /** @event */ static readonly RESPONSE: "response" /** @event */ static readonly MORE: "more" /** @event */ static readonly INIT: "init" /** @event */ static readonly CLOSE: "close" /** * Fired for each new matching change in the specified namespace. Attaching a `change` * event listener to a Change Stream will switch the stream into flowing mode. Data will * then be passed as soon as it is available. * @event */ static readonly CHANGE: "change" /** @event */ static readonly END: "end" /** @event */ static readonly ERROR: "error" /** * Emitted each time the change stream stores a new resume token. * @event */ static readonly RESUME_TOKEN_CHANGED: "resumeTokenChanged" /* Excluded from this release type: __constructor */ /* Excluded from this release type: cursorStream */ /** The cached resume token that is used to resume after the most recently returned change. */ get resumeToken(): ResumeToken /** Check if there is any document still available in the Change Stream */ hasNext(): Promise<boolean> /** Get the next available document from the Change Stream. */ next(): Promise<TChange> /** * Try to get the next available document from the Change Stream's cursor or `null` if an empty batch is returned */ tryNext(): Promise<Document | null> [Symbol.asyncIterator](): AsyncGenerator<TChange, void, void> /** Is the cursor closed */ get closed(): boolean /** Close the Change Stream */ close(): Promise<void> /** * Return a modified Readable stream including a possible transform method. * * NOTE: When using a Stream to process change stream events, the stream will * NOT automatically resume in the case a resumable error is encountered. * * @throws MongoChangeStreamError if the underlying cursor or the change stream is closed */ stream(options?: CursorStreamOptions): Readable & AsyncIterable<TChange> /* Excluded from this release type: _setIsEmitter */ /* Excluded from this release type: _setIsIterator */ /* Excluded from this release type: _createChangeStreamCursor */ /* Excluded from this release type: _closeEmitterModeWithError */ /* Excluded from this release type: _streamEvents */ /* Excluded from this release type: _endStream */ /* Excluded from this release type: _processChange */ /* Excluded from this release type: _processErrorStreamMode */ /* Excluded from this release type: _processErrorIteratorMode */ } /* Excluded from this release type: ChangeStreamAggregateRawResult */ /** * Only present when the `showExpandedEvents` flag is enabled. * @public * @see path_to_url */ export declare interface ChangeStreamCollModDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "modify" } /** * @public * @see path_to_url */ export declare interface ChangeStreamCreateDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "create" } /** * Only present when the `showExpandedEvents` flag is enabled. * @public * @see path_to_url */ export declare interface ChangeStreamCreateIndexDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { /** Describes the type of operation represented in this change notification */ operationType: "createIndexes" } /* Excluded from this release type: ChangeStreamCursor */ /* Excluded from this release type: ChangeStreamCursorOptions */ /** * @public * @see path_to_url#delete-event */ export declare interface ChangeStreamDeleteDocument< TSchema extends Document = Document, > extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey<TSchema>, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "delete" /** Namespace the delete event occurred on */ ns: ChangeStreamNameSpace /** * Contains the pre-image of the modified or deleted document if the * pre-image is available for the change event and either 'required' or * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option * when creating the change stream. If 'whenAvailable' was specified but the * pre-image is unavailable, this will be explicitly set to null. */ fullDocumentBeforeChange?: TSchema } /** @public */ export declare type ChangeStreamDocument<TSchema extends Document = Document> = | ChangeStreamInsertDocument<TSchema> | ChangeStreamUpdateDocument<TSchema> | ChangeStreamReplaceDocument<TSchema> | ChangeStreamDeleteDocument<TSchema> | ChangeStreamDropDocument | ChangeStreamRenameDocument | ChangeStreamDropDatabaseDocument | ChangeStreamInvalidateDocument | ChangeStreamCreateIndexDocument | ChangeStreamCreateDocument | ChangeStreamCollModDocument | ChangeStreamDropIndexDocument | ChangeStreamShardCollectionDocument | ChangeStreamReshardCollectionDocument | ChangeStreamRefineCollectionShardKeyDocument /** @public */ export declare interface ChangeStreamDocumentCollectionUUID { /** * The UUID (Binary subtype 4) of the collection that the operation was performed on. * * Only present when the `showExpandedEvents` flag is enabled. * * **NOTE:** collectionUUID will be converted to a NodeJS Buffer if the promoteBuffers * flag is enabled. * * @sinceServerVersion 6.1.0 */ collectionUUID: Binary } /** @public */ export declare interface ChangeStreamDocumentCommon { /** * The id functions as an opaque token for use when resuming an interrupted * change stream. */ _id: ResumeToken /** * The timestamp from the oplog entry associated with the event. * For events that happened as part of a multi-document transaction, the associated change stream * notifications will have the same clusterTime value, namely the time when the transaction was committed. * On a sharded cluster, events that occur on different shards can have the same clusterTime but be * associated with different transactions or even not be associated with any transaction. * To identify events for a single transaction, you can use the combination of lsid and txnNumber in the change stream event document. */ clusterTime?: Timestamp /** * The transaction number. * Only present if the operation is part of a multi-document transaction. * * **NOTE:** txnNumber can be a Long if promoteLongs is set to false */ txnNumber?: number /** * The identifier for the session associated with the transaction. * Only present if the operation is part of a multi-document transaction. */ lsid?: ServerSessionId } /** @public */ export declare interface ChangeStreamDocumentKey< TSchema extends Document = Document, > { /** * For unsharded collections this contains a single field `_id`. * For sharded collections, this will contain all the components of the shard key */ documentKey: { _id: InferIdType<TSchema> [shardKey: string]: any } } /** @public */ export declare interface ChangeStreamDocumentOperationDescription { /** * An description of the operation. * * Only present when the `showExpandedEvents` flag is enabled. * * @sinceServerVersion 6.1.0 */ operationDescription?: Document } /** * @public * @see path_to_url#dropdatabase-event */ export declare interface ChangeStreamDropDatabaseDocument extends ChangeStreamDocumentCommon { /** Describes the type of operation represented in this change notification */ operationType: "dropDatabase" /** The database dropped */ ns: { db: string } } /** * @public * @see path_to_url#drop-event */ export declare interface ChangeStreamDropDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "drop" /** Namespace the drop event occurred on */ ns: ChangeStreamNameSpace } /** * Only present when the `showExpandedEvents` flag is enabled. * @public * @see path_to_url */ export declare interface ChangeStreamDropIndexDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { /** Describes the type of operation represented in this change notification */ operationType: "dropIndexes" } /** @public */ export declare type ChangeStreamEvents< TSchema extends Document = Document, TChange extends Document = ChangeStreamDocument<TSchema>, > = { resumeTokenChanged(token: ResumeToken): void init(response: any): void more(response?: any): void response(): void end(): void error(error: Error): void change(change: TChange): void } & AbstractCursorEvents /** * @public * @see path_to_url#insert-event */ export declare interface ChangeStreamInsertDocument< TSchema extends Document = Document, > extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey<TSchema>, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "insert" /** This key will contain the document being inserted */ fullDocument: TSchema /** Namespace the insert event occurred on */ ns: ChangeStreamNameSpace } /** * @public * @see path_to_url#invalidate-event */ export declare interface ChangeStreamInvalidateDocument extends ChangeStreamDocumentCommon { /** Describes the type of operation represented in this change notification */ operationType: "invalidate" } /** @public */ export declare interface ChangeStreamNameSpace { db: string coll: string } /** * Options that can be passed to a ChangeStream. Note that startAfter, resumeAfter, and startAtOperationTime are all mutually exclusive, and the server will error if more than one is specified. * @public */ export declare interface ChangeStreamOptions extends Omit<AggregateOptions, "writeConcern"> { /** * Allowed values: 'updateLookup', 'whenAvailable', 'required'. * * When set to 'updateLookup', the change notification for partial updates * will include both a delta describing the changes to the document as well * as a copy of the entire document that was changed from some time after * the change occurred. * * When set to 'whenAvailable', configures the change stream to return the * post-image of the modified document for replace and update change events * if the post-image for this event is available. * * When set to 'required', the same behavior as 'whenAvailable' except that * an error is raised if the post-image is not available. */ fullDocument?: string /** * Allowed values: 'whenAvailable', 'required', 'off'. * * The default is to not send a value, which is equivalent to 'off'. * * When set to 'whenAvailable', configures the change stream to return the * pre-image of the modified document for replace, update, and delete change * events if it is available. * * When set to 'required', the same behavior as 'whenAvailable' except that * an error is raised if the pre-image is not available. */ fullDocumentBeforeChange?: string /** The maximum amount of time for the server to wait on new documents to satisfy a change stream query. */ maxAwaitTimeMS?: number /** * Allows you to start a changeStream after a specified event. * @see path_to_url#resumeafter-for-change-streams */ resumeAfter?: ResumeToken /** * Similar to resumeAfter, but will allow you to start after an invalidated event. * @see path_to_url#startafter-for-change-streams */ startAfter?: ResumeToken /** Will start the changeStream after the specified operationTime. */ startAtOperationTime?: OperationTime /** * The number of documents to return per batch. * @see path_to_url */ batchSize?: number /** * When enabled, configures the change stream to include extra change events. * * - createIndexes * - dropIndexes * - modify * - create * - shardCollection * - reshardCollection * - refineCollectionShardKey */ showExpandedEvents?: boolean } /** * @public * @see path_to_url */ export declare interface ChangeStreamRefineCollectionShardKeyDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { /** Describes the type of operation represented in this change notification */ operationType: "refineCollectionShardKey" } /** * @public * @see path_to_url#rename-event */ export declare interface ChangeStreamRenameDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "rename" /** The new name for the `ns.coll` collection */ to: { db: string coll: string } /** The "from" namespace that the rename occurred on */ ns: ChangeStreamNameSpace } /** * @public * @see path_to_url#replace-event */ export declare interface ChangeStreamReplaceDocument< TSchema extends Document = Document, > extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey<TSchema> { /** Describes the type of operation represented in this change notification */ operationType: "replace" /** The fullDocument of a replace event represents the document after the insert of the replacement document */ fullDocument: TSchema /** Namespace the replace event occurred on */ ns: ChangeStreamNameSpace /** * Contains the pre-image of the modified or deleted document if the * pre-image is available for the change event and either 'required' or * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option * when creating the change stream. If 'whenAvailable' was specified but the * pre-image is unavailable, this will be explicitly set to null. */ fullDocumentBeforeChange?: TSchema } /** * @public * @see path_to_url */ export declare interface ChangeStreamReshardCollectionDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { /** Describes the type of operation represented in this change notification */ operationType: "reshardCollection" } /** * @public * @see path_to_url */ export declare interface ChangeStreamShardCollectionDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { /** Describes the type of operation represented in this change notification */ operationType: "shardCollection" } /** * @public * @see path_to_url#update-event */ export declare interface ChangeStreamUpdateDocument< TSchema extends Document = Document, > extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey<TSchema>, ChangeStreamDocumentCollectionUUID { /** Describes the type of operation represented in this change notification */ operationType: "update" /** * This is only set if `fullDocument` is set to `'updateLookup'` * Contains the point-in-time post-image of the modified document if the * post-image is available and either 'required' or 'whenAvailable' was * specified for the 'fullDocument' option when creating the change stream. */ fullDocument?: TSchema /** Contains a description of updated and removed fields in this operation */ updateDescription: UpdateDescription<TSchema> /** Namespace the update event occurred on */ ns: ChangeStreamNameSpace /** * Contains the pre-image of the modified or deleted document if the * pre-image is available for the change event and either 'required' or * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option * when creating the change stream. If 'whenAvailable' was specified but the * pre-image is unavailable, this will be explicitly set to null. */ fullDocumentBeforeChange?: TSchema } /** * @public * @see path_to_url#hello-command */ export declare interface ClientMetadata { driver: { name: string version: string } os: { type: string name: NodeJS.Platform architecture: string version: string } platform: string application?: { name: string } } /** @public */ export declare interface ClientMetadataOptions { driverInfo?: { name?: string version?: string platform?: string } appName?: string } /** * A class representing a client session on the server * * NOTE: not meant to be instantiated directly. * @public */ export declare class ClientSession extends TypedEventEmitter<ClientSessionEvents> { /* Excluded from this release type: client */ /* Excluded from this release type: sessionPool */ hasEnded: boolean clientOptions?: MongoOptions supports: { causalConsistency: boolean } clusterTime?: ClusterTime operationTime?: Timestamp explicit: boolean /* Excluded from this release type: owner */ defaultTransactionOptions: TransactionOptions transaction: Transaction /* Excluded from this release type: [kServerSession] */ /* Excluded from this release type: [kSnapshotTime] */ /* Excluded from this release type: [kSnapshotEnabled] */ /* Excluded from this release type: [kPinnedConnection] */ /* Excluded from this release type: [kTxnNumberIncrement] */ /* Excluded from this release type: __constructor */ /** The server id associated with this session */ get id(): ServerSessionId | undefined get serverSession(): ServerSession /** Whether or not this session is configured for snapshot reads */ get snapshotEnabled(): boolean get loadBalanced(): boolean /* Excluded from this release type: pinnedConnection */ /* Excluded from this release type: pin */ /* Excluded from this release type: unpin */ get isPinned(): boolean /** * Ends this session on the server * * @param options - Optional settings. Currently reserved for future use */ endSession(options?: EndSessionOptions): Promise<void> /** * Advances the operationTime for a ClientSession. * * @param operationTime - the `BSON.Timestamp` of the operation type it is desired to advance to */ advanceOperationTime(operationTime: Timestamp): void /** * Advances the clusterTime for a ClientSession to the provided clusterTime of another ClientSession * * @param clusterTime - the $clusterTime returned by the server from another session in the form of a document containing the `BSON.Timestamp` clusterTime and signature */ advanceClusterTime(clusterTime: ClusterTime): void /** * Used to determine if this session equals another * * @param session - The session to compare to */ equals(session: ClientSession): boolean /** * Increment the transaction number on the internal ServerSession * * @privateRemarks * This helper increments a value stored on the client session that will be * added to the serverSession's txnNumber upon applying it to a command. * This is because the serverSession is lazily acquired after a connection is obtained */ incrementTransactionNumber(): void /** @returns whether this session is currently in a transaction or not */ inTransaction(): boolean /** * Starts a new transaction with the given options. * * @param options - Options for the transaction */ startTransaction(options?: TransactionOptions): void /** * Commits the currently active transaction in this session. */ commitTransaction(): Promise<Document> /** * Aborts the currently active transaction in this session. */ abortTransaction(): Promise<Document> /** * This is here to ensure that ClientSession is never serialized to BSON. */ toBSON(): never /** * Runs a provided callback within a transaction, retrying either the commitTransaction operation * or entire transaction as needed (and when the error permits) to better ensure that * the transaction can complete successfully. * * **IMPORTANT:** This method requires the user to return a Promise, and `await` all operations. * Any callbacks that do not return a Promise will result in undefined behavior. * * @remarks * This function: * - Will return the command response from the final commitTransaction if every operation is successful (can be used as a truthy object) * - Will return `undefined` if the transaction is explicitly aborted with `await session.abortTransaction()` * - Will throw if one of the operations throws or `throw` statement is used inside the `withTransaction` callback * * Checkout a descriptive example here: * @see path_to_url * * @param fn - callback to run within a transaction * @param options - optional settings for the transaction * @returns A raw command response or undefined */ withTransaction<T = void>( fn: WithTransactionCallback<T>, options?: TransactionOptions, ): Promise<Document | undefined> } /** @public */ export declare type ClientSessionEvents = { ended(session: ClientSession): void } /** @public */ export declare interface ClientSessionOptions { /** Whether causal consistency should be enabled on this session */ causalConsistency?: boolean /** Whether all read operations should be read from the same snapshot for this session (NOTE: not compatible with `causalConsistency=true`) */ snapshot?: boolean /** The default TransactionOptions to use for transactions started on this session. */ defaultTransactionOptions?: TransactionOptions /* Excluded from this release type: owner */ /* Excluded from this release type: explicit */ /* Excluded from this release type: initialClusterTime */ } /** @public */ export declare interface CloseOptions { force?: boolean } /** @public * Configuration options for clustered collections * @see path_to_url */ export declare interface ClusteredCollectionOptions extends Document { name?: string key: Document unique: boolean } /** @public */ export declare interface ClusterTime { clusterTime: Timestamp signature: { hash: Binary keyId: Long } } export { Code } /** @public */ export declare interface CollationOptions { locale: string caseLevel?: boolean caseFirst?: string strength?: number numericOrdering?: boolean alternate?: string maxVariable?: string backwards?: boolean normalization?: boolean } /** * The **Collection** class is an internal class that embodies a MongoDB collection * allowing for insert/find/update/delete and other command operation on that MongoDB collection. * * **COLLECTION Cannot directly be instantiated** * @public * * @example * ```ts * import { MongoClient } from 'mongodb'; * * interface Pet { * name: string; * kind: 'dog' | 'cat' | 'fish'; * } * * const client = new MongoClient('mongodb://localhost:27017'); * const pets = client.db().collection<Pet>('pets'); * * const petCursor = pets.find(); * * for await (const pet of petCursor) { * console.log(`${pet.name} is a ${pet.kind}!`); * } * ``` */ export declare class Collection<TSchema extends Document = Document> { /* Excluded from this release type: s */ /* Excluded from this release type: __constructor */ /** * The name of the database this collection belongs to */ get dbName(): string /** * The name of this collection */ get collectionName(): string /** * The namespace of this collection, in the format `${this.dbName}.${this.collectionName}` */ get namespace(): string /** * The current readConcern of the collection. If not explicitly defined for * this collection, will be inherited from the parent DB */ get readConcern(): ReadConcern | undefined /** * The current readPreference of the collection. If not explicitly defined for * this collection, will be inherited from the parent DB */ get readPreference(): ReadPreference | undefined get bsonOptions(): BSONSerializeOptions /** * The current writeConcern of the collection. If not explicitly defined for * this collection, will be inherited from the parent DB */ get writeConcern(): WriteConcern | undefined /** The current index hint for the collection */ get hint(): Hint | undefined set hint(v: Hint | undefined) /** * Inserts a single document into MongoDB. If documents passed in do not contain the **_id** field, * one will be added to each of the documents missing it by the driver, mutating the document. This behavior * can be overridden by setting the **forceServerObjectId** flag. * * @param doc - The document to insert * @param options - Optional settings for the command */ insertOne( doc: OptionalUnlessRequiredId<TSchema>, options?: InsertOneOptions, ): Promise<InsertOneResult<TSchema>> /** * Inserts an array of documents into MongoDB. If documents passed in do not contain the **_id** field, * one will be added to each of the documents missing it by the driver, mutating the document. This behavior * can be overridden by setting the **forceServerObjectId** flag. * * @param docs - The documents to insert * @param options - Optional settings for the command */ insertMany( docs: OptionalUnlessRequiredId<TSchema>[], options?: BulkWriteOptions, ): Promise<InsertManyResult<TSchema>> /** * Perform a bulkWrite operation without a fluent API * * Legal operation types are * - `insertOne` * - `replaceOne` * - `updateOne` * - `updateMany` * - `deleteOne` * - `deleteMany` * * If documents passed in do not contain the **_id** field, * one will be added to each of the documents missing it by the driver, mutating the document. This behavior * can be overridden by setting the **forceServerObjectId** flag. * * @param operations - Bulk operations to perform * @param options - Optional settings for the command * @throws MongoDriverError if operations is not an array */ bulkWrite( operations: AnyBulkWriteOperation<TSchema>[], options?: BulkWriteOptions, ): Promise<BulkWriteResult> /** * Update a single document in a collection * * @param filter - The filter used to select the document to update * @param update - The update operations to be applied to the document * @param options - Optional settings for the command */ updateOne( filter: Filter<TSchema>, update: UpdateFilter<TSchema> | Partial<TSchema>, options?: UpdateOptions, ): Promise<UpdateResult> /** * Replace a document in a collection with another document * * @param filter - The filter used to select the document to replace * @param replacement - The Document that replaces the matching document * @param options - Optional settings for the command */ replaceOne( filter: Filter<TSchema>, replacement: WithoutId<TSchema>, options?: ReplaceOptions, ): Promise<UpdateResult | Document> /** * Update multiple documents in a collection * * @param filter - The filter used to select the documents to update * @param update - The update operations to be applied to the documents * @param options - Optional settings for the command */ updateMany( filter: Filter<TSchema>, update: UpdateFilter<TSchema>, options?: UpdateOptions, ): Promise<UpdateResult> /** * Delete a document from a collection * * @param filter - The filter used to select the document to remove * @param options - Optional settings for the command */ deleteOne( filter?: Filter<TSchema>, options?: DeleteOptions, ): Promise<DeleteResult> /** * Delete multiple documents from a collection * * @param filter - The filter used to select the documents to remove * @param options - Optional settings for the command */ deleteMany( filter?: Filter<TSchema>, options?: DeleteOptions, ): Promise<DeleteResult> /** * Rename the collection. * * @remarks * This operation does not inherit options from the Db or MongoClient. * * @param newName - New name of of the collection. * @param options - Optional settings for the command */ rename(newName: string, options?: RenameOptions): Promise<Collection> /** * Drop the collection from the database, removing it permanently. New accesses will create a new collection. * * @param options - Optional settings for the command */ drop(options?: DropCollectionOptions): Promise<boolean> /** * Fetches the first document that matches the filter * * @param filter - Query for find Operation * @param options - Optional settings for the command */ findOne(): Promise<WithId<TSchema> | null> findOne(filter: Filter<TSchema>): Promise<WithId<TSchema> | null> findOne( filter: Filter<TSchema>, options: FindOptions, ): Promise<WithId<TSchema> | null> findOne<T = TSchema>(): Promise<T | null> findOne<T = TSchema>(filter: Filter<TSchema>): Promise<T | null> findOne<T = TSchema>( filter: Filter<TSchema>, options?: FindOptions, ): Promise<T | null> /** * Creates a cursor for a filter that can be used to iterate over results from MongoDB * * @param filter - The filter predicate. If unspecified, then all documents in the collection will match the predicate */ find(): FindCursor<WithId<TSchema>> find( filter: Filter<TSchema>, options?: FindOptions, ): FindCursor<WithId<TSchema>> find<T extends Document>( filter: Filter<TSchema>, options?: FindOptions, ): FindCursor<T> /** * Returns the options of the collection. * * @param options - Optional settings for the command */ options(options?: OperationOptions): Promise<Document> /** * Returns if the collection is a capped collection * * @param options - Optional settings for the command */ isCapped(options?: OperationOptions): Promise<boolean> /** * Creates an index on the db and collection collection. * * @param indexSpec - The field name or index specification to create an index for * @param options - Optional settings for the command * * @example * ```ts * const collection = client.db('foo').collection('bar'); * * await collection.createIndex({ a: 1, b: -1 }); * * // Alternate syntax for { c: 1, d: -1 } that ensures order of indexes * await collection.createIndex([ [c, 1], [d, -1] ]); * * // Equivalent to { e: 1 } * await collection.createIndex('e'); * * // Equivalent to { f: 1, g: 1 } * await collection.createIndex(['f', 'g']) * * // Equivalent to { h: 1, i: -1 } * await collection.createIndex([ { h: 1 }, { i: -1 } ]); * * // Equivalent to { j: 1, k: -1, l: 2d } * await collection.createIndex(['j', ['k', -1], { l: '2d' }]) * ``` */ createIndex( indexSpec: IndexSpecification, options?: CreateIndexesOptions, ): Promise<string> /** * Creates multiple indexes in the collection, this method is only supported for * MongoDB 2.6 or higher. Earlier version of MongoDB will throw a command not supported * error. * * **Note**: Unlike {@link Collection#createIndex| createIndex}, this function takes in raw index specifications. * Index specifications are defined {@link path_to_url| here}. * * @param indexSpecs - An array of index specifications to be created * @param options - Optional settings for the command * * @example * ```ts * const collection = client.db('foo').collection('bar'); * await collection.createIndexes([ * // Simple index on field fizz * { * key: { fizz: 1 }, * } * // wildcard index * { * key: { '$**': 1 } * }, * // named index on darmok and jalad * { * key: { darmok: 1, jalad: -1 } * name: 'tanagra' * } * ]); * ``` */ createIndexes( indexSpecs: IndexDescription[], options?: CreateIndexesOptions, ): Promise<string[]> /** * Drops an index from this collection. * * @param indexName - Name of the index to drop. * @param options - Optional settings for the command */ dropIndex( indexName: string, options?: DropIndexesOptions, ): Promise<Document> /** * Drops all indexes from this collection. * * @param options - Optional settings for the command */ dropIndexes(options?: DropIndexesOptions): Promise<Document> /** * Get the list of all indexes information for the collection. * * @param options - Optional settings for the command */ listIndexes(options?: ListIndexesOptions): ListIndexesCursor /** * Checks if one or more indexes exist on the collection, fails on first non-existing index * * @param indexes - One or more index names to check. * @param options - Optional settings for the command */ indexExists( indexes: string | string[], options?: IndexInformationOptions, ): Promise<boolean> /** * Retrieves this collections index info. * * @param options - Optional settings for the command */ indexInformation(options?: IndexInformationOptions): Promise<Document> /** * Gets an estimate of the count of documents in a collection using collection metadata. * This will always run a count command on all server versions. * * due to an oversight in versions 5.0.0-5.0.8 of MongoDB, the count command, * which estimatedDocumentCount uses in its implementation, was not included in v1 of * the Stable API, and so users of the Stable API with estimatedDocumentCount are * recommended to upgrade their server version to 5.0.9+ or set apiStrict: false to avoid * encountering errors. * * @see {@link path_to_url#behavior|Count: Behavior} * @param options - Optional settings for the command */ estimatedDocumentCount( options?: EstimatedDocumentCountOptions, ): Promise<number> /** * Gets the number of documents matching the filter. * For a fast count of the total documents in a collection see {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. * **Note**: When migrating from {@link Collection#count| count} to {@link Collection#countDocuments| countDocuments} * the following query operators must be replaced: * * | Operator | Replacement | * | -------- | ----------- | * | `$where` | [`$expr`][1] | * | `$near` | [`$geoWithin`][2] with [`$center`][3] | * | `$nearSphere` | [`$geoWithin`][2] with [`$centerSphere`][4] | * * [1]: path_to_url * [2]: path_to_url * [3]: path_to_url#op._S_center * [4]: path_to_url#op._S_centerSphere * * @param filter - The filter for the count * @param options - Optional settings for the command * * @see path_to_url * @see path_to_url * @see path_to_url#op._S_center * @see path_to_url#op._S_centerSphere */ countDocuments( filter?: Document, options?: CountDocumentsOptions, ): Promise<number> /** * The distinct command returns a list of distinct values for the given key across a collection. * * @param key - Field of the document to find distinct values for * @param filter - The filter for filtering the set of documents to which we apply the distinct filter. * @param options - Optional settings for the command */ distinct<Key extends keyof WithId<TSchema>>( key: Key, ): Promise<Array<Flatten<WithId<TSchema>[Key]>>> distinct<Key extends keyof WithId<TSchema>>( key: Key, filter: Filter<TSchema>, ): Promise<Array<Flatten<WithId<TSchema>[Key]>>> distinct<Key extends keyof WithId<TSchema>>( key: Key, filter: Filter<TSchema>, options: DistinctOptions, ): Promise<Array<Flatten<WithId<TSchema>[Key]>>> distinct(key: string): Promise<any[]> distinct(key: string, filter: Filter<TSchema>): Promise<any[]> distinct( key: string, filter: Filter<TSchema>, options: DistinctOptions, ): Promise<any[]> /** * Retrieve all the indexes on the collection. * * @param options - Optional settings for the command */ indexes(options?: IndexInformationOptions): Promise<Document[]> /** * Get all the collection statistics. * * @param options - Optional settings for the command */ stats(options?: CollStatsOptions): Promise<CollStats> /** * Find a document and delete it in one atomic operation. Requires a write lock for the duration of the operation. * * @param filter - The filter used to select the document to remove * @param options - Optional settings for the command */ findOneAndDelete( filter: Filter<TSchema>, options?: FindOneAndDeleteOptions, ): Promise<ModifyResult<TSchema> | null> /** * Find a document and replace it in one atomic operation. Requires a write lock for the duration of the operation. * * @param filter - The filter used to select the document to replace * @param replacement - The Document that replaces the matching document * @param options - Optional settings for the command */ findOneAndReplace( filter: Filter<TSchema>, replacement: WithoutId<TSchema>, options?: FindOneAndReplaceOptions, ): Promise<ModifyResult<TSchema> | null> /** * Find a document and update it in one atomic operation. Requires a write lock for the duration of the operation. * * @param filter - The filter used to select the document to update * @param update - Update operations to be performed on the document * @param options - Optional settings for the command */ findOneAndUpdate( filter: Filter<TSchema>, update: UpdateFilter<TSchema>, options?: FindOneAndUpdateOptions, ): Promise<ModifyResult<TSchema> | null> /** * Execute an aggregation framework pipeline against the collection, needs MongoDB \>= 2.2 * * @param pipeline - An array of aggregation pipelines to execute * @param options - Optional settings for the command */ aggregate<T extends Document = Document>( pipeline?: Document[], options?: AggregateOptions, ): AggregationCursor<T> /** * Create a new Change Stream, watching for new changes (insertions, updates, replacements, deletions, and invalidations) in this collection. * * @remarks * watch() accepts two generic arguments for distinct use cases: * - The first is to override the schema that may be defined for this specific collection * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument * @example * By just providing the first argument I can type the change to be `ChangeStreamDocument<{ _id: number }>` * ```ts * collection.watch<{ _id: number }>() * .on('change', change => console.log(change._id.toFixed(4))); * ``` * * @example * Passing a second argument provides a way to reflect the type changes caused by an advanced pipeline. * Here, we are using a pipeline to have MongoDB filter for insert changes only and add a comment. * No need start from scratch on the ChangeStreamInsertDocument type! * By using an intersection we can save time and ensure defaults remain the same type! * ```ts * collection * .watch<Schema, ChangeStreamInsertDocument<Schema> & { comment: string }>([ * { $addFields: { comment: 'big changes' } }, * { $match: { operationType: 'insert' } } * ]) * .on('change', change => { * change.comment.startsWith('big'); * change.operationType === 'insert'; * // No need to narrow in code because the generics did that for us! * expectType<Schema>(change.fullDocument); * }); * ``` * * @param pipeline - An array of {@link path_to_url|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. * @param options - Optional settings for the command * @typeParam TLocal - Type of the data being detected by the change stream * @typeParam TChange - Type of the whole change stream document emitted */ watch< TLocal extends Document = TSchema, TChange extends Document = ChangeStreamDocument<TLocal>, >( pipeline?: Document[], options?: ChangeStreamOptions, ): ChangeStream<TLocal, TChange> /** * Initiate an Out of order batch write operation. All operations will be buffered into insert/update/remove commands executed out of order. * * @throws MongoNotConnectedError * @remarks * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implementation. * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. */ initializeUnorderedBulkOp( options?: BulkWriteOptions, ): UnorderedBulkOperation /** * Initiate an In order bulk write operation. Operations will be serially executed in the order they are added, creating a new operation for each switch in types. * * @throws MongoNotConnectedError * @remarks * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implementation. * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. */ initializeOrderedBulkOp(options?: BulkWriteOptions): OrderedBulkOperation /** * An estimated count of matching documents in the db to a filter. * * **NOTE:** This method has been deprecated, since it does not provide an accurate count of the documents * in a collection. To obtain an accurate count of documents in the collection, use {@link Collection#countDocuments| countDocuments}. * To obtain an estimated count of all documents in the collection, use {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. * * @deprecated use {@link Collection#countDocuments| countDocuments} or {@link Collection#estimatedDocumentCount| estimatedDocumentCount} instead * * @param filter - The filter for the count. * @param options - Optional settings for the command */ count(filter?: Filter<TSchema>, options?: CountOptions): Promise<number> } /** @public */ export declare interface CollectionInfo extends Document { name: string type?: string options?: Document info?: { readOnly?: false uuid?: Binary } idIndex?: Document } /** @public */ export declare interface CollectionOptions extends BSONSerializeOptions, WriteConcernOptions { /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ readConcern?: ReadConcernLike /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ readPreference?: ReadPreferenceLike } /* Excluded from this release type: CollectionPrivate */ /** * @public * @see path_to_url */ export declare interface CollStats extends Document { /** Namespace */ ns: string /** Number of documents */ count: number /** Collection size in bytes */ size: number /** Average object size in bytes */ avgObjSize: number /** (Pre)allocated space for the collection in bytes */ storageSize: number /** Number of extents (contiguously allocated chunks of datafile space) */ numExtents: number /** Number of indexes */ nindexes: number /** Size of the most recently created extent in bytes */ lastExtentSize: number /** Padding can speed up updates if documents grow */ paddingFactor: number /** A number that indicates the user-set flags on the collection. userFlags only appears when using the mmapv1 storage engine */ userFlags?: number /** Total index size in bytes */ totalIndexSize: number /** Size of specific indexes in bytes */ indexSizes: { _id_: number [index: string]: number } /** `true` if the collection is capped */ capped: boolean /** The maximum number of documents that may be present in a capped collection */ max: number /** The maximum size of a capped collection */ maxSize: number /** This document contains data reported directly by the WiredTiger engine and other data for internal diagnostic use */ wiredTiger?: WiredTigerData /** The fields in this document are the names of the indexes, while the values themselves are documents that contain statistics for the index provided by the storage engine */ indexDetails?: any ok: number /** The amount of storage available for reuse. The scale argument affects this value. */ freeStorageSize?: number /** An array that contains the names of the indexes that are currently being built on the collection */ indexBuilds?: number /** The sum of the storageSize and totalIndexSize. The scale argument affects this value */ totalSize: number /** The scale value used by the command. */ scaleFactor: number } /** @public */ export declare interface CollStatsOptions extends CommandOperationOptions { /** Divide the returned sizes by scale value. */ scale?: number } /** * An event indicating the failure of a given command * @public * @category Event */ export declare class CommandFailedEvent { address: string connectionId?: string | number requestId: number duration: number commandName: string failure: Error serviceId?: ObjectId /* Excluded from this release type: __constructor */ get hasServiceId(): boolean } /* Excluded from this release type: CommandOperation */ /** @public */ export declare interface CommandOperationOptions extends OperationOptions, WriteConcernOptions, ExplainOptions { /** Specify a read concern and level for the collection. (only MongoDB 3.2 or higher supported) */ readConcern?: ReadConcernLike /** Collation */ collation?: CollationOptions maxTimeMS?: number /** * Comment to apply to the operation. * * In server versions pre-4.4, 'comment' must be string. A server * error will be thrown if any other type is provided. * * In server versions 4.4 and above, 'comment' can be any valid BSON type. */ comment?: unknown /** Should retry failed writes */ retryWrites?: boolean dbName?: string authdb?: string noResponse?: boolean } /* Excluded from this release type: CommandOptions */ /** * An event indicating the start of a given * @public * @category Event */ export declare class CommandStartedEvent { commandObj?: Document requestId: number databaseName: string commandName: string command: Document address: string connectionId?: string | number serviceId?: ObjectId /* Excluded from this release type: __constructor */ get hasServiceId(): boolean } /** * An event indicating the success of a given command * @public * @category Event */ export declare class CommandSucceededEvent { address: string connectionId?: string | number requestId: number duration: number commandName: string reply: unknown serviceId?: ObjectId /* Excluded from this release type: __constructor */ get hasServiceId(): boolean } /** @public */ export declare type CommonEvents = "newListener" | "removeListener" /** @public */ export declare const Compressor: Readonly<{ readonly none: 0 readonly snappy: 1 readonly zlib: 2 readonly zstd: 3 }> /** @public */ export declare type Compressor = (typeof Compressor)[CompressorName] /** @public */ export declare type CompressorName = keyof typeof Compressor /** @public */ export declare type Condition<T> = | AlternativeType<T> | FilterOperators<AlternativeType<T>> /* Excluded from this release type: Connection */ /** * An event published when a connection is checked into the connection pool * @public * @category Event */ export declare class ConnectionCheckedInEvent extends ConnectionPoolMonitoringEvent { /** The id of the connection */ connectionId: number | "<monitor>" /* Excluded from this release type: __constructor */ } /** * An event published when a connection is checked out of the connection pool * @public * @category Event */ export declare class ConnectionCheckedOutEvent extends ConnectionPoolMonitoringEvent { /** The id of the connection */ connectionId: number | "<monitor>" /* Excluded from this release type: __constructor */ } /** * An event published when a request to check a connection out fails * @public * @category Event */ export declare class ConnectionCheckOutFailedEvent extends ConnectionPoolMonitoringEvent { /** The reason the attempt to check out failed */ reason: AnyError | string /* Excluded from this release type: __constructor */ } /** * An event published when a request to check a connection out begins * @public * @category Event */ export declare class ConnectionCheckOutStartedEvent extends ConnectionPoolMonitoringEvent { /* Excluded from this release type: __constructor */ } /** * An event published when a connection is closed * @public * @category Event */ export declare class ConnectionClosedEvent extends ConnectionPoolMonitoringEvent { /** The id of the connection */ connectionId: number | "<monitor>" /** The reason the connection was closed */ reason: string serviceId?: ObjectId /* Excluded from this release type: __constructor */ } /** * An event published when a connection pool creates a new connection * @public * @category Event */ export declare class ConnectionCreatedEvent extends ConnectionPoolMonitoringEvent { /** A monotonically increasing, per-pool id for the newly created connection */ connectionId: number | "<monitor>" /* Excluded from this release type: __constructor */ } /** @public */ export declare type ConnectionEvents = { commandStarted(event: CommandStartedEvent): void commandSucceeded(event: CommandSucceededEvent): void commandFailed(event: CommandFailedEvent): void clusterTimeReceived(clusterTime: Document): void close(): void message(message: any): void pinned(pinType: string): void unpinned(pinType: string): void } /** @public */ export declare interface ConnectionOptions extends SupportedNodeConnectionOptions, StreamDescriptionOptions, ProxyOptions { id: number | "<monitor>" generation: number hostAddress: HostAddress autoEncrypter?: AutoEncrypter serverApi?: ServerApi monitorCommands: boolean /* Excluded from this release type: connectionType */ credentials?: MongoCredentials connectTimeoutMS?: number tls: boolean keepAlive?: boolean keepAliveInitialDelay?: number noDelay?: boolean socketTimeoutMS?: number cancellationToken?: CancellationToken metadata: ClientMetadata } /* Excluded from this release type: ConnectionPool */ /** * An event published when a connection pool is cleared * @public * @category Event */ export declare class ConnectionPoolClearedEvent extends ConnectionPoolMonitoringEvent { /* Excluded from this release type: serviceId */ interruptInUseConnections?: boolean /* Excluded from this release type: __constructor */ } /** * An event published when a connection pool is closed * @public * @category Event */ export declare class ConnectionPoolClosedEvent extends ConnectionPoolMonitoringEvent { /* Excluded from this release type: __constructor */ } /** * An event published when a connection pool is created * @public * @category Event */ export declare class ConnectionPoolCreatedEvent extends ConnectionPoolMonitoringEvent { /** The options used to create this connection pool */ options?: ConnectionPoolOptions /* Excluded from this release type: __constructor */ } /** @public */ export declare type ConnectionPoolEvents = { connectionPoolCreated(event: ConnectionPoolCreatedEvent): void connectionPoolReady(event: ConnectionPoolReadyEvent): void connectionPoolClosed(event: ConnectionPoolClosedEvent): void connectionPoolCleared(event: ConnectionPoolClearedEvent): void connectionCreated(event: ConnectionCreatedEvent): void connectionReady(event: ConnectionReadyEvent): void connectionClosed(event: ConnectionClosedEvent): void connectionCheckOutStarted(event: ConnectionCheckOutStartedEvent): void connectionCheckOutFailed(event: ConnectionCheckOutFailedEvent): void connectionCheckedOut(event: ConnectionCheckedOutEvent): void connectionCheckedIn(event: ConnectionCheckedInEvent): void } & Omit<ConnectionEvents, "close" | "message"> /* Excluded from this release type: ConnectionPoolMetrics */ /** * The base export class for all monitoring events published from the connection pool * @public * @category Event */ export declare class ConnectionPoolMonitoringEvent { /** A timestamp when the event was created */ time: Date /** The address (host/port pair) of the pool */ address: string /* Excluded from this release type: __constructor */ } /** @public */ export declare interface ConnectionPoolOptions extends Omit<ConnectionOptions, "id" | "generation"> { /** The maximum number of connections that may be associated with a pool at a given time. This includes in use and available connections. */ maxPoolSize: number /** The minimum number of connections that MUST exist at any moment in a single connection pool. */ minPoolSize: number /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ maxConnecting: number /** The maximum amount of time a connection should remain idle in the connection pool before being marked idle. */ maxIdleTimeMS: number /** The maximum amount of time operation execution should wait for a connection to become available. The default is 0 which means there is no limit. */ waitQueueTimeoutMS: number /** If we are in load balancer mode. */ loadBalanced: boolean /* Excluded from this release type: minPoolSizeCheckFrequencyMS */ } /** * An event published when a connection pool is ready * @public * @category Event */ export declare class ConnectionPoolReadyEvent extends ConnectionPoolMonitoringEvent { /* Excluded from this release type: __constructor */ } /** * An event published when a connection is ready for use * @public * @category Event */ export declare class ConnectionReadyEvent extends ConnectionPoolMonitoringEvent { /** The id of the connection */ connectionId: number | "<monitor>" /* Excluded from this release type: __constructor */ } /** @public */ export declare interface ConnectOptions { readPreference?: ReadPreference } /** @public */ export declare interface CountDocumentsOptions extends AggregateOptions { /** The number of documents to skip. */ skip?: number /** The maximum amounts to count before aborting. */ limit?: number } /** @public */ export declare interface CountOptions extends CommandOperationOptions { /** The number of documents to skip. */ skip?: number /** The maximum amounts to count before aborting. */ limit?: number /** Number of milliseconds to wait before aborting the query. */ maxTimeMS?: number /** An index name hint for the query. */ hint?: string | Document } /** @public */ export declare interface CreateCollectionOptions extends CommandOperationOptions { /** Returns an error if the collection does not exist */ strict?: boolean /** Create a capped collection */ capped?: boolean /** @deprecated Create an index on the _id field of the document. This option is deprecated in MongoDB 3.2+ and will be removed once no longer supported by the server. */ autoIndexId?: boolean /** The size of the capped collection in bytes */ size?: number /** The maximum number of documents in the capped collection */ max?: number /** Available for the MMAPv1 storage engine only to set the usePowerOf2Sizes and the noPadding flag */ flags?: number /** Allows users to specify configuration to the storage engine on a per-collection basis when creating a collection */ storageEngine?: Document /** Allows users to specify validation rules or expressions for the collection. For more information, see Document Validation */ validator?: Document /** Determines how strictly MongoDB applies the validation rules to existing documents during an update */ validationLevel?: string /** Determines whether to error on invalid documents or just warn about the violations but allow invalid documents to be inserted */ validationAction?: string /** Allows users to specify a default configuration for indexes when creating a collection */ indexOptionDefaults?: Document /** The name of the source collection or view from which to create the view. The name is not the full namespace of the collection or view (i.e., does not include the database name and implies the same database as the view to create) */ viewOn?: string /** An array that consists of the aggregation pipeline stage. Creates the view by applying the specified pipeline to the viewOn collection or view */ pipeline?: Document[] /** A primary key factory function for generation of custom _id keys. */ pkFactory?: PkFactory /** A document specifying configuration options for timeseries collections. */ timeseries?: TimeSeriesCollectionOptions /** A document specifying configuration options for clustered collections. For MongoDB 5.3 and above. */ clusteredIndex?: ClusteredCollectionOptions /** The number of seconds after which a document in a timeseries or clustered collection expires. */ expireAfterSeconds?: number /** @experimental */ encryptedFields?: Document /** * If set, enables pre-update and post-update document events to be included for any * change streams that listen on this collection. */ changeStreamPreAndPostImages?: { enabled: boolean } } /** @public */ export declare interface CreateIndexesOptions extends Omit<CommandOperationOptions, "writeConcern"> { /** Creates the index in the background, yielding whenever possible. */ background?: boolean /** Creates an unique index. */ unique?: boolean /** Override the autogenerated index name (useful if the resulting name is larger than 128 bytes) */ name?: string /** Creates a partial index based on the given filter object (MongoDB 3.2 or higher) */ partialFilterExpression?: Document /** Creates a sparse index. */ sparse?: boolean /** Allows you to expire data on indexes applied to a data (MongoDB 2.2 or higher) */ expireAfterSeconds?: number /** Allows users to configure the storage engine on a per-index basis when creating an index. (MongoDB 3.0 or higher) */ storageEngine?: Document /** (MongoDB 4.4. or higher) Specifies how many data-bearing members of a replica set, including the primary, must complete the index builds successfully before the primary marks the indexes as ready. This option accepts the same values for the "w" field in a write concern plus "votingMembers", which indicates all voting data-bearing nodes. */ commitQuorum?: number | string /** Specifies the index version number, either 0 or 1. */ version?: number weights?: Document default_language?: string language_override?: string textIndexVersion?: number "2dsphereIndexVersion"?: number bits?: number /** For geospatial indexes set the lower bound for the co-ordinates. */ min?: number /** For geospatial indexes set the high bound for the co-ordinates. */ max?: number bucketSize?: number wildcardProjection?: Document /** Specifies that the index should exist on the target collection but should not be used by the query planner when executing operations. (MongoDB 4.4 or higher) */ hidden?: boolean } /** @public */ export declare const CURSOR_FLAGS: readonly [ "tailable", "oplogReplay", "noCursorTimeout", "awaitData", "exhaust", "partial", ] /** @public */ export declare type CursorFlag = (typeof CURSOR_FLAGS)[number] /** @public */ export declare interface CursorStreamOptions { /** A transformation method applied to each document emitted by the stream */ transform?(this: void, doc: Document): Document } /** * The **Db** class is a class that represents a MongoDB Database. * @public * * @example * ```ts * import { MongoClient } from 'mongodb'; * * interface Pet { * name: string; * kind: 'dog' | 'cat' | 'fish'; * } * * const client = new MongoClient('mongodb://localhost:27017'); * const db = client.db(); * * // Create a collection that validates our union * await db.createCollection<Pet>('pets', { * validator: { $expr: { $in: ['$kind', ['dog', 'cat', 'fish']] } } * }) * ``` */ export declare class Db { /* Excluded from this release type: s */ static SYSTEM_NAMESPACE_COLLECTION: string static SYSTEM_INDEX_COLLECTION: string static SYSTEM_PROFILE_COLLECTION: string static SYSTEM_USER_COLLECTION: string static SYSTEM_COMMAND_COLLECTION: string static SYSTEM_JS_COLLECTION: string /** * Creates a new Db instance * * @param client - The MongoClient for the database. * @param databaseName - The name of the database this instance represents. * @param options - Optional settings for Db construction */ constructor(client: MongoClient, databaseName: string, options?: DbOptions) get databaseName(): string get options(): DbOptions | undefined /** * Check if a secondary can be used (because the read preference is *not* set to primary) */ get secondaryOk(): boolean get readConcern(): ReadConcern | undefined /** * The current readPreference of the Db. If not explicitly defined for * this Db, will be inherited from the parent MongoClient */ get readPreference(): ReadPreference get bsonOptions(): BSONSerializeOptions get writeConcern(): WriteConcern | undefined get namespace(): string /** * Create a new collection on a server with the specified options. Use this to create capped collections. * More information about command options available at path_to_url * * @param name - The name of the collection to create * @param options - Optional settings for the command */ createCollection<TSchema extends Document = Document>( name: string, options?: CreateCollectionOptions, ): Promise<Collection<TSchema>> /** * Execute a command * * @remarks * This command does not inherit options from the MongoClient. * * @param command - The command to run * @param options - Optional settings for the command */ command(command: Document, options?: RunCommandOptions): Promise<Document> /** * Execute an aggregation framework pipeline against the database, needs MongoDB \>= 3.6 * * @param pipeline - An array of aggregation stages to be executed * @param options - Optional settings for the command */ aggregate<T extends Document = Document>( pipeline?: Document[], options?: AggregateOptions, ): AggregationCursor<T> /** Return the Admin db instance */ admin(): Admin /** * Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly. * * @param name - the collection name we wish to access. * @returns return the new Collection instance */ collection<TSchema extends Document = Document>( name: string, options?: CollectionOptions, ): Collection<TSchema> /** * Get all the db statistics. * * @param options - Optional settings for the command */ stats(options?: DbStatsOptions): Promise<Document> /** * List all collections of this database with optional filter * * @param filter - Query to filter collections by * @param options - Optional settings for the command */ listCollections( filter: Document, options: Exclude<ListCollectionsOptions, "nameOnly"> & { nameOnly: true }, ): ListCollectionsCursor<Pick<CollectionInfo, "name" | "type">> listCollections( filter: Document, options: Exclude<ListCollectionsOptions, "nameOnly"> & { nameOnly: false }, ): ListCollectionsCursor<CollectionInfo> listCollections< T extends Pick<CollectionInfo, "name" | "type"> | CollectionInfo = | Pick<CollectionInfo, "name" | "type"> | CollectionInfo, >( filter?: Document, options?: ListCollectionsOptions, ): ListCollectionsCursor<T> /** * Rename a collection. * * @remarks * This operation does not inherit options from the MongoClient. * * @param fromCollection - Name of current collection to rename * @param toCollection - New name of of the collection * @param options - Optional settings for the command */ renameCollection<TSchema extends Document = Document>( fromCollection: string, toCollection: string, options?: RenameOptions, ): Promise<Collection<TSchema>> /** * Drop a collection from the database, removing it permanently. New accesses will create a new collection. * * @param name - Name of collection to drop * @param options - Optional settings for the command */ dropCollection( name: string, options?: DropCollectionOptions, ): Promise<boolean> /** * Drop a database, removing it permanently from the server. * * @param options - Optional settings for the command */ dropDatabase(options?: DropDatabaseOptions): Promise<boolean> /** * Fetch all collections for the current db. * * @param options - Optional settings for the command */ collections(options?: ListCollectionsOptions): Promise<Collection[]> /** * Creates an index on the db and collection. * * @param name - Name of the collection to create the index on. * @param indexSpec - Specify the field to index, or an index specification * @param options - Optional settings for the command */ createIndex( name: string, indexSpec: IndexSpecification, options?: CreateIndexesOptions, ): Promise<string> /** * Add a user to the database * * @param username - The username for the new user * @param passwordOrOptions - An optional password for the new user, or the options for the command * @param options - Optional settings for the command */ addUser( username: string, passwordOrOptions?: string | AddUserOptions, options?: AddUserOptions, ): Promise<Document> /** * Remove a user from a database * * @param username - The username to remove * @param options - Optional settings for the command */ removeUser(username: string, options?: RemoveUserOptions): Promise<boolean> /** * Set the current profiling level of MongoDB * * @param level - The new profiling level (off, slow_only, all). * @param options - Optional settings for the command */ setProfilingLevel( level: ProfilingLevel, options?: SetProfilingLevelOptions, ): Promise<ProfilingLevel> /** * Retrieve the current profiling Level for MongoDB * * @param options - Optional settings for the command */ profilingLevel(options?: ProfilingLevelOptions): Promise<string> /** * Retrieves this collections index info. * * @param name - The name of the collection. * @param options - Optional settings for the command */ indexInformation( name: string, options?: IndexInformationOptions, ): Promise<Document> /** * Create a new Change Stream, watching for new changes (insertions, updates, * replacements, deletions, and invalidations) in this database. Will ignore all * changes to system collections. * * @remarks * watch() accepts two generic arguments for distinct use cases: * - The first is to provide the schema that may be defined for all the collections within this database * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument * * @param pipeline - An array of {@link path_to_url|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. * @param options - Optional settings for the command * @typeParam TSchema - Type of the data being detected by the change stream * @typeParam TChange - Type of the whole change stream document emitted */ watch< TSchema extends Document = Document, TChange extends Document = ChangeStreamDocument<TSchema>, >( pipeline?: Document[], options?: ChangeStreamOptions, ): ChangeStream<TSchema, TChange> } /* Excluded from this release type: DB_AGGREGATE_COLLECTION */ /** @public */ export declare interface DbOptions extends BSONSerializeOptions, WriteConcernOptions { /** If the database authentication is dependent on another databaseName. */ authSource?: string /** Force server to assign _id values instead of driver. */ forceServerObjectId?: boolean /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ readPreference?: ReadPreferenceLike /** A primary key factory object for generation of custom _id keys. */ pkFactory?: PkFactory /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ readConcern?: ReadConcern /** Should retry failed writes */ retryWrites?: boolean } /* Excluded from this release type: DbPrivate */ export { DBRef } /** @public */ export declare interface DbStatsOptions extends CommandOperationOptions { /** Divide the returned sizes by scale value. */ scale?: number } export { Decimal128 } /** @public */ export declare interface DeleteManyModel<TSchema extends Document = Document> { /** The filter to limit the deleted documents. */ filter: Filter<TSchema> /** Specifies a collation. */ collation?: CollationOptions /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ hint?: Hint } /** @public */ export declare interface DeleteOneModel<TSchema extends Document = Document> { /** The filter to limit the deleted documents. */ filter: Filter<TSchema> /** Specifies a collation. */ collation?: CollationOptions /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ hint?: Hint } /** @public */ export declare interface DeleteOptions extends CommandOperationOptions, WriteConcernOptions { /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ ordered?: boolean /** Specifies the collation to use for the operation */ collation?: CollationOptions /** Specify that the update query should only consider plans using the hinted index */ hint?: string | Document /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** @public */ export declare interface DeleteResult { /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined. */ acknowledged: boolean /** The number of documents that were deleted */ deletedCount: number } /** @public */ export declare interface DeleteStatement { /** The query that matches documents to delete. */ q: Document /** The number of matching documents to delete. */ limit: number /** Specifies the collation to use for the operation. */ collation?: CollationOptions /** A document or string that specifies the index to use to support the query predicate. */ hint?: Hint } export { deserialize } /* Excluded from this release type: DestroyOptions */ /** @public */ export declare type DistinctOptions = CommandOperationOptions export { Document } export { Double } /** @public */ export declare interface DriverInfo { name?: string version?: string platform?: string } /** @public */ export declare interface DropCollectionOptions extends CommandOperationOptions { /** @experimental */ encryptedFields?: Document } /** @public */ export declare type DropDatabaseOptions = CommandOperationOptions /** @public */ export declare type DropIndexesOptions = CommandOperationOptions /* Excluded from this release type: Encrypter */ /* Excluded from this release type: EncrypterOptions */ /** @public */ export declare interface EndSessionOptions { /* Excluded from this release type: error */ force?: boolean forceClear?: boolean } /** TypeScript Omit (Exclude to be specific) does not work for objects with an "any" indexed type, and breaks discriminated unions @public */ export declare type EnhancedOmit<TRecordOrUnion, KeyUnion> = string extends keyof TRecordOrUnion ? TRecordOrUnion : TRecordOrUnion extends any ? Pick<TRecordOrUnion, Exclude<keyof TRecordOrUnion, KeyUnion>> : never /** @public */ export declare interface ErrorDescription extends Document { message?: string errmsg?: string $err?: string errorLabels?: string[] errInfo?: Document } /** @public */ export declare interface EstimatedDocumentCountOptions extends CommandOperationOptions { /** * The maximum amount of time to allow the operation to run. * * This option is sent only if the caller explicitly provides a value. The default is to not send a value. */ maxTimeMS?: number } /** @public */ export declare interface EvalOptions extends CommandOperationOptions { nolock?: boolean } /** @public */ export declare type EventEmitterWithState = { /* Excluded from this release type: stateChanged */ } /** * Event description type * @public */ export declare type EventsDescription = Record<string, GenericListener> /* Excluded from this release type: ExecutionResult */ /* Excluded from this release type: Explain */ /** @public */ export declare interface ExplainOptions { /** Specifies the verbosity mode for the explain output. */ explain?: ExplainVerbosityLike } /** @public */ export declare const ExplainVerbosity: Readonly<{ readonly queryPlanner: "queryPlanner" readonly queryPlannerExtended: "queryPlannerExtended" readonly executionStats: "executionStats" readonly allPlansExecution: "allPlansExecution" }> /** @public */ export declare type ExplainVerbosity = string /** * For backwards compatibility, true is interpreted as "allPlansExecution" * and false as "queryPlanner". Prior to server version 3.6, aggregate() * ignores the verbosity parameter and executes in "queryPlanner". * @public */ export declare type ExplainVerbosityLike = ExplainVerbosity | boolean /** A MongoDB filter can be some portion of the schema or a set of operators @public */ export declare type Filter<TSchema> = { [P in keyof WithId<TSchema>]?: Condition<WithId<TSchema>[P]> } & RootFilterOperators<WithId<TSchema>> /** @public */ export declare type FilterOperations<T> = T extends Record<string, any> ? { [key in keyof T]?: FilterOperators<T[key]> } : FilterOperators<T> /** @public */ export declare interface FilterOperators<TValue> extends NonObjectIdLikeDocument { $eq?: TValue $gt?: TValue $gte?: TValue $in?: ReadonlyArray<TValue> $lt?: TValue $lte?: TValue $ne?: TValue $nin?: ReadonlyArray<TValue> $not?: TValue extends string ? FilterOperators<TValue> | RegExp : FilterOperators<TValue> /** * When `true`, `$exists` matches the documents that contain the field, * including documents where the field value is null. */ $exists?: boolean $type?: BSONType | BSONTypeAlias $expr?: Record<string, any> $jsonSchema?: Record<string, any> $mod?: TValue extends number ? [number, number] : never $regex?: TValue extends string ? RegExp | BSONRegExp | string : never $options?: TValue extends string ? string : never $geoIntersects?: { $geometry: Document } $geoWithin?: Document $near?: Document $nearSphere?: Document $maxDistance?: number $all?: ReadonlyArray<any> $elemMatch?: Document $size?: TValue extends ReadonlyArray<any> ? number : never $bitsAllClear?: BitwiseFilter $bitsAllSet?: BitwiseFilter $bitsAnyClear?: BitwiseFilter $bitsAnySet?: BitwiseFilter $rand?: Record<string, never> } /** @public */ export declare class FindCursor<TSchema = any> extends AbstractCursor<TSchema> { /* Excluded from this release type: [kFilter] */ /* Excluded from this release type: [kNumReturned] */ /* Excluded from this release type: [kBuiltOptions] */ /* Excluded from this release type: __constructor */ clone(): FindCursor<TSchema> map<T>(transform: (doc: TSchema) => T): FindCursor<T> /* Excluded from this release type: _initialize */ /* Excluded from this release type: _getMore */ /** * Get the count of documents for this cursor * @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead */ count(options?: CountOptions): Promise<number> /** Execute the explain for the cursor */ explain(verbosity?: ExplainVerbosityLike): Promise<Document> /** Set the cursor query */ filter(filter: Document): this /** * Set the cursor hint * * @param hint - If specified, then the query system will only consider plans using the hinted index. */ hint(hint: Hint): this /** * Set the cursor min * * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order. */ min(min: Document): this /** * Set the cursor max * * @param max - Specify a $max value to specify the exclusive upper bound for a specific index in order to constrain the results of find(). The $max specifies the upper bound for all keys of a specific index in order. */ max(max: Document): this /** * Set the cursor returnKey. * If set to true, modifies the cursor to only return the index field or fields for the results of the query, rather than documents. * If set to true and the query does not use an index to perform the read operation, the returned documents will not contain any fields. * * @param value - the returnKey value. */ returnKey(value: boolean): this /** * Modifies the output of a query by adding a field $recordId to matching documents. $recordId is the internal key which uniquely identifies a document in a collection. * * @param value - The $showDiskLoc option has now been deprecated and replaced with the showRecordId field. $showDiskLoc will still be accepted for OP_QUERY stye find. */ showRecordId(value: boolean): this /** * Add a query modifier to the cursor query * * @param name - The query modifier (must start with $, such as $orderby etc) * @param value - The modifier value. */ addQueryModifier( name: string, value: string | boolean | number | Document, ): this /** * Add a comment to the cursor query allowing for tracking the comment in the log. * * @param value - The comment attached to this query. */ comment(value: string): this /** * Set a maxAwaitTimeMS on a tailing cursor query to allow to customize the timeout value for the option awaitData (Only supported on MongoDB 3.2 or higher, ignored otherwise) * * @param value - Number of milliseconds to wait before aborting the tailed query. */ maxAwaitTimeMS(value: number): this /** * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) * * @param value - Number of milliseconds to wait before aborting the query. */ maxTimeMS(value: number): this /** * Add a project stage to the aggregation pipeline * * @remarks * In order to strictly type this function you must provide an interface * that represents the effect of your projection on the result documents. * * By default chaining a projection to your cursor changes the returned type to the generic * {@link Document} type. * You should specify a parameterized type to have assertions on your final results. * * @example * ```typescript * // Best way * const docs: FindCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); * // Flexible way * const docs: FindCursor<Document> = cursor.project({ _id: 0, a: true }); * ``` * * @remarks * * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, * it **does not** return a new instance of a cursor. This means when calling project, * you should always assign the result to a new variable in order to get a correctly typed cursor variable. * Take note of the following example: * * @example * ```typescript * const cursor: FindCursor<{ a: number; b: string }> = coll.find(); * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); * * // or always use chaining and save the final cursor * * const cursor = coll.find().project<{ a: string }>({ * _id: 0, * a: { $convert: { input: '$a', to: 'string' } * }}); * ``` */ project<T extends Document = Document>(value: Document): FindCursor<T> /** * Sets the sort order of the cursor query. * * @param sort - The key or keys set for the sort. * @param direction - The direction of the sorting (1 or -1). */ sort(sort: Sort | string, direction?: SortDirection): this /** * Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) * * @remarks * {@link path_to_url#find-cmd-allowdiskuse | find command allowDiskUse documentation} */ allowDiskUse(allow?: boolean): this /** * Set the collation options for the cursor. * * @param value - The cursor collation options (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). */ collation(value: CollationOptions): this /** * Set the limit for the cursor. * * @param value - The limit for the cursor query. */ limit(value: number): this /** * Set the skip for the cursor. * * @param value - The skip for the cursor query. */ skip(value: number): this } /** @public */ export declare interface FindOneAndDeleteOptions extends CommandOperationOptions { /** An optional hint for query optimization. See the {@link path_to_url#update-command-hint|update command} reference for more information.*/ hint?: Document /** Limits the fields to return for all matching documents. */ projection?: Document /** Determines which document the operation modifies if the query selects multiple documents. */ sort?: Sort /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** @public */ export declare interface FindOneAndReplaceOptions extends CommandOperationOptions { /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ bypassDocumentValidation?: boolean /** An optional hint for query optimization. See the {@link path_to_url#update-command-hint|update command} reference for more information.*/ hint?: Document /** Limits the fields to return for all matching documents. */ projection?: Document /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ returnDocument?: ReturnDocument /** Determines which document the operation modifies if the query selects multiple documents. */ sort?: Sort /** Upsert the document if it does not exist. */ upsert?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** @public */ export declare interface FindOneAndUpdateOptions extends CommandOperationOptions { /** Optional list of array filters referenced in filtered positional operators */ arrayFilters?: Document[] /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ bypassDocumentValidation?: boolean /** An optional hint for query optimization. See the {@link path_to_url#update-command-hint|update command} reference for more information.*/ hint?: Document /** Limits the fields to return for all matching documents. */ projection?: Document /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ returnDocument?: ReturnDocument /** Determines which document the operation modifies if the query selects multiple documents. */ sort?: Sort /** Upsert the document if it does not exist. */ upsert?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** * A builder object that is returned from {@link BulkOperationBase#find}. * Is used to build a write operation that involves a query filter. * * @public */ export declare class FindOperators { bulkOperation: BulkOperationBase /* Excluded from this release type: __constructor */ /** Add a multiple update operation to the bulk operation */ update(updateDocument: Document | Document[]): BulkOperationBase /** Add a single update operation to the bulk operation */ updateOne(updateDocument: Document | Document[]): BulkOperationBase /** Add a replace one operation to the bulk operation */ replaceOne(replacement: Document): BulkOperationBase /** Add a delete one operation to the bulk operation */ deleteOne(): BulkOperationBase /** Add a delete many operation to the bulk operation */ delete(): BulkOperationBase /** Upsert modifier for update bulk operation, noting that this operation is an upsert. */ upsert(): this /** Specifies the collation for the query condition. */ collation(collation: CollationOptions): this /** Specifies arrayFilters for UpdateOne or UpdateMany bulk operations. */ arrayFilters(arrayFilters: Document[]): this /** Specifies hint for the bulk operation. */ hint(hint: Hint): this } /** * @public * @typeParam TSchema - Unused schema definition, deprecated usage, only specify `FindOptions` with no generic */ export declare interface FindOptions<TSchema extends Document = Document> extends Omit<CommandOperationOptions, "writeConcern"> { /** Sets the limit of documents returned in the query. */ limit?: number /** Set to sort the documents coming back from the query. Array of indexes, `[['a', 1]]` etc. */ sort?: Sort /** The fields to return in the query. Object of fields to either include or exclude (one of, not both), `{'a':1, 'b': 1}` **or** `{'a': 0, 'b': 0}` */ projection?: Document /** Set to skip N documents ahead in your query (useful for pagination). */ skip?: number /** Tell the query to use specific indexes in the query. Object of indexes to use, `{'_id':1}` */ hint?: Hint /** Specify if the cursor can timeout. */ timeout?: boolean /** Specify if the cursor is tailable. */ tailable?: boolean /** Specify if the cursor is a tailable-await cursor. Requires `tailable` to be true */ awaitData?: boolean /** Set the batchSize for the getMoreCommand when iterating over the query results. */ batchSize?: number /** If true, returns only the index keys in the resulting documents. */ returnKey?: boolean /** The inclusive lower bound for a specific index */ min?: Document /** The exclusive upper bound for a specific index */ max?: Document /** Number of milliseconds to wait before aborting the query. */ maxTimeMS?: number /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. Requires `tailable` and `awaitData` to be true */ maxAwaitTimeMS?: number /** The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. Set this option to prevent that. */ noCursorTimeout?: boolean /** Specify collation (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). */ collation?: CollationOptions /** Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) */ allowDiskUse?: boolean /** Determines whether to close the cursor after the first batch. Defaults to false. */ singleBatch?: boolean /** For queries against a sharded collection, allows the command (or subsequent getMore commands) to return partial results, rather than an error, if one or more queried shards are unavailable. */ allowPartialResults?: boolean /** Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. */ showRecordId?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document /** * Option to enable an optimized code path for queries looking for a particular range of `ts` values in the oplog. Requires `tailable` to be true. * @deprecated Starting from MongoDB 4.4 this flag is not needed and will be ignored. */ oplogReplay?: boolean } /** @public */ export declare type Flatten<Type> = Type extends ReadonlyArray<infer Item> ? Item : Type /** @public */ export declare type GenericListener = (...args: any[]) => void /** * Constructor for a streaming GridFS interface * @public */ export declare class GridFSBucket extends TypedEventEmitter<GridFSBucketEvents> { /* Excluded from this release type: s */ /** * When the first call to openUploadStream is made, the upload stream will * check to see if it needs to create the proper indexes on the chunks and * files collections. This event is fired either when 1) it determines that * no index creation is necessary, 2) when it successfully creates the * necessary indexes. * @event */ static readonly INDEX: "index" constructor(db: Db, options?: GridFSBucketOptions) /** * Returns a writable stream (GridFSBucketWriteStream) for writing * buffers to GridFS. The stream's 'id' property contains the resulting * file's id. * * @param filename - The value of the 'filename' key in the files doc * @param options - Optional settings. */ openUploadStream( filename: string, options?: GridFSBucketWriteStreamOptions, ): GridFSBucketWriteStream /** * Returns a writable stream (GridFSBucketWriteStream) for writing * buffers to GridFS for a custom file id. The stream's 'id' property contains the resulting * file's id. */ openUploadStreamWithId( id: ObjectId, filename: string, options?: GridFSBucketWriteStreamOptions, ): GridFSBucketWriteStream /** Returns a readable stream (GridFSBucketReadStream) for streaming file data from GridFS. */ openDownloadStream( id: ObjectId, options?: GridFSBucketReadStreamOptions, ): GridFSBucketReadStream /** * Deletes a file with the given id * * @param id - The id of the file doc */ delete(id: ObjectId): Promise<void> /** Convenience wrapper around find on the files collection */ find( filter?: Filter<GridFSFile>, options?: FindOptions, ): FindCursor<GridFSFile> /** * Returns a readable stream (GridFSBucketReadStream) for streaming the * file with the given name from GridFS. If there are multiple files with * the same name, this will stream the most recent file with the given name * (as determined by the `uploadDate` field). You can set the `revision` * option to change this behavior. */ openDownloadStreamByName( filename: string, options?: GridFSBucketReadStreamOptionsWithRevision, ): GridFSBucketReadStream /** * Renames the file with the given _id to the given string * * @param id - the id of the file to rename * @param filename - new name for the file */ rename(id: ObjectId, filename: string): Promise<void> /** Removes this bucket's files collection, followed by its chunks collection. */ drop(): Promise<void> } /** @public */ export declare type GridFSBucketEvents = { index(): void } /** @public */ export declare interface GridFSBucketOptions extends WriteConcernOptions { /** The 'files' and 'chunks' collections will be prefixed with the bucket name followed by a dot. */ bucketName?: string /** Number of bytes stored in each chunk. Defaults to 255KB */ chunkSizeBytes?: number /** Read preference to be passed to read operations */ readPreference?: ReadPreference } /* Excluded from this release type: GridFSBucketPrivate */ /** * A readable stream that enables you to read buffers from GridFS. * * Do not instantiate this class directly. Use `openDownloadStream()` instead. * @public */ export declare class GridFSBucketReadStream extends Readable implements NodeJS.ReadableStream { /* Excluded from this release type: s */ /** * An error occurred * @event */ static readonly ERROR: "error" /** * Fires when the stream loaded the file document corresponding to the provided id. * @event */ static readonly FILE: "file" /** * Emitted when a chunk of data is available to be consumed. * @event */ static readonly DATA: "data" /** * Fired when the stream is exhausted (no more data events). * @event */ static readonly END: "end" /** * Fired when the stream is exhausted and the underlying cursor is killed * @event */ static readonly CLOSE: "close" /* Excluded from this release type: __constructor */ /* Excluded from this release type: _read */ /** * Sets the 0-based offset in bytes to start streaming from. Throws * an error if this stream has entered flowing mode * (e.g. if you've already called `on('data')`) * * @param start - 0-based offset in bytes to start streaming from */ start(start?: number): this /** * Sets the 0-based offset in bytes to start streaming from. Throws * an error if this stream has entered flowing mode * (e.g. if you've already called `on('data')`) * * @param end - Offset in bytes to stop reading at */ end(end?: number): this /** * Marks this stream as aborted (will never push another `data` event) * and kills the underlying cursor. Will emit the 'end' event, and then * the 'close' event once the cursor is successfully killed. */ abort(): Promise<void> } /** @public */ export declare interface GridFSBucketReadStreamOptions { sort?: Sort skip?: number /** * 0-indexed non-negative byte offset from the beginning of the file */ start?: number /** * 0-indexed non-negative byte offset to the end of the file contents * to be returned by the stream. `end` is non-inclusive */ end?: number } /** @public */ export declare interface GridFSBucketReadStreamOptionsWithRevision extends GridFSBucketReadStreamOptions { /** The revision number relative to the oldest file with the given filename. 0 * gets you the oldest file, 1 gets you the 2nd oldest, -1 gets you the * newest. */ revision?: number } /* Excluded from this release type: GridFSBucketReadStreamPrivate */ /** * A writable stream that enables you to write buffers to GridFS. * * Do not instantiate this class directly. Use `openUploadStream()` instead. * @public */ export declare class GridFSBucketWriteStream { /* `implements NodeJS.WritableStream` Has to be removed, otherwise tsc places a `/// <reference types="vinyl-fs" />` in the output file, because vinyl-fs messed with NodeJS.WritableStream in the global scope: path_to_url#L9 */ bucket: GridFSBucket chunks: Collection<GridFSChunk> filename: string files: Collection<GridFSFile> options: GridFSBucketWriteStreamOptions done: boolean id: ObjectId chunkSizeBytes: number bufToStore: Buffer length: number n: number pos: number state: { streamEnd: boolean outstandingRequests: number errored: boolean aborted: boolean } writeConcern?: WriteConcern /** @event */ static readonly CLOSE = "close" /** @event */ static readonly ERROR = "error" /** * `end()` was called and the write stream successfully wrote the file metadata and all the chunks to MongoDB. * @event */ static readonly FINISH = "finish" /* Excluded from this release type: __constructor */ /** * Write a buffer to the stream. * * @param chunk - Buffer to write * @param encodingOrCallback - Optional encoding for the buffer * @param callback - Function to call when the chunk was added to the buffer, or if the entire chunk was persisted to MongoDB if this chunk caused a flush. * @returns False if this write required flushing a chunk to MongoDB. True otherwise. */ write(chunk: Buffer | string): boolean write(chunk: Buffer | string, callback: Callback<void>): boolean write(chunk: Buffer | string, encoding: BufferEncoding | undefined): boolean write( chunk: Buffer | string, encoding: BufferEncoding | undefined, callback: Callback<void>, ): boolean /** * Places this write stream into an aborted state (all future writes fail) * and deletes all chunks that have already been written. */ abort(): Promise<void> /** * Tells the stream that no more data will be coming in. The stream will * persist the remaining data to MongoDB, write the files document, and * then emit a 'finish' event. * * @param chunk - Buffer to write * @param encoding - Optional encoding for the buffer * @param callback - Function to call when all files and chunks have been persisted to MongoDB */ end(): this end(chunk: Buffer): this end(callback: Callback<GridFSFile | void>): this end(chunk: Buffer, callback: Callback<GridFSFile | void>): this end(chunk: Buffer, encoding: BufferEncoding): this end( chunk: Buffer, encoding: BufferEncoding | undefined, callback: Callback<GridFSFile | void>, ): this } /** @public */ export declare interface GridFSBucketWriteStreamOptions extends WriteConcernOptions { /** Overwrite this bucket's chunkSizeBytes for this file */ chunkSizeBytes?: number /** Custom file id for the GridFS file. */ id?: ObjectId /** Object to store in the file document's `metadata` field */ metadata?: Document /** String to store in the file document's `contentType` field */ contentType?: string /** Array of strings to store in the file document's `aliases` field */ aliases?: string[] } /** @public */ export declare interface GridFSChunk { _id: ObjectId files_id: ObjectId n: number data: Buffer | Uint8Array } /** @public */ export declare interface GridFSFile { _id: ObjectId length: number chunkSize: number filename: string contentType?: string aliases?: string[] metadata?: Document uploadDate: Date } /** @public */ export declare const GSSAPICanonicalizationValue: Readonly<{ readonly on: true readonly off: false readonly none: "none" readonly forward: "forward" readonly forwardAndReverse: "forwardAndReverse" }> /** @public */ export declare type GSSAPICanonicalizationValue = (typeof GSSAPICanonicalizationValue)[keyof typeof GSSAPICanonicalizationValue] /** @public */ export declare interface HedgeOptions { /** Explicitly enable or disable hedged reads. */ enabled?: boolean } /** @public */ export declare type Hint = string | Document /** @public */ export declare class HostAddress { host: string | undefined port: number | undefined socketPath: string | undefined isIPv6: boolean constructor(hostString: string) inspect(): string toString(): string static fromString(this: void, s: string): HostAddress static fromHostPort(host: string, port: number): HostAddress static fromSrvRecord({ name, port }: SrvRecord): HostAddress } /** @public */ export declare interface IndexDescription extends Pick< CreateIndexesOptions, | "background" | "unique" | "partialFilterExpression" | "sparse" | "hidden" | "expireAfterSeconds" | "storageEngine" | "version" | "weights" | "default_language" | "language_override" | "textIndexVersion" | "2dsphereIndexVersion" | "bits" | "min" | "max" | "bucketSize" | "wildcardProjection" > { collation?: CollationOptions name?: string key: | { [key: string]: IndexDirection } | Map<string, IndexDirection> } /** @public */ export declare type IndexDirection = | -1 | 1 | "2d" | "2dsphere" | "text" | "geoHaystack" | "hashed" | number /** @public */ export declare interface IndexInformationOptions { full?: boolean readPreference?: ReadPreference session?: ClientSession } /** @public */ export declare type IndexSpecification = OneOrMore< | string | [string, IndexDirection] | { [key: string]: IndexDirection } | Map<string, IndexDirection> > /** Given an object shaped type, return the type of the _id field or default to ObjectId @public */ export declare type InferIdType<TSchema> = TSchema extends { _id: infer IdType } ? Record<any, never> extends IdType ? never : IdType : TSchema extends { _id?: infer IdType } ? unknown extends IdType ? ObjectId : IdType : ObjectId /** @public */ export declare interface InsertManyResult<TSchema = Document> { /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ acknowledged: boolean /** The number of inserted documents for this operations */ insertedCount: number /** Map of the index of the inserted document to the id of the inserted document */ insertedIds: { [key: number]: InferIdType<TSchema> } } /** @public */ export declare interface InsertOneModel<TSchema extends Document = Document> { /** The document to insert. */ document: OptionalId<TSchema> } /** @public */ export declare interface InsertOneOptions extends CommandOperationOptions { /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ bypassDocumentValidation?: boolean /** Force server to assign _id values instead of driver. */ forceServerObjectId?: boolean } /** @public */ export declare interface InsertOneResult<TSchema = Document> { /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ acknowledged: boolean /** The identifier that was inserted. If the server generated the identifier, this value will be null as the driver does not have access to that data */ insertedId: InferIdType<TSchema> } export { Int32 } /** @public */ export declare type IntegerType = number | Int32 | Long | bigint /* Excluded from this release type: InternalAbstractCursorOptions */ /** @public */ export declare type IsAny<Type, ResultIfAny, ResultIfNotAny> = true extends false & Type ? ResultIfAny : ResultIfNotAny /** * Helper types for dot-notation filter attributes */ /** @public */ export declare type Join<T extends unknown[], D extends string> = T extends [] ? "" : T extends [string | number] ? `${T[0]}` : T extends [string | number, ...infer R] ? `${T[0]}${D}${Join<R, D>}` : string /* Excluded from this release type: kBeforeHandshake */ /* Excluded from this release type: kBuffer */ /* Excluded from this release type: kBuiltOptions */ /* Excluded from this release type: kCancellationToken */ /* Excluded from this release type: kCancellationToken_2 */ /* Excluded from this release type: kCancelled */ /* Excluded from this release type: kCancelled_2 */ /* Excluded from this release type: kCheckedOut */ /* Excluded from this release type: kClient */ /* Excluded from this release type: kClosed */ /* Excluded from this release type: kClosed_2 */ /* Excluded from this release type: kClusterTime */ /* Excluded from this release type: kConnection */ /* Excluded from this release type: kConnectionCounter */ /* Excluded from this release type: kConnections */ /* Excluded from this release type: kCursorStream */ /* Excluded from this release type: kDelayedTimeoutId */ /* Excluded from this release type: kDescription */ /* Excluded from this release type: kDocuments */ /* Excluded from this release type: kErrorLabels */ /** @public */ export declare type KeysOfAType<TSchema, Type> = { [key in keyof TSchema]: NonNullable<TSchema[key]> extends Type ? key : never }[keyof TSchema] /** @public */ export declare type KeysOfOtherType<TSchema, Type> = { [key in keyof TSchema]: NonNullable<TSchema[key]> extends Type ? never : key }[keyof TSchema] /* Excluded from this release type: kFilter */ /* Excluded from this release type: kGeneration */ /* Excluded from this release type: kGeneration_2 */ /* Excluded from this release type: kHello */ /* Excluded from this release type: kId */ /* Excluded from this release type: kInit */ /* Excluded from this release type: kInitialized */ /* Excluded from this release type: kInternalClient */ /* Excluded from this release type: kKilled */ /* Excluded from this release type: kLastUseTime */ /* Excluded from this release type: kMessageStream */ /* Excluded from this release type: kMetrics */ /* Excluded from this release type: kMinPoolSizeTimer */ /* Excluded from this release type: kMode */ /* Excluded from this release type: kMonitor */ /* Excluded from this release type: kMonitorId */ /* Excluded from this release type: kNamespace */ /* Excluded from this release type: kNumReturned */ /* Excluded from this release type: kOptions */ /* Excluded from this release type: kOptions_2 */ /* Excluded from this release type: kOptions_3 */ /* Excluded from this release type: kPending */ /* Excluded from this release type: kPinnedConnection */ /* Excluded from this release type: kPipeline */ /* Excluded from this release type: kPoolState */ /* Excluded from this release type: kProcessingWaitQueue */ /* Excluded from this release type: kQueue */ /* Excluded from this release type: kRoundTripTime */ /* Excluded from this release type: kRTTPinger */ /* Excluded from this release type: kServer */ /* Excluded from this release type: kServer_2 */ /* Excluded from this release type: kServer_3 */ /* Excluded from this release type: kServerError */ /* Excluded from this release type: kServerSession */ /* Excluded from this release type: kServiceGenerations */ /* Excluded from this release type: kSession */ /* Excluded from this release type: kSession_2 */ /* Excluded from this release type: kSnapshotEnabled */ /* Excluded from this release type: kSnapshotTime */ /* Excluded from this release type: kStream */ /* Excluded from this release type: kTransform */ /* Excluded from this release type: kTxnNumberIncrement */ /* Excluded from this release type: kWaitQueue */ /* Excluded from this release type: kWaitQueue_2 */ /** @public */ export declare const LEGAL_TCP_SOCKET_OPTIONS: readonly [ "family", "hints", "localAddress", "localPort", "lookup", ] /** @public */ export declare const LEGAL_TLS_SOCKET_OPTIONS: readonly [ "ALPNProtocols", "ca", "cert", "checkServerIdentity", "ciphers", "crl", "ecdhCurve", "key", "minDHSize", "passphrase", "pfx", "rejectUnauthorized", "secureContext", "secureProtocol", "servername", "session", ] /* Excluded from this release type: List */ /** @public */ export declare class ListCollectionsCursor< T extends Pick<CollectionInfo, "name" | "type"> | CollectionInfo = | Pick<CollectionInfo, "name" | "type"> | CollectionInfo, > extends AbstractCursor<T> { parent: Db filter: Document options?: ListCollectionsOptions constructor(db: Db, filter: Document, options?: ListCollectionsOptions) clone(): ListCollectionsCursor<T> /* Excluded from this release type: _initialize */ } /** @public */ export declare interface ListCollectionsOptions extends Omit<CommandOperationOptions, "writeConcern"> { /** Since 4.0: If true, will only return the collection name in the response, and will omit additional info */ nameOnly?: boolean /** Since 4.0: If true and nameOnly is true, allows a user without the required privilege (i.e. listCollections action on the database) to run the command when access control is enforced. */ authorizedCollections?: boolean /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ batchSize?: number } /** @public */ export declare interface ListDatabasesOptions extends CommandOperationOptions { /** A query predicate that determines which databases are listed */ filter?: Document /** A flag to indicate whether the command should return just the database names, or return both database names and size information */ nameOnly?: boolean /** A flag that determines which databases are returned based on the user privileges when access control is enabled */ authorizedDatabases?: boolean } /** @public */ export declare interface ListDatabasesResult { databases: ({ name: string sizeOnDisk?: number empty?: boolean } & Document)[] totalSize?: number totalSizeMb?: number ok: 1 | 0 } /** @public */ export declare class ListIndexesCursor extends AbstractCursor { parent: Collection options?: ListIndexesOptions constructor(collection: Collection, options?: ListIndexesOptions) clone(): ListIndexesCursor /* Excluded from this release type: _initialize */ } /** @public */ export declare interface ListIndexesOptions extends Omit<CommandOperationOptions, "writeConcern"> { /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ batchSize?: number } export { Long } /** @public */ export declare type MatchKeysAndValues<TSchema> = Readonly<Partial<TSchema>> & Record<string, any> export { MaxKey } /* Excluded from this release type: MessageHeader */ /* Excluded from this release type: MessageStream */ /* Excluded from this release type: MessageStreamOptions */ export { MinKey } /** * @public * @deprecated This type will be completely removed and findOneAndUpdate, * findOneAndDelete, and findOneAndReplace will then return the * actual result document. */ export declare interface ModifyResult<TSchema = Document> { value: WithId<TSchema> | null lastErrorObject?: Document ok: 0 | 1 } /** @public */ export declare const MONGO_CLIENT_EVENTS: readonly [ "connectionPoolCreated", "connectionPoolReady", "connectionPoolCleared", "connectionPoolClosed", "connectionCreated", "connectionReady", "connectionClosed", "connectionCheckOutStarted", "connectionCheckOutFailed", "connectionCheckedOut", "connectionCheckedIn", "commandStarted", "commandSucceeded", "commandFailed", "serverOpening", "serverClosed", "serverDescriptionChanged", "topologyOpening", "topologyClosed", "topologyDescriptionChanged", "error", "timeout", "close", "serverHeartbeatStarted", "serverHeartbeatSucceeded", "serverHeartbeatFailed", ] /** * An error generated when the driver API is used incorrectly * * @privateRemarks * Should **never** be directly instantiated * * @public * @category Error */ export declare class MongoAPIError extends MongoDriverError { constructor(message: string) get name(): string } /** * A error generated when the user attempts to authenticate * via AWS, but fails * * @public * @category Error */ export declare class MongoAWSError extends MongoRuntimeError { constructor(message: string) get name(): string } /** * An error generated when a batch command is re-executed after one of the commands in the batch * has failed * * @public * @category Error */ export declare class MongoBatchReExecutionError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error indicating an unsuccessful Bulk Write * @public * @category Error */ export declare class MongoBulkWriteError extends MongoServerError { result: BulkWriteResult writeErrors: OneOrMore<WriteError> err?: WriteConcernError /** Creates a new MongoBulkWriteError */ constructor( error: | { message: string code: number writeErrors?: WriteError[] } | WriteConcernError | AnyError, result: BulkWriteResult, ) get name(): string /** Number of documents inserted. */ get insertedCount(): number /** Number of documents matched for update. */ get matchedCount(): number /** Number of documents modified. */ get modifiedCount(): number /** Number of documents deleted. */ get deletedCount(): number /** Number of documents upserted. */ get upsertedCount(): number /** Inserted document generated Id's, hash key is the index of the originating operation */ get insertedIds(): { [key: number]: any } /** Upserted document generated Id's, hash key is the index of the originating operation */ get upsertedIds(): { [key: number]: any } } /** * An error generated when a ChangeStream operation fails to execute. * * @public * @category Error */ export declare class MongoChangeStreamError extends MongoRuntimeError { constructor(message: string) get name(): string } /** * The **MongoClient** class is a class that allows for making Connections to MongoDB. * @public * * @remarks * The programmatically provided options take precedence over the URI options. * * @example * ```ts * import { MongoClient } from 'mongodb'; * * // Enable command monitoring for debugging * const client = new MongoClient('mongodb://localhost:27017', { monitorCommands: true }); * * client.on('commandStarted', started => console.log(started)); * client.db().collection('pets'); * await client.insertOne({ name: 'spot', kind: 'dog' }); * ``` */ export declare class MongoClient extends TypedEventEmitter<MongoClientEvents> { /* Excluded from this release type: s */ /* Excluded from this release type: topology */ /* Excluded from this release type: mongoLogger */ /* Excluded from this release type: connectionLock */ /* Excluded from this release type: [kOptions] */ constructor(url: string, options?: MongoClientOptions) get options(): Readonly<MongoOptions> get serverApi(): Readonly<ServerApi | undefined> /* Excluded from this release type: monitorCommands */ /* Excluded from this release type: monitorCommands */ get autoEncrypter(): AutoEncrypter | undefined get readConcern(): ReadConcern | undefined get writeConcern(): WriteConcern | undefined get readPreference(): ReadPreference get bsonOptions(): BSONSerializeOptions /** * Connect to MongoDB using a url * * @see docs.mongodb.org/manual/reference/connection-string/ */ connect(): Promise<this> /* Excluded from this release type: _connect */ /** * Close the client and its underlying connections * * @param force - Force close, emitting no events */ close(force?: boolean): Promise<void> /** * Create a new Db instance sharing the current socket connections. * * @param dbName - The name of the database we want to use. If not provided, use database name from connection string. * @param options - Optional settings for Db construction */ db(dbName?: string, options?: DbOptions): Db /** * Connect to MongoDB using a url * * @remarks * The programmatically provided options take precedence over the URI options. * * @see path_to_url */ static connect( url: string, options?: MongoClientOptions, ): Promise<MongoClient> /** Starts a new session on the server */ startSession(options?: ClientSessionOptions): ClientSession /** * Runs a given operation with an implicitly created session. The lifetime of the session * will be handled without the need for user interaction. * * NOTE: presently the operation MUST return a Promise (either explicit or implicitly as an async function) * * @param options - Optional settings for the command * @param callback - An callback to execute with an implicitly created session */ withSession(callback: WithSessionCallback): Promise<void> withSession( options: ClientSessionOptions, callback: WithSessionCallback, ): Promise<void> /** * Create a new Change Stream, watching for new changes (insertions, updates, * replacements, deletions, and invalidations) in this cluster. Will ignore all * changes to system collections, as well as the local, admin, and config databases. * * @remarks * watch() accepts two generic arguments for distinct use cases: * - The first is to provide the schema that may be defined for all the data within the current cluster * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument * * @param pipeline - An array of {@link path_to_url|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. * @param options - Optional settings for the command * @typeParam TSchema - Type of the data being detected by the change stream * @typeParam TChange - Type of the whole change stream document emitted */ watch< TSchema extends Document = Document, TChange extends Document = ChangeStreamDocument<TSchema>, >( pipeline?: Document[], options?: ChangeStreamOptions, ): ChangeStream<TSchema, TChange> } /** @public */ export declare type MongoClientEvents = Pick< TopologyEvents, (typeof MONGO_CLIENT_EVENTS)[number] > & { open(mongoClient: MongoClient): void } /** * Describes all possible URI query options for the mongo client * @public * @see path_to_url */ export declare interface MongoClientOptions extends BSONSerializeOptions, SupportedNodeConnectionOptions { /** Specifies the name of the replica set, if the mongod is a member of a replica set. */ replicaSet?: string /** Enables or disables TLS/SSL for the connection. */ tls?: boolean /** A boolean to enable or disables TLS/SSL for the connection. (The ssl option is equivalent to the tls option.) */ ssl?: boolean /** Specifies the location of a local TLS Certificate */ tlsCertificateFile?: string /** Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key or only the client's TLS/SSL key when tlsCertificateFile is used to provide the certificate. */ tlsCertificateKeyFile?: string /** Specifies the password to de-crypt the tlsCertificateKeyFile. */ tlsCertificateKeyFilePassword?: string /** Specifies the location of a local .pem file that contains the root certificate chain from the Certificate Authority. This file is used to validate the certificate presented by the mongod/mongos instance. */ tlsCAFile?: string /** Bypasses validation of the certificates presented by the mongod/mongos instance */ tlsAllowInvalidCertificates?: boolean /** Disables hostname validation of the certificate presented by the mongod/mongos instance. */ tlsAllowInvalidHostnames?: boolean /** Disables various certificate validations. */ tlsInsecure?: boolean /** The time in milliseconds to attempt a connection before timing out. */ connectTimeoutMS?: number /** The time in milliseconds to attempt a send or receive on a socket before the attempt times out. */ socketTimeoutMS?: number /** An array or comma-delimited string of compressors to enable network compression for communication between this client and a mongod/mongos instance. */ compressors?: CompressorName[] | string /** An integer that specifies the compression level if using zlib for network compression. */ zlibCompressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | undefined /** The maximum number of hosts to connect to when using an srv connection string, a setting of `0` means unlimited hosts */ srvMaxHosts?: number /** * Modifies the srv URI to look like: * * `_{srvServiceName}._tcp.{hostname}.{domainname}` * * Querying this DNS URI is expected to respond with SRV records */ srvServiceName?: string /** The maximum number of connections in the connection pool. */ maxPoolSize?: number /** The minimum number of connections in the connection pool. */ minPoolSize?: number /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ maxConnecting?: number /** The maximum number of milliseconds that a connection can remain idle in the pool before being removed and closed. */ maxIdleTimeMS?: number /** The maximum time in milliseconds that a thread can wait for a connection to become available. */ waitQueueTimeoutMS?: number /** Specify a read concern for the collection (only MongoDB 3.2 or higher supported) */ readConcern?: ReadConcernLike /** The level of isolation */ readConcernLevel?: ReadConcernLevel /** Specifies the read preferences for this connection */ readPreference?: ReadPreferenceMode | ReadPreference /** Specifies, in seconds, how stale a secondary can be before the client stops using it for read operations. */ maxStalenessSeconds?: number /** Specifies the tags document as a comma-separated list of colon-separated key-value pairs. */ readPreferenceTags?: TagSet[] /** The auth settings for when connection to server. */ auth?: Auth /** Specify the database name associated with the users credentials. */ authSource?: string /** Specify the authentication mechanism that MongoDB will use to authenticate the connection. */ authMechanism?: AuthMechanism /** Specify properties for the specified authMechanism as a comma-separated list of colon-separated key-value pairs. */ authMechanismProperties?: AuthMechanismProperties /** The size (in milliseconds) of the latency window for selecting among multiple suitable MongoDB instances. */ localThresholdMS?: number /** Specifies how long (in milliseconds) to block for server selection before throwing an exception. */ serverSelectionTimeoutMS?: number /** heartbeatFrequencyMS controls when the driver checks the state of the MongoDB deployment. Specify the interval (in milliseconds) between checks, counted from the end of the previous check until the beginning of the next one. */ heartbeatFrequencyMS?: number /** Sets the minimum heartbeat frequency. In the event that the driver has to frequently re-check a server's availability, it will wait at least this long since the previous check to avoid wasted effort. */ minHeartbeatFrequencyMS?: number /** The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections */ appName?: string /** Enables retryable reads. */ retryReads?: boolean /** Enable retryable writes. */ retryWrites?: boolean /** Allow a driver to force a Single topology type with a connection string containing one host */ directConnection?: boolean /** Instruct the driver it is connecting to a load balancer fronting a mongos like service */ loadBalanced?: boolean /** * The write concern w value * @deprecated Please use the `writeConcern` option instead */ w?: W /** * The write concern timeout * @deprecated Please use the `writeConcern` option instead */ wtimeoutMS?: number /** * The journal write concern * @deprecated Please use the `writeConcern` option instead */ journal?: boolean /** * A MongoDB WriteConcern, which describes the level of acknowledgement * requested from MongoDB for write operations. * * @see path_to_url */ writeConcern?: WriteConcern | WriteConcernSettings /** Validate mongod server certificate against Certificate Authority */ sslValidate?: boolean /** SSL Certificate file path. */ sslCA?: string /** SSL Certificate file path. */ sslCert?: string /** SSL Key file file path. */ sslKey?: string /** SSL Certificate pass phrase. */ sslPass?: string /** SSL Certificate revocation list file path. */ sslCRL?: string /** TCP Connection no delay */ noDelay?: boolean /** TCP Connection keep alive enabled */ keepAlive?: boolean /** The number of milliseconds to wait before initiating keepAlive on the TCP socket */ keepAliveInitialDelay?: number /** Force server to assign `_id` values instead of driver */ forceServerObjectId?: boolean /** A primary key factory function for generation of custom `_id` keys */ pkFactory?: PkFactory /** Enable command monitoring for this client */ monitorCommands?: boolean /** Server API version */ serverApi?: ServerApi | ServerApiVersion /** * Optionally enable in-use auto encryption * * @remarks * Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not supported for operations on a database or view, and operations that are not bypassed will result in error * (see [libmongocrypt: Auto Encryption Allow-List](path_to_url#libmongocrypt-auto-encryption-allow-list)). To bypass automatic encryption for all operations, set bypassAutoEncryption=true in AutoEncryptionOpts. * * Automatic encryption requires the authenticated user to have the [listCollections privilege action](path_to_url#dbcmd.listCollections). * * If a MongoClient with a limited connection pool size (i.e a non-zero maxPoolSize) is configured with AutoEncryptionOptions, a separate internal MongoClient is created if any of the following are true: * - AutoEncryptionOptions.keyVaultClient is not passed. * - AutoEncryptionOptions.bypassAutomaticEncryption is false. * * If an internal MongoClient is created, it is configured with the same options as the parent MongoClient except minPoolSize is set to 0 and AutoEncryptionOptions is omitted. */ autoEncryption?: AutoEncryptionOptions /** Allows a wrapping driver to amend the client metadata generated by the driver to include information about the wrapping driver */ driverInfo?: DriverInfo /** Configures a Socks5 proxy host used for creating TCP connections. */ proxyHost?: string /** Configures a Socks5 proxy port used for creating TCP connections. */ proxyPort?: number /** Configures a Socks5 proxy username when the proxy in proxyHost requires username/password authentication. */ proxyUsername?: string /** Configures a Socks5 proxy password when the proxy in proxyHost requires username/password authentication. */ proxyPassword?: string /* Excluded from this release type: srvPoller */ /* Excluded from this release type: connectionType */ /* Excluded from this release type: __index */ } /* Excluded from this release type: MongoClientPrivate */ /** * An error generated when a feature that is not enabled or allowed for the current server * configuration is used * * * @public * @category Error */ export declare class MongoCompatibilityError extends MongoAPIError { constructor(message: string) get name(): string } /** * A representation of the credentials used by MongoDB * @public */ export declare class MongoCredentials { /** The username used for authentication */ readonly username: string /** The password used for authentication */ readonly password: string /** The database that the user should authenticate against */ readonly source: string /** The method used to authenticate */ readonly mechanism: AuthMechanism /** Special properties used by some types of auth mechanisms */ readonly mechanismProperties: AuthMechanismProperties constructor(options: MongoCredentialsOptions) /** Determines if two MongoCredentials objects are equivalent */ equals(other: MongoCredentials): boolean /** * If the authentication mechanism is set to "default", resolves the authMechanism * based on the server version and server supported sasl mechanisms. * * @param hello - A hello response from the server */ resolveAuthMechanism(hello?: Document): MongoCredentials validate(): void static merge( creds: MongoCredentials | undefined, options: Partial<MongoCredentialsOptions>, ): MongoCredentials } /** @public */ export declare interface MongoCredentialsOptions { username: string password: string source: string db?: string mechanism?: AuthMechanism mechanismProperties: AuthMechanismProperties } /** * An error thrown when an attempt is made to read from a cursor that has been exhausted * * @public * @category Error */ export declare class MongoCursorExhaustedError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error thrown when the user attempts to add options to a cursor that has already been * initialized * * @public * @category Error */ export declare class MongoCursorInUseError extends MongoAPIError { constructor(message?: string) get name(): string } /** @public */ export declare class MongoDBNamespace { db: string collection: string | undefined /** * Create a namespace object * * @param db - database name * @param collection - collection name */ constructor(db: string, collection?: string) toString(): string withCollection(collection: string): MongoDBNamespace static fromString(namespace?: string): MongoDBNamespace } /** * An error generated when the driver fails to decompress * data received from the server. * * @public * @category Error */ export declare class MongoDecompressionError extends MongoRuntimeError { constructor(message: string) get name(): string } /** * An error generated by the driver * * @public * @category Error */ export declare class MongoDriverError extends MongoError { constructor(message: string) get name(): string } /** * @public * @category Error * * @privateRemarks * mongodb-client-encryption has a dependency on this error, it uses the constructor with a string argument */ export declare class MongoError extends Error { /* Excluded from this release type: [kErrorLabels] */ /** * This is a number in MongoServerError and a string in MongoDriverError * @privateRemarks * Define the type override on the subclasses when we can use the override keyword */ code?: number | string topologyVersion?: TopologyVersion connectionGeneration?: number cause?: Error constructor(message: string | Error) get name(): string /** Legacy name for server error responses */ get errmsg(): string /** * Checks the error to see if it has an error label * * @param label - The error label to check for * @returns returns true if the error has the provided error label */ hasErrorLabel(label: string): boolean addErrorLabel(label: string): void get errorLabels(): string[] } /** @public */ export declare const MongoErrorLabel: Readonly<{ readonly RetryableWriteError: "RetryableWriteError" readonly TransientTransactionError: "TransientTransactionError" readonly UnknownTransactionCommitResult: "UnknownTransactionCommitResult" readonly ResumableChangeStreamError: "ResumableChangeStreamError" readonly HandshakeError: "HandshakeError" readonly ResetPool: "ResetPool" readonly InterruptInUseConnections: "InterruptInUseConnections" readonly NoWritesPerformed: "NoWritesPerformed" }> /** @public */ export declare type MongoErrorLabel = (typeof MongoErrorLabel)[keyof typeof MongoErrorLabel] /** * An error generated when the user attempts to operate * on a session that has expired or has been closed. * * @public * @category Error */ export declare class MongoExpiredSessionError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error generated when a malformed or invalid chunk is * encountered when reading from a GridFSStream. * * @public * @category Error */ export declare class MongoGridFSChunkError extends MongoRuntimeError { constructor(message: string) get name(): string } /** An error generated when a GridFSStream operation fails to execute. * * @public * @category Error */ export declare class MongoGridFSStreamError extends MongoRuntimeError { constructor(message: string) get name(): string } /** * An error generated when the user supplies malformed or unexpected arguments * or when a required argument or field is not provided. * * * @public * @category Error */ export declare class MongoInvalidArgumentError extends MongoAPIError { constructor(message: string) get name(): string } /** * A error generated when the user attempts to authenticate * via Kerberos, but fails to connect to the Kerberos client. * * @public * @category Error */ export declare class MongoKerberosError extends MongoRuntimeError { constructor(message: string) get name(): string } /* Excluded from this release type: MongoLoggableComponent */ /* Excluded from this release type: MongoLogger */ /* Excluded from this release type: MongoLoggerEnvOptions */ /* Excluded from this release type: MongoLoggerMongoClientOptions */ /* Excluded from this release type: MongoLoggerOptions */ /** * An error generated when the user fails to provide authentication credentials before attempting * to connect to a mongo server instance. * * * @public * @category Error */ export declare class MongoMissingCredentialsError extends MongoAPIError { constructor(message: string) get name(): string } /** * An error generated when a required module or dependency is not present in the local environment * * @public * @category Error */ export declare class MongoMissingDependencyError extends MongoAPIError { constructor(message: string) get name(): string } /** * An error indicating an issue with the network, including TCP errors and timeouts. * @public * @category Error */ export declare class MongoNetworkError extends MongoError { /* Excluded from this release type: [kBeforeHandshake] */ constructor(message: string | Error, options?: MongoNetworkErrorOptions) get name(): string } /** @public */ export declare interface MongoNetworkErrorOptions { /** Indicates the timeout happened before a connection handshake completed */ beforeHandshake: boolean } /** * An error indicating a network timeout occurred * @public * @category Error * * @privateRemarks * mongodb-client-encryption has a dependency on this error with an instanceof check */ export declare class MongoNetworkTimeoutError extends MongoNetworkError { constructor(message: string, options?: MongoNetworkErrorOptions) get name(): string } /** * An error thrown when the user attempts to operate on a database or collection through a MongoClient * that has not yet successfully called the "connect" method * * @public * @category Error */ export declare class MongoNotConnectedError extends MongoAPIError { constructor(message: string) get name(): string } /** * Mongo Client Options * @public */ export declare interface MongoOptions extends Required< Pick< MongoClientOptions, | "autoEncryption" | "connectTimeoutMS" | "directConnection" | "driverInfo" | "forceServerObjectId" | "minHeartbeatFrequencyMS" | "heartbeatFrequencyMS" | "keepAlive" | "keepAliveInitialDelay" | "localThresholdMS" | "maxConnecting" | "maxIdleTimeMS" | "maxPoolSize" | "minPoolSize" | "monitorCommands" | "noDelay" | "pkFactory" | "raw" | "replicaSet" | "retryReads" | "retryWrites" | "serverSelectionTimeoutMS" | "socketTimeoutMS" | "srvMaxHosts" | "srvServiceName" | "tlsAllowInvalidCertificates" | "tlsAllowInvalidHostnames" | "tlsInsecure" | "waitQueueTimeoutMS" | "zlibCompressionLevel" > >, SupportedNodeConnectionOptions { appName?: string hosts: HostAddress[] srvHost?: string credentials?: MongoCredentials readPreference: ReadPreference readConcern: ReadConcern loadBalanced: boolean serverApi: ServerApi compressors: CompressorName[] writeConcern: WriteConcern dbName: string metadata: ClientMetadata autoEncrypter?: AutoEncrypter proxyHost?: string proxyPort?: number proxyUsername?: string proxyPassword?: string /* Excluded from this release type: connectionType */ /* Excluded from this release type: encrypter */ /* Excluded from this release type: userSpecifiedAuthSource */ /* Excluded from this release type: userSpecifiedReplicaSet */ /** * # NOTE ABOUT TLS Options * * If set TLS enabled, equivalent to setting the ssl option. * * ### Additional options: * * | nodejs option | MongoDB equivalent | type | * |:---------------------|--------------------------------------------------------- |:---------------------------------------| * | `ca` | `sslCA`, `tlsCAFile` | `string \| Buffer \| Buffer[]` | * | `crl` | `sslCRL` | `string \| Buffer \| Buffer[]` | * | `cert` | `sslCert`, `tlsCertificateFile`, `tlsCertificateKeyFile` | `string \| Buffer \| Buffer[]` | * | `key` | `sslKey`, `tlsCertificateKeyFile` | `string \| Buffer \| KeyObject[]` | * | `passphrase` | `sslPass`, `tlsCertificateKeyFilePassword` | `string` | * | `rejectUnauthorized` | `sslValidate` | `boolean` | * */ tls: boolean /* Excluded from this release type: __index */ /* Excluded from this release type: mongoLoggerOptions */ } /** * An error used when attempting to parse a value (like a connection string) * @public * @category Error */ export declare class MongoParseError extends MongoDriverError { constructor(message: string) get name(): string } /** * An error generated when the driver encounters unexpected input * or reaches an unexpected/invalid internal state * * @privateRemarks * Should **never** be directly instantiated. * * @public * @category Error */ export declare class MongoRuntimeError extends MongoDriverError { constructor(message: string) get name(): string } /** * An error generated when an attempt is made to operate * on a closed/closing server. * * @public * @category Error */ export declare class MongoServerClosedError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error coming from the mongo server * * @public * @category Error */ export declare class MongoServerError extends MongoError { codeName?: string writeConcernError?: Document errInfo?: Document ok?: number; [key: string]: any constructor(message: ErrorDescription) get name(): string } /** * An error signifying a client-side server selection error * @public * @category Error */ export declare class MongoServerSelectionError extends MongoSystemError { constructor(message: string, reason: TopologyDescription) get name(): string } /** * An error signifying a general system issue * @public * @category Error */ export declare class MongoSystemError extends MongoError { /** An optional reason context, such as an error saved during flow of monitoring and selecting servers */ reason?: TopologyDescription constructor(message: string, reason: TopologyDescription) get name(): string } /** * An error thrown when the user calls a function or method not supported on a tailable cursor * * @public * @category Error */ export declare class MongoTailableCursorError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error generated when an attempt is made to operate on a * dropped, or otherwise unavailable, database. * * @public * @category Error */ export declare class MongoTopologyClosedError extends MongoAPIError { constructor(message?: string) get name(): string } /** * An error generated when the user makes a mistake in the usage of transactions. * (e.g. attempting to commit a transaction with a readPreference other than primary) * * @public * @category Error */ export declare class MongoTransactionError extends MongoAPIError { constructor(message: string) get name(): string } /** * An error generated when a **parsable** unexpected response comes from the server. * This is generally an error where the driver in a state expecting a certain behavior to occur in * the next message from MongoDB but it receives something else. * This error **does not** represent an issue with wire message formatting. * * #### Example * When an operation fails, it is the driver's job to retry it. It must perform serverSelection * again to make sure that it attempts the operation against a server in a good state. If server * selection returns a server that does not support retryable operations, this error is used. * This scenario is unlikely as retryable support would also have been determined on the first attempt * but it is possible the state change could report a selectable server that does not support retries. * * @public * @category Error */ export declare class MongoUnexpectedServerResponseError extends MongoRuntimeError { constructor(message: string) get name(): string } /** * An error thrown when the server reports a writeConcernError * @public * @category Error */ export declare class MongoWriteConcernError extends MongoServerError { /** The result document (provided if ok: 1) */ result?: Document constructor(message: ErrorDescription, result?: Document) get name(): string } /* Excluded from this release type: Monitor */ /** @public */ export declare type MonitorEvents = { serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void resetServer(error?: MongoError): void resetConnectionPool(): void close(): void } & EventEmitterWithState /* Excluded from this release type: MonitorInterval */ /* Excluded from this release type: MonitorIntervalOptions */ /** @public */ export declare interface MonitorOptions extends Omit<ConnectionOptions, "id" | "generation" | "hostAddress"> { connectTimeoutMS: number heartbeatFrequencyMS: number minHeartbeatFrequencyMS: number } /* Excluded from this release type: MonitorPrivate */ /* Excluded from this release type: Msg */ /** * @public * returns tuple of strings (keys to be joined on '.') that represent every path into a schema * path_to_url * * @remarks * Through testing we determined that a depth of 8 is safe for the typescript compiler * and provides reasonable compilation times. This number is otherwise not special and * should be changed if issues are found with this level of checking. Beyond this * depth any helpers that make use of NestedPaths should devolve to not asserting any * type safety on the input. */ export declare type NestedPaths< Type, Depth extends number[], > = Depth["length"] extends 8 ? [] : Type extends | string | number | bigint | boolean | Date | RegExp | Buffer | Uint8Array | ((...args: any[]) => any) | { _bsontype: string } ? [] : Type extends ReadonlyArray<infer ArrayType> ? [] | [number, ...NestedPaths<ArrayType, [...Depth, 1]>] : Type extends Map<string, any> ? [string] : Type extends object ? { [Key in Extract<keyof Type, string>]: Type[Key] extends Type ? [Key] : Type extends Type[Key] ? [Key] : Type[Key] extends ReadonlyArray<infer ArrayType> ? Type extends ArrayType ? [Key] : ArrayType extends Type ? [Key] : [Key, ...NestedPaths<Type[Key], [...Depth, 1]>] // child is not structured the same as the parent : [Key, ...NestedPaths<Type[Key], [...Depth, 1]>] | [Key] }[Extract<keyof Type, string>] : [] /** * @public * returns keys (strings) for every path into a schema with a value of type * path_to_url */ export declare type NestedPathsOfType<TSchema, Type> = KeysOfAType< { [Property in Join<NestedPaths<TSchema, []>, ".">]: PropertyType< TSchema, Property > }, Type > /** * @public * A type that extends Document but forbids anything that "looks like" an object id. */ export declare type NonObjectIdLikeDocument = { [key in keyof ObjectIdLike]?: never } & Document /** It avoids using fields with not acceptable types @public */ export declare type NotAcceptedFields<TSchema, FieldType> = { readonly [key in KeysOfOtherType<TSchema, FieldType>]?: never } /** @public */ export declare type NumericType = IntegerType | Decimal128 | Double export { ObjectId } /** * @public * @experimental */ export declare interface OIDCMechanismServerStep1 { authorizationEndpoint?: string tokenEndpoint?: string deviceAuthorizationEndpoint?: string clientId: string clientSecret?: string requestScopes?: string[] } /** * @public * @experimental */ export declare type OIDCRefreshFunction = ( principalName: string, serverResult: OIDCMechanismServerStep1, result: OIDCRequestTokenResult, timeout: AbortSignal | number, ) => Promise<OIDCRequestTokenResult> /** * @public * @experimental */ export declare type OIDCRequestFunction = ( principalName: string, serverResult: OIDCMechanismServerStep1, timeout: AbortSignal | number, ) => Promise<OIDCRequestTokenResult> /** * @public * @experimental */ export declare interface OIDCRequestTokenResult { accessToken: string expiresInSeconds?: number refreshToken?: string } /** @public */ export declare type OneOrMore<T> = T | ReadonlyArray<T> /** @public */ export declare type OnlyFieldsOfType< TSchema, FieldType = any, AssignableType = FieldType, > = IsAny< TSchema[keyof TSchema], Record<string, FieldType>, AcceptedFields<TSchema, FieldType, AssignableType> & NotAcceptedFields<TSchema, FieldType> & Record<string, AssignableType> > /* Excluded from this release type: OperationDescription */ /** @public */ export declare interface OperationOptions extends BSONSerializeOptions { /** Specify ClientSession for this command */ session?: ClientSession willRetryWrite?: boolean /** The preferred read preference (ReadPreference.primary, ReadPreference.primary_preferred, ReadPreference.secondary, ReadPreference.secondary_preferred, ReadPreference.nearest). */ readPreference?: ReadPreferenceLike /* Excluded from this release type: bypassPinningCheck */ omitReadPreference?: boolean } /* Excluded from this release type: OperationParent */ /** * Represents a specific point in time on a server. Can be retrieved by using `db.command()` * @public * @see path_to_url#response */ export declare type OperationTime = Timestamp /* Excluded from this release type: OpMsgOptions */ /* Excluded from this release type: OpQueryOptions */ /* Excluded from this release type: OpResponseOptions */ /** * Add an optional _id field to an object shaped type * @public */ export declare type OptionalId<TSchema> = EnhancedOmit<TSchema, "_id"> & { _id?: InferIdType<TSchema> } /** * Adds an optional _id field to an object shaped type, unless the _id field is required on that type. * In the case _id is required, this method continues to require_id. * * @public * * @privateRemarks * `ObjectId extends TSchema['_id']` is a confusing ordering at first glance. Rather than ask * `TSchema['_id'] extends ObjectId` which translated to "Is the _id property ObjectId?" * we instead ask "Does ObjectId look like (have the same shape) as the _id?" */ export declare type OptionalUnlessRequiredId<TSchema> = TSchema extends { _id: any } ? TSchema : OptionalId<TSchema> /** @public */ export declare class OrderedBulkOperation extends BulkOperationBase { /* Excluded from this release type: __constructor */ addToOperationsList( batchType: BatchType, document: Document | UpdateStatement | DeleteStatement, ): this } /** @public */ export declare interface PkFactory { createPk(): any } /* Excluded from this release type: PoolState */ /** @public */ export declare const ProfilingLevel: Readonly<{ readonly off: "off" readonly slowOnly: "slow_only" readonly all: "all" }> /** @public */ export declare type ProfilingLevel = (typeof ProfilingLevel)[keyof typeof ProfilingLevel] /** @public */ export declare type ProfilingLevelOptions = CommandOperationOptions /** @public */ export declare type PropertyType< Type, Property extends string, > = string extends Property ? unknown : Property extends keyof Type ? Type[Property] : Property extends `${number}` ? Type extends ReadonlyArray<infer ArrayType> ? ArrayType : unknown : Property extends `${infer Key}.${infer Rest}` ? Key extends `${number}` ? Type extends ReadonlyArray<infer ArrayType> ? PropertyType<ArrayType, Rest> : unknown : Key extends keyof Type ? Type[Key] extends Map<string, infer MapType> ? MapType : PropertyType<Type[Key], Rest> : unknown : unknown /** @public */ export declare interface ProxyOptions { proxyHost?: string proxyPort?: number proxyUsername?: string proxyPassword?: string } /** @public */ export declare type PullAllOperator<TSchema> = ({ readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: TSchema[key] } & NotAcceptedFields<TSchema, ReadonlyArray<any>>) & { readonly [key: string]: ReadonlyArray<any> } /** @public */ export declare type PullOperator<TSchema> = ({ readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: | Partial<Flatten<TSchema[key]>> | FilterOperations<Flatten<TSchema[key]>> } & NotAcceptedFields<TSchema, ReadonlyArray<any>>) & { readonly [key: string]: FilterOperators<any> | any } /** @public */ export declare type PushOperator<TSchema> = ({ readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: | Flatten<TSchema[key]> | ArrayOperator<Array<Flatten<TSchema[key]>>> } & NotAcceptedFields<TSchema, ReadonlyArray<any>>) & { readonly [key: string]: ArrayOperator<any> | any } /* Excluded from this release type: Query */ /** * The MongoDB ReadConcern, which allows for control of the consistency and isolation properties * of the data read from replica sets and replica set shards. * @public * * @see path_to_url */ export declare class ReadConcern { level: ReadConcernLevel | string /** Constructs a ReadConcern from the read concern level.*/ constructor(level: ReadConcernLevel) /** * Construct a ReadConcern given an options object. * * @param options - The options object from which to extract the write concern. */ static fromOptions(options?: { readConcern?: ReadConcernLike level?: ReadConcernLevel }): ReadConcern | undefined static get MAJORITY(): "majority" static get AVAILABLE(): "available" static get LINEARIZABLE(): "linearizable" static get SNAPSHOT(): "snapshot" toJSON(): Document } /** @public */ export declare const ReadConcernLevel: Readonly<{ readonly local: "local" readonly majority: "majority" readonly linearizable: "linearizable" readonly available: "available" readonly snapshot: "snapshot" }> /** @public */ export declare type ReadConcernLevel = (typeof ReadConcernLevel)[keyof typeof ReadConcernLevel] /** @public */ export declare type ReadConcernLike = | ReadConcern | { level: ReadConcernLevel } | ReadConcernLevel /** * The **ReadPreference** class is a class that represents a MongoDB ReadPreference and is * used to construct connections. * @public * * @see path_to_url */ export declare class ReadPreference { mode: ReadPreferenceMode tags?: TagSet[] hedge?: HedgeOptions maxStalenessSeconds?: number minWireVersion?: number static PRIMARY: "primary" static PRIMARY_PREFERRED: "primaryPreferred" static SECONDARY: "secondary" static SECONDARY_PREFERRED: "secondaryPreferred" static NEAREST: "nearest" static primary: ReadPreference static primaryPreferred: ReadPreference static secondary: ReadPreference static secondaryPreferred: ReadPreference static nearest: ReadPreference /** * @param mode - A string describing the read preference mode (primary|primaryPreferred|secondary|secondaryPreferred|nearest) * @param tags - A tag set used to target reads to members with the specified tag(s). tagSet is not available if using read preference mode primary. * @param options - Additional read preference options */ constructor( mode: ReadPreferenceMode, tags?: TagSet[], options?: ReadPreferenceOptions, ) get preference(): ReadPreferenceMode static fromString(mode: string): ReadPreference /** * Construct a ReadPreference given an options object. * * @param options - The options object from which to extract the read preference. */ static fromOptions( options?: ReadPreferenceFromOptions, ): ReadPreference | undefined /** * Replaces options.readPreference with a ReadPreference instance */ static translate( options: ReadPreferenceLikeOptions, ): ReadPreferenceLikeOptions /** * Validate if a mode is legal * * @param mode - The string representing the read preference mode. */ static isValid(mode: string): boolean /** * Validate if a mode is legal * * @param mode - The string representing the read preference mode. */ isValid(mode?: string): boolean /** * Indicates that this readPreference needs the "SecondaryOk" bit when sent over the wire * @see path_to_url#op-query */ secondaryOk(): boolean /** * Check if the two ReadPreferences are equivalent * * @param readPreference - The read preference with which to check equality */ equals(readPreference: ReadPreference): boolean /** Return JSON representation */ toJSON(): Document } /** @public */ export declare interface ReadPreferenceFromOptions extends ReadPreferenceLikeOptions { session?: ClientSession readPreferenceTags?: TagSet[] hedge?: HedgeOptions } /** @public */ export declare type ReadPreferenceLike = ReadPreference | ReadPreferenceMode /** @public */ export declare interface ReadPreferenceLikeOptions extends ReadPreferenceOptions { readPreference?: | ReadPreferenceLike | { mode?: ReadPreferenceMode preference?: ReadPreferenceMode tags?: TagSet[] maxStalenessSeconds?: number } } /** @public */ export declare const ReadPreferenceMode: Readonly<{ readonly primary: "primary" readonly primaryPreferred: "primaryPreferred" readonly secondary: "secondary" readonly secondaryPreferred: "secondaryPreferred" readonly nearest: "nearest" }> /** @public */ export declare type ReadPreferenceMode = (typeof ReadPreferenceMode)[keyof typeof ReadPreferenceMode] /** @public */ export declare interface ReadPreferenceOptions { /** Max secondary read staleness in seconds, Minimum value is 90 seconds.*/ maxStalenessSeconds?: number /** Server mode in which the same query is dispatched in parallel to multiple replica set members. */ hedge?: HedgeOptions } /** @public */ export declare type RegExpOrString<T> = T extends string ? BSONRegExp | RegExp | T : T /** @public */ export declare type RemoveUserOptions = CommandOperationOptions /** @public */ export declare interface RenameOptions extends CommandOperationOptions { /** Drop the target name collection if it previously exists. */ dropTarget?: boolean /** Unclear */ new_collection?: boolean } /** @public */ export declare interface ReplaceOneModel<TSchema extends Document = Document> { /** The filter to limit the replaced document. */ filter: Filter<TSchema> /** The document with which to replace the matched document. */ replacement: WithoutId<TSchema> /** Specifies a collation. */ collation?: CollationOptions /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ hint?: Hint /** When true, creates a new document if no document matches the query. */ upsert?: boolean } /** @public */ export declare interface ReplaceOptions extends CommandOperationOptions { /** If true, allows the write to opt-out of document level validation */ bypassDocumentValidation?: boolean /** Specifies a collation */ collation?: CollationOptions /** Specify that the update query should only consider plans using the hinted index */ hint?: string | Document /** When true, creates a new document if no document matches the query */ upsert?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /* Excluded from this release type: Response */ /** * @public * @deprecated Please use the ChangeStreamCursorOptions type instead. */ export declare interface ResumeOptions { startAtOperationTime?: Timestamp batchSize?: number maxAwaitTimeMS?: number collation?: CollationOptions readPreference?: ReadPreference resumeAfter?: ResumeToken startAfter?: ResumeToken fullDocument?: string } /** * Represents the logical starting point for a new ChangeStream or resuming a ChangeStream on the server. * @see path_to_url#std-label-change-stream-resume * @public */ export declare type ResumeToken = unknown /** @public */ export declare const ReturnDocument: Readonly<{ readonly BEFORE: "before" readonly AFTER: "after" }> /** @public */ export declare type ReturnDocument = (typeof ReturnDocument)[keyof typeof ReturnDocument] /** @public */ export declare interface RoleSpecification { /** * A role grants privileges to perform sets of actions on defined resources. * A given role applies to the database on which it is defined and can grant access down to a collection level of granularity. */ role: string /** The database this user's role should effect. */ db: string } /** @public */ export declare interface RootFilterOperators<TSchema> extends Document { $and?: Filter<TSchema>[] $nor?: Filter<TSchema>[] $or?: Filter<TSchema>[] $text?: { $search: string $language?: string $caseSensitive?: boolean $diacriticSensitive?: boolean } $where?: string | ((this: TSchema) => boolean) $comment?: string | Document } /* Excluded from this release type: RTTPinger */ /* Excluded from this release type: RTTPingerOptions */ /** @public */ export declare type RunCommandOptions = CommandOperationOptions /** @public */ export declare type SchemaMember<T, V> = | { [P in keyof T]?: V } | { [key: string]: V } /** @public */ export declare interface SelectServerOptions { readPreference?: ReadPreferenceLike /** How long to block for server selection before throwing an error */ serverSelectionTimeoutMS?: number session?: ClientSession } export { serialize } /* Excluded from this release type: Server */ /** @public */ export declare interface ServerApi { version: ServerApiVersion strict?: boolean deprecationErrors?: boolean } /** @public */ export declare const ServerApiVersion: Readonly<{ readonly v1: "1" }> /** @public */ export declare type ServerApiVersion = (typeof ServerApiVersion)[keyof typeof ServerApiVersion] /** @public */ export declare class ServerCapabilities { maxWireVersion: number minWireVersion: number constructor(hello: Document) get hasAggregationCursor(): boolean get hasWriteCommands(): boolean get hasTextSearch(): boolean get hasAuthCommands(): boolean get hasListCollectionsCommand(): boolean get hasListIndexesCommand(): boolean get supportsSnapshotReads(): boolean get commandsTakeWriteConcern(): boolean get commandsTakeCollation(): boolean } /** * Emitted when server is closed. * @public * @category Event */ export declare class ServerClosedEvent { /** A unique identifier for the topology */ topologyId: number /** The address (host/port pair) of the server */ address: string /* Excluded from this release type: __constructor */ } /** * The client's view of a single server, based on the most recent hello outcome. * * Internal type, not meant to be directly instantiated * @public */ export declare class ServerDescription { address: string type: ServerType hosts: string[] passives: string[] arbiters: string[] tags: TagSet error: MongoError | null topologyVersion: TopologyVersion | null minWireVersion: number maxWireVersion: number roundTripTime: number lastUpdateTime: number lastWriteDate: number me: string | null primary: string | null setName: string | null setVersion: number | null electionId: ObjectId | null logicalSessionTimeoutMinutes: number | null $clusterTime?: ClusterTime /* Excluded from this release type: __constructor */ get hostAddress(): HostAddress get allHosts(): string[] /** Is this server available for reads*/ get isReadable(): boolean /** Is this server data bearing */ get isDataBearing(): boolean /** Is this server available for writes */ get isWritable(): boolean get host(): string get port(): number /** * Determines if another `ServerDescription` is equal to this one per the rules defined * in the {@link path_to_url#serverdescription|SDAM spec} */ equals(other?: ServerDescription | null): boolean } /** * Emitted when server description changes, but does NOT include changes to the RTT. * @public * @category Event */ export declare class ServerDescriptionChangedEvent { /** A unique identifier for the topology */ topologyId: number /** The address (host/port pair) of the server */ address: string /** The previous server description */ previousDescription: ServerDescription /** The new server description */ newDescription: ServerDescription /* Excluded from this release type: __constructor */ } /* Excluded from this release type: ServerDescriptionOptions */ /** @public */ export declare type ServerEvents = { serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void /* Excluded from this release type: connect */ descriptionReceived(description: ServerDescription): void closed(): void ended(): void } & ConnectionPoolEvents & EventEmitterWithState /** * Emitted when the server monitors hello fails, either with an ok: 0 or a socket exception. * @public * @category Event */ export declare class ServerHeartbeatFailedEvent { /** The connection id for the command */ connectionId: string /** The execution time of the event in ms */ duration: number /** The command failure */ failure: Error /* Excluded from this release type: __constructor */ } /** * Emitted when the server monitors hello command is started - immediately before * the hello command is serialized into raw BSON and written to the socket. * * @public * @category Event */ export declare class ServerHeartbeatStartedEvent { /** The connection id for the command */ connectionId: string /* Excluded from this release type: __constructor */ } /** * Emitted when the server monitors hello succeeds. * @public * @category Event */ export declare class ServerHeartbeatSucceededEvent { /** The connection id for the command */ connectionId: string /** The execution time of the event in ms */ duration: number /** The command reply */ reply: Document /* Excluded from this release type: __constructor */ } /** * Emitted when server is initialized. * @public * @category Event */ export declare class ServerOpeningEvent { /** A unique identifier for the topology */ topologyId: number /** The address (host/port pair) of the server */ address: string /* Excluded from this release type: __constructor */ } /* Excluded from this release type: ServerOptions */ /* Excluded from this release type: ServerPrivate */ /* Excluded from this release type: ServerSelectionCallback */ /* Excluded from this release type: ServerSelectionRequest */ /* Excluded from this release type: ServerSelector */ /** * Reflects the existence of a session on the server. Can be reused by the session pool. * WARNING: not meant to be instantiated directly. For internal use only. * @public */ export declare class ServerSession { id: ServerSessionId lastUse: number txnNumber: number isDirty: boolean /* Excluded from this release type: __constructor */ /** * Determines if the server session has timed out. * * @param sessionTimeoutMinutes - The server's "logicalSessionTimeoutMinutes" */ hasTimedOut(sessionTimeoutMinutes: number): boolean /* Excluded from this release type: clone */ } /** @public */ export declare type ServerSessionId = { id: Binary } /* Excluded from this release type: ServerSessionPool */ /** * An enumeration of server types we know about * @public */ export declare const ServerType: Readonly<{ readonly Standalone: "Standalone" readonly Mongos: "Mongos" readonly PossiblePrimary: "PossiblePrimary" readonly RSPrimary: "RSPrimary" readonly RSSecondary: "RSSecondary" readonly RSArbiter: "RSArbiter" readonly RSOther: "RSOther" readonly RSGhost: "RSGhost" readonly Unknown: "Unknown" readonly LoadBalancer: "LoadBalancer" }> /** @public */ export declare type ServerType = (typeof ServerType)[keyof typeof ServerType] /** @public */ export declare type SetFields<TSchema> = ({ readonly [key in KeysOfAType<TSchema, ReadonlyArray<any> | undefined>]?: | OptionalId<Flatten<TSchema[key]>> | AddToSetOperators<Array<OptionalId<Flatten<TSchema[key]>>>> } & NotAcceptedFields<TSchema, ReadonlyArray<any> | undefined>) & { readonly [key: string]: AddToSetOperators<any> | any } /** @public */ export declare type SetProfilingLevelOptions = CommandOperationOptions /* Excluded from this release type: SeverityLevel */ /** @public */ export declare type Sort = | string | Exclude< SortDirection, { $meta: string } > | string[] | { [key: string]: SortDirection } | Map<string, SortDirection> | [string, SortDirection][] | [string, SortDirection] /** @public */ export declare type SortDirection = | 1 | -1 | "asc" | "desc" | "ascending" | "descending" | { $meta: string } /* Excluded from this release type: SortDirectionForCmd */ /* Excluded from this release type: SortForCmd */ /* Excluded from this release type: SrvPoller */ /* Excluded from this release type: SrvPollerEvents */ /* Excluded from this release type: SrvPollerOptions */ /* Excluded from this release type: SrvPollingEvent */ /** @public */ export declare type Stream = Socket | TLSSocket /** @public */ export declare class StreamDescription { address: string type: string minWireVersion?: number maxWireVersion?: number maxBsonObjectSize: number maxMessageSizeBytes: number maxWriteBatchSize: number compressors: CompressorName[] compressor?: CompressorName logicalSessionTimeoutMinutes?: number loadBalanced: boolean __nodejs_mock_server__?: boolean zlibCompressionLevel?: number constructor(address: string, options?: StreamDescriptionOptions) receiveResponse(response: Document | null): void } /** @public */ export declare interface StreamDescriptionOptions { compressors?: CompressorName[] logicalSessionTimeoutMinutes?: number loadBalanced: boolean } /** * @public * @experimental */ export declare type StrictFilter<TSchema> = | Partial<TSchema> | ({ [Property in Join<NestedPaths<WithId<TSchema>, []>, ".">]?: Condition< PropertyType<WithId<TSchema>, Property> > } & RootFilterOperators<WithId<TSchema>>) /** * @public * @experimental */ export declare type StrictMatchKeysAndValues<TSchema> = Readonly< { [Property in Join<NestedPaths<TSchema, []>, ".">]?: PropertyType< TSchema, Property > } & { [Property in `${NestedPathsOfType<TSchema, any[]>}.$${ | `[${string}]` | ""}`]?: ArrayElement< PropertyType< TSchema, Property extends `${infer Key}.$${string}` ? Key : never > > } & { [Property in `${NestedPathsOfType<TSchema, Record<string, any>[]>}.$${ | `[${string}]` | ""}.${string}`]?: any } & Document > /** * @public * @experimental */ export declare type StrictUpdateFilter<TSchema> = { $currentDate?: OnlyFieldsOfType< TSchema, Date | Timestamp, | true | { $type: "date" | "timestamp" } > $inc?: OnlyFieldsOfType<TSchema, NumericType | undefined> $min?: StrictMatchKeysAndValues<TSchema> $max?: StrictMatchKeysAndValues<TSchema> $mul?: OnlyFieldsOfType<TSchema, NumericType | undefined> $rename?: Record<string, string> $set?: StrictMatchKeysAndValues<TSchema> $setOnInsert?: StrictMatchKeysAndValues<TSchema> $unset?: OnlyFieldsOfType<TSchema, any, "" | true | 1> $addToSet?: SetFields<TSchema> $pop?: OnlyFieldsOfType<TSchema, ReadonlyArray<any>, 1 | -1> $pull?: PullOperator<TSchema> $push?: PushOperator<TSchema> $pullAll?: PullAllOperator<TSchema> $bit?: OnlyFieldsOfType< TSchema, NumericType | undefined, | { and: IntegerType } | { or: IntegerType } | { xor: IntegerType } > } & Document /** @public */ export declare type SupportedNodeConnectionOptions = SupportedTLSConnectionOptions & SupportedTLSSocketOptions & SupportedSocketOptions /** @public */ export declare type SupportedSocketOptions = Pick< TcpNetConnectOpts, (typeof LEGAL_TCP_SOCKET_OPTIONS)[number] > /** @public */ export declare type SupportedTLSConnectionOptions = Pick< ConnectionOptions_2, Extract< keyof ConnectionOptions_2, (typeof LEGAL_TLS_SOCKET_OPTIONS)[number] > > /** @public */ export declare type SupportedTLSSocketOptions = Pick< TLSSocketOptions, Extract<keyof TLSSocketOptions, (typeof LEGAL_TLS_SOCKET_OPTIONS)[number]> > /** @public */ export declare type TagSet = { [key: string]: string } /* Excluded from this release type: TimerQueue */ /** @public * Configuration options for timeseries collections * @see path_to_url */ export declare interface TimeSeriesCollectionOptions extends Document { timeField: string metaField?: string granularity?: "seconds" | "minutes" | "hours" | string } export { Timestamp } /* Excluded from this release type: Topology */ /** * Emitted when topology is closed. * @public * @category Event */ export declare class TopologyClosedEvent { /** A unique identifier for the topology */ topologyId: number /* Excluded from this release type: __constructor */ } /** * Representation of a deployment of servers * @public */ export declare class TopologyDescription { type: TopologyType setName: string | null maxSetVersion: number | null maxElectionId: ObjectId | null servers: Map<string, ServerDescription> stale: boolean compatible: boolean compatibilityError?: string logicalSessionTimeoutMinutes: number | null heartbeatFrequencyMS: number localThresholdMS: number commonWireVersion: number /** * Create a TopologyDescription */ constructor( topologyType: TopologyType, serverDescriptions?: Map<string, ServerDescription> | null, setName?: string | null, maxSetVersion?: number | null, maxElectionId?: ObjectId | null, commonWireVersion?: number | null, options?: TopologyDescriptionOptions | null, ) /* Excluded from this release type: updateFromSrvPollingEvent */ /* Excluded from this release type: update */ get error(): MongoServerError | null /** * Determines if the topology description has any known servers */ get hasKnownServers(): boolean /** * Determines if this topology description has a data-bearing server available. */ get hasDataBearingServers(): boolean /* Excluded from this release type: hasServer */ } /** * Emitted when topology description changes. * @public * @category Event */ export declare class TopologyDescriptionChangedEvent { /** A unique identifier for the topology */ topologyId: number /** The old topology description */ previousDescription: TopologyDescription /** The new topology description */ newDescription: TopologyDescription /* Excluded from this release type: __constructor */ } /** @public */ export declare interface TopologyDescriptionOptions { heartbeatFrequencyMS?: number localThresholdMS?: number } /** @public */ export declare type TopologyEvents = { /* Excluded from this release type: connect */ serverOpening(event: ServerOpeningEvent): void serverClosed(event: ServerClosedEvent): void serverDescriptionChanged(event: ServerDescriptionChangedEvent): void topologyClosed(event: TopologyClosedEvent): void topologyOpening(event: TopologyOpeningEvent): void topologyDescriptionChanged(event: TopologyDescriptionChangedEvent): void error(error: Error): void /* Excluded from this release type: open */ close(): void timeout(): void } & Omit<ServerEvents, "connect"> & ConnectionPoolEvents & ConnectionEvents & EventEmitterWithState /** * Emitted when topology is initialized. * @public * @category Event */ export declare class TopologyOpeningEvent { /** A unique identifier for the topology */ topologyId: number /* Excluded from this release type: __constructor */ } /* Excluded from this release type: TopologyOptions */ /* Excluded from this release type: TopologyPrivate */ /** * An enumeration of topology types we know about * @public */ export declare const TopologyType: Readonly<{ readonly Single: "Single" readonly ReplicaSetNoPrimary: "ReplicaSetNoPrimary" readonly ReplicaSetWithPrimary: "ReplicaSetWithPrimary" readonly Sharded: "Sharded" readonly Unknown: "Unknown" readonly LoadBalanced: "LoadBalanced" }> /** @public */ export declare type TopologyType = (typeof TopologyType)[keyof typeof TopologyType] /** @public */ export declare interface TopologyVersion { processId: ObjectId counter: Long } /** * @public * A class maintaining state related to a server transaction. Internal Only */ export declare class Transaction { /* Excluded from this release type: state */ options: TransactionOptions /* Excluded from this release type: _pinnedServer */ /* Excluded from this release type: _recoveryToken */ /* Excluded from this release type: __constructor */ /* Excluded from this release type: server */ get recoveryToken(): Document | undefined get isPinned(): boolean /** @returns Whether the transaction has started */ get isStarting(): boolean /** * @returns Whether this session is presently in a transaction */ get isActive(): boolean get isCommitted(): boolean /* Excluded from this release type: transition */ /* Excluded from this release type: pinServer */ /* Excluded from this release type: unpinServer */ } /** * Configuration options for a transaction. * @public */ export declare interface TransactionOptions extends CommandOperationOptions { /** A default read concern for commands in this transaction */ readConcern?: ReadConcernLike /** A default writeConcern for commands in this transaction */ writeConcern?: WriteConcern /** A default read preference for commands in this transaction */ readPreference?: ReadPreferenceLike /** Specifies the maximum amount of time to allow a commit action on a transaction to run in milliseconds */ maxCommitTimeMS?: number } /* Excluded from this release type: TxnState */ /** * Typescript type safe event emitter * @public */ export declare interface TypedEventEmitter<Events extends EventsDescription> extends EventEmitter { addListener<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this addListener( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this addListener(event: string | symbol, listener: GenericListener): this on<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this on( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this on(event: string | symbol, listener: GenericListener): this once<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this once( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this once(event: string | symbol, listener: GenericListener): this removeListener<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this removeListener( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this removeListener(event: string | symbol, listener: GenericListener): this off<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this off( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this off(event: string | symbol, listener: GenericListener): this removeAllListeners<EventKey extends keyof Events>( event?: EventKey | CommonEvents | symbol | string, ): this listeners<EventKey extends keyof Events>( event: EventKey | CommonEvents | symbol | string, ): Events[EventKey][] rawListeners<EventKey extends keyof Events>( event: EventKey | CommonEvents | symbol | string, ): Events[EventKey][] emit<EventKey extends keyof Events>( event: EventKey | symbol, ...args: Parameters<Events[EventKey]> ): boolean listenerCount<EventKey extends keyof Events>( type: EventKey | CommonEvents | symbol | string, ): number prependListener<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this prependListener( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this prependListener(event: string | symbol, listener: GenericListener): this prependOnceListener<EventKey extends keyof Events>( event: EventKey, listener: Events[EventKey], ): this prependOnceListener( event: CommonEvents, listener: ( eventName: string | symbol, listener: GenericListener, ) => void, ): this prependOnceListener(event: string | symbol, listener: GenericListener): this eventNames(): string[] getMaxListeners(): number setMaxListeners(n: number): this } /** * Typescript type safe event emitter * @public */ export declare class TypedEventEmitter< Events extends EventsDescription, > extends EventEmitter {} /** @public */ export declare class UnorderedBulkOperation extends BulkOperationBase { /* Excluded from this release type: __constructor */ handleWriteError(callback: Callback, writeResult: BulkWriteResult): boolean addToOperationsList( batchType: BatchType, document: Document | UpdateStatement | DeleteStatement, ): this } /** @public */ export declare interface UpdateDescription< TSchema extends Document = Document, > { /** * A document containing key:value pairs of names of the fields that were * changed, and the new value for those fields. */ updatedFields?: Partial<TSchema> /** * An array of field names that were removed from the document. */ removedFields?: string[] /** * An array of documents which record array truncations performed with pipeline-based updates using one or more of the following stages: * - $addFields * - $set * - $replaceRoot * - $replaceWith */ truncatedArrays?: Array<{ /** The name of the truncated field. */ field: string /** The number of elements in the truncated array. */ newSize: number }> /** * A document containing additional information about any ambiguous update paths from the update event. The document * maps the full ambiguous update path to an array containing the actual resolved components of the path. For example, * given a document shaped like `{ a: { '0': 0 } }`, and an update of `{ $inc: 'a.0' }`, disambiguated paths would look like * the following: * * ``` * { * 'a.0': ['a', '0'] * } * ``` * * This field is only present when there are ambiguous paths that are updated as a part of the update event and `showExpandedEvents` * is enabled for the change stream. * @sinceServerVersion 6.1.0 */ disambiguatedPaths?: Document } /** @public */ export declare type UpdateFilter<TSchema> = { $currentDate?: OnlyFieldsOfType< TSchema, Date | Timestamp, | true | { $type: "date" | "timestamp" } > $inc?: OnlyFieldsOfType<TSchema, NumericType | undefined> $min?: MatchKeysAndValues<TSchema> $max?: MatchKeysAndValues<TSchema> $mul?: OnlyFieldsOfType<TSchema, NumericType | undefined> $rename?: Record<string, string> $set?: MatchKeysAndValues<TSchema> $setOnInsert?: MatchKeysAndValues<TSchema> $unset?: OnlyFieldsOfType<TSchema, any, "" | true | 1> $addToSet?: SetFields<TSchema> $pop?: OnlyFieldsOfType<TSchema, ReadonlyArray<any>, 1 | -1> $pull?: PullOperator<TSchema> $push?: PushOperator<TSchema> $pullAll?: PullAllOperator<TSchema> $bit?: OnlyFieldsOfType< TSchema, NumericType | undefined, | { and: IntegerType } | { or: IntegerType } | { xor: IntegerType } > } & Document /** @public */ export declare interface UpdateManyModel<TSchema extends Document = Document> { /** The filter to limit the updated documents. */ filter: Filter<TSchema> /** A document or pipeline containing update operators. */ update: UpdateFilter<TSchema> | UpdateFilter<TSchema>[] /** A set of filters specifying to which array elements an update should apply. */ arrayFilters?: Document[] /** Specifies a collation. */ collation?: CollationOptions /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ hint?: Hint /** When true, creates a new document if no document matches the query. */ upsert?: boolean } /** @public */ export declare interface UpdateOneModel<TSchema extends Document = Document> { /** The filter to limit the updated documents. */ filter: Filter<TSchema> /** A document or pipeline containing update operators. */ update: UpdateFilter<TSchema> | UpdateFilter<TSchema>[] /** A set of filters specifying to which array elements an update should apply. */ arrayFilters?: Document[] /** Specifies a collation. */ collation?: CollationOptions /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ hint?: Hint /** When true, creates a new document if no document matches the query. */ upsert?: boolean } /** @public */ export declare interface UpdateOptions extends CommandOperationOptions { /** A set of filters specifying to which array elements an update should apply */ arrayFilters?: Document[] /** If true, allows the write to opt-out of document level validation */ bypassDocumentValidation?: boolean /** Specifies a collation */ collation?: CollationOptions /** Specify that the update query should only consider plans using the hinted index */ hint?: Hint /** When true, creates a new document if no document matches the query */ upsert?: boolean /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ let?: Document } /** @public */ export declare interface UpdateResult { /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ acknowledged: boolean /** The number of documents that matched the filter */ matchedCount: number /** The number of documents that were modified */ modifiedCount: number /** The number of documents that were upserted */ upsertedCount: number /** The identifier of the inserted document if an upsert took place */ upsertedId: ObjectId } /** @public */ export declare interface UpdateStatement { /** The query that matches documents to update. */ q: Document /** The modifications to apply. */ u: Document | Document[] /** If true, perform an insert if no documents match the query. */ upsert?: boolean /** If true, updates all documents that meet the query criteria. */ multi?: boolean /** Specifies the collation to use for the operation. */ collation?: CollationOptions /** An array of filter documents that determines which array elements to modify for an update operation on an array field. */ arrayFilters?: Document[] /** A document or string that specifies the index to use to support the query predicate. */ hint?: Hint } /** @public */ export declare interface ValidateCollectionOptions extends CommandOperationOptions { /** Validates a collection in the background, without interrupting read or write traffic (only in MongoDB 4.4+) */ background?: boolean } /** @public */ export declare type W = number | "majority" /* Excluded from this release type: WaitQueueMember */ /** @public */ export declare interface WiredTigerData extends Document { LSM: { "bloom filter false positives": number "bloom filter hits": number "bloom filter misses": number "bloom filter pages evicted from cache": number "bloom filter pages read into cache": number "bloom filters in the LSM tree": number "chunks in the LSM tree": number "highest merge generation in the LSM tree": number "queries that could have benefited from a Bloom filter that did not exist": number "sleep for LSM checkpoint throttle": number "sleep for LSM merge throttle": number "total size of bloom filters": number } & Document "block-manager": { "allocations requiring file extension": number "blocks allocated": number "blocks freed": number "checkpoint size": number "file allocation unit size": number "file bytes available for reuse": number "file magic number": number "file major version number": number "file size in bytes": number "minor version number": number } btree: { "btree checkpoint generation": number "column-store fixed-size leaf pages": number "column-store internal pages": number "column-store variable-size RLE encoded values": number "column-store variable-size deleted values": number "column-store variable-size leaf pages": number "fixed-record size": number "maximum internal page key size": number "maximum internal page size": number "maximum leaf page key size": number "maximum leaf page size": number "maximum leaf page value size": number "maximum tree depth": number "number of key/value pairs": number "overflow pages": number "pages rewritten by compaction": number "row-store internal pages": number "row-store leaf pages": number } & Document cache: { "bytes currently in the cache": number "bytes read into cache": number "bytes written from cache": number "checkpoint blocked page eviction": number "data source pages selected for eviction unable to be evicted": number "hazard pointer blocked page eviction": number "in-memory page passed criteria to be split": number "in-memory page splits": number "internal pages evicted": number "internal pages split during eviction": number "leaf pages split during eviction": number "modified pages evicted": number "overflow pages read into cache": number "overflow values cached in memory": number "page split during eviction deepened the tree": number "page written requiring lookaside records": number "pages read into cache": number "pages read into cache requiring lookaside entries": number "pages requested from the cache": number "pages written from cache": number "pages written requiring in-memory restoration": number "tracked dirty bytes in the cache": number "unmodified pages evicted": number } & Document cache_walk: { "Average difference between current eviction generation when the page was last considered": number "Average on-disk page image size seen": number "Clean pages currently in cache": number "Current eviction generation": number "Dirty pages currently in cache": number "Entries in the root page": number "Internal pages currently in cache": number "Leaf pages currently in cache": number "Maximum difference between current eviction generation when the page was last considered": number "Maximum page size seen": number "Minimum on-disk page image size seen": number "On-disk page image sizes smaller than a single allocation unit": number "Pages created in memory and never written": number "Pages currently queued for eviction": number "Pages that could not be queued for eviction": number "Refs skipped during cache traversal": number "Size of the root page": number "Total number of pages currently in cache": number } & Document compression: { "compressed pages read": number "compressed pages written": number "page written failed to compress": number "page written was too small to compress": number "raw compression call failed, additional data available": number "raw compression call failed, no additional data available": number "raw compression call succeeded": number } & Document cursor: { "bulk-loaded cursor-insert calls": number "create calls": number "cursor-insert key and value bytes inserted": number "cursor-remove key bytes removed": number "cursor-update value bytes updated": number "insert calls": number "next calls": number "prev calls": number "remove calls": number "reset calls": number "restarted searches": number "search calls": number "search near calls": number "truncate calls": number "update calls": number } reconciliation: { "dictionary matches": number "fast-path pages deleted": number "internal page key bytes discarded using suffix compression": number "internal page multi-block writes": number "internal-page overflow keys": number "leaf page key bytes discarded using prefix compression": number "leaf page multi-block writes": number "leaf-page overflow keys": number "maximum blocks required for a page": number "overflow values written": number "page checksum matches": number "page reconciliation calls": number "page reconciliation calls for eviction": number "pages deleted": number } & Document } /* Excluded from this release type: WithConnectionCallback */ /** Add an _id field to an object shaped type @public */ export declare type WithId<TSchema> = EnhancedOmit<TSchema, "_id"> & { _id: InferIdType<TSchema> } /** Remove the _id field from an object shaped type @public */ export declare type WithoutId<TSchema> = Omit<TSchema, "_id"> /** @public */ export declare type WithSessionCallback = ( session: ClientSession, ) => Promise<any> /** @public */ export declare type WithTransactionCallback<T = void> = ( session: ClientSession, ) => Promise<T> /** * A MongoDB WriteConcern, which describes the level of acknowledgement * requested from MongoDB for write operations. * @public * * @see path_to_url */ export declare class WriteConcern { /** request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. */ w?: W /** specify a time limit to prevent write operations from blocking indefinitely */ wtimeout?: number /** request acknowledgment that the write operation has been written to the on-disk journal */ j?: boolean /** equivalent to the j option */ fsync?: boolean | 1 /** * Constructs a WriteConcern from the write concern properties. * @param w - request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. * @param wtimeout - specify a time limit to prevent write operations from blocking indefinitely * @param j - request acknowledgment that the write operation has been written to the on-disk journal * @param fsync - equivalent to the j option */ constructor(w?: W, wtimeout?: number, j?: boolean, fsync?: boolean | 1) /** Construct a WriteConcern given an options object. */ static fromOptions( options?: WriteConcernOptions | WriteConcern | W, inherit?: WriteConcernOptions | WriteConcern, ): WriteConcern | undefined } /** * An error representing a failure by the server to apply the requested write concern to the bulk operation. * @public * @category Error */ export declare class WriteConcernError { /* Excluded from this release type: [kServerError] */ constructor(error: WriteConcernErrorData) /** Write concern error code. */ get code(): number | undefined /** Write concern error message. */ get errmsg(): string | undefined /** Write concern error info. */ get errInfo(): Document | undefined toJSON(): WriteConcernErrorData toString(): string } /** @public */ export declare interface WriteConcernErrorData { code: number errmsg: string errInfo?: Document } /** @public */ export declare interface WriteConcernOptions { /** Write Concern as an object */ writeConcern?: WriteConcern | WriteConcernSettings } /** @public */ export declare interface WriteConcernSettings { /** The write concern */ w?: W /** The write concern timeout */ wtimeoutMS?: number /** The journal write concern */ journal?: boolean /** The journal write concern */ j?: boolean /** The write concern timeout */ wtimeout?: number /** The file sync write concern */ fsync?: boolean | 1 } /** * An error that occurred during a BulkWrite on the server. * @public * @category Error */ export declare class WriteError { err: BulkWriteOperationError constructor(err: BulkWriteOperationError) /** WriteError code. */ get code(): number /** WriteError original bulk operation index. */ get index(): number /** WriteError message. */ get errmsg(): string | undefined /** WriteError details. */ get errInfo(): Document | undefined /** Returns the underlying operation that caused the error */ getOperation(): Document toJSON(): { code: number index: number errmsg?: string op: Document } toString(): string } /* Excluded from this release type: WriteProtocolMessageType */ export {} ```
/content/code_sandbox/src/driver/mongodb/typings.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
53,784
```xml import React from 'react'; type IconProps = React.SVGProps<SVGSVGElement>; export declare const IcChevronsLeft: (props: IconProps) => React.JSX.Element; export {}; ```
/content/code_sandbox/packages/icons/lib/icChevronsLeft.d.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
45