【调整】申请证书配置CA选项增加liteSSL证书
@@ -1,21 +0,0 @@
|
||||
import { Transition, type Component as ComponentType, h } from 'vue'
|
||||
import { RouterView } from 'vue-router'
|
||||
import AllinSslThemeProvider from '@/components/AllinSslThemeProvider'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
name: 'App',
|
||||
setup() {
|
||||
return () => (
|
||||
<AllinSslThemeProvider>
|
||||
<RouterView>
|
||||
{({ Component }: { Component: ComponentType }) => (
|
||||
<Transition name="route-slide" mode="out-in">
|
||||
{Component && h(Component)}
|
||||
</Transition>
|
||||
)}
|
||||
</RouterView>
|
||||
</AllinSslThemeProvider>
|
||||
)
|
||||
},
|
||||
})
|
||||
@@ -1,154 +0,0 @@
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type {
|
||||
AccessListParams,
|
||||
AccessListResponse,
|
||||
AddAccessParams,
|
||||
DeleteAccessParams,
|
||||
GetAccessAllListParams,
|
||||
GetAccessAllListResponse,
|
||||
UpdateAccessParams,
|
||||
// CA授权相关类型
|
||||
EabListParams,
|
||||
EabListResponse,
|
||||
EabAddParams,
|
||||
EabUpdateParams,
|
||||
EabDeleteParams,
|
||||
EabGetAllListParams,
|
||||
EabGetAllListResponse,
|
||||
// 新增类型
|
||||
TestAccessParams,
|
||||
GetSitesParams,
|
||||
GetSitesResponse,
|
||||
GetPluginsActionsParams,
|
||||
GetPluginsResponse,
|
||||
GetPluginsActionsResponse,
|
||||
} from '@/types/access' // Sorted types
|
||||
import type { AxiosResponseData } from '@/types/public'
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi } from '@api/index'
|
||||
|
||||
/**
|
||||
* @description 获取授权列表
|
||||
* @param {AccessListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AccessListResponse, AccessListParams>} 获取授权列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getAccessList = (params?: AccessListParams): useAxiosReturn<AccessListResponse, AccessListParams> =>
|
||||
useApi<AccessListResponse, AccessListParams>('/v1/access/get_list', params)
|
||||
|
||||
/**
|
||||
* @description 新增授权
|
||||
* @param {AddAccessParams<string>} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, AddAccessParams<string>>} 新增授权的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const addAccess = (
|
||||
params?: AddAccessParams<string>,
|
||||
): useAxiosReturn<AxiosResponseData, AddAccessParams<string>> =>
|
||||
useApi<AxiosResponseData, AddAccessParams<string>>('/v1/access/add_access', params)
|
||||
|
||||
/**
|
||||
* @description 修改授权
|
||||
* @param {UpdateAccessParams<string>} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, UpdateAccessParams<string>>} 修改授权的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateAccess = (
|
||||
params?: UpdateAccessParams<string>,
|
||||
): useAxiosReturn<AxiosResponseData, UpdateAccessParams<string>> =>
|
||||
useApi<AxiosResponseData, UpdateAccessParams<string>>('/v1/access/upd_access', params)
|
||||
|
||||
/**
|
||||
* @description 删除授权
|
||||
* @param {DeleteAccessParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, DeleteAccessParams>} 删除授权的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteAccess = (params?: DeleteAccessParams): useAxiosReturn<AxiosResponseData, DeleteAccessParams> =>
|
||||
useApi<AxiosResponseData, DeleteAccessParams>('/v1/access/del_access', params)
|
||||
|
||||
/**
|
||||
* @description 获取提供商列表
|
||||
* @param {GetAccessAllListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetAccessAllListResponse, GetAccessAllListParams>} 获取DNS提供商列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getAccessAllList = (
|
||||
params?: GetAccessAllListParams,
|
||||
): useAxiosReturn<GetAccessAllListResponse, GetAccessAllListParams> =>
|
||||
useApi<GetAccessAllListResponse, GetAccessAllListParams>('/v1/access/get_all', params)
|
||||
|
||||
/**
|
||||
* @description 获取ACME账户列表
|
||||
* @param {EabListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<EabListResponse, EabListParams>} 获取ACME账户列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getEabList = (params?: EabListParams): useAxiosReturn<EabListResponse, EabListParams> =>
|
||||
useApi<EabListResponse, EabListParams>('/v1/acme_account/get_list', params)
|
||||
|
||||
/**
|
||||
* @description 添加ACME账户
|
||||
* @param {EabAddParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, EabAddParams>} 添加ACME账户的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const addEab = (params?: EabAddParams): useAxiosReturn<AxiosResponseData, EabAddParams> =>
|
||||
useApi<AxiosResponseData, EabAddParams>('/v1/acme_account/add_account', params)
|
||||
|
||||
/**
|
||||
* @description 修改ACME账户
|
||||
* @param {EabUpdateParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, EabUpdateParams>} 修改ACME账户的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateEab = (params?: EabUpdateParams): useAxiosReturn<AxiosResponseData, EabUpdateParams> =>
|
||||
useApi<AxiosResponseData, EabUpdateParams>('/v1/acme_account/upd_account', params)
|
||||
|
||||
/**
|
||||
* @description 删除ACME账户
|
||||
* @param {EabDeleteParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, EabDeleteParams>} 删除ACME账户的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteEab = (params?: EabDeleteParams): useAxiosReturn<AxiosResponseData, EabDeleteParams> =>
|
||||
useApi<AxiosResponseData, EabDeleteParams>('/v1/acme_account/del_account', params)
|
||||
|
||||
/**
|
||||
* @description 获取CA授权列表下拉框
|
||||
* @param {EabGetAllListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<EabGetAllListResponse, EabGetAllListParams>} 获取CA授权列表下拉框的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getAllEabList = (
|
||||
params?: EabGetAllListParams,
|
||||
): useAxiosReturn<EabGetAllListResponse, EabGetAllListParams> =>
|
||||
useApi<EabGetAllListResponse, EabGetAllListParams>('/v1/access/get_all_eab', params)
|
||||
|
||||
/**
|
||||
* @description 测试授权API
|
||||
* @param {TestAccessParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, TestAccessParams>} 测试授权的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const testAccess = (params?: TestAccessParams): useAxiosReturn<AxiosResponseData, TestAccessParams> =>
|
||||
useApi<AxiosResponseData, TestAccessParams>('/v1/access/test_access', params)
|
||||
|
||||
/**
|
||||
* @description 获取网站列表
|
||||
* @param {GetSitesParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetSitesResponse, GetSitesParams>} 获取网站列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getSites = (params?: GetSitesParams): useAxiosReturn<GetSitesResponse, GetSitesParams> =>
|
||||
useApi<GetSitesResponse, GetSitesParams>('/v1/access/get_sites', params)
|
||||
|
||||
/**
|
||||
* @description 获取插件列表
|
||||
* @returns {useAxiosReturn<AxiosResponseData, void>} 获取插件列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getPlugins = (): useAxiosReturn<GetPluginsResponse, void> =>
|
||||
useApi<GetPluginsResponse, void>('/v1/access/get_plugins')
|
||||
|
||||
/**
|
||||
* @description 获取插件列表
|
||||
* @param {GetPluginsParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetPluginsResponse, GetPluginsActionsParams>} 获取插件列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getPluginsActions = (
|
||||
params: GetPluginsActionsParams,
|
||||
): useAxiosReturn<GetPluginsActionsResponse, GetPluginsActionsParams> =>
|
||||
useApi<GetPluginsActionsResponse, GetPluginsActionsParams>('/v1/access/get_plugin_actions', params)
|
||||
|
||||
|
||||
|
||||
@@ -1,79 +0,0 @@
|
||||
// External library dependencies
|
||||
import axios, { AxiosResponse } from 'axios'
|
||||
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type {
|
||||
CreateRootCaParams,
|
||||
CreateRootCaResponse,
|
||||
CreateIntermediateCaParams,
|
||||
CreateIntermediateCaResponse,
|
||||
GetCaListParams,
|
||||
GetCaListResponse,
|
||||
DeleteCaParams,
|
||||
DeleteCaResponse,
|
||||
CreateLeafCertParams,
|
||||
CreateLeafCertResponse,
|
||||
GetLeafCertListParams,
|
||||
GetLeafCertListResponse,
|
||||
DeleteLeafCertParams,
|
||||
DeleteLeafCertResponse,
|
||||
} from '@/types/ca'
|
||||
|
||||
import { useApi } from "@api/index";
|
||||
|
||||
/**
|
||||
* @description 创建根证书
|
||||
* @param {CreateRootCaParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<CreateRootCaResponse, CreateRootCaParams>}
|
||||
*/
|
||||
export const createRootCa = (params?: CreateRootCaParams): useAxiosReturn<CreateRootCaResponse, CreateRootCaParams> =>
|
||||
useApi<CreateRootCaResponse, CreateRootCaParams>('/v1/private_ca/create_root_ca', params)
|
||||
|
||||
/**
|
||||
* @description 创建中间证书
|
||||
* @param {CreateIntermediateCaParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<CreateIntermediateCaResponse, CreateIntermediateCaParams>}
|
||||
*/
|
||||
export const createIntermediateCa = (params?: CreateIntermediateCaParams): useAxiosReturn<CreateIntermediateCaResponse, CreateIntermediateCaParams> =>
|
||||
useApi<CreateIntermediateCaResponse, CreateIntermediateCaParams>('/v1/private_ca/create_intermediate_ca', params)
|
||||
|
||||
/**
|
||||
* @description 获取CA列表
|
||||
* @param {GetCaListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetCaListResponse, GetCaListParams>} 获取CA列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getCaList = (params?: GetCaListParams): useAxiosReturn<GetCaListResponse, GetCaListParams> =>
|
||||
useApi<GetCaListResponse, GetCaListParams>('/v1/private_ca/get_ca_list', params)
|
||||
|
||||
/**
|
||||
* @description 删除CA
|
||||
* @param {DeleteCaParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<DeleteCaResponse, DeleteCaParams>} 删除CA的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteCa = (params?: DeleteCaParams): useAxiosReturn<DeleteCaResponse, DeleteCaParams> =>
|
||||
useApi<DeleteCaResponse, DeleteCaParams>('/v1/private_ca/del_ca', params)
|
||||
|
||||
/**
|
||||
* @description 创建叶子证书
|
||||
* @param {CreateLeafCertParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<CreateLeafCertResponse, CreateLeafCertParams>} 创建叶子证书的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const createLeafCert = (params?: CreateLeafCertParams): useAxiosReturn<CreateLeafCertResponse, CreateLeafCertParams> =>
|
||||
useApi<CreateLeafCertResponse, CreateLeafCertParams>('/v1/private_ca/create_leaf_cert', params)
|
||||
|
||||
/**
|
||||
* @description 获取叶子证书列表
|
||||
* @param {GetLeafCertListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetLeafCertListResponse, GetLeafCertListParams>} 获取叶子证书列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getLeafCertList = (params?: GetLeafCertListParams): useAxiosReturn<GetLeafCertListResponse, GetLeafCertListParams> =>
|
||||
useApi<GetLeafCertListResponse, GetLeafCertListParams>('/v1/private_ca/get_leaf_cert_list', params)
|
||||
|
||||
/**
|
||||
* @description 删除叶子证书
|
||||
* @param {DeleteLeafCertParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<DeleteLeafCertResponse, DeleteLeafCertParams>} 删除叶子证书的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteLeafCert = (params?: DeleteLeafCertParams): useAxiosReturn<DeleteLeafCertResponse, DeleteLeafCertParams> =>
|
||||
useApi<DeleteLeafCertResponse, DeleteLeafCertParams>('/v1/private_ca/del_leaf_cert', params)
|
||||
@@ -1,61 +0,0 @@
|
||||
// External library dependencies
|
||||
import axios, { AxiosResponse } from 'axios'
|
||||
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type {
|
||||
ApplyCertParams,
|
||||
ApplyCertResponse,
|
||||
CertListParams,
|
||||
CertListResponse,
|
||||
DeleteCertParams,
|
||||
DeleteCertResponse,
|
||||
DownloadCertParams,
|
||||
DownloadCertResponse, // Ensuring this type is imported
|
||||
UploadCertParams,
|
||||
UploadCertResponse,
|
||||
} from '@/types/cert' // Path alias and sorted types
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi } from '@api/index'
|
||||
|
||||
/**
|
||||
* @description 获取证书列表
|
||||
* @param {CertListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<CertListResponse, CertListParams>} 获取证书列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getCertList = (params?: CertListParams): useAxiosReturn<CertListResponse, CertListParams> =>
|
||||
useApi<CertListResponse, CertListParams>('/v1/cert/get_list', params)
|
||||
|
||||
/**
|
||||
* @description 申请证书
|
||||
* @param {ApplyCertParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<ApplyCertResponse, ApplyCertParams>} 申请证书的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const applyCert = (params?: ApplyCertParams): useAxiosReturn<ApplyCertResponse, ApplyCertParams> =>
|
||||
useApi<ApplyCertResponse, ApplyCertParams>('/v1/cert/apply_cert', params)
|
||||
|
||||
/**
|
||||
* @description 上传证书
|
||||
* @param {UploadCertParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<UploadCertResponse, UploadCertParams>} 上传证书的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const uploadCert = (params?: UploadCertParams): useAxiosReturn<UploadCertResponse, UploadCertParams> =>
|
||||
useApi<UploadCertResponse, UploadCertParams>('/v1/cert/upload_cert', params)
|
||||
|
||||
/**
|
||||
* @description 删除证书
|
||||
* @param {DeleteCertParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<DeleteCertResponse, DeleteCertParams>} 删除证书的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteCert = (params?: DeleteCertParams): useAxiosReturn<DeleteCertResponse, DeleteCertParams> =>
|
||||
useApi<DeleteCertResponse, DeleteCertParams>('/v1/cert/del_cert', params)
|
||||
|
||||
/**
|
||||
* @description 下载证书
|
||||
* @param {DownloadCertParams} [params] 请求参数
|
||||
* @returns {Promise<AxiosResponse<DownloadCertResponse>>} 下载结果的 Promise 对象。
|
||||
*/
|
||||
export const downloadCert = (params?: DownloadCertParams): Promise<AxiosResponse<DownloadCertResponse>> => {
|
||||
return axios.get<DownloadCertResponse>('/v1/cert/download', { params })
|
||||
}
|
||||
@@ -1,125 +0,0 @@
|
||||
// External Libraries (sorted alphabetically by module path)
|
||||
import { HttpClient, useAxios, useAxiosReturn } from "@baota/hooks/axios";
|
||||
import { errorMiddleware } from "@baota/hooks/axios/model";
|
||||
import { isDev } from "@baota/utils/browser";
|
||||
import { AxiosError } from "axios";
|
||||
import MD5 from "crypto-js/md5";
|
||||
|
||||
// Type Imports (sorted alphabetically by module path)
|
||||
import type { AxiosResponseData } from "@/types/public";
|
||||
import type { Ref } from "vue";
|
||||
|
||||
// Relative Internal Imports (sorted alphabetically by module path)
|
||||
import { router } from "@router/index";
|
||||
|
||||
/**
|
||||
* @description 处理返回数据,如果状态码为 401 或 404
|
||||
* @param {AxiosError} error 错误对象
|
||||
* @returns {AxiosError} 错误对象
|
||||
*/
|
||||
export const responseHandleStatusCode = errorMiddleware((error: AxiosError) => {
|
||||
// 处理 401 状态码
|
||||
if (error.status === 401) {
|
||||
router.push(`/login`);
|
||||
}
|
||||
// 处理404状态码
|
||||
if (error.status === 404) {
|
||||
// router.go(0) // 刷新页面
|
||||
}
|
||||
return error;
|
||||
});
|
||||
|
||||
/**
|
||||
* @description 返回数据
|
||||
* @param {T} data 数据
|
||||
* @returns {AxiosResponseData<T>} 返回数据
|
||||
*/
|
||||
export const useApiReturn = <T>(
|
||||
data: T,
|
||||
message?: string
|
||||
): AxiosResponseData<T> => {
|
||||
return {
|
||||
code: 200,
|
||||
count: 0,
|
||||
data,
|
||||
message: message || "请求返回值错误,请检查",
|
||||
status: false,
|
||||
} as AxiosResponseData<T>;
|
||||
};
|
||||
|
||||
/**
|
||||
* @description 创建http客户端实例
|
||||
*/
|
||||
export const instance = new HttpClient({
|
||||
baseURL: isDev() ? "/api" : "/",
|
||||
timeout: 50000,
|
||||
headers: {
|
||||
"Content-Type": "application/x-www-form-urlencoded",
|
||||
},
|
||||
middlewares: [responseHandleStatusCode],
|
||||
});
|
||||
|
||||
/**
|
||||
* @description API Token 结构
|
||||
*/
|
||||
interface ApiTokenResult {
|
||||
api_token: string;
|
||||
timestamp: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 创建api token
|
||||
* @returns {ApiTokenResult} 包含API token和时间戳的对象
|
||||
*/
|
||||
export const createApiToken = (): ApiTokenResult => {
|
||||
const now = new Date().getTime();
|
||||
const apiKey = "123456"; // 注意: 此处为硬编码密钥,建议后续优化
|
||||
const api_token = MD5(now + MD5(apiKey).toString()).toString();
|
||||
return { api_token, timestamp: now };
|
||||
};
|
||||
|
||||
/**
|
||||
* @description 创建axios请求
|
||||
* @param {string} url 请求地址
|
||||
* @param {Z} [params] 请求参数
|
||||
* @returns {useAxiosReturn<T, Z>} 返回结果
|
||||
*/
|
||||
export const useApi = <T, Z = Record<string, unknown>>(
|
||||
url: string,
|
||||
params?: Z
|
||||
) => {
|
||||
const { urlRef, paramsRef, ...other } = useAxios<T>(instance);
|
||||
const apiParams = createApiToken();
|
||||
urlRef.value = url;
|
||||
paramsRef.value = isDev()
|
||||
? { ...(params || {}), ...apiParams }
|
||||
: params || {};
|
||||
return { urlRef, paramsRef: paramsRef as Ref<Z>, ...other } as useAxiosReturn<
|
||||
T,
|
||||
Z
|
||||
>;
|
||||
};
|
||||
|
||||
/**
|
||||
* @description get请求
|
||||
* @param {string} url 请求地址
|
||||
* @param {Z} [params] 请求参数
|
||||
* @returns {useAxiosReturn<T, Z>} 返回结果
|
||||
*/
|
||||
export const useGet = <T, Z = Record<string, unknown>>(
|
||||
url: string,
|
||||
params?: Z
|
||||
) => {
|
||||
return instance.get(url, {
|
||||
data: { ...createApiToken(), ...params },
|
||||
});
|
||||
};
|
||||
|
||||
// 导出所有模块
|
||||
export * from './public'
|
||||
export * from './workflow'
|
||||
export * from './cert'
|
||||
export * from "./ca";
|
||||
export * from './access'
|
||||
export * from './monitor'
|
||||
export * from './setting'
|
||||
@@ -1,118 +0,0 @@
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type {
|
||||
AddSiteMonitorParams,
|
||||
DeleteSiteMonitorParams,
|
||||
FileImportMonitorParams,
|
||||
FileImportMonitorResponse,
|
||||
GetErrorRecordParams,
|
||||
GetErrorRecordResponse,
|
||||
GetMonitorDetailParams,
|
||||
GetMonitorDetailResponse,
|
||||
SetSiteMonitorParams,
|
||||
SiteMonitorListParams,
|
||||
SiteMonitorListResponse,
|
||||
TemplateDownloadParams,
|
||||
UpdateSiteMonitorParams,
|
||||
} from '@/types/monitor' // Sorted types
|
||||
import type { AxiosResponseData } from '@/types/public'
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi } from '@api/index'
|
||||
|
||||
/**
|
||||
* @description 获取站点监控列表
|
||||
* @param {SiteMonitorListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<SiteMonitorListResponse, SiteMonitorListParams>} 获取站点监控列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getSiteMonitorList = (
|
||||
params?: SiteMonitorListParams,
|
||||
): useAxiosReturn<SiteMonitorListResponse, SiteMonitorListParams> =>
|
||||
useApi<SiteMonitorListResponse, SiteMonitorListParams>('/v1/monitor/get_list', params)
|
||||
|
||||
/**
|
||||
* @description 新增站点监控
|
||||
* @param {AddSiteMonitorParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, AddSiteMonitorParams>} 新增站点监控的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const addSiteMonitor = (
|
||||
params?: AddSiteMonitorParams,
|
||||
): useAxiosReturn<AxiosResponseData, AddSiteMonitorParams> =>
|
||||
useApi<AxiosResponseData, AddSiteMonitorParams>('/v1/monitor/add_monitor', params)
|
||||
|
||||
/**
|
||||
* @description 修改站点监控
|
||||
* @param {UpdateSiteMonitorParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, UpdateSiteMonitorParams>} 修改站点监控的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateSiteMonitor = (
|
||||
params?: UpdateSiteMonitorParams,
|
||||
): useAxiosReturn<AxiosResponseData, UpdateSiteMonitorParams> =>
|
||||
useApi<AxiosResponseData, UpdateSiteMonitorParams>('/v1/monitor/upd_monitor', params)
|
||||
|
||||
/**
|
||||
* @description 删除站点监控
|
||||
* @param {DeleteSiteMonitorParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, DeleteSiteMonitorParams>} 删除站点监控的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteSiteMonitor = (
|
||||
params?: DeleteSiteMonitorParams,
|
||||
): useAxiosReturn<AxiosResponseData, DeleteSiteMonitorParams> =>
|
||||
useApi<AxiosResponseData, DeleteSiteMonitorParams>('/v1/monitor/del_monitor', params)
|
||||
|
||||
/**
|
||||
* @description 启用/禁用站点监控
|
||||
* @param {SetSiteMonitorParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, SetSiteMonitorParams>} 启用/禁用站点监控的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const setSiteMonitor = (
|
||||
params?: SetSiteMonitorParams,
|
||||
): useAxiosReturn<AxiosResponseData, SetSiteMonitorParams> =>
|
||||
useApi<AxiosResponseData, SetSiteMonitorParams>('/v1/monitor/set_monitor', params)
|
||||
|
||||
/**
|
||||
* @description 获取监控详情信息
|
||||
* @param {GetMonitorDetailParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetMonitorDetailResponse, GetMonitorDetailParams>} 获取监控详情信息的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getMonitorDetail = (
|
||||
params?: GetMonitorDetailParams,
|
||||
): useAxiosReturn<GetMonitorDetailResponse, GetMonitorDetailParams> =>
|
||||
useApi<GetMonitorDetailResponse, GetMonitorDetailParams>('/v1/monitor/get_monitor_info', params)
|
||||
|
||||
/**
|
||||
* @description 获取监控错误记录
|
||||
* @param {GetErrorRecordParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetErrorRecordResponse, GetErrorRecordParams>} 获取监控错误记录的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getMonitorErrorRecord = (
|
||||
params?: GetErrorRecordParams,
|
||||
): useAxiosReturn<GetErrorRecordResponse, GetErrorRecordParams> =>
|
||||
useApi<GetErrorRecordResponse, GetErrorRecordParams>('/v1/monitor/get_err_record', params)
|
||||
|
||||
/**
|
||||
* @description 文件导入监控
|
||||
* @param {FileImportMonitorParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<FileImportMonitorResponse, FileImportMonitorParams>} 文件导入监控的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const fileImportMonitor = (
|
||||
params?: FileImportMonitorParams,
|
||||
): useAxiosReturn<FileImportMonitorResponse, FileImportMonitorParams> =>
|
||||
useApi<FileImportMonitorResponse, FileImportMonitorParams>('/v1/monitor/file_add_monitor', params)
|
||||
|
||||
/**
|
||||
* @description 下载监控模板
|
||||
* @param {TemplateDownloadParams} params 请求参数
|
||||
* @returns {Promise<Blob>} 返回模板文件的Blob对象
|
||||
*/
|
||||
export const downloadMonitorTemplate = async (params: TemplateDownloadParams): Promise<Blob> => {
|
||||
const response = await fetch(`/v1/monitor/template?type=${params.type}`, {
|
||||
method: 'GET',
|
||||
})
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`下载模板失败: ${response.statusText}`)
|
||||
}
|
||||
|
||||
return response.blob()
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
// External library dependencies
|
||||
import axios, { type AxiosResponse } from 'axios'
|
||||
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type {
|
||||
AxiosResponseData,
|
||||
GetOverviewsParams,
|
||||
GetOverviewsResponse,
|
||||
loginCodeResponse, // Added this type based on usage
|
||||
loginParams,
|
||||
loginResponse,
|
||||
} from '@/types/public' // Sorted types
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi } from '@api/index'
|
||||
|
||||
/**
|
||||
* @description 登录
|
||||
* @param {loginParams} [params] 登录参数
|
||||
* @returns {useAxiosReturn<loginResponse, loginParams>} 登录操作的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const login = (params?: loginParams): useAxiosReturn<loginResponse, loginParams> =>
|
||||
useApi<loginResponse, loginParams>('/v1/login/sign', params)
|
||||
|
||||
/**
|
||||
* @description 获取登录验证码
|
||||
* @returns {Promise<AxiosResponse<loginCodeResponse>>} 获取登录验证码的 Promise 对象。
|
||||
*/
|
||||
export const getLoginCode = (): Promise<AxiosResponse<loginCodeResponse>> => {
|
||||
return axios.get<loginCodeResponse>('/v1/login/get_code')
|
||||
}
|
||||
|
||||
/**
|
||||
* @description 登出
|
||||
* @returns {useAxiosReturn<AxiosResponseData, unknown>} 登出操作的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const signOut = (): useAxiosReturn<AxiosResponseData, unknown> =>
|
||||
useApi<AxiosResponseData, unknown>('/v1/login/sign-out', {})
|
||||
|
||||
/**
|
||||
* @description 获取首页概览
|
||||
* @param {GetOverviewsParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetOverviewsResponse, GetOverviewsParams>} 获取首页概览数据的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getOverviews = (params?: GetOverviewsParams): useAxiosReturn<GetOverviewsResponse, GetOverviewsParams> =>
|
||||
useApi<GetOverviewsResponse, GetOverviewsParams>('/v1/overview/get_overviews', params)
|
||||
@@ -1,118 +0,0 @@
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type { AxiosResponseData } from '@/types/public'
|
||||
import type {
|
||||
AddReportParams,
|
||||
DeleteReportParams,
|
||||
GetReportListParams,
|
||||
GetReportListResponse,
|
||||
GetSettingParams,
|
||||
GetSettingResponse,
|
||||
GetVersionParams,
|
||||
GetVersionResponse,
|
||||
SaveSettingParams,
|
||||
TestReportParams,
|
||||
UpdateReportParams,
|
||||
} from '@/types/setting' // Sorted types
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi, createApiToken } from "@api/index";
|
||||
import { isDev } from "@baota/utils/browser";
|
||||
|
||||
/**
|
||||
* @description 获取系统设置
|
||||
* @param {GetSettingParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetSettingResponse, GetSettingParams>} 获取系统设置的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getSystemSetting = (
|
||||
params?: GetSettingParams
|
||||
): useAxiosReturn<GetSettingResponse, GetSettingParams> =>
|
||||
useApi<GetSettingResponse, GetSettingParams>(
|
||||
"/v1/setting/get_setting",
|
||||
params
|
||||
);
|
||||
|
||||
/**
|
||||
* @description 保存系统设置
|
||||
* @param {SaveSettingParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, SaveSettingParams>} 保存系统设置的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const saveSystemSetting = (
|
||||
params?: SaveSettingParams
|
||||
): useAxiosReturn<AxiosResponseData, SaveSettingParams> =>
|
||||
useApi<AxiosResponseData, SaveSettingParams>(
|
||||
"/v1/setting/save_setting",
|
||||
params
|
||||
);
|
||||
|
||||
/**
|
||||
* @description 添加告警
|
||||
* @param {AddReportParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, AddReportParams>} 添加告警的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const addReport = (
|
||||
params?: AddReportParams
|
||||
): useAxiosReturn<AxiosResponseData, AddReportParams> =>
|
||||
useApi<AxiosResponseData, AddReportParams>("/v1/report/add_report", params);
|
||||
|
||||
/**
|
||||
* @description 更新告警
|
||||
* @param {UpdateReportParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, UpdateReportParams>} 更新告警的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateReport = (
|
||||
params?: UpdateReportParams
|
||||
): useAxiosReturn<AxiosResponseData, UpdateReportParams> =>
|
||||
useApi<AxiosResponseData, UpdateReportParams>(
|
||||
"/v1/report/upd_report",
|
||||
params
|
||||
);
|
||||
|
||||
/**
|
||||
* @description 删除告警
|
||||
* @param {DeleteReportParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, DeleteReportParams>} 删除告警的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteReport = (
|
||||
params?: DeleteReportParams
|
||||
): useAxiosReturn<AxiosResponseData, DeleteReportParams> =>
|
||||
useApi<AxiosResponseData, DeleteReportParams>(
|
||||
"/v1/report/del_report",
|
||||
params
|
||||
);
|
||||
|
||||
/**
|
||||
* @description 测试告警
|
||||
* @param {TestReportParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, TestReportParams>} 测试告警的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const testReport = (
|
||||
params?: TestReportParams
|
||||
): useAxiosReturn<AxiosResponseData, TestReportParams> =>
|
||||
useApi<AxiosResponseData, TestReportParams>("/v1/report/notify_test", params);
|
||||
|
||||
/**
|
||||
* @description 获取告警类型列表
|
||||
* @param {GetReportListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetReportListResponse, GetReportListParams>} 获取告警类型列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getReportList = (
|
||||
params?: GetReportListParams
|
||||
): useAxiosReturn<GetReportListResponse, GetReportListParams> =>
|
||||
useApi<GetReportListResponse, GetReportListParams>(
|
||||
"/v1/report/get_list",
|
||||
params
|
||||
);
|
||||
|
||||
/**
|
||||
* @description 获取版本信息
|
||||
* @param {GetVersionParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<GetVersionResponse, GetVersionParams>} 获取版本信息的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getVersion = (
|
||||
params?: GetVersionParams
|
||||
): useAxiosReturn<GetVersionResponse, GetVersionParams> =>
|
||||
useApi<GetVersionResponse, GetVersionParams>(
|
||||
"/v1/setting/get_version",
|
||||
params
|
||||
);
|
||||
@@ -1,116 +0,0 @@
|
||||
// Type imports
|
||||
import type { useAxiosReturn } from '@baota/hooks/axios'
|
||||
import type { AxiosResponseData } from '@/types/public'
|
||||
import type {
|
||||
AddWorkflowParams,
|
||||
DeleteWorkflowParams,
|
||||
EnableWorkflowParams,
|
||||
ExecuteWorkflowParams,
|
||||
StopWorkflowParams,
|
||||
UpdateWorkflowExecTypeParams,
|
||||
UpdateWorkflowParams,
|
||||
WorkflowHistoryDetailParams,
|
||||
WorkflowHistoryParams,
|
||||
WorkflowHistoryResponse,
|
||||
WorkflowListParams,
|
||||
WorkflowListResponse,
|
||||
} from '@/types/workflow' // Sorted types
|
||||
|
||||
// Relative internal imports
|
||||
import { useApi } from '@api/index'
|
||||
|
||||
/**
|
||||
* @description 获取工作流列表
|
||||
* @param {WorkflowListParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<WorkflowListResponse, WorkflowListParams>} 获取工作流列表的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getWorkflowList = (
|
||||
params?: WorkflowListParams,
|
||||
): useAxiosReturn<WorkflowListResponse, WorkflowListParams> =>
|
||||
useApi<WorkflowListResponse, WorkflowListParams>('/v1/workflow/get_list', params)
|
||||
|
||||
/**
|
||||
* @description 新增工作流
|
||||
* @param {AddWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, AddWorkflowParams>} 新增工作流的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const addWorkflow = (params?: AddWorkflowParams): useAxiosReturn<AxiosResponseData, AddWorkflowParams> =>
|
||||
useApi<AxiosResponseData, AddWorkflowParams>('/v1/workflow/add_workflow', params)
|
||||
|
||||
/**
|
||||
* @description 修改工作流
|
||||
* @param {UpdateWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, UpdateWorkflowParams>} 修改工作流的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateWorkflow = (
|
||||
params?: UpdateWorkflowParams,
|
||||
): useAxiosReturn<AxiosResponseData, UpdateWorkflowParams> =>
|
||||
useApi<AxiosResponseData, UpdateWorkflowParams>('/v1/workflow/upd_workflow', params)
|
||||
|
||||
/**
|
||||
* @description 删除工作流
|
||||
* @param {DeleteWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, DeleteWorkflowParams>} 删除工作流的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const deleteWorkflow = (
|
||||
params?: DeleteWorkflowParams,
|
||||
): useAxiosReturn<AxiosResponseData, DeleteWorkflowParams> =>
|
||||
useApi<AxiosResponseData, DeleteWorkflowParams>('/v1/workflow/del_workflow', params)
|
||||
|
||||
/**
|
||||
* @description 获取工作流执行历史
|
||||
* @param {WorkflowHistoryParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<WorkflowHistoryResponse, WorkflowHistoryParams>} 获取工作流执行历史的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getWorkflowHistory = (
|
||||
params?: WorkflowHistoryParams,
|
||||
): useAxiosReturn<WorkflowHistoryResponse, WorkflowHistoryParams> =>
|
||||
useApi<WorkflowHistoryResponse, WorkflowHistoryParams>('/v1/workflow/get_workflow_history', params)
|
||||
|
||||
/**
|
||||
* @description 获取工作流执行历史详情
|
||||
* @param {WorkflowHistoryDetailParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, WorkflowHistoryDetailParams>} 获取工作流执行历史详情的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const getWorkflowHistoryDetail = (
|
||||
params?: WorkflowHistoryDetailParams,
|
||||
): useAxiosReturn<AxiosResponseData, WorkflowHistoryDetailParams> =>
|
||||
useApi<AxiosResponseData, WorkflowHistoryDetailParams>('/v1/workflow/get_exec_log', params)
|
||||
|
||||
/**
|
||||
* @description 手动执行工作流
|
||||
* @param {ExecuteWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, ExecuteWorkflowParams>} 手动执行工作流的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const executeWorkflow = (
|
||||
params?: ExecuteWorkflowParams,
|
||||
): useAxiosReturn<AxiosResponseData, ExecuteWorkflowParams> =>
|
||||
useApi<AxiosResponseData, ExecuteWorkflowParams>('/v1/workflow/execute_workflow', params)
|
||||
|
||||
/**
|
||||
* @description 修改工作流执行方式
|
||||
* @param {UpdateWorkflowExecTypeParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, UpdateWorkflowExecTypeParams>} 修改工作流执行方式的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const updateWorkflowExecType = (
|
||||
params?: UpdateWorkflowExecTypeParams,
|
||||
): useAxiosReturn<AxiosResponseData, UpdateWorkflowExecTypeParams> =>
|
||||
useApi<AxiosResponseData, UpdateWorkflowExecTypeParams>('/v1/workflow/exec_type', params)
|
||||
|
||||
/**
|
||||
* @description 启用工作流或禁用工作流
|
||||
* @param {EnableWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, EnableWorkflowParams>} 启用或禁用工作流的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const enableWorkflow = (
|
||||
params?: EnableWorkflowParams,
|
||||
): useAxiosReturn<AxiosResponseData, EnableWorkflowParams> =>
|
||||
useApi<AxiosResponseData, EnableWorkflowParams>('/v1/workflow/active', params)
|
||||
|
||||
/**
|
||||
* @description 停止工作流执行
|
||||
* @param {StopWorkflowParams} [params] 请求参数
|
||||
* @returns {useAxiosReturn<AxiosResponseData, StopWorkflowParams>} 停止工作流执行的组合式 API 调用封装。包含响应数据、加载状态及执行函数。
|
||||
*/
|
||||
export const stopWorkflow = (params?: StopWorkflowParams): useAxiosReturn<AxiosResponseData, StopWorkflowParams> =>
|
||||
useApi<AxiosResponseData, StopWorkflowParams>('/v1/workflow/stop', params)
|
||||
@@ -1,79 +0,0 @@
|
||||
<svg width="64.000000pt" height="64.000000pt" viewBox="0 0 64.000000 64.000000" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(0.000000,64.000000) scale(0.100000,-0.100000)" fill="#fefefe" stroke="none">
|
||||
<path d="M0 320 l0 -320 320 0 320 0 0 320 0 320 -320 0 -320 0 0 -320z m205
|
||||
184 c-11 -9 -27 -21 -35 -27 -9 -7 -26 -25 -38 -41 l-22 -29 0 -55 0 -55 34
|
||||
-31 c39 -37 94 -56 162 -56 l49 0 42 19 c64 30 82 82 42 122 l-22 22 -74 -7
|
||||
-75 -6 -29 29 -29 29 9 24 c4 13 26 33 47 45 l39 23 47 0 47 0 56 -21 56 -21
|
||||
34 -33 c18 -19 38 -49 45 -69 l11 -35 -11 -43 -12 -43 -48 -46 -47 -47 -54
|
||||
-17 c-108 -36 -230 -16 -308 51 -45 39 -81 100 -81 136 1 35 34 100 66 129 25
|
||||
23 100 68 114 68 3 0 -4 -7 -15 -15z" />
|
||||
</g>
|
||||
<g transform="translate(0.000000,64.000000) scale(0.100000,-0.100000)" fill="#2470f0" stroke="none">
|
||||
<path d="M267 498 c-42 -21 -63 -55 -54 -90 10 -38 95 -75 111 -49 5 7 50 8
|
||||
98 2 4 -1 15 -12 23 -25 l16 -25 -11 -23 c-17 -32 -51 -58 -77 -58 -13 0 -23
|
||||
-4 -23 -10 l0 -10 -44 0 c-25 0 -48 5 -51 10 -3 6 -15 10 -26 10 -29 0 -87 41
|
||||
-98 70 -12 29 -14 44 -12 82 l1 27 30 34 c17 19 30 40 30 46 0 40 -99 -37
|
||||
-130 -101 l-18 -38 5 -42 6 -43 26 -35 c27 -36 71 -79 82 -80 4 0 24 -7 45
|
||||
-16 l39 -17 88 -1 c48 -1 87 2 87 7 0 4 8 7 18 7 27 0 117 56 135 84 9 14 23
|
||||
44 32 68 l14 43 -11 35 c-7 19 -23 50 -36 69 l-25 33 -46 22 c-25 11 -50 21
|
||||
-56 22 -5 1 -12 3 -15 4 -3 1 -30 3 -60 4 l-55 2 -38 -18z" />
|
||||
</g>
|
||||
<g transform="translate(0.000000,64.000000) scale(0.100000,-0.100000)" fill="#2573f7" stroke="none">
|
||||
<path d="M159 505 c-25 -13 -60 -40 -77 -59 -30 -34 -52 -90 -52 -131 1 -38
|
||||
37 -101 81 -138 l43 -37 50 -15 c64 -19 169 -19 233 0 l50 15 45 40 c48 41 73
|
||||
86 65 117 l-4 18 -7 -20 c-4 -11 -15 -35 -24 -54 l-17 -35 -45 -28 c-25 -16
|
||||
-57 -32 -72 -35 -16 -3 -28 -8 -28 -12 0 -3 -35 -5 -78 -4 l-77 1 -45 18 c-25
|
||||
10 -46 17 -47 16 -6 -5 -103 105 -98 110 2 2 0 19 -4 38 l-7 35 14 30 c17 35
|
||||
69 92 97 107 l20 11 -26 -29 c-35 -38 -52 -72 -43 -85 l7 -12 13 29 c17 38 31
|
||||
54 77 88 20 16 37 32 37 37 0 16 -33 9 -81 -16z" />
|
||||
<path d="M277 506 c-49 -18 -67 -34 -67 -60 l0 -21 23 27 c12 15 36 33 52 39
|
||||
33 12 101 15 127 4 9 -4 22 -4 28 0 5 3 10 2 10 -2 0 -8 41 -27 63 -31 14 -1
|
||||
66 -76 67 -94 0 -9 5 -20 10 -23 l10 -6 0 23 c0 13 -11 40 -25 60 l-25 36 -53
|
||||
26 -53 26 -64 5 -65 5 -38 -14z" />
|
||||
<path d="M210 409 c0 -23 32 -48 65 -51 53 -3 95 2 95 12 0 13 -47 13 -54 1
|
||||
-4 -5 -12 -8 -19 -7 -20 3 -61 28 -74 45 l-12 16 -1 -16z" />
|
||||
<path d="M380 371 c0 -5 11 -12 25 -15 13 -3 30 -16 36 -27 l11 -22 -11 -23
|
||||
c-5 -13 -28 -32 -50 -44 l-40 -20 -51 0 -50 0 -45 21 c-48 22 -85 61 -85 87
|
||||
l0 16 -13 -13 -12 -13 13 -5 c6 -3 10 -8 7 -13 -5 -9 51 -67 60 -62 3 1 13 -4
|
||||
22 -13 8 -9 22 -14 29 -11 7 3 16 1 19 -4 4 -6 31 -10 61 -10 l54 0 0 11 c0 5
|
||||
5 7 10 4 16 -10 75 31 88 60 17 38 15 53 -13 80 -23 24 -65 34 -65 16z" />
|
||||
</g>
|
||||
<g transform="translate(0.000000,64.000000) scale(0.100000,-0.100000)" fill="#2a74f0" stroke="none">
|
||||
<path d="M164 504 l-19 -15 24 7 24 6 -7 -11 c-4 -6 -3 -11 3 -11 5 0 13 5 16
|
||||
10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 9 15 -9 12 -31 -6z" />
|
||||
<path d="M290 510 c0 -5 4 -10 9 -10 6 0 13 5 16 10 l6 10 -15 0 c-9 0 -16 -4
|
||||
-16 -10z" />
|
||||
<path d="M395 510 c3 -5 10 -10 16 -10 5 0 9 5 9 10 0 6 -7 10 -16 10 l-15 0
|
||||
6 -10z" />
|
||||
<path d="M474 485 c11 -8 25 -15 30 -15 6 0 2 7 -8 15 -11 8 -25 15 -30 15 -6
|
||||
0 -2 -7 8 -15z" />
|
||||
<path d="M70 428 c-16 -22 -30 -46 -29 -52 0 -6 6 -2 12 8 7 11 25 34 41 53
|
||||
15 18 23 33 17 33 -6 0 -24 -19 -41 -42z" />
|
||||
<path d="M205 437 c-4 -10 -5 -21 -1 -24 10 -10 18 4 13 24 l-4 18 -8 -18z" />
|
||||
<path d="M120 420 c-6 -12 -9 -24 -7 -27 3 -2 11 5 17 17 6 12 9 24 7 27 -3 2
|
||||
-11 -5 -17 -17z" />
|
||||
<path d="M260 360 c0 -5 7 -10 16 -10 l15 0 -6 10 c-3 6 -10 10 -16 10 -5 0
|
||||
-9 -4 -9 -10z" />
|
||||
<path d="M100 351 c0 -6 5 -13 10 -16 l10 -6 0 15 c0 9 -4 16 -10 16 -5 0 -10
|
||||
-4 -10 -9z" />
|
||||
<path d="M592 330 c1 -16 5 -30 10 -30 4 0 8 14 8 30 0 17 -4 30 -9 30 -5 0
|
||||
-9 -13 -9 -30z" />
|
||||
<path d="M30 296 c0 -9 5 -16 10 -16 6 0 10 4 10 9 0 6 -4 13 -10 16 l-10 6 0
|
||||
-15z" />
|
||||
<path d="M130 282 c0 -12 19 -26 26 -19 2 2 -2 10 -11 17 l-15 12 0 -10z" />
|
||||
<path d="M425 260 c-10 -11 -13 -20 -8 -20 13 0 38 29 31 35 -3 3 -13 -4 -23
|
||||
-15z" />
|
||||
<path d="M566 234 c-10 -14 -16 -28 -13 -30 2 -3 12 7 21 22 10 14 16 28 13
|
||||
30 -2 3 -12 -7 -21 -22z" />
|
||||
<path d="M70 221 c0 -5 5 -13 10 -16 6 -3 10 -2 10 4 0 5 -4 13 -10 16 -5 3
|
||||
-10 2 -10 -4z" />
|
||||
<path d="M105 180 c3 -5 11 -10 16 -10 6 0 7 5 4 10 -3 6 -11 10 -16 10 -6 0
|
||||
-7 -4 -4 -10z" />
|
||||
<path d="M515 180 c-3 -5 -2 -10 4 -10 5 0 13 5 16 10 3 6 2 10 -4 10 -5 0
|
||||
-13 -4 -16 -10z" />
|
||||
<path d="M195 130 c3 -5 11 -10 16 -10 6 0 7 5 4 10 -3 6 -11 10 -16 10 -6 0
|
||||
-7 -4 -4 -10z" />
|
||||
<path d="M425 130 c-3 -5 -2 -10 4 -10 5 0 13 5 16 10 3 6 2 10 -4 10 -5 0
|
||||
-13 -4 -16 -10z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750124792955" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12638" width="20" height="20" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M706.432 374.4c-75.946667 18.517333-75.946667 116.224 0 134.954667a666.517333 666.517333 0 0 1-25.877333 77.141333c-86.613333-20.970667-125.226667 58.026667-83.349334 109.056-5.738667 30.442667-35.690667 37.034667-57.450666 51.413333-44.544-53.482667-148.821333-35.370667-141.013334 51.669334h-90.133333c9.450667-81.066667-95.658667-110.912-134.250667-51.669334-29.141333-7.381333-49.877333-23.04-64.426666-44.821333 39.402667-55.978667 8.597333-136-83.349334-115.626667C17.130667 562.005333 7.893333 536.277333 1.130667 509.333333c72.853333-11.52 72.853333-123.413333 0-134.954666 6.762667-27.136 16-52.864 25.450666-77.354667 87.018667 21.205333 125.610667-58.24 83.328-109.034667 6.357333-30.656 36.117333-36.821333 57.898667-51.2C212.138667 190.293333 316.202667 171.946667 308.608 85.333333h90.112c-9.429333 80.853333 95.850667 110.677333 134.442667 51.434667 28.757333 7.616 49.706667 23.04 64.042666 44.650667-38.592 55.957333-8.618667 135.978667 83.349334 115.626666a656.490667 656.490667 0 0 1 25.877333 77.333334z m-352.661333 201.386667c73.472 0 133.632-60.053333 133.632-133.909334 0-74.069333-60.16-133.909333-133.632-133.909333a133.653333 133.653333 0 0 0-133.632 133.909333c0 73.856 59.733333 133.930667 133.632 133.930667z m669.781333 135.808c-41.664 5.141333-47.402667 56.768-8.618667 71.594666-5.525333 13.589333-11.882667 26.538667-18.261333 38.890667-44.757333-16.277333-69.781333 23.232-50.901333 52.864-5.333333 15.850667-21.333333 17.066667-33.877334 23.466667-20.117333-30.869333-76.586667-27.584-77.994666 18.901333a1126.613333 1126.613333 0 0 0-47.637334-5.333333c10.069333-42.794667-43.733333-65.002667-68.138666-36.202667-14.570667-5.76-24.426667-15.232-30.592-27.584 23.808-27.157333 12.736-71.573333-37.333334-66.645333a316.032 316.032 0 0 1-8.64-42.176c38.997333-1.429333 45.973333-61.098667 8.213334-71.808 5.333333-13.781333 11.690667-26.752 18.261333-39.082667 44.949333 16.469333 70.186667-23.04 51.114667-52.693333 5.12-15.616 20.928-17.258667 33.856-23.829334 20.117333 31.466667 76.586667 27.968 77.397333-18.133333 16.213333 1.877333 32 3.52 47.829333 5.568-10.453333 42.581333 44.138667 64.426667 67.946667 35.584a59.52 59.52 0 0 1 31.616 27.797333c-24.64 26.944-13.12 71.36 36.736 66.432 3.904 13.376 6.570667 27.584 9.024 42.389334z m-199.509333 84.757333c39.189333 4.522667 74.709333-23.466667 78.613333-62.549333 5.333333-39.509333-23.189333-74.666667-62.208-79.189334-39.189333-4.736-73.877333 23.466667-79.018667 62.336-4.309333 39.296 23.402667 74.88 62.613334 79.402667z" fill="#3ABCFB" p-id="12639"></path></svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1747902416932" class="icon" viewBox="0 0 1273 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10903" width="49.7265625" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M692.017327 292.268083l29.243926 0.499287 79.457889-79.457889 3.851639-33.666179A355.634679 355.634679 0 0 0 567.409668 89.300966c-164.621909 0-303.566225 112.011372-344.693171 263.737423 8.673321-6.0485 27.21825-1.512125 27.21825-1.512125l158.773124-26.105554s8.159769-13.509268 12.296714-12.838797A198.002782 198.002782 0 0 1 567.509525 247.86011c47.075589 0.099857 90.442193 16.733232 124.507802 44.251054z" fill="#EA4335" p-id="10904"></path><path d="M912.302554 353.352227a357.674622 357.674622 0 0 0-107.774569-173.708925l-112.510658 112.510658c45.078443 36.376592 73.994267 92.03991 73.994267 154.350872v19.85734c54.736072 0 99.201106 44.564891 99.201105 99.201105 0 54.736072-44.564891 99.201106-99.201105 99.201106H567.609383L547.752043 684.735845v119.058445l19.85734 19.757482h198.402211A258.345128 258.345128 0 0 0 1024.000089 565.577542c-0.099857-87.803107-44.222523-165.477829-111.697535-212.21105z" fill="#4285F4" p-id="10905"></path><path d="M369.007457 823.68016h198.288089V664.764383h-198.288089a98.288124 98.288124 0 0 1-40.827375-8.873036l-28.630517 8.773178-79.457889 79.457889-6.961481 26.818821a256.775942 256.775942 0 0 0 155.862997 52.624802z" fill="#34A853" p-id="10906"></path><path d="M369.007457 307.70317A258.345128 258.345128 0 0 0 111.018962 565.6774c0 83.780284 40.128374 158.273837 102.225356 205.463549l115.035622-115.035622a99.286697 99.286697 0 0 1-58.473588-90.427927c0-54.736072 44.564891-99.201106 99.201105-99.201106 40.228231 0 74.807391 24.251061 90.442193 58.487854l115.035622-115.035622c-47.175447-62.096982-121.683266-102.225355-205.46355-102.225356z" fill="#FBBC05" p-id="10907"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1747988020538" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5468" width="40" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M776.399 1023.968H247.664a41.194 41.194 0 0 1-41.053-41.021V591.801a41.18 41.18 0 0 1 41.053-41.053h49.661v-63.227c0-118.393 96.346-214.675 214.675-214.675s214.674 96.347 214.674 214.675v63.228h49.661a41.18 41.18 0 0 1 41.05 41.052v391.145a41.167 41.167 0 0 1-40.986 41.055zM538.785 807.565a54.36 54.36 0 0 0-26.686-101.722h-0.128a54.4 54.4 0 0 0-27.073 101.558l0.256 0.128v52.989a26.782 26.782 0 0 0 53.565 0zM420.454 550.75H603.61v-63.228a91.547 91.547 0 0 0-183.093 0z m-226.418-58.3H66.46a37.47 37.47 0 1 1 0-74.939h127.576a37.47 37.47 0 1 1 0 74.939z m89.882-200.691h-0.1a37.06 37.06 0 0 1-23.743-8.575l0.064 0.064-100.89-82.971a37.483 37.483 0 1 1 47.677-57.852l-0.064-0.064 100.89 82.971a37.468 37.468 0 0 1-23.767 66.426h-0.1z m228.082-88.218a37.458 37.458 0 0 1-37.47-37.47V37.47a37.47 37.47 0 0 1 74.939 0v128.6a37.458 37.458 0 0 1-37.47 37.47z m228.085 88.217h-0.16a37.42 37.42 0 0 1-23.742-66.332l0.064-0.064 100.89-82.971a37.471 37.471 0 0 1 47.677 57.82l-0.064 0.064-100.89 82.971a37.184 37.184 0 0 1-23.711 8.479h-0.064zM957.54 492.449H828.748a37.47 37.47 0 1 1 0-74.939H957.54a37.47 37.47 0 1 1 0 74.939z" fill="#003A70" p-id="5469"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1747901885171" class="icon" viewBox="0 0 1113 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5838" width="43.4765625" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M107.287 512.928c0-79.047-0.045-158.094 0.03-237.141 0.02-21.15 1.256-42.135 9.203-62.181 23.74-59.883 67.166-95.237 130.865-105.518 8.582-1.385 17.221-1.667 25.889-1.667 159.718 0.009 319.436-0.021 479.155 0.019 74.315 0.019 133.182 41.364 157.993 111.108 6.12 17.204 8.542 35.132 8.54 53.403-0.022 161.072 0.122 322.144-0.072 483.215-0.091 75.418-50.342 141.59-119.876 158.868-15.044 3.738-30.331 5.422-45.807 5.423-160.26 0.014-320.521 0.29-480.78-0.12-71.188-0.182-121.825-33.848-152.353-97.864-10.72-22.48-12.842-46.672-12.817-71.218 0.081-78.774 0.03-157.551 0.03-236.327z m283.66-4.813v136.454H254.062v138.583h138.402V645.64h138.004v137.437h138.576V644.705h137.443V505.977H668.339V367.658H530.496V229.98H391.685v138.154H254.216c-0.365 1.798-0.66 2.576-0.661 3.354-0.035 43.047 0.079 86.094-0.188 129.139-0.042 6.738 3.542 6.504 8.205 6.495 39.798-0.073 79.596-0.06 119.394-0.007 3.173 0.005 6.462-0.676 9.981 1z" fill="#4D70D4" p-id="5839"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m576 512 277.333 277.333-64 64L512 576 234.667 853.333l-64-64L448 512 170.667 234.667l64-64L512 448l277.333-277.333 64 64L576 512z"/></svg>
|
||||
|
Before Width: | Height: | Size: 250 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="64 64 896 896" data-icon="solution" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M688 264c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48zm-8 136H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM480 544H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm-48 308H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h264c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm356.8-74.4c29-26.3 47.2-64.3 47.2-106.6 0-79.5-64.5-144-144-144s-144 64.5-144 144c0 42.3 18.2 80.3 47.2 106.6-57 32.5-96.2 92.7-99.2 162.1-.2 4.5 3.5 8.3 8 8.3h48.1c4.2 0 7.7-3.3 8-7.6C564 871.2 621.7 816 692 816s128 55.2 131.9 124.4c.2 4.2 3.7 7.6 8 7.6H880c4.6 0 8.2-3.8 8-8.3-2.9-69.5-42.2-129.6-99.2-162.1zM692 591c44.2 0 80 35.8 80 80s-35.8 80-80 80-80-35.8-80-80 35.8-80 80-80z"/></svg>
|
||||
|
Before Width: | Height: | Size: 958 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="64 64 896 896" data-icon="sisternode" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M672 432c-120.3 0-219.9 88.5-237.3 204H320c-15.5 0-28-12.5-28-28V244h291c14.2 35.2 48.7 60 89 60 53 0 96-43 96-96s-43-96-96-96c-40.3 0-74.8 24.8-89 60H112v72h108v364c0 55.2 44.8 100 100 100h114.7c17.4 115.5 117 204 237.3 204 132.5 0 240-107.5 240-240S804.5 432 672 432zm128 266c0 4.4-3.6 8-8 8h-86v86c0 4.4-3.6 8-8 8h-52c-4.4 0-8-3.6-8-8v-86h-86c-4.4 0-8-3.6-8-8v-52c0-4.4 3.6-8 8-8h86v-86c0-4.4 3.6-8 8-8h52c4.4 0 8 3.6 8 8v86h86c4.4 0 8 3.6 8 8v52z"/></svg>
|
||||
|
Before Width: | Height: | Size: 584 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="64 64 896 896" data-icon="deployment-unit" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M888.3 693.2c-42.5-24.6-94.3-18-129.2 12.8l-53-30.7V523.6c0-15.7-8.4-30.3-22-38.1l-136-78.3v-67.1c44.2-15 76-56.8 76-106.1 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 49.3 31.8 91.1 76 106.1v67.1l-136 78.3c-13.6 7.8-22 22.4-22 38.1v151.6l-53 30.7c-34.9-30.8-86.8-37.4-129.2-12.8-53.5 31-71.7 99.4-41 152.9 30.8 53.5 98.9 71.9 152.2 41 42.5-24.6 62.7-73 53.6-118.8l48.7-28.3 140.6 81c6.8 3.9 14.4 5.9 22 5.9s15.2-2 22-5.9L674.5 740l48.7 28.3c-9.1 45.7 11.2 94.2 53.6 118.8 53.3 30.9 121.5 12.6 152.2-41 30.8-53.6 12.6-122-40.7-152.9zm-673 138.4a47.6 47.6 0 0 1-65.2-17.6c-13.2-22.9-5.4-52.3 17.5-65.5a47.6 47.6 0 0 1 65.2 17.6c13.2 22.9 5.4 52.3-17.5 65.5zM522 463.8zM464 234a48.01 48.01 0 0 1 96 0 48.01 48.01 0 0 1-96 0zm170 446.2-122 70.3-122-70.3V539.8l122-70.3 122 70.3v140.4zm239.9 133.9c-13.2 22.9-42.4 30.8-65.2 17.6-22.8-13.2-30.7-42.6-17.5-65.5s42.4-30.8 65.2-17.6c22.9 13.2 30.7 42.5 17.5 65.5z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M64 512a448 448 0 1 0 896 0 448 448 0 1 0-896 0z" fill="#FA5151"/><path d="m557.3 512 113.1-113.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L512 466.7 398.9 353.6c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L466.7 512 353.6 625.1c-12.5 12.5-12.5 32.8 0 45.3 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4L512 557.3l113.1 113.1c6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4c12.5-12.5 12.5-32.8 0-45.3L557.3 512z" fill="#FFF"/></svg>
|
||||
|
Before Width: | Height: | Size: 538 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="64 64 896 896" data-icon="send" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M931.4 498.9 94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2a15.99 15.99 0 0 0-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"/></svg>
|
||||
|
Before Width: | Height: | Size: 525 B |
@@ -1,4 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M566.446451 30.031087a467.343774 467.343774 0 0 0 234.783037 105.108804 711.977007 711.977007 0 0 0 109.012845 7.928207 31.592703 31.592703 0 0 1 31.472579 29.370403c3.964103 54.055956 1.561617 108.111913 2.522611 162.588304 0.660684 37.178486 0.54056 74.417033-1.861927 111.535457-6.426653 99.282773-22.763564 196.403308-66.909262 286.736817a518.937181 518.937181 0 0 1-184.991495 208.05537A755.462021 755.462021 0 0 1 523.862369 1022.017948a35.436683 35.436683 0 0 1-23.244061 0c-98.742214-34.235439-188.775412-82.8858-261.991202-159.044636C171.477596 792.820693 129.554199 709.334272 106.190013 615.817467A875.165933 875.165933 0 0 1 83.786822 473.59024C76.218989 380.433808 80.783714 287.217315 80.603527 194.000821a183.309754 183.309754 0 0 1 1.38143-18.979647 36.878175 36.878175 0 0 1 37.959294-31.712827A714.739867 714.739867 0 0 0 223.551501 135.260015 469.085577 469.085577 0 0 0 456.052175 31.592703 248.176902 248.176902 0 0 1 490.107428 6.006217a44.506071 44.506071 0 0 1 44.746319 0.54056A243.371928 243.371928 0 0 1 566.446451 30.031087zM155.320871 351.664027a960.274034 960.274034 0 0 0 3.723855 132.136782 687.291454 687.291454 0 0 0 32.793947 162.528243 440.135609 440.135609 0 0 0 136.641445 199.22623 601.642794 601.642794 0 0 0 176.582791 99.162649 20.661388 20.661388 0 0 0 15.496041-0.660684 658.221362 658.221362 0 0 0 127.992492-63.906153 446.742448 446.742448 0 0 0 183.850314-234.602851c28.229222-81.864743 35.37662-166.912781 38.019356-252.261129 1.681741-55.437386-1.861927-110.934835-1.681741-166.432284 0-7.267523-2.282363-9.730072-9.67001-10.150507a719.004282 719.004282 0 0 1-91.414628-10.931316 529.087688 529.087688 0 0 1-248.11684-117.841985 9.489823 9.489823 0 0 0-15.015544 0A527.105637 527.105637 0 0 1 388.662416 162.768491c-70.693178 33.754942-145.951082 48.650361-223.55141 53.455334-7.207461 0.480497-9.970321 2.522611-9.910259 9.970321 0.240249 41.923397 0.120124 83.666608 0.120124 125.469881z" fill="currentColor"/>
|
||||
<path d="M362.054873 472.328934A37.839169 37.839169 0 0 1 391.725587 485.302364c21.021761 21.081823 42.043522 42.043522 63.00522 63.245469 6.006217 6.006217 9.489823 5.585782 15.19573 0Q549.749166 467.944396 629.932168 388.001642c15.075606-15.075606 32.073201-24.024869 60.062174-4.14429a29.670714 29.670714 0 0 1 4.804974 43.665201c-15.73629 17.718341-33.034196 33.99519-49.73148 50.752536L493.230661 629.99214c-21.322072 21.26201-41.022465 21.26201-62.404599 0-30.751833-30.691771-61.683852-61.263417-92.135374-92.195436-20.72145-21.021761-15.435979-52.374215 10.030383-62.945158a28.169159 28.169159 0 0 1 13.333802-2.522612z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M64 512a448 448 0 1 0 896 0 448 448 0 1 0-896 0z" fill="#07C160"/><path d="M466.7 679.8c-8.5 0-16.6-3.4-22.6-9.4l-181-181.1c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l158.4 158.5 249-249c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L489.3 670.4c-6 6-14.1 9.4-22.6 9.4z" fill="#FFF"/></svg>
|
||||
|
Before Width: | Height: | Size: 398 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="64 64 896 896" data-icon="cloud-upload" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M518.3 459a8 8 0 0 0-12.6 0l-112 141.7a7.98 7.98 0 0 0 6.3 12.9h73.9V856c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V613.7H624c6.7 0 10.4-7.7 6.3-12.9L518.3 459z"/><path d="M811.4 366.7C765.6 245.9 648.9 160 512.2 160S258.8 245.8 213 366.6C127.3 389.1 64 467.2 64 560c0 110.5 89.5 200 199.9 200H304c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8h-40.1c-33.7 0-65.4-13.4-89-37.7-23.5-24.2-36-56.8-34.9-90.6.9-26.4 9.9-51.2 26.2-72.1 16.7-21.3 40.1-36.8 66.1-43.7l37.9-9.9 13.9-36.6c8.6-22.8 20.6-44.1 35.7-63.4a245.6 245.6 0 0 1 52.4-49.9c41.1-28.9 89.5-44.2 140-44.2s98.9 15.3 140 44.2c19.9 14 37.5 30.8 52.4 49.9 15.1 19.3 27.1 40.7 35.7 63.4l13.8 36.5 37.8 10C846.1 454.5 884 503.8 884 560c0 33.1-12.9 64.3-36.3 87.7a123.07 123.07 0 0 1-87.6 36.3H720c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h40.1C870.5 760 960 670.5 960 560c0-92.7-63.1-170.7-148.6-193.3z"/></svg>
|
||||
|
Before Width: | Height: | Size: 968 B |
@@ -1,24 +0,0 @@
|
||||
<svg viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21.000000" height="21.000000" fill="none" customFrame="#000000">
|
||||
<defs>
|
||||
<clipPath id="clipPath_2">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
<clipPath id="clipPath_3">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="组合 54">
|
||||
<rect id="矩形 41" width="21.000000" height="21.000000" x="0.000000" y="0.000000" rx="6.000000" fill="rgb(244,209,180)" />
|
||||
<rect id="矩形 41" width="20.000000" height="20.000000" x="0.500000" y="0.500000" rx="5.500000" stroke="rgb(244,209,180)" stroke-width="1" />
|
||||
<g id="svg 10" clip-path="url(#clipPath_2)" customFrame="url(#clipPath_2)">
|
||||
<rect id="svg 10" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<g id="svg 10" clip-path="url(#clipPath_3)" customFrame="url(#clipPath_3)">
|
||||
<rect id="svg 10" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<path id="矢量 79" d="M10.4999 4.72217C7.32217 4.72217 4.72217 7.32217 4.72217 10.4999C4.72217 13.6777 7.32217 16.2777 10.4999 16.2777C13.6777 16.2777 16.2777 13.6777 16.2777 10.4999C16.2777 7.32217 13.6777 4.72217 10.4999 4.72217ZM10.4999 15.5555C7.68327 15.5555 5.44439 13.3166 5.44439 10.4999C5.44439 7.68327 7.68327 5.44439 10.4999 5.44439C13.3166 5.44439 15.5555 7.68327 15.5555 10.4999C15.5555 13.3166 13.3166 15.5555 10.4999 15.5555Z" fill="rgb(31,31,31)" fill-rule="nonzero" />
|
||||
<path id="矢量 79" d="M4.72217 10.4999C4.72217 13.6777 7.32217 16.2777 10.4999 16.2777C13.6777 16.2777 16.2777 13.6777 16.2777 10.4999C16.2777 7.32217 13.6777 4.72217 10.4999 4.72217C7.32217 4.72217 4.72217 7.32217 4.72217 10.4999ZM5.44439 10.4999C5.44439 7.68327 7.68327 5.44439 10.4999 5.44439C13.3166 5.44439 15.5555 7.68327 15.5555 10.4999C15.5555 13.3166 13.3166 15.5555 10.4999 15.5555C7.68327 15.5555 5.44439 13.3166 5.44439 10.4999Z" fill-rule="nonzero" stroke="rgb(31,31,31)" stroke-width="0.5" />
|
||||
<path id="矢量 80" d="M10.5001 12.6667C10.2834 12.6667 10.1389 12.7389 9.9945 12.8834C9.85006 13.0278 9.77783 13.1722 9.77783 13.3889C9.77783 13.6056 9.85006 13.75 9.9945 13.8945C10.1389 14.0389 10.2834 14.1111 10.5001 14.1111C10.7167 14.1111 10.8612 14.0389 11.0056 13.8945C11.1501 13.75 11.2223 13.6056 11.2223 13.3889C11.2223 13.1722 11.1501 13.0278 11.0056 12.8834C10.8612 12.7389 10.7167 12.6667 10.5001 12.6667L10.5001 12.6667ZM9.85005 6.88892L10.0667 12.0889L10.8612 12.0889L11.1501 6.88892L9.85005 6.88892Z" fill="rgb(31,31,31)" fill-rule="nonzero" />
|
||||
<path id="矢量 80" d="M9.9945 12.8834C9.85006 13.0278 9.77783 13.1722 9.77783 13.3889C9.77783 13.6056 9.85006 13.75 9.9945 13.8945C10.1389 14.0389 10.2834 14.1111 10.5001 14.1111C10.7167 14.1111 10.8612 14.0389 11.0056 13.8945C11.1501 13.75 11.2223 13.6056 11.2223 13.3889C11.2223 13.1722 11.1501 13.0278 11.0056 12.8834C10.8612 12.7389 10.7167 12.6667 10.5001 12.6667L10.5001 12.6667C10.2834 12.6667 10.1389 12.7389 9.9945 12.8834ZM10.0667 12.0889L10.8612 12.0889L11.1501 6.88892L9.85005 6.88892L10.0667 12.0889Z" fill-rule="nonzero" stroke="rgb(31,31,31)" stroke-width="0.300000012" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,24 +0,0 @@
|
||||
<svg viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21.000000" height="21.000000" fill="none" customFrame="#000000">
|
||||
<defs>
|
||||
<clipPath id="clipPath_2">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
<clipPath id="clipPath_3">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="组合 54">
|
||||
<rect id="矩形 41" width="21.000000" height="21.000000" x="0.000000" y="0.000000" rx="6.000000" fill="rgb(255,242,242)" fill-opacity="0" />
|
||||
<rect id="矩形 41" width="19.500000" height="19.500000" x="0.750000" y="0.750000" rx="5.250000" stroke="rgb(231,78,78)" stroke-width="1.5" />
|
||||
<g id="svg 10" clip-path="url(#clipPath_2)" customFrame="url(#clipPath_2)">
|
||||
<rect id="svg 10" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<g id="svg 10" clip-path="url(#clipPath_3)" customFrame="url(#clipPath_3)">
|
||||
<rect id="svg 10" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<path id="矢量 79" d="M10.4999 4.72223C7.32217 4.72223 4.72217 7.32223 4.72217 10.5C4.72217 13.6778 7.32217 16.2778 10.4999 16.2778C13.6777 16.2778 16.2777 13.6778 16.2777 10.5C16.2777 7.32223 13.6777 4.72223 10.4999 4.72223ZM10.4999 15.5556C7.68327 15.5556 5.44439 13.3167 5.44439 10.5C5.44439 7.68333 7.68327 5.44445 10.4999 5.44445C13.3166 5.44445 15.5555 7.68333 15.5555 10.5C15.5555 13.3167 13.3166 15.5556 10.4999 15.5556Z" fill="rgb(255,136,136)" fill-rule="nonzero" />
|
||||
<path id="矢量 79" d="M4.72217 10.5C4.72217 13.6778 7.32217 16.2778 10.4999 16.2778C13.6777 16.2778 16.2777 13.6778 16.2777 10.5C16.2777 7.32223 13.6777 4.72223 10.4999 4.72223C7.32217 4.72223 4.72217 7.32223 4.72217 10.5ZM5.44439 10.5C5.44439 7.68333 7.68327 5.44445 10.4999 5.44445C13.3166 5.44445 15.5555 7.68333 15.5555 10.5C15.5555 13.3167 13.3166 15.5556 10.4999 15.5556C7.68327 15.5556 5.44439 13.3167 5.44439 10.5Z" fill-rule="nonzero" stroke="rgb(255,136,136)" stroke-width="0.5" />
|
||||
<path id="矢量 80" d="M10.5001 12.6667C10.2834 12.6667 10.1389 12.7389 9.9945 12.8833C9.85006 13.0278 9.77783 13.1722 9.77783 13.3889C9.77783 13.6055 9.85006 13.75 9.9945 13.8944C10.1389 14.0389 10.2834 14.1111 10.5001 14.1111C10.7167 14.1111 10.8612 14.0389 11.0056 13.8944C11.1501 13.75 11.2223 13.6055 11.2223 13.3889C11.2223 13.1722 11.1501 13.0278 11.0056 12.8833C10.8612 12.7389 10.7167 12.6667 10.5001 12.6667L10.5001 12.6667ZM9.85005 6.88889L10.0667 12.0889L10.8612 12.0889L11.1501 6.88889L9.85005 6.88889Z" fill="rgb(255,136,136)" fill-rule="nonzero" />
|
||||
<path id="矢量 80" d="M9.9945 12.8833C9.85006 13.0278 9.77783 13.1722 9.77783 13.3889C9.77783 13.6055 9.85006 13.75 9.9945 13.8944C10.1389 14.0389 10.2834 14.1111 10.5001 14.1111C10.7167 14.1111 10.8612 14.0389 11.0056 13.8944C11.1501 13.75 11.2223 13.6055 11.2223 13.3889C11.2223 13.1722 11.1501 13.0278 11.0056 12.8833C10.8612 12.7389 10.7167 12.6667 10.5001 12.6667L10.5001 12.6667C10.2834 12.6667 10.1389 12.7389 9.9945 12.8833ZM10.0667 12.0889L10.8612 12.0889L11.1501 6.88889L9.85005 6.88889L10.0667 12.0889Z" fill-rule="nonzero" stroke="rgb(255,136,136)" stroke-width="0.300000012" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 26 KiB |
@@ -1,18 +0,0 @@
|
||||
<svg viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21.000000" height="21.000000" fill="none" customFrame="#000000">
|
||||
<defs>
|
||||
<clipPath id="clipPath_1">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="组合 53">
|
||||
<rect id="矩形 40" width="21.000000" height="21.000000" x="0.000000" y="0.000000" rx="6.000000" fill="rgb(244,209,180)" />
|
||||
<rect id="矩形 40" width="20.000000" height="20.000000" x="0.500000" y="0.500000" rx="5.500000" stroke="rgb(244,209,180)" stroke-width="1" />
|
||||
<g id="svg 9" clip-path="url(#clipPath_1)" customFrame="url(#clipPath_1)">
|
||||
<rect id="svg 9" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<path id="矢量 77" d="M15.7724 8.57917C15.5147 7.9698 15.1452 7.42136 14.6742 6.95164C14.2045 6.48191 13.6561 6.11248 13.0467 5.85349C12.4145 5.58689 11.7442 5.45105 11.0535 5.45105C10.3629 5.45105 9.69133 5.58689 9.05911 5.85349C8.44973 6.11121 7.90129 6.48064 7.43157 6.95164C6.96184 7.42136 6.59241 7.9698 6.33342 8.57917C6.06682 9.2114 5.93098 9.88171 5.93098 10.5723C5.93098 10.7653 5.94241 10.9595 5.96399 11.1512L5.2175 10.4378C5.11594 10.3413 4.95598 10.3438 4.85823 10.4454C4.76174 10.5469 4.76428 10.7069 4.86584 10.8047L6.17346 12.0552C6.22043 12.1009 6.28391 12.125 6.34866 12.125L6.35881 12.125C6.42737 12.1224 6.49211 12.0907 6.53782 12.0399L7.73752 10.6828C7.8302 10.5774 7.82004 10.4175 7.71594 10.3248C7.61057 10.2321 7.45061 10.2423 7.35793 10.3464L6.49719 11.3188C6.45784 11.0738 6.43752 10.8224 6.43752 10.5723C6.43752 8.0282 8.50686 5.95886 11.051 5.95886C13.5951 5.95886 15.6645 8.0282 15.6645 10.5723C15.6645 13.1165 13.5951 15.1858 11.051 15.1858C9.87795 15.1858 8.75949 14.7453 7.90256 13.9442C7.79973 13.849 7.63977 13.8541 7.54328 13.9569C7.4468 14.0597 7.45315 14.2197 7.55598 14.3162C8.50686 15.2049 9.74846 15.6949 11.051 15.6949C11.7429 15.6949 12.4132 15.5591 13.0442 15.2925C13.6535 15.0347 14.202 14.6653 14.6717 14.1943C15.1414 13.7246 15.5109 13.1761 15.7698 12.5668C16.0364 11.9345 16.1723 11.2642 16.1723 10.5736C16.1748 9.88171 16.039 9.21013 15.7724 8.57917L15.7724 8.57917Z" fill="rgb(31,31,31)" fill-rule="nonzero" />
|
||||
<path id="矢量 77" d="M14.6742 6.95164C14.2045 6.48191 13.6561 6.11248 13.0467 5.85349C12.4145 5.58689 11.7442 5.45105 11.0535 5.45105C10.3629 5.45105 9.69133 5.58689 9.05911 5.85349C8.44973 6.11121 7.90129 6.48064 7.43157 6.95164C6.96184 7.42136 6.59241 7.9698 6.33342 8.57917C6.06682 9.2114 5.93098 9.88171 5.93098 10.5723C5.93098 10.7653 5.94241 10.9595 5.96399 11.1512L5.2175 10.4378C5.11594 10.3413 4.95598 10.3438 4.85823 10.4454C4.76174 10.5469 4.76428 10.7069 4.86584 10.8047L6.17346 12.0552C6.22043 12.1009 6.28391 12.125 6.34866 12.125L6.35881 12.125C6.42737 12.1224 6.49211 12.0907 6.53782 12.0399L7.73752 10.6828C7.8302 10.5774 7.82004 10.4175 7.71594 10.3248C7.61057 10.2321 7.45061 10.2423 7.35793 10.3464L6.49719 11.3188C6.45784 11.0738 6.43752 10.8224 6.43752 10.5723C6.43752 8.0282 8.50686 5.95886 11.051 5.95886C13.5951 5.95886 15.6645 8.0282 15.6645 10.5723C15.6645 13.1165 13.5951 15.1858 11.051 15.1858C9.87795 15.1858 8.75949 14.7453 7.90256 13.9442C7.79973 13.849 7.63977 13.8541 7.54328 13.9569C7.4468 14.0597 7.45315 14.2197 7.55598 14.3162C8.50686 15.2049 9.74846 15.6949 11.051 15.6949C11.7429 15.6949 12.4132 15.5591 13.0442 15.2925C13.6535 15.0347 14.202 14.6653 14.6717 14.1943C15.1414 13.7246 15.5109 13.1761 15.7698 12.5668C16.0364 11.9345 16.1723 11.2642 16.1723 10.5736C16.1748 9.88171 16.039 9.21013 15.7724 8.57917L15.7724 8.57917C15.5147 7.9698 15.1452 7.42136 14.6742 6.95164Z" fill-rule="nonzero" stroke="rgb(31,31,31)" stroke-width="0.800000012" />
|
||||
<path id="矢量 78" d="M10.6777 7.49756C10.5089 7.49756 10.373 7.6334 10.373 7.80225L10.373 10.9583C10.373 11.1271 10.5089 11.263 10.6777 11.263L13.8338 11.263C14.0026 11.263 14.1385 11.1271 14.1385 10.9583C14.1385 10.7895 14.0026 10.6536 13.8338 10.6536L10.9824 10.6536L10.9824 7.80225C10.9824 7.63467 10.8466 7.49756 10.6777 7.49756Z" fill="rgb(31,31,31)" fill-rule="nonzero" />
|
||||
<path id="矢量 78" d="M10.373 7.80225L10.373 10.9583C10.373 11.1271 10.5089 11.263 10.6777 11.263L13.8338 11.263C14.0026 11.263 14.1385 11.1271 14.1385 10.9583C14.1385 10.7895 14.0026 10.6536 13.8338 10.6536L10.9824 10.6536L10.9824 7.80225C10.9824 7.63467 10.8466 7.49756 10.6777 7.49756C10.5089 7.49756 10.373 7.6334 10.373 7.80225Z" fill-rule="nonzero" stroke="rgb(31,31,31)" stroke-width="0.800000012" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.5 KiB |
@@ -1,18 +0,0 @@
|
||||
<svg viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21.000000" height="21.000000" fill="none" customFrame="#000000">
|
||||
<defs>
|
||||
<clipPath id="clipPath_1">
|
||||
<rect width="13.000000" height="13.000000" x="4.000000" y="4.000000" fill="rgb(255,255,255)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="组合 53">
|
||||
<rect id="矩形 40" width="21.000000" height="21.000000" x="0.000000" y="0.000000" rx="6.000000" fill="rgb(243,255,241)" fill-opacity="0" />
|
||||
<rect id="矩形 40" width="19.500000" height="19.500000" x="0.750000" y="0.750000" rx="5.250000" stroke="rgb(255,118,24)" stroke-width="1.5" />
|
||||
<g id="svg 9" clip-path="url(#clipPath_1)" customFrame="url(#clipPath_1)">
|
||||
<rect id="svg 9" width="13.000000" height="13.000000" x="4.000000" y="4.000000" />
|
||||
<path id="矢量 77" d="M15.7724 8.57921C15.5147 7.96983 15.1452 7.42139 14.6742 6.95167C14.2045 6.48194 13.6561 6.11251 13.0467 5.85352C12.4145 5.58692 11.7442 5.45108 11.0535 5.45108C10.3629 5.45108 9.69133 5.58692 9.05911 5.85352C8.44973 6.11124 7.90129 6.48067 7.43157 6.95167C6.96184 7.42139 6.59241 7.96983 6.33342 8.57921C6.06682 9.21143 5.93098 9.88174 5.93098 10.5724C5.93098 10.7653 5.94241 10.9596 5.96399 11.1513L5.2175 10.4378C5.11594 10.3413 4.95598 10.3439 4.85823 10.4454C4.76174 10.547 4.76428 10.7069 4.86584 10.8047L6.17346 12.0552C6.22043 12.1009 6.28391 12.125 6.34866 12.125L6.35881 12.125C6.42737 12.1225 6.49211 12.0907 6.53782 12.0399L7.73752 10.6828C7.8302 10.5774 7.82004 10.4175 7.71594 10.3248C7.61057 10.2321 7.45061 10.2423 7.35793 10.3464L6.49719 11.3189C6.45784 11.0738 6.43752 10.8225 6.43752 10.5724C6.43752 8.02823 8.50686 5.95889 11.051 5.95889C13.5951 5.95889 15.6645 8.02823 15.6645 10.5724C15.6645 13.1165 13.5951 15.1858 11.051 15.1858C9.87795 15.1858 8.75949 14.7453 7.90256 13.9442C7.79973 13.849 7.63977 13.8541 7.54328 13.9569C7.4468 14.0598 7.45315 14.2197 7.55598 14.3162C8.50686 15.2049 9.74846 15.6949 11.051 15.6949C11.7429 15.6949 12.4132 15.5591 13.0442 15.2925C13.6535 15.0348 14.202 14.6653 14.6717 14.1943C15.1414 13.7246 15.5109 13.1762 15.7698 12.5668C16.0364 11.9346 16.1723 11.2643 16.1723 10.5736C16.1748 9.88174 16.039 9.21016 15.7724 8.5792L15.7724 8.57921Z" fill="rgb(255,163,84)" fill-rule="nonzero" />
|
||||
<path id="矢量 77" d="M14.6742 6.95167C14.2045 6.48194 13.6561 6.11251 13.0467 5.85352C12.4145 5.58692 11.7442 5.45108 11.0535 5.45108C10.3629 5.45108 9.69133 5.58692 9.05911 5.85352C8.44973 6.11124 7.90129 6.48067 7.43157 6.95167C6.96184 7.42139 6.59241 7.96983 6.33342 8.57921C6.06682 9.21143 5.93098 9.88174 5.93098 10.5724C5.93098 10.7653 5.94241 10.9596 5.96399 11.1513L5.2175 10.4378C5.11594 10.3413 4.95598 10.3439 4.85823 10.4454C4.76174 10.547 4.76428 10.7069 4.86584 10.8047L6.17346 12.0552C6.22043 12.1009 6.28391 12.125 6.34866 12.125L6.35881 12.125C6.42737 12.1225 6.49211 12.0907 6.53782 12.0399L7.73752 10.6828C7.8302 10.5774 7.82004 10.4175 7.71594 10.3248C7.61057 10.2321 7.45061 10.2423 7.35793 10.3464L6.49719 11.3189C6.45784 11.0738 6.43752 10.8225 6.43752 10.5724C6.43752 8.02823 8.50686 5.95889 11.051 5.95889C13.5951 5.95889 15.6645 8.02823 15.6645 10.5724C15.6645 13.1165 13.5951 15.1858 11.051 15.1858C9.87795 15.1858 8.75949 14.7453 7.90256 13.9442C7.79973 13.849 7.63977 13.8541 7.54328 13.9569C7.4468 14.0598 7.45315 14.2197 7.55598 14.3162C8.50686 15.2049 9.74846 15.6949 11.051 15.6949C11.7429 15.6949 12.4132 15.5591 13.0442 15.2925C13.6535 15.0348 14.202 14.6653 14.6717 14.1943C15.1414 13.7246 15.5109 13.1762 15.7698 12.5668C16.0364 11.9346 16.1723 11.2643 16.1723 10.5736C16.1748 9.88174 16.039 9.21016 15.7724 8.5792L15.7724 8.57921C15.5147 7.96983 15.1452 7.42139 14.6742 6.95167Z" fill-rule="nonzero" stroke="rgb(255,163,84)" stroke-width="0.800000012" />
|
||||
<path id="矢量 78" d="M10.6777 7.49756C10.5089 7.49756 10.373 7.6334 10.373 7.80225L10.373 10.9583C10.373 11.1271 10.5089 11.263 10.6777 11.263L13.8338 11.263C14.0026 11.263 14.1385 11.1271 14.1385 10.9583C14.1385 10.7895 14.0026 10.6536 13.8338 10.6536L10.9824 10.6536L10.9824 7.80225C10.9824 7.63467 10.8466 7.49756 10.6777 7.49756Z" fill="rgb(255,163,84)" fill-rule="nonzero" />
|
||||
<path id="矢量 78" d="M10.373 7.80225L10.373 10.9583C10.373 11.1271 10.5089 11.263 10.6777 11.263L13.8338 11.263C14.0026 11.263 14.1385 11.1271 14.1385 10.9583C14.1385 10.7895 14.0026 10.6536 13.8338 10.6536L10.9824 10.6536L10.9824 7.80225C10.9824 7.63467 10.8466 7.49756 10.6777 7.49756C10.5089 7.49756 10.373 7.6334 10.373 7.80225Z" fill-rule="nonzero" stroke="rgb(255,163,84)" stroke-width="0.800000012" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M717.62 682.138h116.582l-212.02 296.396-5.12-1.792 46.08-194.816h-91.136c10.24-47.257 20.07-91.648 30.72-140.185-25.907 7.782-48.537 12.288-69.17 21.299-44.698 19.456-84.89 11.162-121.14-17.613a455.68 455.68 0 0 1-66.97-63.232c-20.48-24.473-13.977-38.451 17.05-43.673 65.69-11.06 131.584-20.788 197.58-33.076h-41.42c-56.78-.563-113.613-1.484-170.394-1.69-34.867 0-59.443-18.175-80.486-43.468a272.589 272.589 0 0 1-54.989-110.848c-6.451-26.01.666-33.178 27.495-26.931 67.84 15.77 135.577 32.102 203.417 47.974a1030.195 1030.195 0 0 0 105.165 20.173c-40.96-13.62-82.74-26.112-123.34-40.96-61.953-22.938-122.88-47.923-184.833-71.68a66.56 66.56 0 0 1-38.963-37.376c-24.115-54.989-42.138-111.565-42.547-172.288 0-22.118 7.219-27.546 26.214-18.33C378.88 143.36 578.918 222.31 779.571 299.315a288.666 288.666 0 0 1 54.989 29.747c33.331 22.17 44.186 50.125 26.931 85.248-35.43 72.09-74.393 142.439-112.23 213.35-9.472 17.46-20.02 34.407-31.642 54.478z" fill="#59ADF8"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M512 0q512 0 512 512t-512 512Q0 1024 0 512T512 0z" fill="#FFF"/><path d="M832.032 367.205c4.123.024 8.243.265 12.34.723a345.91 345.91 0 0 1 91.865 25.368c8.523 3.818 10.629 6.91 3.291 14.608a296.456 296.456 0 0 0-51.46 75.942c-14.15 29.776-29.614 58.928-44.09 88.576a190.048 190.048 0 0 1-43.992 58.567c-45.276 40.963-98.052 58.238-158.264 49.88-69.096-9.575-134.541-32.903-196.365-63.667-3.85-1.908-6.581-3.29-8.851-4.672a4.483 4.483 0 0 1-2.096-3.943 4.483 4.483 0 0 1 2.358-3.79l4.278-2.304c50.079-26.749 91.866-64.027 132.138-103.216 17.011-16.451 33.331-33.725 50.507-50.045a291.126 291.126 0 0 1 135.2-72.387c11.12-2.666 22.34-4.837 33.527-7.239h.528l23.82-2.204" fill="#133C9A"/><path d="M348.029 850.682c-7.6-.428-26.322-2.994-28.56-3.29a452.614 452.614 0 0 1-139.312-40.734c-25.466-11.91-49.98-25.96-74.559-39.648-16.155-9.016-23.492-23.032-23.328-42.05.528-70.347.528-140.704 0-211.074-.262-45.275-1.579-90.548-2.27-135.792a36.602 36.602 0 0 1 1.875-11.744c2.731-8.16 8.359-8.656 13.92-3.29 6.416 6.185 11.515 13.686 17.866 19.74 56.856 56 117.1 107.296 184.651 149.546a1017.56 1017.56 0 0 0 118.451 65.246c65.642 29.81 132.928 56.1 203.44 72.78 62.285 14.742 122.861 5.463 173.333-34.086 15.4-13.161 23.034-22.803 41.294-47.118a303.662 303.662 0 0 1-31.555 61.464c-11.745 18.491-38.2 43.168-58.368 62.515-30.633 29.613-70.677 53.632-108.253 73.901-40.963 22.078-83.54 39.714-129.044 49.354-23.328 5.824-57.023 12.504-68.637 13.161-2.04-.165-8.983 1.415-12.536 1.12-29.975 2.269-48.466 3.125-78.408 0z" fill="#3370FF"/><path d="M219.28 172.912a44.256 44.256 0 0 1 6.283 0c128.848 0 256.645 2.072 385.328 2.072.224 0 .443.069.626.198a303.498 303.498 0 0 1 33.133 33.856c29.054 28.89 50.704 78.968 65.51 109.503 7.371 21.091 18.491 41.26 23.757 64.752v.429a281.552 281.552 0 0 0-38.3 15.596c-37.214 18.887-54.126 32.672-85.022 63.108-16.813 16.45-31.192 31.29-53.533 52.348-7.008 6.581-24.841 23.264-25.137 22.736-5.923-10.464-106.08-206.4-307.283-360.552" fill="#00D6B9"/></svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M906.667 266.667v640h-832v-640h832zM585.259 623.872l-94.592 94.592-94.614-94.613-218.837 218.816h626.88L585.259 623.85zm257.408-257.43-212.139 212.14 212.139 212.16v-424.32zm-704 0V790.72l212.138-212.117-212.138-212.139zm649.28-35.775H193.365l297.302 297.301 297.28-297.301z" fill="#1677FF"/></svg>
|
||||
|
Before Width: | Height: | Size: 407 B |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M446.293 810.667C384 898.987 262.4 921.173 174.507 859.733 87.04 798.293 66.56 675.84 128 586.667a195.627 195.627 0 0 1 152.747-84.48l2.133 61.013c-38.827 2.987-76.373 23.04-100.693 58.027-42.667 61.44-29.44 144.213 29.013 185.6 58.88 40.96 141.227 25.173 183.893-35.84 13.227-19.2 20.907-40.107 23.894-61.44v-43.094l238.08-1.706 2.986-4.694c22.614-39.253 71.68-52.906 110.08-30.72a81.067 81.067 0 0 1 29.014 110.934c-22.614 38.826-72.107 52.48-110.507 30.293-17.493-9.813-29.867-25.6-35.413-43.52l-173.654.853a211.627 211.627 0 0 1-33.28 82.774m310.614-304.64c107.946 13.226 184.746 110.08 171.52 216.32-13.227 106.666-111.36 182.186-219.307 168.96a197.504 197.504 0 0 1-146.347-94.294l52.907-30.72a137.387 137.387 0 0 0 98.987 61.867c74.666 8.96 140.8-41.813 149.76-113.067 8.96-71.253-43.947-136.533-117.76-145.493-23.04-2.56-45.227.427-65.28 7.68l-36.267 18.773-110.08-203.52h-9.387a81.323 81.323 0 0 1-78.933-83.2C448 264.96 486.4 230.4 531.2 232.107c44.8 2.56 80.213 38.826 78.933 83.2-.853 18.773-8.106 35.84-19.626 49.066l81.066 149.76c26.454-8.533 55.467-11.52 85.334-8.106M352 389.973c-42.667-100.266 2.56-215.04 101.12-256.853 98.987-41.813 213.333 5.547 256 105.813 25.173 58.454 20.053 122.454-8.533 173.654l-52.907-30.72c17.92-34.56 20.907-76.8 3.84-116.48C622.507 197.12 545.28 164.267 479.147 192c-66.56 28.16-96.427 106.667-67.414 174.933 11.947 28.16 32 49.92 56.32 64.427l16.64 8.96-130.986 212.907c1.28 2.133 2.986 4.693 4.266 8.106 20.907 38.827 6.4 87.894-32.853 108.8-38.827 20.907-87.893 5.547-109.227-34.56-20.906-39.68-6.4-88.746 32.854-109.653 16.64-8.96 34.986-11.093 52.48-7.253l98.56-160.854c-20.054-18.346-37.12-41.386-47.787-67.84z" fill="#44A3F3"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M803.6 859.2c0 26.6-20.4 49.2-48.4 51.8-21.2 2-48.6-11-54.8-39.8-5.6-26-13.2-50.8-29-72.4-6-8.2-12.8-16-20-23.4-7.6-8-9.4-14-4.4-19.8 5-5.8 12.8-5 20.8 3.2 20.8 21 45.4 35.2 73.6 43.6 7.2 2.2 14.8 3.4 22.2 5.2 24.6 6.2 40 26.2 40 51.6z" fill="#FC6401"/><path d="M698.2 549.8c.2-28.4 20.8-50.2 49.6-52.6 25.6-2.2 50.6 17.6 55 45.2 6 36.2 22.8 66.2 48.4 92 3.2 3.2 5.6 9.2 5.2 13.8-.4 7.2-9.8 10.6-16.2 6.4-3.4-2.2-6.2-5-9-7.8-25.4-24.6-55.6-39.4-90.4-45.4-24.8-4.6-42.6-26.2-42.6-51.6z" fill="#2DBD00"/><path d="M595.4 765.2c-26.6 0-49.2-20.4-51.8-48.4-2-21.2 11-48.6 39.8-54.8 26-5.6 50.8-13.2 72.4-29 8.2-6 16-12.8 23.4-20 8-7.6 14-9.4 19.8-4.4 5.8 5 5 12.8-3.2 20.8-21 20.8-35.2 45.4-43.6 73.6-2.2 7.2-3.4 14.8-5.2 22.2-6.2 24.6-26.2 40-51.6 40z" fill="#FFCD00"/><path d="M898.8 650c28.4.2 50.2 20.8 52.6 49.6 2.2 25.6-17.6 50.6-45.2 55-36.2 6-66.2 22.8-92 48.4-3.2 3.2-9.2 5.6-13.8 5.2-7.2-.4-10.6-9.8-6.4-16.2 2.2-3.4 5-6.2 7.8-9 24.6-25.4 39.4-55.6 45.4-90.4 4.6-25 26.2-42.8 51.6-42.6z" fill="#0084F0"/><path d="M734 208.6c-110.4-108.4-244.8-139.8-392.4-100-260 70.2-340.4 340.6-209 517 6.4 8.6 7.6 24.4 5.2 35.4-7 32.4-17.4 64.2-26 96.2-4.6 17.2-7.4 34.6 8 48.4 16.6 14.8 34.2 11.8 52.2 2.6 29.6-15 59.8-29.2 89-45 19-10.4 36.2-10.8 57.6-4.8 42.8 11.8 87.2 18.4 109.6 23 43.8-.8 83.6-5.2 120.2-13.6-13.8-12-23-29.2-24.8-49-.4-5.4-.2-10.8.6-16.2C466.4 715 405 710 341 688.6c-42.2-14.2-76.8-17.8-113.4 7-3.4 2.2-7.8 2.8-24.6 8.2 33.8-58.4 8.8-95-19.6-136.6-63.4-92-50.4-210.8 24.6-296.4C330.8 131 571 131 693.8 271c52.8 60.2 73.6 135.2 61.8 206.2 28 1.6 52.8 20.6 63 47.2 32-108.8 4-228.8-84.6-315.8z" fill="#0083EF"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M803.6 859.2c0 26.6-20.4 49.2-48.4 51.8-21.2 2-48.6-11-54.8-39.8-5.6-26-13.2-50.8-29-72.4-6-8.2-12.8-16-20-23.4-7.6-8-9.4-14-4.4-19.8 5-5.8 12.8-5 20.8 3.2 20.8 21 45.4 35.2 73.6 43.6 7.2 2.2 14.8 3.4 22.2 5.2 24.6 6.2 40 26.2 40 51.6z" fill="#FC6401"/><path d="M698.2 549.8c.2-28.4 20.8-50.2 49.6-52.6 25.6-2.2 50.6 17.6 55 45.2 6 36.2 22.8 66.2 48.4 92 3.2 3.2 5.6 9.2 5.2 13.8-.4 7.2-9.8 10.6-16.2 6.4-3.4-2.2-6.2-5-9-7.8-25.4-24.6-55.6-39.4-90.4-45.4-24.8-4.6-42.6-26.2-42.6-51.6z" fill="#2DBD00"/><path d="M595.4 765.2c-26.6 0-49.2-20.4-51.8-48.4-2-21.2 11-48.6 39.8-54.8 26-5.6 50.8-13.2 72.4-29 8.2-6 16-12.8 23.4-20 8-7.6 14-9.4 19.8-4.4 5.8 5 5 12.8-3.2 20.8-21 20.8-35.2 45.4-43.6 73.6-2.2 7.2-3.4 14.8-5.2 22.2-6.2 24.6-26.2 40-51.6 40z" fill="#FFCD00"/><path d="M898.8 650c28.4.2 50.2 20.8 52.6 49.6 2.2 25.6-17.6 50.6-45.2 55-36.2 6-66.2 22.8-92 48.4-3.2 3.2-9.2 5.6-13.8 5.2-7.2-.4-10.6-9.8-6.4-16.2 2.2-3.4 5-6.2 7.8-9 24.6-25.4 39.4-55.6 45.4-90.4 4.6-25 26.2-42.8 51.6-42.6z" fill="#0084F0"/><path d="M734 208.6c-110.4-108.4-244.8-139.8-392.4-100-260 70.2-340.4 340.6-209 517 6.4 8.6 7.6 24.4 5.2 35.4-7 32.4-17.4 64.2-26 96.2-4.6 17.2-7.4 34.6 8 48.4 16.6 14.8 34.2 11.8 52.2 2.6 29.6-15 59.8-29.2 89-45 19-10.4 36.2-10.8 57.6-4.8 42.8 11.8 87.2 18.4 109.6 23 43.8-.8 83.6-5.2 120.2-13.6-13.8-12-23-29.2-24.8-49-.4-5.4-.2-10.8.6-16.2C466.4 715 405 710 341 688.6c-42.2-14.2-76.8-17.8-113.4 7-3.4 2.2-7.8 2.8-24.6 8.2 33.8-58.4 8.8-95-19.6-136.6-63.4-92-50.4-210.8 24.6-296.4C330.8 131 571 131 693.8 271c52.8 60.2 73.6 135.2 61.8 206.2 28 1.6 52.8 20.6 63 47.2 32-108.8 4-228.8-84.6-315.8z" fill="#0083EF"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M939.94 459.073h-377.6V83.519H462.055v375.554h-377.6v100.284h377.6v379.646H562.34V559.357h377.6z"/></svg>
|
||||
|
Before Width: | Height: | Size: 216 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5156" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M69.530864 0h884.938272v1024H69.530864z" fill="#E0E0E0" fill-opacity="0"></path><path d="M79.560165 259.855802v503.572017l435.09465 250.73251 434.041152-250.73251-1.053498-502.518519-432.987654-250.73251-435.09465 249.679012z" fill="#005EFD"></path><path d="M93.255638 268.283786v486.716049l422.452675 241.251029 419.292181-242.304527v-485.662551l-421.399177-242.304527-420.345679 242.304527z" fill="#FFFFFF"></path><path d="M139.609547 294.621235l95.868313 56.888888 371.884774-218.074074-93.761317-53.728395-373.99177 214.913581z" fill="#005EFD"></path><path d="M139.609547 293.567737v435.09465l243.358025 139.061728 92.707819-55.835391-241.251029-140.115226 1.053498-320.263375-95.868313-57.942386zM791.269663 350.096329v321.780412l95.269925 55.732148V294.364181L645.749992 154.506008 551.527243 210.238156l239.74242 139.858173z" fill="#0854C1"></path><path d="M420.893498 886.470058l93.339918 56.052411 372.306172-214.692346-94.387094-57.110123L420.893498 886.470058zM385.074568 416.826996h49.88102v280.230453l93.3947 55.835391v-474.074075l-143.27572 81.119342v56.888889z" fill="#005EFD"></path><path d="M528.350288 752.89284l31.604938-16.855968v-440.362139l-31.604938-16.855968v474.074075z" fill="#0854C1"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M642.56 946.176h-261.12c-167.936 0-303.616-136.192-303.616-303.616v-261.12c0-167.936 136.192-303.616 303.616-303.616h261.12c167.936 0 303.616 136.192 303.616 303.616v261.12c0 167.424-136.192 303.616-303.616 303.616z" fill="#F2F9FF"></path><path d="M512 808.448l-6.144-2.56c-201.728-78.336-224.768-180.736-224.768-250.88V287.232l17.92 0.512c140.288 4.608 199.68-58.88 200.192-59.392l12.8-14.336 12.8 14.336c0.512 0.512 56.832 59.392 185.344 59.392 5.12 0 9.728 0 14.848-0.512l17.92-0.512v267.776c0 70.144-23.552 172.544-224.768 250.88l-6.144 3.072zM315.904 323.072v232.448c0 37.888 0 137.216 196.096 215.552 196.096-78.336 196.096-178.176 196.096-215.552V323.072c-108.544-0.512-171.008-39.424-196.096-59.392-25.088 19.968-87.552 58.88-196.096 59.392z m0 0" fill="#04AE7F"></path><path d="M674.304 566.272h-78.336v-133.12h28.16v110.08h49.664v23.04z m-114.176-7.68c-9.216 6.656-22.016 10.24-38.4 10.24-15.36 0-27.648-2.56-37.376-7.168v-28.672c10.24 8.704 23.04 13.312 36.352 13.312 7.68 0 13.312-1.536 17.408-4.096 4.096-2.56 5.632-6.144 5.632-10.24 0-3.584-1.536-7.168-4.608-10.24-3.072-3.072-11.264-7.68-24.576-13.312-20.992-8.704-31.232-21.504-31.232-38.4 0-12.288 4.608-22.016 14.336-28.672 9.216-6.656 22.016-10.24 37.376-10.24 12.8 0 24.064 1.536 32.768 5.12v26.624c-8.704-6.144-19.456-9.216-31.232-9.216-7.168 0-12.8 1.024-16.896 3.584-4.096 2.56-6.144 6.144-6.144 10.24 0 3.584 1.536 6.656 4.096 9.728 3.072 3.072 9.728 6.656 20.992 11.776 13.312 5.632 22.528 11.776 27.136 17.92 5.12 6.144 7.68 13.824 7.68 22.528 0.512 12.8-4.096 22.528-13.312 29.184z m-105.472 0c-9.216 6.656-22.016 10.24-38.4 10.24-15.36 0-27.648-2.56-37.376-7.168v-28.672c10.752 8.704 23.04 13.312 36.352 13.312 7.68 0 13.312-1.536 17.408-4.096 4.096-2.56 5.632-6.144 5.632-10.24 0-3.584-1.536-7.168-4.608-10.24-3.072-3.072-11.264-7.68-24.576-13.312-20.992-8.704-31.232-21.504-31.232-38.4 0-12.288 4.608-22.016 14.336-28.672 9.216-6.656 22.016-10.24 37.376-10.24 12.8 0 24.064 1.536 32.768 5.12v26.624c-8.704-6.144-19.456-9.216-31.232-9.216-7.168 0-12.8 1.024-16.896 3.584-4.096 2.56-6.144 6.144-6.144 10.24 0 3.584 1.536 6.656 4.096 9.728 3.072 3.072 9.728 6.656 20.992 11.776 13.312 5.632 22.528 11.776 27.136 17.92 5.12 6.656 7.68 14.336 7.68 22.528 0 12.8-4.608 22.528-13.312 29.184z m332.288-190.464C696.32 386.56 604.16 395.776 512 395.776s-184.32-9.216-274.944-27.648c22.528 61.44 33.792 109.056 33.792 142.848 0 33.792-11.264 81.92-33.792 142.848 121.344-20.992 213.504-31.744 274.944-31.744s153.6 10.752 274.944 31.744c-29.696-61.952-44.544-109.568-44.544-142.848s15.36-80.896 44.544-142.848z m0 0" fill="#04AE7F"></path></svg>
|
||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,2 +0,0 @@
|
||||
<svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" height="200" width="200">
|
||||
<circle style="fill:#32BEA6;" cx="256" cy="256" r="256"/><g><path style="fill:#FFFFFF;" d="M58.016,202.296h18.168v42.48h0.296c2.192-3.368,5.128-6.152,8.936-8.2 c3.512-2.056,7.76-3.224,12.304-3.224c12.16,0,24.896,8.064,24.896,30.912v42.04H104.6v-39.992c0-10.4-3.808-18.168-13.776-18.168 c-7.032,0-12.008,4.688-13.912,10.112c-0.584,1.472-0.728,3.368-0.728,5.424v42.624H58.016V202.296z"/><path style="fill:#FFFFFF;" d="M161.76,214.6v20.368h17.144v13.48H161.76v31.496c0,8.64,2.344,13.176,9.224,13.176 c3.08,0,5.424-0.44,7.032-0.872l0.296,13.768c-2.64,1.032-7.328,1.768-13.04,1.768c-6.584,0-12.16-2.2-15.52-5.856 c-3.816-4.112-5.568-10.544-5.568-19.92v-33.544h-10.248V234.96h10.248v-16.12L161.76,214.6z"/><path style="fill:#FFFFFF;" d="M213.192,214.6v20.368h17.144v13.48h-17.144v31.496c0,8.64,2.344,13.176,9.224,13.176 c3.08,0,5.424-0.44,7.032-0.872l0.296,13.768c-2.64,1.032-7.328,1.768-13.04,1.768c-6.584,0-12.16-2.2-15.52-5.856 c-3.816-4.112-5.568-10.544-5.568-19.92v-33.544h-10.248V234.96h10.248v-16.12L213.192,214.6z"/><path style="fill:#FFFFFF;" d="M243.984,258.688c0-9.376-0.296-16.992-0.592-23.728h15.832l0.872,10.984h0.296 c5.264-8.056,13.616-12.6,24.464-12.6c16.408,0,30.024,14.064,30.024,36.328c0,25.784-16.256,38.232-32.512,38.232 c-8.936,0-16.408-3.808-20.072-9.512H262v36.904h-18.016V258.688z M262,276.416c0,1.76,0.144,3.368,0.584,4.976 c1.76,7.328,8.2,12.6,15.824,12.6c11.424,0,18.168-9.52,18.168-23.584c0-12.592-6.16-22.848-17.728-22.848 c-7.472,0-14.36,5.424-16.112,13.336c-0.448,1.464-0.736,3.072-0.736,4.536L262,276.416L262,276.416z"/><path style="fill:#FFFFFF;" d="M327.504,247.12c0-6.744,4.688-11.568,11.136-11.568c6.592,0,10.984,4.832,11.136,11.568 c0,6.592-4.392,11.432-11.136,11.432C332.048,258.552,327.504,253.712,327.504,247.12z M327.504,296.488 c0-6.744,4.688-11.576,11.136-11.576c6.592,0,10.984,4.688,11.136,11.576c0,6.448-4.392,11.424-11.136,11.424 C332.048,307.912,327.504,302.936,327.504,296.488z"/><path style="fill:#FFFFFF;" d="M355.8,312.16l35.744-106.2h12.6l-35.752,106.2H355.8z"/><path style="fill:#FFFFFF;" d="M405.176,312.16l35.744-106.2h12.592l-35.728,106.2H405.176z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5262" width="200" height="200"><path d="M512 64a448 448 0 1 1 0 896A448 448 0 0 1 512 64z" fill="#FF6A00" p-id="5263"></path><path d="M324.8 602.624a26.752 26.752 0 0 1-21.312-25.92v-142.72a27.712 27.712 0 0 1 21.376-25.984l132.416-28.672 13.952-56.896H317.312a97.6 97.6 0 0 0-98.24 96.96v169.344c0.384 54.08 44.16 97.856 98.24 98.176h153.92l-13.888-56.512-132.544-27.776zM710.4 322.432c54.016 0.128 97.92 43.584 98.56 97.6v170.176a98.368 98.368 0 0 1-98.56 98.048H555.328l14.08-56.832 132.608-28.736a27.84 27.84 0 0 0 21.376-25.92v-142.72a26.88 26.88 0 0 0-21.376-25.984l-132.544-28.8-14.08-56.832zM570.368 497.92v13.952H457.28v-13.952h113.088z" fill="#FFFFFF" p-id="5264"></path></svg>
|
||||
|
Before Width: | Height: | Size: 772 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5262" width="200" height="200"><path d="M512 64a448 448 0 1 1 0 896A448 448 0 0 1 512 64z" fill="#FF6A00" p-id="5263"></path><path d="M324.8 602.624a26.752 26.752 0 0 1-21.312-25.92v-142.72a27.712 27.712 0 0 1 21.376-25.984l132.416-28.672 13.952-56.896H317.312a97.6 97.6 0 0 0-98.24 96.96v169.344c0.384 54.08 44.16 97.856 98.24 98.176h153.92l-13.888-56.512-132.544-27.776zM710.4 322.432c54.016 0.128 97.92 43.584 98.56 97.6v170.176a98.368 98.368 0 0 1-98.56 98.048H555.328l14.08-56.832 132.608-28.736a27.84 27.84 0 0 0 21.376-25.92v-142.72a26.88 26.88 0 0 0-21.376-25.984l-132.544-28.8-14.08-56.832zM570.368 497.92v13.952H457.28v-13.952h113.088z" fill="#FFFFFF" p-id="5264"></path></svg>
|
||||
|
Before Width: | Height: | Size: 772 B |
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M565.76 114.761L233.472 821.833 0 819.2l260.608-448.512L565.76 114.615m35.84 55.808L1024 909.239H242.761l476.16-84.846L469.577 527.8 601.6 170.423z" fill="#1E88E5"></path></svg>
|
||||
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 0h1024v1024H0z" fill="#FFF"/><path d="m705.024 658.901-147.925 79.232A82.304 82.304 0 0 0 512 811.82V934.4l353.579-188.416a25.515 25.515 0 0 0 14.25-22.827V345.941l-115.114 60.16a82.304 82.304 0 0 0-45.056 73.686V634.58c-.427 11.222-6.358 18.688-14.635 24.32" fill="#DA4725"/><path d="M304.768 637.397V482.091c0-30.379-16.64-58.496-45.099-73.899l-115.498-62.293v376.618c0 9.387 6.314 18.774 14.25 22.87L512 934.443V811.435c0-30.379-16.64-58.539-45.099-73.899l-147.925-77.653c-8.277-5.632-14.208-13.142-14.208-22.486" fill="#028DCF"/><path d="M665.77 181.333 525.313 92.672a31.53 31.53 0 0 0-27.392 0L162.56 303.915l109.27 67.328c27.434 16.725 60.458 16.725 86.015 0l140.459-88.662c1.877-2.09 3.755-2.09 5.973-2.09a25.856 25.856 0 0 1 21.419 2.09l140.459 88.662c27.434 16.725 60.458 16.725 86.016 0l109.226-67.328-195.626-122.539z" fill="#72AE2C"/></svg>
|
||||
|
Before Width: | Height: | Size: 965 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1684" width="200" height="200"><path d="M482.687 74.101c10.109-5.627 19.662-12.497 30.785-15.998 8.506-2.192 16.685 2.323 23.883 6.38 117.253 68.08 235.062 135.312 352.118 203.753-40.338 22.115-79.662 46.063-119.805 68.506-27.677 15.148-62.814 13.74-89.771-2.388-48.289-28.135-96.871-55.78-145.127-84.014-8.997-5.692-21.232-5.889-30.654-1.21-49.728 28.724-99.456 57.58-149.282 86.173-27.056 15.834-61.963 15.867-89.314 0.687a26252.906 26252.906 0 0 1-113.785-65.628c-0.229-1.178-0.72-3.533-0.949-4.744 110.776-63.533 221.256-127.722 331.9-191.517z" fill="#72AF2D" p-id="1685"></path><path d="M115.552 719.744c0.49-135.148-0.622-270.329 0.556-405.477 32.617 19.367 65.595 38.08 98.441 57.088 12.76 7.427 26.27 14.199 36.74 24.864 15.769 16.39 26.042 38.67 25.845 61.637 0.033 54.57 0.131 109.172-0.065 163.774-1.047 12.203 3.304 25.65 14.493 31.963 40.567 23.72 81.396 47.045 122.095 70.6 14.362 8.638 29.771 15.9 42.4 27.057 18.156 17.11 28.756 41.777 29.116 66.707-0.033 44.559-0.196 89.15 0.066 133.709-10.175-3.468-18.877-9.848-28.201-14.984-108.55-62.716-217.167-125.366-325.652-188.148-10.207-5.66-17.143-16.947-15.834-28.79z" fill="#118CCF" p-id="1686"></path><path d="M815.143 367.397c30.753-17.47 61.015-35.824 92.095-52.705 0.196 135.017-0.066 270.035 0.13 405.052 0.819 11.582-5.3 23.163-15.637 28.627-110.416 63.86-220.896 127.558-331.312 191.386-7.328 4.45-14.722 8.8-22.508 12.432-0.098-44.82 0.065-89.64-0.098-134.428-0.426-31.538 17.47-62.16 44.558-78.06 49.074-28.43 98.245-56.664 147.286-85.159 8.245-4.515 15.311-13.053 14.919-22.9 0.13-55.683 0.065-111.398 0-167.08-0.033-23.784 8.048-47.732 24.21-65.398 12.497-14.362 30.36-22.083 46.357-31.767z" fill="#DA4525" p-id="1687"></path></svg>
|
||||
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1684" width="200" height="200"><path d="M482.687 74.101c10.109-5.627 19.662-12.497 30.785-15.998 8.506-2.192 16.685 2.323 23.883 6.38 117.253 68.08 235.062 135.312 352.118 203.753-40.338 22.115-79.662 46.063-119.805 68.506-27.677 15.148-62.814 13.74-89.771-2.388-48.289-28.135-96.871-55.78-145.127-84.014-8.997-5.692-21.232-5.889-30.654-1.21-49.728 28.724-99.456 57.58-149.282 86.173-27.056 15.834-61.963 15.867-89.314 0.687a26252.906 26252.906 0 0 1-113.785-65.628c-0.229-1.178-0.72-3.533-0.949-4.744 110.776-63.533 221.256-127.722 331.9-191.517z" fill="#72AF2D" p-id="1685"></path><path d="M115.552 719.744c0.49-135.148-0.622-270.329 0.556-405.477 32.617 19.367 65.595 38.08 98.441 57.088 12.76 7.427 26.27 14.199 36.74 24.864 15.769 16.39 26.042 38.67 25.845 61.637 0.033 54.57 0.131 109.172-0.065 163.774-1.047 12.203 3.304 25.65 14.493 31.963 40.567 23.72 81.396 47.045 122.095 70.6 14.362 8.638 29.771 15.9 42.4 27.057 18.156 17.11 28.756 41.777 29.116 66.707-0.033 44.559-0.196 89.15 0.066 133.709-10.175-3.468-18.877-9.848-28.201-14.984-108.55-62.716-217.167-125.366-325.652-188.148-10.207-5.66-17.143-16.947-15.834-28.79z" fill="#118CCF" p-id="1686"></path><path d="M815.143 367.397c30.753-17.47 61.015-35.824 92.095-52.705 0.196 135.017-0.066 270.035 0.13 405.052 0.819 11.582-5.3 23.163-15.637 28.627-110.416 63.86-220.896 127.558-331.312 191.386-7.328 4.45-14.722 8.8-22.508 12.432-0.098-44.82 0.065-89.64-0.098-134.428-0.426-31.538 17.47-62.16 44.558-78.06 49.074-28.43 98.245-56.664 147.286-85.159 8.245-4.515 15.311-13.053 14.919-22.9 0.13-55.683 0.065-111.398 0-167.08-0.033-23.784 8.048-47.732 24.21-65.398 12.497-14.362 30.36-22.083 46.357-31.767z" fill="#DA4525" p-id="1687"></path></svg>
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="64px" height="64px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.948" fill="#0c6fb8" d="M 22.5,1.5 C 28.2055,1.17124 33.8722,1.50457 39.5,2.5C 46.972,21.2509 53.6387,40.2509 59.5,59.5C 55.5633,59.7935 51.73,59.4601 48,58.5C 43.5,46.1667 39,33.8333 34.5,21.5C 32.2573,20.5258 29.924,20.1924 27.5,20.5C 22.969,33.4262 18.6357,46.4262 14.5,59.5C 10.5,59.5 6.5,59.5 2.5,59.5C 8.96932,40.0918 15.636,20.7585 22.5,1.5 Z"/></g>
|
||||
<g><path style="opacity:0.935" fill="#e83c2d" d="M 28.5,40.5 C 30.4672,40.2606 32.3005,40.5939 34,41.5C 36.1667,47.1667 38.3333,52.8333 40.5,58.5C 34.1928,59.6639 27.8595,59.8306 21.5,59C 23.7386,52.7826 26.0719,46.6159 28.5,40.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,108 +0,0 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns:x="ns_extend;" xmlns:i="ns_ai;" xmlns:graph="ns_graphs;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38.1 42.7" style="enable-background:new 0 0 38.1 42.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_4_);}
|
||||
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_5_);}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_6_);}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_7_);}
|
||||
.st7{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_8_);}
|
||||
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_9_);}
|
||||
</style>
|
||||
<metadata>
|
||||
<sfw xmlns="ns_sfw;">
|
||||
<slices>
|
||||
</slices>
|
||||
<sliceSourceBounds bottomLeftOrigin="true" height="42.7" width="38.1" x="0" y="0">
|
||||
</sliceSourceBounds>
|
||||
</sfw>
|
||||
</metadata>
|
||||
<g id="Layer_2_1_">
|
||||
<g id="Layer_1-2">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.85" y1="37.895" x2="36.49" y2="37.895" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#FBAA19">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#EF3E23">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M21,6.8l9.9,5.4L21.8,0C20.3,2,20,4.6,21,6.8z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.7715" y1="12.9194" x2="17.3115" y2="17.1294" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#F78D1E">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#F37121">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M16.5,26.7c1.2,0,2.2,1,2.2,2.3c0,1.2-1,2.2-2.3,2.2c-1.2,0-2.2-1-2.2-2.2C14.3,27.8,15.3,26.7,16.5,26.7
|
||||
C16.5,26.7,16.5,26.7,16.5,26.7z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="3.5604" y1="11.4696" x2="27.4904" y2="37.1196" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#FEBE2D">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#F04E23">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M9.7,1.8l27.6,15c0.7,0.3,0.9,1.1,0.6,1.8c-0.1,0.3-0.3,0.5-0.6,0.6c-2.1,1.3-4.4,2.2-6.8,2.6l-5.8,11.8
|
||||
c0,0-1.8,4.1-6.8,2.5c2.1-2.1,4.6-4,4.6-7.2c0-3.4-2.7-6.1-6.1-6.1s-6.1,2.7-6.1,6.1l0,0c0,4.2,4.2,6,6.5,8.9
|
||||
c1,1.5,0.9,3.5-0.3,4.8C13.7,39.8,8.2,35,5.9,31.9c-1.2-1.6-1.9-3.5-2-5.5c0.2-4.4,3.2-8.2,7.4-9.5c1.3-0.4,2.6-0.5,3.9-0.5
|
||||
c1.8,0.1,3.6,0.7,5.2,1.6c2.5,1.4,3.6,1.1,5.3-0.4c1-0.8,2.1-3.5,0.4-4.1c-0.6-0.2-1.1-0.3-1.7-0.4c-3.1-0.6-8.6-1.2-10.6-2.3
|
||||
C10.6,9,8.4,5.3,9.7,1.8z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="20.5027" y1="26.4387" x2="7.2627" y2="6.0587" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#EA4425">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#FDBB27">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M22.5,29.4L22.5,29.4z M22.5,29c1.3-6.7-5.5-13.1-10.8-12.2l0.4-0.1c-0.3,0.1-0.6,0.1-0.8,0.2
|
||||
c-4.2,1.3-7.2,5.1-7.4,9.5c0,2,0.7,4,2,5.5c2.3,3.1,7.8,7.9,10.7,10.8c1.2-1.3,1.4-3.3,0.3-4.8c-2.4-2.9-6.5-4.7-6.5-8.9
|
||||
c0-3.4,2.7-6.1,6.1-6.1C19.9,22.9,22.6,25.6,22.5,29L22.5,29z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="0.24" y1="33.4281" x2="42.04" y2="33.4281" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#F47920">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#E93825">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st4" d="M9.7,1.8l21,11.4l0,0l0.6,0.3c0.5,0.4,1,1.2,0.4,2.6c-1,2.1-5,4.2-9.6,2.6c1.4,0.4,2.4-0.1,3.7-1.1
|
||||
c1-0.8,2.1-3.5,0.4-4.1c-0.6-0.2-1.1-0.3-1.7-0.4c-3.1-0.6-8.6-1.2-10.6-2.3C10.6,9,8.4,5.3,9.7,1.8z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-21.84" y1="36.21" x2="63.21" y2="36.21" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#FDCA0B">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#F5841F">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M9.7,1.8c2.2,8,15.4,8.7,22,12L9.7,1.8z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="8.5447" y1="25.9314" x2="17.3947" y2="-4.9386" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#E73C25">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#FAA21B">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M16.9,37.9c-2.3-2.9-6.5-4.7-6.5-8.9c0-3.1,2.3-5.6,5.3-6C10.9,23,7,26.9,7,31.8c0,0.6,0.1,1.2,0.2,1.8
|
||||
c1.9,2.2,4.7,4.7,7,6.9c0.9,0.8,1.8,1.7,2.4,2.3c0.6-0.7,0.9-1.5,1-2.4l0,0C17.7,39.5,17.4,38.6,16.9,37.9z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-51.37" y1="20.9197" x2="74.88" y2="20.9197" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#FDBA12">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#F7921E">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st7" d="M22.5,29.7c0-0.2,0-0.5,0-0.7c1.3-6.7-5.6-13.1-10.8-12.2c1.1-0.3,2.3-0.4,3.4-0.3C22,16.7,24,24.1,22.5,29.7
|
||||
z">
|
||||
</path>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="8.023048e-02" y1="27.2813" x2="4.8102" y2="26.4413" gradientTransform="matrix(1 0 0 -1 4.903450e-08 44)">
|
||||
<stop offset="0" style="stop-color:#FEBE2D">
|
||||
</stop>
|
||||
<stop offset="1" style="stop-color:#F04E23">
|
||||
</stop>
|
||||
</linearGradient>
|
||||
<path class="st8" d="M2.3,14.8L2.3,14.8c1.2,0,2.3,1,2.3,2.3v2.3H2.3c-1.2,0-2.3-1-2.3-2.3c0,0,0,0,0,0l0,0
|
||||
C0,15.9,1,14.8,2.3,14.8z">
|
||||
</path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.7 KiB |
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.999" fill="#213c7e" d="M 47.5,78.5 C 46.7784,78.9175 46.2784,79.5842 46,80.5C 45.1864,85.0204 45.353,89.3537 46.5,93.5C 50.1283,105.3 57.7949,113.466 69.5,118C 86.69,125.636 103.69,125.302 120.5,117C 127.858,113.643 132.191,107.976 133.5,100C 132.142,91.9752 127.475,87.3086 119.5,86C 110.801,85.6938 102.135,86.1938 93.5,87.5C 89.8098,87.308 86.1431,86.9747 82.5,86.5C 82.0269,85.0937 81.0269,84.427 79.5,84.5C 69.0895,78.3375 66.9229,70.0042 73,59.5C 76.2508,55.5783 80.0841,52.4117 84.5,50C 105.78,43.7275 126.447,45.3942 146.5,55C 175.309,72.0696 180.976,94.903 163.5,123.5C 142.921,145.307 117.588,154.14 87.5,150C 62.7191,147.539 43.5525,136.039 30,115.5C 23.3268,103.634 22.8268,91.6336 28.5,79.5C 29.6737,78.4863 30.3404,77.153 30.5,75.5C 41.508,57.5305 57.508,46.5305 78.5,42.5C 81.3288,42.8239 81.9955,44.1572 80.5,46.5C 65.5364,53.131 54.5364,63.7977 47.5,78.5 Z"/></g>
|
||||
<g><path style="opacity:0.082" fill="#a5b0cb" d="M 30.5,75.5 C 30.3404,77.153 29.6737,78.4863 28.5,79.5C 28.2291,77.6203 28.8958,76.287 30.5,75.5 Z"/></g>
|
||||
<g><path style="opacity:0.075" fill="#bec6d9" d="M 47.5,78.5 C 46.6708,83.453 46.3375,88.453 46.5,93.5C 45.353,89.3537 45.1864,85.0204 46,80.5C 46.2784,79.5842 46.7784,78.9175 47.5,78.5 Z"/></g>
|
||||
<g><path style="opacity:0.031" fill="#d2d7e5" d="M 79.5,84.5 C 81.0269,84.427 82.0269,85.0937 82.5,86.5C 80.9731,86.573 79.9731,85.9063 79.5,84.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200">
|
||||
<path d="M0 0 C0.33 12.87 0.66 25.74 1 39 C4.63 36.03 8.26 33.06 12 30 C12.99 29.67 13.98 29.34 15 29 C15 28.34 15 27.68 15 27 C16.6953125 25.4765625 16.6953125 25.4765625 19.125 23.625 C24.36818245 19.55364629 29.38002727 15.25969115 34.35205078 10.86181641 C38.78276777 7 38.78276777 7 41 7 C41 6.34 41 5.68 41 5 C45.35294118 1 45.35294118 1 49 1 C49.02312269 12.19573244 49.04091471 23.39145924 49.05181217 34.58721066 C49.05704116 39.78528115 49.0641391 44.98333536 49.07543945 50.18139648 C49.08626776 55.19342268 49.09227671 60.20543318 49.09487724 65.21747017 C49.09673159 67.13412282 49.1003524 69.05077457 49.10573006 70.96742058 C49.11293975 73.64228072 49.11399097 76.31707514 49.11352539 78.99194336 C49.11712067 79.7925116 49.12071594 80.59307983 49.12442017 81.41790771 C49.11405216 86.88594784 49.11405216 86.88594784 48 88 C46.23140807 88.09946453 44.45888549 88.13080217 42.6875 88.1328125 C41.61242187 88.13410156 40.53734375 88.13539063 39.4296875 88.13671875 C38.29789062 88.13285156 37.16609375 88.12898438 36 88.125 C34.86820312 88.12886719 33.73640625 88.13273437 32.5703125 88.13671875 C31.49523437 88.13542969 30.42015625 88.13414062 29.3125 88.1328125 C28.31863281 88.13168457 27.32476562 88.13055664 26.30078125 88.12939453 C24 88 24 88 23 87 C22.84174742 85.00217874 22.74880829 82.99911166 22.68359375 80.99609375 C22.64169922 79.78115234 22.59980469 78.56621094 22.55664062 77.31445312 C22.51732422 76.03505859 22.47800781 74.75566406 22.4375 73.4375 C22.39431641 72.15423828 22.35113281 70.87097656 22.30664062 69.54882812 C22.200152 66.36600147 22.09814038 63.18309326 22 60 C21.24074219 60.63808594 20.48148437 61.27617188 19.69921875 61.93359375 C18.70535156 62.75988281 17.71148437 63.58617187 16.6875 64.4375 C15.70136719 65.26121094 14.71523437 66.08492188 13.69921875 66.93359375 C11 69 11 69 8 70 C8 70.66 8 71.32 8 72 C6.51261765 73.35382149 4.95569449 74.63139886 3.375 75.875 C-1.2643158 79.58405196 -5.81455578 83.3707187 -10.3125 87.25 C-11.99985624 88.70517299 -13.68754171 90.15975891 -15.38134766 91.60742188 C-16.47861169 92.55143304 -17.5666265 93.50628271 -18.64599609 94.47070312 C-22.67291886 98 -22.67291886 98 -26 98 C-26 84.8 -26 71.6 -26 58 C-29.3 60.64 -32.6 63.28 -36 66 C-36.66 66 -37.32 66 -38 66 C-38 66.66 -38 67.32 -38 68 C-39.71332754 69.58533702 -41.49689047 71.09541215 -43.3125 72.5625 C-44.29863281 73.36816406 -45.28476563 74.17382812 -46.30078125 75.00390625 C-49 77 -49 77 -52 78 C-52 78.66 -52 79.32 -52 80 C-53.42720409 81.26928798 -54.91983776 82.46538593 -56.4375 83.625 C-60.85617551 87.04712316 -64.96051883 90.6632284 -68.9921875 94.53125 C-71 96 -71 96 -75 96 C-75.02312283 84.93465142 -75.04091478 73.86930855 -75.05181217 62.80394077 C-75.05704113 57.66640434 -75.06413901 52.52888437 -75.07543945 47.39135742 C-75.08626787 42.4376859 -75.09227674 37.48403026 -75.09487724 32.53034782 C-75.09673157 30.63602384 -75.10035234 28.74170076 -75.10573006 26.8473835 C-75.11293989 24.20365614 -75.11399097 21.55999529 -75.11352539 18.91625977 C-75.11712067 18.12504227 -75.12071594 17.33382477 -75.12442017 16.51863098 C-75.11405216 11.11405216 -75.11405216 11.11405216 -74 10 C-72.21928754 9.91273777 -70.4351686 9.89300959 -68.65234375 9.90234375 C-67.57275391 9.90556641 -66.49316406 9.90878906 -65.38085938 9.91210938 C-63.67639648 9.92467773 -63.67639648 9.92467773 -61.9375 9.9375 C-60.22723633 9.94426758 -60.22723633 9.94426758 -58.48242188 9.95117188 C-55.65489649 9.96300253 -52.8274736 9.9794859 -50 10 C-48.65893595 12.6821281 -48.78549581 14.88398032 -48.68359375 17.8828125 C-48.64169922 19.04941406 -48.59980469 20.21601562 -48.55664062 21.41796875 C-48.51732422 22.64128906 -48.47800781 23.86460938 -48.4375 25.125 C-48.39431641 26.35605469 -48.35113281 27.58710937 -48.30664062 28.85546875 C-48.20031296 31.90352853 -48.09828219 34.9516719 -48 38 C-46.515 37.505 -46.515 37.505 -45 37 C-45 36.34 -45 35.68 -45 35 C-43.28667246 33.41466298 -41.50310953 31.90458785 -39.6875 30.4375 C-38.70136719 29.63183594 -37.71523437 28.82617188 -36.69921875 27.99609375 C-34 26 -34 26 -31 25 C-31 24.34 -31 23.68 -31 23 C-29.3046875 21.4765625 -29.3046875 21.4765625 -26.875 19.625 C-21.63181755 15.55364629 -16.61997273 11.25969115 -11.64794922 6.86181641 C-7.21723223 3 -7.21723223 3 -5 3 C-5 2.34 -5 1.68 -5 1 C-3 0 -3 0 0 0 Z " fill="#0260F9" transform="translate(113,51)"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.4 KiB |
@@ -1,50 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.999" fill="#1e194e" d="M 88.5,55.5 C 81.8381,62.3293 75.3381,69.3293 69,76.5C 65.6999,74.6976 62.5332,72.6976 59.5,70.5C 56.2544,72.0392 53.0877,73.7059 50,75.5C 50.3165,72.2538 50.4832,68.9205 50.5,65.5C 53.517,65.4437 53.8503,65.1103 51.5,64.5C 53.2266,62.2428 55.56,60.9095 58.5,60.5C 62.1612,60.5036 65.8279,60.5036 69.5,60.5C 73.1729,59.5386 75.8396,58.0386 77.5,56C 81.1516,55.5014 84.8183,55.3347 88.5,55.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#201b50" d="M 88.5,55.5 C 84.8183,55.3347 81.1516,55.5014 77.5,56C 75.8396,58.0386 73.1729,59.5386 69.5,60.5C 65.8279,60.5036 62.1612,60.5036 58.5,60.5C 55.56,60.9095 53.2266,62.2428 51.5,64.5C 50.448,64.6495 49.448,64.4828 48.5,64C 45.9841,61.3167 43.3174,58.8167 40.5,56.5C 56.8442,55.0097 73.1775,53.6764 89.5,52.5C 90.6653,53.8595 90.332,54.8595 88.5,55.5 Z"/></g>
|
||||
<g><path style="opacity:0.965" fill="#14102b" d="M 34.5,65.5 C 34.5,64.5 34.5,63.5 34.5,62.5C 31.4281,62.1826 28.4281,62.5159 25.5,63.5C 25.0576,64.7387 24.3909,65.7387 23.5,66.5C 23.2606,64.5328 23.5939,62.6995 24.5,61C 28.1087,61.2384 31.7754,61.4051 35.5,61.5C 35.7678,63.099 35.4345,64.4324 34.5,65.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#211c57" d="M 34.5,65.5 C 33.5655,66.5676 33.2322,67.901 33.5,69.5C 30.5,69.5 27.5,69.5 24.5,69.5C 23.596,68.791 23.2627,67.791 23.5,66.5C 24.3909,65.7387 25.0576,64.7387 25.5,63.5C 28.4281,62.5159 31.4281,62.1826 34.5,62.5C 34.5,63.5 34.5,64.5 34.5,65.5 Z"/></g>
|
||||
<g><path style="opacity:0.396" fill="#110e27" d="M 34.5,65.5 C 34.3653,67.5542 35.032,69.2209 36.5,70.5C 35.391,70.5569 34.391,70.8902 33.5,71.5C 30.5,70.8333 27.5,70.1667 24.5,69.5C 27.5,69.5 30.5,69.5 33.5,69.5C 33.2322,67.901 33.5655,66.5676 34.5,65.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1b1745" d="M 36.5,70.5 C 44.3636,69.5592 46.6969,72.8925 43.5,80.5C 44.3202,82.1112 45.6536,82.7778 47.5,82.5C 47.6104,85.0588 46.9438,87.3921 45.5,89.5C 43.2534,88.6258 40.9201,88.2924 38.5,88.5C 38.0423,85.6062 38.709,83.1062 40.5,81C 38.1902,80.5034 35.8568,80.3367 33.5,80.5C 33.5,82.8333 33.5,85.1667 33.5,87.5C 29.2778,87.9219 25.2778,87.2552 21.5,85.5C 22.3928,82.9159 22.7261,80.2492 22.5,77.5C 25.8333,77.8333 29.1667,78.1667 32.5,78.5C 32.9926,76.1944 33.3259,73.861 33.5,71.5C 34.391,70.8902 35.391,70.5569 36.5,70.5 Z"/></g>
|
||||
<g><path style="opacity:0.999" fill="#1c1745" d="M 55.5,78.5 C 56.209,79.404 57.209,79.7373 58.5,79.5C 58.5,81.1667 58.5,82.8333 58.5,84.5C 58.0296,85.6935 57.0296,86.3601 55.5,86.5C 53.027,86.2986 50.6936,85.632 48.5,84.5C 49.3742,82.2534 49.7076,79.9201 49.5,77.5C 51.6208,77.3253 53.6208,77.6586 55.5,78.5 Z"/></g>
|
||||
<g><path style="opacity:0.016" fill="#0b0717" d="M 55.5,78.5 C 56.8333,78.5 58.1667,78.5 59.5,78.5C 59.7947,80.7354 59.4614,82.7354 58.5,84.5C 58.5,82.8333 58.5,81.1667 58.5,79.5C 57.209,79.7373 56.209,79.404 55.5,78.5 Z"/></g>
|
||||
<g><path style="opacity:0.106" fill="#050410" d="M 15.5,84.5 C 17.1667,84.5 18.8333,84.5 20.5,84.5C 20.7845,86.4147 20.4511,88.0813 19.5,89.5C 19.5,88.1667 19.5,86.8333 19.5,85.5C 17.901,85.7678 16.5676,85.4345 15.5,84.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1d194c" d="M 15.5,84.5 C 16.5676,85.4345 17.901,85.7678 19.5,85.5C 19.5,86.8333 19.5,88.1667 19.5,89.5C 19.6567,90.8734 19.49,92.2068 19,93.5C 16.6194,92.565 14.1194,92.2317 11.5,92.5C 11.5,89.8333 11.5,87.1667 11.5,84.5C 12.8333,84.5 14.1667,84.5 15.5,84.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1f1a4f" d="M 34.5,94.5 C 34.5,96.1667 34.5,97.8333 34.5,99.5C 32.5328,99.7394 30.6995,99.4061 29,98.5C 27.9914,100.025 27.4914,101.692 27.5,103.5C 24.8333,103.167 22.1667,102.833 19.5,102.5C 19.5,99.8333 19.5,97.1667 19.5,94.5C 21.9496,94.298 24.283,94.6314 26.5,95.5C 27.4345,94.4324 27.7678,93.099 27.5,91.5C 30.461,91.4642 32.7943,92.4642 34.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:0.765" fill="#130f2a" d="M 34.5,94.5 C 32.7943,92.4642 30.461,91.4642 27.5,91.5C 27.7678,93.099 27.4345,94.4324 26.5,95.5C 26.5,93.8333 26.5,92.1667 26.5,90.5C 29.5176,90.7038 32.5176,91.0371 35.5,91.5C 35.7373,92.791 35.404,93.791 34.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#201b53" d="M 68.5,94.5 C 68.6602,96.1992 68.4935,97.8659 68,99.5C 57.7983,97.7009 53.465,102.034 55,112.5C 57.6963,116.442 61.363,117.775 66,116.5C 67.7058,117.308 68.5391,118.641 68.5,120.5C 54.508,121.506 49.1747,115.172 52.5,101.5C 53.3199,99.6812 54.3199,98.0145 55.5,96.5C 59.401,93.4689 63.7343,92.8023 68.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:0.173" fill="#090716" d="M 110.5,94.5 C 110.5,94.8333 110.5,95.1667 110.5,95.5C 110.5,104.167 110.5,112.833 110.5,121.5C 112.167,121.5 113.833,121.5 115.5,121.5C 115.833,121.5 116.167,121.5 116.5,121.5C 114.393,122.468 112.059,122.802 109.5,122.5C 109.173,112.985 109.506,103.652 110.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:0.999" fill="#211c57" d="M 110.5,95.5 C 112.167,95.5 113.833,95.5 115.5,95.5C 115.335,98.8499 115.502,102.183 116,105.5C 117.267,106.91 117.267,108.576 116,110.5C 115.501,114.152 115.335,117.818 115.5,121.5C 113.833,121.5 112.167,121.5 110.5,121.5C 110.5,112.833 110.5,104.167 110.5,95.5 Z"/></g>
|
||||
<g><path style="opacity:0.999" fill="#201b55" d="M 152.5,94.5 C 157.5,94.5 162.5,94.5 167.5,94.5C 167.5,96.1667 167.5,97.8333 167.5,99.5C 167.5,99.8333 167.5,100.167 167.5,100.5C 164.833,100.5 162.167,100.5 159.5,100.5C 158.549,101.919 158.216,103.585 158.5,105.5C 161.167,105.5 163.833,105.5 166.5,105.5C 166.5,107.167 166.5,108.833 166.5,110.5C 163.833,110.5 161.167,110.5 158.5,110.5C 158.5,114.167 158.5,117.833 158.5,121.5C 156.5,121.5 154.5,121.5 152.5,121.5C 152.5,112.5 152.5,103.5 152.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:0.997" fill="#221c51" d="M 6.5,98.5 C 8.83333,98.5 11.1667,98.5 13.5,98.5C 13.5,100.167 13.5,101.833 13.5,103.5C 11.2646,103.205 9.26465,103.539 7.5,104.5C 7.5,105.5 7.5,106.5 7.5,107.5C 5.13895,107.326 2.80562,106.993 0.5,106.5C 0.201097,104.396 0.534431,102.396 1.5,100.5C 3.97851,101.964 5.64518,101.297 6.5,98.5 Z"/></g>
|
||||
<g><path style="opacity:0.427" fill="#110d26" d="M 7.5,104.5 C 9.26465,103.539 11.2646,103.205 13.5,103.5C 13.5,101.833 13.5,100.167 13.5,98.5C 11.1667,98.5 8.83333,98.5 6.5,98.5C 6.36899,97.7611 6.53566,97.0944 7,96.5C 9.3806,97.435 11.8806,97.7683 14.5,97.5C 14.5,99.8333 14.5,102.167 14.5,104.5C 12.1667,104.5 9.83333,104.5 7.5,104.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1c1848" d="M 71.5,115.5 C 71.5,113.833 71.5,112.167 71.5,110.5C 72.1434,107.012 74.1434,104.512 77.5,103C 82.4775,103.051 87.4775,103.218 92.5,103.5C 92.5,109.833 92.5,116.167 92.5,122.5C 87.2864,121.593 82.1197,121.593 77,122.5C 73.8597,121.193 72.0264,118.86 71.5,115.5 Z M 83.5,108.5 C 83.8333,109.5 84.5,110.167 85.5,110.5C 86.4929,115.675 84.4929,117.509 79.5,116C 77.4003,111.658 78.7336,109.158 83.5,108.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1e194e" d="M 100.5,110.5 C 99.5318,112.607 99.1984,114.941 99.5,117.5C 102.167,117.5 104.833,117.5 107.5,117.5C 107.5,118.833 107.5,120.167 107.5,121.5C 104.5,121.5 101.5,121.5 98.5,121.5C 96.2475,121.084 94.7475,119.751 94,117.5C 91.8416,107 96.0082,102.167 106.5,103C 108.25,104.754 108.917,106.921 108.5,109.5C 105.518,107.923 102.851,108.256 100.5,110.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1e194f" d="M 110.5,95.5 C 110.5,95.1667 110.5,94.8333 110.5,94.5C 112.5,94.5 114.5,94.5 116.5,94.5C 116.335,97.8499 116.502,101.183 117,104.5C 121.516,101.504 125.35,102.171 128.5,106.5C 128.5,111.5 128.5,116.5 128.5,121.5C 126.5,121.5 124.5,121.5 122.5,121.5C 122.665,117.818 122.499,114.152 122,110.5C 119.81,107.751 118.143,108.085 117,111.5C 116.502,114.817 116.335,118.15 116.5,121.5C 116.167,121.5 115.833,121.5 115.5,121.5C 115.335,117.818 115.501,114.152 116,110.5C 117.267,108.576 117.267,106.91 116,105.5C 115.502,102.183 115.335,98.8499 115.5,95.5C 113.833,95.5 112.167,95.5 110.5,95.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1e194c" d="M 149.5,109.5 C 149.5,110.833 149.5,112.167 149.5,113.5C 145.167,113.5 140.833,113.5 136.5,113.5C 136.263,114.791 136.596,115.791 137.5,116.5C 139.5,117.833 141.5,117.833 143.5,116.5C 145.735,116.205 147.735,116.539 149.5,117.5C 149.489,119.017 148.823,120.184 147.5,121C 141.255,124.816 135.755,123.983 131,118.5C 130.51,117.207 130.343,115.873 130.5,114.5C 130.5,113.5 130.5,112.5 130.5,111.5C 133.168,102.251 138.835,100.084 147.5,105C 148.582,106.33 149.249,107.83 149.5,109.5 Z M 139.5,107.5 C 140.922,107.709 142.255,108.209 143.5,109C 141.5,109.667 139.5,109.667 137.5,109C 138.416,108.722 139.082,108.222 139.5,107.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#211c56" d="M 85.5,110.5 C 84.5,110.167 83.8333,109.5 83.5,108.5C 82.7375,107.732 81.7375,107.232 80.5,107C 84.0409,105.56 87.7076,104.726 91.5,104.5C 91.5,110.167 91.5,115.833 91.5,121.5C 87.9638,120.396 84.6305,119.396 81.5,118.5C 86.3223,117.497 87.6556,114.831 85.5,110.5 Z"/></g>
|
||||
<g><path style="opacity:0.894" fill="#1d194d" d="M 187.5,111.5 C 187.179,113.048 186.179,113.715 184.5,113.5C 183.933,110.529 182.933,107.695 181.5,105C 179.288,104.211 177.288,104.378 175.5,105.5C 174.833,105.5 174.5,105.833 174.5,106.5C 174.5,111.5 174.5,116.5 174.5,121.5C 172.5,121.5 170.5,121.5 168.5,121.5C 168.5,117.833 168.5,114.167 168.5,110.5C 168.5,108.833 168.5,107.167 168.5,105.5C 168.5,103.5 168.5,101.5 168.5,99.5C 168.5,97.8333 168.5,96.1667 168.5,94.5C 170.833,94.5 173.167,94.5 175.5,94.5C 175.5,97.5 175.5,100.5 175.5,103.5C 177.857,103.337 180.19,103.503 182.5,104C 183.818,106.824 185.485,109.324 187.5,111.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#1e194e" d="M 176.5,107.5 C 176.672,106.508 176.338,105.842 175.5,105.5C 177.288,104.378 179.288,104.211 181.5,105C 182.933,107.695 183.933,110.529 184.5,113.5C 186.179,113.715 187.179,113.048 187.5,111.5C 188.171,104.419 191.838,102.086 198.5,104.5C 194.202,113.291 189.702,121.958 185,130.5C 182.205,131.783 179.372,131.783 176.5,130.5C 178.633,127.065 180.633,123.565 182.5,120C 180.623,115.746 178.623,111.579 176.5,107.5 Z"/></g>
|
||||
<g><path style="opacity:0.2" fill="#080616" d="M 19.5,108.5 C 17.5,108.5 15.5,108.5 13.5,108.5C 13.5,110.167 13.5,111.833 13.5,113.5C 11.5,113.5 9.5,113.5 7.5,113.5C 8.91866,112.549 10.5853,112.216 12.5,112.5C 12.5,110.833 12.5,109.167 12.5,107.5C 15.0593,107.198 17.3926,107.532 19.5,108.5 Z"/></g>
|
||||
<g><path style="opacity:0.315" fill="#0a081a" d="M 128.5,106.5 C 129.167,108.167 129.833,109.833 130.5,111.5C 130.5,112.5 130.5,113.5 130.5,114.5C 129.527,116.948 129.194,119.615 129.5,122.5C 126.941,122.802 124.607,122.468 122.5,121.5C 124.5,121.5 126.5,121.5 128.5,121.5C 128.5,116.5 128.5,111.5 128.5,106.5 Z"/></g>
|
||||
<g><path style="opacity:0.067" fill="#060411" d="M 152.5,94.5 C 152.5,103.5 152.5,112.5 152.5,121.5C 154.5,121.5 156.5,121.5 158.5,121.5C 158.5,117.833 158.5,114.167 158.5,110.5C 161.167,110.5 163.833,110.5 166.5,110.5C 166.5,108.833 166.5,107.167 166.5,105.5C 163.833,105.5 161.167,105.5 158.5,105.5C 158.216,103.585 158.549,101.919 159.5,100.5C 159.5,101.833 159.5,103.167 159.5,104.5C 162.167,104.5 164.833,104.5 167.5,104.5C 167.5,103.167 167.5,101.833 167.5,100.5C 167.5,100.167 167.5,99.8333 167.5,99.5C 167.833,99.5 168.167,99.5 168.5,99.5C 168.5,101.5 168.5,103.5 168.5,105.5C 167.167,107.167 167.167,108.833 168.5,110.5C 168.5,114.167 168.5,117.833 168.5,121.5C 170.5,121.5 172.5,121.5 174.5,121.5C 174.5,116.5 174.5,111.5 174.5,106.5C 175.167,106.5 175.5,106.167 175.5,105.5C 176.338,105.842 176.672,106.508 176.5,107.5C 175.513,112.305 175.179,117.305 175.5,122.5C 172.833,122.5 170.167,122.5 167.5,122.5C 167.5,118.833 167.5,115.167 167.5,111.5C 164.833,111.5 162.167,111.5 159.5,111.5C 159.5,115.167 159.5,118.833 159.5,122.5C 156.833,122.5 154.167,122.5 151.5,122.5C 151.173,112.985 151.506,103.652 152.5,94.5 Z M 159.5,100.5 C 162.167,100.5 164.833,100.5 167.5,100.5C 167.5,101.833 167.5,103.167 167.5,104.5C 164.833,104.5 162.167,104.5 159.5,104.5C 159.5,103.167 159.5,101.833 159.5,100.5 Z"/></g>
|
||||
<g><path style="opacity:0.996" fill="#1f1a4d" d="M 19.5,108.5 C 20.6935,108.97 21.3601,109.97 21.5,111.5C 21.3333,112.5 21.1667,113.5 21,114.5C 19.0438,114.784 16.8771,114.784 14.5,114.5C 14.5,115.833 14.5,117.167 14.5,118.5C 11.6122,117.99 9.27887,118.656 7.5,120.5C 8.91866,121.451 10.5853,121.784 12.5,121.5C 12.5,122.833 12.5,124.167 12.5,125.5C 10.5,125.5 8.5,125.5 6.5,125.5C 6.5,124.5 6.5,123.5 6.5,122.5C 4.78161,121.776 2.94828,121.109 1,120.5C 0.506489,118.866 0.339822,117.199 0.5,115.5C 3.38779,116.01 5.72113,115.344 7.5,113.5C 9.5,113.5 11.5,113.5 13.5,113.5C 13.5,111.833 13.5,110.167 13.5,108.5C 15.5,108.5 17.5,108.5 19.5,108.5 Z"/></g>
|
||||
<g><path style="opacity:0.376" fill="#0d0a21" d="M 149.5,109.5 C 150.451,110.919 150.784,112.585 150.5,114.5C 145.706,113.903 141.373,114.57 137.5,116.5C 136.596,115.791 136.263,114.791 136.5,113.5C 140.833,113.5 145.167,113.5 149.5,113.5C 149.5,112.167 149.5,110.833 149.5,109.5 Z"/></g>
|
||||
<g><path style="opacity:0.018" fill="#05030e" d="M 143.5,116.5 C 145.693,115.203 148.027,115.203 150.5,116.5C 150.376,117.107 150.043,117.44 149.5,117.5C 147.735,116.539 145.735,116.205 143.5,116.5 Z"/></g>
|
||||
<g><path style="opacity:0.999" fill="#1b1743" d="M 68.5,94.5 C 70.2343,96.6832 71.2343,99.3498 71.5,102.5C 71.1667,102.833 70.8333,103.167 70.5,103.5C 65.179,99.0661 60.679,99.7328 57,105.5C 55.5459,111.594 57.8792,115.261 64,116.5C 67.699,115.764 70.199,113.764 71.5,110.5C 71.5,112.167 71.5,113.833 71.5,115.5C 70.6909,117.292 70.1909,119.292 70,121.5C 62.5104,124.544 56.1771,122.877 51,116.5C 46.8894,108.375 48.3894,101.708 55.5,96.5C 54.3199,98.0145 53.3199,99.6812 52.5,101.5C 49.1747,115.172 54.508,121.506 68.5,120.5C 68.5391,118.641 67.7058,117.308 66,116.5C 61.363,117.775 57.6963,116.442 55,112.5C 53.465,102.034 57.7983,97.7009 68,99.5C 68.4935,97.8659 68.6602,96.1992 68.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:0.641" fill="#151232" d="M 100.5,110.5 C 100.062,116.313 102.562,117.98 108,115.5C 108.497,117.81 108.663,120.143 108.5,122.5C 104.875,124.081 101.542,123.748 98.5,121.5C 101.5,121.5 104.5,121.5 107.5,121.5C 107.5,120.167 107.5,118.833 107.5,117.5C 104.833,117.5 102.167,117.5 99.5,117.5C 99.1984,114.941 99.5318,112.607 100.5,110.5 Z"/></g>
|
||||
<g><path style="opacity:0.518" fill="#0d091d" d="M 7.5,120.5 C 9.5,120.5 11.5,120.5 13.5,120.5C 13.5,122.5 13.5,124.5 13.5,126.5C 10.8333,126.5 8.16667,126.5 5.5,126.5C 5.23219,124.901 5.56552,123.568 6.5,122.5C 6.5,123.5 6.5,124.5 6.5,125.5C 8.5,125.5 10.5,125.5 12.5,125.5C 12.5,124.167 12.5,122.833 12.5,121.5C 10.5853,121.784 8.91866,121.451 7.5,120.5 Z"/></g>
|
||||
<g><path style="opacity:0.176" fill="#0d091c" d="M 22.5,128.5 C 21.2209,127.032 19.5542,126.365 17.5,126.5C 17.5,128.167 17.5,129.833 17.5,131.5C 16.8333,132.167 16.1667,132.833 15.5,133.5C 15.5,132.5 15.5,131.5 15.5,130.5C 13.5,130.5 11.5,130.5 9.5,130.5C 9.5,131.833 9.5,133.167 9.5,134.5C 11.5,134.5 13.5,134.5 15.5,134.5C 13.3926,135.468 11.0593,135.802 8.5,135.5C 8.5,133.5 8.5,131.5 8.5,129.5C 11.1667,129.5 13.8333,129.5 16.5,129.5C 16.5,128.167 16.5,126.833 16.5,125.5C 18.5273,125.338 20.5273,125.505 22.5,126C 23.7736,126.977 23.7736,127.811 22.5,128.5 Z"/></g>
|
||||
<g><path style="opacity:0.999" fill="#211c58" d="M 15.5,133.5 C 15.5,133.833 15.5,134.167 15.5,134.5C 13.5,134.5 11.5,134.5 9.5,134.5C 9.5,133.167 9.5,131.833 9.5,130.5C 11.5,130.5 13.5,130.5 15.5,130.5C 15.5,131.5 15.5,132.5 15.5,133.5 Z"/></g>
|
||||
<g><path style="opacity:0.993" fill="#1b1642" d="M 22.5,128.5 C 24.0419,129.163 25.7086,129.83 27.5,130.5C 26.7542,131.736 26.4208,133.07 26.5,134.5C 24.5,134.5 22.5,134.5 20.5,134.5C 20.5,133.5 20.5,132.5 20.5,131.5C 19.5,131.5 18.5,131.5 17.5,131.5C 17.5,129.833 17.5,128.167 17.5,126.5C 19.5542,126.365 21.2209,127.032 22.5,128.5 Z"/></g>
|
||||
<g><path style="opacity:0.059" fill="#04030c" d="M 34.5,135.5 C 35.9187,134.549 37.5853,134.216 39.5,134.5C 39.7678,136.099 39.4345,137.432 38.5,138.5C 38.5,137.5 38.5,136.5 38.5,135.5C 37.1667,135.5 35.8333,135.5 34.5,135.5 Z"/></g>
|
||||
<g><path style="opacity:0.424" fill="#120e27" d="M 55.5,133.5 C 56.8333,133.5 58.1667,133.5 59.5,133.5C 59.762,134.978 59.4287,136.311 58.5,137.5C 56.4501,136.923 55.4501,135.59 55.5,133.5 Z"/></g>
|
||||
<g><path style="opacity:0.025" fill="#04030d" d="M 23.5,136.5 C 21.744,137.552 21.0773,139.219 21.5,141.5C 20.5386,139.735 20.2053,137.735 20.5,135.5C 21.791,135.263 22.791,135.596 23.5,136.5 Z"/></g>
|
||||
<g><path style="opacity:0.996" fill="#1c1745" d="M 23.5,136.5 C 24.9778,136.238 26.3112,136.571 27.5,137.5C 26.6906,139.071 26.3573,140.738 26.5,142.5C 24.7839,142.371 23.1172,142.038 21.5,141.5C 21.0773,139.219 21.744,137.552 23.5,136.5 Z"/></g>
|
||||
<g><path style="opacity:0.998" fill="#1f1a51" d="M 34.5,135.5 C 35.8333,135.5 37.1667,135.5 38.5,135.5C 38.5,136.5 38.5,137.5 38.5,138.5C 37.7375,139.268 36.7375,139.768 35.5,140C 34.7476,140.671 34.4142,141.504 34.5,142.5C 32.8333,142.5 31.1667,142.5 29.5,142.5C 29.5,140.833 29.5,139.167 29.5,137.5C 31.7812,137.923 33.4479,137.256 34.5,135.5 Z"/></g>
|
||||
<g><path style="opacity:0.063" fill="#060511" d="M 29.5,137.5 C 29.5,139.167 29.5,140.833 29.5,142.5C 31.1667,142.5 32.8333,142.5 34.5,142.5C 32.7354,143.461 30.7354,143.795 28.5,143.5C 28.2053,141.265 28.5386,139.265 29.5,137.5 Z"/></g>
|
||||
<g><path style="opacity:0.384" fill="#0c091d" d="M 50.5,138.5 C 52.1667,138.5 53.8333,138.5 55.5,138.5C 55.5,140.167 55.5,141.833 55.5,143.5C 53.8333,143.5 52.1667,143.5 50.5,143.5C 50.5,141.833 50.5,140.167 50.5,138.5 Z"/></g>
|
||||
<g><path style="opacity:0.996" fill="#221d5c" d="M 51.5,139.5 C 52.5,139.5 53.5,139.5 54.5,139.5C 54.5,140.5 54.5,141.5 54.5,142.5C 53.5,142.5 52.5,142.5 51.5,142.5C 51.5,141.5 51.5,140.5 51.5,139.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#2b2450" d="M 41.5,141.5 C 46.7074,140.94 47.7074,142.607 44.5,146.5C 43.2638,145.754 41.9305,145.421 40.5,145.5C 40.4326,144.041 40.7659,142.708 41.5,141.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 18 KiB |
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="60px" height="60px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.998" fill="#9b59b6" d="M 1.5,-0.5 C 20.1667,-0.5 38.8333,-0.5 57.5,-0.5C 57.8333,0.5 58.5,1.16667 59.5,1.5C 59.5,20.1667 59.5,38.8333 59.5,57.5C 58.5,57.8333 57.8333,58.5 57.5,59.5C 38.8333,59.5 20.1667,59.5 1.5,59.5C 1.16667,58.5 0.5,57.8333 -0.5,57.5C -0.5,38.8333 -0.5,20.1667 -0.5,1.5C 0.5,1.16667 1.16667,0.5 1.5,-0.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f5eef7" d="M 27.5,17.5 C 29.8568,17.3367 32.1902,17.5034 34.5,18C 36.2861,18.1962 37.6195,19.0295 38.5,20.5C 35.0027,20.5276 31.336,20.6943 27.5,21C 23.5,26 23.5,31 27.5,36C 30.8936,36.7517 34.227,36.5851 37.5,35.5C 38.7112,36.2739 38.7112,37.1072 37.5,38C 25.0329,41.2034 19.8663,36.3701 22,23.5C 23.3597,20.9774 25.193,18.9774 27.5,17.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m576 512 277.333 277.333-64 64L512 576 234.667 853.333l-64-64L448 512 170.667 234.667l64-64L512 448l277.333-277.333 64 64L576 512z"/></svg>
|
||||
|
Before Width: | Height: | Size: 250 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4261" width="200" height="200"><path d="M704.38432 718.72c6.304-21.632 3.872-41.408-6.624-56.128-9.568-13.504-25.792-21.28-45.28-22.208l-369.472-4.8h-0.096a6.688 6.688 0 0 1-5.568-3.008l-0.032-0.032a8.192 8.192 0 0 1-0.896-6.624 10.24 10.24 0 0 1 8.672-6.656l372.736-4.8c44.16-2.08 92.16-37.824 108.96-81.632l21.28-55.52a11.584 11.584 0 0 0 0.64-7.168 242.4 242.4 0 0 0-236.8-189.664 242.656 242.656 0 0 0-229.856 164.768 110.176 110.176 0 0 0-76.544-21.28 109.28 109.28 0 0 0-94.816 135.648 155.04 155.04 0 0 0-150.656 155.168c0 7.456 0.608 15.008 1.504 22.496a7.456 7.456 0 0 0 7.2 6.304h681.888a9.312 9.312 0 0 0 8.672-6.624l5.12-18.208z m117.6-237.376c-3.296 0-6.88 0-10.176 0.48-2.4 0-4.512 1.76-5.408 4.16l-14.4 50.112c-6.304 21.632-3.904 41.408 6.592 56.16 9.632 13.504 25.824 21.248 45.344 22.176l78.656 4.832c2.368 0 4.512 1.12 5.664 3.008a8.64 8.64 0 0 1 0.928 6.656 10.24 10.24 0 0 1-8.704 6.624l-81.952 4.8c-44.416 2.08-92.096 37.824-108.928 81.664l-5.984 15.296c-1.216 3.04 0.928 6.048 4.192 6.048h281.504a7.36 7.36 0 0 0 7.2-5.376c4.8-17.408 7.488-35.712 7.488-54.624 0-111.04-90.656-201.696-202.016-201.696z" fill="#F38020" p-id="4262"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="180px" height="180px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:1" fill="#010101" d="M -0.5,-0.5 C 59.5,-0.5 119.5,-0.5 179.5,-0.5C 179.5,59.5 179.5,119.5 179.5,179.5C 119.5,179.5 59.5,179.5 -0.5,179.5C -0.5,119.5 -0.5,59.5 -0.5,-0.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#e7b446" d="M 136.5,82.5 C 135.508,82.3284 134.842,82.6618 134.5,83.5C 126.998,77.3032 118.331,74.8032 108.5,76C 102.483,64.6597 93.1499,60.3263 80.5,63C 72.7137,66.7933 67.8804,72.96 66,81.5C 65.2716,78.7695 65.4383,76.1029 66.5,73.5C 54.4191,71.2353 44.9191,75.2353 38,85.5C 37.8138,88.0356 37.3138,90.369 36.5,92.5C 36.7845,90.5853 36.4511,88.9187 35.5,87.5C 41.1037,72.5731 51.7704,66.5731 67.5,69.5C 81.9423,52.9757 95.6089,53.6424 108.5,71.5C 113.802,72.3295 119.136,72.8295 124.5,73C 129.598,74.9467 133.598,78.1133 136.5,82.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#eb9339" d="M 35.5,87.5 C 36.4511,88.9187 36.7845,90.5853 36.5,92.5C 32.7604,92.2408 29.0938,92.5741 25.5,93.5C 24.5067,98.1196 24.1734,102.786 24.5,107.5C 23.5233,104.713 23.19,101.713 23.5,98.5C 21.8333,98.5 20.1667,98.5 18.5,98.5C 17.6185,94.0907 18.9518,90.5907 22.5,88C 26.8206,87.501 31.1539,87.3343 35.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#896c53" d="M 131.5,87.5 C 132.919,86.5489 134.585,86.2155 136.5,86.5C 137.5,86.8333 138.167,87.5 138.5,88.5C 137.833,96.5 137.167,104.5 136.5,112.5C 136.5,104.167 136.5,95.8333 136.5,87.5C 134.833,87.5 133.167,87.5 131.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#eb9038" d="M 105.5,87.5 C 108.428,88.5914 110.594,90.5914 112,93.5C 112.816,98.6842 112.65,103.684 111.5,108.5C 111.5,105.167 111.5,101.833 111.5,98.5C 109.833,98.5 108.167,98.5 106.5,98.5C 106.714,96.8561 106.38,95.3561 105.5,94C 102.312,92.6842 98.9783,92.1842 95.5,92.5C 95.5,94.5 95.5,96.5 95.5,98.5C 93.8333,98.5 92.1667,98.5 90.5,98.5C 90.5,94.8333 90.5,91.1667 90.5,87.5C 95.5,87.5 100.5,87.5 105.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f19136" d="M 128.5,99.5 C 126.621,98.6586 124.621,98.3253 122.5,98.5C 121.228,91.9788 120.561,91.9788 120.5,98.5C 118.833,98.5 117.167,98.5 115.5,98.5C 115.5,95.5 115.5,92.5 115.5,89.5C 115.611,88.8826 115.944,88.3826 116.5,88C 119.227,87.1816 121.894,87.3483 124.5,88.5C 125.84,92.1902 127.174,95.8569 128.5,99.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#63564c" d="M 131.5,87.5 C 131.666,94.5079 131.5,101.508 131,108.5C 130.209,107.255 129.709,105.922 129.5,104.5C 130.167,98.8333 130.833,93.1667 131.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#161312" d="M 106.5,98.5 C 108.5,107.833 104.833,111.5 95.5,109.5C 95.5,105.833 95.5,102.167 95.5,98.5C 95.5,96.5 95.5,94.5 95.5,92.5C 98.9783,92.1842 102.312,92.6842 105.5,94C 106.38,95.3561 106.714,96.8561 106.5,98.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#8a6a50" d="M 86.5,111.5 C 86.5,106.167 86.5,100.833 86.5,95.5C 85.1667,95.5 83.8333,95.5 82.5,95.5C 82.8195,100.363 82.4861,105.03 81.5,109.5C 81.5,104.5 81.5,99.5 81.5,94.5C 83.5,94.5 85.5,94.5 87.5,94.5C 87.8222,100.358 87.4889,106.025 86.5,111.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#8c6a51" d="M 40.5,87.5 C 41.9187,86.5489 43.5853,86.2155 45.5,86.5C 45.5,96.1667 45.5,105.833 45.5,115.5C 43.5853,115.784 41.9187,115.451 40.5,114.5C 41.8333,114.5 43.1667,114.5 44.5,114.5C 44.5,105.5 44.5,96.5 44.5,87.5C 43.1667,87.5 41.8333,87.5 40.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#ec7d34" d="M 50.5,94.5 C 65.3305,91.1635 70.8305,96.8301 67,111.5C 66.6924,112.308 66.1924,112.975 65.5,113.5C 50.2171,118.382 44.3838,113.049 48,97.5C 49.045,96.6266 49.8783,95.6266 50.5,94.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#866750" d="M 75.5,109.5 C 74.5139,105.03 74.1805,100.363 74.5,95.5C 73.1667,95.5 71.8333,95.5 70.5,95.5C 70.5,100.833 70.5,106.167 70.5,111.5C 69.5111,106.025 69.1778,100.358 69.5,94.5C 71.5,94.5 73.5,94.5 75.5,94.5C 75.5,99.5 75.5,104.5 75.5,109.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#856650" d="M 105.5,87.5 C 100.5,87.5 95.5,87.5 90.5,87.5C 90.5,91.1667 90.5,94.8333 90.5,98.5C 90.5,103.833 90.5,109.167 90.5,114.5C 95.8333,114.5 101.167,114.5 106.5,114.5C 101.025,115.489 95.358,115.822 89.5,115.5C 89.5,105.833 89.5,96.1667 89.5,86.5C 95.0262,86.1786 100.36,86.5119 105.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#e98738" d="M 136.5,82.5 C 138.557,84.2702 140.391,86.2702 142,88.5C 147.785,87.5656 153.618,87.2323 159.5,87.5C 159.5,89.1667 159.5,90.8333 159.5,92.5C 155.154,92.3343 150.821,92.501 146.5,93C 145.62,94.3561 145.286,95.8561 145.5,97.5C 150.194,96.8955 154.528,97.7289 158.5,100C 160.045,101.822 160.712,103.989 160.5,106.5C 160.493,108.369 160.16,110.036 159.5,111.5C 153.355,110.51 147.022,110.177 140.5,110.5C 144.647,109.675 148.981,109.175 153.5,109C 154.833,107.333 154.833,105.667 153.5,104C 142.253,104.919 137.253,99.7524 138.5,88.5C 138.167,87.5 137.5,86.8333 136.5,86.5C 135.833,85.5 135.167,84.5 134.5,83.5C 134.842,82.6618 135.508,82.3284 136.5,82.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#0d0b0a" d="M 53.5,99.5 C 62.1594,97.6756 64.8261,100.842 61.5,109C 52.7603,111.132 50.0937,107.965 53.5,99.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f37e31" d="M 40.5,87.5 C 41.8333,87.5 43.1667,87.5 44.5,87.5C 44.5,96.5 44.5,105.5 44.5,114.5C 43.1667,114.5 41.8333,114.5 40.5,114.5C 40.5,105.5 40.5,96.5 40.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f07531" d="M 90.5,98.5 C 92.1667,98.5 93.8333,98.5 95.5,98.5C 95.5,102.167 95.5,105.833 95.5,109.5C 104.833,111.5 108.5,107.833 106.5,98.5C 108.167,98.5 109.833,98.5 111.5,98.5C 111.5,101.833 111.5,105.167 111.5,108.5C 111.238,111.699 109.572,113.699 106.5,114.5C 101.167,114.5 95.8333,114.5 90.5,114.5C 90.5,109.167 90.5,103.833 90.5,98.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#b7754a" d="M 115.5,89.5 C 115.5,92.5 115.5,95.5 115.5,98.5C 115.5,103.833 115.5,109.167 115.5,114.5C 117.167,114.5 118.833,114.5 120.5,114.5C 118.735,115.461 116.735,115.795 114.5,115.5C 114.174,106.651 114.507,97.9839 115.5,89.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f2762f" d="M 115.5,98.5 C 117.167,98.5 118.833,98.5 120.5,98.5C 120.5,103.833 120.5,109.167 120.5,114.5C 118.833,114.5 117.167,114.5 115.5,114.5C 115.5,109.167 115.5,103.833 115.5,98.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f07a32" d="M 131.5,87.5 C 133.167,87.5 134.833,87.5 136.5,87.5C 136.5,95.8333 136.5,104.167 136.5,112.5C 136.389,113.117 136.056,113.617 135.5,114C 132.833,114.667 130.167,114.667 127.5,114C 125.448,108.957 123.781,103.79 122.5,98.5C 124.621,98.3253 126.621,98.6586 128.5,99.5C 128.629,101.216 128.962,102.883 129.5,104.5C 129.709,105.922 130.209,107.255 131,108.5C 131.5,101.508 131.666,94.5079 131.5,87.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f1702f" d="M 18.5,98.5 C 20.1667,98.5 21.8333,98.5 23.5,98.5C 23.19,101.713 23.5233,104.713 24.5,107.5C 24.8333,108.5 25.5,109.167 26.5,109.5C 29.6248,110.479 32.9581,110.813 36.5,110.5C 36.5,111.833 36.5,113.167 36.5,114.5C 32.5,114.5 28.5,114.5 24.5,114.5C 21.909,113.746 20.0757,112.079 19,109.5C 18.5014,105.848 18.3347,102.182 18.5,98.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f17530" d="M 75.5,109.5 C 77.5,110.833 79.5,110.833 81.5,109.5C 82.4861,105.03 82.8195,100.363 82.5,95.5C 83.8333,95.5 85.1667,95.5 86.5,95.5C 86.5,100.833 86.5,106.167 86.5,111.5C 86.0472,112.458 85.3805,113.292 84.5,114C 80.5,114.667 76.5,114.667 72.5,114C 71.6195,113.292 70.9528,112.458 70.5,111.5C 70.5,106.167 70.5,100.833 70.5,95.5C 71.8333,95.5 73.1667,95.5 74.5,95.5C 74.1805,100.363 74.5139,105.03 75.5,109.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f16a2e" d="M 140.5,110.5 C 147.022,110.177 153.355,110.51 159.5,111.5C 158.564,112.974 157.23,113.974 155.5,114.5C 150.5,114.5 145.5,114.5 140.5,114.5C 140.5,113.167 140.5,111.833 140.5,110.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#9c684c" d="M 26.5,109.5 C 30.1667,109.5 33.8333,109.5 37.5,109.5C 37.5,111.5 37.5,113.5 37.5,115.5C 32.9677,115.818 28.6344,115.485 24.5,114.5C 28.5,114.5 32.5,114.5 36.5,114.5C 36.5,113.167 36.5,111.833 36.5,110.5C 32.9581,110.813 29.6248,110.479 26.5,109.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#b6b7b9" d="M 155.5,115.5 C 157.288,115.215 158.955,115.548 160.5,116.5C 159.754,117.736 159.421,119.07 159.5,120.5C 158.024,116.76 156.191,116.76 154,120.5C 153.833,119.667 153.667,118.833 153.5,118C 153.684,116.624 154.351,115.791 155.5,115.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#eeeeef" d="M 148.5,116.5 C 149.833,116.5 151.167,116.5 152.5,116.5C 152.762,117.978 152.429,119.311 151.5,120.5C 150.337,119.944 149.337,119.611 148.5,119.5C 148.5,118.5 148.5,117.5 148.5,116.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#7a706d" d="M 140.5,114.5 C 145.5,114.5 150.5,114.5 155.5,114.5C 155.5,114.833 155.5,115.167 155.5,115.5C 154.351,115.791 153.684,116.624 153.5,118C 153.667,118.833 153.833,119.667 154,120.5C 156.191,116.76 158.024,116.76 159.5,120.5C 155.317,121.811 150.984,121.811 146.5,120.5C 146.957,119.702 147.624,119.369 148.5,119.5C 149.337,119.611 150.337,119.944 151.5,120.5C 152.429,119.311 152.762,117.978 152.5,116.5C 151.167,116.5 149.833,116.5 148.5,116.5C 145.833,115.833 143.167,115.167 140.5,114.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 9.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M663.48 555.229l-32.39-29.14-15.173-13.607a60.881 60.881 0 0 0-81.64 0l-105.603 95.127c-9.634 8.67-24.324 8.67-34.078 0l-5.177-4.576-26.612-23.962-7.586 36.605 19.266 17.22 13.246 11.8 15.172 13.727a60.881 60.881 0 0 0 81.64 0l101.87-91.755 3.734-3.372c9.633-8.67 24.203-8.67 33.956 0l5.419 4.817 32.632 29.38 1.566-42.024z" fill="#8DC21F"></path><path d="M294.653 383.76c8.79-0.362 16.015-7.226 16.858-16.016 10.355-101.87 96.451-181.464 201.091-181.464 110.179 0 199.646 88.023 202.055 197.6 23.842 0 47.804 4.455 70.442 13.004 0-2.77 0.12-5.66 0.12-8.429 0-150.638-122.1-272.737-272.737-272.737s-272.738 122.1-272.738 272.737v5.419c18.062-6.02 36.365-9.272 54.668-10.115z" fill="#0084CF"></path><path d="M726.457 858.43h2.408c1.927 0 3.733-0.24 5.54-0.36 145.46-10.838 259.13-135.707 251.905-285.502-7.104-146.182-130.287-261.418-276.71-259.13h-1.927a333.306 333.306 0 0 0-214.578 83.085l-0.482 0.482c-1.565 1.445-3.25 2.89-4.816 4.335L352.692 522.837a61.05 61.05 0 0 0 0 90.792l2.409 2.168 32.27 29.14-7.104-6.382a30.465 30.465 0 0 1-0.963-44.433l4.816-4.335 62.254-55.872v0.482l78.751-70.803c45.878-46.841 109.095-76.704 179.176-79.112 85.012-4.094 166.773 46.239 198.683 130.167C942.6 619.048 890.1 735.73 785.821 775.466c-5.298 2.047-10.596 3.732-15.894 5.298-1.686 0.482-3.372 0.963-5.058 1.324l-0.722 0.241-4.576 1.084-0.963 0.24c-1.445 0.362-2.89 0.603-4.335 0.964l-0.963 0.24c-1.445 0.242-2.89 0.603-4.335 0.844h-0.964c-1.445 0.482-3.01 0.722-4.455 0.843h-0.843a34.87 34.87 0 0 1-4.937 0.722h-0.361c-5.419 0.723-10.837 1.084-16.136 1.325h-11.8c-32.15-0.723-63.458-9.152-91.394-24.203-8.43-4.576-18.664-3.492-25.769 2.89l-41.784 37.569c40.34 30.224 89.227 49.49 142.45 53.584 0.723 0 1.445 0 2.168 0.12 0.842 0 1.685 0 2.528 0.12 1.084 0 2.047 0 3.131 0.121h21.675c1.324 0 2.77 0 4.094-0.12z" fill="#0084CF"></path><path d="M665.889 557.396l-2.408-2.167-25.167-22.638a30.525 30.525 0 0 1 0 45.396l-22.517 20.23-44.433 39.977v-0.361l-78.871 70.803c-45.878 46.841-109.095 76.704-179.176 79.112-85.012 4.094-166.773-46.24-198.683-130.168-39.616-104.398 12.884-221.08 117.163-260.816a202.626 202.626 0 0 1 62.615-13.005c8.79-0.361 16.136-7.104 16.978-15.894 1.927-18.905 6.382-36.968 13.126-53.946-6.984-0.482-13.968-0.843-21.073-0.843-150.517 0-272.497 121.86-272.737 272.256-0.241 150.517 122.1 273.099 272.737 273.099h10.115-3.853c1.806 0 3.612 0 5.418-0.241h-1.565c80.677-2.408 154.13-33.234 210.724-82.965l0.482-0.361c1.926-1.686 3.974-3.492 5.9-5.299l134.984-121.497a60.917 60.917 0 0 0 0-90.672z" fill="#0084CF"></path></svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M853.205 403.712A169.6 169.6 0 0 0 661.59 299.605a260.864 260.864 0 0 0-193.962-86.272 261.76 261.76 0 0 0-232.363 141.952h-0.427C105.26 355.285 0 461.184 0 591.957c0 130.688 105.216 236.715 234.88 236.715h368.768c3.157 0 4.693-3.84 2.39-6.059-25.558-25.173-46.251-55.466-60.545-89.088a5.803 5.803 0 0 0-5.29-3.584H234.965a137.045 137.045 0 0 1-131.968-100.437 138.667 138.667 0 0 1 56.96-153.173 135.723 135.723 0 0 1 139.862-5.803c4.693-82.432 67.285-152.32 151.466-162.347 78.038-9.301 149.888 35.584 178.859 105.088h0.043a85.163 85.163 0 0 1 106.24-18.432 86.656 86.656 0 0 1 40.021 100.95 121.813 121.813 0 0 1 144.47 70.357c23.722 55.85 1.791 122.71-50.134 153.643-59.477 35.413-135.68 14.08-168.747-46.464a122.496 122.496 0 0 1-13.866-42.24h60.544c3.968 0 5.973-4.822 3.157-7.68L635.179 505.899a5.547 5.547 0 0 0-7.894 0L510.72 623.403c-2.773 2.858-0.81 7.68 3.157 7.68h57.344c0.555 28.8 6.571 56.277 17.024 81.408a226.432 226.432 0 0 0 209.238 140.842c125.184 0 226.517-102.229 226.517-228.309a227.968 227.968 0 0 0-170.795-221.312" fill="#DF0629"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="7.4053912mm"
|
||||
height="7.5173831mm"
|
||||
viewBox="0 0 7.4053913 7.5173831"
|
||||
version="1.1"
|
||||
id="svg1262"
|
||||
sodipodi:docname="logo.notext.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<defs
|
||||
id="defs1256" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="101.86078"
|
||||
inkscape:cy="8.9271745"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g3885"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1365"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata1259">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-254.94057,-266.78298)">
|
||||
<g
|
||||
id="g3885"
|
||||
transform="matrix(0.26519825,0,0,0.26519825,228.89366,215.69135)"
|
||||
style="fill:#000000">
|
||||
<g
|
||||
style="fill:#000000;stroke:#ffffff;stroke-opacity:1"
|
||||
id="layer1-9"
|
||||
transform="matrix(0.22901929,0,0,0.22901929,26.296508,84.906304)"
|
||||
inkscape:export-filename="/home/nils/git/desec-stack/webapp/src/assets/logo.png"
|
||||
inkscape:export-xdpi="567.52002"
|
||||
inkscape:export-ydpi="567.52002">
|
||||
<g
|
||||
style="fill:#000000;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="translate(-194.13584,150.8067)"
|
||||
id="g3933">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 509.13584,366.2239 c 8.87906,-33.13708 42.93987,-52.8021 76.07695,-43.92304 21.43594,5.74374 38.17931,22.48711 43.92305,43.92304 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 0,0 -6.09923,-6.07815 -10,-6.07815 -3.90077,0 -10,6.07815 -10,6.07815 z"
|
||||
id="path2985-6-3"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 567.42674,364.89583 v 61.87321 c 0,9.34738 5.48085,16.17306 12.23879,16.17306 6.75795,0 12.23635,-6.83606 12.23635,-16.18344 0,0 -1.07806,-1.02674 -1.75904,-1.03964 -0.64261,-0.0122 -1.69589,0.91753 -1.69589,0.91753 0,6.70817 -3.93157,13.01592 -8.78142,13.01592 -4.84984,0 -8.78142,-6.30775 -8.78142,-13.01592 l -7.6e-4,-61.74072 z"
|
||||
id="path3775-7-4-6"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:117.14173126;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="-16 -16 1600 1600" width="200" height="200"><path fill-rule="evenodd" fill="#0069ff" d="m784.5 1562v-302.5c322.4 0 570.3-317.3 447.3-655-44.7-124.3-145.4-224.5-270.2-269-339.2-122.5-657.8 126.1-657.8 445.3h-303.8c0-510.3 495.7-909.2 1032.4-742.2 234.8 72.3 421.2 259.7 495.7 493.6 167.7 536.2-231.1 1029.8-743.6 1029.8zm-301.9-601.2h301.9v300.6h-301.9zm-232.9 300.6h232.9v231.9h-232.9zm-195.6 0.1v-193h193.8v193z"/></svg>
|
||||
|
Before Width: | Height: | Size: 484 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512.003 79C272.855 79 79 272.855 79 512.003 79 751.145 272.855 945 512.003 945 751.145 945 945 751.145 945 512.003 945 272.855 751.145 79 512.003 79z m200.075 375.014c-0.867 3.764-3.117 9.347-6.234 16.012h0.087l-0.347 0.648c-18.183 38.86-65.631 115.108-65.631 115.108l-0.215-0.52-13.856 24.147h66.8L565.063 779l29.002-115.368h-52.598l18.27-76.29c-14.76 3.55-32.253 8.436-52.945 15.1 0 0-27.967 16.36-80.607-31.5 0 0-35.501-31.29-14.891-39.078 8.744-3.33 42.466-7.573 69.004-11.122 35.93-4.845 57.965-7.441 57.965-7.441s-110.607 1.643-136.841-2.468c-26.237-4.11-59.525-47.905-66.626-86.377 0 0-10.953-21.117 23.595-11.122 34.547 10 177.535 38.95 177.535 38.95s-185.933-56.992-198.36-70.929c-12.381-13.846-36.406-75.902-33.289-113.981 0 0 1.343-9.521 11.127-6.926 0 0 137.49 62.75 231.475 97.152 94.028 34.403 175.76 51.885 165.2 96.414z" fill="#3AA2EB"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1022 B |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M0 512C0 229.2224 229.2224 0 512 0c282.7776 0 512 229.2224 512 512 0 282.7776-229.2224 512-512 512C229.2224 1024 0 794.7776 0 512z" fill="#7A8CD2"></path><path d="M758.613333 281.207467a1.792 1.792 0 0 0-0.938666-0.8192 591.598933 591.598933 0 0 0-144.298667-44.032 2.218667 2.218667 0 0 0-2.321067 1.0752 398.114133 398.114133 0 0 0-17.954133 36.3008 548.437333 548.437333 0 0 0-162.082133 0 364.663467 364.663467 0 0 0-18.244267-36.317867 2.269867 2.269867 0 0 0-2.321067-1.0752 589.943467 589.943467 0 0 0-144.298666 44.032 2.048 2.048 0 0 0-0.955734 0.8192c-91.904 135.099733-117.077333 266.888533-104.721066 397.038933a2.3552 2.3552 0 0 0 0.9216 1.621334 591.5648 591.5648 0 0 0 177.015466 88.064 2.321067 2.321067 0 0 0 2.491734-0.8192 412.16 412.16 0 0 0 36.215466-57.9584 2.184533 2.184533 0 0 0-1.2288-3.072 390.212267 390.212267 0 0 1-55.296-25.941334 2.269867 2.269867 0 0 1-1.1264-1.792 2.218667 2.218667 0 0 1 0.887467-1.911466c3.7376-2.730667 7.389867-5.563733 10.990933-8.465067a2.2016 2.2016 0 0 1 2.286934-0.3072c116.0192 52.1216 241.629867 52.1216 356.266666 0a2.218667 2.218667 0 0 1 2.321067 0.273067c3.601067 2.9184 7.2704 5.751467 11.008 8.4992a2.2528 2.2528 0 0 1 0.904533 1.911466 2.2016 2.2016 0 0 1-1.092266 1.792 366.0288 366.0288 0 0 1-55.330134 25.9072 2.269867 2.269867 0 0 0-1.314133 1.297067 2.184533 2.184533 0 0 0 0.1024 1.809067 462.506667 462.506667 0 0 0 36.181333 57.941333 2.286933 2.286933 0 0 0 2.491734 0.836267 589.636267 589.636267 0 0 0 177.322666-88.064 2.269867 2.269867 0 0 0 0.904534-1.604267c14.7968-150.459733-24.746667-281.173333-104.789334-397.038933z m-364.168533 317.781333c-34.935467 0-63.709867-31.573333-63.709867-70.314667s28.2112-70.314667 63.709867-70.314666c35.771733 0 64.273067 31.829333 63.709867 70.314666 0 38.741333-28.228267 70.314667-63.709867 70.314667z m235.554133 0c-34.9184 0-63.709867-31.573333-63.709866-70.314667s28.228267-70.314667 63.709866-70.314666c35.771733 0 64.273067 31.829333 63.709867 70.314666 0 38.741333-27.938133 70.314667-63.709867 70.314667z" fill="#FFFFFF"></path></svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 122 24" fill="none"><g><path fill-rule="evenodd" clip-rule="evenodd" d="M12.8182 17.2296L8.47407 17.2679C8.34011 17.2679 8.16309 17.2248 8.23007 16.909L10.5409 5.64677H13.0335C17.3729 5.64677 19.3105 8.13461 18.6599 11.7468C18.0044 15.3541 15.6745 17.2296 12.8182 17.2296ZM0.431641 23.4205H15.4687C19.3105 23.4205 23.1236 18.8563 24.2671 16.6076C25.4823 14.225 25.8938 10.4502 25.4775 7.79014C24.9513 4.43156 21.4539 0.0634766 18.6551 0.0634766H5.20639L0.431641 23.4205Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M48.2748 15.6938L41.1366 0.0634766H36.247L31.4531 23.4205H36.357L39.6008 7.9863L46.6912 23.4396H51.5329L56.3268 0.0634766H51.4803L48.2748 15.6938Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M56.982 10.5046C57.2882 12.8011 59.3263 14.1933 61.5558 14.2077H67.6127C68.4021 14.2555 68.7275 15.2985 68.6318 15.9396C68.3686 17.6954 67.3065 19.724 66.0817 19.724H54.5898L53.8291 23.4414H68.5696C72.6889 23.4414 75.5595 12.4662 71.2679 10.318C70.5359 9.94963 69.469 9.75825 68.2825 9.75825H62.216C60.6228 9.75825 61.9433 4.50029 63.5652 4.50029H75.7508L76.6646 0.0556666H63.7422C58.3072 0.0508823 56.5035 6.87331 56.982 10.5046Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M108.376 13.6639L113.845 4.62634L115.73 13.6639H108.376ZM97.9561 23.3569H102.874L106.19 17.9507H116.567L117.687 23.3569H121.973L117.232 0.0668945H111.725L97.9561 23.3569Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M86.6971 23.3662H96.0743L96.8924 20.6439L92.3378 20.7157C90.4719 20.7396 86.7449 20.754 87.5535 16.8213L90.9886 0.0522461H86.0895L82.5539 17.3475C81.6975 21.5099 83.1184 23.3662 86.6971 23.3662Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M27.8549 12.6305C26.8502 19.6682 20.0756 22.8641 18.5781 23.4239H28.563L33.3569 0.0668945H20.6976C25.0752 1.49262 28.8931 6.36784 27.8549 12.6305Z" fill="#1966F0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M78.9946 23.4237H74.5596L75.5117 18.936H79.918L78.9946 23.4237Z" fill="#1966F0"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="160px" height="160px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.832" fill="#79b1ec" d="M 50.5,62.5 C 48.4305,62.4173 48.0972,61.4173 49.5,59.5C 49.5466,57.9623 48.8799,56.9623 47.5,56.5C 49.8109,53.853 52.1442,51.1864 54.5,48.5C 53.1667,46.8333 51.8333,45.1667 50.5,43.5C 57.797,42.2078 65.1303,41.7078 72.5,42C 63.0823,46.5839 55.749,53.4172 50.5,62.5 Z"/></g>
|
||||
<g><path style="opacity:0.945" fill="#78aeea" d="M 93.5,43.5 C 94.3686,45.717 94.702,48.0504 94.5,50.5C 89.184,50.7453 84.184,52.0786 79.5,54.5C 77.7719,51.5782 76.7719,48.2449 76.5,44.5C 82.1033,42.924 87.77,42.5906 93.5,43.5 Z"/></g>
|
||||
<g><path style="opacity:0.896" fill="#81bdec" d="M 93.5,43.5 C 106.307,45.0683 115.973,51.4016 122.5,62.5C 121.998,63.521 121.332,63.6877 120.5,63C 113.269,55.885 104.603,51.7183 94.5,50.5C 94.702,48.0504 94.3686,45.717 93.5,43.5 Z"/></g>
|
||||
<g><path style="opacity:0.935" fill="#6fa1ea" d="M 76.5,44.5 C 76.7719,48.2449 77.7719,51.5782 79.5,54.5C 69.4339,61.5072 65.2672,71.1738 67,83.5C 69.3959,97.4721 76.2292,108.639 87.5,117C 78.6567,117.824 69.9901,117.657 61.5,116.5C 62.1551,95.473 61.4885,74.8063 59.5,54.5C 64.0376,49.3925 69.7043,46.0591 76.5,44.5 Z"/></g>
|
||||
<g><path style="opacity:0.867" fill="#6998e9" d="M 90.5,99.5 C 90.8182,104.032 90.4849,108.366 89.5,112.5C 70.9216,99.9342 65.7549,83.2675 74,62.5C 80.4469,55.2589 82.1136,55.9256 79,64.5C 76.9486,78.1785 80.782,89.8452 90.5,99.5 Z"/></g>
|
||||
<g><path style="opacity:0.929" fill="#6997e9" d="M 59.5,54.5 C 61.4885,74.8063 62.1551,95.473 61.5,116.5C 48.7064,102.308 45.2064,85.9751 51,67.5C 53.3031,62.7207 56.1365,58.3873 59.5,54.5 Z"/></g>
|
||||
<g><path style="opacity:0.803" fill="#6999e8" d="M 47.5,56.5 C 48.8799,56.9623 49.5466,57.9623 49.5,59.5C 48.0972,61.4173 48.4305,62.4173 50.5,62.5C 45.5856,72.3051 44.2522,82.6385 46.5,93.5C 46.1758,95.5689 45.3425,95.9023 44,94.5C 37.3246,81.0959 38.4913,68.4292 47.5,56.5 Z"/></g>
|
||||
<g><path style="opacity:0.896" fill="#7ab1eb" d="M 122.5,69.5 C 122.288,72.362 122.288,75.362 122.5,78.5C 114.508,71.6789 105.175,67.8456 94.5,67C 89.5,66.6667 84.5,66.3333 79.5,66C 92.5122,62.472 105.512,62.8054 118.5,67C 120.066,67.6082 121.4,68.4415 122.5,69.5 Z"/></g>
|
||||
<g><path style="opacity:0.963" fill="#6fa1e9" d="M 37.5,102.5 C 36.2057,106.733 36.2057,111.066 37.5,115.5C 19.444,109.723 13.2773,97.7232 19,79.5C 23.2125,70.4505 30.0459,64.4505 39.5,61.5C 40.1667,61.8333 40.8333,62.1667 41.5,62.5C 38.2296,68.2787 34.7296,73.9453 31,79.5C 28.0612,88.761 30.2279,96.4276 37.5,102.5 Z"/></g>
|
||||
<g><path style="opacity:0.921" fill="#84c1eb" d="M 122.5,69.5 C 134.098,74.9465 140.432,84.1132 141.5,97C 141.251,108.751 135.251,115.251 123.5,116.5C 122.762,112.538 122.095,108.538 121.5,104.5C 126.079,102.358 128.412,98.691 128.5,93.5C 128.051,87.8082 126.051,82.8082 122.5,78.5C 122.288,75.362 122.288,72.362 122.5,69.5 Z"/></g>
|
||||
<g><path style="opacity:0.942" fill="#7eb9eb" d="M 37.5,102.5 C 41.763,103.984 46.0963,105.317 50.5,106.5C 52.245,110.408 54.5783,113.908 57.5,117C 50.5917,117.864 43.925,117.364 37.5,115.5C 36.2057,111.066 36.2057,106.733 37.5,102.5 Z"/></g>
|
||||
<g><path style="opacity:0.955" fill="#7ab1eb" d="M 90.5,99.5 C 92.9639,101.57 95.6305,103.404 98.5,105C 106.215,105.767 113.882,105.6 121.5,104.5C 122.095,108.538 122.762,112.538 123.5,116.5C 114.343,117.658 105.009,117.824 95.5,117C 92.8936,116.208 90.8936,114.708 89.5,112.5C 90.4849,108.366 90.8182,104.032 90.5,99.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="188px" height="188px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.922" fill="#030200" d="M 142.5,20.5 C 147.973,24.9972 151.973,30.6638 154.5,37.5C 161.783,36.3682 169.117,36.2015 176.5,37C 177.416,37.3742 178.25,37.8742 179,38.5C 181.863,49.0463 179.696,58.3796 172.5,66.5C 166.232,72.7211 158.732,75.3878 150,74.5C 149.283,75.0442 148.783,75.7109 148.5,76.5C 147.167,76.8333 147.167,77.1667 148.5,77.5C 160.106,105.659 156.44,131.492 137.5,155C 100.699,170.598 64.0322,170.265 27.5,154C 21.8277,150.504 17.661,145.671 15,139.5C 6.30042,118.206 5.30042,96.5393 12,74.5C 15.5648,65.6034 20.7314,57.7701 27.5,51C 30.5576,50.5423 33.5576,50.8756 36.5,52C 47.4791,57.6407 56.6458,65.4741 64,75.5C 70.4766,74.5687 76.9766,73.7354 83.5,73C 73.8002,54.0812 76.1335,36.7478 90.5,21C 102.023,11.5577 115.023,8.891 129.5,13C 134.477,14.4969 138.81,16.9969 142.5,20.5 Z"/></g>
|
||||
<g><path style="opacity:0.004" fill="#000000" d="M 142.5,19.5 C 143.833,20.1667 143.833,20.1667 142.5,19.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#fcfc0d" d="M 110.5,20.5 C 128.828,19.0833 140.995,27.0833 147,44.5C 147.667,49.1667 147.667,53.8333 147,58.5C 144.595,64.9798 141.428,70.9798 137.5,76.5C 148.304,97.8719 148.137,119.205 137,140.5C 133.849,146.317 129.016,149.817 122.5,151C 90.5072,161.451 59.5072,159.118 29.5,144C 20.5709,131.539 16.2375,117.539 16.5,102C 16.3633,86.0646 21.53,72.2312 32,60.5C 43.046,65.545 51.546,73.3784 57.5,84C 71.1491,83.8289 84.8158,83.4956 98.5,83C 99.5762,81.2739 99.7429,79.4406 99,77.5C 83.8035,62.4794 82.6368,46.4794 95.5,29.5C 99.8117,25.1846 104.812,22.1846 110.5,20.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#080701" d="M 121.5,34.5 C 130.491,32.9934 134.325,36.66 133,45.5C 128.7,50.4459 124.033,50.7793 119,46.5C 116.696,41.8553 117.529,37.8553 121.5,34.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f60000" d="M 155.5,43.5 C 161.5,43.5 167.5,43.5 173.5,43.5C 174.465,56.8659 168.465,65.1992 155.5,68.5C 154.5,68.1667 153.5,67.8333 152.5,67.5C 153.792,65.3334 154.625,63.0001 155,60.5C 155.499,54.8431 155.666,49.1764 155.5,43.5 Z"/></g>
|
||||
<g><path style="opacity:0.004" fill="#000000" d="M 172.5,66.5 C 173.833,67.1667 173.833,67.1667 172.5,66.5 Z"/></g>
|
||||
<g><path style="opacity:0.004" fill="#000000" d="M 148.5,76.5 C 149.833,77.1667 149.833,77.1667 148.5,76.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" height="128" width="128" viewBox="-1.5 -32 128 128"><path fill="#cf0000" d="m 124.6,35.7 c 0,3.9 -1.2,7.3 -3.8,10.2 -3.1,3.3 -6.9,5 -11.6,5 -5.5,0 -9.49,-2.2 -12.19,-6.8 -1.8,-3.1 -2.8,-6.7 -2.8,-11 0,-6.2 2.3,-12.3 6.49,-18.1 5,-6.8 11.2,-11.8 18.9,-14.9 0.1,0 0.1,0 0.2,0 0.4,0 0.7,0.3 0.9,1 0.2,0.4 0.3,0.7 0.3,0.9 0,0.3 -0.1,0.4 -0.2,0.5 -5.9,3.1 -10.3,7.8 -13.5,14 -1.5,2.9 -2.6,5.8 -3.4,8.9 1.5,-1.8 3.4,-3 5.7,-3.6 0.7,-0.2 1.6,-0.3 2.3,-0.3 3.9,0 7.1,1.6 9.6,4.7 2.1,2.6 3.1,5.8 3.1,9.5 m -7.9,2 c 0,-2.5 -0.7,-4.8 -2.1,-7.1 -1.5,-2.4 -3.3,-3.6 -5.6,-3.6 -2.2,0 -4.1,1 -5.8,2.9 -0.2,1 -0.3,2 -0.3,3.3 0,9.3 2.4,14 7.1,14 2.6,0 4.5,-1.4 5.7,-4.2 0.7,-1.5 1,-3.3 1,-5.3" /><path fill="#404040" d="M 13.56,32.3 V 21.1 h 5.45 v 29.2 h -5.45 v -3.1 c -0.59,1.2 -1.36,2.1 -2.3,2.7 -0.92,0.6 -2.01,0.9 -3.27,0.9 -2.4,0 -4.27,-0.9 -5.59,-2.9 -1.32,-1.9 -2,-4.7 -2,-8.2 0,-3.5 0.68,-6.2 2.01,-8.1 1.35,-1.9 3.27,-2.9 5.76,-2.9 1.13,0 2.13,0.4 3.02,0.9 0.91,0.6 1.68,1.5 2.37,2.7 M 5.9,39.8 c 0,2.1 0.34,3.7 1.01,4.7 0.68,1.2 1.61,1.8 2.8,1.8 1.19,0 2.12,-0.6 2.81,-1.8 0.68,-1 1.04,-2.6 1.04,-4.7 0,-2 -0.36,-3.6 -1.04,-4.8 C 11.83,33.9 10.9,33.3 9.71,33.3 8.52,33.3 7.59,33.9 6.91,35 6.24,36.2 5.9,37.8 5.9,39.8" /><path fill="#404040" d="m 35.11,52.5 c -0.7,2.1 -1.6,3.4 -2.6,4.3 -1.1,1 -2.3,1.4 -3.8,1.4 h -4.5 V 54 h 2.2 c 1.2,0 2,-0.2 2.5,-0.5 0.5,-0.4 1,-1.3 1.6,-2.7 l 0.4,-1.2 -8,-20.3 h 5.7 l 4.8,13.6 4.7,-13.6 h 5.8 l -8.8,23.2" /><path fill="#404040" d="m 65.01,36.6 v 13.7 h -5.4 V 37.5 c 0,-1.5 -0.2,-2.7 -0.7,-3.3 -0.4,-0.7 -1.1,-1 -2.1,-1 -1,0 -1.8,0.4 -2.3,1.3 -0.6,1 -0.9,2.1 -0.9,3.7 v 12.1 h -5.4 v -21 h 5.4 v 3.1 c 0.4,-1.1 1.1,-2.1 2,-2.7 0.9,-0.6 2.1,-1 3.3,-1 2.1,0 3.6,0.7 4.6,2.1 1,1.2 1.5,3.2 1.5,5.8" /><path fill="#008fd4" d="m 89.71,29.3 -6.8,21 h -6.7 l -6.7,-21 h 5.5 l 4.5,16.4 4.6,-16.4 h 5.6" /></svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 256 256"><defs><radialGradient id="logosEdgioIcon0" cx="104.362%" cy="13.088%" r="94.575%" fx="104.362%" fy="13.088%"><stop offset="0%" stop-color="#01B07D"></stop><stop offset="100%" stop-color="#01B07D" stop-opacity="0"></stop></radialGradient><radialGradient id="logosEdgioIcon1" cx="68.749%" cy="120.916%" r="68.487%" fx="68.749%" fy="120.916%"><stop offset="0%" stop-color="#00AAE5"></stop><stop offset="100%" stop-color="#00AAE5" stop-opacity="0"></stop></radialGradient><linearGradient id="logosEdgioIcon2" x1="3.185%" x2="57.325%" y1="2.866%" y2="58.917%"><stop offset="0%" stop-color="#793092"></stop><stop offset="100%" stop-color="#6144A1"></stop></linearGradient></defs><path fill="url(#logosEdgioIcon2)" d="M0 0h256v256H0z"></path><path fill="url(#logosEdgioIcon0)" d="M0 0h256v256H0z"></path><path fill="url(#logosEdgioIcon1)" d="M0 0h256v256H0z"></path><path fill="#FFF" d="m170.908 77.201l16.225-29.253H68.867v160.103h118.266l-16.144-29.293h-70.24v-36.819h55.755l8.983-29.294h-64.738V77.201z"></path></svg>
|
||||
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M832 128H192a128 128 0 0 0-128 128v512a128 128 0 0 0 128 128h384v-64H192a64 64 0 0 1-64-64V310.4l384 206.08 384-206.72V768h64V256a128 128 0 0 0-128-128zM512 443.52L131.2 240A64 64 0 0 1 192 192h640a64 64 0 0 1 60.8 46.72z" fill="#616971"></path><path d="M640 896h64v-64h-64z m256-64v64h64v-64z m-128 64h64v-64h-64z" fill="#FF8910"></path></svg>
|
||||
|
Before Width: | Height: | Size: 500 B |
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="400px" height="400px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.947" fill="#000000" d="M 63.5,49.5 C 67.1817,49.3347 70.8484,49.5014 74.5,50C 148.11,71.9863 221.776,93.8196 295.5,115.5C 315.34,101.912 333.507,103.912 350,121.5C 355.95,130.35 357.95,140.017 356,150.5C 347.801,177.899 335.135,202.899 318,225.5C 280.728,276.126 233.895,314.96 177.5,342C 163.91,347.863 149.91,352.53 135.5,356C 113.471,358.077 99.3042,348.577 93,327.5C 92.3333,322.5 92.3333,317.5 93,312.5C 95.0495,306.07 97.8828,300.07 101.5,294.5C 84.2696,221.515 67.1029,148.515 50,75.5C 47.9238,63.3164 52.4238,54.6497 63.5,49.5 Z M 73.5,74.5 C 143.872,94.6766 214.205,115.01 284.5,135.5C 278.96,152.582 270.793,168.249 260,182.5C 235.863,215.643 206.363,242.81 171.5,264C 156.331,272.75 140.331,279.583 123.5,284.5C 121.059,278.748 119.225,272.748 118,266.5C 102.847,202.556 88.0138,138.556 73.5,74.5 Z M 315.5,129.5 C 329.484,128.317 335.317,134.65 333,148.5C 326.799,166.901 318.466,184.234 308,200.5C 271.086,255.422 222.586,296.589 162.5,324C 151.572,328.632 140.238,331.798 128.5,333.5C 119.996,333.33 115.33,328.997 114.5,320.5C 114.79,315.752 116.79,311.919 120.5,309C 157.815,299.012 191.149,281.678 220.5,257C 252.97,230.211 279.137,198.377 299,161.5C 302.791,153.46 305.791,145.127 308,136.5C 309.742,133.254 312.242,130.921 315.5,129.5 Z"/></g>
|
||||
<g><path style="opacity:0.895" fill="#000000" d="M 139.5,131.5 C 147.597,130.929 152.597,134.596 154.5,142.5C 151.965,152.577 145.965,155.744 136.5,152C 131.919,148.562 130.419,144.062 132,138.5C 133.767,135.228 136.267,132.895 139.5,131.5 Z"/></g>
|
||||
<g><path style="opacity:0.891" fill="#000000" d="M 224.5,145.5 C 236.666,145.185 241.166,150.852 238,162.5C 229.565,171.078 222.565,170.078 217,159.5C 216.416,156.743 216.75,154.077 218,151.5C 220.063,149.266 222.229,147.266 224.5,145.5 Z"/></g>
|
||||
<g><path style="opacity:0.895" fill="#000000" d="M 139.5,216.5 C 151.897,217.036 156.063,223.036 152,234.5C 144.022,241.837 137.356,240.837 132,231.5C 130.808,224.551 133.308,219.551 139.5,216.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="320px" height="320px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.995" fill="#ff5812" d="M 142.5,185.5 C 141.957,185.56 141.624,185.893 141.5,186.5C 168.825,187.5 196.159,187.833 223.5,187.5C 209.839,224.897 182.673,244.897 142,247.5C 102.811,245.277 75.4774,226.277 60,190.5C 48.6236,153.84 56.4569,122.007 83.5,95C 110.438,73.0648 140.438,67.7315 173.5,79C 180.073,81.8673 186.239,85.3673 192,89.5C 200.675,74.8199 208.842,59.8199 216.5,44.5C 215.252,42.5414 213.585,41.0414 211.5,40C 166.033,16.0816 120.366,15.4149 74.5,38C 115.044,9.34663 159.377,1.67996 207.5,15C 268.261,36.3329 303.761,78.8329 314,142.5C 318.685,200.607 298.185,247.44 252.5,283C 212.774,310.289 169.441,317.956 122.5,306C 105.493,301.162 89.8266,293.662 75.5,283.5C 74.479,282.998 74.3123,282.332 75,281.5C 108.894,299.695 144.394,303.528 181.5,293C 239.902,272.261 272.736,231.094 280,169.5C 280.603,157.787 280.103,146.12 278.5,134.5C 242.165,134.333 205.832,134.5 169.5,135C 160.106,151.622 151.106,168.455 142.5,185.5 Z"/></g>
|
||||
<g><path style="opacity:0.122" fill="#fe5a0f" d="M 142.5,185.5 C 169.5,186.167 196.5,186.833 223.5,187.5C 196.159,187.833 168.825,187.5 141.5,186.5C 141.624,185.893 141.957,185.56 142.5,185.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100px" height="100px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.976" fill="#8db4fe" d="M 69.5,16.5 C 56.1667,17.8333 42.8333,17.8333 29.5,16.5C 42.8333,9.83333 56.1667,9.83333 69.5,16.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#76a3fe" d="M 29.5,16.5 C 42.8333,17.8333 56.1667,17.8333 69.5,16.5C 73.7908,19.1231 77.4575,22.4564 80.5,26.5C 59.8333,27.8333 39.1667,27.8333 18.5,26.5C 21.5425,22.4564 25.2092,19.1231 29.5,16.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#6095fe" d="M 18.5,26.5 C 39.1667,27.8333 59.8333,27.8333 80.5,26.5C 82.3582,28.8831 83.6916,31.5498 84.5,34.5C 78.31,34.1771 72.31,34.5104 66.5,35.5C 54.5756,29.8568 42.9089,30.1901 31.5,36.5C 25.4093,36.7886 19.4093,36.4553 13.5,35.5C 14.9131,32.3388 16.5797,29.3388 18.5,26.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#f7f9fe" d="M 66.5,35.5 C 67.3686,37.717 67.702,40.0504 67.5,42.5C 60.0638,39.7775 52.3971,38.9441 44.5,40C 42.5743,40.4224 41.5743,41.5891 41.5,43.5C 39.3827,50.3047 41.3827,55.8047 47.5,60C 50.4746,60.7127 52.9746,59.8793 55,57.5C 55.6667,56.8333 55.6667,56.1667 55,55.5C 52.7646,53.7976 50.2646,52.7976 47.5,52.5C 47.33,51.1779 47.6634,50.0113 48.5,49C 54.4029,45.5763 60.0696,46.0763 65.5,50.5C 65.3964,52.7028 64.7298,54.7028 63.5,56.5C 60.8782,60.4572 57.8782,64.1239 54.5,67.5C 52.6336,68.0138 50.8003,68.6805 49,69.5C 45.7431,68.0727 42.9097,66.0727 40.5,63.5C 38.5879,61.3428 36.9213,59.0094 35.5,56.5C 34.1084,53.9933 33.1084,51.3267 32.5,48.5C 31.7279,44.5483 31.3946,40.5483 31.5,36.5C 42.9089,30.1901 54.5756,29.8568 66.5,35.5 Z"/></g>
|
||||
<g><path style="opacity:0.988" fill="#4380fd" d="M 13.5,35.5 C 19.4093,36.4553 25.4093,36.7886 31.5,36.5C 31.3946,40.5483 31.7279,44.5483 32.5,48.5C 31.8444,47.7222 31.0111,47.0556 30,46.5C 24.4866,47.3066 18.6532,47.64 12.5,47.5C 12.7373,46.209 12.404,45.209 11.5,44.5C 11.7556,41.4021 12.4222,38.4021 13.5,35.5 Z"/></g>
|
||||
<g><path style="opacity:0.988" fill="#4883fd" d="M 84.5,34.5 C 86.2766,37.5046 87.2766,40.8379 87.5,44.5C 72.2446,43.5166 56.9112,43.1832 41.5,43.5C 41.5743,41.5891 42.5743,40.4224 44.5,40C 52.3971,38.9441 60.0638,39.7775 67.5,42.5C 67.702,40.0504 67.3686,37.717 66.5,35.5C 72.31,34.5104 78.31,34.1771 84.5,34.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#3575fd" d="M 41.5,43.5 C 56.9112,43.1832 72.2446,43.5166 87.5,44.5C 87.5,47.8333 87.5,51.1667 87.5,54.5C 86.8365,52.9581 86.1698,51.2914 85.5,49.5C 78.9781,50.1149 72.3115,50.4483 65.5,50.5C 60.0696,46.0763 54.4029,45.5763 48.5,49C 47.6634,50.0113 47.33,51.1779 47.5,52.5C 50.2646,52.7976 52.7646,53.7976 55,55.5C 55.6667,56.1667 55.6667,56.8333 55,57.5C 52.9746,59.8793 50.4746,60.7127 47.5,60C 41.3827,55.8047 39.3827,50.3047 41.5,43.5 Z"/></g>
|
||||
<g><path style="opacity:0.986" fill="#256bfd" d="M 11.5,44.5 C 12.404,45.209 12.7373,46.209 12.5,47.5C 18.6532,47.64 24.4866,47.3066 30,46.5C 31.0111,47.0556 31.8444,47.7222 32.5,48.5C 33.1084,51.3267 34.1084,53.9933 35.5,56.5C 31.1216,56.6295 26.9549,56.6295 23,56.5C 19.5044,57.203 16.0044,57.8697 12.5,58.5C 11.5139,54.03 11.1805,49.3633 11.5,44.5 Z"/></g>
|
||||
<g><path style="opacity:0.986" fill="#2169fd" d="M 87.5,54.5 C 87.7678,56.099 87.4345,57.4324 86.5,58.5C 82.9956,57.8697 79.4956,57.203 76,56.5C 71.6348,56.9551 67.4681,56.9551 63.5,56.5C 64.7298,54.7028 65.3964,52.7028 65.5,50.5C 72.3115,50.4483 78.9781,50.1149 85.5,49.5C 86.1698,51.2914 86.8365,52.9581 87.5,54.5 Z"/></g>
|
||||
<g><path style="opacity:0.97" fill="#115dfc" d="M 35.5,56.5 C 36.9213,59.0094 38.5879,61.3428 40.5,63.5C 32.3078,63.6614 23.6411,63.9947 14.5,64.5C 13.2616,62.7857 12.595,60.7857 12.5,58.5C 16.0044,57.8697 19.5044,57.203 23,56.5C 26.9549,56.6295 31.1216,56.6295 35.5,56.5 Z"/></g>
|
||||
<g><path style="opacity:0.993" fill="#0957fc" d="M 63.5,56.5 C 67.4681,56.9551 71.6348,56.9551 76,56.5C 79.4956,57.203 82.9956,57.8697 86.5,58.5C 86.1277,62.2971 84.7943,65.6305 82.5,68.5C 81.5416,68.0472 80.7083,67.3805 80,66.5C 71.6813,67.5057 63.1813,67.8391 54.5,67.5C 57.8782,64.1239 60.8782,60.4572 63.5,56.5 Z"/></g>
|
||||
<g><path style="opacity:0.996" fill="#034efc" d="M 40.5,63.5 C 42.9097,66.0727 45.7431,68.0727 49,69.5C 50.8003,68.6805 52.6336,68.0138 54.5,67.5C 63.1813,67.8391 71.6813,67.5057 80,66.5C 80.7083,67.3805 81.5416,68.0472 82.5,68.5C 81.8897,70.4341 80.8897,72.1007 79.5,73.5C 60.2691,74.7072 40.2691,74.7072 19.5,73.5C 17.0764,70.9922 15.4097,67.9922 14.5,64.5C 23.6411,63.9947 32.3078,63.6614 40.5,63.5 Z"/></g>
|
||||
<g><path style="opacity:0.984" fill="#0143fc" d="M 79.5,73.5 C 67.2217,87.4176 52.2217,91.251 34.5,85C 28.3498,82.5999 23.3498,78.7665 19.5,73.5C 40.2691,74.7072 60.2691,74.7072 79.5,73.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5245" width="200" height="200"><path d="M683.52 924.16c69.632-32.768 165.888-91.648 245.76-194.56 20.48-26.112 37.376-52.224 51.2-76.8 12.8-31.232 27.648-76.8 35.84-133.12 18.432-127.488-12.288-222.208-20.48-245.76-12.8-37.376-29.696-80.896-71.68-122.88-65.536-65.536-145.408-78.336-168.96-81.92-57.856-8.192-103.424 2.048-138.24 10.24-23.552 5.632-68.096 16.384-117.76 46.08-39.424 24.064-64.512 48.64-81.92 66.56-48.64 49.152-73.216 95.232-107.52 158.72-20.48 37.376-37.376 70.144-51.2 117.76-2.56 9.216-9.216 32.768-15.36 76.8-6.144 41.984-11.776 101.376-10.24 175.104-50.176-82.432-79.36-154.112-97.28-205.824-15.872-46.08-22.016-74.752-25.6-102.4-7.168-56.832-13.824-110.08 15.36-158.72 38.912-64.512 116.224-78.848 138.752-83.456 95.232-17.408 169.984 29.696 188.928 42.496 27.136-24.064 54.784-47.616 81.92-71.68-31.744-25.088-89.088-62.464-168.96-76.8-16.896-3.072-57.856-9.216-109.056-4.096-39.424 4.096-96.768 9.728-152.064 50.176-11.776 8.704-46.08 35.328-71.68 81.92-38.912 71.168-32.768 142.848-25.6 230.4 3.584 44.032 10.24 79.872 15.36 102.4 34.816 125.44 86.528 210.432 122.88 261.12 29.184 39.936 51.2 61.952 57.856 68.608 27.648 27.136 95.232 91.136 203.264 115.712 31.744 7.168 98.304 21.504 179.2-1.536 27.136-7.68 99.84-29.184 155.648-96.256 76.288-91.136 69.12-202.752 64-270.848-4.608-71.68-24.576-115.2-30.72-128-20.992-43.52-47.616-73.728-66.56-92.16-80.384 32.256-160.256 65.024-240.64 97.28l34.816 86.528 164.864-71.168c13.824 24.064 34.304 67.072 35.84 122.88 2.56 92.16-46.592 203.264-143.36 240.64-50.688 19.456-131.584 25.088-179.2-20.48-28.672-27.136-33.28-61.44-40.96-117.76-4.096-28.16-12.8-111.104 15.36-215.04 10.24-37.888 34.816-113.152 92.16-189.44 33.28-44.032 62.976-69.632 71.68-76.8 27.648-23.04 57.344-47.616 100.864-61.44 16.896-5.12 99.328-28.672 178.688 17.92 67.584 39.424 90.112 104.96 99.328 130.048 13.824 38.912 14.336 70.656 15.36 97.28 0.512 26.624 2.048 84.992-25.6 153.6-24.064 59.392-58.368 99.84-81.92 122.88-40.448 75.776-81.408 150.528-122.368 225.792z" fill="#13EAE4" p-id="5246"></path></svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="64px" height="64px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.945" fill="#875ff7" d="M 47.5,14.5 C 48.8333,14.5 50.1667,14.5 51.5,14.5C 53.4825,22.0138 52.4825,29.0138 48.5,35.5C 47.7611,35.631 47.0944,35.4643 46.5,35C 47.2931,33.9148 47.9598,32.7481 48.5,31.5C 48.1834,26.1324 47.8501,20.4657 47.5,14.5 Z"/></g>
|
||||
<g><path style="opacity:0.968" fill="#8062f6" d="M 47.5,14.5 C 47.8501,20.4657 48.1834,26.1324 48.5,31.5C 47.9598,32.7481 47.2931,33.9148 46.5,35C 47.0944,35.4643 47.7611,35.631 48.5,35.5C 47.5,37.1667 46.1667,38.5 44.5,39.5C 44.1257,34.6702 44.1257,29.6702 44.5,24.5C 44.2034,21.9881 43.5367,19.6548 42.5,17.5C 44.3325,16.7515 45.9991,15.7515 47.5,14.5 Z"/></g>
|
||||
<g><path style="opacity:0.98" fill="#7569f6" d="M 42.5,17.5 C 43.5367,19.6548 44.2034,21.9881 44.5,24.5C 44.1257,29.6702 44.1257,34.6702 44.5,39.5C 42.6171,43.0302 39.6171,45.0302 35.5,45.5C 34.5119,40.3595 34.1786,35.0262 34.5,29.5C 36.099,29.7678 37.4324,29.4345 38.5,28.5C 39.0431,28.44 39.3764,28.1067 39.5,27.5C 36.8929,26.6816 34.2263,26.1816 31.5,26C 31.6878,23.7973 31.0212,21.6306 29.5,19.5C 34.0309,19.8501 38.3642,19.1834 42.5,17.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#6177f6" d="M 29.5,19.5 C 31.0212,21.6306 31.6878,23.7973 31.5,26C 34.2263,26.1816 36.8929,26.6816 39.5,27.5C 39.3764,28.1067 39.0431,28.44 38.5,28.5C 32.8473,26.9185 27.5139,27.9185 22.5,31.5C 20.7472,29.6577 20.4138,27.6577 21.5,25.5C 21.0576,24.2613 20.3909,23.2613 19.5,22.5C 22.2509,20.0255 25.5842,19.0255 29.5,19.5 Z"/></g>
|
||||
<g><path style="opacity:0.957" fill="#4f7df6" d="M 19.5,22.5 C 20.3909,23.2613 21.0576,24.2613 21.5,25.5C 20.4138,27.6577 20.7472,29.6577 22.5,31.5C 20.8564,33.4807 19.1897,35.4807 17.5,37.5C 17.8333,37.8333 18.1667,38.1667 18.5,38.5C 19.5213,36.812 20.8546,35.4787 22.5,34.5C 23.3204,38.7362 23.6537,42.7362 23.5,46.5C 21.2133,46.2761 19.0466,45.6094 17,44.5C 15.013,46.6283 12.513,47.6283 9.5,47.5C 11.7861,42.5711 12.9528,37.2378 13,31.5C 14.2094,27.7244 16.376,24.7244 19.5,22.5 Z"/></g>
|
||||
<g><path style="opacity:0.978" fill="#6970f6" d="M 38.5,28.5 C 37.4324,29.4345 36.099,29.7678 34.5,29.5C 34.1786,35.0262 34.5119,40.3595 35.5,45.5C 34.0813,46.4511 32.4147,46.7845 30.5,46.5C 29.3282,41.0261 29.3282,35.3594 30.5,29.5C 33.0961,28.7347 35.7628,28.4013 38.5,28.5 Z"/></g>
|
||||
<g><path style="opacity:0.978" fill="#6275f6" d="M 30.5,29.5 C 29.3282,35.3594 29.3282,41.0261 30.5,46.5C 28.312,47.6227 25.9787,47.6227 23.5,46.5C 23.6537,42.7362 23.3204,38.7362 22.5,34.5C 24.4894,31.8342 27.156,30.1675 30.5,29.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#eef0fd" d="M 38.5,28.5 C 35.7628,28.4013 33.0961,28.7347 30.5,29.5C 27.156,30.1675 24.4894,31.8342 22.5,34.5C 20.8546,35.4787 19.5213,36.812 18.5,38.5C 18.1667,38.1667 17.8333,37.8333 17.5,37.5C 19.1897,35.4807 20.8564,33.4807 22.5,31.5C 27.5139,27.9185 32.8473,26.9185 38.5,28.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M925.915429 521.545143c0.512-29.622857-2.56-59.282286-9.033143-88.100572H512v160.036572h237.714286a210.468571 210.468571 0 0 1-88.137143 139.885714l-0.804572 5.302857 127.963429 99.181715 8.850286 0.841142c81.298286-75.154286 128.365714-185.782857 128.365714-317.147428" fill="#4285F4"></path><path d="M512 943.177143c116.370286 0 214.198857-38.363429 285.622857-104.484572l-136.045714-105.472a254.829714 254.829714 0 0 1-149.430857 43.117715 259.949714 259.949714 0 0 1-245.394286-179.273143l-5.12 0.512-133.083429 102.912-1.682285 4.754286a429.860571 429.860571 0 0 0 385.097143 237.897142" fill="#34A853"></path><path d="M266.605714 597.211429a264.045714 264.045714 0 0 1-14.336-85.357715c0.182857-28.964571 4.937143-57.782857 13.970286-85.394285l-0.146286-5.632-134.802285-104.594286-4.425143 2.011428a430.262857 430.262857 0 0 0 0 387.181715l139.702857-108.214857" fill="#FBBC05"></path><path d="M512 247.515429a237.933714 237.933714 0 0 1 166.656 64.256l121.673143-118.784a414.646857 414.646857 0 0 0-288.512-112.128 430.811429 430.811429 0 0 0-385.316572 237.714285l139.410286 108.251429A260.973714 260.973714 0 0 1 512 247.478857" fill="#EB4335"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="3000" height="380" viewBox="0 0 182 23" version="1.1"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-1163.000000, -1368.000000)" fill="#D50C2D" fill-rule="nonzero"><g transform="translate(256.000000, 1363.000000)"><g transform="translate(907.000000, 5.000000)"><path d="M174.05,14.12 C175.70112,13.8347617 177.256782,13.1479352 178.58,12.12 L178.58,12.12 C179.800803,10.8420724 180.41283,9.10071075 180.26,7.34 C180.264681,5.90702289 179.869913,4.5010961 179.12,3.28 C178.012832,1.39206624 176.026262,0.191846827 173.84,0.09 L172.75,0.09 L170.2,0 L158.66,0 C157.96,0 157.66,0.29 157.66,1 L157.66,21.22 C157.66,21.92 157.95,22.22 158.66,22.22 L161.66,22.22 C162.36,22.22 162.66,21.93 162.66,21.22 L162.66,14.52 L166.33,14.52 C167.137054,14.5621636 167.904273,14.8839006 168.5,15.43 L174.32,21.28 C174.850563,21.8225831 175.56276,22.1501937 176.32,22.2 L180.79,22.2 C181.49,22.2 181.66,21.79 181.17,21.29 L174.05,14.12 Z M173.29,9.82 L162.64,9.82 L162.64,4.72 L173.29,4.72 C174.371509,4.85285283 175.178361,5.7805161 175.16,6.87 L175.16,7.66 C175.178907,8.75159761 174.373058,9.68241814 173.29,9.82 L173.29,9.82 Z"/><path d="M153,17.52 L136.47,17.52 L136.47,13.35 L149.66,13.35 C150.36,13.35 150.66,13.06 150.66,12.35 L150.66,9.92 C150.66,9.22 150.37,8.92 149.66,8.92 L136.46,8.92 L136.46,4.76 L153,4.76 C153.7,4.76 154,4.47 154,3.76 L154,1 C154,0.3 153.71,0 153,0 L132.38,0 C131.68,0 131.38,0.29 131.38,1 L131.38,21.24 C131.38,21.94 131.67,22.24 132.38,22.24 L153,22.24 C153.7,22.24 154,21.95 154,21.24 L154,18.51 C154,17.81 153.67,17.52 153,17.52 Z"/><path d="M127.73,7.3 C127.75181,5.88495547 127.358997,4.49446656 126.6,3.3 C125.485363,1.36532022 123.469349,0.124117692 121.24,0 L106.08,0 C105.37,0 105.08,0.29 105.08,1 L105.08,21.22 C105.08,21.92 105.37,22.22 106.08,22.22 L109.34,22.22 C110.04,22.22 110.34,21.94 110.34,21.22 L110.34,4.73 L119.12,4.73 C120.99,4.73 122.81,5.97 122.81,7.84 L122.81,21.24 C122.81,21.94 123.1,22.24 123.81,22.24 L126.76,22.24 C127.47,22.24 127.76,21.95 127.76,21.24 L127.73,7.3 Z"/><path d="M100.47,17.39 L86.22,17.39 L100.5,4.84 C101.079439,4.39644884 101.443005,3.72748773 101.5,3 L101.5,1 C101.5,0.3 101.2,0 100.5,0 L79.83,0 C79.13,0 78.83,0.29 78.83,1 L78.83,3.77 C78.83,4.47 79.12,4.77 79.83,4.77 L93.08,4.77 L79.79,17.24 C79.2153814,17.6876568 78.8530625,18.3543236 78.79,19.08 L78.79,21.25 C78.79,21.95 79.08,22.25 79.79,22.25 L100.44,22.25 C101.14,22.25 101.44,21.96 101.44,21.25 L101.44,18.38 C101.46,17.68 101.17,17.39 100.47,17.39 Z"/><path d="M74.19,0 L53.55,0 C52.84,0 52.55,0.28 52.55,1 L52.55,3.76 C52.55,4.46 52.83,4.76 53.55,4.76 L61.33,4.76 L61.33,21.24 C61.33,21.94 61.62,22.24 62.33,22.24 L65.63,22.24 C66.33,22.24 66.63,21.95 66.63,21.24 L66.63,4.75 L74.2,4.75 C74.9,4.75 75.2,4.46 75.2,3.75 L75.2,1 C75.18,0.32 74.89,0 74.19,0 Z"/><path d="M47.91,17.52 L31.41,17.52 L31.41,13.35 L44.6,13.35 C45.3,13.35 45.6,13.06 45.6,12.35 L45.6,9.92 C45.6,9.22 45.32,8.92 44.6,8.92 L31.41,8.92 L31.41,4.76 L47.91,4.76 C48.61,4.76 48.91,4.47 48.91,3.76 L48.91,1 C48.91,0.3 48.62,0 47.91,0 L27.33,0 C26.63,0 26.33,0.29 26.33,1 L26.33,21.24 C26.33,21.94 26.62,22.24 27.33,22.24 L47.91,22.24 C48.61,22.24 48.91,21.95 48.91,21.24 L48.91,18.51 C48.9,17.81 48.61,17.52 47.91,17.52 Z"/><path d="M21.63,0 L18.52,0 C17.82,0 17.52,0.29 17.52,1 L17.52,8.87 L5.13,8.87 L5.13,1 C5.13,0.3 4.84,0 4.13,0 L1,0 C0.29,0 0,0.29 0,1 L0,21.25 C0,21.96 0.29,22.25 1,22.25 L4.13,22.25 C4.83,22.25 5.13,21.97 5.13,21.25 L5.13,13.25 L17.53,13.25 L17.53,21.25 C17.53,21.95 17.82,22.25 18.53,22.25 L21.64,22.25 C22.34,22.25 22.64,21.96 22.64,21.25 L22.64,1 C22.62,0.32 22.33,0 21.63,0 Z"/></g></g></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1027 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4252" width="200" height="200"><path d="M378.88 143.36c20.48-6.826667 40.96-10.24 61.44-13.653333 23.893333 30.72 30.72 71.68 40.96 109.226666 6.826667 40.96 13.653333 81.92 13.653333 122.88 6.826667 27.306667 3.413333 58.026667 3.413334 85.333334s-3.413333 51.2 0 78.506666c0 37.546667-3.413333 71.68-3.413334 109.226667-6.826667 23.893333 0 47.786667-6.826666 71.68-10.24-3.413333-13.653333-13.653333-17.066667-20.48-40.96-61.44-78.506667-122.88-112.64-187.733333-34.133333-68.266667-68.266667-136.533333-71.68-215.04-6.826667-61.44 34.133333-119.466667 92.16-139.946667z m211.626667-10.24c6.826667-3.413333 10.24 0 17.066666 0 27.306667 6.826667 58.026667 10.24 81.92 27.306667s44.373333 40.96 51.2 68.266666c10.24 34.133333 6.826667 71.68 0 105.813334-10.24 44.373333-30.72 85.333333-51.2 126.293333-6.826667 13.653333-13.653333 23.893333-20.48 37.546667-10.24 23.893333-27.306667 47.786667-40.96 71.68-23.893333 40.96-47.786667 75.093333-71.68 116.053333-3.413333 3.413333-6.826667 13.653333-13.653333 6.826667-3.413333-40.96-6.826667-81.92-10.24-126.293334-6.826667-54.613333-3.413333-105.813333-3.413333-160.426666 3.413333-34.133333 3.413333-71.68 6.826666-105.813334 6.826667-40.96 13.653333-85.333333 27.306667-126.293333 13.653333-10.24 13.653333-30.72 27.306667-40.96zM160.426667 266.24c3.413333 0 6.826667 6.826667 10.24 10.24 98.986667 129.706667 187.733333 266.24 259.413333 413.013333 6.826667 10.24 13.653333 23.893333 13.653333 37.546667-13.653333-3.413333-23.893333-10.24-34.133333-17.066667-64.853333-34.133333-129.706667-71.68-194.56-109.226666-23.893333-17.066667-47.786667-34.133333-68.266667-51.2-40.96-27.306667-68.266667-78.506667-64.853333-129.706667 3.413333-61.44 37.546667-112.64 78.506667-153.6z m706.56 0h6.826666c17.066667 23.893333 40.96 47.786667 54.613334 75.093333 13.653333 23.893333 20.48 54.613333 23.893333 81.92 0 30.72-10.24 64.853333-34.133333 88.746667-13.653333 13.653333-23.893333 27.306667-40.96 37.546667-78.506667 61.44-163.84 109.226667-252.586667 153.6-13.653333 6.826667-23.893333 17.066667-40.96 17.066666 3.413333-17.066667 13.653333-34.133333 20.48-47.786666 58.026667-119.466667 129.706667-232.106667 208.213333-341.333334 17.066667-17.066667 37.546667-40.96 54.613334-64.853333z m-856.746667 273.066667c3.413333-3.413333 0-10.24 6.826667-13.653334 10.24 3.413333 20.48 10.24 27.306666 13.653334 122.88 68.266667 245.76 136.533333 365.226667 211.626666 3.413333 3.413333 6.826667 6.826667 6.826667 10.24H180.906667c-47.786667 0-92.16-20.48-126.293334-54.613333-27.306667-30.72-51.2-71.68-54.613333-112.64 6.826667-17.066667 3.413333-34.133333 10.24-54.613333z m983.04-3.413334c6.826667-3.413333 17.066667-10.24 23.893333-6.826666 0 17.066667 6.826667 37.546667 6.826667 54.613333-3.413333 23.893333-3.413333 44.373333-13.653333 64.853333-6.826667 17.066667-17.066667 37.546667-30.72 51.2-17.066667 13.653333-27.306667 30.72-47.786667 40.96-20.48 17.066667-51.2 20.48-75.093333 23.893334h-245.76c3.413333-3.413333 3.413333-6.826667 6.826666-10.24 122.88-78.506667 249.173333-150.186667 375.466667-218.453334zM184.32 798.72c44.373333-3.413333 88.746667 0 133.12-6.826667 30.72 0 64.853333-3.413333 95.573333 0-6.826667 13.653333-23.893333 20.48-34.133333 27.306667-34.133333 23.893333-68.266667 44.373333-105.813333 61.44s-81.92 10.24-112.64-13.653333c-23.893333-17.066667-44.373333-44.373333-58.026667-68.266667h81.92z m433.493333-6.826667c30.72-3.413333 61.44 0 95.573334 0 40.96 3.413333 85.333333 0 129.706666 6.826667 30.72 3.413333 61.44 0 88.746667 3.413333-10.24 20.48-27.306667 40.96-44.373333 58.026667-27.306667 27.306667-68.266667 40.96-105.813334 34.133333-34.133333-10.24-61.44-30.72-92.16-47.786666-17.066667-10.24-30.72-20.48-47.786666-30.72-10.24-10.24-17.066667-13.653333-23.893334-23.893334z" fill="#C71F1E" p-id="4253"></path></svg>
|
||||
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 2030 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M1669.09384945 432.48813594c15.51186469 21.69491531 27.11864437 51.1457625 25.81694906 112.86779625-17.46440719 193.78983094-181.96610156 316.14915281-345.76271156 316.14915281-177.24745781 0-302.04745781-127.56610125-377.111865-270.10169531C954.30062883 557.72203344 941.44639195 520.13559312 929.35147664 487.59322063c-23.701695 32.21694937-73.6542375 84.77288156-99.09152531 109.23389812A629.15254219 629.15254219 0 0 0 890.24639133 720.81355906c20.01355969 31.18644094 70.508475 101.74915219 142.69830562 157.61355938 65.62711875 50.60338969 128.59661062 81.68135625 199.81016906 99.41694937a487.81016906 487.81016906 0 0 0 354.65762719-50.00677968c128.81355937-73.81694906 219.60678-209.78983031 236.04067781-350.96949188-31.72881375-52.61016937-100.501695-114.76610156-154.35932156-144.37966031zM585.37859508 381.12542375a238.96949156 238.96949156 0 0 1 126.96949125 36.39322031c30.53559281-32.5423725 57.54576281-66.16949156 85.58644125-100.06779656A370.54915219 370.54915219 0 0 0 214.66673039 621.01694937a373.09830469 373.09830469 0 0 0 4.39322062 57.00339c10.3593225 12.79999969 114.71186438 4.12203375 130.98305063-10.52203406a242.49491531 242.49491531 0 0 1-4.55593219-46.48135594 239.89152563 239.89152563 0 0 1 239.89152563-239.89152562zM585.37859508 992a370.6576275 370.6576275 0 0 1-320.97627094-185.38305094c4.98983062-6.61694906 121.60000031-19.57966125 149.42372812-18.00678a239.07796594 239.07796594 0 0 0 171.55254282 72.29830594s147.52542375 11.33559281 285.39661031-97.62711937c0 0 51.85084781 73.87118625 91.66101656 101.64067781 0 0-130.00677938 127.07796656-377.05762687 127.07796656z" fill="#E1251B"></path><path d="M1545.05317101 74.305085C1369.9209682 0.70508469 1199.0735107 22.18305125 1030.23283195 146.27796594 881.35147664 255.67457656 822.1243582 365.88474594 726.88367976 460.47457625c-113.89830469 113.13898313-199.32203344 151.21355906-267.06440718 176.81355938-69.96610125 26.46779625-167.59322062 44.52881344-240.75932157 40.51525406a371.41694906 371.41694906 0 0 0 45.34237313 128.59661062c186.79322063-3.19999969 318.48135562-74.68474594 403.41694875-126.48135656 74.2508475-45.28813594 185.97966094-159.34915219 244.61016937-233.22033844 94.21016906-118.56271219 216.94915219-231.97288125 329.16610219-267.55254281 156.7457625-49.62711844 309.1525425 19.79661 383.02372875 117.85762688 6.61694906 8.62372875 145.13898281 58.3593225 188.691525 95.78305125C1797.31079883 324.88135625 1721.8124932 148.61016969 1545.05317101 74.305085z" fill="#E1251B"></path><path d="M1809.24300164 377.81694875A497.35593188 497.35593188 0 0 0 1526.39554383 286.91525469c-122.63050875 0-245.42372906 47.78305125-331.82372813 132.88135594-62.86101656 61.83050812-93.4508475 112.00000031-163.14576281 195.57966093a570.35932219 570.35932219 0 0 0 92.63728781 108.47457563c9.00339-13.12542375 59.66101688-84.82711875 97.62711844-135.21355875 48.81355969-64.10847469 98.38644094-115.36271156 173.5593225-145.03050844a350.04745781 350.04745781 0 0 1 427.498305 139.3355925A486.02033906 486.02033906 0 0 0 1809.24300164 377.81694875z" fill="#E1251B"></path></svg>
|
||||
|
Before Width: | Height: | Size: 24 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 146.61 146.61"><defs><style>.cls-1{fill:url(#未命名的渐变_8);}.cls-2{fill:url(#未命名的渐变_7);}.cls-3{fill:url(#未命名的渐变_7-2);}.cls-4{fill:#7b358f;}</style><linearGradient id="未命名的渐变_8" x1="36.4" y1="42.76" x2="124.15" y2="91.15" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#348bcc"/><stop offset="1" stop-color="#2a6cb6"/></linearGradient><linearGradient id="未命名的渐变_7" x1="104.54" y1="79.61" x2="71.65" y2="80.94" xlink:href="#未命名的渐变_8"/><linearGradient id="未命名的渐变_7-2" x1="61.76" y1="70.81" x2="79.66" y2="33.73" xlink:href="#未命名的渐变_8"/></defs><path class="cls-1" d="M123.41,31.19V65.35A52.62,52.62,0,0,1,108,102.58L83.25,127.33a12,12,0,0,1-16.77.25L39.75,102.4A52.67,52.67,0,0,1,23.2,64.07V31.19A15.43,15.43,0,0,1,38.63,15.76H59.34c1,0,18,.14,13.75,9.6H38.8a6.37,6.37,0,0,0-6.37,6.37V64.78A42.94,42.94,0,0,0,45.93,96l24.3,22.89A6.3,6.3,0,0,0,79,118.8L101.6,96.19a42.94,42.94,0,0,0,12.58-30.37V31.73a6.37,6.37,0,0,0-6.36-6.37H98.13A15.52,15.52,0,0,0,94,15.76h14A15.43,15.43,0,0,1,123.41,31.19Z"/><path class="cls-2" d="M104.36,67.4S101,89.32,80.14,92.82h0c-11.37.37-9.15-11.38-6.75-18.55C74.69,74.53,94.85,78.25,104.36,67.4Z"/><path class="cls-3" d="M91.05,31.08l-1.76,4.28L75.51,68.89a0,0,0,0,1,0,0,.16.16,0,0,0,0,.06c-.17.37-.88,1.93-1.67,4.1h0l-.48,1.18h.07c-2.4,7.17-4.62,18.92,6.75,18.55a36.5,36.5,0,0,1-8.12.41s-30.26.37-18.78-23.48L73.09,25.36c4.23-9.46-12.74-9.6-13.75-9.6h20.4a13.13,13.13,0,0,1,8,2.6C90.88,20.78,93,24.71,91.05,31.08Z"/><path class="cls-4" d="M75.47,69l-1.67,4.1C74.59,70.9,75.3,69.34,75.47,69Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6224" width="200" height="200"><path d="M776.416 1024H247.648a41.184 41.184 0 0 1-41.056-41.024V591.808c0-22.56 18.464-41.056 41.056-41.056h49.664v-63.232c0-118.4 96.352-214.688 214.688-214.688s214.688 96.352 214.688 214.688v63.232h49.664c22.56 0 41.056 18.464 41.056 41.056v391.168a41.184 41.184 0 0 1-41.024 41.056z m-237.632-216.416a54.4 54.4 0 0 0-26.688-101.728h-0.128a54.4 54.4 0 0 0-27.072 101.568l0.256 0.128v52.992a26.784 26.784 0 0 0 53.568 0v-52.992z m-118.336-256.832h183.168v-63.232c0-50.464-41.088-91.552-91.552-91.552s-91.552 41.088-91.552 91.552v63.232z m-226.432-58.304H66.432a37.44 37.44 0 1 1 0-74.944h127.584a37.44 37.44 0 1 1 0 74.944z m89.888-200.704h-0.096c-9.024 0-17.312-3.232-23.744-8.576l0.064 0.064-100.896-82.976a37.44 37.44 0 1 1 47.68-57.856l-0.064-0.064 100.896 82.976a37.44 37.44 0 0 1-23.808 66.4h-0.064zM512 203.52a37.44 37.44 0 0 1-37.472-37.472V37.44a37.44 37.44 0 1 1 74.944 0v128.608A37.44 37.44 0 0 1 512 203.52z m228.096 88.224h-0.16a37.44 37.44 0 0 1-23.744-66.336l0.064-0.064 100.896-82.976a37.44 37.44 0 0 1 47.68 57.824l-0.064 0.064-100.896 82.976c-6.4 5.312-14.72 8.544-23.776 8.544z m217.472 200.704h-128.8a37.44 37.44 0 1 1 0-74.944h128.8a37.44 37.44 0 1 1 0 74.944z" fill="#003A70" p-id="6225"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26535" width="200" height="200"><path d="M339.008 128a64 64 0 0 1 41.6 15.36L512 256h384a64 64 0 0 1 64 64v512a64 64 0 0 1-64 64H128a64 64 0 0 1-64-64V192a64 64 0 0 1 64-64h211.008zM883.2 486.4H140.8v332.8h742.4V486.4zM334.208 204.736L288 204.8H140.8v204.8h742.4V332.8H483.584l-21.568-18.496L334.208 204.8z" fill="#525962" p-id="26536"></path></svg>
|
||||
|
Before Width: | Height: | Size: 434 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M515.465911 0.01242C300.718451-1.427543 99.826634 133.353979 27.187509 347.877444c-90.654661 267.771091 52.898635 558.325595 320.665726 648.947257 267.771091 90.654661 558.325595-52.898635 648.947257-320.665726 73.698099-217.594386-7.327811-450.199385-183.932255-578.421077l5.375862 108.670197c88.097727 97.374488 122.87783 235.163933 79.006961 364.760588C831.811749 764.541694 615.912319 866.204071 415.1165 798.204826c-200.860818-67.966246-310.617986-279.83378-245.115676-473.23879 43.998865-129.949647 155.932977-218.494363 285.592631-241.915759L525.641648 0.268413A211.822535 211.822535 0 0 0 516.199892 0.044419h-0.79998zM665.996027 46.700215h-0.351991a12.193685 12.193685 0 0 0-4.959872 1.055973l0.063998-0.031999-0.159996 0.031999a14.076637 14.076637 0 0 0-4.63988 3.039921c-6.175841 6.047844-28.031277 35.327089-28.031277 35.327089L580.298238 145.097676l-55.454569 67.614256-95.231543 118.429944s-43.678873 54.526593-34.047122 121.629862c9.631751 67.166267 59.550464 99.838424 98.297464 112.990085 38.687002 13.087662 98.206466 17.407551 146.685215-30.047225C688.967434 488.258823 687.395475 418.372626 687.395475 418.372626l-3.711905-151.901081-2.975923-87.454744-2.011948-75.742046s0.415989-36.511058-0.863978-45.086836a13.914641 13.914641 0 0 0-1.53596-4.639881l0.031999 0.063999-0.255993-0.511987-0.287993-0.479988a11.878694 11.878694 0 0 0-9.759748-5.983845H665.996027z" fill="#0072C6"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" viewBox="0 -57 256 256" preserveAspectRatio="xMidYMid"><defs><linearGradient x1="13.3220455%" y1="94.9449067%" x2="82.6195455%" y2="1.13156385%"><stop stop-color="#D4202C" offset="0%"></stop><stop stop-color="#D82D2B" stop-opacity="0.9583" offset="4.166156%"></stop><stop stop-color="#E25226" stop-opacity="0.824" offset="17.6%"></stop><stop stop-color="#EB7123" stop-opacity="0.6833" offset="31.67%"></stop><stop stop-color="#F28920" stop-opacity="0.5365" offset="46.35%"></stop><stop stop-color="#F69A1E" stop-opacity="0.3812" offset="61.88%"></stop><stop stop-color="#F9A41D" stop-opacity="0.2114" offset="78.86%"></stop><stop stop-color="#FAA71D" stop-opacity="0" offset="100%"></stop></linearGradient><linearGradient x1="86.6243182%" y1="5.04045911%" x2="17.3261364%" y2="98.8545194%"><stop stop-color="#D4202C" offset="0%"></stop><stop stop-color="#D82D2B" stop-opacity="0.9583" offset="4.166156%"></stop><stop stop-color="#E25226" stop-opacity="0.824" offset="17.6%"></stop><stop stop-color="#EB7123" stop-opacity="0.6833" offset="31.67%"></stop><stop stop-color="#F28920" stop-opacity="0.5365" offset="46.35%"></stop><stop stop-color="#F69A1E" stop-opacity="0.3812" offset="61.88%"></stop><stop stop-color="#F9A41D" stop-opacity="0.2114" offset="78.86%"></stop><stop stop-color="#FAA71D" stop-opacity="0" offset="100%"></stop></linearGradient></defs><g><path d="M232,0 C223,0 215.2,5 211.1,12.3 L210.6,13.3 L191.8,50.3 L168,97.2 L183.6,127.9 L184.5,129.6 C186.9,133.8 190.5,137.3 194.9,139.4 C199.3,137.2 202.9,133.8 205.3,129.6 L206.2,127.9 L252.9,35.9 L254,33.7 C255.3,30.7 256,27.5 256,24 C256,10.7 245.3,0 232,0 L232,0 Z" fill="#FF5000"></path><path d="M87.9,44.6 L72.4,14 L71.5,12.3 C69.1,8.1 65.5,4.6 61.1,2.5 C56.7,4.7 53.1,8.1 50.7,12.3 L49.9,14 L3.2,106 L2.1,108.2 C0.8,111.2 0.1,114.4 0.1,117.9 C0.1,131.1 10.8,141.9 24.1,141.9 C33.1,141.9 40.9,136.9 45,129.6 L45.5,128.6 L64.3,91.6 L88,44.7 L87.9,44.6 L87.9,44.6 Z" fill="#FF5000"></path><path d="M232,0 C223,0 215.1,5 211.1,12.3 L210.6,13.3 L191.8,50.3 L168,97.2 L183.6,127.9 L184.5,129.6 C186.9,133.8 190.5,137.3 194.9,139.4 C199.3,137.2 202.9,133.8 205.3,129.6 L206.2,127.9 L252.9,35.9 L254,33.7 C255.3,30.7 256,27.5 256,24 C256,10.7 245.2,0 232,0 L232,0 Z" fill="url(#linearGradient-1)"></path><path d="M24,141.9 C33,141.9 40.9,136.9 44.9,129.6 L45.4,128.6 L64.2,91.6 L88,44.7 L72.4,14 L71.5,12.3 C69.1,8.1 65.5,4.6 61.1,2.5 C56.7,4.7 53.1,8.1 50.7,12.3 L49.9,14 L3.2,106 L2,108.3 C0.7,111.3 0,114.5 0,118 C0,131.2 10.7,141.9 24,141.9 L24,141.9 Z" fill="url(#linearGradient-2)"></path><path d="M87.9,44.6 L72.4,14 L71.5,12.3 C69.1,8.1 65.5,4.6 61.1,2.5 C62.5,1.8 64.1,1.2 65.6,0.8 C67.5,0.3 69.6,0 71.6,0 L71.6,0 L104,0 L104.2,0 L104.4,0 C113.4,0.1 121.2,5 125.3,12.3 L126,14 L168.1,97.3 L183.6,127.9 L184.5,129.6 C186.9,133.8 190.5,137.3 194.9,139.4 C193.5,140.1 191.9,140.7 190.4,141.1 C188.5,141.6 186.4,141.9 184.3,141.9 L184.3,141.9 L152.1,141.9 L151.9,141.9 L151.7,141.9 C142.7,141.8 134.9,136.9 130.8,129.6 L129.9,127.9 L87.9,44.6 L87.9,44.6 Z" fill="#FF8C44"></path></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg enable-background="new 0 0 180 180" viewBox="0 0 180 180" width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="m90.1 0c49.7 0 89.9 40.2 89.9 89.9s-40.2 89.9-89.9 89.9-90-40.1-90-89.9c0-49.6 40.3-89.9 90-89.9z" fill="#282828"/><path d="m39.1 121.1v-61.4l18-4.3-2.8 19.8h1.9c1.1-4.6 2.9-8.5 5.2-11.6 2.5-3.2 5.5-5.6 9.2-7.2 3.8-1.7 8.2-2.6 13.2-2.6 6.5 0 12.1 1.4 16.8 4.4 4.7 2.9 8.3 7 10.8 12.6 2.6 5.4 3.9 11.9 3.9 19.5v30.8h-17.7v-26.3c0-5.1-.8-9.4-2.3-13-1.6-3.6-3.9-6.3-6.9-8.2-3.1-1.9-6.6-2.9-10.9-2.9-6.3 0-11.3 2-14.9 6.2-3.6 4.1-5.3 10-5.3 17.7v26.4h-18.2z" fill="#fff"/><circle cx="137.3" cy="110.4" fill="#6eda78" r="12.4"/></svg>
|
||||
|
Before Width: | Height: | Size: 662 B |
@@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7279" width="200" height="200"><path d="M799.8 943.7H220c-59.5-4.6-99-37.8-126-88.8C81.8 832 81.8 806.8 81.7 782c-0.4-180.3 1.5-360.7-1-541-1.2-83.1 69.1-160.3 156.5-159.6 184.7 1.6 369.4 1.1 554.1 0.2 76.9-0.4 152.1 67.6 151.6 155.1-1 186 0.3 372.1-0.6 558.1-0.4 80.6-57.4 139.3-138.7 147-1.4 0.2-2.6 1.2-3.8 1.9z" fill="#031B4E" p-id="7280"></path><path d="M500.9 435.5c-47.8-0.3-94.7-5.6-140.2-21.4-17.7-6.2-23.7-16.3-25.3-35.9-2.6-30.7 8.4-47.2 35-61.3 41.9-22.2 81.6-48.7 121.7-74 10.2-6.4 17.9-7 28.4-0.1 44.9 29.8 90.3 58.9 135.9 87.7 8.2 5.1 11.3 10.5 11.5 20.3 1.2 57.7 1.1 58-55.2 72.5-36.7 9.3-74.1 12.3-111.8 12.2zM336.3 543.5c111.7 39.3 220.4 39.5 331.2 0V628c0 9.6-7 13-14 16.8-20.4 10.9-42.6 15.3-65 18.6-73 10.8-145.6 10.5-217-10.4-34.5-10.1-35.2-12.1-35.2-47.2v-62.3z" fill="#FEFEFE" p-id="7281"></path><path d="M667.6 423.1c0 26-1.5 50.3 0.5 74.4 1.7 20.6-8 29.6-25.2 35.6-38.7 13.5-78.8 17.9-119.2 19.4-53.4 2-106.2-2-157.7-18.1-20.9-6.5-32.4-16.8-30-41.1 2.2-22.5 0.5-45.4 0.5-69.9 52.9 27.5 109.2 31.7 165.8 31.7 55.8-0.1 111.6-3.7 165.3-32zM336.4 661.3c111.6 38.1 220.2 39 331.2-0.2 0 26.2-0.1 54.9 0 83.6 0.1 11.8-8.9 15.4-17.2 19.2-25.5 11.6-52.8 16.4-80.2 19.3-63.8 6.8-127.4 6.4-189.9-10.3-10.8-2.9-21.3-7.3-31.6-11.8-8.4-3.7-12.7-10.2-12.5-20.2 0.5-26.9 0.2-53.9 0.2-79.6z" fill="#FEFEFE" p-id="7282"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="400px" height="400px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.927" fill="#056473" d="M 150.5,149.5 C 155.167,149.5 159.833,149.5 164.5,149.5C 164.5,155.5 164.5,161.5 164.5,167.5C 168.167,167.5 171.833,167.5 175.5,167.5C 175.5,171.833 175.5,176.167 175.5,180.5C 171.833,180.5 168.167,180.5 164.5,180.5C 164.333,191.172 164.5,201.839 165,212.5C 168.149,214.362 171.649,215.029 175.5,214.5C 175.5,218.5 175.5,222.5 175.5,226.5C 168.825,226.666 162.158,226.5 155.5,226C 153.185,224.891 151.685,223.057 151,220.5C 150.5,207.171 150.333,193.837 150.5,180.5C 148.143,180.663 145.81,180.497 143.5,180C 142.167,176 142.167,172 143.5,168C 145.81,167.503 148.143,167.337 150.5,167.5C 150.5,161.5 150.5,155.5 150.5,149.5 Z"/></g>
|
||||
<g><path style="opacity:0.647" fill="#056473" d="M 360.5,149.5 C 371.716,149.533 375.882,154.867 373,165.5C 365.891,172.452 359.558,171.785 354,163.5C 352.709,157.087 354.876,152.42 360.5,149.5 Z M 368.5,165.5 C 367.847,164.193 367.18,162.86 366.5,161.5C 368.279,159.807 368.779,157.807 368,155.5C 365.734,154.044 363.234,153.21 360.5,153C 368.667,151.833 372.167,155.333 371,163.5C 370.292,164.381 369.458,165.047 368.5,165.5 Z M 359.5,165.5 C 355.691,161.829 355.524,157.829 359,153.5C 359.499,157.486 359.666,161.486 359.5,165.5 Z M 361.5,156.5 C 363.429,156.231 365.095,156.731 366.5,158C 365.667,158.167 364.833,158.333 364,158.5C 362.624,158.316 361.791,157.649 361.5,156.5 Z M 368.5,165.5 C 365.5,168.167 362.5,168.167 359.5,165.5C 360.943,164.665 361.943,163.332 362.5,161.5C 363.845,162.347 364.845,163.513 365.5,165C 366.448,165.483 367.448,165.649 368.5,165.5 Z"/></g>
|
||||
<g><path style="opacity:0.903" fill="#056473" d="M 24.5,167.5 C 38.8372,167.333 53.1705,167.5 67.5,168C 72.3333,168.833 75.1667,171.667 76,176.5C 76.4999,189.162 76.6666,201.829 76.5,214.5C 78.5,214.5 80.5,214.5 82.5,214.5C 82.5,218.5 82.5,222.5 82.5,226.5C 75.5,226.5 68.5,226.5 61.5,226.5C 61.5,211.167 61.5,195.833 61.5,180.5C 56.1667,180.5 50.8333,180.5 45.5,180.5C 45.5,195.833 45.5,211.167 45.5,226.5C 40.5,226.5 35.5,226.5 30.5,226.5C 30.5,211.167 30.5,195.833 30.5,180.5C 28.5,180.5 26.5,180.5 24.5,180.5C 24.5,176.167 24.5,171.833 24.5,167.5 Z"/></g>
|
||||
<g><path style="opacity:0.93" fill="#056473" d="M 102.5,167.5 C 110.84,167.334 119.173,167.5 127.5,168C 132.333,168.833 135.167,171.667 136,176.5C 136.5,185.827 136.666,195.161 136.5,204.5C 126.5,204.5 116.5,204.5 106.5,204.5C 106.216,207.777 106.549,210.943 107.5,214C 116.5,214.333 125.5,214.667 134.5,215C 135.46,218.73 135.793,222.563 135.5,226.5C 123.162,226.667 110.829,226.5 98.5,226C 96.714,225.215 95.214,224.049 94,222.5C 92.3651,206.926 92.0317,191.259 93,175.5C 94.9107,171.301 98.0773,168.634 102.5,167.5 Z M 107.5,180.5 C 112.179,180.334 116.845,180.501 121.5,181C 122.46,184.73 122.793,188.563 122.5,192.5C 117.167,192.5 111.833,192.5 106.5,192.5C 106.237,188.4 106.57,184.4 107.5,180.5 Z"/></g>
|
||||
<g><path style="opacity:0.94" fill="#056473" d="M 202.5,167.5 C 210.833,167.5 219.167,167.5 227.5,167.5C 227.5,174.5 227.5,181.5 227.5,188.5C 223.5,188.5 219.5,188.5 215.5,188.5C 215.5,185.833 215.5,183.167 215.5,180.5C 211.154,180.334 206.821,180.501 202.5,181C 201.299,181.903 200.465,183.069 200,184.5C 199.5,194.494 199.334,204.494 199.5,214.5C 208.833,214.5 218.167,214.5 227.5,214.5C 227.5,218.5 227.5,222.5 227.5,226.5C 213.5,226.5 199.5,226.5 185.5,226.5C 185.333,211.163 185.5,195.83 186,180.5C 189.003,172.924 194.503,168.59 202.5,167.5 Z"/></g>
|
||||
<g><path style="opacity:0.949" fill="#056473" d="M 235.5,167.5 C 242.167,167.5 248.833,167.5 255.5,167.5C 255.333,182.17 255.5,196.837 256,211.5C 256.374,212.416 256.874,213.25 257.5,214C 262.155,214.499 266.821,214.666 271.5,214.5C 271.5,198.833 271.5,183.167 271.5,167.5C 276.167,167.5 280.833,167.5 285.5,167.5C 285.5,183.167 285.5,198.833 285.5,214.5C 287.5,214.5 289.5,214.5 291.5,214.5C 291.5,218.5 291.5,222.5 291.5,226.5C 277.163,226.667 262.829,226.5 248.5,226C 245,225.167 242.833,223 242,219.5C 241.5,205.837 241.333,192.171 241.5,178.5C 239.5,178.5 237.5,178.5 235.5,178.5C 235.5,174.833 235.5,171.167 235.5,167.5 Z"/></g>
|
||||
<g><path style="opacity:0.915" fill="#056473" d="M 296.5,167.5 C 311.17,167.333 325.837,167.5 340.5,168C 344.499,168.668 347.332,170.835 349,174.5C 349.954,190.567 349.621,206.567 348,222.5C 346.421,224.041 344.587,225.208 342.5,226C 336.509,226.499 330.509,226.666 324.5,226.5C 324.5,222.5 324.5,218.5 324.5,214.5C 328.106,214.789 331.606,214.456 335,213.5C 335.667,202.833 335.667,192.167 335,181.5C 329.259,180.525 323.425,180.192 317.5,180.5C 317.5,199.5 317.5,218.5 317.5,237.5C 319.792,237.244 321.959,237.577 324,238.5C 324.499,242.152 324.665,245.818 324.5,249.5C 317.167,249.5 309.833,249.5 302.5,249.5C 302.5,226.5 302.5,203.5 302.5,180.5C 300.5,180.5 298.5,180.5 296.5,180.5C 296.5,176.167 296.5,171.833 296.5,167.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.1 KiB |
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="400px" height="400px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:0.962" fill="#05bcb9" d="M 101.5,125.5 C 104.833,125.5 108.167,125.5 111.5,125.5C 111.832,138.517 111.499,151.517 110.5,164.5C 109.914,164.709 109.414,165.043 109,165.5C 106.768,164.813 104.602,164.479 102.5,164.5C 101.501,151.517 101.168,138.517 101.5,125.5 Z"/></g>
|
||||
<g><path style="opacity:0.902" fill="#04bbb8" d="M 67.5,152.5 C 72.4262,155.921 76.9262,159.921 81,164.5C 81.7772,167.429 81.6105,170.263 80.5,173C 78.5,173.667 76.5,173.667 74.5,173C 70.3333,168.833 66.1667,164.667 62,160.5C 61.2506,159.365 61.4173,158.365 62.5,157.5C 64.5212,156.145 66.1879,154.479 67.5,152.5 Z"/></g>
|
||||
<g><path style="opacity:0.878" fill="#004847" d="M 208.5,164.5 C 212.167,164.5 215.833,164.5 219.5,164.5C 219.667,182.503 219.5,200.503 219,218.5C 215.532,219.803 212.032,219.803 208.5,218.5C 207.182,200.436 207.182,182.436 208.5,164.5 Z"/></g>
|
||||
<g><path style="opacity:0.845" fill="#004846" d="M 228.5,164.5 C 232.5,164.5 236.5,164.5 240.5,164.5C 240.5,167.833 240.5,171.167 240.5,174.5C 236.818,174.665 233.152,174.499 229.5,174C 228.549,170.943 228.216,167.777 228.5,164.5 Z"/></g>
|
||||
<g><path style="opacity:0.895" fill="#014847" d="M 262.5,164.5 C 266.833,164.5 271.167,164.5 275.5,164.5C 275.5,167.833 275.5,171.167 275.5,174.5C 271.952,174.095 268.619,174.595 265.5,176C 266.833,177 266.833,178 265.5,179C 268.5,179.333 271.5,179.667 274.5,180C 275.787,183.125 275.787,186.291 274.5,189.5C 271.966,190.788 269.466,190.788 267,189.5C 266.5,190 266,190.5 265.5,191C 266.153,195.586 266.487,200.253 266.5,205C 266.468,209.919 265.801,214.586 264.5,219C 261.24,219.784 258.073,219.617 255,218.5C 254.667,209.167 254.333,199.833 254,190.5C 252.093,190.579 250.093,190.246 248,189.5C 247.502,186.183 247.335,182.85 247.5,179.5C 249.833,179.5 252.167,179.5 254.5,179.5C 253.285,172.256 255.951,167.256 262.5,164.5 Z"/></g>
|
||||
<g><path style="opacity:0.899" fill="#004746" d="M 178.5,171.5 C 182.5,171.5 186.5,171.5 190.5,171.5C 190.5,174.167 190.5,176.833 190.5,179.5C 193.833,179.5 197.167,179.5 200.5,179.5C 200.5,182.833 200.5,186.167 200.5,189.5C 197.223,189.216 194.057,189.549 191,190.5C 190.501,196.491 190.334,202.491 190.5,208.5C 200.16,206.341 203.16,209.841 199.5,219C 192.51,220.528 186.343,219.028 181,214.5C 180.138,212.913 179.471,211.246 179,209.5C 178.5,202.842 178.334,196.175 178.5,189.5C 176.856,189.286 175.356,189.62 174,190.5C 171.331,187.386 170.831,183.886 172.5,180C 174.473,179.505 176.473,179.338 178.5,179.5C 178.5,176.833 178.5,174.167 178.5,171.5 Z"/></g>
|
||||
<g><path style="opacity:0.924" fill="#004746" d="M 107.5,178.5 C 114.967,177.982 120.467,180.982 124,187.5C 125.592,197.759 125.926,208.093 125,218.5C 121.333,219.833 117.667,219.833 114,218.5C 113.947,209.066 113.28,199.733 112,190.5C 107.934,189.536 103.767,189.203 99.5,189.5C 99.6665,199.172 99.4998,208.839 99,218.5C 95.9269,219.617 92.7603,219.784 89.5,219C 88.5106,205.913 88.1773,192.746 88.5,179.5C 95.0221,179.823 101.355,179.49 107.5,178.5 Z"/></g>
|
||||
<g><path style="opacity:0.937" fill="#004746" d="M 147.5,178.5 C 163.222,179.231 170.555,187.564 169.5,203.5C 160.808,203.169 152.141,203.502 143.5,204.5C 144.712,208.027 147.212,209.694 151,209.5C 153.348,209.742 155.182,208.908 156.5,207C 160.152,206.501 163.818,206.335 167.5,206.5C 166.899,212.875 163.566,217.041 157.5,219C 136.018,220.504 127.851,210.67 133,189.5C 136.319,183.663 141.152,179.996 147.5,178.5 Z M 146.5,189.5 C 150.849,188.577 154.183,189.91 156.5,193.5C 156.192,194.308 155.692,194.975 155,195.5C 151.667,194.167 148.333,194.167 145,195.5C 144.5,195 144,194.5 143.5,194C 144.386,192.385 145.386,190.885 146.5,189.5 Z"/></g>
|
||||
<g><path style="opacity:0.871" fill="#004846" d="M 229.5,179.5 C 233.106,179.211 236.606,179.544 240,180.5C 240.822,193.409 240.655,206.242 239.5,219C 235.909,219.789 232.409,219.622 229,218.5C 228.187,205.425 228.354,192.425 229.5,179.5 Z"/></g>
|
||||
<g><path style="opacity:0.932" fill="#004746" d="M 280.5,179.5 C 283.448,179.223 286.281,179.556 289,180.5C 292,189.167 295,197.833 298,206.5C 301.068,197.795 304.235,189.128 307.5,180.5C 310.428,179.516 313.428,179.183 316.5,179.5C 316.665,183.182 316.499,186.848 316,190.5C 311.195,202.581 306.195,214.581 301,226.5C 295.593,231.86 289.26,233.527 282,231.5C 279.661,223.66 282.494,220.16 290.5,221C 291.059,220.275 291.392,219.442 291.5,218.5C 287.946,209.058 284.113,199.724 280,190.5C 279.245,186.745 279.411,183.078 280.5,179.5 Z"/></g>
|
||||
<g><path style="opacity:0.975" fill="#04bcba" d="M 19.5,194.5 C 37.5,194.5 55.5,194.5 73.5,194.5C 73.5,197.833 73.5,201.167 73.5,204.5C 55.5,204.5 37.5,204.5 19.5,204.5C 19.5,201.167 19.5,197.833 19.5,194.5 Z"/></g>
|
||||
<g><path style="opacity:0.975" fill="#04bcba" d="M 328.5,194.5 C 345.5,194.5 362.5,194.5 379.5,194.5C 379.5,197.833 379.5,201.167 379.5,204.5C 361.5,204.5 343.5,204.5 325.5,204.5C 325.924,200.988 326.924,197.655 328.5,194.5 Z"/></g>
|
||||
<g><path style="opacity:0.891" fill="#04bdba" d="M 74.5,225.5 C 76.8333,225.5 79.1667,225.5 81.5,225.5C 81.6641,228.187 81.4974,230.854 81,233.5C 76.9552,237.881 72.6219,241.881 68,245.5C 65.1667,244 63,241.833 61.5,239C 65.4909,234.198 69.8242,229.698 74.5,225.5 Z"/></g>
|
||||
<g><path style="opacity:0.951" fill="#05bcba" d="M 101.5,233.5 C 104.833,233.5 108.167,233.5 111.5,233.5C 111.5,246.833 111.5,260.167 111.5,273.5C 108.223,273.784 105.057,273.451 102,272.5C 101.5,259.504 101.333,246.504 101.5,233.5 Z"/></g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 390 390"><g fill="#231F20FD" stroke="#231F20FD"><path d="M 51.963 131.224 C 51.886 131.803 51.845 243.686 51.921 247.250 L 52.000 251.000 63.566 251.000 L 75.132 251.000 74.816 206.999 C 74.642 182.799 74.742 162.999 75.039 162.999 C 75.335 163.000 77.312 167.388 79.432 172.750 C 83.399 182.788 90.389 197.123 107.833 231.000 L 117.874 250.500 132.937 250.776 L 148.000 251.052 148.000 190.994 L 148.000 130.937 136.250 131.218 L 124.500 131.500 124.500 173.500 L 124.500 215.500 120.750 207.625 C 118.688 203.294 117.000 199.596 117.000 199.407 C 117.000 198.519 89.835 145.115 83.984 134.500 L 82.331 131.500 67.165 131.224 C 58.824 131.072 51.983 131.072 51.963 131.224 "/></g><g fill="#231F20FD" stroke="#231F20FD"><path d="M 198.000 132.031 C 186.222 134.506 175.076 142.919 170.355 152.899 C 166.812 160.387 166.653 172.157 169.999 179.275 C 173.108 185.888 182.377 194.106 191.729 198.540 C 214.885 209.518 217.990 211.199 220.403 214.067 C 225.383 219.986 222.954 228.450 215.364 231.621 C 205.909 235.572 189.337 230.763 178.483 220.919 C 176.495 219.115 176.374 219.224 169.983 228.525 C 166.417 233.714 163.500 238.750 163.500 239.716 C 163.500 243.321 178.319 250.974 189.353 253.067 C 195.907 254.310 210.272 254.251 217.295 252.953 C 233.791 249.904 246.375 238.021 248.563 223.425 C 250.000 213.849 245.659 202.627 237.670 195.264 C 232.765 190.743 229.887 189.103 213.403 181.443 C 200.793 175.583 196.411 172.667 194.403 168.800 C 192.158 164.479 192.698 161.300 196.355 157.310 C 199.384 154.005 200.311 153.605 205.890 153.202 C 213.355 152.662 219.518 154.710 225.794 159.818 C 228.193 161.771 230.428 162.913 230.859 162.406 C 231.283 161.908 234.301 158.350 237.565 154.500 C 240.829 150.650 243.838 147.350 244.250 147.167 C 248.483 145.285 237.577 136.985 226.119 133.367 C 220.358 131.549 203.998 130.771 198.000 132.031 "/></g><g fill="#231F20FD" stroke="#231F20FD"><path d="M 272.000 138.618 C 258.179 148.122 258.897 146.529 263.910 156.550 C 266.273 161.276 268.771 165.359 269.460 165.623 C 270.149 165.887 273.365 164.338 276.606 162.179 L 282.500 158.254 282.760 204.627 L 283.020 251.000 295.010 251.000 L 307.000 251.000 307.000 191.500 L 307.000 132.000 294.250 132.043 L 281.500 132.086 272.000 138.618 "/></g><g fill="#F30270FE" stroke="#F30270FE"><path d="M 325.071 225.703 C 315.164 230.894 314.604 243.488 324.000 249.818 C 334.022 256.571 347.264 246.120 344.007 234.027 C 341.944 226.364 332.083 222.030 325.071 225.703 "/></g></svg>
|
||||